from IPython.display import display, HTML
style = """
<style>
div.jp-OutputArea {
overflow-y: scroll;
max-height: 500px;
}
</style>
"""
HTML(style)
import nltk, re, pprint
from nltk import word_tokenize
from nltk.corpus import gutenberg
from urllib import request
url = "https://www.gutenberg.org/files/161/161-0.txt"
response = request.urlopen(url)
sense_raw = response.read().decode('utf8')
type(sense_raw)
str
# Question 1.
#tokenize text with nltk word_tokenize
sense_tokens_nltk = nltk.word_tokenize(sense_raw)
print (sense_tokens_nltk)
['\ufeffThe', 'Project', 'Gutenberg', 'eBook', 'of', 'Sense', 'and', 'Sensibility', ',', 'by', 'Jane', 'Austen', 'This', 'eBook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'United', 'States', 'and', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', 'restrictions', 'whatsoever', '.', 'You', 'may', 'copy', 'it', ',', 'give', 'it', 'away', 'or', 're-use', 'it', 'under', 'the', 'terms', 'of', 'the', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org', '.', 'If', 'you', 'are', 'not', 'located', 'in', 'the', 'United', 'States', ',', 'you', 'will', 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', 'are', 'located', 'before', 'using', 'this', 'eBook', '.', 'Title', ':', 'Sense', 'and', 'Sensibility', 'Author', ':', 'Jane', 'Austen', 'Release', 'Date', ':', 'September', ',', '1994', '[', 'eBook', '#', '161', ']', '[', 'Most', 'recently', 'updated', ':', 'March', '16', ',', '2021', ']', 'Language', ':', 'English', 'Character', 'set', 'encoding', ':', 'UTF-8', 'Special', 'thanks', 'are', 'due', 'to', 'Sharon', 'Partridge', 'for', 'extensive', 'proofreading', 'and', 'correction', 'of', 'this', 'etext', '.', '*', '*', '*', 'START', 'OF', 'THE', 'PROJECT', 'GUTENBERG', 'EBOOK', 'SENSE', 'AND', 'SENSIBILITY', '*', '*', '*', '[', 'Illustration', ']', 'Sense', 'and', 'Sensibility', 'by', 'Jane', 'Austen', '(', '1811', ')', 'Contents', 'CHAPTER', 'I', 'CHAPTER', 'II', 'CHAPTER', 'III', 'CHAPTER', 'IV', 'CHAPTER', 'V', 'CHAPTER', 'VI', 'CHAPTER', 'VII', 'CHAPTER', 'VIII', 'CHAPTER', 'IX', 'CHAPTER', 'X', 'CHAPTER', 'XI', 'CHAPTER', 'XII', 'CHAPTER', 'XIII', 'CHAPTER', 'XIV', 'CHAPTER', 'XV', 'CHAPTER', 'XVI', 'CHAPTER', 'XVII', 'CHAPTER', 'XVIII', 'CHAPTER', 'XIX', 'CHAPTER', 'XX', 'CHAPTER', 'XXI', 'CHAPTER', 'XXII', 'CHAPTER', 'XXIII', 'CHAPTER', 'XXIV', 'CHAPTER', 'XXV', 'CHAPTER', 'XXVI', 'CHAPTER', 'XXVII', 'CHAPTER', 'XXVIII', 'CHAPTER', 'XXIX', 'CHAPTER', 'XXX', 'CHAPTER', 'XXXI', 'CHAPTER', 'XXXII', 'CHAPTER', 'XXXIII', 'CHAPTER', 'XXXIV', 'CHAPTER', 'XXXV', 'CHAPTER', 'XXXVI', 'CHAPTER', 'XXXVII', 'CHAPTER', 'XXXVIII', 'CHAPTER', 'XXXIX', 'CHAPTER', 'XL', 'CHAPTER', 'XLI', 'CHAPTER', 'XLII', 'CHAPTER', 'XLIII', 'CHAPTER', 'XLIV', 'CHAPTER', 'XLV', 'CHAPTER', 'XLVI', 'CHAPTER', 'XLVII', 'CHAPTER', 'XLVIII', 'CHAPTER', 'XLIX', 'CHAPTER', 'L', 'CHAPTER', 'I', '.', 'The', 'family', 'of', 'Dashwood', 'had', 'long', 'been', 'settled', 'in', 'Sussex', '.', 'Their', 'estate', 'was', 'large', ',', 'and', 'their', 'residence', 'was', 'at', 'Norland', 'Park', ',', 'in', 'the', 'centre', 'of', 'their', 'property', ',', 'where', ',', 'for', 'many', 'generations', ',', 'they', 'had', 'lived', 'in', 'so', 'respectable', 'a', 'manner', 'as', 'to', 'engage', 'the', 'general', 'good', 'opinion', 'of', 'their', 'surrounding', 'acquaintance', '.', 'The', 'late', 'owner', 'of', 'this', 'estate', 'was', 'a', 'single', 'man', ',', 'who', 'lived', 'to', 'a', 'very', 'advanced', 'age', ',', 'and', 'who', 'for', 'many', 'years', 'of', 'his', 'life', ',', 'had', 'a', 'constant', 'companion', 'and', 'housekeeper', 'in', 'his', 'sister', '.', 'But', 'her', 'death', ',', 'which', 'happened', 'ten', 'years', 'before', 'his', 'own', ',', 'produced', 'a', 'great', 'alteration', 'in', 'his', 'home', ';', 'for', 'to', 'supply', 'her', 'loss', ',', 'he', 'invited', 'and', 'received', 'into', 'his', 'house', 'the', 'family', 'of', 'his', 'nephew', 'Mr.', 'Henry', 'Dashwood', ',', 'the', 'legal', 'inheritor', 'of', 'the', 'Norland', 'estate', ',', 'and', 'the', 'person', 'to', 'whom', 'he', 'intended', 'to', 'bequeath', 'it', '.', 'In', 'the', 'society', 'of', 'his', 'nephew', 'and', 'niece', ',', 'and', 'their', 'children', ',', 'the', 'old', 'Gentleman', '’', 's', 'days', 'were', 'comfortably', 'spent', '.', 'His', 'attachment', 'to', 'them', 'all', 'increased', '.', 'The', 'constant', 'attention', 'of', 'Mr.', 'and', 'Mrs.', 'Henry', 'Dashwood', 'to', 'his', 'wishes', ',', 'which', 'proceeded', 'not', 'merely', 'from', 'interest', ',', 'but', 'from', 'goodness', 'of', 'heart', ',', 'gave', 'him', 'every', 'degree', 'of', 'solid', 'comfort', 'which', 'his', 'age', 'could', 'receive', ';', 'and', 'the', 'cheerfulness', 'of', 'the', 'children', 'added', 'a', 'relish', 'to', 'his', 'existence', '.', 'By', 'a', 'former', 'marriage', ',', 'Mr.', 'Henry', 'Dashwood', 'had', 'one', 'son', ':', 'by', 'his', 'present', 'lady', ',', 'three', 'daughters', '.', 'The', 'son', ',', 'a', 'steady', 'respectable', 'young', 'man', ',', 'was', 'amply', 'provided', 'for', 'by', 'the', 'fortune', 'of', 'his', 'mother', ',', 'which', 'had', 'been', 'large', ',', 'and', 'half', 'of', 'which', 'devolved', 'on', 'him', 'on', 'his', 'coming', 'of', 'age', '.', 'By', 'his', 'own', 'marriage', ',', 'likewise', ',', 'which', 'happened', 'soon', 'afterwards', ',', 'he', 'added', 'to', 'his', 'wealth', '.', 'To', 'him', 'therefore', 'the', 'succession', 'to', 'the', 'Norland', 'estate', 'was', 'not', 'so', 'really', 'important', 'as', 'to', 'his', 'sisters', ';', 'for', 'their', 'fortune', ',', 'independent', 'of', 'what', 'might', 'arise', 'to', 'them', 'from', 'their', 'father', '’', 's', 'inheriting', 'that', 'property', ',', 'could', 'be', 'but', 'small', '.', 'Their', 'mother', 'had', 'nothing', ',', 'and', 'their', 'father', 'only', 'seven', 'thousand', 'pounds', 'in', 'his', 'own', 'disposal', ';', 'for', 'the', 'remaining', 'moiety', 'of', 'his', 'first', 'wife', '’', 's', 'fortune', 'was', 'also', 'secured', 'to', 'her', 'child', ',', 'and', 'he', 'had', 'only', 'a', 'life-interest', 'in', 'it', '.', 'The', 'old', 'gentleman', 'died', ':', 'his', 'will', 'was', 'read', ',', 'and', 'like', 'almost', 'every', 'other', 'will', ',', 'gave', 'as', 'much', 'disappointment', 'as', 'pleasure', '.', 'He', 'was', 'neither', 'so', 'unjust', ',', 'nor', 'so', 'ungrateful', ',', 'as', 'to', 'leave', 'his', 'estate', 'from', 'his', 'nephew', ';', '—but', 'he', 'left', 'it', 'to', 'him', 'on', 'such', 'terms', 'as', 'destroyed', 'half', 'the', 'value', 'of', 'the', 'bequest', '.', 'Mr.', 'Dashwood', 'had', 'wished', 'for', 'it', 'more', 'for', 'the', 'sake', 'of', 'his', 'wife', 'and', 'daughters', 'than', 'for', 'himself', 'or', 'his', 'son', ';', '—but', 'to', 'his', 'son', ',', 'and', 'his', 'son', '’', 's', 'son', ',', 'a', 'child', 'of', 'four', 'years', 'old', ',', 'it', 'was', 'secured', ',', 'in', 'such', 'a', 'way', ',', 'as', 'to', 'leave', 'to', 'himself', 'no', 'power', 'of', 'providing', 'for', 'those', 'who', 'were', 'most', 'dear', 'to', 'him', ',', 'and', 'who', 'most', 'needed', 'a', 'provision', 'by', 'any', 'charge', 'on', 'the', 'estate', ',', 'or', 'by', 'any', 'sale', 'of', 'its', 'valuable', 'woods', '.', 'The', 'whole', 'was', 'tied', 'up', 'for', 'the', 'benefit', 'of', 'this', 'child', ',', 'who', ',', 'in', 'occasional', 'visits', 'with', 'his', 'father', 'and', 'mother', 'at', 'Norland', ',', 'had', 'so', 'far', 'gained', 'on', 'the', 'affections', 'of', 'his', 'uncle', ',', 'by', 'such', 'attractions', 'as', 'are', 'by', 'no', 'means', 'unusual', 'in', 'children', 'of', 'two', 'or', 'three', 'years', 'old', ';', 'an', 'imperfect', 'articulation', ',', 'an', 'earnest', 'desire', 'of', 'having', 'his', 'own', 'way', ',', 'many', 'cunning', 'tricks', ',', 'and', 'a', 'great', 'deal', 'of', 'noise', ',', 'as', 'to', 'outweigh', 'all', 'the', 'value', 'of', 'all', 'the', 'attention', 'which', ',', 'for', 'years', ',', 'he', 'had', 'received', 'from', 'his', 'niece', 'and', 'her', 'daughters', '.', 'He', 'meant', 'not', 'to', 'be', 'unkind', ',', 'however', ',', 'and', ',', 'as', 'a', 'mark', 'of', 'his', 'affection', 'for', 'the', 'three', 'girls', ',', 'he', 'left', 'them', 'a', 'thousand', 'pounds', 'a-piece', '.', 'Mr.', 'Dashwood', '’', 's', 'disappointment', 'was', ',', 'at', 'first', ',', 'severe', ';', 'but', 'his', 'temper', 'was', 'cheerful', 'and', 'sanguine', ';', 'and', 'he', 'might', 'reasonably', 'hope', 'to', 'live', 'many', 'years', ',', 'and', 'by', 'living', 'economically', ',', 'lay', 'by', 'a', 'considerable', 'sum', 'from', 'the', 'produce', 'of', 'an', 'estate', 'already', 'large', ',', 'and', 'capable', 'of', 'almost', 'immediate', 'improvement', '.', 'But', 'the', 'fortune', ',', 'which', 'had', 'been', 'so', 'tardy', 'in', 'coming', ',', 'was', 'his', 'only', 'one', 'twelvemonth', '.', 'He', 'survived', 'his', 'uncle', 'no', 'longer', ';', 'and', 'ten', 'thousand', 'pounds', ',', 'including', 'the', 'late', 'legacies', ',', 'was', 'all', 'that', 'remained', 'for', 'his', 'widow', 'and', 'daughters', '.', 'His', 'son', 'was', 'sent', 'for', 'as', 'soon', 'as', 'his', 'danger', 'was', 'known', ',', 'and', 'to', 'him', 'Mr.', 'Dashwood', 'recommended', ',', 'with', 'all', 'the', 'strength', 'and', 'urgency', 'which', 'illness', 'could', 'command', ',', 'the', 'interest', 'of', 'his', 'mother-in-law', 'and', 'sisters', '.', 'Mr.', 'John', 'Dashwood', 'had', 'not', 'the', 'strong', 'feelings', 'of', 'the', 'rest', 'of', 'the', 'family', ';', 'but', 'he', 'was', 'affected', 'by', 'a', 'recommendation', 'of', 'such', 'a', 'nature', 'at', 'such', 'a', 'time', ',', 'and', 'he', 'promised', 'to', 'do', 'every', 'thing', 'in', 'his', 'power', 'to', 'make', 'them', 'comfortable', '.', 'His', 'father', 'was', 'rendered', 'easy', 'by', 'such', 'an', 'assurance', ',', 'and', 'Mr.', 'John', 'Dashwood', 'had', 'then', 'leisure', 'to', 'consider', 'how', 'much', 'there', 'might', 'prudently', 'be', 'in', 'his', 'power', 'to', 'do', 'for', 'them', '.', 'He', 'was', 'not', 'an', 'ill-disposed', 'young', 'man', ',', 'unless', 'to', 'be', 'rather', 'cold', 'hearted', 'and', 'rather', 'selfish', 'is', 'to', 'be', 'ill-disposed', ':', 'but', 'he', 'was', ',', 'in', 'general', ',', 'well', 'respected', ';', 'for', 'he', 'conducted', 'himself', 'with', 'propriety', 'in', 'the', 'discharge', 'of', 'his', 'ordinary', 'duties', '.', 'Had', 'he', 'married', 'a', 'more', 'amiable', 'woman', ',', 'he', 'might', 'have', 'been', 'made', 'still', 'more', 'respectable', 'than', 'he', 'was', ':', '—he', 'might', 'even', 'have', 'been', 'made', 'amiable', 'himself', ';', 'for', 'he', 'was', 'very', 'young', 'when', 'he', 'married', ',', 'and', 'very', 'fond', 'of', 'his', 'wife', '.', 'But', 'Mrs.', 'John', 'Dashwood', 'was', 'a', 'strong', 'caricature', 'of', 'himself', ';', '—more', 'narrow-minded', 'and', 'selfish', '.', 'When', 'he', 'gave', 'his', 'promise', 'to', 'his', 'father', ',', 'he', 'meditated', 'within', 'himself', 'to', 'increase', 'the', 'fortunes', 'of', 'his', 'sisters', 'by', 'the', 'present', 'of', 'a', 'thousand', 'pounds', 'a-piece', '.', 'He', 'then', 'really', 'thought', 'himself', 'equal', 'to', 'it', '.', 'The', 'prospect', 'of', 'four', 'thousand', 'a-year', ',', 'in', 'addition', 'to', 'his', 'present', 'income', ',', 'besides', 'the', 'remaining', 'half', 'of', 'his', 'own', 'mother', '’', 's', 'fortune', ',', 'warmed', 'his', 'heart', ',', 'and', 'made', 'him', 'feel', 'capable', 'of', 'generosity', '.', '“', 'Yes', ',', 'he', 'would', 'give', 'them', 'three', 'thousand', 'pounds', ':', 'it', 'would', 'be', 'liberal', 'and', 'handsome', '!', 'It', 'would', 'be', 'enough', 'to', 'make', 'them', 'completely', 'easy', '.', 'Three', 'thousand', 'pounds', '!', 'he', 'could', 'spare', 'so', 'considerable', 'a', 'sum', 'with', 'little', 'inconvenience.', '”', 'He', 'thought', 'of', 'it', 'all', 'day', 'long', ',', 'and', 'for', 'many', 'days', 'successively', ',', 'and', 'he', 'did', 'not', 'repent', '.', 'No', 'sooner', 'was', 'his', 'father', '’', 's', 'funeral', 'over', ',', 'than', 'Mrs.', 'John', 'Dashwood', ',', 'without', 'sending', 'any', 'notice', 'of', 'her', 'intention', 'to', 'her', 'mother-in-law', ',', 'arrived', 'with', 'her', 'child', 'and', 'their', 'attendants', '.', 'No', 'one', 'could', 'dispute', 'her', 'right', 'to', 'come', ';', 'the', 'house', 'was', 'her', 'husband', '’', 's', 'from', 'the', 'moment', 'of', 'his', 'father', '’', 's', 'decease', ';', 'but', 'the', 'indelicacy', 'of', 'her', 'conduct', 'was', 'so', 'much', 'the', 'greater', ',', 'and', 'to', 'a', 'woman', 'in', 'Mrs.', 'Dashwood', '’', 's', 'situation', ',', 'with', 'only', 'common', 'feelings', ',', 'must', 'have', 'been', 'highly', 'unpleasing', ';', '—but', 'in', '_her_', 'mind', 'there', 'was', 'a', 'sense', 'of', 'honor', 'so', 'keen', ',', 'a', 'generosity', 'so', 'romantic', ',', 'that', 'any', 'offence', 'of', 'the', 'kind', ',', 'by', 'whomsoever', 'given', 'or', 'received', ',', 'was', 'to', 'her', 'a', 'source', 'of', 'immovable', 'disgust', '.', 'Mrs.', 'John', 'Dashwood', 'had', 'never', 'been', 'a', 'favourite', 'with', 'any', 'of', 'her', 'husband', '’', 's', 'family', ';', 'but', 'she', 'had', 'had', 'no', 'opportunity', ',', 'till', 'the', 'present', ',', 'of', 'showing', 'them', 'with', 'how', 'little', 'attention', 'to', 'the', 'comfort', 'of', 'other', 'people', 'she', 'could', 'act', 'when', 'occasion', 'required', 'it', '.', 'So', 'acutely', 'did', 'Mrs.', 'Dashwood', 'feel', 'this', 'ungracious', 'behaviour', ',', 'and', 'so', 'earnestly', 'did', 'she', 'despise', 'her', 'daughter-in-law', 'for', 'it', ',', 'that', ',', 'on', 'the', 'arrival', 'of', 'the', 'latter', ',', 'she', 'would', 'have', 'quitted', 'the', 'house', 'for', 'ever', ',', 'had', 'not', 'the', 'entreaty', 'of', 'her', 'eldest', 'girl', 'induced', 'her', 'first', 'to', 'reflect', 'on', 'the', 'propriety', 'of', 'going', ',', 'and', 'her', 'own', 'tender', 'love', 'for', 'all', 'her', 'three', 'children', 'determined', 'her', 'afterwards', 'to', 'stay', ',', 'and', 'for', 'their', 'sakes', 'avoid', 'a', 'breach', 'with', 'their', 'brother', '.', 'Elinor', ',', 'this', 'eldest', 'daughter', ',', 'whose', 'advice', 'was', 'so', 'effectual', ',', 'possessed', 'a', 'strength', 'of', 'understanding', ',', 'and', 'coolness', 'of', 'judgment', ',', 'which', 'qualified', 'her', ',', 'though', 'only', 'nineteen', ',', 'to', 'be', 'the', 'counsellor', 'of', 'her', 'mother', ',', 'and', 'enabled', 'her', 'frequently', 'to', 'counteract', ',', 'to', 'the', 'advantage', 'of', 'them', 'all', ',', 'that', 'eagerness', 'of', 'mind', 'in', 'Mrs.', 'Dashwood', 'which', 'must', 'generally', 'have', 'led', 'to', 'imprudence', '.', 'She', 'had', 'an', 'excellent', 'heart', ';', '—her', 'disposition', 'was', 'affectionate', ',', 'and', 'her', 'feelings', 'were', 'strong', ';', 'but', 'she', 'knew', 'how', 'to', 'govern', 'them', ':', 'it', 'was', 'a', 'knowledge', 'which', 'her', 'mother', 'had', 'yet', 'to', 'learn', ';', 'and', 'which', 'one', 'of', 'her', 'sisters', 'had', 'resolved', 'never', 'to', 'be', 'taught', '.', 'Marianne', '’', 's', 'abilities', 'were', ',', 'in', 'many', 'respects', ',', 'quite', 'equal', 'to', 'Elinor', '’', 's', '.', 'She', 'was', 'sensible', 'and', 'clever', ';', 'but', 'eager', 'in', 'everything', ':', 'her', 'sorrows', ',', 'her', 'joys', ',', 'could', 'have', 'no', 'moderation', '.', 'She', 'was', 'generous', ',', 'amiable', ',', 'interesting', ':', 'she', 'was', 'everything', 'but', 'prudent', '.', 'The', 'resemblance', 'between', 'her', 'and', 'her', 'mother', 'was', 'strikingly', 'great', '.', 'Elinor', 'saw', ',', 'with', 'concern', ',', 'the', 'excess', 'of', 'her', 'sister', '’', 's', 'sensibility', ';', 'but', 'by', 'Mrs.', 'Dashwood', 'it', 'was', 'valued', 'and', 'cherished', '.', 'They', 'encouraged', 'each', 'other', 'now', 'in', 'the', 'violence', 'of', 'their', 'affliction', '.', 'The', 'agony', 'of', 'grief', 'which', 'overpowered', 'them', 'at', 'first', ',', 'was', 'voluntarily', 'renewed', ',', 'was', 'sought', 'for', ',', 'was', 'created', 'again', 'and', 'again', '.', 'They', 'gave', 'themselves', 'up', 'wholly', 'to', 'their', 'sorrow', ',', 'seeking', 'increase', 'of', 'wretchedness', 'in', 'every', 'reflection', 'that', 'could', 'afford', 'it', ',', 'and', 'resolved', 'against', 'ever', 'admitting', 'consolation', 'in', 'future', '.', 'Elinor', ',', 'too', ',', 'was', 'deeply', 'afflicted', ';', 'but', 'still', 'she', 'could', 'struggle', ',', 'she', 'could', 'exert', 'herself', '.', 'She', 'could', 'consult', 'with', 'her', 'brother', ',', 'could', 'receive', 'her', 'sister-in-law', 'on', 'her', 'arrival', ',', 'and', 'treat', 'her', 'with', 'proper', 'attention', ';', 'and', 'could', 'strive', 'to', 'rouse', 'her', 'mother', 'to', 'similar', 'exertion', ',', 'and', 'encourage', 'her', 'to', 'similar', 'forbearance', '.', 'Margaret', ',', 'the', 'other', 'sister', ',', 'was', 'a', 'good-humored', ',', 'well-disposed', 'girl', ';', 'but', 'as', 'she', 'had', 'already', 'imbibed', 'a', 'good', 'deal', 'of', 'Marianne', '’', 's', 'romance', ',', 'without', 'having', 'much', 'of', 'her', 'sense', ',', 'she', 'did', 'not', ',', 'at', 'thirteen', ',', 'bid', 'fair', 'to', 'equal', 'her', 'sisters', 'at', 'a', 'more', 'advanced', 'period', 'of', 'life', '.', 'CHAPTER', 'II', '.', 'Mrs.', 'John', 'Dashwood', 'now', 'installed', 'herself', 'mistress', 'of', 'Norland', ';', 'and', 'her', 'mother', 'and', 'sisters-in-law', 'were', 'degraded', 'to', 'the', 'condition', 'of', 'visitors', '.', 'As', 'such', ',', 'however', ',', 'they', 'were', 'treated', 'by', 'her', 'with', 'quiet', 'civility', ';', 'and', 'by', 'her', 'husband', 'with', 'as', 'much', 'kindness', 'as', 'he', 'could', 'feel', 'towards', 'anybody', 'beyond', 'himself', ',', 'his', 'wife', ',', 'and', 'their', 'child', '.', 'He', 'really', 'pressed', 'them', ',', 'with', 'some', 'earnestness', ',', 'to', 'consider', 'Norland', 'as', 'their', 'home', ';', 'and', ',', 'as', 'no', 'plan', 'appeared', 'so', 'eligible', 'to', 'Mrs.', 'Dashwood', 'as', 'remaining', 'there', 'till', 'she', 'could', 'accommodate', 'herself', 'with', 'a', 'house', 'in', 'the', 'neighbourhood', ',', 'his', 'invitation', 'was', 'accepted', '.', 'A', 'continuance', 'in', 'a', 'place', 'where', 'everything', 'reminded', 'her', 'of', 'former', 'delight', ',', 'was', 'exactly', 'what', 'suited', 'her', 'mind', '.', 'In', 'seasons', 'of', 'cheerfulness', ',', 'no', 'temper', 'could', 'be', 'more', 'cheerful', 'than', 'hers', ',', 'or', 'possess', ',', 'in', 'a', 'greater', 'degree', ',', 'that', 'sanguine', 'expectation', 'of', 'happiness', 'which', 'is', 'happiness', 'itself', '.', 'But', 'in', 'sorrow', 'she', 'must', 'be', 'equally', 'carried', 'away', 'by', 'her', 'fancy', ',', 'and', 'as', 'far', 'beyond', 'consolation', 'as', 'in', 'pleasure', 'she', 'was', 'beyond', 'alloy', '.', 'Mrs.', 'John', 'Dashwood', 'did', 'not', 'at', 'all', 'approve', 'of', 'what', 'her', 'husband', 'intended', 'to', 'do', 'for', 'his', 'sisters', '.', 'To', 'take', 'three', 'thousand', 'pounds', 'from', 'the', 'fortune', 'of', 'their', 'dear', 'little', 'boy', 'would', 'be', 'impoverishing', 'him', 'to', 'the', 'most', 'dreadful', 'degree', '.', 'She', 'begged', 'him', 'to', 'think', 'again', 'on', 'the', 'subject', '.', 'How', 'could', 'he', 'answer', 'it', 'to', 'himself', 'to', 'rob', 'his', 'child', ',', 'and', 'his', 'only', 'child', 'too', ',', 'of', 'so', 'large', 'a', 'sum', '?', 'And', 'what', 'possible', 'claim', 'could', 'the', 'Miss', 'Dashwoods', ',', 'who', 'were', 'related', 'to', 'him', 'only', 'by', 'half', 'blood', ',', 'which', 'she', 'considered', 'as', 'no', 'relationship', 'at', 'all', ',', 'have', 'on', 'his', 'generosity', 'to', 'so', 'large', 'an', 'amount', '.', 'It', 'was', 'very', 'well', 'known', 'that', 'no', 'affection', 'was', 'ever', 'supposed', 'to', 'exist', 'between', 'the', 'children', 'of', 'any', 'man', 'by', 'different', 'marriages', ';', 'and', 'why', 'was', 'he', 'to', 'ruin', 'himself', ',', 'and', 'their', 'poor', 'little', 'Harry', ',', 'by', 'giving', 'away', 'all', 'his', 'money', 'to', 'his', 'half', 'sisters', '?', '“', 'It', 'was', 'my', 'father', '’', 's', 'last', 'request', 'to', 'me', ',', '”', 'replied', 'her', 'husband', ',', '“', 'that', 'I', 'should', 'assist', 'his', 'widow', 'and', 'daughters.', '”', '“', 'He', 'did', 'not', 'know', 'what', 'he', 'was', 'talking', 'of', ',', 'I', 'dare', 'say', ';', 'ten', 'to', 'one', 'but', 'he', 'was', 'light-headed', 'at', 'the', 'time', '.', 'Had', 'he', 'been', 'in', 'his', 'right', 'senses', ',', 'he', 'could', 'not', 'have', 'thought', 'of', 'such', 'a', 'thing', 'as', 'begging', 'you', 'to', 'give', 'away', 'half', 'your', 'fortune', 'from', 'your', 'own', 'child.', '”', '“', 'He', 'did', 'not', 'stipulate', 'for', 'any', 'particular', 'sum', ',', 'my', 'dear', 'Fanny', ';', 'he', 'only', 'requested', 'me', ',', 'in', 'general', 'terms', ',', 'to', 'assist', 'them', ',', 'and', 'make', 'their', 'situation', 'more', 'comfortable', 'than', 'it', 'was', 'in', 'his', 'power', 'to', 'do', '.', 'Perhaps', 'it', 'would', 'have', 'been', 'as', 'well', 'if', 'he', 'had', 'left', 'it', 'wholly', 'to', 'myself', '.', 'He', 'could', 'hardly', 'suppose', 'I', 'should', 'neglect', 'them', '.', 'But', 'as', 'he', 'required', 'the', 'promise', ',', 'I', 'could', 'not', 'do', 'less', 'than', 'give', 'it', ';', 'at', 'least', 'I', 'thought', 'so', 'at', 'the', 'time', '.', 'The', 'promise', ',', 'therefore', ',', 'was', 'given', ',', 'and', 'must', 'be', 'performed', '.', 'Something', 'must', 'be', 'done', 'for', 'them', 'whenever', 'they', 'leave', 'Norland', 'and', 'settle', 'in', 'a', 'new', 'home.', '”', '“', 'Well', ',', 'then', ',', '_let_', 'something', 'be', 'done', 'for', 'them', ';', 'but', '_that_', 'something', 'need', 'not', 'be', 'three', 'thousand', 'pounds', '.', 'Consider', ',', '”', 'she', 'added', ',', '“', 'that', 'when', 'the', 'money', 'is', 'once', 'parted', 'with', ',', 'it', 'never', 'can', 'return', '.', 'Your', 'sisters', 'will', 'marry', ',', 'and', 'it', 'will', 'be', 'gone', 'for', 'ever', '.', 'If', ',', 'indeed', ',', 'it', 'could', 'be', 'restored', 'to', 'our', 'poor', 'little', 'boy—', '”', '“', 'Why', ',', 'to', 'be', 'sure', ',', '”', 'said', 'her', 'husband', ',', 'very', 'gravely', ',', '“', 'that', 'would', 'make', 'great', 'difference', '.', 'The', 'time', 'may', 'come', 'when', 'Harry', 'will', 'regret', 'that', 'so', 'large', 'a', 'sum', 'was', 'parted', 'with', '.', 'If', 'he', 'should', 'have', 'a', 'numerous', 'family', ',', 'for', 'instance', ',', 'it', 'would', 'be', 'a', 'very', 'convenient', 'addition.', '”', '“', 'To', 'be', 'sure', 'it', 'would.', '”', '“', 'Perhaps', ',', 'then', ',', 'it', 'would', 'be', 'better', 'for', 'all', 'parties', ',', 'if', 'the', 'sum', 'were', 'diminished', 'one', 'half.—Five', 'hundred', 'pounds', 'would', 'be', 'a', 'prodigious', 'increase', 'to', 'their', 'fortunes', '!', '”', '“', 'Oh', '!', 'beyond', 'anything', 'great', '!', 'What', 'brother', 'on', 'earth', 'would', 'do', 'half', 'so', 'much', 'for', 'his', 'sisters', ',', 'even', 'if', '_really_', 'his', 'sisters', '!', 'And', 'as', 'it', 'is—only', 'half', 'blood', '!', '—But', 'you', 'have', 'such', 'a', 'generous', 'spirit', '!', '”', '“', 'I', 'would', 'not', 'wish', 'to', 'do', 'any', 'thing', 'mean', ',', '”', 'he', 'replied', '.', '“', 'One', 'had', 'rather', ',', 'on', 'such', 'occasions', ',', 'do', 'too', 'much', 'than', 'too', 'little', '.', 'No', 'one', ',', 'at', 'least', ',', 'can', 'think', 'I', 'have', 'not', 'done', 'enough', 'for', 'them', ':', 'even', 'themselves', ',', 'they', 'can', 'hardly', 'expect', 'more.', '”', '“', 'There', 'is', 'no', 'knowing', 'what', '_they_', 'may', 'expect', ',', '”', 'said', 'the', 'lady', ',', '“', 'but', 'we', 'are', 'not', 'to', 'think', 'of', 'their', 'expectations', ':', 'the', 'question', 'is', ',', 'what', 'you', 'can', 'afford', 'to', 'do.', '”', '“', 'Certainly—and', 'I', 'think', 'I', 'may', 'afford', 'to', 'give', 'them', 'five', 'hundred', 'pounds', 'a-piece', '.', 'As', 'it', 'is', ',', 'without', 'any', 'addition', 'of', 'mine', ',', 'they', 'will', 'each', 'have', 'about', 'three', 'thousand', 'pounds', 'on', 'their', 'mother', '’', 's', 'death—a', 'very', 'comfortable', 'fortune', 'for', 'any', 'young', 'woman.', '”', '“', 'To', 'be', 'sure', 'it', 'is', ';', 'and', ',', 'indeed', ',', 'it', 'strikes', 'me', 'that', 'they', 'can', 'want', 'no', 'addition', 'at', 'all', '.', 'They', 'will', 'have', 'ten', 'thousand', 'pounds', 'divided', 'amongst', 'them', '.', 'If', 'they', 'marry', ',', 'they', 'will', 'be', 'sure', 'of', 'doing', 'well', ',', 'and', 'if', 'they', 'do', 'not', ',', 'they', 'may', 'all', 'live', 'very', 'comfortably', 'together', 'on', 'the', 'interest', 'of', 'ten', 'thousand', 'pounds.', '”', '“', 'That', 'is', 'very', 'true', ',', 'and', ',', 'therefore', ',', 'I', 'do', 'not', 'know', 'whether', ',', 'upon', 'the', 'whole', ',', 'it', 'would', 'not', 'be', 'more', 'advisable', 'to', 'do', 'something', 'for', 'their', 'mother', 'while', 'she', 'lives', ',', 'rather', 'than', 'for', 'them—something', 'of', 'the', 'annuity', 'kind', 'I', 'mean.—My', 'sisters', 'would', 'feel', 'the', 'good', 'effects', 'of', 'it', 'as', 'well', 'as', 'herself', '.', 'A', 'hundred', 'a', 'year', 'would', 'make', 'them', 'all', 'perfectly', 'comfortable.', '”', 'His', 'wife', 'hesitated', 'a', 'little', ',', 'however', ',', 'in', 'giving', 'her', 'consent', 'to', 'this', 'plan', '.', '“', 'To', 'be', 'sure', ',', '”', 'said', 'she', ',', '“', 'it', 'is', 'better', 'than', 'parting', 'with', 'fifteen', 'hundred', 'pounds', 'at', 'once', '.', 'But', ',', 'then', ',', 'if', 'Mrs.', 'Dashwood', 'should', 'live', 'fifteen', 'years', 'we', 'shall', 'be', 'completely', 'taken', 'in.', '”', '“', 'Fifteen', 'years', '!', 'my', 'dear', 'Fanny', ';', 'her', 'life', 'can', 'not', 'be', 'worth', 'half', 'that', 'purchase.', '”', '“', 'Certainly', 'not', ';', 'but', 'if', 'you', 'observe', ',', 'people', 'always', 'live', 'for', 'ever', 'when', 'there', 'is', 'an', 'annuity', 'to', 'be', 'paid', 'them', ';', 'and', 'she', 'is', 'very', 'stout', 'and', 'healthy', ',', 'and', 'hardly', 'forty', '.', 'An', 'annuity', 'is', 'a', 'very', 'serious', 'business', ';', 'it', 'comes', 'over', 'and', 'over', 'every', 'year', ',', 'and', 'there', 'is', 'no', 'getting', 'rid', 'of', 'it', '.', 'You', 'are', 'not', 'aware', 'of', 'what', 'you', 'are', 'doing', '.', 'I', 'have', 'known', 'a', 'great', 'deal', 'of', 'the', 'trouble', 'of', 'annuities', ';', 'for', 'my', 'mother', 'was', 'clogged', 'with', 'the', 'payment', 'of', 'three', 'to', 'old', 'superannuated', 'servants', 'by', 'my', 'father', '’', 's', 'will', ',', 'and', 'it', 'is', 'amazing', 'how', 'disagreeable', 'she', 'found', 'it', '.', 'Twice', 'every', 'year', 'these', 'annuities', 'were', 'to', 'be', 'paid', ';', 'and', 'then', 'there', 'was', 'the', 'trouble', 'of', 'getting', 'it', 'to', 'them', ';', 'and', 'then', 'one', 'of', 'them', 'was', 'said', 'to', 'have', 'died', ',', 'and', 'afterwards', 'it', 'turned', 'out', 'to', 'be', 'no', 'such', 'thing', '.', 'My', 'mother', 'was', 'quite', 'sick', 'of', 'it', '.', 'Her', 'income', 'was', 'not', 'her', 'own', ',', 'she', 'said', ',', 'with', 'such', 'perpetual', 'claims', 'on', 'it', ';', 'and', 'it', 'was', 'the', 'more', 'unkind', 'in', 'my', 'father', ',', 'because', ',', 'otherwise', ',', 'the', 'money', 'would', 'have', 'been', 'entirely', 'at', 'my', 'mother', '’', 's', 'disposal', ',', 'without', 'any', 'restriction', 'whatever', '.', 'It', 'has', 'given', 'me', 'such', 'an', 'abhorrence', 'of', 'annuities', ',', 'that', 'I', 'am', 'sure', 'I', 'would', 'not', 'pin', 'myself', 'down', 'to', 'the', 'payment', 'of', 'one', 'for', 'all', 'the', 'world.', '”', '“', 'It', 'is', 'certainly', 'an', 'unpleasant', 'thing', ',', '”', 'replied', 'Mr.', 'Dashwood', ',', '“', 'to', 'have', 'those', 'kind', 'of', 'yearly', 'drains', 'on', 'one', '’', 's', 'income', '.', 'One', '’', 's', 'fortune', ',', 'as', 'your', 'mother', 'justly', 'says', ',', 'is', '_not_', 'one', '’', 's', 'own', '.', 'To', 'be', 'tied', 'down', 'to', 'the', 'regular', 'payment', 'of', 'such', 'a', 'sum', ',', 'on', 'every', 'rent', 'day', ',', 'is', 'by', 'no', 'means', 'desirable', ':', 'it', 'takes', 'away', 'one', '’', 's', 'independence.', '”', '“', 'Undoubtedly', ';', 'and', 'after', 'all', 'you', 'have', 'no', 'thanks', 'for', 'it', '.', 'They', 'think', 'themselves', 'secure', ',', 'you', 'do', 'no', 'more', 'than', 'what', 'is', 'expected', ',', 'and', 'it', 'raises', 'no', 'gratitude', 'at', 'all', '.', 'If', 'I', 'were', 'you', ',', 'whatever', 'I', 'did', 'should', 'be', 'done', 'at', 'my', 'own', 'discretion', 'entirely', '.', 'I', 'would', 'not', 'bind', 'myself', 'to', 'allow', 'them', 'any', 'thing', 'yearly', '.', 'It', 'may', 'be', 'very', 'inconvenient', 'some', 'years', 'to', 'spare', 'a', 'hundred', ',', 'or', 'even', 'fifty', 'pounds', 'from', 'our', 'own', 'expenses.', '”', '“', 'I', 'believe', 'you', 'are', 'right', ',', 'my', 'love', ';', 'it', 'will', 'be', 'better', 'that', 'there', 'should', 'be', 'no', 'annuity', 'in', 'the', 'case', ';', 'whatever', 'I', 'may', 'give', 'them', 'occasionally', 'will', 'be', 'of', 'far', 'greater', 'assistance', 'than', 'a', 'yearly', 'allowance', ',', 'because', 'they', 'would', 'only', 'enlarge', 'their', 'style', 'of', 'living', 'if', 'they', 'felt', 'sure', 'of', 'a', 'larger', 'income', ',', 'and', 'would', 'not', 'be', 'sixpence', 'the', 'richer', 'for', 'it', 'at', 'the', 'end', 'of', 'the', 'year', '.', 'It', 'will', 'certainly', 'be', 'much', 'the', 'best', 'way', '.', 'A', 'present', 'of', 'fifty', 'pounds', ',', 'now', 'and', 'then', ',', 'will', 'prevent', 'their', 'ever', 'being', 'distressed', 'for', 'money', ',', 'and', 'will', ',', 'I', 'think', ',', 'be', 'amply', 'discharging', 'my', 'promise', 'to', 'my', 'father.', '”', '“', 'To', 'be', 'sure', 'it', 'will', '.', 'Indeed', ',', 'to', 'say', 'the', 'truth', ',', 'I', 'am', 'convinced', 'within', 'myself', 'that', 'your', 'father', 'had', 'no', 'idea', 'of', 'your', 'giving', 'them', 'any', 'money', 'at', 'all', '.', 'The', 'assistance', 'he', 'thought', 'of', ',', 'I', 'dare', 'say', ',', 'was', 'only', 'such', 'as', 'might', 'be', 'reasonably', 'expected', 'of', 'you', ';', 'for', 'instance', ',', 'such', 'as', 'looking', 'out', 'for', 'a', 'comfortable', 'small', 'house', 'for', 'them', ',', 'helping', 'them', 'to', 'move', 'their', 'things', ',', 'and', 'sending', 'them', 'presents', 'of', 'fish', 'and', 'game', ',', 'and', 'so', 'forth', ',', 'whenever', 'they', 'are', 'in', 'season', '.', 'I', '’', 'll', 'lay', 'my', 'life', 'that', 'he', 'meant', 'nothing', 'farther', ';', 'indeed', ',', 'it', 'would', 'be', 'very', 'strange', 'and', 'unreasonable', 'if', 'he', 'did', '.', 'Do', 'but', 'consider', ',', 'my', 'dear', 'Mr.', 'Dashwood', ',', 'how', 'excessively', 'comfortable', 'your', 'mother-in-law', 'and', 'her', 'daughters', 'may', 'live', 'on', 'the', 'interest', 'of', 'seven', 'thousand', 'pounds', ',', 'besides', 'the', 'thousand', 'pounds', 'belonging', 'to', 'each', 'of', 'the', 'girls', ',', 'which', 'brings', 'them', 'in', 'fifty', 'pounds', 'a', 'year', 'a-piece', ',', 'and', ',', 'of', 'course', ',', 'they', 'will', 'pay', 'their', 'mother', 'for', 'their', 'board', 'out', 'of', 'it', '.', 'Altogether', ',', 'they', 'will', 'have', 'five', 'hundred', 'a-year', 'amongst', 'them', ',', 'and', 'what', 'on', 'earth', 'can', 'four', 'women', 'want', 'for', 'more', 'than', 'that', '?', '—They', 'will', 'live', 'so', 'cheap', '!', 'Their', 'housekeeping', 'will', 'be', 'nothing', 'at', 'all', '.', 'They', 'will', 'have', 'no', 'carriage', ',', 'no', 'horses', ',', 'and', 'hardly', 'any', 'servants', ';', 'they', 'will', 'keep', 'no', 'company', ',', 'and', 'can', 'have', 'no', 'expenses', 'of', 'any', 'kind', '!', 'Only', 'conceive', 'how', 'comfortable', 'they', 'will', 'be', '!', 'Five', 'hundred', 'a', 'year', '!', 'I', 'am', 'sure', 'I', 'can', 'not', 'imagine', 'how', 'they', 'will', 'spend', 'half', 'of', 'it', ';', 'and', 'as', 'to', 'your', 'giving', 'them', 'more', ',', 'it', 'is', 'quite', 'absurd', 'to', 'think', 'of', 'it', '.', 'They', 'will', 'be', 'much', 'more', 'able', 'to', 'give', '_you_', 'something.', '”', '“', 'Upon', 'my', 'word', ',', '”', 'said', 'Mr.', 'Dashwood', ',', '“', 'I', 'believe', 'you', 'are', 'perfectly', 'right', '.', 'My', 'father', 'certainly', 'could', 'mean', 'nothing', 'more', 'by', 'his', 'request', 'to', 'me', 'than', 'what', 'you', 'say', '.', 'I', 'clearly', 'understand', 'it', 'now', ',', 'and', 'I', 'will', 'strictly', 'fulfil', 'my', 'engagement', 'by', 'such', 'acts', 'of', 'assistance', 'and', 'kindness', 'to', 'them', 'as', 'you', 'have', 'described', '.', 'When', 'my', 'mother', 'removes', 'into', 'another', 'house', 'my', 'services', 'shall', 'be', 'readily', 'given', 'to', 'accommodate', 'her', 'as', 'far', 'as', 'I', 'can', '.', 'Some', 'little', 'present', 'of', 'furniture', 'too', 'may', 'be', 'acceptable', 'then.', '”', '“', 'Certainly', ',', '”', 'returned', 'Mrs.', 'John', 'Dashwood', '.', '“', 'But', ',', 'however', ',', '_one_', 'thing', 'must', 'be', 'considered', '.', 'When', 'your', 'father', 'and', 'mother', 'moved', 'to', 'Norland', ',', 'though', 'the', 'furniture', 'of', 'Stanhill', 'was', 'sold', ',', 'all', 'the', 'china', ',', 'plate', ',', 'and', 'linen', 'was', 'saved', ',', 'and', 'is', 'now', 'left', 'to', 'your', 'mother', '.', 'Her', 'house', 'will', 'therefore', 'be', 'almost', 'completely', 'fitted', 'up', 'as', 'soon', 'as', 'she', 'takes', 'it.', '”', '“', 'That', 'is', 'a', 'material', 'consideration', 'undoubtedly', '.', 'A', 'valuable', 'legacy', 'indeed', '!', 'And', 'yet', 'some', 'of', 'the', 'plate', 'would', 'have', 'been', 'a', 'very', 'pleasant', 'addition', 'to', 'our', 'own', 'stock', 'here.', '”', '“', 'Yes', ';', 'and', 'the', 'set', 'of', 'breakfast', 'china', 'is', 'twice', 'as', 'handsome', 'as', 'what', 'belongs', 'to', 'this', 'house', '.', 'A', 'great', 'deal', 'too', 'handsome', ',', 'in', 'my', 'opinion', ',', 'for', 'any', 'place', '_they_', 'can', 'ever', 'afford', 'to', 'live', 'in', '.', 'But', ',', 'however', ',', 'so', 'it', 'is', '.', 'Your', 'father', 'thought', 'only', 'of', '_them_', '.', 'And', 'I', 'must', 'say', 'this', ':', 'that', 'you', 'owe', 'no', 'particular', 'gratitude', 'to', 'him', ',', 'nor', 'attention', 'to', 'his', 'wishes', ';', 'for', 'we', 'very', 'well', 'know', 'that', 'if', 'he', 'could', ',', 'he', 'would', 'have', 'left', 'almost', 'everything', 'in', 'the', 'world', 'to', '_them_.', '”', 'This', 'argument', 'was', 'irresistible', '.', 'It', 'gave', 'to', 'his', 'intentions', 'whatever', 'of', 'decision', 'was', 'wanting', 'before', ';', 'and', 'he', 'finally', 'resolved', ',', 'that', 'it', 'would', 'be', 'absolutely', 'unnecessary', ',', 'if', 'not', 'highly', 'indecorous', ',', 'to', 'do', 'more', 'for', 'the', 'widow', 'and', 'children', 'of', 'his', 'father', ',', 'than', 'such', 'kind', 'of', 'neighbourly', 'acts', 'as', 'his', 'own', 'wife', 'pointed', 'out', '.', 'CHAPTER', 'III', '.', 'Mrs.', 'Dashwood', 'remained', 'at', 'Norland', 'several', 'months', ';', 'not', 'from', 'any', 'disinclination', 'to', 'move', 'when', 'the', 'sight', 'of', 'every', 'well', 'known', 'spot', 'ceased', 'to', 'raise', 'the', 'violent', 'emotion', 'which', 'it', 'produced', 'for', 'a', 'while', ';', 'for', 'when', 'her', 'spirits', 'began', 'to', 'revive', ',', 'and', 'her', 'mind', 'became', 'capable', 'of', 'some', 'other', 'exertion', 'than', 'that', 'of', 'heightening', 'its', 'affliction', 'by', 'melancholy', 'remembrances', ',', 'she', 'was', 'impatient', 'to', 'be', 'gone', ',', 'and', 'indefatigable', 'in', 'her', 'inquiries', 'for', 'a', 'suitable', 'dwelling', 'in', 'the', 'neighbourhood', 'of', 'Norland', ';', 'for', 'to', 'remove', 'far', 'from', 'that', 'beloved', 'spot', 'was', 'impossible', '.', 'But', 'she', 'could', 'hear', 'of', 'no', 'situation', 'that', 'at', 'once', 'answered', 'her', 'notions', 'of', 'comfort', 'and', 'ease', ',', 'and', 'suited', 'the', 'prudence', 'of', 'her', 'eldest', 'daughter', ',', 'whose', 'steadier', 'judgment', 'rejected', 'several', 'houses', 'as', 'too', 'large', 'for', 'their', 'income', ',', 'which', 'her', 'mother', 'would', 'have', 'approved', '.', 'Mrs.', 'Dashwood', 'had', 'been', 'informed', 'by', 'her', 'husband', 'of', 'the', 'solemn', 'promise', 'on', 'the', 'part', 'of', 'his', 'son', 'in', 'their', 'favour', ',', 'which', 'gave', 'comfort', 'to', 'his', 'last', 'earthly', 'reflections', '.', 'She', 'doubted', 'the', 'sincerity', 'of', 'this', 'assurance', 'no', 'more', 'than', 'he', 'had', 'doubted', 'it', 'himself', ',', 'and', 'she', 'thought', 'of', 'it', 'for', 'her', 'daughters', '’', 'sake', 'with', 'satisfaction', ',', 'though', 'as', 'for', 'herself', 'she', 'was', 'persuaded', 'that', 'a', 'much', 'smaller', 'provision', 'than', '7000£', 'would', 'support', 'her', 'in', 'affluence', '.', 'For', 'their', 'brother', '’', 's', 'sake', ',', 'too', ',', 'for', 'the', 'sake', 'of', 'his', 'own', 'heart', ',', 'she', 'rejoiced', ';', 'and', 'she', 'reproached', 'herself', 'for', 'being', 'unjust', 'to', 'his', 'merit', 'before', ',', 'in', 'believing', 'him', 'incapable', 'of', 'generosity', '.', 'His', 'attentive', 'behaviour', 'to', 'herself', 'and', 'his', 'sisters', 'convinced', 'her', 'that', 'their', 'welfare', 'was', 'dear', 'to', 'him', ',', 'and', ',', 'for', 'a', 'long', 'time', ',', 'she', 'firmly', 'relied', 'on', 'the', 'liberality', 'of', 'his', 'intentions', '.', 'The', 'contempt', 'which', 'she', 'had', ',', 'very', 'early', 'in', 'their', 'acquaintance', ',', 'felt', 'for', 'her', 'daughter-in-law', ',', 'was', 'very', 'much', 'increased', 'by', 'the', 'farther', 'knowledge', 'of', 'her', 'character', ',', 'which', 'half', 'a', 'year', '’', 's', 'residence', 'in', 'her', 'family', 'afforded', ';', 'and', 'perhaps', 'in', 'spite', 'of', 'every', 'consideration', 'of', 'politeness', 'or', 'maternal', 'affection', 'on', 'the', 'side', 'of', 'the', 'former', ',', 'the', 'two', 'ladies', 'might', 'have', 'found', 'it', 'impossible', 'to', 'have', 'lived', 'together', 'so', 'long', ',', 'had', 'not', 'a', 'particular', 'circumstance', 'occurred', 'to', 'give', 'still', 'greater', 'eligibility', ',', 'according', 'to', 'the', 'opinions', 'of', 'Mrs.', 'Dashwood', ',', 'to', 'her', 'daughters', '’', 'continuance', 'at', 'Norland', '.', 'This', 'circumstance', 'was', 'a', 'growing', 'attachment', 'between', 'her', 'eldest', 'girl', 'and', 'the', 'brother', 'of', 'Mrs.', 'John', 'Dashwood', ',', 'a', 'gentleman-like', 'and', 'pleasing', 'young', 'man', ',', 'who', 'was', 'introduced', 'to', 'their', 'acquaintance', 'soon', 'after', 'his', 'sister', '’', 's', 'establishment', 'at', 'Norland', ',', 'and', 'who', 'had', 'since', 'spent', 'the', 'greatest', 'part', 'of', 'his', 'time', 'there', '.', 'Some', 'mothers', 'might', 'have', 'encouraged', 'the', 'intimacy', 'from', 'motives', 'of', 'interest', ',', 'for', 'Edward', 'Ferrars', 'was', 'the', 'eldest', 'son', 'of', 'a', 'man', 'who', 'had', 'died', 'very', 'rich', ';', 'and', 'some', 'might', 'have', 'repressed', 'it', 'from', 'motives', 'of', 'prudence', ',', 'for', ',', 'except', 'a', 'trifling', 'sum', ',', 'the', 'whole', 'of', 'his', 'fortune', 'depended', 'on', 'the', 'will', 'of', 'his', 'mother', '.', 'But', 'Mrs.', 'Dashwood', 'was', 'alike', 'uninfluenced', 'by', 'either', 'consideration', '.', 'It', 'was', 'enough', 'for', 'her', 'that', 'he', 'appeared', 'to', 'be', 'amiable', ',', 'that', 'he', 'loved', 'her', 'daughter', ',', 'and', 'that', 'Elinor', 'returned', 'the', 'partiality', '.', 'It', 'was', 'contrary', 'to', 'every', 'doctrine', 'of', 'hers', 'that', 'difference', 'of', 'fortune', 'should', 'keep', 'any', 'couple', 'asunder', 'who', 'were', 'attracted', 'by', 'resemblance', 'of', 'disposition', ';', 'and', 'that', 'Elinor', '’', 's', 'merit', 'should', 'not', 'be', 'acknowledged', 'by', 'every', 'one', 'who', 'knew', 'her', ',', 'was', 'to', 'her', 'comprehension', 'impossible', '.', 'Edward', 'Ferrars', 'was', 'not', 'recommended', 'to', 'their', 'good', 'opinion', 'by', 'any', 'peculiar', 'graces', 'of', 'person', 'or', 'address', '.', 'He', 'was', 'not', 'handsome', ',', 'and', 'his', 'manners', 'required', 'intimacy', 'to', 'make', 'them', 'pleasing', '.', 'He', 'was', 'too', 'diffident', 'to', 'do', 'justice', 'to', 'himself', ';', 'but', 'when', 'his', 'natural', 'shyness', 'was', 'overcome', ',', 'his', 'behaviour', 'gave', 'every', 'indication', 'of', 'an', 'open', ',', 'affectionate', 'heart', '.', 'His', 'understanding', 'was', 'good', ',', 'and', 'his', 'education', 'had', 'given', 'it', 'solid', 'improvement', '.', 'But', 'he', 'was', 'neither', 'fitted', 'by', 'abilities', 'nor', 'disposition', 'to', 'answer', 'the', 'wishes', 'of', 'his', 'mother', 'and', 'sister', ',', 'who', 'longed', 'to', 'see', 'him', 'distinguished—as—they', 'hardly', 'knew', 'what', '.', 'They', 'wanted', 'him', 'to', 'make', 'a', 'fine', 'figure', 'in', 'the', 'world', 'in', 'some', 'manner', 'or', 'other', '.', 'His', 'mother', 'wished', 'to', 'interest', 'him', 'in', 'political', 'concerns', ',', 'to', 'get', 'him', 'into', 'parliament', ',', 'or', 'to', 'see', 'him', 'connected', 'with', 'some', 'of', 'the', 'great', 'men', 'of', 'the', 'day', '.', 'Mrs.', 'John', 'Dashwood', 'wished', 'it', 'likewise', ';', 'but', 'in', 'the', 'mean', 'while', ',', 'till', 'one', 'of', 'these', 'superior', 'blessings', 'could', 'be', 'attained', ',', 'it', 'would', 'have', 'quieted', 'her', 'ambition', 'to', 'see', 'him', 'driving', 'a', 'barouche', '.', 'But', 'Edward', 'had', 'no', 'turn', 'for', 'great', 'men', 'or', 'barouches', '.', 'All', 'his', 'wishes', 'centered', 'in', 'domestic', 'comfort', 'and', 'the', 'quiet', 'of', 'private', 'life', '.', 'Fortunately', 'he', 'had', 'a', 'younger', 'brother', 'who', 'was', 'more', 'promising', '.', 'Edward', 'had', 'been', 'staying', 'several', 'weeks', 'in', 'the', 'house', 'before', 'he', 'engaged', 'much', 'of', 'Mrs.', 'Dashwood', '’', 's', 'attention', ';', 'for', 'she', 'was', ',', 'at', 'that', 'time', ',', 'in', 'such', 'affliction', 'as', 'rendered', 'her', 'careless', 'of', 'surrounding', 'objects', '.', 'She', 'saw', 'only', 'that', 'he', 'was', 'quiet', 'and', 'unobtrusive', ',', 'and', 'she', 'liked', 'him', 'for', 'it', '.', 'He', 'did', 'not', 'disturb', 'the', 'wretchedness', 'of', 'her', 'mind', 'by', 'ill-timed', 'conversation', '.', 'She', 'was', 'first', 'called', 'to', 'observe', 'and', 'approve', 'him', 'farther', ',', 'by', 'a', 'reflection', 'which', 'Elinor', 'chanced', 'one', 'day', 'to', 'make', 'on', 'the', 'difference', 'between', 'him', 'and', 'his', 'sister', '.', 'It', 'was', 'a', 'contrast', 'which', 'recommended', 'him', 'most', 'forcibly', 'to', 'her', 'mother', '.', '“', 'It', 'is', 'enough', ',', '”', 'said', 'she', ';', '“', 'to', 'say', 'that', 'he', 'is', 'unlike', 'Fanny', 'is', 'enough', '.', 'It', 'implies', 'everything', 'amiable', '.', 'I', 'love', 'him', 'already.', '”', '“', 'I', 'think', 'you', 'will', 'like', 'him', ',', '”', 'said', 'Elinor', ',', '“', 'when', 'you', 'know', 'more', 'of', 'him.', '”', '“', 'Like', 'him', '!', '”', 'replied', 'her', 'mother', 'with', 'a', 'smile', '.', '“', 'I', 'feel', 'no', 'sentiment', 'of', 'approbation', 'inferior', 'to', 'love.', '”', '“', 'You', 'may', 'esteem', 'him.', '”', '“', 'I', 'have', 'never', 'yet', 'known', 'what', 'it', 'was', 'to', 'separate', 'esteem', 'and', 'love.', '”', 'Mrs.', 'Dashwood', 'now', 'took', 'pains', 'to', 'get', 'acquainted', 'with', 'him', '.', 'Her', 'manners', 'were', 'attaching', ',', 'and', 'soon', 'banished', 'his', 'reserve', '.', 'She', 'speedily', 'comprehended', 'all', 'his', 'merits', ';', 'the', 'persuasion', 'of', 'his', 'regard', 'for', 'Elinor', 'perhaps', 'assisted', 'her', 'penetration', ';', 'but', 'she', 'really', 'felt', 'assured', 'of', 'his', 'worth', ':', 'and', 'even', 'that', 'quietness', 'of', 'manner', ',', 'which', 'militated', 'against', 'all', 'her', 'established', 'ideas', 'of', 'what', 'a', 'young', 'man', '’', 's', 'address', 'ought', 'to', 'be', ',', 'was', 'no', 'longer', 'uninteresting', 'when', 'she', 'knew', 'his', 'heart', 'to', 'be', 'warm', 'and', 'his', 'temper', 'affectionate', '.', 'No', 'sooner', 'did', 'she', 'perceive', 'any', 'symptom', 'of', 'love', 'in', 'his', 'behaviour', 'to', 'Elinor', ',', 'than', 'she', 'considered', 'their', 'serious', 'attachment', 'as', 'certain', ',', 'and', 'looked', 'forward', 'to', 'their', 'marriage', 'as', 'rapidly', 'approaching', '.', '“', 'In', 'a', 'few', 'months', ',', 'my', 'dear', 'Marianne', ',', '”', 'said', 'she', ',', '“', 'Elinor', 'will', ',', 'in', 'all', 'probability', 'be', 'settled', 'for', 'life', '.', 'We', 'shall', 'miss', 'her', ';', 'but', '_she_', 'will', 'be', 'happy.', '”', '“', 'Oh', '!', 'Mama', ',', 'how', 'shall', 'we', 'do', 'without', 'her', '?', '”', '“', 'My', 'love', ',', 'it', 'will', 'be', 'scarcely', 'a', 'separation', '.', 'We', 'shall', 'live', 'within', 'a', 'few', 'miles', 'of', 'each', 'other', ',', 'and', 'shall', 'meet', 'every', 'day', 'of', 'our', 'lives', '.', 'You', 'will', 'gain', 'a', 'brother', ',', 'a', 'real', ',', 'affectionate', 'brother', '.', 'I', 'have', 'the', 'highest', 'opinion', 'in', 'the', 'world', 'of', 'Edward', '’', 's', 'heart', '.', 'But', 'you', 'look', 'grave', ',', 'Marianne', ';', 'do', 'you', 'disapprove', 'your', 'sister', '’', 's', 'choice', '?', '”', '“', 'Perhaps', ',', '”', 'said', 'Marianne', ',', '“', 'I', 'may', 'consider', 'it', 'with', 'some', 'surprise', '.', 'Edward', 'is', 'very', 'amiable', ',', 'and', 'I', 'love', 'him', 'tenderly', '.', 'But', 'yet—he', 'is', 'not', 'the', 'kind', 'of', 'young', 'man—there', 'is', 'something', 'wanting—his', 'figure', 'is', 'not', 'striking', ';', 'it', 'has', 'none', 'of', 'that', 'grace', 'which', 'I', 'should', 'expect', 'in', 'the', 'man', 'who', 'could', 'seriously', 'attach', 'my', 'sister', '.', 'His', 'eyes', 'want', 'all', 'that', 'spirit', ',', 'that', 'fire', ',', 'which', 'at', 'once', 'announce', 'virtue', 'and', 'intelligence', '.', 'And', 'besides', 'all', 'this', ',', 'I', 'am', 'afraid', ',', 'Mama', ',', 'he', 'has', 'no', 'real', 'taste', '.', 'Music', 'seems', 'scarcely', 'to', 'attract', 'him', ',', 'and', 'though', 'he', 'admires', 'Elinor', '’', 's', 'drawings', 'very', 'much', ',', 'it', 'is', 'not', 'the', 'admiration', 'of', 'a', 'person', 'who', 'can', 'understand', 'their', 'worth', '.', 'It', 'is', 'evident', ',', 'in', 'spite', 'of', 'his', 'frequent', 'attention', 'to', 'her', 'while', 'she', 'draws', ',', 'that', 'in', 'fact', 'he', 'knows', 'nothing', 'of', 'the', 'matter', '.', 'He', 'admires', 'as', 'a', 'lover', ',', 'not', 'as', 'a', 'connoisseur', '.', 'To', 'satisfy', 'me', ',', 'those', 'characters', 'must', 'be', 'united', '.', 'I', 'could', 'not', 'be', 'happy', 'with', 'a', 'man', 'whose', 'taste', 'did', 'not', 'in', 'every', 'point', 'coincide', 'with', 'my', 'own', '.', 'He', 'must', 'enter', 'into', 'all', 'my', 'feelings', ';', 'the', 'same', 'books', ',', 'the', 'same', 'music', 'must', 'charm', 'us', 'both', '.', 'Oh', '!', 'mama', ',', 'how', 'spiritless', ',', 'how', 'tame', 'was', 'Edward', '’', 's', 'manner', 'in', 'reading', 'to', 'us', 'last', 'night', '!', 'I', 'felt', 'for', 'my', 'sister', 'most', 'severely', '.', 'Yet', 'she', 'bore', 'it', 'with', 'so', 'much', 'composure', ',', 'she', 'seemed', 'scarcely', 'to', 'notice', 'it', '.', 'I', 'could', 'hardly', 'keep', 'my', 'seat', '.', 'To', 'hear', 'those', 'beautiful', 'lines', 'which', 'have', 'frequently', 'almost', 'driven', 'me', 'wild', ',', 'pronounced', 'with', 'such', 'impenetrable', 'calmness', ',', 'such', 'dreadful', 'indifference', '!', '”', '“', 'He', 'would', 'certainly', 'have', 'done', 'more', 'justice', 'to', 'simple', 'and', 'elegant', 'prose', '.', 'I', 'thought', 'so', 'at', 'the', 'time', ';', 'but', 'you', '_would_', 'give', 'him', 'Cowper.', '”', '“', 'Nay', ',', 'Mama', ',', 'if', 'he', 'is', 'not', 'to', 'be', 'animated', 'by', 'Cowper', '!', '—but', 'we', 'must', 'allow', 'for', 'difference', 'of', 'taste', '.', 'Elinor', 'has', 'not', 'my', 'feelings', ',', 'and', 'therefore', 'she', 'may', 'overlook', 'it', ',', 'and', 'be', 'happy', 'with', 'him', '.', 'But', 'it', 'would', 'have', 'broke', '_my_', 'heart', ',', 'had', 'I', 'loved', 'him', ',', 'to', 'hear', 'him', 'read', 'with', 'so', 'little', 'sensibility', '.', 'Mama', ',', 'the', 'more', 'I', 'know', 'of', 'the', 'world', ',', 'the', 'more', 'am', 'I', 'convinced', 'that', 'I', 'shall', 'never', 'see', 'a', 'man', 'whom', 'I', 'can', 'really', 'love', '.', 'I', 'require', 'so', 'much', '!', 'He', 'must', 'have', 'all', 'Edward', '’', 's', 'virtues', ',', 'and', 'his', 'person', 'and', 'manners', 'must', 'ornament', 'his', 'goodness', 'with', 'every', 'possible', 'charm.', '”', '“', 'Remember', ',', 'my', 'love', ',', 'that', 'you', 'are', 'not', 'seventeen', '.', 'It', 'is', 'yet', 'too', 'early', 'in', 'life', 'to', 'despair', 'of', 'such', 'a', 'happiness', '.', 'Why', 'should', 'you', 'be', 'less', 'fortunate', 'than', 'your', 'mother', '?', 'In', 'one', 'circumstance', 'only', ',', 'my', 'Marianne', ',', 'may', 'your', 'destiny', 'be', 'different', 'from', 'hers', '!', '”', 'CHAPTER', 'IV', '.', '“', 'What', 'a', 'pity', 'it', 'is', ',', 'Elinor', ',', '”', 'said', 'Marianne', ',', '“', 'that', 'Edward', 'should', 'have', 'no', 'taste', 'for', 'drawing.', '”', '“', 'No', 'taste', 'for', 'drawing', '!', '”', 'replied', 'Elinor', ',', '“', 'why', 'should', 'you', 'think', 'so', '?', 'He', 'does', 'not', 'draw', 'himself', ',', 'indeed', ',', 'but', 'he', 'has', 'great', 'pleasure', 'in', 'seeing', 'the', 'performances', 'of', 'other', 'people', ',', 'and', 'I', 'assure', 'you', 'he', 'is', 'by', 'no', 'means', 'deficient', 'in', 'natural', 'taste', ',', 'though', 'he', 'has', 'not', 'had', 'opportunities', 'of', 'improving', 'it', '.', 'Had', 'he', 'ever', 'been', 'in', 'the', 'way', 'of', 'learning', ',', 'I', 'think', 'he', 'would', 'have', 'drawn', 'very', 'well', '.', 'He', 'distrusts', 'his', 'own', 'judgment', 'in', 'such', 'matters', 'so', 'much', ',', 'that', 'he', 'is', 'always', 'unwilling', 'to', 'give', 'his', 'opinion', 'on', 'any', 'picture', ';', 'but', 'he', 'has', 'an', 'innate', 'propriety', 'and', 'simplicity', 'of', 'taste', ',', 'which', 'in', 'general', 'direct', 'him', 'perfectly', 'right.', '”', 'Marianne', 'was', 'afraid', 'of', 'offending', ',', 'and', 'said', 'no', 'more', 'on', 'the', 'subject', ';', 'but', 'the', 'kind', 'of', 'approbation', 'which', 'Elinor', 'described', 'as', 'excited', 'in', 'him', 'by', 'the', 'drawings', 'of', 'other', 'people', ',', 'was', 'very', 'far', 'from', 'that', 'rapturous', 'delight', ',', 'which', ',', 'in', 'her', 'opinion', ',', 'could', 'alone', 'be', 'called', 'taste', '.', 'Yet', ',', 'though', 'smiling', 'within', 'herself', 'at', 'the', 'mistake', ',', 'she', 'honoured', 'her', 'sister', 'for', 'that', 'blind', 'partiality', 'to', 'Edward', 'which', 'produced', 'it', '.', '“', 'I', 'hope', ',', 'Marianne', ',', '”', 'continued', 'Elinor', ',', '“', 'you', 'do', 'not', 'consider', 'him', 'as', 'deficient', 'in', 'general', 'taste', '.', 'Indeed', ',', 'I', 'think', 'I', 'may', 'say', 'that', 'you', 'can', 'not', ',', 'for', 'your', 'behaviour', 'to', 'him', 'is', 'perfectly', 'cordial', ',', 'and', 'if', '_that_', 'were', 'your', 'opinion', ',', 'I', 'am', 'sure', 'you', 'could', 'never', 'be', 'civil', 'to', 'him.', '”', 'Marianne', 'hardly', 'knew', 'what', 'to', 'say', '.', 'She', 'would', 'not', 'wound', 'the', 'feelings', 'of', 'her', 'sister', 'on', 'any', 'account', ',', 'and', 'yet', 'to', 'say', 'what', 'she', 'did', 'not', 'believe', 'was', 'impossible', '.', 'At', 'length', 'she', 'replied', ':', '“', 'Do', 'not', 'be', 'offended', ',', 'Elinor', ',', 'if', 'my', 'praise', 'of', 'him', 'is', 'not', 'in', 'every', 'thing', 'equal', 'to', 'your', 'sense', 'of', 'his', 'merits', '.', 'I', 'have', 'not', 'had', 'so', 'many', 'opportunities', 'of', 'estimating', 'the', 'minuter', 'propensities', 'of', 'his', 'mind', ',', 'his', 'inclinations', 'and', 'tastes', ',', 'as', 'you', 'have', ';', 'but', 'I', 'have', 'the', 'highest', 'opinion', 'in', 'the', 'world', 'of', 'his', 'goodness', 'and', 'sense', '.', 'I', 'think', 'him', 'every', 'thing', 'that', 'is', 'worthy', 'and', 'amiable.', '”', '“', 'I', 'am', 'sure', ',', '”', 'replied', 'Elinor', ',', 'with', 'a', 'smile', ',', '“', 'that', 'his', 'dearest', 'friends', 'could', 'not', 'be', 'dissatisfied', 'with', 'such', 'commendation', 'as', 'that', '.', 'I', 'do', 'not', 'perceive', 'how', 'you', 'could', 'express', 'yourself', 'more', 'warmly.', '”', 'Marianne', 'was', 'rejoiced', 'to', 'find', 'her', 'sister', 'so', 'easily', 'pleased', '.', '“', 'Of', 'his', 'sense', 'and', 'his', 'goodness', ',', '”', 'continued', 'Elinor', ',', '“', 'no', 'one', 'can', ',', 'I', 'think', ',', 'be', 'in', 'doubt', ',', 'who', 'has', 'seen', 'him', 'often', 'enough', 'to', 'engage', 'him', 'in', 'unreserved', 'conversation', '.', 'The', 'excellence', 'of', 'his', 'understanding', 'and', 'his', 'principles', 'can', 'be', 'concealed', 'only', 'by', 'that', 'shyness', 'which', 'too', 'often', 'keeps', 'him', 'silent', '.', 'You', 'know', 'enough', 'of', 'him', 'to', 'do', 'justice', 'to', 'his', 'solid', 'worth', '.', 'But', 'of', 'his', 'minuter', 'propensities', ',', 'as', 'you', 'call', 'them', 'you', 'have', 'from', 'peculiar', 'circumstances', 'been', 'kept', 'more', 'ignorant', 'than', 'myself', '.', 'He', 'and', 'I', 'have', 'been', 'at', 'times', 'thrown', 'a', 'good', 'deal', 'together', ',', 'while', 'you', 'have', 'been', 'wholly', 'engrossed', 'on', 'the', 'most', 'affectionate', 'principle', 'by', 'my', 'mother', '.', 'I', 'have', 'seen', 'a', 'great', 'deal', 'of', 'him', ',', 'have', 'studied', 'his', 'sentiments', 'and', 'heard', 'his', 'opinion', 'on', 'subjects', 'of', 'literature', 'and', 'taste', ';', 'and', ',', 'upon', 'the', 'whole', ',', 'I', 'venture', 'to', 'pronounce', 'that', 'his', 'mind', 'is', 'well-informed', ',', 'enjoyment', 'of', 'books', 'exceedingly', 'great', ',', 'his', 'imagination', 'lively', ',', 'his', 'observation', 'just', 'and', 'correct', ',', 'and', 'his', 'taste', 'delicate', 'and', 'pure', '.', 'His', 'abilities', 'in', 'every', 'respect', 'improve', 'as', 'much', 'upon', 'acquaintance', 'as', 'his', 'manners', 'and', 'person', '.', 'At', 'first', 'sight', ',', 'his', 'address', 'is', 'certainly', 'not', 'striking', ';', 'and', 'his', 'person', 'can', 'hardly', 'be', 'called', 'handsome', ',', 'till', 'the', 'expression', 'of', 'his', 'eyes', ',', 'which', 'are', 'uncommonly', 'good', ',', 'and', 'the', 'general', 'sweetness', 'of', 'his', 'countenance', ',', 'is', 'perceived', '.', 'At', 'present', ',', 'I', 'know', 'him', 'so', 'well', ',', 'that', 'I', 'think', 'him', 'really', 'handsome', ';', 'or', 'at', 'least', ',', 'almost', 'so', '.', 'What', 'say', 'you', ',', 'Marianne', '?', '”', '“', 'I', 'shall', 'very', 'soon', 'think', 'him', 'handsome', ',', 'Elinor', ',', 'if', 'I', 'do', 'not', 'now', '.', 'When', 'you', 'tell', 'me', 'to', 'love', 'him', 'as', 'a', 'brother', ',', 'I', 'shall', 'no', 'more', 'see', 'imperfection', 'in', 'his', 'face', ',', 'than', 'I', 'now', 'do', 'in', 'his', 'heart.', '”', 'Elinor', 'started', 'at', 'this', 'declaration', ',', 'and', 'was', 'sorry', 'for', 'the', 'warmth', 'she', 'had', 'been', 'betrayed', 'into', ',', 'in', 'speaking', 'of', 'him', '.', 'She', 'felt', 'that', 'Edward', 'stood', 'very', 'high', 'in', 'her', 'opinion', '.', 'She', 'believed', 'the', 'regard', 'to', 'be', 'mutual', ';', 'but', 'she', 'required', 'greater', 'certainty', 'of', 'it', 'to', 'make', 'Marianne', '’', 's', 'conviction', 'of', 'their', 'attachment', 'agreeable', 'to', 'her', '.', 'She', 'knew', 'that', 'what', 'Marianne', 'and', 'her', 'mother', 'conjectured', 'one', 'moment', ',', 'they', 'believed', 'the', 'next—that', 'with', 'them', ',', 'to', 'wish', 'was', 'to', 'hope', ',', 'and', 'to', 'hope', 'was', 'to', 'expect', '.', 'She', 'tried', 'to', 'explain', 'the', 'real', 'state', 'of', 'the', 'case', 'to', 'her', 'sister', '.', '“', 'I', 'do', 'not', 'attempt', 'to', 'deny', ',', '”', 'said', 'she', ',', '“', 'that', 'I', 'think', 'very', 'highly', 'of', 'him—that', 'I', 'greatly', 'esteem', ',', 'that', 'I', 'like', 'him.', '”', 'Marianne', 'here', 'burst', 'forth', 'with', 'indignation—', '“', 'Esteem', 'him', '!', 'Like', 'him', '!', 'Cold-hearted', 'Elinor', '!', 'Oh', '!', 'worse', 'than', 'cold-hearted', '!', 'Ashamed', 'of', 'being', 'otherwise', '.', 'Use', 'those', 'words', 'again', ',', 'and', 'I', 'will', 'leave', 'the', 'room', 'this', 'moment.', '”', 'Elinor', 'could', 'not', 'help', 'laughing', '.', '“', 'Excuse', 'me', ',', '”', 'said', 'she', ';', '“', 'and', 'be', 'assured', 'that', 'I', 'meant', 'no', 'offence', 'to', 'you', ',', 'by', 'speaking', ',', 'in', 'so', 'quiet', 'a', 'way', ',', 'of', 'my', 'own', 'feelings', '.', 'Believe', 'them', 'to', 'be', 'stronger', 'than', 'I', 'have', 'declared', ';', 'believe', 'them', ',', 'in', 'short', ',', 'to', 'be', 'such', 'as', 'his', 'merit', ',', 'and', 'the', 'suspicion—the', 'hope', 'of', 'his', 'affection', 'for', 'me', 'may', 'warrant', ',', 'without', 'imprudence', 'or', 'folly', '.', 'But', 'farther', 'than', 'this', 'you', 'must', '_not_', 'believe', '.', 'I', 'am', 'by', 'no', 'means', 'assured', 'of', 'his', 'regard', 'for', 'me', '.', 'There', 'are', 'moments', 'when', 'the', 'extent', 'of', 'it', 'seems', 'doubtful', ';', 'and', 'till', 'his', 'sentiments', 'are', 'fully', 'known', ',', 'you', 'can', 'not', 'wonder', 'at', 'my', 'wishing', 'to', 'avoid', 'any', 'encouragement', 'of', 'my', 'own', 'partiality', ',', 'by', 'believing', 'or', 'calling', 'it', 'more', 'than', 'it', 'is', '.', 'In', 'my', 'heart', 'I', 'feel', 'little—scarcely', 'any', 'doubt', 'of', 'his', 'preference', '.', 'But', 'there', 'are', 'other', 'points', 'to', 'be', 'considered', 'besides', 'his', 'inclination', '.', 'He', 'is', 'very', 'far', 'from', 'being', 'independent', '.', 'What', 'his', 'mother', 'really', 'is', 'we', 'can', 'not', 'know', ';', 'but', ',', 'from', 'Fanny', '’', 's', 'occasional', 'mention', 'of', 'her', 'conduct', 'and', 'opinions', ',', 'we', 'have', 'never', 'been', 'disposed', 'to', 'think', 'her', 'amiable', ';', 'and', 'I', 'am', 'very', 'much', 'mistaken', 'if', 'Edward', 'is', 'not', 'himself', 'aware', 'that', 'there', 'would', 'be', 'many', 'difficulties', 'in', 'his', 'way', ',', 'if', 'he', 'were', 'to', 'wish', 'to', 'marry', 'a', 'woman', 'who', 'had', 'not', 'either', 'a', 'great', 'fortune', 'or', 'high', 'rank.', '”', 'Marianne', 'was', 'astonished', 'to', 'find', 'how', 'much', 'the', 'imagination', 'of', 'her', 'mother', 'and', 'herself', 'had', 'outstripped', 'the', 'truth', '.', '“', 'And', 'you', 'really', 'are', 'not', 'engaged', 'to', 'him', '!', '”', 'said', 'she', '.', '“', 'Yet', 'it', 'certainly', 'soon', 'will', 'happen', '.', 'But', 'two', 'advantages', 'will', 'proceed', 'from', 'this', 'delay', '.', '_I_', 'shall', 'not', 'lose', 'you', 'so', 'soon', ',', 'and', 'Edward', 'will', 'have', 'greater', 'opportunity', 'of', 'improving', 'that', 'natural', 'taste', 'for', 'your', 'favourite', 'pursuit', 'which', 'must', 'be', 'so', 'indispensably', 'necessary', 'to', 'your', 'future', 'felicity', '.', 'Oh', '!', 'if', 'he', 'should', 'be', 'so', 'far', 'stimulated', 'by', 'your', 'genius', 'as', 'to', 'learn', 'to', 'draw', 'himself', ',', 'how', 'delightful', 'it', 'would', 'be', '!', '”', 'Elinor', 'had', 'given', 'her', 'real', 'opinion', 'to', 'her', 'sister', '.', 'She', 'could', 'not', 'consider', 'her', 'partiality', 'for', 'Edward', 'in', 'so', 'prosperous', 'a', 'state', 'as', 'Marianne', 'had', 'believed', 'it', '.', 'There', 'was', ',', 'at', 'times', ',', 'a', 'want', 'of', 'spirits', 'about', 'him', 'which', ',', 'if', 'it', 'did', 'not', 'denote', 'indifference', ',', 'spoke', 'of', 'something', 'almost', 'as', 'unpromising', '.', 'A', 'doubt', 'of', 'her', 'regard', ',', 'supposing', 'him', 'to', 'feel', 'it', ',', 'need', 'not', 'give', 'him', 'more', 'than', 'inquietude', '.', 'It', 'would', 'not', 'be', 'likely', 'to', 'produce', 'that', 'dejection', 'of', 'mind', 'which', 'frequently', 'attended', 'him', '.', 'A', 'more', 'reasonable', 'cause', 'might', 'be', 'found', 'in', 'the', 'dependent', 'situation', 'which', 'forbade', 'the', 'indulgence', 'of', 'his', 'affection', '.', 'She', 'knew', 'that', 'his', 'mother', 'neither', 'behaved', 'to', 'him', 'so', 'as', 'to', 'make', 'his', 'home', 'comfortable', 'at', 'present', ',', 'nor', 'to', 'give', 'him', 'any', 'assurance', 'that', 'he', 'might', 'form', 'a', 'home', 'for', 'himself', ',', 'without', 'strictly', 'attending', 'to', 'her', 'views', 'for', 'his', 'aggrandizement', '.', 'With', 'such', 'a', 'knowledge', 'as', 'this', ',', 'it', 'was', 'impossible', 'for', 'Elinor', 'to', 'feel', 'easy', 'on', 'the', 'subject', '.', 'She', 'was', 'far', 'from', 'depending', 'on', 'that', 'result', 'of', 'his', 'preference', 'of', 'her', ',', 'which', 'her', 'mother', 'and', 'sister', 'still', 'considered', 'as', 'certain', '.', 'Nay', ',', 'the', 'longer', 'they', 'were', 'together', 'the', 'more', 'doubtful', 'seemed', 'the', 'nature', 'of', 'his', 'regard', ';', 'and', 'sometimes', ',', 'for', 'a', 'few', 'painful', 'minutes', ',', 'she', 'believed', 'it', 'to', 'be', 'no', 'more', 'than', 'friendship', '.', 'But', ',', 'whatever', 'might', 'really', 'be', 'its', 'limits', ',', 'it', 'was', 'enough', ',', 'when', 'perceived', 'by', 'his', 'sister', ',', 'to', 'make', 'her', 'uneasy', ',', 'and', 'at', 'the', 'same', 'time', ',', '(', 'which', 'was', 'still', 'more', 'common', ',', ')', 'to', 'make', 'her', 'uncivil', '.', 'She', 'took', 'the', 'first', 'opportunity', 'of', 'affronting', 'her', 'mother-in-law', 'on', 'the', 'occasion', ',', 'talking', 'to', 'her', 'so', 'expressively', 'of', 'her', 'brother', '’', 's', 'great', 'expectations', ',', 'of', 'Mrs.', 'Ferrars', '’', 's', 'resolution', 'that', 'both', 'her', 'sons', 'should', 'marry', 'well', ',', 'and', 'of', 'the', 'danger', 'attending', 'any', 'young', 'woman', 'who', 'attempted', 'to', '_draw', 'him', 'in', ';', '_', 'that', 'Mrs.', 'Dashwood', 'could', 'neither', 'pretend', 'to', 'be', 'unconscious', ',', 'nor', 'endeavor', 'to', 'be', 'calm', '.', 'She', 'gave', 'her', 'an', 'answer', 'which', 'marked', 'her', 'contempt', ',', 'and', 'instantly', 'left', 'the', 'room', ',', 'resolving', 'that', ',', 'whatever', 'might', 'be', 'the', 'inconvenience', 'or', 'expense', 'of', 'so', 'sudden', 'a', 'removal', ',', 'her', 'beloved', 'Elinor', 'should', 'not', 'be', 'exposed', 'another', 'week', 'to', 'such', 'insinuations', '.', 'In', 'this', 'state', 'of', 'her', 'spirits', ',', 'a', 'letter', 'was', 'delivered', 'to', 'her', 'from', 'the', 'post', ',', 'which', 'contained', 'a', 'proposal', 'particularly', 'well', 'timed', '.', 'It', 'was', 'the', 'offer', 'of', 'a', 'small', 'house', ',', 'on', 'very', 'easy', 'terms', ',', 'belonging', 'to', 'a', 'relation', 'of', 'her', 'own', ',', 'a', 'gentleman', 'of', 'consequence', 'and', 'property', 'in', 'Devonshire', '.', 'The', 'letter', 'was', 'from', 'this', 'gentleman', 'himself', ',', 'and', 'written', 'in', 'the', 'true', 'spirit', 'of', 'friendly', 'accommodation', '.', 'He', 'understood', 'that', 'she', 'was', 'in', 'need', 'of', 'a', 'dwelling', ';', 'and', 'though', 'the', 'house', 'he', 'now', 'offered', 'her', 'was', 'merely', 'a', 'cottage', ',', 'he', 'assured', 'her', 'that', 'everything', 'should', 'be', 'done', 'to', 'it', 'which', 'she', 'might', 'think', 'necessary', ',', 'if', 'the', 'situation', 'pleased', 'her', '.', 'He', 'earnestly', 'pressed', 'her', ',', 'after', 'giving', 'the', 'particulars', 'of', 'the', 'house', 'and', 'garden', ',', 'to', 'come', 'with', 'her', 'daughters', 'to', 'Barton', 'Park', ',', 'the', 'place', 'of', 'his', 'own', 'residence', ',', 'from', 'whence', 'she', 'might', 'judge', ',', 'herself', ',', 'whether', 'Barton', 'Cottage', ',', 'for', 'the', 'houses', 'were', 'in', 'the', 'same', 'parish', ',', 'could', ',', 'by', 'any', 'alteration', ',', 'be', 'made', 'comfortable', 'to', 'her', '.', 'He', 'seemed', 'really', 'anxious', 'to', 'accommodate', 'them', 'and', 'the', 'whole', 'of', 'his', 'letter', 'was', 'written', 'in', 'so', 'friendly', 'a', 'style', 'as', 'could', 'not', 'fail', 'of', 'giving', 'pleasure', 'to', 'his', 'cousin', ';', 'more', 'especially', 'at', 'a', 'moment', 'when', 'she', 'was', 'suffering', 'under', 'the', 'cold', 'and', 'unfeeling', 'behaviour', 'of', 'her', 'nearer', 'connections', '.', 'She', 'needed', 'no', 'time', 'for', 'deliberation', 'or', 'inquiry', '.', 'Her', 'resolution', 'was', 'formed', 'as', 'she', 'read', '.', 'The', 'situation', 'of', 'Barton', ',', 'in', 'a', 'county', 'so', 'far', 'distant', 'from', 'Sussex', 'as', 'Devonshire', ',', 'which', ',', 'but', 'a', 'few', 'hours', 'before', ',', 'would', 'have', 'been', 'a', 'sufficient', 'objection', 'to', 'outweigh', 'every', 'possible', 'advantage', 'belonging', 'to', 'the', 'place', ',', 'was', 'now', 'its', 'first', 'recommendation', '.', 'To', 'quit', 'the', 'neighbourhood', 'of', 'Norland', 'was', 'no', 'longer', 'an', 'evil', ';', 'it', 'was', 'an', 'object', 'of', 'desire', ';', 'it', 'was', 'a', 'blessing', ',', 'in', 'comparison', 'of', 'the', 'misery', 'of', 'continuing', 'her', 'daughter-in-law', '’', 's', 'guest', ';', 'and', 'to', 'remove', 'for', 'ever', 'from', 'that', 'beloved', 'place', 'would', 'be', 'less', 'painful', 'than', 'to', 'inhabit', 'or', 'visit', 'it', 'while', 'such', 'a', 'woman', 'was', 'its', 'mistress', '.', 'She', 'instantly', 'wrote', 'Sir', 'John', 'Middleton', 'her', 'acknowledgment', 'of', 'his', 'kindness', ',', 'and', 'her', 'acceptance', 'of', 'his', 'proposal', ';', 'and', 'then', 'hastened', 'to', 'show', 'both', 'letters', 'to', 'her', 'daughters', ',', 'that', 'she', 'might', 'be', 'secure', 'of', 'their', 'approbation', 'before', 'her', 'answer', 'were', 'sent', '.', 'Elinor', 'had', 'always', 'thought', 'it', 'would', 'be', 'more', 'prudent', 'for', 'them', 'to', 'settle', 'at', 'some', 'distance', 'from', 'Norland', ',', 'than', 'immediately', 'amongst', 'their', 'present', 'acquaintance', '.', 'On', '_that_', 'head', ',', 'therefore', ',', 'it', 'was', 'not', 'for', 'her', 'to', 'oppose', 'her', 'mother', '’', 's', 'intention', 'of', 'removing', 'into', 'Devonshire', '.', 'The', 'house', ',', 'too', ',', 'as', 'described', 'by', 'Sir', 'John', ',', 'was', 'on', 'so', 'simple', 'a', 'scale', ',', 'and', 'the', 'rent', 'so', 'uncommonly', 'moderate', ',', 'as', 'to', 'leave', 'her', 'no', 'right', 'of', 'objection', 'on', 'either', 'point', ';', 'and', ',', 'therefore', ',', 'though', 'it', 'was', 'not', 'a', 'plan', 'which', 'brought', 'any', 'charm', 'to', 'her', 'fancy', ',', 'though', 'it', 'was', 'a', 'removal', 'from', 'the', 'vicinity', 'of', 'Norland', 'beyond', 'her', 'wishes', ',', 'she', 'made', 'no', 'attempt', 'to', 'dissuade', 'her', 'mother', 'from', 'sending', 'a', 'letter', 'of', 'acquiescence', '.', 'CHAPTER', 'V.', 'No', 'sooner', 'was', 'her', 'answer', 'dispatched', ',', 'than', 'Mrs.', 'Dashwood', 'indulged', 'herself', 'in', 'the', 'pleasure', 'of', 'announcing', 'to', 'her', 'son-in-law', 'and', 'his', 'wife', 'that', 'she', 'was', 'provided', 'with', 'a', 'house', ',', 'and', 'should', 'incommode', 'them', 'no', 'longer', 'than', 'till', 'every', 'thing', 'were', 'ready', 'for', 'her', 'inhabiting', 'it', '.', 'They', 'heard', 'her', 'with', 'surprise', '.', 'Mrs.', 'John', 'Dashwood', 'said', 'nothing', ';', 'but', 'her', 'husband', 'civilly', 'hoped', 'that', 'she', 'would', 'not', 'be', 'settled', 'far', 'from', 'Norland', '.', 'She', 'had', 'great', 'satisfaction', 'in', 'replying', 'that', 'she', 'was', 'going', 'into', 'Devonshire.—Edward', 'turned', 'hastily', 'towards', 'her', ',', 'on', 'hearing', 'this', ',', 'and', ',', 'in', 'a', 'voice', 'of', 'surprise', 'and', 'concern', ',', 'which', 'required', 'no', 'explanation', 'to', 'her', ',', 'repeated', ',', '“', 'Devonshire', '!', 'Are', 'you', ',', 'indeed', ',', 'going', 'there', '?', 'So', 'far', 'from', 'hence', '!', 'And', 'to', 'what', 'part', 'of', 'it', '?', '”', 'She', 'explained', 'the', 'situation', '.', 'It', 'was', 'within', 'four', 'miles', 'northward', 'of', 'Exeter', '.', '“', 'It', 'is', 'but', 'a', 'cottage', ',', '”', 'she', 'continued', ',', '“', 'but', 'I', 'hope', 'to', 'see', 'many', 'of', 'my', 'friends', 'in', 'it', '.', 'A', 'room', 'or', 'two', 'can', 'easily', 'be', 'added', ';', 'and', 'if', 'my', 'friends', 'find', 'no', 'difficulty', 'in', 'travelling', 'so', 'far', 'to', 'see', 'me', ',', 'I', 'am', 'sure', 'I', 'will', 'find', 'none', 'in', 'accommodating', 'them.', '”', 'She', 'concluded', 'with', 'a', 'very', 'kind', 'invitation', 'to', 'Mr.', 'and', 'Mrs.', 'John', 'Dashwood', 'to', 'visit', 'her', 'at', 'Barton', ';', 'and', 'to', 'Edward', 'she', 'gave', 'one', 'with', 'still', 'greater', 'affection', '.', 'Though', 'her', 'late', 'conversation', 'with', 'her', 'daughter-in-law', 'had', 'made', 'her', 'resolve', 'on', 'remaining', 'at', 'Norland', 'no', 'longer', 'than', 'was', 'unavoidable', ',', 'it', 'had', 'not', 'produced', 'the', 'smallest', 'effect', 'on', 'her', 'in', 'that', 'point', 'to', 'which', 'it', 'principally', 'tended', '.', 'To', 'separate', 'Edward', 'and', 'Elinor', 'was', 'as', 'far', 'from', 'being', 'her', 'object', 'as', 'ever', ';', 'and', 'she', 'wished', 'to', 'show', 'Mrs.', 'John', 'Dashwood', ',', 'by', 'this', 'pointed', 'invitation', 'to', 'her', 'brother', ',', 'how', 'totally', 'she', 'disregarded', 'her', 'disapprobation', 'of', 'the', 'match', '.', 'Mr.', 'John', 'Dashwood', 'told', 'his', 'mother', 'again', 'and', 'again', 'how', 'exceedingly', 'sorry', 'he', 'was', 'that', 'she', 'had', 'taken', 'a', 'house', 'at', 'such', 'a', 'distance', 'from', 'Norland', 'as', 'to', 'prevent', 'his', 'being', 'of', 'any', 'service', 'to', 'her', 'in', 'removing', 'her', 'furniture', '.', 'He', 'really', 'felt', 'conscientiously', 'vexed', 'on', 'the', 'occasion', ';', 'for', 'the', 'very', 'exertion', 'to', 'which', 'he', 'had', 'limited', 'the', 'performance', 'of', 'his', 'promise', 'to', 'his', 'father', 'was', 'by', 'this', 'arrangement', 'rendered', 'impracticable.—The', 'furniture', 'was', 'all', 'sent', 'around', 'by', 'water', '.', 'It', 'chiefly', 'consisted', 'of', 'household', 'linen', ',', 'plate', ',', 'china', ',', 'and', 'books', ',', 'with', 'a', 'handsome', 'pianoforte', 'of', 'Marianne', '’', 's', '.', 'Mrs.', 'John', 'Dashwood', 'saw', 'the', 'packages', 'depart', 'with', 'a', 'sigh', ':', 'she', 'could', 'not', 'help', 'feeling', 'it', 'hard', 'that', 'as', 'Mrs.', 'Dashwood', '’', 's', 'income', 'would', 'be', 'so', 'trifling', 'in', 'comparison', 'with', 'their', 'own', ',', 'she', 'should', 'have', 'any', 'handsome', 'article', 'of', 'furniture', '.', 'Mrs.', 'Dashwood', 'took', 'the', 'house', 'for', 'a', 'twelvemonth', ';', 'it', 'was', 'ready', 'furnished', ',', 'and', 'she', 'might', 'have', 'immediate', 'possession', '.', 'No', 'difficulty', 'arose', 'on', 'either', 'side', 'in', 'the', 'agreement', ';', 'and', 'she', 'waited', 'only', 'for', 'the', 'disposal', 'of', 'her', 'effects', 'at', 'Norland', ',', 'and', 'to', 'determine', 'her', 'future', 'household', ',', 'before', 'she', 'set', 'off', 'for', 'the', 'west', ';', 'and', 'this', ',', 'as', 'she', 'was', 'exceedingly', 'rapid', 'in', 'the', 'performance', 'of', 'everything', 'that', 'interested', 'her', ',', 'was', 'soon', 'done.—The', 'horses', 'which', 'were', 'left', 'her', 'by', 'her', 'husband', 'had', 'been', 'sold', 'soon', 'after', 'his', 'death', ',', 'and', 'an', 'opportunity', 'now', 'offering', 'of', 'disposing', 'of', 'her', 'carriage', ',', 'she', 'agreed', 'to', 'sell', 'that', 'likewise', 'at', 'the', 'earnest', 'advice', 'of', 'her', 'eldest', 'daughter', '.', 'For', 'the', 'comfort', 'of', 'her', 'children', ',', 'had', 'she', 'consulted', 'only', 'her', 'own', 'wishes', ',', 'she', 'would', 'have', 'kept', 'it', ';', 'but', 'the', 'discretion', 'of', 'Elinor', 'prevailed', '.', '_Her_', 'wisdom', 'too', 'limited', 'the', 'number', 'of', 'their', 'servants', 'to', 'three', ';', 'two', 'maids', 'and', 'a', 'man', ',', 'with', 'whom', 'they', 'were', 'speedily', 'provided', 'from', 'amongst', 'those', 'who', 'had', 'formed', 'their', 'establishment', 'at', 'Norland', '.', 'The', 'man', 'and', 'one', 'of', 'the', 'maids', 'were', 'sent', 'off', 'immediately', 'into', 'Devonshire', ',', 'to', 'prepare', 'the', 'house', 'for', 'their', 'mistress', '’', 's', 'arrival', ';', 'for', 'as', 'Lady', 'Middleton', 'was', 'entirely', 'unknown', 'to', 'Mrs.', 'Dashwood', ',', 'she', 'preferred', 'going', 'directly', 'to', 'the', 'cottage', 'to', 'being', 'a', 'visitor', 'at', 'Barton', 'Park', ';', 'and', 'she', 'relied', 'so', 'undoubtingly', 'on', 'Sir', 'John', '’', 's', 'description', 'of', 'the', 'house', ',', 'as', 'to', 'feel', 'no', 'curiosity', 'to', 'examine', 'it', 'herself', 'till', 'she', 'entered', 'it', 'as', 'her', 'own', '.', 'Her', 'eagerness', 'to', 'be', 'gone', 'from', 'Norland', 'was', 'preserved', 'from', 'diminution', 'by', 'the', 'evident', 'satisfaction', 'of', 'her', 'daughter-in-law', 'in', 'the', 'prospect', 'of', 'her', 'removal', ';', 'a', 'satisfaction', 'which', 'was', 'but', 'feebly', 'attempted', 'to', 'be', 'concealed', 'under', 'a', 'cold', 'invitation', 'to', 'her', 'to', 'defer', 'her', 'departure', '.', 'Now', 'was', 'the', 'time', 'when', 'her', 'son-in-law', '’', 's', 'promise', 'to', 'his', 'father', 'might', 'with', 'particular', 'propriety', 'be', 'fulfilled', '.', 'Since', 'he', 'had', 'neglected', 'to', 'do', 'it', 'on', 'first', 'coming', 'to', 'the', 'estate', ',', 'their', 'quitting', 'his', 'house', 'might', 'be', 'looked', 'on', 'as', 'the', 'most', 'suitable', 'period', 'for', 'its', 'accomplishment', '.', 'But', 'Mrs.', 'Dashwood', 'began', 'shortly', 'to', 'give', 'over', 'every', 'hope', 'of', 'the', 'kind', ',', 'and', 'to', 'be', 'convinced', ',', 'from', 'the', 'general', 'drift', 'of', 'his', 'discourse', ',', 'that', 'his', 'assistance', 'extended', 'no', 'farther', 'than', 'their', 'maintenance', 'for', 'six', 'months', 'at', 'Norland', '.', 'He', 'so', 'frequently', 'talked', 'of', 'the', 'increasing', 'expenses', 'of', 'housekeeping', ',', 'and', 'of', 'the', 'perpetual', 'demands', 'upon', 'his', 'purse', ',', 'which', 'a', 'man', 'of', 'any', 'consequence', 'in', 'the', 'world', 'was', 'beyond', 'calculation', 'exposed', 'to', ',', 'that', 'he', 'seemed', 'rather', 'to', 'stand', 'in', 'need', 'of', 'more', 'money', 'himself', 'than', 'to', 'have', 'any', 'design', 'of', 'giving', 'money', 'away', '.', 'In', 'a', 'very', 'few', 'weeks', 'from', 'the', 'day', 'which', 'brought', 'Sir', 'John', 'Middleton', '’', 's', 'first', 'letter', 'to', 'Norland', ',', 'every', 'thing', 'was', 'so', 'far', 'settled', 'in', 'their', 'future', 'abode', 'as', 'to', 'enable', 'Mrs.', 'Dashwood', 'and', 'her', 'daughters', 'to', 'begin', 'their', 'journey', '.', 'Many', 'were', 'the', 'tears', 'shed', 'by', 'them', 'in', 'their', 'last', 'adieus', 'to', 'a', 'place', 'so', 'much', 'beloved', '.', '“', 'Dear', ',', 'dear', 'Norland', '!', '”', 'said', 'Marianne', ',', 'as', 'she', 'wandered', 'alone', 'before', 'the', 'house', ',', 'on', 'the', 'last', 'evening', 'of', 'their', 'being', 'there', ';', '“', 'when', 'shall', 'I', 'cease', 'to', 'regret', 'you', '!', '—when', 'learn', 'to', 'feel', 'a', 'home', 'elsewhere', '!', '—Oh', '!', 'happy', 'house', ',', 'could', 'you', 'know', 'what', 'I', 'suffer', 'in', 'now', 'viewing', 'you', 'from', 'this', 'spot', ',', 'from', 'whence', 'perhaps', 'I', 'may', 'view', 'you', 'no', 'more', '!', '—And', 'you', ',', 'ye', 'well-known', 'trees', '!', '—but', 'you', 'will', 'continue', 'the', 'same.—No', 'leaf', 'will', 'decay', 'because', 'we', 'are', 'removed', ',', 'nor', 'any', 'branch', 'become', 'motionless', 'although', 'we', 'can', 'observe', 'you', 'no', 'longer', '!', '—No', ';', 'you', 'will', 'continue', 'the', 'same', ';', 'unconscious', 'of', 'the', 'pleasure', 'or', 'the', 'regret', 'you', 'occasion', ',', 'and', 'insensible', 'of', 'any', 'change', 'in', 'those', 'who', 'walk', 'under', 'your', 'shade', '!', '—But', 'who', 'will', 'remain', 'to', 'enjoy', 'you', '?', '”', 'CHAPTER', 'VI', '.', 'The', 'first', 'part', 'of', 'their', 'journey', 'was', 'performed', 'in', 'too', 'melancholy', 'a', 'disposition', 'to', 'be', 'otherwise', 'than', 'tedious', 'and', 'unpleasant', '.', 'But', 'as', 'they', 'drew', 'towards', 'the', 'end', 'of', 'it', ',', 'their', 'interest', 'in', 'the', 'appearance', 'of', 'a', 'country', 'which', 'they', 'were', 'to', 'inhabit', 'overcame', 'their', 'dejection', ',', 'and', 'a', 'view', 'of', 'Barton', 'Valley', 'as', 'they', 'entered', 'it', 'gave', 'them', 'cheerfulness', '.', 'It', 'was', 'a', 'pleasant', 'fertile', 'spot', ',', 'well', 'wooded', ',', 'and', 'rich', 'in', 'pasture', '.', 'After', 'winding', 'along', 'it', 'for', 'more', 'than', 'a', 'mile', ',', 'they', 'reached', 'their', 'own', 'house', '.', 'A', 'small', 'green', 'court', 'was', 'the', 'whole', 'of', 'its', 'demesne', 'in', 'front', ';', 'and', 'a', 'neat', 'wicket', 'gate', 'admitted', 'them', 'into', 'it', '.', 'As', 'a', 'house', ',', 'Barton', 'Cottage', ',', 'though', 'small', ',', 'was', 'comfortable', 'and', 'compact', ';', 'but', 'as', 'a', 'cottage', 'it', 'was', 'defective', ',', 'for', 'the', 'building', 'was', 'regular', ',', 'the', 'roof', 'was', 'tiled', ',', 'the', 'window', 'shutters', 'were', 'not', 'painted', 'green', ',', 'nor', 'were', 'the', 'walls', 'covered', 'with', 'honeysuckles', '.', 'A', 'narrow', 'passage', 'led', 'directly', 'through', 'the', 'house', 'into', 'the', 'garden', 'behind', '.', 'On', 'each', 'side', 'of', 'the', 'entrance', 'was', 'a', 'sitting', 'room', ',', 'about', 'sixteen', 'feet', 'square', ';', 'and', 'beyond', 'them', 'were', 'the', 'offices', 'and', 'the', 'stairs', '.', 'Four', 'bed-rooms', 'and', 'two', 'garrets', 'formed', 'the', 'rest', 'of', 'the', 'house', '.', 'It', 'had', 'not', 'been', 'built', 'many', 'years', 'and', 'was', 'in', 'good', 'repair', '.', 'In', 'comparison', 'of', 'Norland', ',', 'it', 'was', 'poor', 'and', 'small', 'indeed', '!', '—but', 'the', 'tears', 'which', 'recollection', 'called', 'forth', 'as', 'they', 'entered', 'the', 'house', 'were', 'soon', 'dried', 'away', '.', 'They', 'were', 'cheered', 'by', 'the', 'joy', 'of', 'the', 'servants', 'on', 'their', 'arrival', ',', 'and', 'each', 'for', 'the', 'sake', 'of', 'the', 'others', 'resolved', 'to', 'appear', 'happy', '.', 'It', 'was', 'very', 'early', 'in', 'September', ';', 'the', 'season', 'was', 'fine', ',', 'and', 'from', 'first', 'seeing', 'the', 'place', 'under', 'the', 'advantage', 'of', 'good', 'weather', ',', 'they', 'received', 'an', 'impression', 'in', 'its', 'favour', 'which', 'was', 'of', 'material', 'service', 'in', 'recommending', 'it', 'to', 'their', 'lasting', 'approbation', '.', 'The', 'situation', 'of', 'the', 'house', 'was', 'good', '.', 'High', 'hills', 'rose', 'immediately', 'behind', ',', 'and', 'at', 'no', 'great', 'distance', 'on', 'each', 'side', ';', 'some', 'of', 'which', 'were', 'open', 'downs', ',', 'the', 'others', 'cultivated', 'and', 'woody', '.', 'The', 'village', 'of', 'Barton', 'was', 'chiefly', 'on', 'one', 'of', 'these', 'hills', ',', 'and', 'formed', 'a', 'pleasant', 'view', 'from', 'the', 'cottage', 'windows', '.', 'The', 'prospect', 'in', 'front', 'was', 'more', 'extensive', ';', 'it', 'commanded', 'the', 'whole', 'of', 'the', 'valley', ',', 'and', 'reached', 'into', 'the', 'country', 'beyond', '.', 'The', 'hills', 'which', 'surrounded', 'the', 'cottage', 'terminated', 'the', 'valley', 'in', 'that', 'direction', ';', 'under', 'another', 'name', ',', 'and', 'in', 'another', 'course', ',', 'it', 'branched', 'out', 'again', 'between', 'two', 'of', 'the', 'steepest', 'of', 'them', '.', 'With', 'the', 'size', 'and', 'furniture', 'of', 'the', 'house', 'Mrs.', 'Dashwood', 'was', 'upon', 'the', 'whole', 'well', 'satisfied', ';', 'for', 'though', 'her', 'former', 'style', 'of', 'life', 'rendered', 'many', 'additions', 'to', 'the', 'latter', 'indispensable', ',', 'yet', 'to', 'add', 'and', 'improve', 'was', 'a', 'delight', 'to', 'her', ';', 'and', 'she', 'had', 'at', 'this', 'time', 'ready', 'money', 'enough', 'to', 'supply', 'all', 'that', 'was', 'wanted', 'of', 'greater', 'elegance', 'to', 'the', 'apartments', '.', '“', 'As', 'for', 'the', 'house', 'itself', ',', 'to', 'be', 'sure', ',', '”', 'said', 'she', ',', '“', 'it', 'is', 'too', 'small', 'for', 'our', 'family', ',', 'but', 'we', 'will', 'make', 'ourselves', 'tolerably', 'comfortable', 'for', 'the', 'present', ',', 'as', 'it', 'is', 'too', 'late', 'in', 'the', 'year', 'for', 'improvements', '.', 'Perhaps', 'in', 'the', 'spring', ',', 'if', 'I', 'have', 'plenty', 'of', 'money', ',', 'as', 'I', 'dare', 'say', 'I', 'shall', ',', 'we', 'may', 'think', 'about', 'building', '.', 'These', 'parlors', 'are', 'both', 'too', 'small', 'for', 'such', 'parties', 'of', 'our', 'friends', 'as', 'I', 'hope', 'to', 'see', 'often', 'collected', 'here', ';', 'and', 'I', 'have', 'some', 'thoughts', 'of', 'throwing', 'the', 'passage', 'into', 'one', 'of', 'them', 'with', 'perhaps', 'a', 'part', 'of', 'the', 'other', ',', 'and', 'so', 'leave', 'the', 'remainder', 'of', 'that', 'other', 'for', 'an', 'entrance', ';', 'this', ',', 'with', 'a', 'new', 'drawing', 'room', 'which', 'may', 'be', 'easily', 'added', ',', 'and', 'a', 'bed-chamber', 'and', 'garret', 'above', ',', 'will', 'make', 'it', 'a', 'very', 'snug', 'little', 'cottage', '.', 'I', 'could', 'wish', 'the', 'stairs', 'were', 'handsome', '.', 'But', 'one', 'must', 'not', 'expect', 'every', 'thing', ';', 'though', 'I', 'suppose', 'it', 'would', 'be', 'no', 'difficult', 'matter', 'to', 'widen', 'them', '.', 'I', 'shall', 'see', 'how', 'much', 'I', 'am', 'before-hand', 'with', 'the', 'world', 'in', 'the', 'spring', ',', 'and', 'we', 'will', 'plan', 'our', 'improvements', 'accordingly.', '”', 'In', 'the', 'mean', 'time', ',', 'till', 'all', 'these', 'alterations', 'could', 'be', 'made', 'from', 'the', 'savings', 'of', 'an', 'income', 'of', 'five', 'hundred', 'a-year', 'by', 'a', 'woman', 'who', 'never', 'saved', 'in', 'her', 'life', ',', 'they', 'were', 'wise', 'enough', 'to', 'be', 'contented', 'with', 'the', 'house', 'as', 'it', 'was', ';', 'and', 'each', 'of', 'them', 'was', 'busy', 'in', 'arranging', 'their', 'particular', 'concerns', ',', 'and', 'endeavoring', ',', 'by', 'placing', 'around', 'them', 'books', 'and', 'other', 'possessions', ',', 'to', 'form', 'themselves', 'a', 'home', '.', 'Marianne', '’', 's', 'pianoforte', 'was', 'unpacked', 'and', 'properly', 'disposed', 'of', ';', 'and', 'Elinor', '’', 's', 'drawings', 'were', 'affixed', 'to', 'the', 'walls', 'of', 'their', 'sitting', 'room', '.', 'In', 'such', 'employments', 'as', 'these', 'they', 'were', 'interrupted', 'soon', 'after', 'breakfast', 'the', 'next', 'day', 'by', 'the', 'entrance', 'of', 'their', 'landlord', ',', 'who', 'called', 'to', 'welcome', 'them', 'to', 'Barton', ',', 'and', 'to', 'offer', 'them', 'every', 'accommodation', 'from', 'his', 'own', 'house', 'and', 'garden', 'in', 'which', 'theirs', 'might', 'at', 'present', 'be', 'deficient', '.', 'Sir', 'John', 'Middleton', 'was', 'a', 'good', 'looking', 'man', 'about', 'forty', '.', 'He', 'had', 'formerly', 'visited', 'at', 'Stanhill', ',', 'but', 'it', 'was', 'too', 'long', 'for', 'his', 'young', 'cousins', 'to', 'remember', 'him', '.', 'His', 'countenance', 'was', 'thoroughly', 'good-humoured', ';', 'and', 'his', 'manners', 'were', 'as', 'friendly', 'as', 'the', 'style', 'of', 'his', 'letter', '.', 'Their', 'arrival', 'seemed', 'to', 'afford', 'him', 'real', 'satisfaction', ',', 'and', 'their', 'comfort', 'to', 'be', 'an', 'object', 'of', 'real', 'solicitude', 'to', 'him', '.', 'He', 'said', 'much', 'of', 'his', 'earnest', 'desire', 'of', 'their', 'living', 'in', 'the', 'most', 'sociable', 'terms', 'with', 'his', 'family', ',', 'and', 'pressed', 'them', 'so', 'cordially', 'to', 'dine', 'at', 'Barton', 'Park', 'every', 'day', 'till', 'they', 'were', 'better', 'settled', 'at', 'home', ',', 'that', ',', 'though', 'his', 'entreaties', 'were', 'carried', 'to', 'a', 'point', 'of', 'perseverance', 'beyond', 'civility', ',', 'they', 'could', 'not', 'give', 'offence', '.', 'His', 'kindness', 'was', 'not', 'confined', 'to', 'words', ';', 'for', 'within', 'an', 'hour', 'after', 'he', 'left', 'them', ',', 'a', 'large', 'basket', 'full', 'of', 'garden', 'stuff', 'and', 'fruit', 'arrived', 'from', 'the', 'park', ',', 'which', 'was', 'followed', 'before', 'the', 'end', 'of', 'the', 'day', 'by', 'a', 'present', 'of', 'game', '.', 'He', 'insisted', ',', 'moreover', ',', 'on', 'conveying', 'all', 'their', 'letters', 'to', 'and', 'from', 'the', 'post', 'for', 'them', ',', 'and', 'would', 'not', 'be', 'denied', 'the', 'satisfaction', 'of', 'sending', 'them', 'his', 'newspaper', 'every', 'day', '.', 'Lady', 'Middleton', 'had', 'sent', 'a', 'very', 'civil', 'message', 'by', 'him', ',', 'denoting', 'her', 'intention', 'of', 'waiting', 'on', 'Mrs.', 'Dashwood', 'as', 'soon', 'as', 'she', 'could', 'be', 'assured', 'that', 'her', 'visit', 'would', 'be', 'no', 'inconvenience', ';', 'and', 'as', 'this', 'message', 'was', 'answered', 'by', 'an', 'invitation', 'equally', 'polite', ',', 'her', 'ladyship', 'was', 'introduced', 'to', 'them', 'the', 'next', 'day', '.', 'They', 'were', ',', 'of', 'course', ',', 'very', 'anxious', 'to', 'see', 'a', 'person', 'on', 'whom', 'so', 'much', 'of', 'their', 'comfort', 'at', 'Barton', 'must', 'depend', ';', 'and', 'the', 'elegance', 'of', 'her', 'appearance', 'was', 'favourable', 'to', 'their', 'wishes', '.', 'Lady', 'Middleton', 'was', 'not', 'more', 'than', 'six', 'or', 'seven', 'and', 'twenty', ';', 'her', 'face', 'was', 'handsome', ',', 'her', 'figure', 'tall', 'and', 'striking', ',', 'and', 'her', 'address', 'graceful', '.', 'Her', 'manners', 'had', 'all', 'the', 'elegance', 'which', 'her', 'husband', '’', 's', 'wanted', '.', 'But', 'they', 'would', 'have', 'been', 'improved', 'by', 'some', 'share', 'of', 'his', 'frankness', 'and', 'warmth', ';', 'and', 'her', 'visit', 'was', 'long', 'enough', 'to', 'detract', 'something', 'from', 'their', 'first', 'admiration', ',', 'by', 'showing', 'that', ',', 'though', 'perfectly', 'well-bred', ',', 'she', 'was', 'reserved', ',', 'cold', ',', 'and', 'had', 'nothing', 'to', 'say', 'for', 'herself', 'beyond', 'the', 'most', 'common-place', 'inquiry', 'or', 'remark', '.', 'Conversation', 'however', 'was', 'not', 'wanted', ',', 'for', 'Sir', 'John', 'was', 'very', 'chatty', ',', 'and', 'Lady', 'Middleton', 'had', 'taken', 'the', 'wise', 'precaution', 'of', 'bringing', 'with', 'her', 'their', 'eldest', 'child', ',', 'a', 'fine', 'little', 'boy', 'about', 'six', 'years', 'old', ',', 'by', 'which', 'means', 'there', 'was', 'one', 'subject', 'always', 'to', 'be', 'recurred', 'to', 'by', 'the', 'ladies', 'in', 'case', 'of', 'extremity', ',', 'for', 'they', 'had', 'to', 'enquire', 'his', 'name', 'and', 'age', ',', 'admire', 'his', 'beauty', ',', 'and', 'ask', 'him', 'questions', 'which', 'his', 'mother', 'answered', 'for', 'him', ',', 'while', 'he', 'hung', 'about', 'her', 'and', 'held', 'down', 'his', 'head', ',', 'to', 'the', 'great', 'surprise', 'of', 'her', 'ladyship', ',', 'who', 'wondered', 'at', 'his', 'being', 'so', 'shy', 'before', 'company', ',', 'as', 'he', 'could', 'make', 'noise', 'enough', 'at', 'home', '.', 'On', 'every', 'formal', 'visit', 'a', 'child', 'ought', 'to', 'be', 'of', 'the', 'party', ',', 'by', 'way', 'of', 'provision', 'for', 'discourse', '.', 'In', 'the', 'present', 'case', 'it', 'took', 'up', 'ten', 'minutes', 'to', 'determine', 'whether', 'the', 'boy', 'were', 'most', 'like', 'his', 'father', 'or', 'mother', ',', 'and', 'in', 'what', 'particular', 'he', 'resembled', 'either', ',', 'for', 'of', 'course', 'every', 'body', 'differed', ',', 'and', 'every', 'body', 'was', 'astonished', 'at', 'the', 'opinion', 'of', 'the', 'others', '.', 'An', 'opportunity', 'was', 'soon', 'to', 'be', 'given', 'to', 'the', 'Dashwoods', 'of', 'debating', 'on', 'the', 'rest', 'of', 'the', 'children', ',', 'as', 'Sir', 'John', 'would', 'not', 'leave', 'the', 'house', 'without', 'securing', 'their', 'promise', 'of', 'dining', 'at', 'the', 'park', 'the', 'next', 'day', '.', 'CHAPTER', 'VII', '.', 'Barton', 'Park', 'was', 'about', 'half', 'a', 'mile', 'from', 'the', 'cottage', '.', 'The', 'ladies', 'had', 'passed', 'near', 'it', 'in', 'their', 'way', 'along', 'the', 'valley', ',', 'but', 'it', 'was', 'screened', 'from', 'their', 'view', 'at', 'home', 'by', 'the', 'projection', 'of', 'a', 'hill', '.', 'The', 'house', 'was', 'large', 'and', 'handsome', ';', 'and', 'the', 'Middletons', 'lived', 'in', 'a', 'style', 'of', 'equal', 'hospitality', 'and', 'elegance', '.', 'The', 'former', 'was', 'for', 'Sir', 'John', '’', 's', 'gratification', ',', 'the', 'latter', 'for', 'that', 'of', 'his', 'lady', '.', 'They', 'were', 'scarcely', 'ever', 'without', 'some', 'friends', 'staying', 'with', 'them', 'in', 'the', 'house', ',', 'and', 'they', 'kept', 'more', 'company', 'of', 'every', 'kind', 'than', 'any', 'other', 'family', 'in', 'the', 'neighbourhood', '.', 'It', 'was', 'necessary', 'to', 'the', 'happiness', 'of', 'both', ';', 'for', 'however', 'dissimilar', 'in', 'temper', 'and', 'outward', 'behaviour', ',', 'they', 'strongly', 'resembled', 'each', 'other', 'in', 'that', 'total', 'want', 'of', 'talent', 'and', 'taste', 'which', 'confined', 'their', 'employments', ',', 'unconnected', 'with', 'such', 'as', 'society', 'produced', ',', 'within', 'a', 'very', 'narrow', 'compass', '.', 'Sir', 'John', 'was', 'a', 'sportsman', ',', 'Lady', 'Middleton', 'a', 'mother', '.', 'He', 'hunted', 'and', 'shot', ',', 'and', 'she', 'humoured', 'her', 'children', ';', 'and', 'these', 'were', 'their', 'only', 'resources', '.', 'Lady', 'Middleton', 'had', 'the', 'advantage', 'of', 'being', 'able', 'to', 'spoil', 'her', 'children', 'all', 'the', 'year', 'round', ',', 'while', 'Sir', 'John', '’', 's', 'independent', 'employments', 'were', 'in', 'existence', 'only', 'half', 'the', 'time', '.', 'Continual', 'engagements', 'at', 'home', 'and', 'abroad', ',', 'however', ',', 'supplied', 'all', 'the', 'deficiencies', 'of', 'nature', 'and', 'education', ';', 'supported', 'the', 'good', 'spirits', 'of', 'Sir', 'John', ',', 'and', 'gave', 'exercise', 'to', 'the', 'good', 'breeding', 'of', 'his', 'wife', '.', 'Lady', 'Middleton', 'piqued', 'herself', 'upon', 'the', 'elegance', 'of', 'her', 'table', ',', 'and', 'of', 'all', 'her', 'domestic', 'arrangements', ';', 'and', 'from', 'this', 'kind', 'of', 'vanity', 'was', 'her', 'greatest', 'enjoyment', 'in', 'any', 'of', 'their', 'parties', '.', 'But', 'Sir', 'John', '’', 's', 'satisfaction', 'in', 'society', 'was', 'much', 'more', 'real', ';', 'he', 'delighted', 'in', 'collecting', 'about', 'him', 'more', 'young', 'people', 'than', 'his', 'house', 'would', 'hold', ',', 'and', 'the', 'noisier', 'they', 'were', 'the', 'better', 'was', 'he', 'pleased', '.', 'He', 'was', 'a', 'blessing', 'to', 'all', 'the', 'juvenile', 'part', 'of', 'the', 'neighbourhood', ',', 'for', 'in', 'summer', 'he', 'was', 'for', 'ever', 'forming', 'parties', 'to', 'eat', 'cold', 'ham', 'and', 'chicken', 'out', 'of', 'doors', ',', 'and', 'in', 'winter', 'his', 'private', 'balls', 'were', 'numerous', 'enough', 'for', 'any', 'young', 'lady', 'who', 'was', 'not', 'suffering', 'under', 'the', 'unsatiable', 'appetite', 'of', 'fifteen', '.', 'The', 'arrival', 'of', 'a', 'new', 'family', 'in', 'the', 'country', 'was', 'always', 'a', 'matter', 'of', 'joy', 'to', 'him', ',', 'and', 'in', 'every', 'point', 'of', 'view', 'he', 'was', 'charmed', 'with', 'the', 'inhabitants', 'he', 'had', 'now', 'procured', 'for', 'his', 'cottage', 'at', 'Barton', '.', 'The', 'Miss', 'Dashwoods', 'were', 'young', ',', 'pretty', ',', 'and', 'unaffected', '.', 'It', 'was', 'enough', 'to', 'secure', 'his', 'good', 'opinion', ';', 'for', 'to', 'be', 'unaffected', 'was', 'all', 'that', 'a', 'pretty', 'girl', 'could', 'want', 'to', 'make', 'her', 'mind', 'as', 'captivating', 'as', 'her', 'person', '.', 'The', 'friendliness', 'of', 'his', 'disposition', 'made', 'him', 'happy', 'in', 'accommodating', 'those', ',', 'whose', 'situation', 'might', 'be', 'considered', ',', 'in', 'comparison', 'with', 'the', 'past', ',', 'as', 'unfortunate', '.', 'In', 'showing', 'kindness', 'to', 'his', 'cousins', 'therefore', 'he', 'had', 'the', 'real', 'satisfaction', 'of', 'a', 'good', 'heart', ';', 'and', 'in', 'settling', 'a', 'family', 'of', 'females', 'only', 'in', 'his', 'cottage', ',', 'he', 'had', 'all', 'the', 'satisfaction', 'of', 'a', 'sportsman', ';', 'for', 'a', 'sportsman', ',', 'though', 'he', 'esteems', 'only', 'those', 'of', 'his', 'sex', 'who', 'are', 'sportsmen', 'likewise', ',', 'is', 'not', 'often', 'desirous', 'of', 'encouraging', 'their', 'taste', 'by', 'admitting', 'them', 'to', 'a', 'residence', 'within', 'his', 'own', 'manor', '.', 'Mrs.', 'Dashwood', 'and', 'her', 'daughters', 'were', 'met', 'at', 'the', 'door', 'of', 'the', 'house', 'by', 'Sir', 'John', ',', 'who', 'welcomed', 'them', 'to', 'Barton', 'Park', 'with', 'unaffected', 'sincerity', ';', 'and', 'as', 'he', 'attended', 'them', 'to', 'the', 'drawing', 'room', 'repeated', 'to', 'the', 'young', 'ladies', 'the', 'concern', 'which', 'the', 'same', 'subject', 'had', 'drawn', 'from', 'him', 'the', 'day', 'before', ',', 'at', 'being', 'unable', 'to', 'get', 'any', 'smart', 'young', 'men', 'to', 'meet', 'them', '.', 'They', 'would', 'see', ',', 'he', 'said', ',', 'only', 'one', 'gentleman', 'there', 'besides', 'himself', ';', 'a', 'particular', 'friend', 'who', 'was', 'staying', 'at', 'the', 'park', ',', 'but', 'who', 'was', 'neither', 'very', 'young', 'nor', 'very', 'gay', '.', 'He', 'hoped', 'they', 'would', 'all', 'excuse', 'the', 'smallness', 'of', 'the', 'party', ',', 'and', 'could', 'assure', 'them', 'it', 'should', 'never', 'happen', 'so', 'again', '.', 'He', 'had', 'been', 'to', 'several', 'families', 'that', 'morning', 'in', 'hopes', 'of', 'procuring', 'some', 'addition', 'to', 'their', 'number', ',', 'but', 'it', 'was', 'moonlight', 'and', 'every', 'body', 'was', 'full', 'of', 'engagements', '.', 'Luckily', 'Lady', 'Middleton', '’', 's', 'mother', 'had', 'arrived', 'at', 'Barton', 'within', 'the', 'last', 'hour', ',', 'and', 'as', 'she', 'was', 'a', 'very', 'cheerful', 'agreeable', 'woman', ',', 'he', 'hoped', 'the', 'young', 'ladies', 'would', 'not', 'find', 'it', 'so', 'very', 'dull', 'as', 'they', 'might', 'imagine', '.', 'The', 'young', 'ladies', ',', 'as', 'well', 'as', 'their', 'mother', ',', 'were', 'perfectly', 'satisfied', 'with', 'having', 'two', 'entire', 'strangers', 'of', 'the', 'party', ',', 'and', 'wished', 'for', 'no', 'more', '.', 'Mrs.', 'Jennings', ',', 'Lady', 'Middleton', '’', 's', 'mother', ',', 'was', 'a', 'good-humoured', ',', 'merry', ',', 'fat', ',', 'elderly', 'woman', ',', 'who', 'talked', 'a', 'great', 'deal', ',', 'seemed', 'very', 'happy', ',', 'and', 'rather', 'vulgar', '.', 'She', 'was', 'full', 'of', 'jokes', 'and', 'laughter', ',', 'and', 'before', 'dinner', 'was', 'over', 'had', 'said', 'many', 'witty', 'things', 'on', 'the', 'subject', 'of', 'lovers', 'and', 'husbands', ';', 'hoped', 'they', 'had', 'not', 'left', 'their', 'hearts', 'behind', 'them', 'in', 'Sussex', ',', 'and', 'pretended', 'to', 'see', 'them', 'blush', 'whether', 'they', 'did', 'or', 'not', '.', 'Marianne', 'was', 'vexed', 'at', 'it', 'for', 'her', 'sister', '’', 's', 'sake', ',', 'and', 'turned', 'her', 'eyes', 'towards', 'Elinor', 'to', 'see', 'how', 'she', 'bore', 'these', 'attacks', ',', 'with', 'an', 'earnestness', 'which', 'gave', 'Elinor', 'far', 'more', 'pain', 'than', 'could', 'arise', 'from', 'such', 'common-place', 'raillery', 'as', 'Mrs.', 'Jennings', '’', 's', '.', 'Colonel', 'Brandon', ',', 'the', 'friend', 'of', 'Sir', 'John', ',', 'seemed', 'no', 'more', 'adapted', 'by', 'resemblance', 'of', 'manner', 'to', 'be', 'his', 'friend', ',', 'than', 'Lady', 'Middleton', 'was', 'to', 'be', 'his', 'wife', ',', 'or', 'Mrs.', 'Jennings', 'to', 'be', 'Lady', 'Middleton', '’', 's', 'mother', '.', 'He', 'was', 'silent', 'and', 'grave', '.', 'His', 'appearance', 'however', 'was', 'not', 'unpleasing', ',', 'in', 'spite', 'of', 'his', 'being', 'in', 'the', 'opinion', 'of', 'Marianne', 'and', 'Margaret', 'an', 'absolute', 'old', 'bachelor', ',', 'for', 'he', 'was', 'on', 'the', 'wrong', 'side', 'of', 'five', 'and', 'thirty', ';', 'but', 'though', 'his', 'face', 'was', 'not', 'handsome', ',', 'his', 'countenance', 'was', 'sensible', ',', 'and', 'his', 'address', 'was', 'particularly', 'gentlemanlike', '.', 'There', 'was', 'nothing', 'in', 'any', 'of', 'the', 'party', 'which', 'could', 'recommend', 'them', 'as', 'companions', 'to', 'the', 'Dashwoods', ';', 'but', 'the', 'cold', 'insipidity', 'of', 'Lady', 'Middleton', 'was', 'so', 'particularly', 'repulsive', ',', 'that', 'in', 'comparison', 'of', 'it', 'the', 'gravity', 'of', 'Colonel', 'Brandon', ',', 'and', 'even', 'the', 'boisterous', 'mirth', 'of', 'Sir', 'John', 'and', 'his', 'mother-in-law', 'was', 'interesting', '.', 'Lady', 'Middleton', 'seemed', 'to', 'be', 'roused', 'to', 'enjoyment', 'only', 'by', 'the', 'entrance', 'of', 'her', 'four', 'noisy', 'children', 'after', 'dinner', ',', 'who', 'pulled', 'her', 'about', ',', 'tore', 'her', 'clothes', ',', 'and', 'put', 'an', 'end', 'to', 'every', 'kind', 'of', 'discourse', 'except', 'what', 'related', 'to', 'themselves', '.', 'In', 'the', 'evening', ',', 'as', 'Marianne', 'was', 'discovered', 'to', 'be', 'musical', ',', 'she', 'was', 'invited', 'to', 'play', '.', 'The', 'instrument', 'was', 'unlocked', ',', 'every', 'body', 'prepared', 'to', 'be', 'charmed', ',', 'and', 'Marianne', ',', 'who', 'sang', 'very', 'well', ',', 'at', 'their', 'request', 'went', 'through', 'the', 'chief', 'of', 'the', 'songs', 'which', 'Lady', 'Middleton', 'had', 'brought', 'into', 'the', 'family', 'on', 'her', 'marriage', ',', 'and', 'which', 'perhaps', 'had', 'lain', 'ever', 'since', 'in', 'the', 'same', 'position', 'on', 'the', 'pianoforte', ',', 'for', 'her', 'ladyship', 'had', 'celebrated', 'that', 'event', 'by', 'giving', 'up', 'music', ',', 'although', 'by', 'her', 'mother', '’', 's', 'account', ',', 'she', 'had', 'played', 'extremely', 'well', ',', 'and', 'by', 'her', 'own', 'was', 'very', 'fond', 'of', 'it', '.', 'Marianne', '’', 's', 'performance', 'was', 'highly', 'applauded', '.', 'Sir', 'John', 'was', 'loud', 'in', 'his', 'admiration', 'at', 'the', 'end', 'of', 'every', 'song', ',', 'and', 'as', 'loud', 'in', 'his', 'conversation', 'with', 'the', 'others', 'while', 'every', 'song', 'lasted', '.', 'Lady', 'Middleton', 'frequently', 'called', 'him', 'to', 'order', ',', 'wondered', 'how', 'any', 'one', '’', 's', 'attention', 'could', 'be', 'diverted', 'from', 'music', 'for', 'a', 'moment', ',', 'and', 'asked', 'Marianne', 'to', 'sing', 'a', 'particular', 'song', 'which', 'Marianne', 'had', 'just', 'finished', '.', 'Colonel', 'Brandon', 'alone', ',', 'of', 'all', 'the', 'party', ',', 'heard', 'her', 'without', 'being', 'in', 'raptures', '.', 'He', 'paid', 'her', 'only', 'the', 'compliment', 'of', 'attention', ';', 'and', 'she', 'felt', 'a', 'respect', 'for', 'him', 'on', 'the', 'occasion', ',', 'which', 'the', 'others', 'had', 'reasonably', 'forfeited', 'by', 'their', 'shameless', 'want', 'of', 'taste', '.', 'His', 'pleasure', 'in', 'music', ',', 'though', 'it', 'amounted', 'not', 'to', 'that', 'ecstatic', 'delight', 'which', 'alone', 'could', 'sympathize', 'with', 'her', 'own', ',', 'was', 'estimable', 'when', 'contrasted', 'against', 'the', 'horrible', 'insensibility', 'of', 'the', 'others', ';', 'and', 'she', 'was', 'reasonable', 'enough', 'to', 'allow', 'that', 'a', 'man', 'of', 'five', 'and', 'thirty', 'might', 'well', 'have', 'outlived', 'all', 'acuteness', 'of', 'feeling', 'and', 'every', 'exquisite', 'power', 'of', 'enjoyment', '.', 'She', 'was', 'perfectly', 'disposed', 'to', 'make', 'every', 'allowance', 'for', 'the', 'colonel', '’', 's', 'advanced', 'state', 'of', 'life', 'which', 'humanity', 'required', '.', 'CHAPTER', 'VIII', '.', 'Mrs.', 'Jennings', 'was', 'a', 'widow', 'with', 'an', 'ample', 'jointure', '.', 'She', 'had', 'only', 'two', 'daughters', ',', 'both', 'of', 'whom', 'she', 'had', 'lived', 'to', 'see', 'respectably', 'married', ',', 'and', 'she', 'had', 'now', 'therefore', 'nothing', 'to', 'do', 'but', 'to', 'marry', 'all', 'the', 'rest', 'of', 'the', 'world', '.', 'In', 'the', 'promotion', 'of', 'this', 'object', 'she', 'was', 'zealously', 'active', ',', 'as', 'far', 'as', 'her', 'ability', 'reached', ';', 'and', 'missed', 'no', 'opportunity', 'of', 'projecting', 'weddings', 'among', 'all', 'the', 'young', 'people', 'of', 'her', 'acquaintance', '.', 'She', 'was', 'remarkably', 'quick', 'in', 'the', 'discovery', 'of', 'attachments', ',', 'and', 'had', 'enjoyed', 'the', 'advantage', 'of', 'raising', 'the', 'blushes', 'and', 'the', 'vanity', 'of', 'many', 'a', 'young', 'lady', 'by', 'insinuations', 'of', 'her', 'power', 'over', 'such', 'a', 'young', 'man', ';', 'and', 'this', 'kind', 'of', 'discernment', 'enabled', 'her', 'soon', 'after', 'her', 'arrival', 'at', 'Barton', 'decisively', 'to', 'pronounce', 'that', 'Colonel', 'Brandon', 'was', 'very', 'much', 'in', 'love', 'with', 'Marianne', 'Dashwood', '.', 'She', 'rather', 'suspected', 'it', 'to', 'be', 'so', ',', 'on', 'the', 'very', 'first', 'evening', 'of', 'their', 'being', 'together', ',', 'from', 'his', 'listening', 'so', 'attentively', 'while', 'she', 'sang', 'to', 'them', ';', 'and', 'when', 'the', 'visit', 'was', 'returned', 'by', 'the', 'Middletons', '’', 'dining', 'at', 'the', 'cottage', ',', 'the', 'fact', 'was', 'ascertained', 'by', 'his', 'listening', 'to', 'her', 'again', '.', 'It', 'must', 'be', 'so', '.', 'She', 'was', 'perfectly', 'convinced', 'of', 'it', '.', 'It', 'would', 'be', 'an', 'excellent', 'match', ',', 'for', '_he_', 'was', 'rich', ',', 'and', '_she_', 'was', 'handsome', '.', 'Mrs.', 'Jennings', 'had', 'been', 'anxious', 'to', 'see', 'Colonel', 'Brandon', 'well', 'married', ',', 'ever', 'since', 'her', 'connection', 'with', 'Sir', 'John', 'first', 'brought', 'him', 'to', 'her', 'knowledge', ';', 'and', 'she', 'was', 'always', 'anxious', 'to', 'get', 'a', 'good', 'husband', 'for', 'every', 'pretty', 'girl', '.', 'The', 'immediate', 'advantage', 'to', 'herself', 'was', 'by', 'no', 'means', 'inconsiderable', ',', 'for', 'it', 'supplied', 'her', 'with', 'endless', 'jokes', 'against', 'them', 'both', '.', 'At', 'the', 'park', 'she', 'laughed', 'at', 'the', 'colonel', ',', 'and', 'in', 'the', 'cottage', 'at', 'Marianne', '.', 'To', 'the', 'former', 'her', 'raillery', 'was', 'probably', ',', 'as', 'far', 'as', 'it', 'regarded', 'only', 'himself', ',', 'perfectly', 'indifferent', ';', 'but', 'to', 'the', 'latter', 'it', 'was', 'at', 'first', 'incomprehensible', ';', 'and', 'when', 'its', 'object', 'was', 'understood', ',', 'she', 'hardly', 'knew', 'whether', 'most', 'to', 'laugh', 'at', 'its', 'absurdity', ',', 'or', 'censure', 'its', 'impertinence', ',', 'for', 'she', 'considered', 'it', 'as', 'an', 'unfeeling', 'reflection', 'on', 'the', 'colonel', '’', 's', 'advanced', 'years', ',', 'and', 'on', 'his', 'forlorn', 'condition', 'as', 'an', 'old', 'bachelor', '.', 'Mrs.', 'Dashwood', ',', 'who', 'could', 'not', 'think', 'a', 'man', 'five', 'years', 'younger', 'than', 'herself', ',', 'so', 'exceedingly', 'ancient', 'as', 'he', 'appeared', 'to', 'the', 'youthful', 'fancy', 'of', 'her', 'daughter', ',', 'ventured', 'to', 'clear', 'Mrs.', 'Jennings', 'from', 'the', 'probability', 'of', 'wishing', 'to', 'throw', 'ridicule', 'on', 'his', 'age', '.', '“', 'But', 'at', 'least', ',', 'Mama', ',', 'you', 'can', 'not', 'deny', 'the', 'absurdity', 'of', 'the', 'accusation', ',', 'though', 'you', 'may', 'not', 'think', 'it', 'intentionally', 'ill-natured', '.', 'Colonel', 'Brandon', 'is', 'certainly', 'younger', 'than', 'Mrs.', 'Jennings', ',', 'but', 'he', 'is', 'old', 'enough', 'to', 'be', '_my_', 'father', ';', 'and', 'if', 'he', 'were', 'ever', 'animated', 'enough', 'to', 'be', 'in', 'love', ',', 'must', 'have', 'long', 'outlived', 'every', 'sensation', 'of', 'the', 'kind', '.', 'It', 'is', 'too', 'ridiculous', '!', 'When', 'is', 'a', 'man', 'to', 'be', 'safe', 'from', 'such', 'wit', ',', 'if', 'age', 'and', 'infirmity', 'will', 'not', 'protect', 'him', '?', '”', '“', 'Infirmity', '!', '”', 'said', 'Elinor', ',', '“', 'do', 'you', 'call', 'Colonel', 'Brandon', 'infirm', '?', 'I', 'can', 'easily', 'suppose', 'that', 'his', 'age', 'may', 'appear', 'much', 'greater', 'to', 'you', 'than', 'to', 'my', 'mother', ';', 'but', 'you', 'can', 'hardly', 'deceive', 'yourself', 'as', 'to', 'his', 'having', 'the', 'use', 'of', 'his', 'limbs', '!', '”', '“', 'Did', 'not', 'you', 'hear', 'him', 'complain', 'of', 'the', 'rheumatism', '?', 'and', 'is', 'not', 'that', 'the', 'commonest', 'infirmity', 'of', 'declining', 'life', '?', '”', '“', 'My', 'dearest', 'child', ',', '”', 'said', 'her', 'mother', ',', 'laughing', ',', '“', 'at', 'this', 'rate', 'you', 'must', 'be', 'in', 'continual', 'terror', 'of', '_my_', 'decay', ';', 'and', 'it', 'must', 'seem', 'to', 'you', 'a', 'miracle', 'that', 'my', 'life', 'has', 'been', 'extended', 'to', 'the', 'advanced', 'age', 'of', 'forty.', '”', '“', 'Mama', ',', 'you', 'are', 'not', 'doing', 'me', 'justice', '.', 'I', 'know', 'very', 'well', 'that', 'Colonel', 'Brandon', 'is', 'not', 'old', 'enough', 'to', 'make', 'his', 'friends', 'yet', 'apprehensive', 'of', 'losing', 'him', 'in', 'the', 'course', 'of', 'nature', '.', 'He', 'may', 'live', 'twenty', 'years', 'longer', '.', 'But', 'thirty-five', 'has', 'nothing', 'to', 'do', 'with', 'matrimony.', '”', '“', 'Perhaps', ',', '”', 'said', 'Elinor', ',', '“', 'thirty-five', 'and', 'seventeen', 'had', 'better', 'not', 'have', 'any', 'thing', 'to', 'do', 'with', 'matrimony', 'together', '.', 'But', 'if', 'there', 'should', 'by', 'any', 'chance', 'happen', 'to', 'be', 'a', 'woman', 'who', 'is', 'single', 'at', 'seven', 'and', 'twenty', ',', 'I', 'should', 'not', 'think', 'Colonel', 'Brandon', '’', 's', 'being', 'thirty-five', 'any', 'objection', 'to', 'his', 'marrying', '_her_.', '”', '“', 'A', 'woman', 'of', 'seven', 'and', 'twenty', ',', '”', 'said', 'Marianne', ',', 'after', 'pausing', 'a', 'moment', ',', '“', 'can', 'never', 'hope', 'to', 'feel', 'or', 'inspire', 'affection', 'again', ',', 'and', 'if', 'her', 'home', 'be', 'uncomfortable', ',', 'or', 'her', 'fortune', 'small', ',', 'I', 'can', 'suppose', 'that', 'she', 'might', 'bring', 'herself', 'to', 'submit', 'to', 'the', 'offices', 'of', 'a', 'nurse', ',', 'for', 'the', 'sake', 'of', 'the', 'provision', 'and', 'security', 'of', 'a', 'wife', '.', 'In', 'his', 'marrying', 'such', 'a', 'woman', 'therefore', 'there', 'would', 'be', 'nothing', 'unsuitable', '.', 'It', 'would', 'be', 'a', 'compact', 'of', 'convenience', ',', 'and', 'the', 'world', 'would', 'be', 'satisfied', '.', 'In', 'my', 'eyes', 'it', 'would', 'be', 'no', 'marriage', 'at', 'all', ',', 'but', 'that', 'would', 'be', 'nothing', '.', 'To', 'me', 'it', 'would', 'seem', 'only', 'a', 'commercial', 'exchange', ',', 'in', 'which', 'each', 'wished', 'to', 'be', 'benefited', 'at', 'the', 'expense', 'of', 'the', 'other.', '”', '“', 'It', 'would', 'be', 'impossible', ',', 'I', 'know', ',', '”', 'replied', 'Elinor', ',', '“', 'to', 'convince', 'you', 'that', 'a', 'woman', 'of', 'seven', 'and', 'twenty', 'could', 'feel', 'for', 'a', 'man', 'of', 'thirty-five', 'anything', 'near', 'enough', 'to', 'love', ',', 'to', 'make', 'him', 'a', 'desirable', 'companion', 'to', 'her', '.', 'But', 'I', 'must', 'object', 'to', 'your', 'dooming', 'Colonel', 'Brandon', 'and', 'his', 'wife', 'to', 'the', 'constant', 'confinement', 'of', 'a', 'sick', 'chamber', ',', 'merely', 'because', 'he', 'chanced', 'to', 'complain', 'yesterday', '(', 'a', 'very', 'cold', 'damp', 'day', ')', 'of', 'a', 'slight', 'rheumatic', 'feel', 'in', 'one', 'of', 'his', 'shoulders.', '”', '“', 'But', 'he', 'talked', 'of', 'flannel', 'waistcoats', ',', '”', 'said', 'Marianne', ';', '“', 'and', 'with', 'me', 'a', 'flannel', 'waistcoat', 'is', 'invariably', 'connected', 'with', 'aches', ',', 'cramps', ',', 'rheumatisms', ',', 'and', 'every', 'species', 'of', 'ailment', 'that', 'can', 'afflict', 'the', 'old', 'and', 'the', 'feeble.', '”', '“', 'Had', 'he', 'been', 'only', 'in', 'a', 'violent', 'fever', ',', 'you', 'would', 'not', 'have', 'despised', 'him', 'half', 'so', 'much', '.', 'Confess', ',', 'Marianne', ',', 'is', 'not', 'there', 'something', 'interesting', 'to', 'you', 'in', 'the', 'flushed', 'cheek', ',', 'hollow', 'eye', ',', 'and', 'quick', 'pulse', 'of', 'a', 'fever', '?', '”', 'Soon', 'after', 'this', ',', 'upon', 'Elinor', '’', 's', 'leaving', 'the', 'room', ',', '“', 'Mama', ',', '”', 'said', 'Marianne', ',', '“', 'I', 'have', 'an', 'alarm', 'on', 'the', 'subject', 'of', 'illness', 'which', 'I', 'can', 'not', 'conceal', 'from', 'you', '.', 'I', 'am', 'sure', 'Edward', 'Ferrars', 'is', 'not', 'well', '.', 'We', 'have', 'now', 'been', 'here', 'almost', 'a', 'fortnight', ',', 'and', 'yet', 'he', 'does', 'not', 'come', '.', 'Nothing', 'but', 'real', 'indisposition', 'could', 'occasion', 'this', 'extraordinary', 'delay', '.', 'What', 'else', 'can', 'detain', 'him', 'at', 'Norland', '?', '”', '“', 'Had', 'you', 'any', 'idea', 'of', 'his', 'coming', 'so', 'soon', '?', '”', 'said', 'Mrs.', 'Dashwood', '.', '“', '_I_', 'had', 'none', '.', 'On', 'the', 'contrary', ',', 'if', 'I', 'have', 'felt', 'any', 'anxiety', 'at', 'all', 'on', 'the', 'subject', ',', 'it', 'has', 'been', 'in', 'recollecting', 'that', 'he', 'sometimes', 'showed', 'a', 'want', 'of', 'pleasure', 'and', 'readiness', 'in', 'accepting', 'my', 'invitation', ',', 'when', 'I', 'talked', 'of', 'his', 'coming', 'to', 'Barton', '.', 'Does', 'Elinor', 'expect', 'him', 'already', '?', '”', '“', 'I', 'have', 'never', 'mentioned', 'it', 'to', 'her', ',', 'but', 'of', 'course', 'she', 'must.', '”', '“', 'I', 'rather', 'think', 'you', 'are', 'mistaken', ',', 'for', 'when', 'I', 'was', 'talking', 'to', 'her', 'yesterday', 'of', 'getting', 'a', 'new', 'grate', 'for', 'the', 'spare', 'bedchamber', ',', 'she', 'observed', 'that', 'there', 'was', 'no', 'immediate', 'hurry', 'for', 'it', ',', 'as', 'it', 'was', 'not', 'likely', 'that', 'the', 'room', 'would', 'be', 'wanted', 'for', 'some', 'time.', '”', '“', 'How', 'strange', 'this', 'is', '!', 'what', 'can', 'be', 'the', 'meaning', 'of', 'it', '!', 'But', 'the', 'whole', 'of', 'their', 'behaviour', 'to', 'each', 'other', 'has', 'been', 'unaccountable', '!', 'How', 'cold', ',', 'how', 'composed', 'were', 'their', 'last', 'adieus', '!', 'How', 'languid', 'their', 'conversation', 'the', 'last', 'evening', 'of', 'their', 'being', 'together', '!', 'In', 'Edward', '’', 's', 'farewell', 'there', 'was', 'no', 'distinction', 'between', 'Elinor', 'and', 'me', ':', 'it', 'was', 'the', 'good', 'wishes', 'of', 'an', 'affectionate', 'brother', 'to', 'both', '.', 'Twice', 'did', 'I', 'leave', 'them', 'purposely', 'together', 'in', 'the', 'course', 'of', 'the', 'last', 'morning', ',', 'and', 'each', 'time', 'did', 'he', 'most', 'unaccountably', 'follow', 'me', 'out', 'of', 'the', 'room', '.', 'And', 'Elinor', ',', 'in', 'quitting', 'Norland', 'and', 'Edward', ',', 'cried', 'not', 'as', 'I', 'did', '.', 'Even', 'now', 'her', 'self-command', 'is', 'invariable', '.', 'When', 'is', 'she', 'dejected', 'or', 'melancholy', '?', 'When', 'does', 'she', 'try', 'to', 'avoid', 'society', ',', 'or', 'appear', 'restless', 'and', 'dissatisfied', 'in', 'it', '?', '”', 'CHAPTER', 'IX', '.', 'The', 'Dashwoods', 'were', 'now', 'settled', 'at', 'Barton', 'with', 'tolerable', 'comfort', 'to', 'themselves', '.', 'The', 'house', 'and', 'the', 'garden', ',', 'with', 'all', 'the', 'objects', 'surrounding', 'them', ',', 'were', 'now', 'become', 'familiar', ',', 'and', 'the', 'ordinary', 'pursuits', 'which', 'had', 'given', 'to', 'Norland', 'half', 'its', 'charms', 'were', 'engaged', 'in', 'again', 'with', 'far', 'greater', 'enjoyment', 'than', 'Norland', 'had', 'been', 'able', 'to', 'afford', ',', 'since', 'the', 'loss', 'of', 'their', 'father', '.', 'Sir', 'John', 'Middleton', ',', 'who', 'called', 'on', 'them', 'every', 'day', 'for', 'the', 'first', 'fortnight', ',', 'and', 'who', 'was', 'not', 'in', 'the', 'habit', 'of', 'seeing', 'much', 'occupation', 'at', 'home', ',', 'could', 'not', 'conceal', 'his', 'amazement', 'on', 'finding', 'them', 'always', 'employed', '.', 'Their', 'visitors', ',', 'except', 'those', 'from', 'Barton', 'Park', ',', 'were', 'not', 'many', ';', 'for', ',', 'in', 'spite', 'of', 'Sir', 'John', '’', 's', 'urgent', 'entreaties', 'that', 'they', 'would', 'mix', 'more', 'in', 'the', 'neighbourhood', ',', 'and', 'repeated', 'assurances', 'of', 'his', 'carriage', 'being', 'always', 'at', 'their', 'service', ',', 'the', 'independence', 'of', 'Mrs.', 'Dashwood', '’', 's', 'spirit', 'overcame', 'the', 'wish', 'of', 'society', 'for', 'her', 'children', ';', 'and', 'she', 'was', 'resolute', 'in', 'declining', 'to', 'visit', 'any', 'family', 'beyond', 'the', 'distance', 'of', 'a', 'walk', '.', 'There', 'were', 'but', 'few', 'who', 'could', 'be', 'so', 'classed', ';', 'and', 'it', 'was', 'not', 'all', 'of', 'them', 'that', 'were', 'attainable', '.', 'About', 'a', 'mile', 'and', 'a', 'half', 'from', 'the', 'cottage', ',', 'along', 'the', 'narrow', 'winding', 'valley', 'of', 'Allenham', ',', 'which', 'issued', 'from', 'that', 'of', 'Barton', ',', 'as', 'formerly', 'described', ',', 'the', 'girls', 'had', ',', 'in', 'one', 'of', 'their', 'earliest', 'walks', ',', 'discovered', 'an', 'ancient', 'respectable', 'looking', 'mansion', 'which', ',', 'by', 'reminding', 'them', 'a', 'little', 'of', 'Norland', ',', 'interested', 'their', 'imagination', 'and', 'made', 'them', 'wish', 'to', 'be', 'better', 'acquainted', 'with', 'it', '.', 'But', 'they', 'learnt', ',', 'on', 'enquiry', ',', 'that', 'its', 'possessor', ',', 'an', 'elderly', 'lady', 'of', 'very', 'good', 'character', ',', 'was', 'unfortunately', 'too', 'infirm', 'to', 'mix', 'with', 'the', 'world', ',', 'and', 'never', 'stirred', 'from', 'home', '.', 'The', 'whole', 'country', 'about', 'them', 'abounded', 'in', 'beautiful', 'walks', '.', 'The', 'high', 'downs', 'which', 'invited', 'them', 'from', 'almost', 'every', 'window', 'of', 'the', 'cottage', 'to', 'seek', 'the', 'exquisite', 'enjoyment', 'of', 'air', 'on', 'their', 'summits', ',', 'were', 'a', 'happy', 'alternative', 'when', 'the', 'dirt', 'of', 'the', 'valleys', 'beneath', 'shut', 'up', 'their', 'superior', 'beauties', ';', 'and', 'towards', 'one', 'of', 'these', 'hills', 'did', 'Marianne', 'and', 'Margaret', 'one', 'memorable', 'morning', 'direct', 'their', 'steps', ',', 'attracted', 'by', 'the', 'partial', 'sunshine', 'of', 'a', 'showery', 'sky', ',', 'and', 'unable', 'longer', 'to', 'bear', 'the', 'confinement', 'which', 'the', 'settled', 'rain', 'of', 'the', 'two', 'preceding', 'days', 'had', 'occasioned', '.', 'The', 'weather', 'was', 'not', 'tempting', 'enough', 'to', 'draw', 'the', 'two', 'others', 'from', 'their', 'pencil', 'and', 'their', 'book', ',', 'in', 'spite', 'of', 'Marianne', '’', 's', 'declaration', 'that', 'the', 'day', 'would', 'be', 'lastingly', 'fair', ',', 'and', 'that', 'every', 'threatening', 'cloud', 'would', 'be', 'drawn', 'off', 'from', 'their', 'hills', ';', 'and', 'the', 'two', 'girls', 'set', 'off', 'together', '.', 'They', 'gaily', 'ascended', 'the', 'downs', ',', 'rejoicing', 'in', 'their', 'own', 'penetration', 'at', 'every', 'glimpse', 'of', 'blue', 'sky', ';', 'and', 'when', 'they', 'caught', 'in', 'their', 'faces', 'the', 'animating', 'gales', 'of', 'a', 'high', 'south-westerly', 'wind', ',', 'they', 'pitied', 'the', 'fears', 'which', 'had', 'prevented', 'their', 'mother', 'and', 'Elinor', 'from', 'sharing', 'such', 'delightful', 'sensations', '.', '“', 'Is', 'there', 'a', 'felicity', 'in', 'the', 'world', ',', '”', 'said', 'Marianne', ',', '“', 'superior', 'to', 'this', '?', '—Margaret', ',', 'we', 'will', 'walk', 'here', 'at', 'least', 'two', 'hours.', '”', 'Margaret', 'agreed', ',', 'and', 'they', 'pursued', 'their', 'way', 'against', 'the', 'wind', ',', 'resisting', 'it', 'with', 'laughing', 'delight', 'for', 'about', 'twenty', 'minutes', 'longer', ',', 'when', 'suddenly', 'the', 'clouds', 'united', 'over', 'their', 'heads', ',', 'and', 'a', 'driving', 'rain', 'set', 'full', 'in', 'their', 'face', '.', 'Chagrined', 'and', 'surprised', ',', 'they', 'were', 'obliged', ',', 'though', 'unwillingly', ',', 'to', 'turn', 'back', ',', 'for', 'no', 'shelter', 'was', 'nearer', 'than', 'their', 'own', 'house', '.', 'One', 'consolation', 'however', 'remained', 'for', 'them', ',', 'to', 'which', 'the', 'exigence', 'of', 'the', 'moment', 'gave', 'more', 'than', 'usual', 'propriety', ',', '—it', 'was', 'that', 'of', 'running', 'with', 'all', 'possible', 'speed', 'down', 'the', 'steep', 'side', 'of', 'the', 'hill', 'which', 'led', 'immediately', 'to', 'their', 'garden', 'gate', '.', 'They', 'set', 'off', '.', 'Marianne', 'had', 'at', 'first', 'the', 'advantage', ',', 'but', 'a', 'false', 'step', 'brought', 'her', 'suddenly', 'to', 'the', 'ground', ';', 'and', 'Margaret', ',', 'unable', 'to', 'stop', 'herself', 'to', 'assist', 'her', ',', 'was', 'involuntarily', 'hurried', 'along', ',', 'and', 'reached', 'the', 'bottom', 'in', 'safety', '.', 'A', 'gentleman', 'carrying', 'a', 'gun', ',', 'with', 'two', 'pointers', 'playing', 'round', 'him', ',', 'was', 'passing', 'up', 'the', 'hill', 'and', 'within', 'a', 'few', 'yards', 'of', 'Marianne', ',', 'when', 'her', 'accident', 'happened', '.', 'He', 'put', 'down', 'his', 'gun', 'and', 'ran', 'to', 'her', 'assistance', '.', 'She', 'had', 'raised', 'herself', 'from', 'the', 'ground', ',', 'but', 'her', 'foot', 'had', 'been', 'twisted', 'in', 'her', 'fall', ',', 'and', 'she', 'was', 'scarcely', 'able', 'to', 'stand', '.', 'The', 'gentleman', 'offered', 'his', 'services', ';', 'and', 'perceiving', 'that', 'her', 'modesty', 'declined', 'what', 'her', 'situation', 'rendered', 'necessary', ',', 'took', 'her', 'up', 'in', 'his', 'arms', 'without', 'farther', 'delay', ',', 'and', 'carried', 'her', 'down', 'the', 'hill', '.', 'Then', 'passing', 'through', 'the', 'garden', ',', 'the', 'gate', 'of', 'which', 'had', 'been', 'left', 'open', 'by', 'Margaret', ',', 'he', 'bore', 'her', 'directly', 'into', 'the', 'house', ',', 'whither', 'Margaret', 'was', 'just', 'arrived', ',', 'and', 'quitted', 'not', 'his', 'hold', 'till', 'he', 'had', 'seated', 'her', 'in', 'a', 'chair', 'in', 'the', 'parlour', '.', 'Elinor', 'and', 'her', 'mother', 'rose', 'up', 'in', 'amazement', 'at', 'their', 'entrance', ',', 'and', 'while', 'the', 'eyes', 'of', 'both', 'were', 'fixed', 'on', 'him', 'with', 'an', 'evident', 'wonder', 'and', 'a', 'secret', 'admiration', 'which', 'equally', 'sprung', 'from', 'his', 'appearance', ',', 'he', 'apologized', 'for', 'his', 'intrusion', 'by', 'relating', 'its', 'cause', ',', 'in', 'a', 'manner', 'so', 'frank', 'and', 'so', 'graceful', 'that', 'his', 'person', ',', 'which', 'was', 'uncommonly', 'handsome', ',', 'received', 'additional', 'charms', 'from', 'his', 'voice', 'and', 'expression', '.', 'Had', 'he', 'been', 'even', 'old', ',', 'ugly', ',', 'and', 'vulgar', ',', 'the', 'gratitude', 'and', 'kindness', 'of', 'Mrs.', 'Dashwood', 'would', 'have', 'been', 'secured', 'by', 'any', 'act', 'of', 'attention', 'to', 'her', 'child', ';', 'but', 'the', 'influence', 'of', 'youth', ',', 'beauty', ',', 'and', 'elegance', ',', 'gave', 'an', 'interest', 'to', 'the', 'action', 'which', 'came', 'home', 'to', 'her', 'feelings', '.', 'She', 'thanked', 'him', 'again', 'and', 'again', ';', 'and', ',', 'with', 'a', 'sweetness', 'of', 'address', 'which', 'always', 'attended', 'her', ',', 'invited', 'him', 'to', 'be', 'seated', '.', 'But', 'this', 'he', 'declined', ',', 'as', 'he', 'was', 'dirty', 'and', 'wet', '.', 'Mrs.', 'Dashwood', 'then', 'begged', 'to', 'know', 'to', 'whom', 'she', 'was', 'obliged', '.', 'His', 'name', ',', 'he', 'replied', ',', 'was', 'Willoughby', ',', 'and', 'his', 'present', 'home', 'was', 'at', 'Allenham', ',', 'from', 'whence', 'he', 'hoped', 'she', 'would', 'allow', 'him', 'the', 'honour', 'of', 'calling', 'tomorrow', 'to', 'enquire', 'after', 'Miss', 'Dashwood', '.', 'The', 'honour', 'was', 'readily', 'granted', ',', 'and', 'he', 'then', 'departed', ',', 'to', 'make', 'himself', 'still', 'more', 'interesting', ',', 'in', 'the', 'midst', 'of', 'a', 'heavy', 'rain', '.', 'His', 'manly', 'beauty', 'and', 'more', 'than', 'common', 'gracefulness', 'were', 'instantly', 'the', 'theme', 'of', 'general', 'admiration', ',', 'and', 'the', 'laugh', 'which', 'his', 'gallantry', 'raised', 'against', 'Marianne', 'received', 'particular', 'spirit', 'from', 'his', 'exterior', 'attractions', '.', 'Marianne', 'herself', 'had', 'seen', 'less', 'of', 'his', 'person', 'than', 'the', 'rest', ',', 'for', 'the', 'confusion', 'which', 'crimsoned', 'over', 'her', 'face', ',', 'on', 'his', 'lifting', 'her', 'up', ',', 'had', 'robbed', 'her', 'of', 'the', 'power', 'of', 'regarding', 'him', 'after', 'their', 'entering', 'the', 'house', '.', 'But', 'she', 'had', 'seen', 'enough', 'of', 'him', 'to', 'join', 'in', 'all', 'the', 'admiration', 'of', 'the', 'others', ',', 'and', 'with', 'an', 'energy', 'which', 'always', 'adorned', 'her', 'praise', '.', 'His', 'person', 'and', 'air', 'were', 'equal', 'to', 'what', 'her', 'fancy', 'had', 'ever', 'drawn', 'for', 'the', 'hero', 'of', 'a', 'favourite', 'story', ';', 'and', 'in', 'his', 'carrying', 'her', 'into', 'the', 'house', 'with', 'so', 'little', 'previous', 'formality', ',', 'there', 'was', 'a', 'rapidity', 'of', 'thought', 'which', 'particularly', 'recommended', 'the', 'action', 'to', 'her', '.', 'Every', 'circumstance', 'belonging', 'to', 'him', 'was', 'interesting', '.', 'His', 'name', 'was', 'good', ',', 'his', 'residence', 'was', 'in', 'their', 'favourite', 'village', ',', 'and', 'she', 'soon', 'found', 'out', 'that', 'of', 'all', 'manly', 'dresses', 'a', 'shooting-jacket', 'was', 'the', 'most', 'becoming', '.', 'Her', 'imagination', 'was', 'busy', ',', 'her', 'reflections', 'were', 'pleasant', ',', 'and', 'the', 'pain', 'of', 'a', 'sprained', 'ankle', 'was', 'disregarded', '.', 'Sir', 'John', 'called', 'on', 'them', 'as', 'soon', 'as', 'the', 'next', 'interval', 'of', 'fair', 'weather', 'that', 'morning', 'allowed', 'him', 'to', 'get', 'out', 'of', 'doors', ';', 'and', 'Marianne', '’', 's', 'accident', 'being', 'related', 'to', 'him', ',', 'he', 'was', 'eagerly', 'asked', 'whether', 'he', 'knew', 'any', 'gentleman', 'of', 'the', 'name', 'of', 'Willoughby', 'at', 'Allenham', '.', '“', 'Willoughby', '!', '”', 'cried', 'Sir', 'John', ';', '“', 'what', ',', 'is', '_he_', 'in', 'the', 'country', '?', 'That', 'is', 'good', 'news', 'however', ';', 'I', 'will', 'ride', 'over', 'tomorrow', ',', 'and', 'ask', 'him', 'to', 'dinner', 'on', 'Thursday.', '”', '“', 'You', 'know', 'him', 'then', ',', '”', 'said', 'Mrs.', 'Dashwood', '.', '“', 'Know', 'him', '!', 'to', 'be', 'sure', 'I', 'do', '.', 'Why', ',', 'he', 'is', 'down', 'here', 'every', 'year.', '”', '“', 'And', 'what', 'sort', 'of', 'a', 'young', 'man', 'is', 'he', '?', '”', '“', 'As', 'good', 'a', 'kind', 'of', 'fellow', 'as', 'ever', 'lived', ',', 'I', 'assure', 'you', '.', 'A', 'very', 'decent', 'shot', ',', 'and', 'there', 'is', 'not', 'a', 'bolder', 'rider', 'in', 'England.', '”', '“', 'And', 'is', '_that_', 'all', 'you', 'can', 'say', 'for', 'him', '?', '”', 'cried', 'Marianne', ',', 'indignantly', '.', '“', 'But', 'what', 'are', 'his', 'manners', 'on', 'more', 'intimate', 'acquaintance', '?', 'What', 'his', 'pursuits', ',', 'his', 'talents', ',', 'and', 'genius', '?', '”', 'Sir', 'John', 'was', 'rather', 'puzzled', '.', '“', 'Upon', 'my', 'soul', ',', '”', 'said', 'he', ',', '“', 'I', 'do', 'not', 'know', 'much', 'about', 'him', 'as', 'to', 'all', '_that_', '.', 'But', 'he', 'is', 'a', 'pleasant', ',', 'good', 'humoured', 'fellow', ',', 'and', 'has', 'got', 'the', 'nicest', 'little', 'black', 'bitch', 'of', 'a', 'pointer', 'I', 'ever', 'saw', '.', 'Was', 'she', 'out', 'with', 'him', 'today', '?', '”', 'But', 'Marianne', 'could', 'no', 'more', 'satisfy', 'him', 'as', 'to', 'the', 'colour', 'of', 'Mr.', 'Willoughby', '’', 's', 'pointer', ',', 'than', 'he', 'could', 'describe', 'to', 'her', 'the', 'shades', 'of', 'his', 'mind', '.', '“', 'But', 'who', 'is', 'he', '?', '”', 'said', 'Elinor', '.', '“', 'Where', 'does', 'he', 'come', 'from', '?', 'Has', 'he', 'a', 'house', 'at', 'Allenham', '?', '”', 'On', 'this', 'point', 'Sir', 'John', 'could', 'give', 'more', 'certain', 'intelligence', ';', 'and', 'he', 'told', 'them', 'that', 'Mr.', 'Willoughby', 'had', 'no', 'property', 'of', 'his', 'own', 'in', 'the', 'country', ';', 'that', 'he', 'resided', 'there', 'only', 'while', 'he', 'was', 'visiting', 'the', 'old', 'lady', 'at', 'Allenham', 'Court', ',', 'to', 'whom', 'he', 'was', 'related', ',', 'and', 'whose', 'possessions', 'he', 'was', 'to', 'inherit', ';', 'adding', ',', '“', 'Yes', ',', 'yes', ',', 'he', 'is', 'very', 'well', 'worth', 'catching', 'I', 'can', 'tell', 'you', ',', 'Miss', 'Dashwood', ';', 'he', 'has', 'a', 'pretty', 'little', 'estate', 'of', 'his', 'own', 'in', 'Somersetshire', 'besides', ';', 'and', 'if', 'I', 'were', 'you', ',', 'I', 'would', 'not', 'give', 'him', 'up', 'to', 'my', 'younger', 'sister', ',', 'in', 'spite', 'of', 'all', 'this', 'tumbling', 'down', 'hills', '.', 'Miss', 'Marianne', 'must', 'not', 'expect', 'to', 'have', 'all', 'the', 'men', 'to', 'herself', '.', 'Brandon', 'will', 'be', 'jealous', ',', 'if', 'she', 'does', 'not', 'take', 'care.', '”', '“', 'I', 'do', 'not', 'believe', ',', '”', 'said', 'Mrs.', 'Dashwood', ',', 'with', 'a', 'good', 'humoured', 'smile', ',', '“', 'that', 'Mr.', 'Willoughby', 'will', 'be', 'incommoded', 'by', 'the', 'attempts', 'of', 'either', 'of', '_my_', 'daughters', 'towards', 'what', 'you', 'call', '_catching', 'him_', '.', 'It', 'is', 'not', 'an', 'employment', 'to', 'which', 'they', 'have', 'been', 'brought', 'up', '.', 'Men', 'are', 'very', 'safe', 'with', 'us', ',', 'let', 'them', 'be', 'ever', 'so', 'rich', '.', 'I', 'am', 'glad', 'to', 'find', ',', 'however', ',', 'from', 'what', 'you', 'say', ',', 'that', 'he', 'is', 'a', 'respectable', 'young', 'man', ',', 'and', 'one', 'whose', 'acquaintance', 'will', 'not', 'be', 'ineligible.', '”', '“', 'He', 'is', 'as', 'good', 'a', 'sort', 'of', 'fellow', ',', 'I', 'believe', ',', 'as', 'ever', 'lived', ',', '”', 'repeated', 'Sir', 'John', '.', '“', 'I', 'remember', 'last', 'Christmas', 'at', 'a', 'little', 'hop', 'at', 'the', 'park', ',', 'he', 'danced', 'from', 'eight', 'o', '’', 'clock', 'till', 'four', ',', 'without', 'once', 'sitting', 'down.', '”', '“', 'Did', 'he', 'indeed', '?', '”', 'cried', 'Marianne', 'with', 'sparkling', 'eyes', ',', '“', 'and', 'with', 'elegance', ',', 'with', 'spirit', '?', '”', '“', 'Yes', ';', 'and', 'he', 'was', 'up', 'again', 'at', 'eight', 'to', 'ride', 'to', 'covert.', '”', '“', 'That', 'is', 'what', 'I', 'like', ';', 'that', 'is', 'what', 'a', 'young', 'man', 'ought', 'to', 'be', '.', 'Whatever', 'be', 'his', 'pursuits', ',', 'his', 'eagerness', 'in', 'them', 'should', 'know', 'no', 'moderation', ',', 'and', 'leave', 'him', 'no', 'sense', 'of', 'fatigue.', '”', '“', 'Aye', ',', 'aye', ',', 'I', 'see', 'how', 'it', 'will', 'be', ',', '”', 'said', 'Sir', 'John', ',', '“', 'I', 'see', 'how', 'it', 'will', 'be', '.', 'You', 'will', 'be', 'setting', 'your', 'cap', 'at', 'him', 'now', ',', 'and', 'never', 'think', 'of', 'poor', 'Brandon.', '”', '“', 'That', 'is', 'an', 'expression', ',', 'Sir', 'John', ',', '”', 'said', 'Marianne', ',', 'warmly', ',', '“', 'which', 'I', 'particularly', 'dislike', '.', 'I', 'abhor', 'every', 'common-place', 'phrase', 'by', 'which', 'wit', 'is', 'intended', ';', 'and', '‘', 'setting', 'one', '’', 's', 'cap', 'at', 'a', 'man', ',', '’', 'or', '‘', 'making', 'a', 'conquest', ',', '’', 'are', 'the', 'most', 'odious', 'of', 'all', '.', 'Their', 'tendency', 'is', 'gross', 'and', 'illiberal', ';', 'and', 'if', 'their', 'construction', 'could', 'ever', 'be', 'deemed', 'clever', ',', 'time', 'has', 'long', 'ago', 'destroyed', 'all', 'its', 'ingenuity.', '”', 'Sir', 'John', 'did', 'not', 'much', 'understand', 'this', 'reproof', ';', 'but', 'he', 'laughed', 'as', 'heartily', 'as', 'if', 'he', 'did', ',', 'and', 'then', 'replied', ',', '“', 'Ay', ',', 'you', 'will', 'make', 'conquests', 'enough', ',', 'I', 'dare', 'say', ',', 'one', 'way', 'or', 'other', '.', 'Poor', 'Brandon', '!', 'he', 'is', 'quite', 'smitten', 'already', ',', 'and', 'he', 'is', 'very', 'well', 'worth', 'setting', 'your', 'cap', 'at', ',', 'I', 'can', 'tell', 'you', ',', 'in', 'spite', 'of', 'all', 'this', 'tumbling', 'about', 'and', 'spraining', 'of', 'ankles.', '”', 'CHAPTER', 'X.', 'Marianne', '’', 's', 'preserver', ',', 'as', 'Margaret', ',', 'with', 'more', 'elegance', 'than', 'precision', ',', 'styled', 'Willoughby', ',', 'called', 'at', 'the', 'cottage', 'early', 'the', 'next', 'morning', 'to', 'make', 'his', 'personal', 'enquiries', '.', 'He', 'was', 'received', 'by', 'Mrs.', 'Dashwood', 'with', 'more', 'than', 'politeness', ';', 'with', 'a', 'kindness', 'which', 'Sir', 'John', '’', 's', 'account', 'of', 'him', 'and', 'her', 'own', 'gratitude', 'prompted', ';', 'and', 'every', 'thing', 'that', 'passed', 'during', 'the', 'visit', 'tended', 'to', 'assure', 'him', 'of', 'the', 'sense', ',', 'elegance', ',', 'mutual', 'affection', ',', 'and', 'domestic', 'comfort', 'of', 'the', 'family', 'to', 'whom', 'accident', 'had', 'now', 'introduced', 'him', '.', 'Of', 'their', 'personal', 'charms', 'he', 'had', 'not', 'required', 'a', 'second', 'interview', 'to', 'be', 'convinced', '.', 'Miss', 'Dashwood', 'had', 'a', 'delicate', 'complexion', ',', 'regular', 'features', ',', 'and', 'a', 'remarkably', 'pretty', 'figure', '.', 'Marianne', 'was', 'still', 'handsomer', '.', 'Her', 'form', ',', 'though', 'not', 'so', 'correct', 'as', 'her', 'sister', '’', 's', ',', 'in', 'having', 'the', 'advantage', 'of', 'height', ',', 'was', 'more', 'striking', ';', 'and', 'her', 'face', 'was', 'so', 'lovely', ',', 'that', 'when', 'in', 'the', 'common', 'cant', 'of', 'praise', ',', 'she', 'was', 'called', 'a', 'beautiful', 'girl', ',', 'truth', 'was', 'less', 'violently', 'outraged', 'than', 'usually', 'happens', '.', 'Her', 'skin', 'was', 'very', 'brown', ',', 'but', ',', 'from', 'its', 'transparency', ',', 'her', 'complexion', 'was', 'uncommonly', 'brilliant', ';', 'her', 'features', 'were', 'all', 'good', ';', 'her', 'smile', 'was', 'sweet', 'and', 'attractive', ';', 'and', 'in', 'her', 'eyes', ',', 'which', 'were', 'very', 'dark', ',', 'there', 'was', 'a', 'life', ',', 'a', 'spirit', ',', 'an', 'eagerness', ',', 'which', 'could', 'hardly', 'be', 'seen', 'without', 'delight', '.', 'From', 'Willoughby', 'their', 'expression', 'was', 'at', 'first', 'held', 'back', ',', 'by', 'the', 'embarrassment', 'which', 'the', 'remembrance', 'of', 'his', 'assistance', 'created', '.', 'But', 'when', 'this', 'passed', 'away', ',', 'when', 'her', 'spirits', 'became', 'collected', ',', 'when', 'she', 'saw', 'that', 'to', 'the', 'perfect', 'good-breeding', 'of', 'the', 'gentleman', ',', 'he', 'united', 'frankness', 'and', 'vivacity', ',', 'and', 'above', 'all', ',', 'when', 'she', 'heard', 'him', 'declare', ',', 'that', 'of', 'music', 'and', 'dancing', 'he', 'was', 'passionately', 'fond', ',', 'she', 'gave', 'him', 'such', 'a', 'look', 'of', 'approbation', 'as', 'secured', 'the', 'largest', 'share', 'of', 'his', 'discourse', 'to', 'herself', 'for', 'the', 'rest', 'of', 'his', 'stay', '.', 'It', 'was', 'only', 'necessary', 'to', 'mention', 'any', 'favourite', 'amusement', 'to', 'engage', 'her', 'to', 'talk', '.', 'She', 'could', 'not', 'be', 'silent', 'when', 'such', 'points', 'were', 'introduced', ',', 'and', 'she', 'had', 'neither', 'shyness', 'nor', 'reserve', 'in', 'their', 'discussion', '.', 'They', 'speedily', 'discovered', 'that', 'their', 'enjoyment', 'of', 'dancing', 'and', 'music', 'was', 'mutual', ',', 'and', 'that', 'it', 'arose', 'from', 'a', 'general', 'conformity', 'of', 'judgment', 'in', 'all', 'that', 'related', 'to', 'either', '.', 'Encouraged', 'by', 'this', 'to', 'a', 'further', 'examination', 'of', 'his', 'opinions', ',', 'she', 'proceeded', 'to', 'question', 'him', 'on', 'the', 'subject', 'of', 'books', ';', 'her', 'favourite', 'authors', 'were', 'brought', 'forward', 'and', 'dwelt', 'upon', 'with', 'so', 'rapturous', 'a', 'delight', ',', 'that', 'any', 'young', 'man', 'of', 'five', 'and', 'twenty', 'must', 'have', 'been', 'insensible', 'indeed', ',', 'not', 'to', 'become', 'an', 'immediate', 'convert', 'to', 'the', 'excellence', 'of', 'such', 'works', ',', 'however', 'disregarded', 'before', '.', 'Their', 'taste', 'was', 'strikingly', 'alike', '.', 'The', 'same', 'books', ',', 'the', 'same', 'passages', 'were', 'idolized', 'by', 'each—or', 'if', 'any', 'difference', 'appeared', ',', 'any', 'objection', 'arose', ',', 'it', 'lasted', 'no', 'longer', 'than', 'till', 'the', 'force', 'of', 'her', 'arguments', 'and', 'the', 'brightness', 'of', 'her', 'eyes', 'could', 'be', 'displayed', '.', 'He', 'acquiesced', 'in', 'all', 'her', 'decisions', ',', 'caught', 'all', 'her', 'enthusiasm', ';', 'and', 'long', 'before', 'his', 'visit', 'concluded', ',', 'they', 'conversed', 'with', 'the', 'familiarity', 'of', 'a', 'long-established', 'acquaintance', '.', '“', 'Well', ',', 'Marianne', ',', '”', 'said', 'Elinor', ',', 'as', 'soon', 'as', 'he', 'had', 'left', 'them', ',', '“', 'for', '_one_', 'morning', 'I', 'think', 'you', 'have', 'done', 'pretty', 'well', '.', 'You', 'have', 'already', 'ascertained', 'Mr.', 'Willoughby', '’', 's', 'opinion', 'in', 'almost', 'every', 'matter', 'of', 'importance', '.', 'You', 'know', 'what', 'he', 'thinks', 'of', 'Cowper', 'and', 'Scott', ';', 'you', 'are', 'certain', 'of', 'his', 'estimating', 'their', 'beauties', 'as', 'he', 'ought', ',', 'and', 'you', 'have', 'received', 'every', 'assurance', 'of', 'his', 'admiring', 'Pope', 'no', 'more', 'than', 'is', 'proper', '.', 'But', 'how', 'is', 'your', 'acquaintance', 'to', 'be', 'long', 'supported', ',', 'under', 'such', 'extraordinary', 'despatch', 'of', 'every', 'subject', 'for', 'discourse', '?', 'You', 'will', 'soon', 'have', 'exhausted', 'each', 'favourite', 'topic', '.', 'Another', 'meeting', 'will', 'suffice', 'to', 'explain', 'his', 'sentiments', 'on', 'picturesque', 'beauty', ',', 'and', 'second', 'marriages', ',', 'and', 'then', 'you', 'can', 'have', 'nothing', 'farther', 'to', 'ask.', '”', '“', 'Elinor', ',', '”', 'cried', 'Marianne', ',', '“', 'is', 'this', 'fair', '?', 'is', 'this', 'just', '?', 'are', 'my', 'ideas', 'so', 'scanty', '?', 'But', 'I', 'see', 'what', 'you', 'mean', '.', 'I', 'have', 'been', 'too', 'much', 'at', 'my', 'ease', ',', 'too', 'happy', ',', 'too', 'frank', '.', 'I', 'have', 'erred', 'against', 'every', 'common-place', 'notion', 'of', 'decorum', ';', 'I', 'have', 'been', 'open', 'and', 'sincere', 'where', 'I', 'ought', 'to', 'have', 'been', 'reserved', ',', 'spiritless', ',', 'dull', ',', 'and', 'deceitful—had', 'I', 'talked', 'only', 'of', 'the', 'weather', 'and', 'the', 'roads', ',', 'and', 'had', 'I', 'spoken', 'only', 'once', 'in', 'ten', 'minutes', ',', 'this', 'reproach', 'would', 'have', 'been', 'spared.', '”', '“', 'My', 'love', ',', '”', 'said', 'her', 'mother', ',', '“', 'you', 'must', 'not', 'be', 'offended', 'with', 'Elinor—she', 'was', 'only', 'in', 'jest', '.', 'I', 'should', 'scold', 'her', 'myself', ',', 'if', 'she', 'were', 'capable', 'of', 'wishing', 'to', 'check', 'the', 'delight', 'of', 'your', 'conversation', 'with', 'our', 'new', 'friend.', '”', 'Marianne', 'was', 'softened', 'in', 'a', 'moment', '.', 'Willoughby', ',', 'on', 'his', 'side', ',', 'gave', 'every', 'proof', 'of', 'his', 'pleasure', 'in', 'their', 'acquaintance', ',', 'which', 'an', 'evident', 'wish', 'of', 'improving', 'it', 'could', 'offer', '.', 'He', 'came', 'to', 'them', 'every', 'day', '.', 'To', 'enquire', 'after', 'Marianne', 'was', 'at', 'first', 'his', 'excuse', ';', 'but', 'the', 'encouragement', 'of', 'his', 'reception', ',', 'to', 'which', 'every', 'day', 'gave', 'greater', 'kindness', ',', 'made', 'such', 'an', 'excuse', 'unnecessary', 'before', 'it', 'had', 'ceased', 'to', 'be', 'possible', ',', 'by', 'Marianne', '’', 's', 'perfect', 'recovery', '.', 'She', 'was', 'confined', 'for', 'some', 'days', 'to', 'the', 'house', ';', 'but', 'never', 'had', 'any', 'confinement', 'been', 'less', 'irksome', '.', 'Willoughby', 'was', 'a', 'young', 'man', 'of', 'good', 'abilities', ',', 'quick', 'imagination', ',', 'lively', 'spirits', ',', 'and', 'open', ',', 'affectionate', 'manners', '.', 'He', 'was', 'exactly', 'formed', 'to', 'engage', 'Marianne', '’', 's', 'heart', ',', 'for', 'with', 'all', 'this', ',', 'he', 'joined', 'not', 'only', 'a', 'captivating', 'person', ',', 'but', 'a', 'natural', 'ardour', 'of', 'mind', 'which', 'was', 'now', 'roused', 'and', 'increased', 'by', 'the', 'example', 'of', 'her', 'own', ',', 'and', 'which', 'recommended', 'him', 'to', 'her', 'affection', 'beyond', 'every', 'thing', 'else', '.', 'His', 'society', 'became', 'gradually', 'her', 'most', 'exquisite', 'enjoyment', '.', 'They', 'read', ',', 'they', 'talked', ',', 'they', 'sang', 'together', ';', 'his', 'musical', 'talents', 'were', 'considerable', ';', 'and', 'he', 'read', 'with', 'all', 'the', 'sensibility', 'and', 'spirit', 'which', 'Edward', 'had', 'unfortunately', 'wanted', '.', 'In', 'Mrs.', 'Dashwood', '’', 's', 'estimation', 'he', 'was', 'as', 'faultless', 'as', 'in', 'Marianne', '’', 's', ';', 'and', 'Elinor', 'saw', 'nothing', 'to', 'censure', 'in', 'him', 'but', 'a', 'propensity', ',', 'in', 'which', 'he', 'strongly', 'resembled', 'and', 'peculiarly', 'delighted', 'her', 'sister', ',', 'of', 'saying', 'too', 'much', 'what', 'he', 'thought', 'on', 'every', 'occasion', ',', 'without', 'attention', 'to', 'persons', 'or', 'circumstances', '.', 'In', 'hastily', 'forming', 'and', 'giving', 'his', 'opinion', 'of', 'other', 'people', ',', 'in', 'sacrificing', 'general', 'politeness', 'to', 'the', 'enjoyment', 'of', 'undivided', 'attention', 'where', 'his', 'heart', 'was', 'engaged', ',', 'and', 'in', 'slighting', 'too', 'easily', 'the', 'forms', 'of', 'worldly', 'propriety', ',', 'he', 'displayed', 'a', 'want', 'of', 'caution', 'which', 'Elinor', 'could', 'not', 'approve', ',', 'in', 'spite', 'of', 'all', 'that', 'he', 'and', 'Marianne', 'could', 'say', 'in', 'its', 'support', '.', 'Marianne', 'began', 'now', 'to', 'perceive', 'that', 'the', 'desperation', 'which', 'had', 'seized', 'her', 'at', 'sixteen', 'and', 'a', 'half', ',', 'of', 'ever', 'seeing', 'a', 'man', 'who', 'could', 'satisfy', 'her', 'ideas', 'of', 'perfection', ',', 'had', 'been', 'rash', 'and', 'unjustifiable', '.', 'Willoughby', 'was', 'all', 'that', 'her', 'fancy', 'had', 'delineated', 'in', 'that', 'unhappy', 'hour', 'and', 'in', 'every', 'brighter', 'period', ',', 'as', 'capable', 'of', 'attaching', 'her', ';', 'and', 'his', 'behaviour', 'declared', 'his', 'wishes', 'to', 'be', 'in', 'that', 'respect', 'as', 'earnest', ',', 'as', 'his', 'abilities', 'were', 'strong', '.', 'Her', 'mother', 'too', ',', 'in', 'whose', 'mind', 'not', 'one', 'speculative', 'thought', 'of', 'their', 'marriage', 'had', 'been', 'raised', ',', 'by', 'his', 'prospect', 'of', 'riches', ',', 'was', 'led', 'before', 'the', 'end', 'of', 'a', 'week', 'to', 'hope', 'and', 'expect', 'it', ';', 'and', 'secretly', 'to', 'congratulate', 'herself', 'on', 'having', 'gained', 'two', 'such', 'sons-in-law', 'as', 'Edward', 'and', 'Willoughby', '.', 'Colonel', 'Brandon', '’', 's', 'partiality', 'for', 'Marianne', ',', 'which', 'had', 'so', 'early', 'been', 'discovered', 'by', 'his', 'friends', ',', 'now', 'first', 'became', 'perceptible', 'to', 'Elinor', ',', 'when', 'it', 'ceased', 'to', 'be', 'noticed', 'by', 'them', '.', 'Their', 'attention', 'and', 'wit', 'were', 'drawn', 'off', 'to', 'his', 'more', 'fortunate', 'rival', ';', 'and', 'the', 'raillery', 'which', 'the', 'other', 'had', 'incurred', 'before', 'any', 'partiality', 'arose', ',', 'was', 'removed', 'when', 'his', 'feelings', 'began', 'really', 'to', 'call', 'for', 'the', 'ridicule', 'so', 'justly', 'annexed', 'to', 'sensibility', '.', 'Elinor', 'was', 'obliged', ',', 'though', 'unwillingly', ',', 'to', 'believe', 'that', 'the', 'sentiments', 'which', 'Mrs.', 'Jennings', 'had', 'assigned', 'him', 'for', 'her', 'own', 'satisfaction', ',', 'were', 'now', 'actually', 'excited', 'by', 'her', 'sister', ';', 'and', 'that', 'however', 'a', 'general', 'resemblance', 'of', 'disposition', 'between', 'the', 'parties', 'might', 'forward', 'the', 'affection', 'of', 'Mr.', 'Willoughby', ',', 'an', 'equally', 'striking', 'opposition', 'of', 'character', 'was', 'no', 'hindrance', 'to', 'the', 'regard', 'of', 'Colonel', 'Brandon', '.', 'She', 'saw', 'it', 'with', 'concern', ';', 'for', 'what', 'could', 'a', 'silent', 'man', 'of', 'five', 'and', 'thirty', 'hope', ',', 'when', 'opposed', 'to', 'a', 'very', 'lively', 'one', 'of', 'five', 'and', 'twenty', '?', 'and', 'as', 'she', 'could', 'not', 'even', 'wish', 'him', 'successful', ',', 'she', 'heartily', 'wished', 'him', 'indifferent', '.', 'She', 'liked', 'him—in', 'spite', 'of', 'his', 'gravity', 'and', 'reserve', ',', 'she', 'beheld', 'in', 'him', 'an', 'object', 'of', 'interest', '.', 'His', 'manners', ',', 'though', 'serious', ',', 'were', 'mild', ';', 'and', 'his', 'reserve', 'appeared', 'rather', 'the', 'result', 'of', 'some', 'oppression', 'of', 'spirits', 'than', 'of', 'any', 'natural', 'gloominess', 'of', 'temper', '.', 'Sir', 'John', 'had', 'dropped', 'hints', 'of', 'past', 'injuries', 'and', 'disappointments', ',', 'which', 'justified', 'her', 'belief', 'of', 'his', 'being', 'an', 'unfortunate', 'man', ',', 'and', 'she', 'regarded', 'him', 'with', 'respect', 'and', 'compassion', '.', 'Perhaps', 'she', 'pitied', 'and', 'esteemed', 'him', 'the', 'more', 'because', 'he', 'was', 'slighted', 'by', 'Willoughby', 'and', 'Marianne', ',', 'who', ',', 'prejudiced', 'against', 'him', 'for', 'being', 'neither', 'lively', 'nor', 'young', ',', 'seemed', 'resolved', 'to', 'undervalue', 'his', 'merits', '.', '“', 'Brandon', 'is', 'just', 'the', 'kind', 'of', 'man', ',', '”', 'said', 'Willoughby', 'one', 'day', ',', 'when', 'they', 'were', 'talking', 'of', 'him', 'together', ',', '“', 'whom', 'every', 'body', 'speaks', 'well', 'of', ',', 'and', 'nobody', 'cares', 'about', ';', 'whom', 'all', 'are', 'delighted', 'to', 'see', ',', 'and', 'nobody', 'remembers', 'to', 'talk', 'to.', '”', '“', 'That', 'is', 'exactly', 'what', 'I', 'think', 'of', 'him', ',', '”', 'cried', 'Marianne', '.', '“', 'Do', 'not', 'boast', 'of', 'it', ',', 'however', ',', '”', 'said', 'Elinor', ',', '“', 'for', 'it', 'is', 'injustice', 'in', 'both', 'of', 'you', '.', 'He', 'is', 'highly', 'esteemed', 'by', 'all', 'the', 'family', 'at', 'the', 'park', ',', 'and', 'I', 'never', 'see', 'him', 'myself', 'without', 'taking', 'pains', 'to', 'converse', 'with', 'him.', '”', '“', 'That', 'he', 'is', 'patronised', 'by', '_you_', ',', '”', 'replied', 'Willoughby', ',', '“', 'is', 'certainly', 'in', 'his', 'favour', ';', 'but', 'as', 'for', 'the', 'esteem', 'of', 'the', 'others', ',', 'it', 'is', 'a', 'reproach', 'in', 'itself', '.', 'Who', 'would', 'submit', 'to', 'the', 'indignity', 'of', 'being', 'approved', 'by', 'such', 'a', 'woman', 'as', 'Lady', 'Middleton', 'and', 'Mrs.', 'Jennings', ',', 'that', 'could', 'command', 'the', 'indifference', 'of', 'any', 'body', 'else', '?', '”', '“', 'But', 'perhaps', 'the', 'abuse', 'of', 'such', 'people', 'as', 'yourself', 'and', 'Marianne', 'will', 'make', 'amends', 'for', 'the', 'regard', 'of', 'Lady', 'Middleton', 'and', 'her', 'mother', '.', 'If', 'their', 'praise', 'is', 'censure', ',', 'your', 'censure', 'may', 'be', 'praise', ',', 'for', 'they', 'are', 'not', 'more', 'undiscerning', ',', 'than', 'you', 'are', 'prejudiced', 'and', 'unjust.', '”', '“', 'In', 'defence', 'of', 'your', '_protégé_', 'you', 'can', 'even', 'be', 'saucy.', '”', '“', 'My', '_protégé_', ',', 'as', 'you', 'call', 'him', ',', 'is', 'a', 'sensible', 'man', ';', 'and', 'sense', 'will', 'always', 'have', 'attractions', 'for', 'me', '.', 'Yes', ',', 'Marianne', ',', 'even', 'in', 'a', 'man', 'between', 'thirty', 'and', 'forty', '.', 'He', 'has', 'seen', 'a', 'great', 'deal', 'of', 'the', 'world', ';', 'has', 'been', 'abroad', ',', 'has', 'read', ',', 'and', 'has', 'a', 'thinking', 'mind', '.', 'I', 'have', 'found', 'him', 'capable', 'of', 'giving', 'me', 'much', 'information', 'on', 'various', 'subjects', ';', 'and', 'he', 'has', 'always', 'answered', 'my', 'inquiries', 'with', 'readiness', 'of', 'good-breeding', 'and', 'good', 'nature.', '”', '“', 'That', 'is', 'to', 'say', ',', '”', 'cried', 'Marianne', 'contemptuously', ',', '“', 'he', 'has', 'told', 'you', ',', 'that', 'in', 'the', 'East', 'Indies', 'the', 'climate', 'is', 'hot', ',', 'and', 'the', 'mosquitoes', 'are', 'troublesome.', '”', '“', 'He', '_would_', 'have', 'told', 'me', 'so', ',', 'I', 'doubt', 'not', ',', 'had', 'I', 'made', 'any', 'such', 'inquiries', ',', 'but', 'they', 'happened', 'to', 'be', 'points', 'on', 'which', 'I', 'had', 'been', 'previously', 'informed.', '”', '“', 'Perhaps', ',', '”', 'said', 'Willoughby', ',', '“', 'his', 'observations', 'may', 'have', 'extended', 'to', 'the', 'existence', 'of', 'nabobs', ',', 'gold', 'mohrs', ',', 'and', 'palanquins.', '”', '“', 'I', 'may', 'venture', 'to', 'say', 'that', '_his_', 'observations', 'have', 'stretched', 'much', 'further', 'than', '_your_', 'candour', '.', 'But', 'why', 'should', 'you', 'dislike', 'him', '?', '”', '“', 'I', 'do', 'not', 'dislike', 'him', '.', 'I', 'consider', 'him', ',', 'on', 'the', 'contrary', ',', 'as', 'a', 'very', 'respectable', 'man', ',', 'who', 'has', 'every', 'body', '’', 's', 'good', 'word', ',', 'and', 'nobody', '’', 's', 'notice', ';', 'who', 'has', 'more', 'money', 'than', 'he', 'can', 'spend', ',', 'more', 'time', 'than', 'he', 'knows', 'how', 'to', 'employ', ',', 'and', 'two', 'new', 'coats', 'every', 'year.', '”', '“', 'Add', 'to', 'which', ',', '”', 'cried', 'Marianne', ',', '“', 'that', 'he', 'has', 'neither', 'genius', ',', 'taste', ',', 'nor', 'spirit', '.', 'That', 'his', 'understanding', 'has', 'no', 'brilliancy', ',', 'his', 'feelings', 'no', 'ardour', ',', 'and', 'his', 'voice', 'no', 'expression.', '”', '“', 'You', 'decide', 'on', 'his', 'imperfections', 'so', 'much', 'in', 'the', 'mass', ',', '”', 'replied', 'Elinor', ',', '“', 'and', 'so', 'much', 'on', 'the', 'strength', 'of', 'your', 'own', 'imagination', ',', 'that', 'the', 'commendation', '_I_', 'am', 'able', 'to', 'give', 'of', 'him', 'is', 'comparatively', 'cold', 'and', 'insipid', '.', 'I', 'can', 'only', 'pronounce', 'him', 'to', 'be', 'a', 'sensible', 'man', ',', 'well-bred', ',', 'well-informed', ',', 'of', 'gentle', 'address', ',', 'and', ',', 'I', 'believe', ',', 'possessing', 'an', 'amiable', 'heart.', '”', '“', 'Miss', 'Dashwood', ',', '”', 'cried', 'Willoughby', ',', '“', 'you', 'are', 'now', 'using', 'me', 'unkindly', '.', 'You', 'are', 'endeavouring', 'to', 'disarm', 'me', 'by', 'reason', ',', 'and', 'to', 'convince', 'me', 'against', 'my', 'will', '.', 'But', 'it', 'will', 'not', 'do', '.', 'You', 'shall', 'find', 'me', 'as', 'stubborn', 'as', 'you', 'can', 'be', 'artful', '.', 'I', 'have', 'three', 'unanswerable', 'reasons', 'for', 'disliking', 'Colonel', 'Brandon', ';', 'he', 'threatened', 'me', 'with', 'rain', 'when', 'I', 'wanted', 'it', 'to', 'be', 'fine', ';', 'he', 'has', 'found', 'fault', 'with', 'the', 'hanging', 'of', 'my', 'curricle', ',', 'and', 'I', 'can', 'not', 'persuade', 'him', 'to', 'buy', 'my', 'brown', 'mare', '.', 'If', 'it', 'will', 'be', 'any', 'satisfaction', 'to', 'you', ',', 'however', ',', 'to', 'be', 'told', ',', 'that', 'I', 'believe', 'his', 'character', 'to', 'be', 'in', 'other', 'respects', 'irreproachable', ',', 'I', 'am', 'ready', 'to', 'confess', 'it', '.', 'And', 'in', 'return', 'for', 'an', 'acknowledgment', ',', 'which', 'must', 'give', 'me', 'some', 'pain', ',', 'you', 'can', 'not', 'deny', 'me', 'the', 'privilege', 'of', 'disliking', 'him', 'as', 'much', 'as', 'ever.', '”', 'CHAPTER', 'XI', '.', 'Little', 'had', 'Mrs.', 'Dashwood', 'or', 'her', 'daughters', 'imagined', 'when', 'they', 'first', 'came', 'into', 'Devonshire', ',', 'that', 'so', 'many', 'engagements', 'would', 'arise', 'to', 'occupy', 'their', 'time', 'as', 'shortly', 'presented', 'themselves', ',', 'or', 'that', 'they', 'should', 'have', 'such', 'frequent', 'invitations', 'and', 'such', 'constant', 'visitors', 'as', 'to', 'leave', 'them', 'little', 'leisure', 'for', 'serious', 'employment', '.', 'Yet', 'such', 'was', 'the', 'case', '.', 'When', 'Marianne', 'was', 'recovered', ',', 'the', 'schemes', 'of', 'amusement', 'at', 'home', 'and', 'abroad', ',', 'which', 'Sir', 'John', 'had', 'been', 'previously', 'forming', ',', 'were', 'put', 'into', 'execution', '.', 'The', 'private', 'balls', 'at', 'the', 'park', 'then', 'began', ';', 'and', 'parties', 'on', 'the', 'water', 'were', 'made', 'and', 'accomplished', 'as', 'often', 'as', 'a', 'showery', 'October', 'would', 'allow', '.', 'In', 'every', 'meeting', 'of', 'the', 'kind', 'Willoughby', 'was', 'included', ';', 'and', 'the', 'ease', 'and', 'familiarity', 'which', 'naturally', 'attended', 'these', 'parties', 'were', 'exactly', 'calculated', 'to', 'give', 'increasing', 'intimacy', 'to', 'his', 'acquaintance', 'with', 'the', 'Dashwoods', ',', 'to', 'afford', 'him', 'opportunity', 'of', 'witnessing', 'the', 'excellencies', 'of', 'Marianne', ',', 'of', 'marking', 'his', 'animated', 'admiration', 'of', 'her', ',', 'and', 'of', 'receiving', ',', 'in', 'her', 'behaviour', 'to', 'himself', ',', 'the', 'most', 'pointed', 'assurance', 'of', 'her', 'affection', '.', 'Elinor', 'could', 'not', 'be', 'surprised', 'at', 'their', 'attachment', '.', 'She', 'only', 'wished', 'that', 'it', 'were', 'less', 'openly', 'shown', ';', 'and', 'once', 'or', 'twice', 'did', 'venture', 'to', 'suggest', 'the', 'propriety', 'of', 'some', 'self-command', 'to', 'Marianne', '.', 'But', 'Marianne', 'abhorred', 'all', 'concealment', 'where', 'no', 'real', 'disgrace', 'could', 'attend', 'unreserve', ';', 'and', 'to', 'aim', 'at', 'the', 'restraint', 'of', 'sentiments', 'which', 'were', 'not', 'in', 'themselves', 'illaudable', ',', 'appeared', 'to', 'her', 'not', 'merely', 'an', 'unnecessary', 'effort', ',', 'but', 'a', 'disgraceful', 'subjection', 'of', 'reason', 'to', 'common-place', 'and', 'mistaken', 'notions', '.', 'Willoughby', 'thought', 'the', 'same', ';', 'and', 'their', 'behaviour', 'at', 'all', 'times', ',', 'was', 'an', 'illustration', 'of', 'their', 'opinions', '.', 'When', 'he', 'was', 'present', 'she', 'had', 'no', 'eyes', 'for', 'any', 'one', 'else', '.', 'Every', 'thing', 'he', 'did', ',', 'was', 'right', '.', 'Every', 'thing', 'he', 'said', ',', 'was', 'clever', '.', 'If', 'their', 'evenings', 'at', 'the', 'park', 'were', 'concluded', 'with', 'cards', ',', 'he', 'cheated', 'himself', 'and', 'all', 'the', 'rest', 'of', 'the', 'party', 'to', 'get', 'her', 'a', 'good', 'hand', '.', 'If', 'dancing', 'formed', 'the', 'amusement', 'of', 'the', 'night', ',', 'they', 'were', 'partners', 'for', 'half', 'the', 'time', ';', 'and', 'when', 'obliged', 'to', 'separate', 'for', 'a', 'couple', 'of', 'dances', ',', 'were', 'careful', 'to', 'stand', 'together', 'and', 'scarcely', 'spoke', 'a', 'word', 'to', 'any', 'body', 'else', '.', 'Such', 'conduct', 'made', 'them', 'of', 'course', 'most', 'exceedingly', 'laughed', 'at', ';', 'but', 'ridicule', 'could', 'not', 'shame', ',', 'and', 'seemed', 'hardly', 'to', 'provoke', 'them', '.', 'Mrs.', 'Dashwood', 'entered', 'into', 'all', 'their', 'feelings', 'with', 'a', 'warmth', 'which', 'left', 'her', 'no', 'inclination', 'for', 'checking', 'this', 'excessive', 'display', 'of', 'them', '.', 'To', 'her', 'it', 'was', 'but', 'the', 'natural', 'consequence', 'of', 'a', 'strong', 'affection', 'in', 'a', 'young', 'and', 'ardent', 'mind', '.', 'This', 'was', 'the', 'season', 'of', 'happiness', 'to', 'Marianne', '.', 'Her', 'heart', 'was', 'devoted', 'to', 'Willoughby', ',', 'and', 'the', 'fond', 'attachment', 'to', 'Norland', ',', 'which', 'she', 'brought', 'with', 'her', 'from', 'Sussex', ',', 'was', 'more', 'likely', 'to', 'be', 'softened', 'than', 'she', 'had', 'thought', 'it', 'possible', 'before', ',', 'by', 'the', 'charms', 'which', 'his', 'society', 'bestowed', 'on', 'her', 'present', 'home', '.', 'Elinor', '’', 's', 'happiness', 'was', 'not', 'so', 'great', '.', 'Her', 'heart', 'was', 'not', 'so', 'much', 'at', 'ease', ',', 'nor', 'her', 'satisfaction', 'in', 'their', 'amusements', 'so', 'pure', '.', 'They', 'afforded', 'her', 'no', 'companion', 'that', 'could', 'make', 'amends', 'for', 'what', 'she', 'had', 'left', 'behind', ',', 'nor', 'that', 'could', 'teach', 'her', 'to', 'think', 'of', 'Norland', 'with', 'less', 'regret', 'than', 'ever', '.', 'Neither', 'Lady', 'Middleton', 'nor', 'Mrs.', 'Jennings', 'could', 'supply', 'to', 'her', 'the', 'conversation', 'she', 'missed', ';', 'although', 'the', 'latter', 'was', 'an', 'everlasting', 'talker', ',', 'and', 'from', 'the', 'first', 'had', 'regarded', 'her', 'with', 'a', 'kindness', 'which', 'ensured', 'her', 'a', 'large', 'share', 'of', 'her', 'discourse', '.', 'She', 'had', 'already', 'repeated', 'her', 'own', 'history', 'to', 'Elinor', 'three', 'or', 'four', 'times', ';', 'and', 'had', 'Elinor', '’', 's', 'memory', 'been', 'equal', 'to', 'her', 'means', 'of', 'improvement', ',', 'she', 'might', 'have', 'known', 'very', 'early', 'in', 'their', 'acquaintance', 'all', 'the', 'particulars', 'of', 'Mr.', 'Jennings', '’', 's', 'last', 'illness', ',', 'and', 'what', 'he', 'said', 'to', 'his', 'wife', 'a', 'few', 'minutes', 'before', 'he', 'died', '.', 'Lady', 'Middleton', 'was', 'more', 'agreeable', 'than', 'her', 'mother', 'only', 'in', 'being', 'more', 'silent', '.', 'Elinor', 'needed', 'little', 'observation', 'to', 'perceive', 'that', 'her', 'reserve', 'was', 'a', 'mere', 'calmness', 'of', 'manner', 'with', 'which', 'sense', 'had', 'nothing', 'to', 'do', '.', 'Towards', 'her', 'husband', 'and', 'mother', 'she', 'was', 'the', 'same', 'as', 'to', 'them', ';', 'and', 'intimacy', 'was', 'therefore', 'neither', 'to', 'be', 'looked', 'for', 'nor', 'desired', '.', 'She', 'had', 'nothing', 'to', 'say', 'one', 'day', 'that', 'she', 'had', 'not', 'said', 'the', 'day', 'before', '.', 'Her', 'insipidity', 'was', 'invariable', ',', 'for', 'even', 'her', 'spirits', 'were', 'always', 'the', 'same', ';', 'and', 'though', 'she', 'did', 'not', 'oppose', 'the', 'parties', 'arranged', 'by', 'her', 'husband', ',', 'provided', 'every', 'thing', 'were', 'conducted', 'in', 'style', 'and', 'her', 'two', 'eldest', 'children', 'attended', 'her', ',', 'she', 'never', 'appeared', 'to', 'receive', 'more', 'enjoyment', 'from', 'them', 'than', 'she', 'might', 'have', 'experienced', 'in', 'sitting', 'at', 'home', ';', '—and', 'so', 'little', 'did', 'her', 'presence', 'add', 'to', 'the', 'pleasure', 'of', 'the', 'others', ',', 'by', 'any', 'share', 'in', 'their', 'conversation', ',', 'that', 'they', 'were', 'sometimes', 'only', 'reminded', 'of', 'her', 'being', 'amongst', 'them', 'by', 'her', 'solicitude', 'about', 'her', 'troublesome', 'boys', '.', 'In', 'Colonel', 'Brandon', 'alone', ',', 'of', 'all', 'her', 'new', 'acquaintance', ',', 'did', 'Elinor', 'find', 'a', 'person', 'who', 'could', 'in', 'any', 'degree', 'claim', 'the', 'respect', 'of', 'abilities', ',', 'excite', 'the', 'interest', 'of', 'friendship', ',', 'or', 'give', 'pleasure', 'as', 'a', 'companion', '.', 'Willoughby', 'was', 'out', 'of', 'the', 'question', '.', 'Her', 'admiration', 'and', 'regard', ',', 'even', 'her', 'sisterly', 'regard', ',', 'was', 'all', 'his', 'own', ';', 'but', 'he', 'was', 'a', 'lover', ';', 'his', 'attentions', 'were', 'wholly', 'Marianne', '’', 's', ',', 'and', 'a', 'far', 'less', 'agreeable', 'man', 'might', 'have', 'been', 'more', 'generally', 'pleasing', '.', 'Colonel', 'Brandon', ',', 'unfortunately', 'for', 'himself', ',', 'had', 'no', 'such', 'encouragement', 'to', 'think', 'only', 'of', 'Marianne', ',', 'and', 'in', 'conversing', 'with', 'Elinor', 'he', 'found', 'the', 'greatest', 'consolation', 'for', 'the', 'indifference', 'of', 'her', 'sister', '.', 'Elinor', '’', 's', 'compassion', 'for', 'him', 'increased', ',', 'as', 'she', 'had', 'reason', 'to', 'suspect', 'that', 'the', 'misery', 'of', 'disappointed', 'love', 'had', 'already', 'been', 'known', 'to', 'him', '.', 'This', 'suspicion', 'was', 'given', 'by', 'some', 'words', 'which', 'accidentally', 'dropped', 'from', 'him', 'one', 'evening', 'at', 'the', 'park', ',', 'when', 'they', 'were', 'sitting', 'down', 'together', 'by', 'mutual', 'consent', ',', 'while', 'the', 'others', 'were', 'dancing', '.', 'His', 'eyes', 'were', 'fixed', 'on', 'Marianne', ',', 'and', ',', 'after', 'a', 'silence', 'of', 'some', 'minutes', ',', 'he', 'said', ',', 'with', 'a', 'faint', 'smile', ',', '“', 'Your', 'sister', ',', 'I', 'understand', ',', 'does', 'not', 'approve', 'of', 'second', 'attachments.', '”', '“', 'No', ',', '”', 'replied', 'Elinor', ',', '“', 'her', 'opinions', 'are', 'all', 'romantic.', '”', '“', 'Or', 'rather', ',', 'as', 'I', 'believe', ',', 'she', 'considers', 'them', 'impossible', 'to', 'exist.', '”', '“', 'I', 'believe', 'she', 'does', '.', 'But', 'how', 'she', 'contrives', 'it', 'without', 'reflecting', 'on', 'the', 'character', 'of', 'her', 'own', 'father', ',', 'who', 'had', 'himself', 'two', 'wives', ',', 'I', 'know', 'not', '.', 'A', 'few', 'years', 'however', 'will', 'settle', 'her', 'opinions', 'on', 'the', 'reasonable', 'basis', 'of', 'common', 'sense', 'and', 'observation', ';', 'and', 'then', 'they', 'may', 'be', 'more', 'easy', 'to', 'define', 'and', 'to', 'justify', 'than', 'they', 'now', 'are', ',', 'by', 'any', 'body', 'but', 'herself.', '”', '“', 'This', 'will', 'probably', 'be', 'the', 'case', ',', '”', 'he', 'replied', ';', '“', 'and', 'yet', 'there', 'is', 'something', 'so', 'amiable', 'in', 'the', 'prejudices', 'of', 'a', 'young', 'mind', ',', 'that', 'one', 'is', 'sorry', 'to', 'see', 'them', 'give', 'way', 'to', 'the', 'reception', 'of', 'more', 'general', 'opinions.', '”', '“', 'I', 'can', 'not', 'agree', 'with', 'you', 'there', ',', '”', 'said', 'Elinor', '.', '“', 'There', 'are', 'inconveniences', 'attending', 'such', 'feelings', 'as', 'Marianne', '’', 's', ',', 'which', 'all', 'the', 'charms', 'of', 'enthusiasm', 'and', 'ignorance', 'of', 'the', 'world', 'can', 'not', 'atone', 'for', '.', 'Her', 'systems', 'have', 'all', 'the', 'unfortunate', 'tendency', 'of', 'setting', 'propriety', 'at', 'nought', ';', 'and', 'a', 'better', 'acquaintance', 'with', 'the', 'world', 'is', 'what', 'I', 'look', 'forward', 'to', 'as', 'her', 'greatest', 'possible', 'advantage.', '”', 'After', 'a', 'short', 'pause', 'he', 'resumed', 'the', 'conversation', 'by', 'saying', ',', '—', '“', 'Does', 'your', 'sister', 'make', 'no', 'distinction', 'in', 'her', 'objections', 'against', 'a', 'second', 'attachment', '?', 'or', 'is', 'it', 'equally', 'criminal', 'in', 'every', 'body', '?', 'Are', 'those', 'who', 'have', 'been', 'disappointed', 'in', 'their', 'first', 'choice', ',', 'whether', 'from', 'the', 'inconstancy', 'of', 'its', 'object', ',', 'or', 'the', 'perverseness', 'of', 'circumstances', ',', 'to', 'be', 'equally', 'indifferent', 'during', 'the', 'rest', 'of', 'their', 'lives', '?', '”', '“', 'Upon', 'my', 'word', ',', 'I', 'am', 'not', 'acquainted', 'with', 'the', 'minutiae', 'of', 'her', 'principles', '.', 'I', 'only', 'know', 'that', 'I', 'never', 'yet', 'heard', 'her', 'admit', 'any', 'instance', 'of', 'a', 'second', 'attachment', '’', 's', 'being', 'pardonable.', '”', '“', 'This', ',', '”', 'said', 'he', ',', '“', 'can', 'not', 'hold', ';', 'but', 'a', 'change', ',', 'a', 'total', 'change', 'of', 'sentiments—No', ',', 'no', ',', 'do', 'not', 'desire', 'it', ';', 'for', 'when', 'the', 'romantic', 'refinements', 'of', 'a', 'young', 'mind', 'are', 'obliged', 'to', 'give', 'way', ',', 'how', 'frequently', 'are', 'they', 'succeeded', 'by', 'such', 'opinions', 'as', 'are', 'but', 'too', 'common', ',', 'and', 'too', 'dangerous', '!', 'I', 'speak', 'from', 'experience', '.', 'I', 'once', 'knew', 'a', 'lady', 'who', 'in', 'temper', 'and', 'mind', 'greatly', 'resembled', 'your', 'sister', ',', 'who', 'thought', 'and', 'judged', 'like', 'her', ',', 'but', 'who', 'from', 'an', 'enforced', 'change—from', 'a', 'series', 'of', 'unfortunate', 'circumstances—', '”', 'Here', 'he', 'stopt', 'suddenly', ';', 'appeared', 'to', 'think', 'that', 'he', 'had', 'said', 'too', 'much', ',', 'and', 'by', 'his', 'countenance', 'gave', 'rise', 'to', 'conjectures', ',', 'which', 'might', 'not', 'otherwise', 'have', 'entered', 'Elinor', '’', 's', 'head', '.', 'The', 'lady', 'would', 'probably', 'have', 'passed', 'without', 'suspicion', ',', 'had', 'he', 'not', 'convinced', 'Miss', 'Dashwood', 'that', 'what', 'concerned', 'her', 'ought', 'not', 'to', 'escape', 'his', 'lips', '.', 'As', 'it', 'was', ',', 'it', 'required', 'but', 'a', 'slight', 'effort', 'of', 'fancy', 'to', 'connect', 'his', 'emotion', 'with', 'the', 'tender', 'recollection', 'of', 'past', 'regard', '.', 'Elinor', 'attempted', 'no', 'more', '.', 'But', 'Marianne', ',', 'in', 'her', 'place', ',', 'would', 'not', 'have', 'done', 'so', 'little', '.', 'The', 'whole', 'story', 'would', 'have', 'been', 'speedily', 'formed', 'under', 'her', 'active', 'imagination', ';', 'and', 'every', 'thing', 'established', 'in', 'the', 'most', 'melancholy', 'order', 'of', 'disastrous', 'love', '.', 'CHAPTER', 'XII', '.', 'As', 'Elinor', 'and', 'Marianne', 'were', 'walking', 'together', 'the', 'next', 'morning', 'the', 'latter', 'communicated', 'a', 'piece', 'of', 'news', 'to', 'her', 'sister', ',', 'which', 'in', 'spite', 'of', 'all', 'that', 'she', 'knew', 'before', 'of', 'Marianne', '’', 's', 'imprudence', 'and', 'want', 'of', 'thought', ',', 'surprised', 'her', 'by', 'its', 'extravagant', 'testimony', 'of', 'both', '.', 'Marianne', 'told', 'her', ',', 'with', 'the', 'greatest', 'delight', ',', 'that', 'Willoughby', 'had', 'given', 'her', 'a', 'horse', ',', 'one', 'that', 'he', 'had', 'bred', 'himself', 'on', 'his', 'estate', 'in', 'Somersetshire', ',', 'and', 'which', 'was', 'exactly', 'calculated', 'to', 'carry', 'a', 'woman', '.', 'Without', 'considering', 'that', 'it', 'was', 'not', 'in', 'her', 'mother', '’', 's', 'plan', 'to', 'keep', 'any', 'horse', ',', 'that', 'if', 'she', 'were', 'to', 'alter', 'her', 'resolution', 'in', 'favour', 'of', 'this', 'gift', ',', 'she', 'must', 'buy', 'another', 'for', 'the', 'servant', ',', 'and', 'keep', 'a', 'servant', 'to', 'ride', 'it', ',', 'and', 'after', 'all', ',', 'build', 'a', 'stable', 'to', 'receive', 'them', ',', 'she', 'had', 'accepted', 'the', 'present', 'without', 'hesitation', ',', 'and', 'told', 'her', 'sister', 'of', 'it', 'in', 'raptures', '.', '“', 'He', 'intends', 'to', 'send', 'his', 'groom', 'into', 'Somersetshire', 'immediately', 'for', 'it', ',', '”', 'she', 'added', ',', '“', 'and', 'when', 'it', 'arrives', 'we', 'will', 'ride', 'every', 'day', '.', 'You', 'shall', 'share', 'its', 'use', 'with', 'me', '.', 'Imagine', 'to', 'yourself', ',', 'my', 'dear', 'Elinor', ',', 'the', 'delight', 'of', 'a', 'gallop', 'on', 'some', 'of', 'these', 'downs.', '”', 'Most', 'unwilling', 'was', 'she', 'to', 'awaken', 'from', 'such', 'a', 'dream', 'of', 'felicity', 'to', 'comprehend', 'all', 'the', 'unhappy', 'truths', 'which', 'attended', 'the', 'affair', ';', 'and', 'for', 'some', 'time', 'she', 'refused', 'to', 'submit', 'to', 'them', '.', 'As', 'to', 'an', 'additional', 'servant', ',', 'the', 'expense', 'would', 'be', 'a', 'trifle', ';', 'Mama', 'she', 'was', 'sure', 'would', 'never', 'object', 'to', 'it', ';', 'and', 'any', 'horse', 'would', 'do', 'for', '_him', ';', '_', 'he', 'might', 'always', 'get', 'one', 'at', 'the', 'park', ';', 'as', 'to', 'a', 'stable', ',', 'the', 'merest', 'shed', 'would', 'be', 'sufficient', '.', 'Elinor', 'then', 'ventured', 'to', 'doubt', 'the', 'propriety', 'of', 'her', 'receiving', 'such', 'a', 'present', 'from', 'a', 'man', 'so', 'little', ',', 'or', 'at', 'least', 'so', 'lately', 'known', 'to', 'her', '.', 'This', 'was', 'too', 'much', '.', '“', 'You', 'are', 'mistaken', ',', 'Elinor', ',', '”', 'said', 'she', 'warmly', ',', '“', 'in', 'supposing', 'I', 'know', 'very', 'little', 'of', 'Willoughby', '.', 'I', 'have', 'not', 'known', 'him', 'long', 'indeed', ',', 'but', 'I', 'am', 'much', 'better', 'acquainted', 'with', 'him', ',', 'than', 'I', 'am', 'with', 'any', 'other', 'creature', 'in', 'the', 'world', ',', 'except', 'yourself', 'and', 'mama', '.', 'It', 'is', 'not', 'time', 'or', 'opportunity', 'that', 'is', 'to', 'determine', 'intimacy', ';', '—it', 'is', 'disposition', 'alone', '.', 'Seven', 'years', 'would', 'be', 'insufficient', 'to', 'make', 'some', 'people', 'acquainted', 'with', 'each', 'other', ',', 'and', 'seven', 'days', 'are', 'more', 'than', 'enough', 'for', 'others', '.', 'I', 'should', 'hold', 'myself', 'guilty', 'of', 'greater', 'impropriety', 'in', 'accepting', 'a', 'horse', 'from', 'my', 'brother', ',', 'than', 'from', 'Willoughby', '.', 'Of', 'John', 'I', 'know', 'very', 'little', ',', 'though', 'we', 'have', 'lived', 'together', 'for', 'years', ';', 'but', 'of', 'Willoughby', 'my', 'judgment', 'has', 'long', 'been', 'formed.', '”', 'Elinor', 'thought', 'it', 'wisest', 'to', 'touch', 'that', 'point', 'no', 'more', '.', 'She', 'knew', 'her', 'sister', '’', 's', 'temper', '.', 'Opposition', 'on', 'so', 'tender', 'a', 'subject', 'would', 'only', 'attach', 'her', 'the', 'more', 'to', 'her', 'own', 'opinion', '.', 'But', 'by', 'an', 'appeal', 'to', 'her', 'affection', 'for', 'her', 'mother', ',', 'by', 'representing', 'the', 'inconveniences', 'which', 'that', 'indulgent', 'mother', 'must', 'draw', 'on', 'herself', ',', 'if', '(', 'as', 'would', 'probably', 'be', 'the', 'case', ')', 'she', 'consented', 'to', 'this', 'increase', 'of', 'establishment', ',', 'Marianne', 'was', 'shortly', 'subdued', ';', 'and', 'she', 'promised', 'not', 'to', 'tempt', 'her', 'mother', 'to', 'such', 'imprudent', 'kindness', 'by', 'mentioning', 'the', 'offer', ',', 'and', 'to', 'tell', 'Willoughby', 'when', 'she', 'saw', 'him', 'next', ',', 'that', 'it', 'must', 'be', 'declined', '.', 'She', 'was', 'faithful', 'to', 'her', 'word', ';', 'and', 'when', 'Willoughby', 'called', 'at', 'the', 'cottage', ',', 'the', 'same', 'day', ',', 'Elinor', 'heard', 'her', 'express', 'her', 'disappointment', 'to', 'him', 'in', 'a', 'low', 'voice', ',', 'on', 'being', 'obliged', 'to', 'forego', 'the', 'acceptance', 'of', 'his', 'present', '.', 'The', 'reasons', 'for', 'this', 'alteration', 'were', 'at', 'the', 'same', 'time', 'related', ',', 'and', 'they', 'were', 'such', 'as', 'to', 'make', 'further', 'entreaty', 'on', 'his', 'side', 'impossible', '.', 'His', 'concern', 'however', 'was', 'very', 'apparent', ';', 'and', 'after', 'expressing', 'it', 'with', 'earnestness', ',', 'he', 'added', ',', 'in', 'the', 'same', 'low', 'voice', ',', '—', '“', 'But', ',', 'Marianne', ',', 'the', 'horse', 'is', 'still', 'yours', ',', 'though', 'you', 'can', 'not', 'use', 'it', 'now', '.', 'I', 'shall', 'keep', 'it', 'only', 'till', 'you', 'can', 'claim', 'it', '.', 'When', 'you', 'leave', 'Barton', 'to', 'form', 'your', 'own', 'establishment', 'in', 'a', 'more', 'lasting', 'home', ',', 'Queen', 'Mab', 'shall', 'receive', 'you.', '”', 'This', 'was', 'all', 'overheard', 'by', 'Miss', 'Dashwood', ';', 'and', 'in', 'the', 'whole', 'of', 'the', 'sentence', ',', 'in', 'his', 'manner', 'of', 'pronouncing', 'it', ',', 'and', 'in', 'his', 'addressing', 'her', 'sister', 'by', 'her', 'Christian', 'name', 'alone', ',', 'she', 'instantly', 'saw', 'an', 'intimacy', 'so', 'decided', ',', 'a', 'meaning', 'so', 'direct', ',', 'as', 'marked', 'a', 'perfect', 'agreement', 'between', 'them', '.', 'From', 'that', 'moment', 'she', 'doubted', 'not', 'of', 'their', 'being', 'engaged', 'to', 'each', 'other', ';', 'and', 'the', 'belief', 'of', 'it', 'created', 'no', 'other', 'surprise', 'than', 'that', 'she', ',', 'or', 'any', 'of', 'their', 'friends', ',', 'should', 'be', 'left', 'by', 'tempers', 'so', 'frank', ',', 'to', 'discover', 'it', 'by', 'accident', '.', 'Margaret', 'related', 'something', 'to', 'her', 'the', 'next', 'day', ',', 'which', 'placed', 'this', 'matter', 'in', 'a', 'still', 'clearer', 'light', '.', 'Willoughby', 'had', 'spent', 'the', 'preceding', 'evening', 'with', 'them', ',', 'and', 'Margaret', ',', 'by', 'being', 'left', 'some', 'time', 'in', 'the', 'parlour', 'with', 'only', 'him', 'and', 'Marianne', ',', 'had', 'had', 'opportunity', 'for', 'observations', ',', 'which', ',', 'with', 'a', 'most', 'important', 'face', ',', 'she', 'communicated', 'to', 'her', 'eldest', 'sister', ',', 'when', 'they', 'were', 'next', 'by', 'themselves', '.', '“', 'Oh', ',', 'Elinor', '!', '”', 'she', 'cried', ',', '“', 'I', 'have', 'such', 'a', 'secret', 'to', 'tell', 'you', 'about', 'Marianne', '.', 'I', 'am', 'sure', 'she', 'will', 'be', 'married', 'to', 'Mr.', 'Willoughby', 'very', 'soon.', '”', '“', 'You', 'have', 'said', 'so', ',', '”', 'replied', 'Elinor', ',', '“', 'almost', 'every', 'day', 'since', 'they', 'first', 'met', 'on', 'High-church', 'Down', ';', 'and', 'they', 'had', 'not', 'known', 'each', 'other', 'a', 'week', ',', 'I', 'believe', ',', 'before', 'you', 'were', 'certain', 'that', 'Marianne', 'wore', 'his', 'picture', 'round', 'her', 'neck', ';', 'but', 'it', 'turned', 'out', 'to', 'be', 'only', 'the', 'miniature', 'of', 'our', 'great', 'uncle.', '”', '“', 'But', 'indeed', 'this', 'is', 'quite', 'another', 'thing', '.', 'I', 'am', 'sure', 'they', 'will', 'be', 'married', 'very', 'soon', ',', 'for', 'he', 'has', 'got', 'a', 'lock', 'of', 'her', 'hair.', '”', '“', 'Take', 'care', ',', 'Margaret', '.', 'It', 'may', 'be', 'only', 'the', 'hair', 'of', 'some', 'great', 'uncle', 'of', '_his_.', '”', '“', 'But', ',', 'indeed', ',', 'Elinor', ',', 'it', 'is', 'Marianne', '’', 's', '.', 'I', 'am', 'almost', 'sure', 'it', 'is', ',', 'for', 'I', 'saw', 'him', 'cut', 'it', 'off', '.', 'Last', 'night', 'after', 'tea', ',', 'when', 'you', 'and', 'mama', 'went', 'out', 'of', 'the', 'room', ',', 'they', 'were', 'whispering', 'and', 'talking', 'together', 'as', 'fast', 'as', 'could', 'be', ',', 'and', 'he', 'seemed', 'to', 'be', 'begging', 'something', 'of', 'her', ',', 'and', 'presently', 'he', 'took', 'up', 'her', 'scissors', 'and', 'cut', 'off', 'a', 'long', 'lock', 'of', 'her', 'hair', ',', 'for', 'it', 'was', 'all', 'tumbled', 'down', 'her', 'back', ';', 'and', 'he', 'kissed', 'it', ',', 'and', 'folded', 'it', 'up', 'in', 'a', 'piece', 'of', 'white', 'paper', ';', 'and', 'put', 'it', 'into', 'his', 'pocket-book.', '”', 'For', 'such', 'particulars', ',', 'stated', 'on', 'such', 'authority', ',', 'Elinor', 'could', 'not', 'withhold', 'her', 'credit', ';', 'nor', 'was', 'she', 'disposed', 'to', 'it', ',', 'for', 'the', 'circumstance', 'was', 'in', 'perfect', 'unison', 'with', 'what', 'she', 'had', 'heard', 'and', 'seen', 'herself', '.', 'Margaret', '’', 's', 'sagacity', 'was', 'not', 'always', 'displayed', 'in', 'a', 'way', 'so', 'satisfactory', 'to', 'her', 'sister', '.', 'When', 'Mrs.', 'Jennings', 'attacked', 'her', 'one', 'evening', 'at', 'the', 'park', ',', 'to', 'give', 'the', 'name', 'of', 'the', 'young', 'man', 'who', 'was', 'Elinor', '’', 's', 'particular', 'favourite', ',', 'which', 'had', 'been', 'long', 'a', 'matter', 'of', 'great', 'curiosity', 'to', 'her', ',', 'Margaret', 'answered', 'by', 'looking', 'at', 'her', 'sister', ',', 'and', 'saying', ',', '“', 'I', 'must', 'not', 'tell', ',', 'may', 'I', ',', 'Elinor', '?', '”', 'This', 'of', 'course', 'made', 'every', 'body', 'laugh', ';', 'and', 'Elinor', 'tried', 'to', 'laugh', 'too', '.', 'But', 'the', 'effort', 'was', 'painful', '.', 'She', 'was', 'convinced', 'that', 'Margaret', 'had', 'fixed', 'on', 'a', 'person', 'whose', 'name', 'she', 'could', 'not', 'bear', 'with', 'composure', 'to', 'become', 'a', 'standing', 'joke', 'with', 'Mrs.', 'Jennings', '.', 'Marianne', 'felt', 'for', 'her', 'most', 'sincerely', ';', 'but', 'she', 'did', 'more', 'harm', 'than', 'good', 'to', 'the', 'cause', ',', 'by', 'turning', 'very', 'red', 'and', 'saying', 'in', 'an', 'angry', 'manner', 'to', 'Margaret', ',', '“', 'Remember', 'that', 'whatever', 'your', 'conjectures', 'may', 'be', ',', 'you', 'have', 'no', 'right', 'to', 'repeat', 'them.', '”', '“', 'I', 'never', 'had', 'any', 'conjectures', 'about', 'it', ',', '”', 'replied', 'Margaret', ';', '“', 'it', 'was', 'you', 'who', 'told', 'me', 'of', 'it', 'yourself.', '”', 'This', 'increased', 'the', 'mirth', 'of', 'the', 'company', ',', 'and', 'Margaret', 'was', 'eagerly', 'pressed', 'to', 'say', 'something', 'more', '.', '“', 'Oh', '!', 'pray', ',', 'Miss', 'Margaret', ',', 'let', 'us', 'know', 'all', 'about', 'it', ',', '”', 'said', 'Mrs.', 'Jennings', '.', '“', 'What', 'is', 'the', 'gentleman', '’', 's', 'name', '?', '”', '“', 'I', 'must', 'not', 'tell', ',', 'ma', '’', 'am', '.', 'But', 'I', 'know', 'very', 'well', 'what', 'it', 'is', ';', 'and', 'I', 'know', 'where', 'he', 'is', 'too.', '”', '“', 'Yes', ',', 'yes', ',', 'we', 'can', 'guess', 'where', 'he', 'is', ';', 'at', 'his', 'own', 'house', 'at', 'Norland', 'to', 'be', 'sure', '.', 'He', 'is', 'the', 'curate', 'of', 'the', 'parish', 'I', 'dare', 'say.', '”', '“', 'No', ',', '_that_', 'he', 'is', 'not', '.', 'He', 'is', 'of', 'no', 'profession', 'at', 'all.', '”', '“', 'Margaret', ',', '”', 'said', 'Marianne', 'with', 'great', 'warmth', ',', '“', 'you', 'know', 'that', 'all', 'this', 'is', 'an', 'invention', 'of', 'your', 'own', ',', 'and', 'that', 'there', 'is', 'no', 'such', 'person', 'in', 'existence.', '”', '“', 'Well', ',', 'then', ',', 'he', 'is', 'lately', 'dead', ',', 'Marianne', ',', 'for', 'I', 'am', 'sure', 'there', 'was', 'such', 'a', 'man', 'once', ',', 'and', 'his', 'name', 'begins', 'with', 'an', 'F.', '”', 'Most', 'grateful', 'did', 'Elinor', 'feel', 'to', 'Lady', 'Middleton', 'for', 'observing', ',', 'at', 'this', 'moment', ',', '“', 'that', 'it', 'rained', 'very', 'hard', ',', '”', 'though', 'she', 'believed', 'the', 'interruption', 'to', 'proceed', 'less', 'from', 'any', 'attention', 'to', 'her', ',', 'than', 'from', 'her', 'ladyship', '’', 's', 'great', 'dislike', 'of', 'all', 'such', 'inelegant', 'subjects', 'of', 'raillery', 'as', 'delighted', 'her', 'husband', 'and', 'mother', '.', 'The', 'idea', 'however', 'started', 'by', 'her', ',', 'was', 'immediately', 'pursued', 'by', 'Colonel', 'Brandon', ',', 'who', 'was', 'on', 'every', 'occasion', 'mindful', 'of', 'the', 'feelings', 'of', 'others', ';', 'and', 'much', 'was', 'said', 'on', 'the', 'subject', 'of', 'rain', 'by', 'both', 'of', 'them', '.', 'Willoughby', 'opened', 'the', 'piano-forte', ',', 'and', 'asked', 'Marianne', 'to', 'sit', 'down', 'to', 'it', ';', 'and', 'thus', 'amidst', 'the', 'various', 'endeavours', 'of', 'different', 'people', 'to', 'quit', 'the', 'topic', ',', 'it', 'fell', 'to', 'the', 'ground', '.', 'But', 'not', 'so', 'easily', 'did', 'Elinor', 'recover', 'from', 'the', 'alarm', 'into', 'which', 'it', 'had', 'thrown', 'her', '.', 'A', 'party', 'was', 'formed', 'this', 'evening', 'for', 'going', 'on', 'the', 'following', 'day', 'to', 'see', 'a', 'very', 'fine', 'place', 'about', 'twelve', 'miles', 'from', 'Barton', ',', 'belonging', 'to', 'a', 'brother-in-law', 'of', 'Colonel', 'Brandon', ',', 'without', 'whose', 'interest', 'it', 'could', 'not', 'be', 'seen', ',', 'as', 'the', 'proprietor', ',', 'who', 'was', 'then', 'abroad', ',', 'had', 'left', 'strict', 'orders', 'on', 'that', 'head', '.', 'The', 'grounds', 'were', 'declared', 'to', 'be', 'highly', 'beautiful', ',', 'and', 'Sir', 'John', ',', 'who', 'was', 'particularly', 'warm', 'in', 'their', 'praise', ',', 'might', 'be', 'allowed', 'to', 'be', 'a', 'tolerable', 'judge', ',', 'for', 'he', 'had', 'formed', 'parties', 'to', 'visit', 'them', ',', 'at', 'least', ',', 'twice', 'every', 'summer', 'for', 'the', 'last', 'ten', 'years', '.', 'They', 'contained', 'a', 'noble', 'piece', 'of', 'water', ';', 'a', 'sail', 'on', 'which', 'was', 'to', 'form', 'a', 'great', 'part', 'of', 'the', 'morning', '’', 's', 'amusement', ';', 'cold', 'provisions', 'were', 'to', 'be', 'taken', ',', 'open', 'carriages', 'only', 'to', 'be', 'employed', ',', 'and', 'every', 'thing', 'conducted', 'in', 'the', 'usual', 'style', 'of', 'a', 'complete', 'party', 'of', 'pleasure', '.', 'To', 'some', 'few', 'of', 'the', 'company', 'it', 'appeared', 'rather', 'a', 'bold', 'undertaking', ',', 'considering', 'the', 'time', 'of', 'year', ',', 'and', 'that', 'it', 'had', 'rained', 'every', 'day', 'for', 'the', 'last', 'fortnight', ';', '—and', 'Mrs.', 'Dashwood', ',', 'who', 'had', 'already', 'a', 'cold', ',', 'was', 'persuaded', 'by', 'Elinor', 'to', 'stay', 'at', 'home', '.', 'CHAPTER', 'XIII', '.', 'Their', 'intended', 'excursion', 'to', 'Whitwell', 'turned', 'out', 'very', 'different', 'from', 'what', 'Elinor', 'had', 'expected', '.', 'She', 'was', 'prepared', 'to', 'be', 'wet', 'through', ',', 'fatigued', ',', 'and', 'frightened', ';', 'but', 'the', 'event', 'was', 'still', 'more', 'unfortunate', ',', 'for', 'they', 'did', 'not', 'go', 'at', 'all', '.', 'By', 'ten', 'o', '’', 'clock', 'the', 'whole', 'party', 'was', 'assembled', 'at', 'the', 'park', ',', 'where', 'they', 'were', 'to', 'breakfast', '.', 'The', 'morning', 'was', 'rather', 'favourable', ',', 'though', 'it', 'had', 'rained', 'all', 'night', ',', 'as', 'the', 'clouds', 'were', 'then', 'dispersing', 'across', 'the', 'sky', ',', 'and', 'the', 'sun', 'frequently', 'appeared', '.', 'They', 'were', 'all', 'in', 'high', 'spirits', 'and', 'good', 'humour', ',', 'eager', 'to', 'be', 'happy', ',', 'and', 'determined', 'to', 'submit', 'to', 'the', 'greatest', 'inconveniences', 'and', 'hardships', 'rather', 'than', 'be', 'otherwise', '.', 'While', 'they', 'were', 'at', 'breakfast', 'the', 'letters', 'were', 'brought', 'in', '.', 'Among', 'the', 'rest', 'there', 'was', 'one', 'for', 'Colonel', 'Brandon', ';', '—he', 'took', 'it', ',', 'looked', 'at', 'the', 'direction', ',', 'changed', 'colour', ',', 'and', 'immediately', 'left', 'the', 'room', '.', '“', 'What', 'is', 'the', 'matter', 'with', 'Brandon', '?', '”', 'said', 'Sir', 'John', '.', 'Nobody', 'could', 'tell', '.', '“', 'I', 'hope', 'he', 'has', 'had', 'no', 'bad', 'news', ',', '”', 'said', 'Lady', 'Middleton', '.', '“', 'It', 'must', 'be', 'something', 'extraordinary', 'that', 'could', 'make', 'Colonel', 'Brandon', 'leave', 'my', 'breakfast', 'table', 'so', 'suddenly.', '”', 'In', 'about', 'five', 'minutes', 'he', 'returned', '.', '“', 'No', 'bad', 'news', ',', 'Colonel', ',', 'I', 'hope', ';', '”', 'said', 'Mrs.', 'Jennings', ',', 'as', 'soon', 'as', 'he', 'entered', 'the', 'room', '.', '“', 'None', 'at', 'all', ',', 'ma', '’', 'am', ',', 'I', 'thank', 'you.', '”', '“', 'Was', 'it', 'from', 'Avignon', '?', 'I', 'hope', 'it', 'is', 'not', 'to', 'say', 'that', 'your', 'sister', 'is', 'worse.', '”', '“', 'No', ',', 'ma', '’', 'am', '.', 'It', 'came', 'from', 'town', ',', 'and', 'is', 'merely', 'a', 'letter', 'of', 'business.', '”', '“', 'But', 'how', 'came', 'the', 'hand', 'to', 'discompose', 'you', 'so', 'much', ',', 'if', 'it', 'was', 'only', 'a', 'letter', 'of', 'business', '?', 'Come', ',', 'come', ',', 'this', 'won', '’', 't', 'do', ',', 'Colonel', ';', 'so', 'let', 'us', 'hear', 'the', 'truth', 'of', 'it.', '”', '“', 'My', 'dear', 'madam', ',', '”', 'said', 'Lady', 'Middleton', ',', '“', 'recollect', 'what', 'you', 'are', 'saying.', '”', '“', 'Perhaps', 'it', 'is', 'to', 'tell', 'you', 'that', 'your', 'cousin', 'Fanny', 'is', 'married', '?', '”', 'said', 'Mrs.', 'Jennings', ',', 'without', 'attending', 'to', 'her', 'daughter', '’', 's', 'reproof', '.', '“', 'No', ',', 'indeed', ',', 'it', 'is', 'not.', '”', '“', 'Well', ',', 'then', ',', 'I', 'know', 'who', 'it', 'is', 'from', ',', 'Colonel', '.', 'And', 'I', 'hope', 'she', 'is', 'well.', '”', '“', 'Whom', 'do', 'you', 'mean', ',', 'ma', '’', 'am', '?', '”', 'said', 'he', ',', 'colouring', 'a', 'little', '.', '“', 'Oh', '!', 'you', 'know', 'who', 'I', 'mean.', '”', '“', 'I', 'am', 'particularly', 'sorry', ',', 'ma', '’', 'am', ',', '”', 'said', 'he', ',', 'addressing', 'Lady', 'Middleton', ',', '“', 'that', 'I', 'should', 'receive', 'this', 'letter', 'today', ',', 'for', 'it', 'is', 'on', 'business', 'which', 'requires', 'my', 'immediate', 'attendance', 'in', 'town.', '”', '“', 'In', 'town', '!', '”', 'cried', 'Mrs.', 'Jennings', '.', '“', 'What', 'can', 'you', 'have', 'to', 'do', 'in', 'town', 'at', 'this', 'time', 'of', 'year', '?', '”', '“', 'My', 'own', 'loss', 'is', 'great', ',', '”', 'he', 'continued', ',', '“', 'in', 'being', 'obliged', 'to', 'leave', 'so', 'agreeable', 'a', 'party', ';', 'but', 'I', 'am', 'the', 'more', 'concerned', ',', 'as', 'I', 'fear', 'my', 'presence', 'is', 'necessary', 'to', 'gain', 'your', 'admittance', 'at', 'Whitwell.', '”', 'What', 'a', 'blow', 'upon', 'them', 'all', 'was', 'this', '!', '“', 'But', 'if', 'you', 'write', 'a', 'note', 'to', 'the', 'housekeeper', ',', 'Mr.', 'Brandon', ',', '”', 'said', 'Marianne', ',', 'eagerly', ',', '“', 'will', 'it', 'not', 'be', 'sufficient', '?', '”', 'He', 'shook', 'his', 'head', '.', '“', 'We', 'must', 'go', ',', '”', 'said', 'Sir', 'John.—', '“', 'It', 'shall', 'not', 'be', 'put', 'off', 'when', 'we', 'are', 'so', 'near', 'it', '.', 'You', 'can', 'not', 'go', 'to', 'town', 'till', 'tomorrow', ',', 'Brandon', ',', 'that', 'is', 'all.', '”', '“', 'I', 'wish', 'it', 'could', 'be', 'so', 'easily', 'settled', '.', 'But', 'it', 'is', 'not', 'in', 'my', 'power', 'to', 'delay', 'my', 'journey', 'for', 'one', 'day', '!', '”', '“', 'If', 'you', 'would', 'but', 'let', 'us', 'know', 'what', 'your', 'business', 'is', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'we', 'might', 'see', 'whether', 'it', 'could', 'be', 'put', 'off', 'or', 'not.', '”', '“', 'You', 'would', 'not', 'be', 'six', 'hours', 'later', ',', '”', 'said', 'Willoughby', ',', '“', 'if', 'you', 'were', 'to', 'defer', 'your', 'journey', 'till', 'our', 'return.', '”', '“', 'I', 'can', 'not', 'afford', 'to', 'lose', '_one_', 'hour.', '”', 'Elinor', 'then', 'heard', 'Willoughby', 'say', ',', 'in', 'a', 'low', 'voice', 'to', 'Marianne', ',', '“', 'There', 'are', 'some', 'people', 'who', 'can', 'not', 'bear', 'a', 'party', 'of', 'pleasure', '.', 'Brandon', 'is', 'one', 'of', 'them', '.', 'He', 'was', 'afraid', 'of', 'catching', 'cold', 'I', 'dare', 'say', ',', 'and', 'invented', 'this', 'trick', 'for', 'getting', 'out', 'of', 'it', '.', 'I', 'would', 'lay', 'fifty', 'guineas', 'the', 'letter', 'was', 'of', 'his', 'own', 'writing.', '”', '“', 'I', 'have', 'no', 'doubt', 'of', 'it', ',', '”', 'replied', 'Marianne', '.', '“', 'There', 'is', 'no', 'persuading', 'you', 'to', 'change', 'your', 'mind', ',', 'Brandon', ',', 'I', 'know', 'of', 'old', ',', '”', 'said', 'Sir', 'John', ',', '“', 'when', 'once', 'you', 'are', 'determined', 'on', 'anything', '.', 'But', ',', 'however', ',', 'I', 'hope', 'you', 'will', 'think', 'better', 'of', 'it', '.', 'Consider', ',', 'here', 'are', 'the', 'two', 'Miss', 'Careys', 'come', 'over', 'from', 'Newton', ',', 'the', 'three', 'Miss', 'Dashwoods', 'walked', 'up', 'from', 'the', 'cottage', ',', 'and', 'Mr.', 'Willoughby', 'got', 'up', 'two', 'hours', 'before', 'his', 'usual', 'time', ',', 'on', 'purpose', 'to', 'go', 'to', 'Whitwell.', '”', 'Colonel', 'Brandon', 'again', 'repeated', 'his', 'sorrow', 'at', 'being', 'the', 'cause', 'of', 'disappointing', 'the', 'party', ';', 'but', 'at', 'the', 'same', 'time', 'declared', 'it', 'to', 'be', 'unavoidable', '.', '“', 'Well', ',', 'then', ',', 'when', 'will', 'you', 'come', 'back', 'again', '?', '”', '“', 'I', 'hope', 'we', 'shall', 'see', 'you', 'at', 'Barton', ',', '”', 'added', 'her', 'ladyship', ',', '“', 'as', 'soon', 'as', 'you', 'can', 'conveniently', 'leave', 'town', ';', 'and', 'we', 'must', 'put', 'off', 'the', 'party', 'to', 'Whitwell', 'till', 'you', 'return.', '”', '“', 'You', 'are', 'very', 'obliging', '.', 'But', 'it', 'is', 'so', 'uncertain', ',', 'when', 'I', 'may', 'have', 'it', 'in', 'my', 'power', 'to', 'return', ',', 'that', 'I', 'dare', 'not', 'engage', 'for', 'it', 'at', 'all.', '”', '“', 'Oh', '!', 'he', 'must', 'and', 'shall', 'come', 'back', ',', '”', 'cried', 'Sir', 'John', '.', '“', 'If', 'he', 'is', 'not', 'here', 'by', 'the', 'end', 'of', 'the', 'week', ',', 'I', 'shall', 'go', 'after', 'him.', '”', '“', 'Ay', ',', 'so', 'do', ',', 'Sir', 'John', ',', '”', 'cried', 'Mrs.', 'Jennings', ',', '“', 'and', 'then', 'perhaps', 'you', 'may', 'find', 'out', 'what', 'his', 'business', 'is.', '”', '“', 'I', 'do', 'not', 'want', 'to', 'pry', 'into', 'other', 'men', '’', 's', 'concerns', '.', 'I', 'suppose', 'it', 'is', 'something', 'he', 'is', 'ashamed', 'of.', '”', 'Colonel', 'Brandon', '’', 's', 'horses', 'were', 'announced', '.', '“', 'You', 'do', 'not', 'go', 'to', 'town', 'on', 'horseback', ',', 'do', 'you', '?', '”', 'added', 'Sir', 'John', '.', '“', 'No', '.', 'Only', 'to', 'Honiton', '.', 'I', 'shall', 'then', 'go', 'post.', '”', '“', 'Well', ',', 'as', 'you', 'are', 'resolved', 'to', 'go', ',', 'I', 'wish', 'you', 'a', 'good', 'journey', '.', 'But', 'you', 'had', 'better', 'change', 'your', 'mind.', '”', '“', 'I', 'assure', 'you', 'it', 'is', 'not', 'in', 'my', 'power.', '”', 'He', 'then', 'took', 'leave', 'of', 'the', 'whole', 'party', '.', '“', 'Is', 'there', 'no', 'chance', 'of', 'my', 'seeing', 'you', 'and', 'your', 'sisters', 'in', 'town', 'this', 'winter', ',', 'Miss', 'Dashwood', '?', '”', '“', 'I', 'am', 'afraid', ',', 'none', 'at', 'all.', '”', '“', 'Then', 'I', 'must', 'bid', 'you', 'farewell', 'for', 'a', 'longer', 'time', 'than', 'I', 'should', 'wish', 'to', 'do.', '”', 'To', 'Marianne', ',', 'he', 'merely', 'bowed', 'and', 'said', 'nothing', '.', '“', 'Come', 'Colonel', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'before', 'you', 'go', ',', 'do', 'let', 'us', 'know', 'what', 'you', 'are', 'going', 'about.', '”', 'He', 'wished', 'her', 'a', 'good', 'morning', ',', 'and', ',', 'attended', 'by', 'Sir', 'John', ',', 'left', 'the', 'room', '.', 'The', 'complaints', 'and', 'lamentations', 'which', 'politeness', 'had', 'hitherto', 'restrained', ',', 'now', 'burst', 'forth', 'universally', ';', 'and', 'they', 'all', 'agreed', 'again', 'and', 'again', 'how', 'provoking', 'it', 'was', 'to', 'be', 'so', 'disappointed', '.', '“', 'I', 'can', 'guess', 'what', 'his', 'business', 'is', ',', 'however', ',', '”', 'said', 'Mrs.', 'Jennings', 'exultingly', '.', '“', 'Can', 'you', ',', 'ma', '’', 'am', '?', '”', 'said', 'almost', 'every', 'body', '.', '“', 'Yes', ';', 'it', 'is', 'about', 'Miss', 'Williams', ',', 'I', 'am', 'sure.', '”', '“', 'And', 'who', 'is', 'Miss', 'Williams', '?', '”', 'asked', 'Marianne', '.', '“', 'What', '!', 'do', 'not', 'you', 'know', 'who', 'Miss', 'Williams', 'is', '?', 'I', 'am', 'sure', 'you', 'must', 'have', 'heard', 'of', 'her', 'before', '.', 'She', 'is', 'a', 'relation', 'of', 'the', 'Colonel', '’', 's', ',', 'my', 'dear', ';', 'a', 'very', 'near', 'relation', '.', 'We', 'will', 'not', 'say', 'how', 'near', ',', 'for', 'fear', 'of', 'shocking', 'the', 'young', 'ladies.', '”', 'Then', ',', 'lowering', 'her', 'voice', 'a', 'little', ',', 'she', 'said', 'to', 'Elinor', ',', '“', 'She', 'is', 'his', 'natural', 'daughter.', '”', '“', 'Indeed', '!', '”', '“', 'Oh', ',', 'yes', ';', 'and', 'as', 'like', 'him', 'as', 'she', 'can', 'stare', '.', 'I', 'dare', 'say', 'the', 'Colonel', 'will', 'leave', 'her', 'all', 'his', 'fortune.', '”', 'When', 'Sir', 'John', 'returned', ',', 'he', 'joined', 'most', 'heartily', 'in', 'the', 'general', 'regret', 'on', 'so', 'unfortunate', 'an', 'event', ';', 'concluding', 'however', 'by', 'observing', ',', 'that', 'as', 'they', 'were', 'all', 'got', 'together', ',', 'they', 'must', 'do', 'something', 'by', 'way', 'of', 'being', 'happy', ';', 'and', 'after', 'some', 'consultation', 'it', 'was', 'agreed', ',', 'that', 'although', 'happiness', 'could', 'only', 'be', 'enjoyed', 'at', 'Whitwell', ',', 'they', 'might', 'procure', 'a', 'tolerable', 'composure', 'of', 'mind', 'by', 'driving', 'about', 'the', 'country', '.', 'The', 'carriages', 'were', 'then', 'ordered', ';', 'Willoughby', '’', 's', 'was', 'first', ',', 'and', 'Marianne', 'never', 'looked', 'happier', 'than', 'when', 'she', 'got', 'into', 'it', '.', 'He', 'drove', 'through', 'the', 'park', 'very', 'fast', ',', 'and', 'they', 'were', 'soon', 'out', 'of', 'sight', ';', 'and', 'nothing', 'more', 'of', 'them', 'was', 'seen', 'till', 'their', 'return', ',', 'which', 'did', 'not', 'happen', 'till', 'after', 'the', 'return', 'of', 'all', 'the', 'rest', '.', 'They', 'both', 'seemed', 'delighted', 'with', 'their', 'drive', ';', 'but', 'said', 'only', 'in', 'general', 'terms', 'that', 'they', 'had', 'kept', 'in', 'the', 'lanes', ',', 'while', 'the', 'others', 'went', 'on', 'the', 'downs', '.', 'It', 'was', 'settled', 'that', 'there', 'should', 'be', 'a', 'dance', 'in', 'the', 'evening', ',', 'and', 'that', 'every', 'body', 'should', 'be', 'extremely', 'merry', 'all', 'day', 'long', '.', 'Some', 'more', 'of', 'the', 'Careys', 'came', 'to', 'dinner', ',', 'and', 'they', 'had', 'the', 'pleasure', 'of', 'sitting', 'down', 'nearly', 'twenty', 'to', 'table', ',', 'which', 'Sir', 'John', 'observed', 'with', 'great', 'contentment', '.', 'Willoughby', 'took', 'his', 'usual', 'place', 'between', 'the', 'two', 'elder', 'Miss', 'Dashwoods', '.', 'Mrs.', 'Jennings', 'sat', 'on', 'Elinor', '’', 's', 'right', 'hand', ';', 'and', 'they', 'had', 'not', 'been', 'long', 'seated', ',', 'before', 'she', 'leant', 'behind', 'her', 'and', 'Willoughby', ',', 'and', 'said', 'to', 'Marianne', ',', 'loud', 'enough', 'for', 'them', 'both', 'to', 'hear', ',', '“', 'I', 'have', 'found', 'you', 'out', 'in', 'spite', 'of', 'all', 'your', 'tricks', '.', 'I', 'know', 'where', 'you', 'spent', 'the', 'morning.', '”', 'Marianne', 'coloured', ',', 'and', 'replied', 'very', 'hastily', ',', '“', 'Where', ',', 'pray', '?', '”', '“', 'Did', 'not', 'you', 'know', ',', '”', 'said', 'Willoughby', ',', '“', 'that', 'we', 'had', 'been', 'out', 'in', 'my', 'curricle', '?', '”', '“', 'Yes', ',', 'yes', ',', 'Mr.', 'Impudence', ',', 'I', 'know', 'that', 'very', 'well', ',', 'and', 'I', 'was', 'determined', 'to', 'find', 'out', '_where_', 'you', 'had', 'been', 'to', '.', 'I', 'hope', 'you', 'like', 'your', 'house', ',', 'Miss', 'Marianne', '.', 'It', 'is', 'a', 'very', 'large', 'one', ',', 'I', 'know', ';', 'and', 'when', 'I', 'come', 'to', 'see', 'you', ',', 'I', 'hope', 'you', 'will', 'have', 'new-furnished', 'it', ',', 'for', 'it', 'wanted', 'it', 'very', 'much', 'when', 'I', 'was', 'there', 'six', 'years', 'ago.', '”', 'Marianne', 'turned', 'away', 'in', 'great', 'confusion', '.', 'Mrs.', 'Jennings', 'laughed', 'heartily', ';', 'and', 'Elinor', 'found', 'that', 'in', 'her', 'resolution', 'to', 'know', 'where', 'they', 'had', 'been', ',', 'she', 'had', 'actually', 'made', 'her', 'own', 'woman', 'enquire', 'of', 'Mr.', 'Willoughby', '’', 's', 'groom', ';', 'and', 'that', 'she', 'had', 'by', 'that', 'method', 'been', 'informed', 'that', 'they', 'had', 'gone', 'to', 'Allenham', ',', 'and', 'spent', 'a', 'considerable', 'time', 'there', 'in', 'walking', 'about', 'the', 'garden', 'and', 'going', 'all', 'over', 'the', 'house', '.', 'Elinor', 'could', 'hardly', 'believe', 'this', 'to', 'be', 'true', ',', 'as', 'it', 'seemed', 'very', 'unlikely', 'that', 'Willoughby', 'should', 'propose', ',', 'or', 'Marianne', 'consent', ',', 'to', 'enter', 'the', 'house', 'while', 'Mrs.', 'Smith', 'was', 'in', 'it', ',', 'with', 'whom', 'Marianne', 'had', 'not', 'the', 'smallest', 'acquaintance', '.', 'As', 'soon', 'as', 'they', 'left', 'the', 'dining-room', ',', 'Elinor', 'enquired', 'of', 'her', 'about', 'it', ';', 'and', 'great', 'was', 'her', 'surprise', 'when', 'she', 'found', 'that', 'every', 'circumstance', 'related', 'by', 'Mrs.', 'Jennings', 'was', 'perfectly', 'true', '.', 'Marianne', 'was', 'quite', 'angry', 'with', 'her', 'for', 'doubting', 'it', '.', '“', 'Why', 'should', 'you', 'imagine', ',', 'Elinor', ',', 'that', 'we', 'did', 'not', 'go', 'there', ',', 'or', 'that', 'we', 'did', 'not', 'see', 'the', 'house', '?', 'Is', 'not', 'it', 'what', 'you', 'have', 'often', 'wished', 'to', 'do', 'yourself', '?', '”', '“', 'Yes', ',', 'Marianne', ',', 'but', 'I', 'would', 'not', 'go', 'while', 'Mrs.', 'Smith', 'was', 'there', ',', 'and', 'with', 'no', 'other', 'companion', 'than', 'Mr.', 'Willoughby.', '”', '“', 'Mr', '.', 'Willoughby', 'however', 'is', 'the', 'only', 'person', 'who', 'can', 'have', 'a', 'right', 'to', 'show', 'that', 'house', ';', 'and', 'as', 'he', 'went', 'in', 'an', 'open', 'carriage', ',', 'it', 'was', 'impossible', 'to', 'have', 'any', 'other', 'companion', '.', 'I', 'never', 'spent', 'a', 'pleasanter', 'morning', 'in', 'my', 'life.', '”', '“', 'I', 'am', 'afraid', ',', '”', 'replied', 'Elinor', ',', '“', 'that', 'the', 'pleasantness', 'of', 'an', 'employment', 'does', 'not', 'always', 'evince', 'its', 'propriety.', '”', '“', 'On', 'the', 'contrary', ',', 'nothing', 'can', 'be', 'a', 'stronger', 'proof', 'of', 'it', ',', 'Elinor', ';', 'for', 'if', 'there', 'had', 'been', 'any', 'real', 'impropriety', 'in', 'what', 'I', 'did', ',', 'I', 'should', 'have', 'been', 'sensible', 'of', 'it', 'at', 'the', 'time', ',', 'for', 'we', 'always', 'know', 'when', 'we', 'are', 'acting', 'wrong', ',', 'and', 'with', 'such', 'a', 'conviction', 'I', 'could', 'have', 'had', 'no', 'pleasure.', '”', '“', 'But', ',', 'my', 'dear', 'Marianne', ',', 'as', 'it', 'has', 'already', 'exposed', 'you', 'to', 'some', 'very', 'impertinent', 'remarks', ',', 'do', 'you', 'not', 'now', 'begin', 'to', 'doubt', 'the', 'discretion', 'of', 'your', 'own', 'conduct', '?', '”', '“', 'If', 'the', 'impertinent', 'remarks', 'of', 'Mrs.', 'Jennings', 'are', 'to', 'be', 'the', 'proof', 'of', 'impropriety', 'in', 'conduct', ',', 'we', 'are', 'all', 'offending', 'every', 'moment', 'of', 'our', 'lives', '.', 'I', 'value', 'not', 'her', 'censure', 'any', 'more', 'than', 'I', 'should', 'do', 'her', 'commendation', '.', 'I', 'am', 'not', 'sensible', 'of', 'having', 'done', 'anything', 'wrong', 'in', 'walking', 'over', 'Mrs.', 'Smith', '’', 's', 'grounds', ',', 'or', 'in', 'seeing', 'her', 'house', '.', 'They', 'will', 'one', 'day', 'be', 'Mr.', 'Willoughby', '’', 's', ',', 'and—', '”', '“', 'If', 'they', 'were', 'one', 'day', 'to', 'be', 'your', 'own', ',', 'Marianne', ',', 'you', 'would', 'not', 'be', 'justified', 'in', 'what', 'you', 'have', 'done.', '”', 'She', 'blushed', 'at', 'this', 'hint', ';', 'but', 'it', 'was', 'even', 'visibly', 'gratifying', 'to', 'her', ';', 'and', 'after', 'a', 'ten', 'minutes', '’', 'interval', 'of', 'earnest', 'thought', ',', 'she', 'came', 'to', 'her', 'sister', 'again', ',', 'and', 'said', 'with', 'great', 'good', 'humour', ',', '“', 'Perhaps', ',', 'Elinor', ',', 'it', '_was_', 'rather', 'ill-judged', 'in', 'me', 'to', 'go', 'to', 'Allenham', ';', 'but', 'Mr.', 'Willoughby', 'wanted', 'particularly', 'to', 'show', 'me', 'the', 'place', ';', 'and', 'it', 'is', 'a', 'charming', 'house', ',', 'I', 'assure', 'you.—There', 'is', 'one', 'remarkably', 'pretty', 'sitting', 'room', 'up', 'stairs', ';', 'of', 'a', 'nice', 'comfortable', 'size', 'for', 'constant', 'use', ',', 'and', 'with', 'modern', 'furniture', 'it', 'would', 'be', 'delightful', '.', 'It', 'is', 'a', 'corner', 'room', ',', 'and', 'has', 'windows', 'on', 'two', 'sides', '.', 'On', 'one', 'side', 'you', 'look', 'across', 'the', 'bowling-green', ',', 'behind', 'the', 'house', ',', 'to', 'a', 'beautiful', 'hanging', 'wood', ',', 'and', 'on', 'the', 'other', 'you', 'have', 'a', 'view', 'of', 'the', 'church', 'and', 'village', ',', 'and', ',', 'beyond', 'them', ',', 'of', 'those', 'fine', 'bold', 'hills', 'that', 'we', 'have', 'so', 'often', 'admired', '.', 'I', 'did', 'not', 'see', 'it', 'to', 'advantage', ',', 'for', 'nothing', 'could', 'be', 'more', 'forlorn', 'than', 'the', 'furniture', ',', '—but', 'if', 'it', 'were', 'newly', 'fitted', 'up—a', 'couple', 'of', 'hundred', 'pounds', ',', 'Willoughby', 'says', ',', 'would', 'make', 'it', 'one', 'of', 'the', 'pleasantest', 'summer-rooms', 'in', 'England.', '”', 'Could', 'Elinor', 'have', 'listened', 'to', 'her', 'without', 'interruption', 'from', 'the', 'others', ',', 'she', 'would', 'have', 'described', 'every', 'room', 'in', 'the', 'house', 'with', 'equal', 'delight', '.', 'CHAPTER', 'XIV', '.', 'The', 'sudden', 'termination', 'of', 'Colonel', 'Brandon', '’', 's', 'visit', 'at', 'the', 'park', ',', 'with', 'his', 'steadiness', 'in', 'concealing', 'its', 'cause', ',', 'filled', 'the', 'mind', ',', 'and', 'raised', 'the', 'wonder', 'of', 'Mrs.', 'Jennings', 'for', 'two', 'or', 'three', 'days', ';', 'she', 'was', 'a', 'great', 'wonderer', ',', 'as', 'every', 'one', 'must', 'be', 'who', 'takes', 'a', 'very', 'lively', 'interest', 'in', 'all', 'the', 'comings', 'and', 'goings', 'of', 'all', 'their', 'acquaintance', '.', 'She', 'wondered', ',', 'with', 'little', 'intermission', 'what', 'could', 'be', 'the', 'reason', 'of', 'it', ';', 'was', 'sure', 'there', 'must', 'be', 'some', 'bad', 'news', ',', 'and', 'thought', 'over', 'every', 'kind', 'of', 'distress', 'that', 'could', 'have', 'befallen', 'him', ',', 'with', 'a', 'fixed', 'determination', 'that', 'he', 'should', 'not', 'escape', 'them', 'all', '.', '“', 'Something', 'very', 'melancholy', 'must', 'be', 'the', 'matter', ',', 'I', 'am', 'sure', ',', '”', 'said', 'she', '.', '“', 'I', 'could', 'see', 'it', 'in', 'his', 'face', '.', 'Poor', 'man', '!', 'I', 'am', 'afraid', 'his', 'circumstances', 'may', 'be', 'bad', '.', 'The', 'estate', 'at', 'Delaford', 'was', 'never', 'reckoned', 'more', 'than', 'two', 'thousand', 'a', 'year', ',', 'and', 'his', 'brother', 'left', 'everything', 'sadly', 'involved', '.', 'I', 'do', 'think', 'he', 'must', 'have', 'been', 'sent', 'for', 'about', 'money', 'matters', ',', 'for', 'what', 'else', 'can', 'it', 'be', '?', 'I', 'wonder', 'whether', 'it', 'is', 'so', '.', 'I', 'would', 'give', 'anything', 'to', 'know', 'the', 'truth', 'of', 'it', '.', 'Perhaps', 'it', 'is', 'about', 'Miss', 'Williams', 'and', ',', 'by', 'the', 'bye', ',', 'I', 'dare', 'say', 'it', 'is', ',', 'because', 'he', 'looked', 'so', 'conscious', 'when', 'I', 'mentioned', 'her', '.', 'May', 'be', 'she', 'is', 'ill', 'in', 'town', ';', 'nothing', 'in', 'the', 'world', 'more', 'likely', ',', 'for', 'I', 'have', 'a', 'notion', 'she', 'is', 'always', 'rather', 'sickly', '.', 'I', 'would', 'lay', 'any', 'wager', 'it', 'is', 'about', 'Miss', 'Williams', '.', 'It', 'is', 'not', 'so', 'very', 'likely', 'he', 'should', 'be', 'distressed', 'in', 'his', 'circumstances', '_now_', ',', 'for', 'he', 'is', 'a', 'very', 'prudent', 'man', ',', 'and', 'to', 'be', 'sure', 'must', 'have', 'cleared', 'the', 'estate', 'by', 'this', 'time', '.', 'I', 'wonder', 'what', 'it', 'can', 'be', '!', 'May', 'be', 'his', 'sister', 'is', 'worse', 'at', 'Avignon', ',', 'and', 'has', 'sent', 'for', 'him', 'over', '.', 'His', 'setting', 'off', 'in', 'such', 'a', 'hurry', 'seems', 'very', 'like', 'it', '.', 'Well', ',', 'I', 'wish', 'him', 'out', 'of', 'all', 'his', 'trouble', 'with', 'all', 'my', 'heart', ',', 'and', 'a', 'good', 'wife', 'into', 'the', 'bargain.', '”', 'So', 'wondered', ',', 'so', 'talked', 'Mrs.', 'Jennings', '.', 'Her', 'opinion', 'varying', 'with', 'every', 'fresh', 'conjecture', ',', 'and', 'all', 'seeming', 'equally', 'probable', 'as', 'they', 'arose', '.', 'Elinor', ',', 'though', 'she', 'felt', 'really', 'interested', 'in', 'the', 'welfare', 'of', 'Colonel', 'Brandon', ',', 'could', 'not', 'bestow', 'all', 'the', 'wonder', 'on', 'his', 'going', 'so', 'suddenly', 'away', ',', 'which', 'Mrs.', 'Jennings', 'was', 'desirous', 'of', 'her', 'feeling', ';', 'for', 'besides', 'that', 'the', 'circumstance', 'did', 'not', 'in', 'her', 'opinion', 'justify', 'such', 'lasting', 'amazement', 'or', 'variety', 'of', 'speculation', ',', 'her', 'wonder', 'was', 'otherwise', 'disposed', 'of', '.', 'It', 'was', 'engrossed', 'by', 'the', 'extraordinary', 'silence', 'of', 'her', 'sister', 'and', 'Willoughby', 'on', 'the', 'subject', ',', 'which', 'they', 'must', 'know', 'to', 'be', 'peculiarly', 'interesting', 'to', 'them', 'all', '.', 'As', 'this', 'silence', 'continued', ',', 'every', 'day', 'made', 'it', 'appear', 'more', 'strange', 'and', 'more', 'incompatible', 'with', 'the', 'disposition', 'of', 'both', '.', 'Why', 'they', 'should', 'not', 'openly', 'acknowledge', 'to', 'her', 'mother', 'and', 'herself', ',', 'what', 'their', 'constant', 'behaviour', 'to', 'each', 'other', 'declared', 'to', 'have', 'taken', 'place', ',', 'Elinor', 'could', 'not', 'imagine', '.', 'She', 'could', 'easily', 'conceive', 'that', 'marriage', 'might', 'not', 'be', 'immediately', 'in', 'their', 'power', ';', 'for', 'though', 'Willoughby', 'was', 'independent', ',', 'there', 'was', 'no', 'reason', 'to', 'believe', 'him', 'rich', '.', 'His', 'estate', 'had', 'been', 'rated', 'by', 'Sir', 'John', 'at', 'about', 'six', 'or', 'seven', 'hundred', 'a', 'year', ';', 'but', 'he', 'lived', 'at', 'an', 'expense', 'to', 'which', 'that', 'income', 'could', 'hardly', 'be', 'equal', ',', 'and', 'he', 'had', 'himself', 'often', 'complained', 'of', 'his', 'poverty', '.', 'But', 'for', 'this', 'strange', 'kind', 'of', 'secrecy', 'maintained', 'by', 'them', 'relative', 'to', 'their', 'engagement', ',', 'which', 'in', 'fact', 'concealed', 'nothing', 'at', 'all', ',', 'she', 'could', 'not', 'account', ';', 'and', 'it', 'was', 'so', 'wholly', 'contradictory', 'to', 'their', 'general', 'opinions', 'and', 'practice', ',', 'that', 'a', 'doubt', 'sometimes', 'entered', 'her', 'mind', 'of', 'their', 'being', 'really', 'engaged', ',', 'and', 'this', 'doubt', 'was', 'enough', 'to', 'prevent', 'her', 'making', 'any', 'inquiry', 'of', 'Marianne', '.', 'Nothing', 'could', 'be', 'more', 'expressive', 'of', 'attachment', 'to', 'them', 'all', ',', 'than', 'Willoughby', '’', 's', 'behaviour', '.', 'To', 'Marianne', 'it', 'had', 'all', 'the', 'distinguishing', 'tenderness', 'which', 'a', 'lover', '’', 's', 'heart', 'could', 'give', ',', 'and', 'to', 'the', 'rest', 'of', 'the', 'family', 'it', 'was', 'the', 'affectionate', 'attention', 'of', 'a', 'son', 'and', 'a', 'brother', '.', 'The', 'cottage', 'seemed', 'to', 'be', 'considered', 'and', 'loved', 'by', 'him', 'as', 'his', 'home', ';', 'many', 'more', 'of', 'his', 'hours', 'were', 'spent', 'there', 'than', 'at', 'Allenham', ';', 'and', 'if', 'no', 'general', 'engagement', 'collected', 'them', 'at', 'the', 'park', ',', 'the', 'exercise', 'which', 'called', 'him', 'out', 'in', 'the', 'morning', 'was', 'almost', 'certain', 'of', 'ending', 'there', ',', 'where', 'the', 'rest', 'of', 'the', 'day', 'was', 'spent', 'by', 'himself', 'at', 'the', 'side', 'of', 'Marianne', ',', 'and', 'by', 'his', 'favourite', 'pointer', 'at', 'her', 'feet', '.', 'One', 'evening', 'in', 'particular', ',', 'about', 'a', 'week', 'after', 'Colonel', 'Brandon', 'left', 'the', 'country', ',', 'his', 'heart', 'seemed', 'more', 'than', 'usually', 'open', 'to', 'every', 'feeling', 'of', 'attachment', 'to', 'the', 'objects', 'around', 'him', ';', 'and', 'on', 'Mrs.', 'Dashwood', '’', 's', 'happening', 'to', 'mention', 'her', 'design', 'of', 'improving', 'the', 'cottage', 'in', 'the', 'spring', ',', 'he', 'warmly', 'opposed', 'every', 'alteration', 'of', 'a', 'place', 'which', 'affection', 'had', 'established', 'as', 'perfect', 'with', 'him', '.', '“', 'What', '!', '”', 'he', 'exclaimed—', '“', 'Improve', 'this', 'dear', 'cottage', '!', 'No', '.', '_That_', 'I', 'will', 'never', 'consent', 'to', '.', 'Not', 'a', 'stone', 'must', 'be', 'added', 'to', 'its', 'walls', ',', 'not', 'an', 'inch', 'to', 'its', 'size', ',', 'if', 'my', 'feelings', 'are', 'regarded.', '”', '“', 'Do', 'not', 'be', 'alarmed', ',', '”', 'said', 'Miss', 'Dashwood', ',', '“', 'nothing', 'of', 'the', 'kind', 'will', 'be', 'done', ';', 'for', 'my', 'mother', 'will', 'never', 'have', 'money', 'enough', 'to', 'attempt', 'it.', '”', '“', 'I', 'am', 'heartily', 'glad', 'of', 'it', ',', '”', 'he', 'cried', '.', '“', 'May', 'she', 'always', 'be', 'poor', ',', 'if', 'she', 'can', 'employ', 'her', 'riches', 'no', 'better.', '”', '“', 'Thank', 'you', ',', 'Willoughby', '.', 'But', 'you', 'may', 'be', 'assured', 'that', 'I', 'would', 'not', 'sacrifice', 'one', 'sentiment', 'of', 'local', 'attachment', 'of', 'yours', ',', 'or', 'of', 'any', 'one', 'whom', 'I', 'loved', ',', 'for', 'all', 'the', 'improvements', 'in', 'the', 'world', '.', 'Depend', 'upon', 'it', 'that', 'whatever', 'unemployed', 'sum', 'may', 'remain', ',', 'when', 'I', 'make', 'up', 'my', 'accounts', 'in', 'the', 'spring', ',', 'I', 'would', 'even', 'rather', 'lay', 'it', 'uselessly', 'by', 'than', 'dispose', 'of', 'it', 'in', 'a', 'manner', 'so', 'painful', 'to', 'you', '.', 'But', 'are', 'you', 'really', 'so', 'attached', 'to', 'this', 'place', 'as', 'to', 'see', 'no', 'defect', 'in', 'it', '?', '”', '“', 'I', 'am', ',', '”', 'said', 'he', '.', '“', 'To', 'me', 'it', 'is', 'faultless', '.', 'Nay', ',', 'more', ',', 'I', 'consider', 'it', 'as', 'the', 'only', 'form', 'of', 'building', 'in', 'which', 'happiness', 'is', 'attainable', ',', 'and', 'were', 'I', 'rich', 'enough', 'I', 'would', 'instantly', 'pull', 'Combe', 'down', ',', 'and', 'build', 'it', 'up', 'again', 'in', 'the', 'exact', 'plan', 'of', 'this', 'cottage.', '”', '“', 'With', 'dark', 'narrow', 'stairs', 'and', 'a', 'kitchen', 'that', 'smokes', ',', 'I', 'suppose', ',', '”', 'said', 'Elinor', '.', '“', 'Yes', ',', '”', 'cried', 'he', 'in', 'the', 'same', 'eager', 'tone', ',', '“', 'with', 'all', 'and', 'every', 'thing', 'belonging', 'to', 'it', ';', '—in', 'no', 'one', 'convenience', 'or', 'inconvenience', 'about', 'it', ',', 'should', 'the', 'least', 'variation', 'be', 'perceptible', '.', 'Then', ',', 'and', 'then', 'only', ',', 'under', 'such', 'a', 'roof', ',', 'I', 'might', 'perhaps', 'be', 'as', 'happy', 'at', 'Combe', 'as', 'I', 'have', 'been', 'at', 'Barton.', '”', '“', 'I', 'flatter', 'myself', ',', '”', 'replied', 'Elinor', ',', '“', 'that', 'even', 'under', 'the', 'disadvantage', 'of', 'better', 'rooms', 'and', 'a', 'broader', 'staircase', ',', 'you', 'will', 'hereafter', 'find', 'your', 'own', 'house', 'as', 'faultless', 'as', 'you', 'now', 'do', 'this.', '”', '“', 'There', 'certainly', 'are', 'circumstances', ',', '”', 'said', 'Willoughby', ',', '“', 'which', 'might', 'greatly', 'endear', 'it', 'to', 'me', ';', 'but', 'this', 'place', 'will', 'always', 'have', 'one', 'claim', 'of', 'my', 'affection', ',', 'which', 'no', 'other', 'can', 'possibly', 'share.', '”', 'Mrs.', 'Dashwood', 'looked', 'with', 'pleasure', 'at', 'Marianne', ',', 'whose', 'fine', 'eyes', 'were', 'fixed', 'so', 'expressively', 'on', 'Willoughby', ',', 'as', 'plainly', 'denoted', 'how', 'well', 'she', 'understood', 'him', '.', '“', 'How', 'often', 'did', 'I', 'wish', ',', '”', 'added', 'he', ',', '“', 'when', 'I', 'was', 'at', 'Allenham', 'this', 'time', 'twelvemonth', ',', 'that', 'Barton', 'cottage', 'were', 'inhabited', '!', 'I', 'never', 'passed', 'within', 'view', 'of', 'it', 'without', 'admiring', 'its', 'situation', ',', 'and', 'grieving', 'that', 'no', 'one', 'should', 'live', 'in', 'it', '.', 'How', 'little', 'did', 'I', 'then', 'think', 'that', 'the', 'very', 'first', 'news', 'I', 'should', 'hear', 'from', 'Mrs.', 'Smith', ',', 'when', 'I', 'next', 'came', 'into', 'the', 'country', ',', 'would', 'be', 'that', 'Barton', 'cottage', 'was', 'taken', ':', 'and', 'I', 'felt', 'an', 'immediate', 'satisfaction', 'and', 'interest', 'in', 'the', 'event', ',', 'which', 'nothing', 'but', 'a', 'kind', 'of', 'prescience', 'of', 'what', 'happiness', 'I', 'should', 'experience', 'from', 'it', ',', 'can', 'account', 'for', '.', 'Must', 'it', 'not', 'have', 'been', 'so', ',', 'Marianne', '?', '”', 'speaking', 'to', 'her', 'in', 'a', 'lowered', 'voice', '.', 'Then', 'continuing', 'his', 'former', 'tone', ',', 'he', 'said', ',', '“', 'And', 'yet', 'this', 'house', 'you', 'would', 'spoil', ',', 'Mrs.', 'Dashwood', '?', 'You', 'would', 'rob', 'it', 'of', 'its', 'simplicity', 'by', 'imaginary', 'improvement', '!', 'and', 'this', 'dear', 'parlour', 'in', 'which', 'our', 'acquaintance', 'first', 'began', ',', 'and', 'in', 'which', 'so', 'many', 'happy', 'hours', 'have', 'been', 'since', 'spent', 'by', 'us', 'together', ',', 'you', 'would', 'degrade', 'to', 'the', 'condition', 'of', 'a', 'common', 'entrance', ',', 'and', 'every', 'body', 'would', 'be', 'eager', 'to', 'pass', 'through', 'the', 'room', 'which', 'has', 'hitherto', 'contained', 'within', 'itself', 'more', 'real', 'accommodation', 'and', 'comfort', 'than', 'any', 'other', 'apartment', 'of', 'the', 'handsomest', 'dimensions', 'in', 'the', 'world', 'could', 'possibly', 'afford.', '”', 'Mrs.', 'Dashwood', 'again', 'assured', 'him', 'that', 'no', 'alteration', 'of', 'the', 'kind', 'should', 'be', 'attempted', '.', '“', 'You', 'are', 'a', 'good', 'woman', ',', '”', 'he', 'warmly', 'replied', '.', '“', 'Your', 'promise', 'makes', 'me', 'easy', '.', 'Extend', 'it', 'a', 'little', 'farther', ',', 'and', 'it', 'will', 'make', 'me', 'happy', '.', 'Tell', 'me', 'that', 'not', 'only', 'your', 'house', 'will', 'remain', 'the', 'same', ',', 'but', 'that', 'I', 'shall', 'ever', 'find', 'you', 'and', 'yours', 'as', 'unchanged', 'as', 'your', 'dwelling', ';', 'and', 'that', 'you', 'will', 'always', 'consider', 'me', 'with', 'the', 'kindness', 'which', 'has', 'made', 'everything', 'belonging', 'to', 'you', 'so', 'dear', 'to', 'me.', '”', 'The', 'promise', 'was', 'readily', 'given', ',', 'and', 'Willoughby', '’', 's', 'behaviour', 'during', 'the', 'whole', 'of', 'the', 'evening', 'declared', 'at', 'once', 'his', 'affection', 'and', 'happiness', '.', '“', 'Shall', 'we', 'see', 'you', 'tomorrow', 'to', 'dinner', '?', '”', 'said', 'Mrs.', 'Dashwood', ',', 'when', 'he', 'was', 'leaving', 'them', '.', '“', 'I', 'do', 'not', 'ask', 'you', 'to', 'come', 'in', 'the', 'morning', ',', 'for', 'we', 'must', 'walk', 'to', 'the', 'park', ',', 'to', 'call', 'on', 'Lady', 'Middleton.', '”', 'He', 'engaged', 'to', 'be', 'with', 'them', 'by', 'four', 'o', '’', 'clock', '.', 'CHAPTER', 'XV', '.', 'Mrs.', 'Dashwood', '’', 's', 'visit', 'to', 'Lady', 'Middleton', 'took', 'place', 'the', 'next', 'day', ',', 'and', 'two', 'of', 'her', 'daughters', 'went', 'with', 'her', ';', 'but', 'Marianne', 'excused', 'herself', 'from', 'being', 'of', 'the', 'party', ',', 'under', 'some', 'trifling', 'pretext', 'of', 'employment', ';', 'and', 'her', 'mother', ',', 'who', 'concluded', 'that', 'a', 'promise', 'had', 'been', 'made', 'by', 'Willoughby', 'the', 'night', 'before', 'of', 'calling', 'on', 'her', 'while', 'they', 'were', 'absent', ',', 'was', 'perfectly', 'satisfied', 'with', 'her', 'remaining', 'at', 'home', '.', 'On', 'their', 'return', 'from', 'the', 'park', 'they', 'found', 'Willoughby', '’', 's', 'curricle', 'and', 'servant', 'in', 'waiting', 'at', 'the', 'cottage', ',', 'and', 'Mrs.', 'Dashwood', 'was', 'convinced', 'that', 'her', 'conjecture', 'had', 'been', 'just', '.', 'So', 'far', 'it', 'was', 'all', 'as', 'she', 'had', 'foreseen', ';', 'but', 'on', 'entering', 'the', 'house', 'she', 'beheld', 'what', 'no', 'foresight', 'had', 'taught', 'her', 'to', 'expect', '.', 'They', 'were', 'no', 'sooner', 'in', 'the', 'passage', 'than', 'Marianne', 'came', 'hastily', 'out', 'of', 'the', 'parlour', 'apparently', 'in', 'violent', 'affliction', ',', 'with', 'her', 'handkerchief', 'at', 'her', 'eyes', ';', 'and', 'without', 'noticing', 'them', 'ran', 'up', 'stairs', '.', 'Surprised', 'and', 'alarmed', 'they', 'proceeded', 'directly', 'into', 'the', 'room', 'she', 'had', 'just', 'quitted', ',', 'where', 'they', 'found', 'only', 'Willoughby', ',', 'who', 'was', 'leaning', 'against', 'the', 'mantel-piece', 'with', 'his', 'back', 'towards', 'them', '.', 'He', 'turned', 'round', 'on', 'their', 'coming', 'in', ',', 'and', 'his', 'countenance', 'showed', 'that', 'he', 'strongly', 'partook', 'of', 'the', 'emotion', 'which', 'over-powered', 'Marianne', '.', '“', 'Is', 'anything', 'the', 'matter', 'with', 'her', '?', '”', 'cried', 'Mrs.', 'Dashwood', 'as', 'she', 'entered—', '“', 'is', 'she', 'ill', '?', '”', '“', 'I', 'hope', 'not', ',', '”', 'he', 'replied', ',', 'trying', 'to', 'look', 'cheerful', ';', 'and', 'with', 'a', 'forced', 'smile', 'presently', 'added', ',', '“', 'It', 'is', 'I', 'who', 'may', 'rather', 'expect', 'to', 'be', 'ill—for', 'I', 'am', 'now', 'suffering', 'under', 'a', 'very', 'heavy', 'disappointment', '!', '”', '“', 'Disappointment', '?', '”', '“', 'Yes', ',', 'for', 'I', 'am', 'unable', 'to', 'keep', 'my', 'engagement', 'with', 'you', '.', 'Mrs.', 'Smith', 'has', 'this', 'morning', 'exercised', 'the', 'privilege', 'of', 'riches', 'upon', 'a', 'poor', 'dependent', 'cousin', ',', 'by', 'sending', 'me', 'on', 'business', 'to', 'London', '.', 'I', 'have', 'just', 'received', 'my', 'dispatches', ',', 'and', 'taken', 'my', 'farewell', 'of', 'Allenham', ';', 'and', 'by', 'way', 'of', 'exhilaration', 'I', 'am', 'now', 'come', 'to', 'take', 'my', 'farewell', 'of', 'you.', '”', '“', 'To', 'London', '!', '—and', 'are', 'you', 'going', 'this', 'morning', '?', '”', '“', 'Almost', 'this', 'moment.', '”', '“', 'This', 'is', 'very', 'unfortunate', '.', 'But', 'Mrs.', 'Smith', 'must', 'be', 'obliged', ';', '—and', 'her', 'business', 'will', 'not', 'detain', 'you', 'from', 'us', 'long', 'I', 'hope.', '”', 'He', 'coloured', 'as', 'he', 'replied', ',', '“', 'You', 'are', 'very', 'kind', ',', 'but', 'I', 'have', 'no', 'idea', 'of', 'returning', 'into', 'Devonshire', 'immediately', '.', 'My', 'visits', 'to', 'Mrs.', 'Smith', 'are', 'never', 'repeated', 'within', 'the', 'twelvemonth.', '”', '“', 'And', 'is', 'Mrs.', 'Smith', 'your', 'only', 'friend', '?', 'Is', 'Allenham', 'the', 'only', 'house', 'in', 'the', 'neighbourhood', 'to', 'which', 'you', 'will', 'be', 'welcome', '?', 'For', 'shame', ',', 'Willoughby', ',', 'can', 'you', 'wait', 'for', 'an', 'invitation', 'here', '?', '”', 'His', 'colour', 'increased', ';', 'and', 'with', 'his', 'eyes', 'fixed', 'on', 'the', 'ground', 'he', 'only', 'replied', ',', '“', 'You', 'are', 'too', 'good.', '”', 'Mrs.', 'Dashwood', 'looked', 'at', 'Elinor', 'with', 'surprise', '.', 'Elinor', 'felt', 'equal', 'amazement', '.', 'For', 'a', 'few', 'moments', 'every', 'one', 'was', 'silent', '.', 'Mrs.', 'Dashwood', 'first', 'spoke', '.', '“', 'I', 'have', 'only', 'to', 'add', ',', 'my', 'dear', 'Willoughby', ',', 'that', 'at', 'Barton', 'cottage', 'you', 'will', 'always', 'be', 'welcome', ';', 'for', 'I', 'will', 'not', 'press', 'you', 'to', 'return', 'here', 'immediately', ',', 'because', 'you', 'only', 'can', 'judge', 'how', 'far', '_that_', 'might', 'be', 'pleasing', 'to', 'Mrs.', 'Smith', ';', 'and', 'on', 'this', 'head', 'I', 'shall', 'be', 'no', 'more', 'disposed', 'to', 'question', 'your', 'judgment', 'than', 'to', 'doubt', 'your', 'inclination.', '”', '“', 'My', 'engagements', 'at', 'present', ',', '”', 'replied', 'Willoughby', ',', 'confusedly', ',', '“', 'are', 'of', 'such', 'a', 'nature—that—I', 'dare', 'not', 'flatter', 'myself—', '”', 'He', 'stopped', '.', 'Mrs.', 'Dashwood', 'was', 'too', 'much', 'astonished', 'to', 'speak', ',', 'and', 'another', 'pause', 'succeeded', '.', 'This', 'was', 'broken', 'by', 'Willoughby', ',', 'who', 'said', 'with', 'a', 'faint', 'smile', ',', '“', 'It', 'is', 'folly', 'to', 'linger', 'in', 'this', 'manner', '.', 'I', 'will', 'not', 'torment', 'myself', 'any', 'longer', 'by', 'remaining', 'among', 'friends', 'whose', 'society', 'it', 'is', 'impossible', 'for', 'me', 'now', 'to', 'enjoy.', '”', 'He', 'then', 'hastily', 'took', 'leave', 'of', 'them', 'all', 'and', 'left', 'the', 'room', '.', 'They', 'saw', 'him', 'step', 'into', 'his', 'carriage', ',', 'and', 'in', 'a', 'minute', 'it', 'was', 'out', 'of', 'sight', '.', 'Mrs.', 'Dashwood', 'felt', 'too', 'much', 'for', 'speech', ',', 'and', 'instantly', 'quitted', 'the', 'parlour', 'to', 'give', 'way', 'in', 'solitude', 'to', 'the', 'concern', 'and', 'alarm', 'which', 'this', 'sudden', 'departure', 'occasioned', '.', 'Elinor', '’', 's', 'uneasiness', 'was', 'at', 'least', 'equal', 'to', 'her', 'mother', '’', 's', '.', 'She', 'thought', 'of', 'what', 'had', 'just', 'passed', 'with', 'anxiety', 'and', 'distrust', '.', 'Willoughby', '’', 's', 'behaviour', 'in', 'taking', 'leave', 'of', 'them', ',', 'his', 'embarrassment', ',', 'and', 'affectation', 'of', 'cheerfulness', ',', 'and', ',', 'above', 'all', ',', 'his', 'unwillingness', 'to', 'accept', 'her', 'mother', '’', 's', 'invitation', ',', 'a', 'backwardness', 'so', 'unlike', 'a', 'lover', ',', 'so', 'unlike', 'himself', ',', 'greatly', 'disturbed', 'her', '.', 'One', 'moment', 'she', 'feared', 'that', 'no', 'serious', 'design', 'had', 'ever', 'been', 'formed', 'on', 'his', 'side', ';', 'and', 'the', 'next', 'that', 'some', 'unfortunate', 'quarrel', 'had', 'taken', 'place', 'between', 'him', 'and', 'her', 'sister', ';', '—the', 'distress', 'in', 'which', 'Marianne', 'had', 'quitted', 'the', 'room', 'was', 'such', 'as', 'a', 'serious', 'quarrel', 'could', 'most', 'reasonably', 'account', 'for', ',', 'though', 'when', 'she', 'considered', 'what', 'Marianne', '’', 's', 'love', 'for', 'him', 'was', ',', 'a', 'quarrel', 'seemed', 'almost', 'impossible', '.', 'But', 'whatever', 'might', 'be', 'the', 'particulars', 'of', 'their', 'separation', ',', 'her', 'sister', '’', 's', 'affliction', 'was', 'indubitable', ';', 'and', 'she', 'thought', 'with', 'the', 'tenderest', 'compassion', 'of', 'that', 'violent', 'sorrow', 'which', 'Marianne', 'was', 'in', 'all', 'probability', 'not', 'merely', 'giving', 'way', 'to', 'as', 'a', 'relief', ',', 'but', 'feeding', 'and', 'encouraging', 'as', 'a', 'duty', '.', 'In', 'about', 'half', 'an', 'hour', 'her', 'mother', 'returned', ',', 'and', 'though', 'her', 'eyes', 'were', 'red', ',', 'her', 'countenance', 'was', 'not', 'uncheerful', '.', '“', 'Our', 'dear', 'Willoughby', 'is', 'now', 'some', 'miles', 'from', 'Barton', ',', 'Elinor', ',', '”', 'said', 'she', ',', 'as', 'she', 'sat', 'down', 'to', 'work', ',', '“', 'and', 'with', 'how', 'heavy', 'a', 'heart', 'does', 'he', 'travel', '?', '”', '“', 'It', 'is', 'all', 'very', 'strange', '.', 'So', 'suddenly', 'to', 'be', 'gone', '!', 'It', 'seems', 'but', 'the', 'work', 'of', 'a', 'moment', '.', 'And', 'last', 'night', 'he', 'was', 'with', 'us', 'so', 'happy', ',', 'so', 'cheerful', ',', 'so', 'affectionate', '?', 'And', 'now', ',', 'after', 'only', 'ten', 'minutes', 'notice—Gone', 'too', 'without', 'intending', 'to', 'return', '!', '—Something', 'more', 'than', 'what', 'he', 'owned', 'to', 'us', 'must', 'have', 'happened', '.', 'He', 'did', 'not', 'speak', ',', 'he', 'did', 'not', 'behave', 'like', 'himself', '.', '_You_', 'must', 'have', 'seen', 'the', 'difference', 'as', 'well', 'as', 'I', '.', 'What', 'can', 'it', 'be', '?', 'Can', 'they', 'have', 'quarrelled', '?', 'Why', 'else', 'should', 'he', 'have', 'shown', 'such', 'unwillingness', 'to', 'accept', 'your', 'invitation', 'here', '?', '”', '“', 'It', 'was', 'not', 'inclination', 'that', 'he', 'wanted', ',', 'Elinor', ';', 'I', 'could', 'plainly', 'see', '_that_', '.', 'He', 'had', 'not', 'the', 'power', 'of', 'accepting', 'it', '.', 'I', 'have', 'thought', 'it', 'all', 'over', 'I', 'assure', 'you', ',', 'and', 'I', 'can', 'perfectly', 'account', 'for', 'every', 'thing', 'that', 'at', 'first', 'seemed', 'strange', 'to', 'me', 'as', 'well', 'as', 'to', 'you.', '”', '“', 'Can', 'you', ',', 'indeed', '!', '”', '“', 'Yes', '.', 'I', 'have', 'explained', 'it', 'to', 'myself', 'in', 'the', 'most', 'satisfactory', 'way', ';', '—but', 'you', ',', 'Elinor', ',', 'who', 'love', 'to', 'doubt', 'where', 'you', 'can—it', 'will', 'not', 'satisfy', '_you_', ',', 'I', 'know', ';', 'but', 'you', 'shall', 'not', 'talk', '_me_', 'out', 'of', 'my', 'trust', 'in', 'it', '.', 'I', 'am', 'persuaded', 'that', 'Mrs.', 'Smith', 'suspects', 'his', 'regard', 'for', 'Marianne', ',', 'disapproves', 'of', 'it', ',', '(', 'perhaps', 'because', 'she', 'has', 'other', 'views', 'for', 'him', ',', ')', 'and', 'on', 'that', 'account', 'is', 'eager', 'to', 'get', 'him', 'away', ';', '—and', 'that', 'the', 'business', 'which', 'she', 'sends', 'him', 'off', 'to', 'transact', 'is', 'invented', 'as', 'an', 'excuse', 'to', 'dismiss', 'him', '.', 'This', 'is', 'what', 'I', 'believe', 'to', 'have', 'happened', '.', 'He', 'is', ',', 'moreover', ',', 'aware', 'that', 'she', '_does_', 'disapprove', 'the', 'connection', ',', 'he', 'dares', 'not', 'therefore', 'at', 'present', 'confess', 'to', 'her', 'his', 'engagement', 'with', 'Marianne', ',', 'and', 'he', 'feels', 'himself', 'obliged', ',', 'from', 'his', 'dependent', 'situation', ',', 'to', 'give', 'into', 'her', 'schemes', ',', 'and', 'absent', 'himself', 'from', 'Devonshire', 'for', 'a', 'while', '.', 'You', 'will', 'tell', 'me', ',', 'I', 'know', ',', 'that', 'this', 'may', 'or', 'may', '_not_', 'have', 'happened', ';', 'but', 'I', 'will', 'listen', 'to', 'no', 'cavil', ',', 'unless', 'you', 'can', 'point', 'out', 'any', 'other', 'method', 'of', 'understanding', 'the', 'affair', 'as', 'satisfactory', 'at', 'this', '.', 'And', 'now', ',', 'Elinor', ',', 'what', 'have', 'you', 'to', 'say', '?', '”', '“', 'Nothing', ',', 'for', 'you', 'have', 'anticipated', 'my', 'answer.', '”', '“', 'Then', 'you', 'would', 'have', 'told', 'me', ',', 'that', 'it', 'might', 'or', 'might', 'not', 'have', 'happened', '.', 'Oh', ',', 'Elinor', ',', 'how', 'incomprehensible', 'are', 'your', 'feelings', '!', 'You', 'had', 'rather', 'take', 'evil', 'upon', 'credit', 'than', 'good', '.', 'You', 'had', 'rather', 'look', 'out', 'for', 'misery', 'for', 'Marianne', ',', 'and', 'guilt', 'for', 'poor', 'Willoughby', ',', 'than', 'an', 'apology', 'for', 'the', 'latter', '.', 'You', 'are', 'resolved', 'to', 'think', 'him', 'blameable', ',', 'because', 'he', 'took', 'leave', 'of', 'us', 'with', 'less', 'affection', 'than', 'his', 'usual', 'behaviour', 'has', 'shown', '.', 'And', 'is', 'no', 'allowance', 'to', 'be', 'made', 'for', 'inadvertence', ',', 'or', 'for', 'spirits', 'depressed', 'by', 'recent', 'disappointment', '?', 'Are', 'no', 'probabilities', 'to', 'be', 'accepted', ',', 'merely', 'because', 'they', 'are', 'not', 'certainties', '?', 'Is', 'nothing', 'due', 'to', 'the', 'man', 'whom', 'we', 'have', 'all', 'such', 'reason', 'to', 'love', ',', 'and', 'no', 'reason', 'in', 'the', 'world', 'to', 'think', 'ill', 'of', '?', 'To', 'the', 'possibility', 'of', 'motives', 'unanswerable', 'in', 'themselves', ',', 'though', 'unavoidably', 'secret', 'for', 'a', 'while', '?', 'And', ',', 'after', 'all', ',', 'what', 'is', 'it', 'you', 'suspect', 'him', 'of', '?', '”', '“', 'I', 'can', 'hardly', 'tell', 'myself', '.', 'But', 'suspicion', 'of', 'something', 'unpleasant', 'is', 'the', 'inevitable', 'consequence', 'of', 'such', 'an', 'alteration', 'as', 'we', 'just', 'witnessed', 'in', 'him', '.', 'There', 'is', 'great', 'truth', ',', 'however', ',', 'in', 'what', 'you', 'have', 'now', 'urged', 'of', 'the', 'allowances', 'which', 'ought', 'to', 'be', 'made', 'for', 'him', ',', 'and', 'it', 'is', 'my', 'wish', 'to', 'be', 'candid', 'in', 'my', 'judgment', 'of', 'every', 'body', '.', 'Willoughby', 'may', 'undoubtedly', 'have', 'very', 'sufficient', 'reasons', 'for', 'his', 'conduct', ',', 'and', 'I', 'will', 'hope', 'that', 'he', 'has', '.', 'But', 'it', 'would', 'have', 'been', 'more', 'like', 'Willoughby', 'to', 'acknowledge', 'them', 'at', 'once', '.', 'Secrecy', 'may', 'be', 'advisable', ';', 'but', 'still', 'I', 'can', 'not', 'help', 'wondering', 'at', 'its', 'being', 'practiced', 'by', 'him.', '”', '“', 'Do', 'not', 'blame', 'him', ',', 'however', ',', 'for', 'departing', 'from', 'his', 'character', ',', 'where', 'the', 'deviation', 'is', 'necessary', '.', 'But', 'you', 'really', 'do', 'admit', 'the', 'justice', 'of', 'what', 'I', 'have', 'said', 'in', 'his', 'defence', '?', '—I', 'am', 'happy—and', 'he', 'is', 'acquitted.', '”', '“', 'Not', 'entirely', '.', 'It', 'may', 'be', 'proper', 'to', 'conceal', 'their', 'engagement', '(', 'if', 'they', '_are_', 'engaged', ')', 'from', 'Mrs.', 'Smith—and', 'if', 'that', 'is', 'the', 'case', ',', 'it', 'must', 'be', 'highly', 'expedient', 'for', 'Willoughby', 'to', 'be', 'but', 'little', 'in', 'Devonshire', 'at', 'present', '.', 'But', 'this', 'is', 'no', 'excuse', 'for', 'their', 'concealing', 'it', 'from', 'us.', '”', '“', 'Concealing', 'it', 'from', 'us', '!', 'my', 'dear', 'child', ',', 'do', 'you', 'accuse', 'Willoughby', 'and', 'Marianne', 'of', 'concealment', '?', 'This', 'is', 'strange', 'indeed', ',', 'when', 'your', 'eyes', 'have', 'been', 'reproaching', 'them', 'every', 'day', 'for', 'incautiousness.', '”', '“', 'I', 'want', 'no', 'proof', 'of', 'their', 'affection', ',', '”', 'said', 'Elinor', ';', '“', 'but', 'of', 'their', 'engagement', 'I', 'do.', '”', '“', 'I', 'am', 'perfectly', 'satisfied', 'of', 'both.', '”', '“', 'Yet', 'not', 'a', 'syllable', 'has', 'been', 'said', 'to', 'you', 'on', 'the', 'subject', ',', 'by', 'either', 'of', 'them.', '”', '“', 'I', 'have', 'not', 'wanted', 'syllables', 'where', 'actions', 'have', 'spoken', 'so', 'plainly', '.', 'Has', 'not', 'his', 'behaviour', 'to', 'Marianne', 'and', 'to', 'all', 'of', 'us', ',', 'for', 'at', 'least', 'the', 'last', 'fortnight', ',', 'declared', 'that', 'he', 'loved', 'and', 'considered', 'her', 'as', 'his', 'future', 'wife', ',', 'and', 'that', 'he', 'felt', 'for', 'us', 'the', 'attachment', 'of', 'the', 'nearest', 'relation', '?', 'Have', 'we', 'not', 'perfectly', 'understood', 'each', 'other', '?', 'Has', 'not', 'my', 'consent', 'been', 'daily', 'asked', 'by', 'his', 'looks', ',', 'his', 'manner', ',', 'his', 'attentive', 'and', 'affectionate', 'respect', '?', 'My', 'Elinor', ',', 'is', 'it', 'possible', 'to', 'doubt', 'their', 'engagement', '?', 'How', 'could', 'such', 'a', 'thought', 'occur', 'to', 'you', '?', 'How', 'is', 'it', 'to', 'be', 'supposed', 'that', 'Willoughby', ',', 'persuaded', 'as', 'he', 'must', 'be', 'of', 'your', 'sister', '’', 's', 'love', ',', 'should', 'leave', 'her', ',', 'and', 'leave', 'her', 'perhaps', 'for', 'months', ',', 'without', 'telling', 'her', 'of', 'his', 'affection', ';', '—that', 'they', 'should', 'part', 'without', 'a', 'mutual', 'exchange', 'of', 'confidence', '?', '”', '“', 'I', 'confess', ',', '”', 'replied', 'Elinor', ',', '“', 'that', 'every', 'circumstance', 'except', '_one_', 'is', 'in', 'favour', 'of', 'their', 'engagement', ';', 'but', 'that', '_one_', 'is', 'the', 'total', 'silence', 'of', 'both', 'on', 'the', 'subject', ',', 'and', 'with', 'me', 'it', 'almost', 'outweighs', 'every', 'other.', '”', '“', 'How', 'strange', 'this', 'is', '!', 'You', 'must', 'think', 'wretchedly', 'indeed', 'of', 'Willoughby', ',', 'if', ',', 'after', 'all', 'that', 'has', 'openly', 'passed', 'between', 'them', ',', 'you', 'can', 'doubt', 'the', 'nature', 'of', 'the', 'terms', 'on', 'which', 'they', 'are', 'together', '.', 'Has', 'he', 'been', 'acting', 'a', 'part', 'in', 'his', 'behaviour', 'to', 'your', 'sister', 'all', 'this', 'time', '?', 'Do', 'you', 'suppose', 'him', 'really', 'indifferent', 'to', 'her', '?', '”', '“', 'No', ',', 'I', 'can', 'not', 'think', 'that', '.', 'He', 'must', 'and', 'does', 'love', 'her', 'I', 'am', 'sure.', '”', '“', 'But', 'with', 'a', 'strange', 'kind', 'of', 'tenderness', ',', 'if', 'he', 'can', 'leave', 'her', 'with', 'such', 'indifference', ',', 'such', 'carelessness', 'of', 'the', 'future', ',', 'as', 'you', 'attribute', 'to', 'him.', '”', '“', 'You', 'must', 'remember', ',', 'my', 'dear', 'mother', ',', 'that', 'I', 'have', 'never', 'considered', 'this', 'matter', 'as', 'certain', '.', 'I', 'have', 'had', 'my', 'doubts', ',', 'I', 'confess', ';', 'but', 'they', 'are', 'fainter', 'than', 'they', 'were', ',', 'and', 'they', 'may', 'soon', 'be', 'entirely', 'done', 'away', '.', 'If', 'we', 'find', 'they', 'correspond', ',', 'every', 'fear', 'of', 'mine', 'will', 'be', 'removed.', '”', '“', 'A', 'mighty', 'concession', 'indeed', '!', 'If', 'you', 'were', 'to', 'see', 'them', 'at', 'the', 'altar', ',', 'you', 'would', 'suppose', 'they', 'were', 'going', 'to', 'be', 'married', '.', 'Ungracious', 'girl', '!', 'But', '_I_', 'require', 'no', 'such', 'proof', '.', 'Nothing', 'in', 'my', 'opinion', 'has', 'ever', 'passed', 'to', 'justify', 'doubt', ';', 'no', 'secrecy', 'has', 'been', 'attempted', ';', 'all', 'has', 'been', 'uniformly', 'open', 'and', 'unreserved', '.', 'You', 'can', 'not', 'doubt', 'your', 'sister', '’', 's', 'wishes', '.', 'It', 'must', 'be', 'Willoughby', 'therefore', 'whom', 'you', 'suspect', '.', 'But', 'why', '?', 'Is', 'he', 'not', 'a', 'man', 'of', 'honour', 'and', 'feeling', '?', 'Has', 'there', 'been', 'any', 'inconsistency', 'on', 'his', 'side', 'to', 'create', 'alarm', '?', 'can', 'he', 'be', 'deceitful', '?', '”', '“', 'I', 'hope', 'not', ',', 'I', 'believe', 'not', ',', '”', 'cried', 'Elinor', '.', '“', 'I', 'love', 'Willoughby', ',', 'sincerely', 'love', 'him', ';', 'and', 'suspicion', 'of', 'his', 'integrity', 'can', 'not', 'be', 'more', 'painful', 'to', 'yourself', 'than', 'to', 'me', '.', 'It', 'has', 'been', 'involuntary', ',', 'and', 'I', 'will', 'not', 'encourage', 'it', '.', 'I', 'was', 'startled', ',', 'I', 'confess', ',', 'by', 'the', 'alteration', 'in', 'his', 'manners', 'this', 'morning', ';', '—he', 'did', 'not', 'speak', 'like', 'himself', ',', 'and', 'did', 'not', 'return', 'your', 'kindness', 'with', 'any', 'cordiality', '.', 'But', 'all', 'this', 'may', 'be', 'explained', 'by', 'such', 'a', 'situation', 'of', 'his', 'affairs', 'as', 'you', 'have', 'supposed', '.', 'He', 'had', 'just', 'parted', 'from', 'my', 'sister', ',', 'had', 'seen', 'her', 'leave', 'him', 'in', 'the', 'greatest', 'affliction', ';', 'and', 'if', 'he', 'felt', 'obliged', ',', 'from', 'a', 'fear', 'of', 'offending', 'Mrs.', 'Smith', ',', 'to', 'resist', 'the', 'temptation', 'of', 'returning', 'here', 'soon', ',', 'and', 'yet', 'aware', 'that', 'by', 'declining', 'your', 'invitation', ',', 'by', 'saying', 'that', 'he', 'was', 'going', 'away', 'for', 'some', 'time', ',', 'he', 'should', 'seem', 'to', 'act', 'an', 'ungenerous', ',', 'a', 'suspicious', 'part', 'by', 'our', 'family', ',', 'he', 'might', 'well', 'be', 'embarrassed', 'and', 'disturbed', '.', 'In', 'such', 'a', 'case', ',', 'a', 'plain', 'and', 'open', 'avowal', 'of', 'his', 'difficulties', 'would', 'have', 'been', 'more', 'to', 'his', 'honour', 'I', 'think', ',', 'as', 'well', 'as', 'more', 'consistent', 'with', 'his', 'general', 'character', ';', '—but', 'I', 'will', 'not', 'raise', 'objections', 'against', 'any', 'one', '’', 's', 'conduct', 'on', 'so', 'illiberal', 'a', 'foundation', ',', 'as', 'a', 'difference', 'in', 'judgment', 'from', 'myself', ',', 'or', 'a', 'deviation', 'from', 'what', 'I', 'may', 'think', 'right', 'and', 'consistent.', '”', '“', 'You', 'speak', 'very', 'properly', '.', 'Willoughby', 'certainly', 'does', 'not', 'deserve', 'to', 'be', 'suspected', '.', 'Though', '_we_', 'have', 'not', 'known', 'him', 'long', ',', 'he', 'is', 'no', 'stranger', 'in', 'this', 'part', 'of', 'the', 'world', ';', 'and', 'who', 'has', 'ever', 'spoken', 'to', 'his', 'disadvantage', '?', 'Had', 'he', 'been', 'in', 'a', 'situation', 'to', 'act', 'independently', 'and', 'marry', 'immediately', ',', 'it', 'might', 'have', 'been', 'odd', 'that', 'he', 'should', 'leave', 'us', 'without', 'acknowledging', 'everything', 'to', 'me', 'at', 'once', ':', 'but', 'this', 'is', 'not', 'the', 'case', '.', 'It', 'is', 'an', 'engagement', 'in', 'some', 'respects', 'not', 'prosperously', 'begun', ',', 'for', 'their', 'marriage', 'must', 'be', 'at', 'a', 'very', 'uncertain', 'distance', ';', 'and', 'even', 'secrecy', ',', 'as', 'far', 'as', 'it', 'can', 'be', 'observed', ',', 'may', 'now', 'be', 'very', 'advisable.', '”', 'They', 'were', 'interrupted', 'by', 'the', 'entrance', 'of', 'Margaret', ';', 'and', 'Elinor', 'was', 'then', 'at', 'liberty', 'to', 'think', 'over', 'the', 'representations', 'of', 'her', 'mother', ',', 'to', 'acknowledge', 'the', 'probability', 'of', 'many', ',', 'and', 'hope', 'for', 'the', 'justice', 'of', 'all', '.', 'They', 'saw', 'nothing', 'of', 'Marianne', 'till', 'dinner', 'time', ',', 'when', 'she', 'entered', 'the', 'room', 'and', 'took', 'her', 'place', 'at', 'the', 'table', 'without', 'saying', 'a', 'word', '.', 'Her', 'eyes', 'were', 'red', 'and', 'swollen', ';', 'and', 'it', 'seemed', 'as', 'if', 'her', 'tears', 'were', 'even', 'then', 'restrained', 'with', 'difficulty', '.', 'She', 'avoided', 'the', 'looks', 'of', 'them', 'all', ',', 'could', 'neither', 'eat', 'nor', 'speak', ',', 'and', 'after', 'some', 'time', ',', 'on', 'her', 'mother', '’', 's', 'silently', 'pressing', 'her', 'hand', 'with', 'tender', 'compassion', ',', 'her', 'small', 'degree', 'of', 'fortitude', 'was', 'quite', 'overcome', ',', 'she', 'burst', 'into', 'tears', 'and', 'left', 'the', 'room', '.', 'This', 'violent', 'oppression', 'of', 'spirits', 'continued', 'the', 'whole', 'evening', '.', 'She', 'was', 'without', 'any', 'power', ',', 'because', 'she', 'was', 'without', 'any', 'desire', 'of', 'command', 'over', 'herself', '.', 'The', 'slightest', 'mention', 'of', 'anything', 'relative', 'to', 'Willoughby', 'overpowered', 'her', 'in', 'an', 'instant', ';', 'and', 'though', 'her', 'family', 'were', 'most', 'anxiously', 'attentive', 'to', 'her', 'comfort', ',', 'it', 'was', 'impossible', 'for', 'them', ',', 'if', 'they', 'spoke', 'at', 'all', ',', 'to', 'keep', 'clear', 'of', 'every', 'subject', 'which', 'her', 'feelings', 'connected', 'with', 'him', '.', 'CHAPTER', 'XVI', '.', 'Marianne', 'would', 'have', 'thought', 'herself', 'very', 'inexcusable', 'had', 'she', 'been', 'able', 'to', 'sleep', 'at', 'all', 'the', 'first', 'night', 'after', 'parting', 'from', 'Willoughby', '.', 'She', 'would', 'have', 'been', 'ashamed', 'to', 'look', 'her', 'family', 'in', 'the', 'face', 'the', 'next', 'morning', ',', 'had', 'she', 'not', 'risen', 'from', 'her', 'bed', 'in', 'more', 'need', 'of', 'repose', 'than', 'when', 'she', 'lay', 'down', 'in', 'it', '.', 'But', 'the', 'feelings', 'which', 'made', 'such', 'composure', 'a', 'disgrace', ',', 'left', 'her', 'in', 'no', 'danger', 'of', 'incurring', 'it', '.', 'She', 'was', 'awake', 'the', 'whole', 'night', ',', 'and', 'she', 'wept', 'the', 'greatest', 'part', 'of', 'it', '.', 'She', 'got', 'up', 'with', 'a', 'headache', ',', 'was', 'unable', 'to', 'talk', ',', 'and', 'unwilling', 'to', 'take', 'any', 'nourishment', ';', 'giving', 'pain', 'every', 'moment', 'to', 'her', 'mother', 'and', 'sisters', ',', 'and', 'forbidding', 'all', 'attempt', 'at', 'consolation', 'from', 'either', '.', 'Her', 'sensibility', 'was', 'potent', 'enough', '!', 'When', 'breakfast', 'was', 'over', 'she', 'walked', 'out', 'by', 'herself', ',', 'and', 'wandered', 'about', 'the', 'village', 'of', 'Allenham', ',', 'indulging', 'the', 'recollection', 'of', 'past', 'enjoyment', 'and', 'crying', 'over', 'the', 'present', 'reverse', 'for', 'the', 'chief', 'of', 'the', 'morning', '.', 'The', 'evening', 'passed', 'off', 'in', 'the', 'equal', 'indulgence', 'of', 'feeling', '.', 'She', 'played', 'over', 'every', 'favourite', 'song', 'that', 'she', 'had', 'been', 'used', 'to', 'play', 'to', 'Willoughby', ',', 'every', 'air', 'in', 'which', 'their', 'voices', 'had', 'been', 'oftenest', 'joined', ',', 'and', 'sat', 'at', 'the', 'instrument', 'gazing', 'on', 'every', 'line', 'of', 'music', 'that', 'he', 'had', 'written', 'out', 'for', 'her', ',', 'till', 'her', 'heart', 'was', 'so', 'heavy', 'that', 'no', 'farther', 'sadness', 'could', 'be', 'gained', ';', 'and', 'this', 'nourishment', 'of', 'grief', 'was', 'every', 'day', 'applied', '.', 'She', 'spent', 'whole', 'hours', 'at', 'the', 'pianoforte', 'alternately', 'singing', 'and', 'crying', ';', 'her', 'voice', 'often', 'totally', 'suspended', 'by', 'her', 'tears', '.', 'In', 'books', 'too', ',', 'as', 'well', 'as', 'in', 'music', ',', 'she', 'courted', 'the', 'misery', 'which', 'a', 'contrast', 'between', 'the', 'past', 'and', 'present', 'was', 'certain', 'of', 'giving', '.', 'She', 'read', 'nothing', 'but', 'what', 'they', 'had', 'been', 'used', 'to', 'read', 'together', '.', 'Such', 'violence', 'of', 'affliction', 'indeed', 'could', 'not', 'be', 'supported', 'for', 'ever', ';', 'it', 'sunk', 'within', 'a', 'few', 'days', 'into', 'a', 'calmer', 'melancholy', ';', 'but', 'these', 'employments', ',', 'to', 'which', 'she', 'daily', 'recurred', ',', 'her', 'solitary', 'walks', 'and', 'silent', 'meditations', ',', 'still', 'produced', 'occasional', 'effusions', 'of', 'sorrow', 'as', 'lively', 'as', 'ever', '.', 'No', 'letter', 'from', 'Willoughby', 'came', ';', 'and', 'none', 'seemed', 'expected', 'by', 'Marianne', '.', 'Her', 'mother', 'was', 'surprised', ',', 'and', 'Elinor', 'again', 'became', 'uneasy', '.', 'But', 'Mrs.', 'Dashwood', 'could', 'find', 'explanations', 'whenever', 'she', 'wanted', 'them', ',', 'which', 'at', 'least', 'satisfied', 'herself', '.', '“', 'Remember', ',', 'Elinor', ',', '”', 'said', 'she', ',', '“', 'how', 'very', 'often', 'Sir', 'John', 'fetches', 'our', 'letters', 'himself', 'from', 'the', 'post', ',', 'and', 'carries', 'them', 'to', 'it', '.', 'We', 'have', 'already', 'agreed', 'that', 'secrecy', 'may', 'be', 'necessary', ',', 'and', 'we', 'must', 'acknowledge', 'that', 'it', 'could', 'not', 'be', 'maintained', 'if', 'their', 'correspondence', 'were', 'to', 'pass', 'through', 'Sir', 'John', '’', 's', 'hands.', '”', 'Elinor', 'could', 'not', 'deny', 'the', 'truth', 'of', 'this', ',', 'and', 'she', 'tried', 'to', 'find', 'in', 'it', 'a', 'motive', 'sufficient', 'for', 'their', 'silence', '.', 'But', 'there', 'was', 'one', 'method', 'so', 'direct', ',', 'so', 'simple', ',', 'and', 'in', 'her', 'opinion', 'so', 'eligible', 'of', 'knowing', 'the', 'real', 'state', 'of', 'the', 'affair', ',', 'and', 'of', 'instantly', 'removing', 'all', 'mystery', ',', 'that', 'she', 'could', 'not', 'help', 'suggesting', 'it', 'to', 'her', 'mother', '.', '“', 'Why', 'do', 'you', 'not', 'ask', 'Marianne', 'at', 'once', ',', '”', 'said', 'she', ',', '“', 'whether', 'she', 'is', 'or', 'she', 'is', 'not', 'engaged', 'to', 'Willoughby', '?', 'From', 'you', ',', 'her', 'mother', ',', 'and', 'so', 'kind', ',', 'so', 'indulgent', 'a', 'mother', ',', 'the', 'question', 'could', 'not', 'give', 'offence', '.', 'It', 'would', 'be', 'the', 'natural', 'result', 'of', 'your', 'affection', 'for', 'her', '.', 'She', 'used', 'to', 'be', 'all', 'unreserve', ',', 'and', 'to', 'you', 'more', 'especially.', '”', '“', 'I', 'would', 'not', 'ask', 'such', 'a', 'question', 'for', 'the', 'world', '.', 'Supposing', 'it', 'possible', 'that', 'they', 'are', 'not', 'engaged', ',', 'what', 'distress', 'would', 'not', 'such', 'an', 'enquiry', 'inflict', '!', 'At', 'any', 'rate', 'it', 'would', 'be', 'most', 'ungenerous', '.', 'I', 'should', 'never', 'deserve', 'her', 'confidence', 'again', ',', 'after', 'forcing', 'from', 'her', 'a', 'confession', 'of', 'what', 'is', 'meant', 'at', 'present', 'to', 'be', 'unacknowledged', 'to', 'any', 'one', '.', 'I', 'know', 'Marianne', '’', 's', 'heart', ':', 'I', 'know', 'that', 'she', 'dearly', 'loves', 'me', ',', 'and', 'that', 'I', 'shall', 'not', 'be', 'the', 'last', 'to', 'whom', 'the', 'affair', 'is', 'made', 'known', ',', 'when', 'circumstances', 'make', 'the', 'revealment', 'of', 'it', 'eligible', '.', 'I', 'would', 'not', 'attempt', 'to', 'force', 'the', 'confidence', 'of', 'any', 'one', ';', 'of', 'a', 'child', 'much', 'less', ';', 'because', 'a', 'sense', 'of', 'duty', 'would', 'prevent', 'the', 'denial', 'which', 'her', 'wishes', 'might', 'direct.', '”', 'Elinor', 'thought', 'this', 'generosity', 'overstrained', ',', 'considering', 'her', 'sister', '’', 's', 'youth', ',', 'and', 'urged', 'the', 'matter', 'farther', ',', 'but', 'in', 'vain', ';', 'common', 'sense', ',', 'common', 'care', ',', 'common', 'prudence', ',', 'were', 'all', 'sunk', 'in', 'Mrs.', 'Dashwood', '’', 's', 'romantic', 'delicacy', '.', 'It', 'was', 'several', 'days', 'before', 'Willoughby', '’', 's', 'name', 'was', 'mentioned', 'before', 'Marianne', 'by', 'any', 'of', 'her', 'family', ';', 'Sir', 'John', 'and', 'Mrs.', 'Jennings', ',', 'indeed', ',', 'were', 'not', 'so', 'nice', ';', 'their', 'witticisms', 'added', 'pain', 'to', 'many', 'a', 'painful', 'hour', ';', '—but', 'one', 'evening', ',', 'Mrs.', 'Dashwood', ',', 'accidentally', 'taking', 'up', 'a', 'volume', 'of', 'Shakespeare', ',', 'exclaimed', ',', '“', 'We', 'have', 'never', 'finished', 'Hamlet', ',', 'Marianne', ';', 'our', 'dear', 'Willoughby', 'went', 'away', 'before', 'we', 'could', 'get', 'through', 'it', '.', 'We', 'will', 'put', 'it', 'by', ',', 'that', 'when', 'he', 'comes', 'again', '...', 'But', 'it', 'may', 'be', 'months', ',', 'perhaps', ',', 'before', '_that_', 'happens.', '”', '“', 'Months', '!', '”', 'cried', 'Marianne', ',', 'with', 'strong', 'surprise', '.', '“', 'No—nor', 'many', 'weeks.', '”', 'Mrs.', 'Dashwood', 'was', 'sorry', 'for', 'what', 'she', 'had', 'said', ';', 'but', 'it', 'gave', 'Elinor', 'pleasure', ',', 'as', 'it', 'produced', 'a', 'reply', 'from', 'Marianne', 'so', 'expressive', 'of', 'confidence', 'in', 'Willoughby', 'and', 'knowledge', 'of', 'his', 'intentions', '.', 'One', 'morning', ',', 'about', 'a', 'week', 'after', 'his', 'leaving', 'the', 'country', ',', 'Marianne', 'was', 'prevailed', 'on', 'to', 'join', 'her', 'sisters', 'in', 'their', 'usual', 'walk', ',', 'instead', 'of', 'wandering', 'away', 'by', 'herself', '.', 'Hitherto', 'she', 'had', 'carefully', 'avoided', 'every', 'companion', 'in', 'her', 'rambles', '.', 'If', 'her', 'sisters', 'intended', 'to', 'walk', 'on', 'the', 'downs', ',', 'she', 'directly', 'stole', 'away', 'towards', 'the', 'lanes', ';', 'if', 'they', 'talked', 'of', 'the', 'valley', ',', 'she', 'was', 'as', 'speedy', 'in', 'climbing', 'the', 'hills', ',', 'and', 'could', 'never', 'be', 'found', 'when', 'the', 'others', 'set', 'off', '.', 'But', 'at', 'length', 'she', 'was', 'secured', 'by', 'the', 'exertions', 'of', 'Elinor', ',', 'who', 'greatly', 'disapproved', 'such', 'continual', 'seclusion', '.', 'They', 'walked', 'along', 'the', 'road', 'through', 'the', 'valley', ',', 'and', 'chiefly', 'in', 'silence', ',', 'for', 'Marianne', '’', 's', '_mind_', 'could', 'not', 'be', 'controlled', ',', 'and', 'Elinor', ',', 'satisfied', 'with', 'gaining', 'one', 'point', ',', 'would', 'not', 'then', 'attempt', 'more', '.', 'Beyond', 'the', 'entrance', 'of', 'the', 'valley', ',', 'where', 'the', 'country', ',', 'though', 'still', 'rich', ',', 'was', 'less', 'wild', 'and', 'more', 'open', ',', 'a', 'long', 'stretch', 'of', 'the', 'road', 'which', 'they', 'had', 'travelled', 'on', 'first', 'coming', 'to', 'Barton', ',', 'lay', 'before', 'them', ';', 'and', 'on', 'reaching', 'that', 'point', ',', 'they', 'stopped', 'to', 'look', 'around', 'them', ',', 'and', 'examine', 'a', 'prospect', 'which', 'formed', 'the', 'distance', 'of', 'their', 'view', 'from', 'the', 'cottage', ',', 'from', 'a', 'spot', 'which', 'they', 'had', 'never', 'happened', 'to', 'reach', 'in', 'any', 'of', 'their', 'walks', 'before', '.', 'Amongst', 'the', 'objects', 'in', 'the', 'scene', ',', 'they', 'soon', 'discovered', 'an', 'animated', 'one', ';', 'it', 'was', 'a', 'man', 'on', 'horseback', 'riding', 'towards', 'them', '.', 'In', 'a', 'few', 'minutes', 'they', 'could', 'distinguish', 'him', 'to', 'be', 'a', 'gentleman', ';', 'and', 'in', 'a', 'moment', 'afterwards', 'Marianne', 'rapturously', 'exclaimed', ',', '“', 'It', 'is', 'he', ';', 'it', 'is', 'indeed', ';', '—I', 'know', 'it', 'is', '!', '”', '—and', 'was', 'hastening', 'to', 'meet', 'him', ',', 'when', 'Elinor', 'cried', 'out', ',', '“', 'Indeed', ',', 'Marianne', ',', 'I', 'think', 'you', 'are', 'mistaken', '.', 'It', 'is', 'not', 'Willoughby', '.', 'The', 'person', 'is', 'not', 'tall', 'enough', 'for', 'him', ',', 'and', 'has', 'not', 'his', 'air.', '”', '“', 'He', 'has', ',', 'he', 'has', ',', '”', 'cried', 'Marianne', ',', '“', 'I', 'am', 'sure', 'he', 'has', '.', 'His', 'air', ',', 'his', 'coat', ',', 'his', 'horse', '.', 'I', 'knew', 'how', 'soon', 'he', 'would', 'come.', '”', 'She', 'walked', 'eagerly', 'on', 'as', 'she', 'spoke', ';', 'and', 'Elinor', ',', 'to', 'screen', 'Marianne', 'from', 'particularity', ',', 'as', 'she', 'felt', 'almost', 'certain', 'of', 'its', 'not', 'being', 'Willoughby', ',', 'quickened', 'her', 'pace', 'and', 'kept', 'up', 'with', 'her', '.', 'They', 'were', 'soon', 'within', 'thirty', 'yards', 'of', 'the', 'gentleman', '.', 'Marianne', 'looked', 'again', ';', 'her', 'heart', 'sunk', 'within', 'her', ';', 'and', 'abruptly', 'turning', 'round', ',', 'she', 'was', 'hurrying', 'back', ',', 'when', 'the', 'voices', 'of', 'both', 'her', 'sisters', 'were', 'raised', 'to', 'detain', 'her', ';', 'a', 'third', ',', 'almost', 'as', 'well', 'known', 'as', 'Willoughby', '’', 's', ',', 'joined', 'them', 'in', 'begging', 'her', 'to', 'stop', ',', 'and', 'she', 'turned', 'round', 'with', 'surprise', 'to', 'see', 'and', 'welcome', 'Edward', 'Ferrars', '.', 'He', 'was', 'the', 'only', 'person', 'in', 'the', 'world', 'who', 'could', 'at', 'that', 'moment', 'be', 'forgiven', 'for', 'not', 'being', 'Willoughby', ';', 'the', 'only', 'one', 'who', 'could', 'have', 'gained', 'a', 'smile', 'from', 'her', ';', 'but', 'she', 'dispersed', 'her', 'tears', 'to', 'smile', 'on', '_him_', ',', 'and', 'in', 'her', 'sister', '’', 's', 'happiness', 'forgot', 'for', 'a', 'time', 'her', 'own', 'disappointment', '.', 'He', 'dismounted', ',', 'and', 'giving', 'his', 'horse', 'to', 'his', 'servant', ',', 'walked', 'back', 'with', 'them', 'to', 'Barton', ',', 'whither', 'he', 'was', 'purposely', 'coming', 'to', 'visit', 'them', '.', 'He', 'was', 'welcomed', 'by', 'them', 'all', 'with', 'great', 'cordiality', ',', 'but', 'especially', 'by', 'Marianne', ',', 'who', 'showed', 'more', 'warmth', 'of', 'regard', 'in', 'her', 'reception', 'of', 'him', 'than', 'even', 'Elinor', 'herself', '.', 'To', 'Marianne', ',', 'indeed', ',', 'the', 'meeting', 'between', 'Edward', 'and', 'her', 'sister', 'was', 'but', 'a', 'continuation', 'of', 'that', 'unaccountable', 'coldness', 'which', 'she', 'had', 'often', 'observed', 'at', 'Norland', 'in', 'their', 'mutual', 'behaviour', '.', 'On', 'Edward', '’', 's', 'side', ',', 'more', 'particularly', ',', 'there', 'was', 'a', 'deficiency', 'of', 'all', 'that', 'a', 'lover', 'ought', 'to', 'look', 'and', 'say', 'on', 'such', 'an', 'occasion', '.', 'He', 'was', 'confused', ',', 'seemed', 'scarcely', 'sensible', 'of', 'pleasure', 'in', 'seeing', 'them', ',', 'looked', 'neither', 'rapturous', 'nor', 'gay', ',', 'said', 'little', 'but', 'what', 'was', 'forced', 'from', 'him', 'by', 'questions', ',', 'and', 'distinguished', 'Elinor', 'by', 'no', 'mark', 'of', 'affection', '.', 'Marianne', 'saw', 'and', 'listened', 'with', 'increasing', 'surprise', '.', 'She', 'began', 'almost', 'to', 'feel', 'a', 'dislike', 'of', 'Edward', ';', 'and', 'it', 'ended', ',', 'as', 'every', 'feeling', 'must', 'end', 'with', 'her', ',', 'by', 'carrying', 'back', 'her', 'thoughts', 'to', 'Willoughby', ',', 'whose', 'manners', 'formed', 'a', 'contrast', 'sufficiently', 'striking', 'to', 'those', 'of', 'his', 'brother', 'elect', '.', 'After', 'a', 'short', 'silence', 'which', 'succeeded', 'the', 'first', 'surprise', 'and', 'enquiries', 'of', 'meeting', ',', 'Marianne', 'asked', 'Edward', 'if', 'he', 'came', 'directly', 'from', 'London', '.', 'No', ',', 'he', 'had', 'been', 'in', 'Devonshire', 'a', 'fortnight', '.', '“', 'A', 'fortnight', '!', '”', 'she', 'repeated', ',', 'surprised', 'at', 'his', 'being', 'so', 'long', 'in', 'the', 'same', 'county', 'with', 'Elinor', 'without', 'seeing', 'her', 'before', '.', 'He', 'looked', 'rather', 'distressed', 'as', 'he', 'added', ',', 'that', 'he', 'had', 'been', 'staying', 'with', 'some', 'friends', 'near', 'Plymouth', '.', '“', 'Have', 'you', 'been', 'lately', 'in', 'Sussex', '?', '”', 'said', 'Elinor', '.', '“', 'I', 'was', 'at', 'Norland', 'about', 'a', 'month', 'ago.', '”', '“', 'And', 'how', 'does', 'dear', ',', 'dear', 'Norland', 'look', '?', '”', 'cried', 'Marianne', '.', '“', 'Dear', ',', 'dear', 'Norland', ',', '”', 'said', 'Elinor', ',', '“', 'probably', 'looks', 'much', 'as', 'it', 'always', 'does', 'at', 'this', 'time', 'of', 'the', 'year', '.', 'The', 'woods', 'and', 'walks', 'thickly', 'covered', 'with', 'dead', 'leaves.', '”', '“', 'Oh', ',', '”', 'cried', 'Marianne', ',', '“', 'with', 'what', 'transporting', 'sensation', 'have', 'I', 'formerly', 'seen', 'them', 'fall', '!', 'How', 'have', 'I', 'delighted', ',', 'as', 'I', 'walked', ',', 'to', 'see', 'them', 'driven', 'in', 'showers', 'about', 'me', 'by', 'the', 'wind', '!', 'What', 'feelings', 'have', 'they', ',', 'the', 'season', ',', 'the', 'air', 'altogether', 'inspired', '!', 'Now', 'there', 'is', 'no', 'one', 'to', 'regard', 'them', '.', 'They', 'are', 'seen', 'only', 'as', 'a', 'nuisance', ',', 'swept', 'hastily', 'off', ',', 'and', 'driven', 'as', 'much', 'as', 'possible', 'from', 'the', 'sight.', '”', '“', 'It', 'is', 'not', 'every', 'one', ',', '”', 'said', 'Elinor', ',', '“', 'who', 'has', 'your', 'passion', 'for', 'dead', 'leaves.', '”', '“', 'No', ';', 'my', 'feelings', 'are', 'not', 'often', 'shared', ',', 'not', 'often', 'understood', '.', 'But', '_sometimes_', 'they', 'are.', '”', '—As', 'she', 'said', 'this', ',', 'she', 'sunk', 'into', 'a', 'reverie', 'for', 'a', 'few', 'moments', ';', '—but', 'rousing', 'herself', 'again', ',', '“', 'Now', ',', 'Edward', ',', '”', 'said', 'she', ',', 'calling', 'his', 'attention', 'to', 'the', 'prospect', ',', '“', 'here', 'is', 'Barton', 'valley', '.', 'Look', 'up', 'to', 'it', ',', 'and', 'be', 'tranquil', 'if', 'you', 'can', '.', 'Look', 'at', 'those', 'hills', '!', 'Did', 'you', 'ever', 'see', 'their', 'equals', '?', 'To', 'the', 'left', 'is', 'Barton', 'park', ',', 'amongst', 'those', 'woods', 'and', 'plantations', '.', 'You', 'may', 'see', 'the', 'end', 'of', 'the', 'house', '.', 'And', 'there', ',', 'beneath', 'that', 'farthest', 'hill', ',', 'which', 'rises', 'with', 'such', 'grandeur', ',', 'is', 'our', 'cottage.', '”', '“', 'It', 'is', 'a', 'beautiful', 'country', ',', '”', 'he', 'replied', ';', '“', 'but', 'these', 'bottoms', 'must', 'be', 'dirty', 'in', 'winter.', '”', '“', 'How', 'can', 'you', 'think', 'of', 'dirt', ',', 'with', 'such', 'objects', 'before', 'you', '?', '”', '“', 'Because', ',', '”', 'replied', 'he', ',', 'smiling', ',', '“', 'among', 'the', 'rest', 'of', 'the', 'objects', 'before', 'me', ',', 'I', 'see', 'a', 'very', 'dirty', 'lane.', '”', '“', 'How', 'strange', '!', '”', 'said', 'Marianne', 'to', 'herself', 'as', 'she', 'walked', 'on', '.', '“', 'Have', 'you', 'an', 'agreeable', 'neighbourhood', 'here', '?', 'Are', 'the', 'Middletons', 'pleasant', 'people', '?', '”', '“', 'No', ',', 'not', 'all', ',', '”', 'answered', 'Marianne', ';', '“', 'we', 'could', 'not', 'be', 'more', 'unfortunately', 'situated.', '”', '“', 'Marianne', ',', '”', 'cried', 'her', 'sister', ',', '“', 'how', 'can', 'you', 'say', 'so', '?', 'How', 'can', 'you', 'be', 'so', 'unjust', '?', 'They', 'are', 'a', 'very', 'respectable', 'family', ',', 'Mr.', 'Ferrars', ';', 'and', 'towards', 'us', 'have', 'behaved', 'in', 'the', 'friendliest', 'manner', '.', 'Have', 'you', 'forgot', ',', 'Marianne', ',', 'how', 'many', 'pleasant', 'days', 'we', 'have', 'owed', 'to', 'them', '?', '”', '“', 'No', ',', '”', 'said', 'Marianne', ',', 'in', 'a', 'low', 'voice', ',', '“', 'nor', 'how', 'many', 'painful', 'moments.', '”', 'Elinor', 'took', 'no', 'notice', 'of', 'this', ';', 'and', 'directing', 'her', 'attention', 'to', 'their', 'visitor', ',', 'endeavoured', 'to', 'support', 'something', 'like', 'discourse', 'with', 'him', ',', 'by', 'talking', 'of', 'their', 'present', 'residence', ',', 'its', 'conveniences', ',', '&', 'c.', 'extorting', 'from', 'him', 'occasional', 'questions', 'and', 'remarks', '.', 'His', 'coldness', 'and', 'reserve', 'mortified', 'her', 'severely', ';', 'she', 'was', 'vexed', 'and', 'half', 'angry', ';', 'but', 'resolving', 'to', 'regulate', 'her', 'behaviour', 'to', 'him', 'by', 'the', 'past', 'rather', 'than', 'the', 'present', ',', 'she', 'avoided', 'every', 'appearance', 'of', 'resentment', 'or', 'displeasure', ',', 'and', 'treated', 'him', 'as', 'she', 'thought', 'he', 'ought', 'to', 'be', 'treated', 'from', 'the', 'family', 'connection', '.', 'CHAPTER', 'XVII', '.', 'Mrs.', 'Dashwood', 'was', 'surprised', 'only', 'for', 'a', 'moment', 'at', 'seeing', 'him', ';', 'for', 'his', 'coming', 'to', 'Barton', 'was', ',', 'in', 'her', 'opinion', ',', 'of', 'all', 'things', 'the', 'most', 'natural', '.', 'Her', 'joy', 'and', 'expression', 'of', 'regard', 'long', 'outlived', 'her', 'wonder', '.', 'He', 'received', 'the', 'kindest', 'welcome', 'from', 'her', ';', 'and', 'shyness', ',', 'coldness', ',', 'reserve', 'could', 'not', 'stand', 'against', 'such', 'a', 'reception', '.', 'They', 'had', 'begun', 'to', 'fail', 'him', 'before', 'he', 'entered', 'the', 'house', ',', 'and', 'they', 'were', 'quite', 'overcome', 'by', 'the', 'captivating', 'manners', 'of', 'Mrs.', 'Dashwood', '.', 'Indeed', 'a', 'man', 'could', 'not', 'very', 'well', 'be', 'in', 'love', 'with', 'either', 'of', 'her', 'daughters', ',', 'without', 'extending', 'the', 'passion', 'to', 'her', ';', 'and', 'Elinor', 'had', 'the', 'satisfaction', 'of', 'seeing', 'him', 'soon', 'become', 'more', 'like', 'himself', '.', 'His', 'affections', 'seemed', 'to', 'reanimate', 'towards', 'them', 'all', ',', 'and', 'his', 'interest', 'in', 'their', 'welfare', 'again', 'became', 'perceptible', '.', 'He', 'was', 'not', 'in', 'spirits', ',', 'however', ';', 'he', 'praised', 'their', 'house', ',', 'admired', 'its', 'prospect', ',', 'was', 'attentive', ',', 'and', 'kind', ';', 'but', 'still', 'he', 'was', 'not', 'in', 'spirits', '.', 'The', 'whole', 'family', 'perceived', 'it', ',', 'and', 'Mrs.', 'Dashwood', ',', 'attributing', 'it', 'to', 'some', 'want', 'of', 'liberality', 'in', 'his', 'mother', ',', 'sat', 'down', 'to', 'table', 'indignant', 'against', 'all', 'selfish', 'parents', '.', '“', 'What', 'are', 'Mrs.', 'Ferrars', '’', 's', 'views', 'for', 'you', 'at', 'present', ',', 'Edward', '?', '”', 'said', 'she', ',', 'when', 'dinner', 'was', 'over', 'and', 'they', 'had', 'drawn', 'round', 'the', 'fire', ';', '“', 'are', 'you', 'still', 'to', 'be', 'a', 'great', 'orator', 'in', 'spite', 'of', 'yourself', '?', '”', '“', 'No', '.', 'I', 'hope', 'my', 'mother', 'is', 'now', 'convinced', 'that', 'I', 'have', 'no', 'more', 'talents', 'than', 'inclination', 'for', 'a', 'public', 'life', '!', '”', '“', 'But', 'how', 'is', 'your', 'fame', 'to', 'be', 'established', '?', 'for', 'famous', 'you', 'must', 'be', 'to', 'satisfy', 'all', 'your', 'family', ';', 'and', 'with', 'no', 'inclination', 'for', 'expense', ',', 'no', 'affection', 'for', 'strangers', ',', 'no', 'profession', ',', 'and', 'no', 'assurance', ',', 'you', 'may', 'find', 'it', 'a', 'difficult', 'matter.', '”', '“', 'I', 'shall', 'not', 'attempt', 'it', '.', 'I', 'have', 'no', 'wish', 'to', 'be', 'distinguished', ';', 'and', 'have', 'every', 'reason', 'to', 'hope', 'I', 'never', 'shall', '.', 'Thank', 'Heaven', '!', 'I', 'can', 'not', 'be', 'forced', 'into', 'genius', 'and', 'eloquence.', '”', '“', 'You', 'have', 'no', 'ambition', ',', 'I', 'well', 'know', '.', 'Your', 'wishes', 'are', 'all', 'moderate.', '”', '“', 'As', 'moderate', 'as', 'those', 'of', 'the', 'rest', 'of', 'the', 'world', ',', 'I', 'believe', '.', 'I', 'wish', 'as', 'well', 'as', 'every', 'body', 'else', 'to', 'be', 'perfectly', 'happy', ';', 'but', ',', 'like', 'every', 'body', 'else', 'it', 'must', 'be', 'in', 'my', 'own', 'way', '.', 'Greatness', 'will', 'not', 'make', 'me', 'so.', '”', '“', 'Strange', 'that', 'it', 'would', '!', '”', 'cried', 'Marianne', '.', '“', 'What', 'have', 'wealth', 'or', 'grandeur', 'to', 'do', 'with', 'happiness', '?', '”', '“', 'Grandeur', 'has', 'but', 'little', ',', '”', 'said', 'Elinor', ',', '“', 'but', 'wealth', 'has', 'much', 'to', 'do', 'with', 'it.', '”', '“', 'Elinor', ',', 'for', 'shame', '!', '”', 'said', 'Marianne', ',', '“', 'money', 'can', 'only', 'give', 'happiness', 'where', 'there', 'is', 'nothing', 'else', 'to', 'give', 'it', '.', 'Beyond', 'a', 'competence', ',', 'it', 'can', 'afford', 'no', 'real', 'satisfaction', ',', 'as', 'far', 'as', 'mere', 'self', 'is', 'concerned.', '”', '“', 'Perhaps', ',', '”', 'said', 'Elinor', ',', 'smiling', ',', '“', 'we', 'may', 'come', 'to', 'the', 'same', 'point', '.', '_Your_', 'competence', 'and', '_my_', 'wealth', 'are', 'very', 'much', 'alike', ',', 'I', 'dare', 'say', ';', 'and', 'without', 'them', ',', 'as', 'the', 'world', 'goes', 'now', ',', 'we', 'shall', 'both', 'agree', 'that', 'every', 'kind', 'of', 'external', 'comfort', 'must', 'be', 'wanting', '.', 'Your', 'ideas', 'are', 'only', 'more', 'noble', 'than', 'mine', '.', 'Come', ',', 'what', 'is', 'your', 'competence', '?', '”', '“', 'About', 'eighteen', 'hundred', 'or', 'two', 'thousand', 'a', 'year', ';', 'not', 'more', 'than', '_that_.', '”', 'Elinor', 'laughed', '.', '“', '_two_', 'thousand', 'a', 'year', '!', '_one_', 'is', 'my', 'wealth', '!', 'I', 'guessed', 'how', 'it', 'would', 'end.', '”', '“', 'And', 'yet', 'two', 'thousand', 'a-year', 'is', 'a', 'very', 'moderate', 'income', ',', '”', 'said', 'Marianne', '.', '“', 'A', 'family', 'can', 'not', 'well', 'be', 'maintained', 'on', 'a', 'smaller', '.', 'I', 'am', 'sure', 'I', 'am', 'not', 'extravagant', 'in', 'my', 'demands', '.', 'A', 'proper', 'establishment', 'of', 'servants', ',', 'a', 'carriage', ',', 'perhaps', 'two', ',', 'and', 'hunters', ',', 'can', 'not', 'be', 'supported', 'on', 'less.', '”', 'Elinor', 'smiled', 'again', ',', 'to', 'hear', 'her', 'sister', 'describing', 'so', 'accurately', 'their', 'future', 'expenses', 'at', 'Combe', 'Magna', '.', '“', 'Hunters', '!', '”', 'repeated', 'Edward—', '“', 'but', 'why', 'must', 'you', 'have', 'hunters', '?', 'Every', 'body', 'does', 'not', 'hunt.', '”', 'Marianne', 'coloured', 'as', 'she', 'replied', ',', '“', 'But', 'most', 'people', 'do.', '”', '“', 'I', 'wish', ',', '”', 'said', 'Margaret', ',', 'striking', 'out', 'a', 'novel', 'thought', ',', '“', 'that', 'somebody', 'would', 'give', 'us', 'all', 'a', 'large', 'fortune', 'apiece', '!', '”', '“', 'Oh', 'that', 'they', 'would', '!', '”', 'cried', 'Marianne', ',', 'her', 'eyes', 'sparkling', 'with', 'animation', ',', 'and', 'her', 'cheeks', 'glowing', 'with', 'the', 'delight', 'of', 'such', 'imaginary', 'happiness', '.', '“', 'We', 'are', 'all', 'unanimous', 'in', 'that', 'wish', ',', 'I', 'suppose', ',', '”', 'said', 'Elinor', ',', '“', 'in', 'spite', 'of', 'the', 'insufficiency', 'of', 'wealth.', '”', '“', 'Oh', 'dear', '!', '”', 'cried', 'Margaret', ',', '“', 'how', 'happy', 'I', 'should', 'be', '!', 'I', 'wonder', 'what', 'I', 'should', 'do', 'with', 'it', '!', '”', 'Marianne', 'looked', 'as', 'if', 'she', 'had', 'no', 'doubt', 'on', 'that', 'point', '.', '“', 'I', 'should', 'be', 'puzzled', 'to', 'spend', 'so', 'large', 'a', 'fortune', 'myself', ',', '”', 'said', 'Mrs.', 'Dashwood', ',', '“', 'if', 'my', 'children', 'were', 'all', 'to', 'be', 'rich', 'without', 'my', 'help.', '”', '“', 'You', 'must', 'begin', 'your', 'improvements', 'on', 'this', 'house', ',', '”', 'observed', 'Elinor', ',', '“', 'and', 'your', 'difficulties', 'will', 'soon', 'vanish.', '”', '“', 'What', 'magnificent', 'orders', 'would', 'travel', 'from', 'this', 'family', 'to', 'London', ',', '”', 'said', 'Edward', ',', '“', 'in', 'such', 'an', 'event', '!', 'What', 'a', 'happy', 'day', 'for', 'booksellers', ',', 'music-sellers', ',', 'and', 'print-shops', '!', 'You', ',', 'Miss', 'Dashwood', ',', 'would', 'give', 'a', 'general', 'commission', 'for', 'every', 'new', 'print', 'of', 'merit', 'to', 'be', 'sent', 'you—and', 'as', 'for', 'Marianne', ',', 'I', 'know', 'her', 'greatness', 'of', 'soul', ',', 'there', 'would', 'not', 'be', 'music', 'enough', 'in', 'London', 'to', 'content', 'her', '.', 'And', 'books', '!', '—Thomson', ',', 'Cowper', ',', 'Scott—she', 'would', 'buy', 'them', 'all', 'over', 'and', 'over', 'again', ':', 'she', 'would', 'buy', 'up', 'every', 'copy', ',', 'I', 'believe', ',', 'to', 'prevent', 'their', 'falling', 'into', 'unworthy', 'hands', ';', 'and', 'she', 'would', 'have', 'every', 'book', 'that', 'tells', 'her', 'how', 'to', 'admire', 'an', 'old', 'twisted', 'tree', '.', 'Should', 'not', 'you', ',', 'Marianne', '?', 'Forgive', 'me', ',', 'if', 'I', 'am', 'very', 'saucy', '.', 'But', 'I', 'was', 'willing', 'to', 'show', 'you', 'that', 'I', 'had', 'not', 'forgot', 'our', 'old', 'disputes.', '”', '“', 'I', 'love', 'to', 'be', 'reminded', 'of', 'the', 'past', ',', 'Edward—whether', 'it', 'be', 'melancholy', 'or', 'gay', ',', 'I', 'love', 'to', 'recall', 'it—and', 'you', 'will', 'never', 'offend', 'me', 'by', 'talking', 'of', 'former', 'times', '.', 'You', 'are', 'very', 'right', 'in', 'supposing', 'how', 'my', 'money', 'would', 'be', 'spent—some', 'of', 'it', ',', 'at', 'least—my', 'loose', 'cash', 'would', 'certainly', 'be', 'employed', 'in', 'improving', 'my', 'collection', 'of', 'music', 'and', 'books.', '”', '“', 'And', 'the', 'bulk', 'of', 'your', 'fortune', 'would', 'be', 'laid', 'out', 'in', 'annuities', 'on', 'the', 'authors', 'or', 'their', 'heirs.', '”', '“', 'No', ',', 'Edward', ',', 'I', 'should', 'have', 'something', 'else', 'to', 'do', 'with', 'it.', '”', '“', 'Perhaps', ',', 'then', ',', 'you', 'would', 'bestow', 'it', 'as', 'a', 'reward', 'on', 'that', 'person', 'who', 'wrote', 'the', 'ablest', 'defence', 'of', 'your', 'favourite', 'maxim', ',', 'that', 'no', 'one', 'can', 'ever', 'be', 'in', 'love', 'more', 'than', 'once', 'in', 'their', 'life—your', 'opinion', 'on', 'that', 'point', 'is', 'unchanged', ',', 'I', 'presume', '?', '”', '“', 'Undoubtedly', '.', 'At', 'my', 'time', 'of', 'life', 'opinions', 'are', 'tolerably', 'fixed', '.', 'It', 'is', 'not', 'likely', 'that', 'I', 'should', 'now', 'see', 'or', 'hear', 'any', 'thing', 'to', 'change', 'them.', '”', '“', 'Marianne', 'is', 'as', 'steadfast', 'as', 'ever', ',', 'you', 'see', ',', '”', 'said', 'Elinor', ',', '“', 'she', 'is', 'not', 'at', 'all', 'altered.', '”', '“', 'She', 'is', 'only', 'grown', 'a', 'little', 'more', 'grave', 'than', 'she', 'was.', '”', '“', 'Nay', ',', 'Edward', ',', '”', 'said', 'Marianne', ',', '“', '_you_', 'need', 'not', 'reproach', 'me', '.', 'You', 'are', 'not', 'very', 'gay', 'yourself.', '”', '“', 'Why', 'should', 'you', 'think', 'so', '!', '”', 'replied', 'he', ',', 'with', 'a', 'sigh', '.', '“', 'But', 'gaiety', 'never', 'was', 'a', 'part', 'of', '_my_', 'character.', '”', '“', 'Nor', 'do', 'I', 'think', 'it', 'a', 'part', 'of', 'Marianne', '’', 's', ',', '”', 'said', 'Elinor', ';', '“', 'I', 'should', 'hardly', 'call', 'her', 'a', 'lively', 'girl—she', 'is', 'very', 'earnest', ',', 'very', 'eager', 'in', 'all', 'she', 'does—sometimes', 'talks', 'a', 'great', 'deal', 'and', 'always', 'with', 'animation—but', 'she', 'is', 'not', 'often', 'really', 'merry.', '”', '“', 'I', 'believe', 'you', 'are', 'right', ',', '”', 'he', 'replied', ',', '“', 'and', 'yet', 'I', 'have', 'always', 'set', 'her', 'down', 'as', 'a', 'lively', 'girl.', '”', '“', 'I', 'have', 'frequently', 'detected', 'myself', 'in', 'such', 'kind', 'of', 'mistakes', ',', '”', 'said', 'Elinor', ',', '“', 'in', 'a', 'total', 'misapprehension', 'of', 'character', 'in', 'some', 'point', 'or', 'other', ':', 'fancying', 'people', 'so', 'much', 'more', 'gay', 'or', 'grave', ',', 'or', 'ingenious', 'or', 'stupid', 'than', 'they', 'really', 'are', ',', 'and', 'I', 'can', 'hardly', 'tell', 'why', 'or', 'in', 'what', 'the', 'deception', 'originated', '.', 'Sometimes', 'one', 'is', 'guided', 'by', 'what', 'they', 'say', 'of', 'themselves', ',', 'and', 'very', 'frequently', 'by', 'what', 'other', 'people', 'say', 'of', 'them', ',', 'without', 'giving', 'oneself', 'time', 'to', 'deliberate', 'and', 'judge.', '”', '“', 'But', 'I', 'thought', 'it', 'was', 'right', ',', 'Elinor', ',', '”', 'said', 'Marianne', ',', '“', 'to', 'be', 'guided', 'wholly', 'by', 'the', 'opinion', 'of', 'other', 'people', '.', 'I', 'thought', 'our', 'judgments', 'were', 'given', 'us', 'merely', 'to', 'be', 'subservient', 'to', 'those', 'of', 'neighbours', '.', 'This', 'has', 'always', 'been', 'your', 'doctrine', ',', 'I', 'am', 'sure.', '”', '“', 'No', ',', 'Marianne', ',', 'never', '.', 'My', 'doctrine', 'has', 'never', 'aimed', 'at', 'the', 'subjection', 'of', 'the', 'understanding', '.', 'All', 'I', 'have', 'ever', 'attempted', 'to', 'influence', 'has', 'been', 'the', 'behaviour', '.', 'You', 'must', 'not', 'confound', 'my', 'meaning', '.', 'I', 'am', 'guilty', ',', 'I', 'confess', ',', 'of', 'having', 'often', 'wished', 'you', 'to', 'treat', 'our', 'acquaintance', 'in', 'general', 'with', 'greater', 'attention', ';', 'but', 'when', 'have', 'I', 'advised', 'you', 'to', 'adopt', 'their', 'sentiments', 'or', 'to', 'conform', 'to', 'their', 'judgment', 'in', 'serious', 'matters', '?', '”', '“', 'You', 'have', 'not', 'been', 'able', 'to', 'bring', 'your', 'sister', 'over', 'to', 'your', 'plan', 'of', 'general', 'civility', ',', '”', 'said', 'Edward', 'to', 'Elinor', ',', '“', 'Do', 'you', 'gain', 'no', 'ground', '?', '”', '“', 'Quite', 'the', 'contrary', ',', '”', 'replied', 'Elinor', ',', 'looking', 'expressively', 'at', 'Marianne', '.', '“', 'My', 'judgment', ',', '”', 'he', 'returned', ',', '“', 'is', 'all', 'on', 'your', 'side', 'of', 'the', 'question', ';', 'but', 'I', 'am', 'afraid', 'my', 'practice', 'is', 'much', 'more', 'on', 'your', 'sister', '’', 's', '.', 'I', 'never', 'wish', 'to', 'offend', ',', 'but', 'I', 'am', 'so', 'foolishly', 'shy', ',', 'that', 'I', 'often', 'seem', 'negligent', ',', 'when', 'I', 'am', 'only', 'kept', 'back', 'by', 'my', 'natural', 'awkwardness', '.', 'I', 'have', 'frequently', 'thought', 'that', 'I', 'must', 'have', 'been', 'intended', 'by', 'nature', 'to', 'be', 'fond', 'of', 'low', 'company', ',', 'I', 'am', 'so', 'little', 'at', 'my', 'ease', 'among', 'strangers', 'of', 'gentility', '!', '”', '“', 'Marianne', 'has', 'not', 'shyness', 'to', 'excuse', 'any', 'inattention', 'of', 'hers', ',', '”', 'said', 'Elinor', '.', '“', 'She', 'knows', 'her', 'own', 'worth', 'too', 'well', 'for', 'false', 'shame', ',', '”', 'replied', 'Edward', '.', '“', 'Shyness', 'is', 'only', 'the', 'effect', 'of', 'a', 'sense', 'of', 'inferiority', 'in', 'some', 'way', 'or', 'other', '.', 'If', 'I', 'could', 'persuade', 'myself', 'that', 'my', 'manners', 'were', 'perfectly', 'easy', 'and', 'graceful', ',', 'I', 'should', 'not', 'be', 'shy.', '”', '“', 'But', 'you', 'would', 'still', 'be', 'reserved', ',', '”', 'said', 'Marianne', ',', '“', 'and', 'that', 'is', 'worse.', '”', 'Edward', 'started—', '“', 'Reserved', '!', 'Am', 'I', 'reserved', ',', 'Marianne', '?', '”', '“', 'Yes', ',', 'very.', '”', '“', 'I', 'do', 'not', 'understand', 'you', ',', '”', 'replied', 'he', ',', 'colouring', '.', '“', 'Reserved', '!', '—how', ',', 'in', 'what', 'manner', '?', 'What', 'am', 'I', 'to', 'tell', 'you', '?', 'What', 'can', 'you', 'suppose', '?', '”', 'Elinor', 'looked', 'surprised', 'at', 'his', 'emotion', ';', 'but', 'trying', 'to', 'laugh', 'off', 'the', 'subject', ',', 'she', 'said', 'to', 'him', ',', '“', 'Do', 'not', 'you', 'know', 'my', 'sister', 'well', 'enough', 'to', 'understand', 'what', 'she', 'means', '?', 'Do', 'not', 'you', 'know', 'she', 'calls', 'every', 'one', 'reserved', 'who', 'does', 'not', 'talk', 'as', 'fast', ',', 'and', 'admire', 'what', 'she', 'admires', 'as', 'rapturously', 'as', 'herself', '?', '”', 'Edward', 'made', 'no', 'answer', '.', 'His', 'gravity', 'and', 'thoughtfulness', 'returned', 'on', 'him', 'in', 'their', 'fullest', 'extent—and', 'he', 'sat', 'for', 'some', 'time', 'silent', 'and', 'dull', '.', 'CHAPTER', 'XVIII', '.', 'Elinor', 'saw', ',', 'with', 'great', 'uneasiness', 'the', 'low', 'spirits', 'of', 'her', 'friend', '.', 'His', 'visit', 'afforded', 'her', 'but', 'a', 'very', 'partial', 'satisfaction', ',', 'while', 'his', 'own', 'enjoyment', 'in', 'it', 'appeared', 'so', 'imperfect', '.', 'It', 'was', 'evident', 'that', 'he', 'was', 'unhappy', ';', 'she', 'wished', 'it', 'were', 'equally', 'evident', 'that', 'he', 'still', 'distinguished', 'her', 'by', 'the', 'same', 'affection', 'which', 'once', 'she', 'had', 'felt', 'no', 'doubt', 'of', 'inspiring', ';', 'but', 'hitherto', 'the', 'continuance', 'of', 'his', 'preference', 'seemed', 'very', 'uncertain', ';', 'and', 'the', 'reservedness', 'of', 'his', 'manner', 'towards', 'her', 'contradicted', 'one', 'moment', 'what', 'a', 'more', 'animated', 'look', 'had', 'intimated', 'the', 'preceding', 'one', '.', 'He', 'joined', 'her', 'and', 'Marianne', 'in', 'the', 'breakfast-room', 'the', 'next', 'morning', 'before', 'the', 'others', 'were', 'down', ';', 'and', 'Marianne', ',', 'who', 'was', 'always', 'eager', 'to', 'promote', 'their', 'happiness', 'as', 'far', 'as', 'she', 'could', ',', 'soon', 'left', 'them', 'to', 'themselves', '.', 'But', 'before', 'she', 'was', 'half', 'way', 'upstairs', 'she', 'heard', 'the', 'parlour', 'door', 'open', ',', 'and', ',', 'turning', 'round', ',', 'was', 'astonished', 'to', 'see', 'Edward', 'himself', 'come', 'out', '.', '“', 'I', 'am', 'going', 'into', 'the', 'village', 'to', 'see', 'my', 'horses', ',', '”', 'said', 'he', ',', '“', 'as', 'you', 'are', 'not', 'yet', 'ready', 'for', 'breakfast', ';', 'I', 'shall', 'be', 'back', 'again', 'presently.', '”', 'Edward', 'returned', 'to', 'them', 'with', 'fresh', 'admiration', 'of', 'the', 'surrounding', 'country', ';', 'in', 'his', 'walk', 'to', 'the', 'village', ',', 'he', 'had', 'seen', 'many', 'parts', 'of', 'the', 'valley', 'to', 'advantage', ';', 'and', 'the', 'village', 'itself', ',', 'in', 'a', 'much', 'higher', 'situation', 'than', 'the', 'cottage', ',', 'afforded', 'a', 'general', 'view', 'of', 'the', 'whole', ',', 'which', 'had', 'exceedingly', 'pleased', 'him', '.', 'This', 'was', 'a', 'subject', 'which', 'ensured', 'Marianne', '’', 's', 'attention', ',', 'and', 'she', 'was', 'beginning', 'to', 'describe', 'her', 'own', 'admiration', 'of', 'these', 'scenes', ',', 'and', 'to', 'question', 'him', 'more', 'minutely', 'on', 'the', 'objects', 'that', 'had', 'particularly', 'struck', 'him', ',', 'when', 'Edward', 'interrupted', 'her', 'by', 'saying', ',', '“', 'You', 'must', 'not', 'enquire', 'too', 'far', ',', 'Marianne—remember', 'I', 'have', 'no', 'knowledge', 'in', 'the', 'picturesque', ',', 'and', 'I', 'shall', 'offend', 'you', 'by', 'my', 'ignorance', 'and', 'want', 'of', 'taste', 'if', 'we', 'come', 'to', 'particulars', '.', 'I', 'shall', 'call', 'hills', 'steep', ',', 'which', 'ought', 'to', 'be', 'bold', ';', 'surfaces', 'strange', 'and', 'uncouth', ',', 'which', 'ought', 'to', 'be', 'irregular', 'and', 'rugged', ';', 'and', 'distant', 'objects', 'out', 'of', 'sight', ',', 'which', 'ought', 'only', 'to', 'be', 'indistinct', 'through', 'the', 'soft', 'medium', 'of', 'a', 'hazy', 'atmosphere', '.', 'You', 'must', 'be', 'satisfied', 'with', 'such', 'admiration', 'as', 'I', 'can', 'honestly', 'give', '.', 'I', 'call', 'it', 'a', 'very', 'fine', 'country—the', 'hills', 'are', 'steep', ',', 'the', 'woods', 'seem', 'full', 'of', 'fine', 'timber', ',', 'and', 'the', 'valley', 'looks', 'comfortable', 'and', 'snug—with', 'rich', 'meadows', 'and', 'several', 'neat', 'farm', 'houses', 'scattered', 'here', 'and', 'there', '.', 'It', 'exactly', 'answers', 'my', 'idea', 'of', 'a', 'fine', 'country', ',', 'because', 'it', 'unites', 'beauty', 'with', 'utility—and', 'I', 'dare', 'say', 'it', 'is', 'a', 'picturesque', 'one', 'too', ',', 'because', 'you', 'admire', 'it', ';', 'I', 'can', 'easily', 'believe', 'it', 'to', 'be', 'full', 'of', 'rocks', 'and', 'promontories', ',', 'grey', 'moss', 'and', 'brush', 'wood', ',', 'but', 'these', 'are', 'all', 'lost', 'on', 'me', '.', 'I', 'know', 'nothing', 'of', 'the', 'picturesque.', '”', '“', 'I', 'am', 'afraid', 'it', 'is', 'but', 'too', 'true', ',', '”', 'said', 'Marianne', ';', '“', 'but', 'why', 'should', 'you', 'boast', 'of', 'it', '?', '”', '“', 'I', 'suspect', ',', '”', 'said', 'Elinor', ',', '“', 'that', 'to', 'avoid', 'one', 'kind', 'of', 'affectation', ',', 'Edward', 'here', 'falls', 'into', 'another', '.', 'Because', 'he', 'believes', 'many', 'people', 'pretend', 'to', 'more', 'admiration', 'of', 'the', 'beauties', 'of', 'nature', 'than', 'they', 'really', 'feel', ',', 'and', 'is', 'disgusted', 'with', 'such', 'pretensions', ',', 'he', 'affects', 'greater', 'indifference', 'and', 'less', 'discrimination', 'in', 'viewing', 'them', 'himself', 'than', 'he', 'possesses', '.', 'He', 'is', 'fastidious', 'and', 'will', 'have', 'an', 'affectation', 'of', 'his', 'own.', '”', '“', 'It', 'is', 'very', 'true', ',', '”', 'said', 'Marianne', ',', '“', 'that', 'admiration', 'of', 'landscape', 'scenery', 'is', 'become', 'a', 'mere', 'jargon', '.', 'Every', 'body', 'pretends', 'to', 'feel', 'and', 'tries', 'to', 'describe', 'with', 'the', 'taste', 'and', 'elegance', 'of', 'him', 'who', 'first', 'defined', 'what', 'picturesque', 'beauty', 'was', '.', 'I', 'detest', 'jargon', 'of', 'every', 'kind', ',', 'and', 'sometimes', 'I', 'have', 'kept', 'my', 'feelings', 'to', 'myself', ',', 'because', 'I', 'could', 'find', 'no', 'language', 'to', 'describe', 'them', 'in', 'but', 'what', 'was', 'worn', 'and', 'hackneyed', 'out', 'of', 'all', 'sense', 'and', 'meaning.', '”', '“', 'I', 'am', 'convinced', ',', '”', 'said', 'Edward', ',', '“', 'that', 'you', 'really', 'feel', 'all', 'the', 'delight', 'in', 'a', 'fine', 'prospect', 'which', 'you', 'profess', 'to', 'feel', '.', 'But', ',', 'in', 'return', ',', 'your', 'sister', 'must', 'allow', 'me', 'to', 'feel', 'no', 'more', 'than', 'I', 'profess', '.', 'I', 'like', 'a', 'fine', 'prospect', ',', 'but', 'not', 'on', 'picturesque', 'principles', '.', 'I', 'do', 'not', 'like', 'crooked', ',', 'twisted', ',', 'blasted', 'trees', '.', 'I', 'admire', 'them', 'much', 'more', 'if', 'they', 'are', 'tall', ',', 'straight', ',', 'and', 'flourishing', '.', 'I', 'do', 'not', 'like', 'ruined', ',', 'tattered', 'cottages', '.', 'I', 'am', 'not', 'fond', 'of', 'nettles', 'or', 'thistles', ',', 'or', 'heath', 'blossoms', '.', 'I', 'have', 'more', 'pleasure', 'in', 'a', 'snug', 'farm-house', 'than', 'a', 'watch-tower—and', 'a', 'troop', 'of', 'tidy', ',', 'happy', 'villagers', 'please', 'me', 'better', 'than', 'the', 'finest', 'banditti', 'in', 'the', 'world.', '”', 'Marianne', 'looked', 'with', 'amazement', 'at', 'Edward', ',', 'with', 'compassion', 'at', 'her', 'sister', '.', 'Elinor', 'only', 'laughed', '.', 'The', 'subject', 'was', 'continued', 'no', 'farther', ';', 'and', 'Marianne', 'remained', 'thoughtfully', 'silent', ',', 'till', 'a', 'new', 'object', 'suddenly', 'engaged', 'her', 'attention', '.', 'She', 'was', 'sitting', 'by', 'Edward', ',', 'and', 'in', 'taking', 'his', 'tea', 'from', 'Mrs.', 'Dashwood', ',', 'his', 'hand', 'passed', 'so', 'directly', 'before', 'her', ',', 'as', 'to', 'make', 'a', 'ring', ',', 'with', 'a', 'plait', 'of', 'hair', 'in', 'the', 'centre', ',', 'very', 'conspicuous', 'on', 'one', 'of', 'his', 'fingers', '.', '“', 'I', 'never', 'saw', 'you', 'wear', 'a', 'ring', 'before', ',', 'Edward', ',', '”', 'she', 'cried', '.', '“', 'Is', 'that', 'Fanny', '’', 's', 'hair', '?', 'I', 'remember', 'her', 'promising', 'to', 'give', 'you', 'some', '.', 'But', 'I', 'should', 'have', 'thought', 'her', 'hair', 'had', 'been', 'darker.', '”', 'Marianne', 'spoke', 'inconsiderately', 'what', 'she', 'really', 'felt—but', 'when', 'she', 'saw', 'how', 'much', 'she', 'had', 'pained', 'Edward', ',', 'her', 'own', 'vexation', 'at', 'her', 'want', 'of', 'thought', 'could', 'not', 'be', 'surpassed', 'by', 'his', '.', 'He', 'coloured', 'very', 'deeply', ',', 'and', 'giving', 'a', 'momentary', 'glance', 'at', 'Elinor', ',', 'replied', ',', '“', 'Yes', ';', 'it', 'is', 'my', 'sister', '’', 's', 'hair', '.', 'The', 'setting', 'always', 'casts', 'a', 'different', 'shade', 'on', 'it', ',', 'you', 'know.', '”', 'Elinor', 'had', 'met', 'his', 'eye', ',', 'and', 'looked', 'conscious', 'likewise', '.', 'That', 'the', 'hair', 'was', 'her', 'own', ',', 'she', 'instantaneously', 'felt', 'as', 'well', 'satisfied', 'as', 'Marianne', ';', 'the', 'only', 'difference', 'in', 'their', 'conclusions', 'was', ',', 'that', 'what', 'Marianne', 'considered', 'as', 'a', 'free', 'gift', 'from', 'her', 'sister', ',', 'Elinor', 'was', 'conscious', 'must', 'have', 'been', 'procured', 'by', 'some', 'theft', 'or', 'contrivance', 'unknown', 'to', 'herself', '.', 'She', 'was', 'not', 'in', 'a', 'humour', ',', 'however', ',', 'to', 'regard', 'it', 'as', 'an', 'affront', ',', 'and', 'affecting', 'to', 'take', 'no', 'notice', 'of', 'what', 'passed', ',', 'by', 'instantly', 'talking', 'of', 'something', 'else', ',', 'she', 'internally', 'resolved', 'henceforward', 'to', 'catch', 'every', 'opportunity', 'of', 'eyeing', 'the', 'hair', 'and', 'of', 'satisfying', 'herself', ',', 'beyond', 'all', 'doubt', ',', 'that', 'it', 'was', 'exactly', 'the', 'shade', 'of', 'her', 'own', '.', 'Edward', '’', 's', 'embarrassment', 'lasted', 'some', 'time', ',', 'and', 'it', 'ended', 'in', 'an', 'absence', 'of', 'mind', 'still', 'more', 'settled', '.', 'He', 'was', 'particularly', 'grave', 'the', 'whole', 'morning', '.', 'Marianne', 'severely', 'censured', 'herself', 'for', 'what', 'she', 'had', 'said', ';', 'but', 'her', 'own', 'forgiveness', 'might', 'have', 'been', 'more', 'speedy', ',', 'had', 'she', 'known', 'how', 'little', 'offence', 'it', 'had', 'given', 'her', 'sister', '.', 'Before', 'the', 'middle', 'of', 'the', 'day', ',', 'they', 'were', 'visited', 'by', 'Sir', 'John', 'and', 'Mrs.', 'Jennings', ',', 'who', ',', 'having', 'heard', 'of', 'the', 'arrival', 'of', 'a', 'gentleman', 'at', 'the', 'cottage', ',', 'came', 'to', 'take', 'a', 'survey', 'of', 'the', 'guest', '.', 'With', 'the', 'assistance', 'of', 'his', 'mother-in-law', ',', 'Sir', 'John', 'was', 'not', 'long', 'in', 'discovering', 'that', 'the', 'name', 'of', 'Ferrars', 'began', 'with', 'an', 'F.', 'and', 'this', 'prepared', 'a', 'future', 'mine', 'of', 'raillery', 'against', 'the', 'devoted', 'Elinor', ',', 'which', 'nothing', 'but', 'the', 'newness', 'of', 'their', 'acquaintance', 'with', 'Edward', 'could', 'have', 'prevented', 'from', 'being', 'immediately', 'sprung', '.', 'But', ',', 'as', 'it', 'was', ',', 'she', 'only', 'learned', ',', 'from', 'some', 'very', 'significant', 'looks', ',', 'how', 'far', 'their', 'penetration', ',', 'founded', 'on', 'Margaret', '’', 's', 'instructions', ',', 'extended', '.', 'Sir', 'John', 'never', 'came', 'to', 'the', 'Dashwoods', 'without', 'either', 'inviting', 'them', 'to', 'dine', 'at', 'the', 'park', 'the', 'next', 'day', ',', 'or', 'to', 'drink', 'tea', 'with', 'them', 'that', 'evening', '.', 'On', 'the', 'present', 'occasion', ',', 'for', 'the', 'better', 'entertainment', 'of', 'their', 'visitor', ',', 'towards', 'whose', 'amusement', 'he', 'felt', 'himself', 'bound', 'to', 'contribute', ',', 'he', 'wished', 'to', 'engage', 'them', 'for', 'both', '.', '“', 'You', '_must_', 'drink', 'tea', 'with', 'us', 'to', 'night', ',', '”', 'said', 'he', ',', '“', 'for', 'we', 'shall', 'be', 'quite', 'alone—and', 'tomorrow', 'you', 'must', 'absolutely', 'dine', 'with', 'us', ',', 'for', 'we', 'shall', 'be', 'a', 'large', 'party.', '”', 'Mrs.', 'Jennings', 'enforced', 'the', 'necessity', '.', '“', 'And', 'who', 'knows', 'but', 'you', 'may', 'raise', 'a', 'dance', ',', '”', 'said', 'she', '.', '“', 'And', 'that', 'will', 'tempt', '_you_', ',', 'Miss', 'Marianne.', '”', '“', 'A', 'dance', '!', '”', 'cried', 'Marianne', '.', '“', 'Impossible', '!', 'Who', 'is', 'to', 'dance', '?', '”', '“', 'Who', '!', 'why', 'yourselves', ',', 'and', 'the', 'Careys', ',', 'and', 'Whitakers', 'to', 'be', 'sure.—What', '!', 'you', 'thought', 'nobody', 'could', 'dance', 'because', 'a', 'certain', 'person', 'that', 'shall', 'be', 'nameless', 'is', 'gone', '!', '”', '“', 'I', 'wish', 'with', 'all', 'my', 'soul', ',', '”', 'cried', 'Sir', 'John', ',', '“', 'that', 'Willoughby', 'were', 'among', 'us', 'again.', '”', 'This', ',', 'and', 'Marianne', '’', 's', 'blushing', ',', 'gave', 'new', 'suspicions', 'to', 'Edward', '.', '“', 'And', 'who', 'is', 'Willoughby', '?', '”', 'said', 'he', ',', 'in', 'a', 'low', 'voice', ',', 'to', 'Miss', 'Dashwood', ',', 'by', 'whom', 'he', 'was', 'sitting', '.', 'She', 'gave', 'him', 'a', 'brief', 'reply', '.', 'Marianne', '’', 's', 'countenance', 'was', 'more', 'communicative', '.', 'Edward', 'saw', 'enough', 'to', 'comprehend', ',', 'not', 'only', 'the', 'meaning', 'of', 'others', ',', 'but', 'such', 'of', 'Marianne', '’', 's', 'expressions', 'as', 'had', 'puzzled', 'him', 'before', ';', 'and', 'when', 'their', 'visitors', 'left', 'them', ',', 'he', 'went', 'immediately', 'round', 'her', ',', 'and', 'said', ',', 'in', 'a', 'whisper', ',', '“', 'I', 'have', 'been', 'guessing', '.', 'Shall', 'I', 'tell', 'you', 'my', 'guess', '?', '”', '“', 'What', 'do', 'you', 'mean', '?', '”', '“', 'Shall', 'I', 'tell', 'you', '?', '”', '“', 'Certainly.', '”', '“', 'Well', 'then', ';', 'I', 'guess', 'that', 'Mr.', 'Willoughby', 'hunts.', '”', 'Marianne', 'was', 'surprised', 'and', 'confused', ',', 'yet', 'she', 'could', 'not', 'help', 'smiling', 'at', 'the', 'quiet', 'archness', 'of', 'his', 'manner', ',', 'and', 'after', 'a', 'moment', '’', 's', 'silence', ',', 'said', ',', '“', 'Oh', ',', 'Edward', '!', 'How', 'can', 'you', '?', '—But', 'the', 'time', 'will', 'come', 'I', 'hope', '...', 'I', 'am', 'sure', 'you', 'will', 'like', 'him.', '”', '“', 'I', 'do', 'not', 'doubt', 'it', ',', '”', 'replied', 'he', ',', 'rather', 'astonished', 'at', 'her', 'earnestness', 'and', 'warmth', ';', 'for', 'had', 'he', 'not', 'imagined', 'it', 'to', 'be', 'a', 'joke', 'for', 'the', 'good', 'of', 'her', 'acquaintance', 'in', 'general', ',', 'founded', 'only', 'on', 'a', 'something', 'or', 'a', 'nothing', 'between', 'Mr.', 'Willoughby', 'and', 'herself', ',', 'he', 'would', 'not', 'have', 'ventured', 'to', 'mention', 'it', '.', 'CHAPTER', 'XIX', '.', 'Edward', 'remained', 'a', 'week', 'at', 'the', 'cottage', ';', 'he', 'was', 'earnestly', 'pressed', 'by', 'Mrs.', 'Dashwood', 'to', 'stay', 'longer', ';', 'but', ',', 'as', 'if', 'he', 'were', 'bent', 'only', 'on', 'self-mortification', ',', 'he', 'seemed', 'resolved', 'to', 'be', 'gone', 'when', 'his', 'enjoyment', 'among', 'his', 'friends', 'was', 'at', 'the', 'height', '.', 'His', 'spirits', ',', 'during', 'the', 'last', 'two', 'or', 'three', 'days', ',', 'though', 'still', 'very', 'unequal', ',', 'were', 'greatly', 'improved—he', 'grew', 'more', 'and', 'more', 'partial', 'to', 'the', 'house', 'and', 'environs—never', 'spoke', 'of', 'going', 'away', 'without', 'a', 'sigh—declared', 'his', 'time', 'to', 'be', 'wholly', 'disengaged—even', 'doubted', 'to', 'what', 'place', 'he', 'should', 'go', 'when', 'he', 'left', 'them—but', 'still', ',', 'go', 'he', 'must', '.', 'Never', 'had', 'any', 'week', 'passed', 'so', 'quickly—he', 'could', 'hardly', 'believe', 'it', 'to', 'be', 'gone', '.', 'He', 'said', 'so', 'repeatedly', ';', 'other', 'things', 'he', 'said', 'too', ',', 'which', 'marked', 'the', 'turn', 'of', 'his', 'feelings', 'and', 'gave', 'the', 'lie', 'to', 'his', 'actions', '.', 'He', 'had', 'no', 'pleasure', 'at', 'Norland', ';', 'he', 'detested', 'being', 'in', 'town', ';', 'but', 'either', 'to', 'Norland', 'or', 'London', ',', 'he', 'must', 'go', '.', 'He', 'valued', 'their', 'kindness', 'beyond', 'any', 'thing', ',', 'and', 'his', 'greatest', 'happiness', 'was', 'in', 'being', 'with', 'them', '.', 'Yet', ',', 'he', 'must', 'leave', 'them', 'at', 'the', 'end', 'of', 'a', 'week', ',', 'in', 'spite', 'of', 'their', 'wishes', 'and', 'his', 'own', ',', 'and', 'without', 'any', 'restraint', 'on', 'his', 'time', '.', 'Elinor', 'placed', 'all', 'that', 'was', 'astonishing', 'in', 'this', 'way', 'of', 'acting', 'to', 'his', 'mother', '’', 's', 'account', ';', 'and', 'it', 'was', 'happy', 'for', 'her', 'that', 'he', 'had', 'a', 'mother', 'whose', 'character', 'was', 'so', 'imperfectly', 'known', 'to', 'her', ',', 'as', 'to', 'be', 'the', 'general', 'excuse', 'for', 'every', 'thing', 'strange', 'on', 'the', 'part', 'of', 'her', 'son', '.', 'Disappointed', ',', 'however', ',', 'and', 'vexed', 'as', 'she', 'was', ',', 'and', 'sometimes', 'displeased', 'with', 'his', 'uncertain', 'behaviour', 'to', 'herself', ',', 'she', 'was', 'very', 'well', 'disposed', 'on', 'the', 'whole', 'to', 'regard', 'his', 'actions', 'with', 'all', 'the', 'candid', 'allowances', 'and', 'generous', 'qualifications', ',', 'which', 'had', 'been', 'rather', 'more', 'painfully', 'extorted', 'from', 'her', ',', 'for', 'Willoughby', '’', 's', 'service', ',', 'by', 'her', 'mother', '.', 'His', 'want', 'of', 'spirits', ',', 'of', 'openness', ',', 'and', 'of', 'consistency', ',', 'were', 'most', 'usually', 'attributed', 'to', 'his', 'want', 'of', 'independence', ',', 'and', 'his', 'better', 'knowledge', 'of', 'Mrs.', 'Ferrars', '’', 's', 'disposition', 'and', 'designs', '.', 'The', 'shortness', 'of', 'his', 'visit', ',', 'the', 'steadiness', 'of', 'his', 'purpose', 'in', 'leaving', 'them', ',', 'originated', 'in', 'the', 'same', 'fettered', 'inclination', ',', 'the', 'same', 'inevitable', 'necessity', 'of', 'temporizing', 'with', 'his', 'mother', '.', 'The', 'old', 'well-established', 'grievance', 'of', 'duty', 'against', 'will', ',', 'parent', 'against', 'child', ',', 'was', 'the', 'cause', 'of', 'all', '.', 'She', 'would', 'have', 'been', 'glad', 'to', 'know', 'when', 'these', 'difficulties', 'were', 'to', 'cease', ',', 'this', 'opposition', 'was', 'to', 'yield', ',', '—when', 'Mrs.', 'Ferrars', 'would', 'be', 'reformed', ',', 'and', 'her', 'son', 'be', 'at', 'liberty', 'to', 'be', 'happy', '.', 'But', 'from', 'such', 'vain', 'wishes', 'she', 'was', 'forced', 'to', 'turn', 'for', 'comfort', 'to', 'the', 'renewal', 'of', 'her', 'confidence', 'in', 'Edward', '’', 's', 'affection', ',', 'to', 'the', 'remembrance', 'of', 'every', 'mark', 'of', 'regard', 'in', 'look', 'or', 'word', 'which', 'fell', 'from', 'him', 'while', 'at', 'Barton', ',', 'and', 'above', 'all', 'to', 'that', 'flattering', 'proof', 'of', 'it', 'which', 'he', 'constantly', 'wore', 'round', 'his', 'finger', '.', '“', 'I', 'think', ',', 'Edward', ',', '”', 'said', 'Mrs.', 'Dashwood', ',', 'as', 'they', 'were', 'at', 'breakfast', 'the', 'last', 'morning', ',', '“', 'you', 'would', 'be', 'a', 'happier', 'man', 'if', 'you', 'had', 'any', 'profession', 'to', 'engage', 'your', 'time', 'and', 'give', 'an', 'interest', 'to', 'your', 'plans', 'and', 'actions', '.', 'Some', 'inconvenience', 'to', 'your', 'friends', ',', 'indeed', ',', 'might', 'result', 'from', 'it—you', 'would', 'not', 'be', 'able', 'to', 'give', 'them', 'so', 'much', 'of', 'your', 'time', '.', 'But', '(', 'with', 'a', 'smile', ')', 'you', 'would', 'be', 'materially', 'benefited', 'in', 'one', 'particular', 'at', 'least—you', 'would', 'know', 'where', 'to', 'go', 'when', 'you', 'left', 'them.', '”', '“', 'I', 'do', 'assure', 'you', ',', '”', 'he', 'replied', ',', '“', 'that', 'I', 'have', 'long', 'thought', 'on', 'this', 'point', ',', 'as', 'you', 'think', 'now', '.', 'It', 'has', 'been', ',', 'and', 'is', ',', 'and', 'probably', 'will', 'always', 'be', 'a', 'heavy', 'misfortune', 'to', 'me', ',', 'that', 'I', 'have', 'had', 'no', 'necessary', 'business', 'to', 'engage', 'me', ',', 'no', 'profession', 'to', 'give', 'me', 'employment', ',', 'or', 'afford', 'me', 'any', 'thing', 'like', 'independence', '.', 'But', 'unfortunately', 'my', 'own', 'nicety', ',', 'and', 'the', 'nicety', 'of', 'my', 'friends', ',', 'have', 'made', 'me', 'what', 'I', 'am', ',', 'an', 'idle', ',', 'helpless', 'being', '.', 'We', 'never', 'could', 'agree', 'in', 'our', 'choice', 'of', 'a', 'profession', '.', 'I', 'always', 'preferred', 'the', 'church', ',', 'as', 'I', 'still', 'do', '.', 'But', 'that', 'was', 'not', 'smart', 'enough', 'for', 'my', 'family', '.', 'They', 'recommended', 'the', 'army', '.', 'That', 'was', 'a', 'great', 'deal', 'too', 'smart', 'for', 'me', '.', 'The', 'law', 'was', 'allowed', 'to', 'be', 'genteel', 'enough', ';', 'many', 'young', 'men', ',', 'who', 'had', 'chambers', 'in', 'the', 'Temple', ',', 'made', 'a', 'very', 'good', 'appearance', 'in', 'the', 'first', 'circles', ',', 'and', 'drove', 'about', 'town', 'in', 'very', 'knowing', 'gigs', '.', 'But', 'I', 'had', 'no', 'inclination', 'for', 'the', 'law', ',', 'even', 'in', 'this', 'less', 'abstruse', 'study', 'of', 'it', ',', 'which', 'my', 'family', 'approved', '.', 'As', 'for', 'the', 'navy', ',', 'it', 'had', 'fashion', 'on', 'its', 'side', ',', 'but', 'I', 'was', 'too', 'old', 'when', 'the', 'subject', 'was', 'first', 'started', 'to', 'enter', 'it—and', ',', 'at', 'length', ',', 'as', 'there', 'was', 'no', 'necessity', 'for', 'my', 'having', 'any', 'profession', 'at', 'all', ',', 'as', 'I', 'might', 'be', 'as', 'dashing', 'and', 'expensive', 'without', 'a', 'red', 'coat', 'on', 'my', 'back', 'as', 'with', 'one', ',', 'idleness', 'was', 'pronounced', 'on', 'the', 'whole', 'to', 'be', 'most', 'advantageous', 'and', 'honourable', ',', 'and', 'a', 'young', 'man', 'of', 'eighteen', 'is', 'not', 'in', 'general', 'so', 'earnestly', 'bent', 'on', 'being', 'busy', 'as', 'to', 'resist', 'the', 'solicitations', 'of', 'his', 'friends', 'to', 'do', 'nothing', '.', 'I', 'was', 'therefore', 'entered', 'at', 'Oxford', 'and', 'have', 'been', 'properly', 'idle', 'ever', 'since.', '”', '“', 'The', 'consequence', 'of', 'which', ',', 'I', 'suppose', ',', 'will', 'be', ',', '”', 'said', 'Mrs.', 'Dashwood', ',', '“', 'since', 'leisure', 'has', 'not', 'promoted', 'your', 'own', 'happiness', ',', 'that', 'your', 'sons', 'will', 'be', 'brought', 'up', 'to', 'as', 'many', 'pursuits', ',', 'employments', ',', 'professions', ',', 'and', 'trades', 'as', 'Columella', '’', 's.', '”', '“', 'They', 'will', 'be', 'brought', 'up', ',', '”', 'said', 'he', ',', 'in', 'a', 'serious', 'accent', ',', '“', 'to', 'be', 'as', 'unlike', 'myself', 'as', 'is', 'possible', '.', 'In', 'feeling', ',', 'in', 'action', ',', 'in', 'condition', ',', 'in', 'every', 'thing.', '”', '“', 'Come', ',', 'come', ';', 'this', 'is', 'all', 'an', 'effusion', 'of', 'immediate', 'want', 'of', 'spirits', ',', 'Edward', '.', 'You', 'are', 'in', 'a', 'melancholy', 'humour', ',', 'and', 'fancy', 'that', 'any', 'one', 'unlike', 'yourself', 'must', 'be', 'happy', '.', 'But', 'remember', 'that', 'the', 'pain', 'of', 'parting', 'from', 'friends', 'will', 'be', 'felt', 'by', 'every', 'body', 'at', 'times', ',', 'whatever', 'be', 'their', 'education', 'or', 'state', '.', 'Know', 'your', 'own', 'happiness', '.', 'You', 'want', 'nothing', 'but', 'patience—or', 'give', 'it', 'a', 'more', 'fascinating', 'name', ',', 'call', 'it', 'hope', '.', 'Your', 'mother', 'will', 'secure', 'to', 'you', ',', 'in', 'time', ',', 'that', 'independence', 'you', 'are', 'so', 'anxious', 'for', ';', 'it', 'is', 'her', 'duty', ',', 'and', 'it', 'will', ',', 'it', 'must', 'ere', 'long', 'become', 'her', 'happiness', 'to', 'prevent', 'your', 'whole', 'youth', 'from', 'being', 'wasted', 'in', 'discontent', '.', 'How', 'much', 'may', 'not', 'a', 'few', 'months', 'do', '?', '”', '“', 'I', 'think', ',', '”', 'replied', 'Edward', ',', '“', 'that', 'I', 'may', 'defy', 'many', 'months', 'to', 'produce', 'any', 'good', 'to', 'me.', '”', 'This', 'desponding', 'turn', 'of', 'mind', ',', 'though', 'it', 'could', 'not', 'be', 'communicated', 'to', 'Mrs.', 'Dashwood', ',', 'gave', 'additional', 'pain', 'to', 'them', 'all', 'in', 'the', 'parting', ',', 'which', 'shortly', 'took', 'place', ',', 'and', 'left', 'an', 'uncomfortable', 'impression', 'on', 'Elinor', '’', 's', 'feelings', 'especially', ',', 'which', 'required', 'some', 'trouble', 'and', 'time', 'to', 'subdue', '.', 'But', 'as', 'it', 'was', 'her', 'determination', 'to', 'subdue', 'it', ',', 'and', 'to', 'prevent', 'herself', 'from', 'appearing', 'to', 'suffer', 'more', 'than', 'what', 'all', 'her', 'family', 'suffered', 'on', 'his', 'going', 'away', ',', 'she', 'did', 'not', 'adopt', 'the', 'method', 'so', 'judiciously', 'employed', 'by', 'Marianne', ',', 'on', 'a', 'similar', 'occasion', ',', 'to', 'augment', 'and', 'fix', 'her', 'sorrow', ',', 'by', 'seeking', 'silence', ',', 'solitude', 'and', 'idleness', '.', 'Their', 'means', 'were', 'as', 'different', 'as', 'their', 'objects', ',', 'and', 'equally', 'suited', 'to', 'the', 'advancement', 'of', 'each', '.', 'Elinor', 'sat', 'down', 'to', 'her', 'drawing-table', 'as', 'soon', 'as', 'he', 'was', 'out', 'of', 'the', 'house', ',', 'busily', 'employed', 'herself', 'the', 'whole', 'day', ',', 'neither', 'sought', 'nor', 'avoided', 'the', 'mention', 'of', 'his', 'name', ',', 'appeared', 'to', 'interest', 'herself', 'almost', 'as', 'much', 'as', 'ever', 'in', 'the', 'general', 'concerns', 'of', 'the', 'family', ',', 'and', 'if', ',', 'by', 'this', 'conduct', ',', 'she', 'did', 'not', 'lessen', 'her', 'own', 'grief', ',', 'it', 'was', 'at', 'least', 'prevented', 'from', 'unnecessary', 'increase', ',', 'and', 'her', 'mother', 'and', 'sisters', 'were', 'spared', 'much', 'solicitude', 'on', 'her', 'account', '.', 'Such', 'behaviour', 'as', 'this', ',', 'so', 'exactly', 'the', 'reverse', 'of', 'her', 'own', ',', 'appeared', 'no', 'more', 'meritorious', 'to', 'Marianne', ',', 'than', 'her', 'own', 'had', 'seemed', 'faulty', 'to', 'her', '.', 'The', 'business', 'of', 'self-command', 'she', 'settled', 'very', 'easily', ';', '—with', 'strong', 'affections', 'it', 'was', 'impossible', ',', 'with', 'calm', 'ones', 'it', 'could', 'have', 'no', 'merit', '.', 'That', 'her', 'sister', '’', 's', 'affections', '_were_', 'calm', ',', 'she', 'dared', 'not', 'deny', ',', 'though', 'she', 'blushed', 'to', 'acknowledge', 'it', ';', 'and', 'of', 'the', 'strength', 'of', 'her', 'own', ',', 'she', 'gave', 'a', 'very', 'striking', 'proof', ',', 'by', 'still', 'loving', 'and', 'respecting', 'that', 'sister', ',', 'in', 'spite', 'of', 'this', 'mortifying', 'conviction', '.', 'Without', 'shutting', 'herself', 'up', 'from', 'her', 'family', ',', 'or', 'leaving', 'the', 'house', 'in', 'determined', 'solitude', 'to', 'avoid', 'them', ',', 'or', 'lying', 'awake', 'the', 'whole', 'night', 'to', 'indulge', 'meditation', ',', 'Elinor', 'found', 'every', 'day', 'afforded', 'her', 'leisure', 'enough', 'to', 'think', 'of', 'Edward', ',', 'and', 'of', 'Edward', '’', 's', 'behaviour', ',', 'in', 'every', 'possible', 'variety', 'which', 'the', 'different', 'state', 'of', 'her', 'spirits', 'at', 'different', 'times', 'could', 'produce', ',', '—with', 'tenderness', ',', 'pity', ',', 'approbation', ',', 'censure', ',', 'and', 'doubt', '.', 'There', 'were', 'moments', 'in', 'abundance', ',', 'when', ',', 'if', 'not', 'by', 'the', 'absence', 'of', 'her', 'mother', 'and', 'sisters', ',', 'at', 'least', 'by', 'the', 'nature', 'of', 'their', 'employments', ',', 'conversation', 'was', 'forbidden', 'among', 'them', ',', 'and', 'every', 'effect', 'of', 'solitude', 'was', 'produced', '.', 'Her', 'mind', 'was', 'inevitably', 'at', 'liberty', ';', 'her', 'thoughts', 'could', 'not', 'be', 'chained', 'elsewhere', ';', 'and', 'the', 'past', 'and', 'the', 'future', ',', 'on', 'a', 'subject', 'so', 'interesting', ',', 'must', 'be', 'before', 'her', ',', 'must', 'force', 'her', 'attention', ',', 'and', 'engross', 'her', 'memory', ',', 'her', 'reflection', ',', 'and', 'her', 'fancy', '.', 'From', 'a', 'reverie', 'of', 'this', 'kind', ',', 'as', 'she', 'sat', 'at', 'her', 'drawing-table', ',', 'she', 'was', 'roused', 'one', 'morning', ',', 'soon', 'after', 'Edward', '’', 's', 'leaving', 'them', ',', 'by', 'the', 'arrival', 'of', 'company', '.', 'She', 'happened', 'to', 'be', 'quite', 'alone', '.', 'The', 'closing', 'of', 'the', 'little', 'gate', ',', 'at', 'the', 'entrance', 'of', 'the', 'green', 'court', 'in', 'front', 'of', 'the', 'house', ',', 'drew', 'her', 'eyes', 'to', 'the', 'window', ',', 'and', 'she', 'saw', 'a', 'large', 'party', 'walking', 'up', 'to', 'the', 'door', '.', 'Amongst', 'them', 'were', 'Sir', 'John', 'and', 'Lady', 'Middleton', 'and', 'Mrs.', 'Jennings', ',', 'but', 'there', 'were', 'two', 'others', ',', 'a', 'gentleman', 'and', 'lady', ',', 'who', 'were', 'quite', 'unknown', 'to', 'her', '.', 'She', 'was', 'sitting', 'near', 'the', 'window', ',', 'and', 'as', 'soon', 'as', 'Sir', 'John', 'perceived', 'her', ',', 'he', 'left', 'the', 'rest', 'of', 'the', 'party', 'to', 'the', 'ceremony', 'of', 'knocking', 'at', 'the', 'door', ',', 'and', 'stepping', 'across', 'the', 'turf', ',', 'obliged', 'her', 'to', 'open', 'the', 'casement', 'to', 'speak', 'to', 'him', ',', 'though', 'the', 'space', 'was', 'so', 'short', 'between', 'the', 'door', 'and', 'the', 'window', ',', 'as', 'to', 'make', 'it', 'hardly', 'possible', 'to', 'speak', 'at', 'one', 'without', 'being', 'heard', 'at', 'the', 'other', '.', '“', 'Well', ',', '”', 'said', 'he', ',', '“', 'we', 'have', 'brought', 'you', 'some', 'strangers', '.', 'How', 'do', 'you', 'like', 'them', '?', '”', '“', 'Hush', '!', 'they', 'will', 'hear', 'you.', '”', '“', 'Never', 'mind', 'if', 'they', 'do', '.', 'It', 'is', 'only', 'the', 'Palmers', '.', 'Charlotte', 'is', 'very', 'pretty', ',', 'I', 'can', 'tell', 'you', '.', 'You', 'may', 'see', 'her', 'if', 'you', 'look', 'this', 'way.', '”', 'As', 'Elinor', 'was', 'certain', 'of', 'seeing', 'her', 'in', 'a', 'couple', 'of', 'minutes', ',', 'without', 'taking', 'that', 'liberty', ',', 'she', 'begged', 'to', 'be', 'excused', '.', '“', 'Where', 'is', 'Marianne', '?', 'Has', 'she', 'run', 'away', 'because', 'we', 'are', 'come', '?', 'I', 'see', 'her', 'instrument', 'is', 'open.', '”', '“', 'She', 'is', 'walking', ',', 'I', 'believe.', '”', 'They', 'were', 'now', 'joined', 'by', 'Mrs.', 'Jennings', ',', 'who', 'had', 'not', 'patience', 'enough', 'to', 'wait', 'till', 'the', 'door', 'was', 'opened', 'before', 'she', 'told', '_her_', 'story', '.', 'She', 'came', 'hallooing', 'to', 'the', 'window', ',', '“', 'How', 'do', 'you', 'do', ',', 'my', 'dear', '?', 'How', 'does', 'Mrs.', 'Dashwood', 'do', '?', 'And', 'where', 'are', 'your', 'sisters', '?', 'What', '!', 'all', 'alone', '!', 'you', 'will', 'be', 'glad', 'of', 'a', 'little', 'company', 'to', 'sit', 'with', 'you', '.', 'I', 'have', 'brought', 'my', 'other', 'son', 'and', 'daughter', 'to', 'see', 'you', '.', 'Only', 'think', 'of', 'their', 'coming', 'so', 'suddenly', '!', 'I', 'thought', 'I', 'heard', 'a', 'carriage', 'last', 'night', ',', 'while', 'we', 'were', 'drinking', 'our', 'tea', ',', 'but', 'it', 'never', 'entered', 'my', 'head', 'that', 'it', 'could', 'be', 'them', '.', 'I', 'thought', 'of', 'nothing', 'but', 'whether', 'it', 'might', 'not', 'be', 'Colonel', 'Brandon', 'come', 'back', 'again', ';', 'so', 'I', 'said', 'to', 'Sir', 'John', ',', 'I', 'do', 'think', 'I', 'hear', 'a', 'carriage', ';', 'perhaps', 'it', 'is', 'Colonel', 'Brandon', 'come', 'back', 'again—', '”', 'Elinor', 'was', 'obliged', 'to', 'turn', 'from', 'her', ',', 'in', 'the', 'middle', 'of', 'her', 'story', ',', 'to', 'receive', 'the', 'rest', 'of', 'the', 'party', ';', 'Lady', 'Middleton', 'introduced', 'the', 'two', 'strangers', ';', 'Mrs.', 'Dashwood', 'and', 'Margaret', 'came', 'down', 'stairs', 'at', 'the', 'same', 'time', ',', 'and', 'they', 'all', 'sat', 'down', 'to', 'look', 'at', 'one', 'another', ',', 'while', 'Mrs.', 'Jennings', 'continued', 'her', 'story', 'as', 'she', 'walked', 'through', 'the', 'passage', 'into', 'the', 'parlour', ',', 'attended', 'by', 'Sir', 'John', '.', 'Mrs.', 'Palmer', 'was', 'several', 'years', 'younger', 'than', 'Lady', 'Middleton', ',', 'and', 'totally', 'unlike', 'her', 'in', 'every', 'respect', '.', 'She', 'was', 'short', 'and', 'plump', ',', 'had', 'a', 'very', 'pretty', 'face', ',', 'and', 'the', 'finest', 'expression', 'of', 'good', 'humour', 'in', 'it', 'that', 'could', 'possibly', 'be', '.', 'Her', 'manners', 'were', 'by', 'no', 'means', 'so', 'elegant', 'as', 'her', 'sister', '’', 's', ',', 'but', 'they', 'were', 'much', 'more', 'prepossessing', '.', 'She', 'came', 'in', 'with', 'a', 'smile', ',', 'smiled', 'all', 'the', 'time', 'of', 'her', 'visit', ',', 'except', 'when', 'she', 'laughed', ',', 'and', 'smiled', 'when', 'she', 'went', 'away', '.', 'Her', 'husband', 'was', 'a', 'grave', 'looking', 'young', 'man', 'of', 'five', 'or', 'six', 'and', 'twenty', ',', 'with', 'an', 'air', 'of', 'more', 'fashion', 'and', 'sense', 'than', 'his', 'wife', ',', 'but', 'of', 'less', 'willingness', 'to', 'please', 'or', 'be', 'pleased', '.', 'He', 'entered', 'the', 'room', 'with', 'a', 'look', 'of', 'self-consequence', ',', 'slightly', 'bowed', 'to', 'the', 'ladies', ',', 'without', 'speaking', 'a', 'word', ',', 'and', ',', 'after', 'briefly', 'surveying', 'them', 'and', 'their', 'apartments', ',', 'took', 'up', 'a', 'newspaper', 'from', 'the', 'table', ',', 'and', 'continued', 'to', 'read', 'it', 'as', 'long', 'as', 'he', 'staid', '.', 'Mrs.', 'Palmer', ',', 'on', 'the', 'contrary', ',', 'who', 'was', 'strongly', 'endowed', 'by', 'nature', 'with', 'a', 'turn', 'for', 'being', 'uniformly', 'civil', 'and', 'happy', ',', 'was', 'hardly', 'seated', 'before', 'her', 'admiration', 'of', 'the', 'parlour', 'and', 'every', 'thing', 'in', 'it', 'burst', 'forth', '.', '“', 'Well', '!', 'what', 'a', 'delightful', 'room', 'this', 'is', '!', 'I', 'never', 'saw', 'anything', 'so', 'charming', '!', 'Only', 'think', ',', 'Mama', ',', 'how', 'it', 'is', 'improved', 'since', 'I', 'was', 'here', 'last', '!', 'I', 'always', 'thought', 'it', 'such', 'a', 'sweet', 'place', ',', 'ma', '’', 'am', '!', '(', 'turning', 'to', 'Mrs.', 'Dashwood', ')', 'but', 'you', 'have', 'made', 'it', 'so', 'charming', '!', 'Only', 'look', ',', 'sister', ',', 'how', 'delightful', 'every', 'thing', 'is', '!', 'How', 'I', 'should', 'like', 'such', 'a', 'house', 'for', 'myself', '!', 'Should', 'not', 'you', ',', 'Mr.', 'Palmer', '?', '”', 'Mr.', 'Palmer', 'made', 'her', 'no', 'answer', ',', 'and', 'did', 'not', 'even', 'raise', 'his', 'eyes', 'from', 'the', 'newspaper', '.', '“', 'Mr', '.', 'Palmer', 'does', 'not', 'hear', 'me', ',', '”', 'said', 'she', ',', 'laughing', ';', '“', 'he', 'never', 'does', 'sometimes', '.', 'It', 'is', 'so', 'ridiculous', '!', '”', 'This', 'was', 'quite', 'a', 'new', 'idea', 'to', 'Mrs.', 'Dashwood', ';', 'she', 'had', 'never', 'been', 'used', 'to', 'find', 'wit', 'in', 'the', 'inattention', 'of', 'any', 'one', ',', 'and', 'could', 'not', 'help', 'looking', 'with', 'surprise', 'at', 'them', 'both', '.', 'Mrs.', 'Jennings', ',', 'in', 'the', 'meantime', ',', 'talked', 'on', 'as', 'loud', 'as', 'she', 'could', ',', 'and', 'continued', 'her', 'account', 'of', 'their', 'surprise', ',', 'the', 'evening', 'before', ',', 'on', 'seeing', 'their', 'friends', ',', 'without', 'ceasing', 'till', 'every', 'thing', 'was', 'told', '.', 'Mrs.', 'Palmer', 'laughed', 'heartily', 'at', 'the', 'recollection', 'of', 'their', 'astonishment', ',', 'and', 'every', 'body', 'agreed', ',', 'two', 'or', 'three', 'times', 'over', ',', 'that', 'it', 'had', 'been', 'quite', 'an', 'agreeable', 'surprise', '.', '“', 'You', 'may', 'believe', 'how', 'glad', 'we', 'all', 'were', 'to', 'see', 'them', ',', '”', 'added', 'Mrs.', 'Jennings', ',', 'leaning', 'forward', 'towards', 'Elinor', ',', 'and', 'speaking', 'in', 'a', 'low', 'voice', 'as', 'if', 'she', 'meant', 'to', 'be', 'heard', 'by', 'no', 'one', 'else', ',', 'though', 'they', 'were', 'seated', 'on', 'different', 'sides', 'of', 'the', 'room', ';', '“', 'but', ',', 'however', ',', 'I', 'can', '’', 't', 'help', 'wishing', 'they', 'had', 'not', 'travelled', 'quite', 'so', 'fast', ',', 'nor', 'made', 'such', 'a', 'long', 'journey', 'of', 'it', ',', 'for', 'they', 'came', 'all', 'round', 'by', 'London', 'upon', 'account', 'of', 'some', 'business', ',', 'for', 'you', 'know', '(', 'nodding', 'significantly', 'and', 'pointing', 'to', 'her', 'daughter', ')', 'it', 'was', 'wrong', 'in', 'her', 'situation', '.', 'I', 'wanted', 'her', 'to', 'stay', 'at', 'home', 'and', 'rest', 'this', 'morning', ',', 'but', 'she', 'would', 'come', 'with', 'us', ';', 'she', 'longed', 'so', 'much', 'to', 'see', 'you', 'all', '!', '”', 'Mrs.', 'Palmer', 'laughed', ',', 'and', 'said', 'it', 'would', 'not', 'do', 'her', 'any', 'harm', '.', '“', 'She', 'expects', 'to', 'be', 'confined', 'in', 'February', ',', '”', 'continued', 'Mrs.', 'Jennings', '.', 'Lady', 'Middleton', 'could', 'no', 'longer', 'endure', 'such', 'a', 'conversation', ',', 'and', 'therefore', 'exerted', 'herself', 'to', 'ask', 'Mr.', 'Palmer', 'if', 'there', 'was', 'any', 'news', 'in', 'the', 'paper', '.', '“', 'No', ',', 'none', 'at', 'all', ',', '”', 'he', 'replied', ',', 'and', 'read', 'on', '.', '“', 'Here', 'comes', 'Marianne', ',', '”', 'cried', 'Sir', 'John', '.', '“', 'Now', ',', 'Palmer', ',', 'you', 'shall', 'see', 'a', 'monstrous', 'pretty', 'girl.', '”', 'He', 'immediately', 'went', 'into', 'the', 'passage', ',', 'opened', 'the', 'front', 'door', ',', 'and', 'ushered', 'her', 'in', 'himself', '.', 'Mrs.', 'Jennings', 'asked', 'her', ',', 'as', 'soon', 'as', 'she', 'appeared', ',', 'if', 'she', 'had', 'not', 'been', 'to', 'Allenham', ';', 'and', 'Mrs.', 'Palmer', 'laughed', 'so', 'heartily', 'at', 'the', 'question', ',', 'as', 'to', 'show', 'she', 'understood', 'it', '.', 'Mr.', 'Palmer', 'looked', 'up', 'on', 'her', 'entering', 'the', 'room', ',', 'stared', 'at', 'her', 'some', 'minutes', ',', 'and', 'then', 'returned', 'to', 'his', 'newspaper', '.', 'Mrs.', 'Palmer', '’', 's', 'eye', 'was', 'now', 'caught', 'by', 'the', 'drawings', 'which', 'hung', 'round', 'the', 'room', '.', 'She', 'got', 'up', 'to', 'examine', 'them', '.', '“', 'Oh', '!', 'dear', ',', 'how', 'beautiful', 'these', 'are', '!', 'Well', '!', 'how', 'delightful', '!', 'Do', 'but', 'look', ',', 'mama', ',', 'how', 'sweet', '!', 'I', 'declare', 'they', 'are', 'quite', 'charming', ';', 'I', 'could', 'look', 'at', 'them', 'for', 'ever.', '”', 'And', 'then', 'sitting', 'down', 'again', ',', 'she', 'very', 'soon', 'forgot', 'that', 'there', 'were', 'any', 'such', 'things', 'in', 'the', 'room', '.', 'When', 'Lady', 'Middleton', 'rose', 'to', 'go', 'away', ',', 'Mr.', 'Palmer', 'rose', 'also', ',', 'laid', 'down', 'the', 'newspaper', ',', 'stretched', 'himself', 'and', 'looked', 'at', 'them', 'all', 'around', '.', '“', 'My', 'love', ',', 'have', 'you', 'been', 'asleep', '?', '”', 'said', 'his', 'wife', ',', 'laughing', '.', 'He', 'made', 'her', 'no', 'answer', ';', 'and', 'only', 'observed', ',', 'after', 'again', 'examining', 'the', 'room', ',', 'that', 'it', 'was', 'very', 'low', 'pitched', ',', 'and', 'that', 'the', 'ceiling', 'was', 'crooked', '.', 'He', 'then', 'made', 'his', 'bow', ',', 'and', 'departed', 'with', 'the', 'rest', '.', 'Sir', 'John', 'had', 'been', 'very', 'urgent', 'with', 'them', 'all', 'to', 'spend', 'the', 'next', 'day', 'at', 'the', 'park', '.', 'Mrs.', 'Dashwood', ',', 'who', 'did', 'not', 'chuse', 'to', 'dine', 'with', 'them', 'oftener', 'than', 'they', 'dined', 'at', 'the', 'cottage', ',', 'absolutely', 'refused', 'on', 'her', 'own', 'account', ';', 'her', 'daughters', 'might', 'do', 'as', 'they', 'pleased', '.', 'But', 'they', 'had', 'no', 'curiosity', 'to', 'see', 'how', 'Mr.', 'and', 'Mrs.', 'Palmer', 'ate', 'their', 'dinner', ',', 'and', 'no', 'expectation', 'of', 'pleasure', 'from', 'them', 'in', 'any', 'other', 'way', '.', 'They', 'attempted', ',', 'therefore', ',', 'likewise', ',', 'to', 'excuse', 'themselves', ';', 'the', 'weather', 'was', 'uncertain', ',', 'and', 'not', 'likely', 'to', 'be', 'good', '.', 'But', 'Sir', 'John', 'would', 'not', 'be', 'satisfied—the', 'carriage', 'should', 'be', 'sent', 'for', 'them', 'and', 'they', 'must', 'come', '.', 'Lady', 'Middleton', 'too', ',', 'though', 'she', 'did', 'not', 'press', 'their', 'mother', ',', 'pressed', 'them', '.', 'Mrs.', 'Jennings', 'and', 'Mrs.', 'Palmer', 'joined', 'their', 'entreaties', ',', 'all', 'seemed', 'equally', 'anxious', 'to', 'avoid', 'a', 'family', 'party', ';', 'and', 'the', 'young', 'ladies', 'were', 'obliged', 'to', 'yield', '.', '“', 'Why', 'should', 'they', 'ask', 'us', '?', '”', 'said', 'Marianne', ',', 'as', 'soon', 'as', 'they', 'were', 'gone', '.', '“', 'The', 'rent', 'of', 'this', 'cottage', 'is', 'said', 'to', 'be', 'low', ';', 'but', 'we', 'have', 'it', 'on', 'very', 'hard', 'terms', ',', 'if', 'we', 'are', 'to', 'dine', 'at', 'the', 'park', 'whenever', 'any', 'one', 'is', 'staying', 'either', 'with', 'them', ',', 'or', 'with', 'us.', '”', '“', 'They', 'mean', 'no', 'less', 'to', 'be', 'civil', 'and', 'kind', 'to', 'us', 'now', ',', '”', 'said', 'Elinor', ',', '“', 'by', 'these', 'frequent', 'invitations', ',', 'than', 'by', 'those', 'which', 'we', 'received', 'from', 'them', 'a', 'few', 'weeks', 'ago', '.', 'The', 'alteration', 'is', 'not', 'in', 'them', ',', 'if', 'their', 'parties', 'are', 'grown', 'tedious', 'and', 'dull', '.', 'We', 'must', 'look', 'for', 'the', 'change', 'elsewhere.', '”', 'CHAPTER', 'XX', '.', 'As', 'the', 'Miss', 'Dashwoods', 'entered', 'the', 'drawing-room', 'of', 'the', 'park', 'the', 'next', 'day', ',', 'at', 'one', 'door', ',', 'Mrs.', 'Palmer', 'came', 'running', 'in', 'at', 'the', 'other', ',', 'looking', 'as', 'good', 'humoured', 'and', 'merry', 'as', 'before', '.', 'She', 'took', 'them', 'all', 'most', 'affectionately', 'by', 'the', 'hand', ',', 'and', 'expressed', 'great', 'delight', 'in', 'seeing', 'them', 'again', '.', '“', 'I', 'am', 'so', 'glad', 'to', 'see', 'you', '!', '”', 'said', 'she', ',', 'seating', 'herself', 'between', 'Elinor', 'and', 'Marianne', ',', '“', 'for', 'it', 'is', 'so', 'bad', 'a', 'day', 'I', 'was', 'afraid', 'you', 'might', 'not', 'come', ',', 'which', 'would', 'be', 'a', 'shocking', 'thing', ',', 'as', 'we', 'go', 'away', 'again', 'tomorrow', '.', 'We', 'must', 'go', ',', 'for', 'the', 'Westons', 'come', 'to', 'us', 'next', 'week', 'you', 'know', '.', 'It', 'was', 'quite', 'a', 'sudden', 'thing', 'our', 'coming', 'at', 'all', ',', 'and', 'I', 'knew', 'nothing', 'of', 'it', 'till', 'the', 'carriage', 'was', 'coming', 'to', 'the', 'door', ',', 'and', 'then', 'Mr.', 'Palmer', 'asked', 'me', 'if', 'I', 'would', 'go', 'with', 'him', 'to', 'Barton', '.', 'He', 'is', 'so', 'droll', '!', 'He', 'never', 'tells', 'me', 'any', 'thing', '!', 'I', 'am', 'so', 'sorry', 'we', 'can', 'not', 'stay', 'longer', ';', 'however', 'we', 'shall', 'meet', 'again', 'in', 'town', 'very', 'soon', ',', 'I', 'hope.', '”', 'They', 'were', 'obliged', 'to', 'put', 'an', 'end', 'to', 'such', 'an', 'expectation', '.', '“', 'Not', 'go', 'to', 'town', '!', '”', 'cried', 'Mrs.', 'Palmer', ',', 'with', 'a', 'laugh', ',', '“', 'I', 'shall', 'be', 'quite', 'disappointed', 'if', 'you', 'do', 'not', '.', 'I', 'could', 'get', 'the', 'nicest', 'house', 'in', 'the', 'world', 'for', 'you', ',', 'next', 'door', 'to', 'ours', ',', 'in', 'Hanover-square', '.', 'You', 'must', 'come', ',', 'indeed', '.', 'I', 'am', 'sure', 'I', 'shall', 'be', 'very', 'happy', 'to', 'chaperon', 'you', 'at', 'any', 'time', 'till', 'I', 'am', 'confined', ',', 'if', 'Mrs.', 'Dashwood', 'should', 'not', 'like', 'to', 'go', 'into', 'public.', '”', 'They', 'thanked', 'her', ';', 'but', 'were', 'obliged', 'to', 'resist', 'all', 'her', 'entreaties', '.', '“', 'Oh', ',', 'my', 'love', ',', '”', 'cried', 'Mrs.', 'Palmer', 'to', 'her', 'husband', ',', 'who', 'just', 'then', 'entered', 'the', 'room—', '“', 'you', 'must', 'help', 'me', 'to', 'persuade', 'the', 'Miss', 'Dashwoods', 'to', 'go', 'to', 'town', 'this', 'winter.', '”', 'Her', 'love', 'made', 'no', 'answer', ';', 'and', 'after', 'slightly', 'bowing', 'to', 'the', 'ladies', ',', 'began', 'complaining', 'of', 'the', 'weather', '.', '“', 'How', 'horrid', 'all', 'this', 'is', '!', '”', 'said', 'he', '.', '“', 'Such', 'weather', 'makes', 'every', 'thing', 'and', 'every', 'body', 'disgusting', '.', 'Dullness', 'is', 'as', 'much', 'produced', 'within', 'doors', 'as', 'without', ',', 'by', 'rain', '.', 'It', 'makes', 'one', 'detest', 'all', 'one', '’', 's', 'acquaintance', '.', 'What', 'the', 'devil', 'does', 'Sir', 'John', 'mean', 'by', 'not', 'having', 'a', 'billiard', 'room', 'in', 'his', 'house', '?', 'How', 'few', 'people', 'know', 'what', 'comfort', 'is', '!', 'Sir', 'John', 'is', 'as', 'stupid', 'as', 'the', 'weather.', '”', 'The', 'rest', 'of', 'the', 'company', 'soon', 'dropt', 'in', '.', '“', 'I', 'am', 'afraid', ',', 'Miss', 'Marianne', ',', '”', 'said', 'Sir', 'John', ',', '“', 'you', 'have', 'not', 'been', 'able', 'to', 'take', 'your', 'usual', 'walk', 'to', 'Allenham', 'today.', '”', 'Marianne', 'looked', 'very', 'grave', 'and', 'said', 'nothing', '.', '“', 'Oh', ',', 'don', '’', 't', 'be', 'so', 'sly', 'before', 'us', ',', '”', 'said', 'Mrs.', 'Palmer', ';', '“', 'for', 'we', 'know', 'all', 'about', 'it', ',', 'I', 'assure', 'you', ';', 'and', 'I', 'admire', 'your', 'taste', 'very', 'much', ',', 'for', 'I', 'think', 'he', 'is', 'extremely', 'handsome', '.', 'We', 'do', 'not', 'live', 'a', 'great', 'way', 'from', 'him', 'in', 'the', 'country', ',', 'you', 'know', '.', 'Not', 'above', 'ten', 'miles', ',', 'I', 'dare', 'say.', '”', '“', 'Much', 'nearer', 'thirty', ',', '”', 'said', 'her', 'husband', '.', '“', 'Ah', ',', 'well', '!', 'there', 'is', 'not', 'much', 'difference', '.', 'I', 'never', 'was', 'at', 'his', 'house', ';', 'but', 'they', 'say', 'it', 'is', 'a', 'sweet', 'pretty', 'place.', '”', '“', 'As', 'vile', 'a', 'spot', 'as', 'I', 'ever', 'saw', 'in', 'my', 'life', ',', '”', 'said', 'Mr.', 'Palmer', '.', 'Marianne', 'remained', 'perfectly', 'silent', ',', 'though', 'her', 'countenance', 'betrayed', 'her', 'interest', 'in', 'what', 'was', 'said', '.', '“', 'Is', 'it', 'very', 'ugly', '?', '”', 'continued', 'Mrs.', 'Palmer—', '“', 'then', 'it', 'must', 'be', 'some', 'other', 'place', 'that', 'is', 'so', 'pretty', 'I', 'suppose.', '”', 'When', 'they', 'were', 'seated', 'in', 'the', 'dining', 'room', ',', 'Sir', 'John', 'observed', 'with', 'regret', 'that', 'they', 'were', 'only', 'eight', 'all', 'together', '.', '“', 'My', 'dear', ',', '”', 'said', 'he', 'to', 'his', 'lady', ',', '“', 'it', 'is', 'very', 'provoking', 'that', 'we', 'should', 'be', 'so', 'few', '.', 'Why', 'did', 'not', 'you', 'ask', 'the', 'Gilberts', 'to', 'come', 'to', 'us', 'today', '?', '”', '“', 'Did', 'not', 'I', 'tell', 'you', ',', 'Sir', 'John', ',', 'when', 'you', 'spoke', 'to', 'me', 'about', 'it', 'before', ',', 'that', 'it', 'could', 'not', 'be', 'done', '?', 'They', 'dined', 'with', 'us', 'last.', '”', '“', 'You', 'and', 'I', ',', 'Sir', 'John', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'should', 'not', 'stand', 'upon', 'such', 'ceremony.', '”', '“', 'Then', 'you', 'would', 'be', 'very', 'ill-bred', ',', '”', 'cried', 'Mr.', 'Palmer', '.', '“', 'My', 'love', 'you', 'contradict', 'every', 'body', ',', '”', 'said', 'his', 'wife', 'with', 'her', 'usual', 'laugh', '.', '“', 'Do', 'you', 'know', 'that', 'you', 'are', 'quite', 'rude', '?', '”', '“', 'I', 'did', 'not', 'know', 'I', 'contradicted', 'any', 'body', 'in', 'calling', 'your', 'mother', 'ill-bred.', '”', '“', 'Ay', ',', 'you', 'may', 'abuse', 'me', 'as', 'you', 'please', ',', '”', 'said', 'the', 'good-natured', 'old', 'lady', ',', '“', 'you', 'have', 'taken', 'Charlotte', 'off', 'my', 'hands', ',', 'and', 'can', 'not', 'give', 'her', 'back', 'again', '.', 'So', 'there', 'I', 'have', 'the', 'whip', 'hand', 'of', 'you.', '”', 'Charlotte', 'laughed', 'heartily', 'to', 'think', 'that', 'her', 'husband', 'could', 'not', 'get', 'rid', 'of', 'her', ';', 'and', 'exultingly', 'said', ',', 'she', 'did', 'not', 'care', 'how', 'cross', 'he', 'was', 'to', 'her', ',', 'as', 'they', 'must', 'live', 'together', '.', 'It', 'was', 'impossible', 'for', 'any', 'one', 'to', 'be', 'more', 'thoroughly', 'good-natured', ',', 'or', 'more', 'determined', 'to', 'be', 'happy', 'than', 'Mrs.', 'Palmer', '.', 'The', 'studied', 'indifference', ',', 'insolence', ',', 'and', 'discontent', 'of', 'her', 'husband', 'gave', 'her', 'no', 'pain', ';', 'and', 'when', 'he', 'scolded', 'or', 'abused', 'her', ',', 'she', 'was', 'highly', 'diverted', '.', '“', 'Mr', '.', 'Palmer', 'is', 'so', 'droll', '!', '”', 'said', 'she', ',', 'in', 'a', 'whisper', ',', 'to', 'Elinor', '.', '“', 'He', 'is', 'always', 'out', 'of', 'humour.', '”', 'Elinor', 'was', 'not', 'inclined', ',', 'after', 'a', 'little', 'observation', ',', 'to', 'give', 'him', 'credit', 'for', 'being', 'so', 'genuinely', 'and', 'unaffectedly', 'ill-natured', 'or', 'ill-bred', 'as', 'he', 'wished', 'to', 'appear', '.', 'His', 'temper', 'might', 'perhaps', 'be', 'a', 'little', 'soured', 'by', 'finding', ',', 'like', 'many', 'others', 'of', 'his', 'sex', ',', 'that', 'through', 'some', 'unaccountable', 'bias', 'in', 'favour', 'of', 'beauty', ',', 'he', 'was', 'the', 'husband', 'of', 'a', 'very', 'silly', 'woman—but', 'she', 'knew', 'that', 'this', 'kind', 'of', 'blunder', 'was', 'too', 'common', 'for', 'any', 'sensible', 'man', 'to', 'be', 'lastingly', 'hurt', 'by', 'it', '.', 'It', 'was', 'rather', 'a', 'wish', 'of', 'distinction', ',', 'she', 'believed', ',', 'which', 'produced', 'his', 'contemptuous', 'treatment', 'of', 'every', 'body', ',', 'and', 'his', 'general', 'abuse', 'of', 'every', 'thing', 'before', 'him', '.', 'It', 'was', 'the', 'desire', 'of', 'appearing', 'superior', 'to', 'other', 'people', '.', 'The', 'motive', 'was', 'too', 'common', 'to', 'be', 'wondered', 'at', ';', 'but', 'the', 'means', ',', 'however', 'they', 'might', 'succeed', 'by', 'establishing', 'his', 'superiority', 'in', 'ill-breeding', ',', 'were', 'not', 'likely', 'to', 'attach', 'any', 'one', 'to', 'him', 'except', 'his', 'wife', '.', '“', 'Oh', ',', 'my', 'dear', 'Miss', 'Dashwood', ',', '”', 'said', 'Mrs.', 'Palmer', 'soon', 'afterwards', ',', '“', 'I', 'have', 'got', 'such', 'a', 'favour', 'to', 'ask', 'of', 'you', 'and', 'your', 'sister', '.', 'Will', 'you', 'come', 'and', 'spend', 'some', 'time', 'at', 'Cleveland', 'this', 'Christmas', '?', 'Now', ',', 'pray', 'do', ',', '—and', 'come', 'while', 'the', 'Westons', 'are', 'with', 'us', '.', 'You', 'can', 'not', 'think', 'how', 'happy', 'I', 'shall', 'be', '!', 'It', 'will', 'be', 'quite', 'delightful', '!', '—My', 'love', ',', '”', 'applying', 'to', 'her', 'husband', ',', '“', 'don', '’', 't', 'you', 'long', 'to', 'have', 'the', 'Miss', 'Dashwoods', 'come', 'to', 'Cleveland', '?', '”', '“', 'Certainly', ',', '”', 'he', 'replied', ',', 'with', 'a', 'sneer—', '“', 'I', 'came', 'into', 'Devonshire', 'with', 'no', 'other', 'view.', '”', '“', 'There', 'now', ',', '”', '—said', 'his', 'lady', ',', '“', 'you', 'see', 'Mr.', 'Palmer', 'expects', 'you', ';', 'so', 'you', 'can', 'not', 'refuse', 'to', 'come.', '”', 'They', 'both', 'eagerly', 'and', 'resolutely', 'declined', 'her', 'invitation', '.', '“', 'But', 'indeed', 'you', 'must', 'and', 'shall', 'come', '.', 'I', 'am', 'sure', 'you', 'will', 'like', 'it', 'of', 'all', 'things', '.', 'The', 'Westons', 'will', 'be', 'with', 'us', ',', 'and', 'it', 'will', 'be', 'quite', 'delightful', '.', 'You', 'can', 'not', 'think', 'what', 'a', 'sweet', 'place', 'Cleveland', 'is', ';', 'and', 'we', 'are', 'so', 'gay', 'now', ',', 'for', 'Mr.', 'Palmer', 'is', 'always', 'going', 'about', 'the', 'country', 'canvassing', 'against', 'the', 'election', ';', 'and', 'so', 'many', 'people', 'came', 'to', 'dine', 'with', 'us', 'that', 'I', 'never', 'saw', 'before', ',', 'it', 'is', 'quite', 'charming', '!', 'But', ',', 'poor', 'fellow', '!', 'it', 'is', 'very', 'fatiguing', 'to', 'him', '!', 'for', 'he', 'is', 'forced', 'to', 'make', 'every', 'body', 'like', 'him.', '”', 'Elinor', 'could', 'hardly', 'keep', 'her', 'countenance', 'as', 'she', 'assented', 'to', 'the', 'hardship', 'of', 'such', 'an', 'obligation', '.', '“', 'How', 'charming', 'it', 'will', 'be', ',', '”', 'said', 'Charlotte', ',', '“', 'when', 'he', 'is', 'in', 'Parliament', '!', '—won', '’', 't', 'it', '?', 'How', 'I', 'shall', 'laugh', '!', 'It', 'will', 'be', 'so', 'ridiculous', 'to', 'see', 'all', 'his', 'letters', 'directed', 'to', 'him', 'with', 'an', 'M.P.—But', 'do', 'you', 'know', ',', 'he', 'says', ',', 'he', 'will', 'never', 'frank', 'for', 'me', '?', 'He', 'declares', 'he', 'won', '’', 't', '.', 'Don', '’', 't', 'you', ',', 'Mr.', 'Palmer', '?', '”', 'Mr.', 'Palmer', 'took', 'no', 'notice', 'of', 'her', '.', '“', 'He', 'can', 'not', 'bear', 'writing', ',', 'you', 'know', ',', '”', 'she', 'continued—', '“', 'he', 'says', 'it', 'is', 'quite', 'shocking.', '”', '“', 'No', ',', '”', 'said', 'he', ',', '“', 'I', 'never', 'said', 'any', 'thing', 'so', 'irrational', '.', 'Don', '’', 't', 'palm', 'all', 'your', 'abuses', 'of', 'language', 'upon', 'me.', '”', '“', 'There', 'now', ';', 'you', 'see', 'how', 'droll', 'he', 'is', '.', 'This', 'is', 'always', 'the', 'way', 'with', 'him', '!', 'Sometimes', 'he', 'won', '’', 't', 'speak', 'to', 'me', 'for', 'half', 'a', 'day', 'together', ',', 'and', 'then', 'he', 'comes', 'out', 'with', 'something', 'so', 'droll—all', 'about', 'any', 'thing', 'in', 'the', 'world.', '”', 'She', 'surprised', 'Elinor', 'very', 'much', 'as', 'they', 'returned', 'into', 'the', 'drawing-room', ',', 'by', 'asking', 'her', 'whether', 'she', 'did', 'not', 'like', 'Mr.', 'Palmer', 'excessively', '.', '“', 'Certainly', ',', '”', 'said', 'Elinor', ';', '“', 'he', 'seems', 'very', 'agreeable.', '”', '“', 'Well—I', 'am', 'so', 'glad', 'you', 'do', '.', 'I', 'thought', 'you', 'would', ',', 'he', 'is', 'so', 'pleasant', ';', 'and', 'Mr.', 'Palmer', 'is', 'excessively', 'pleased', 'with', 'you', 'and', 'your', 'sisters', 'I', 'can', 'tell', 'you', ',', 'and', 'you', 'can', '’', 't', 'think', 'how', 'disappointed', 'he', 'will', 'be', 'if', 'you', 'don', '’', 't', 'come', 'to', 'Cleveland.—I', 'can', '’', 't', 'imagine', 'why', 'you', 'should', 'object', 'to', 'it.', '”', 'Elinor', 'was', 'again', 'obliged', 'to', 'decline', 'her', 'invitation', ';', 'and', 'by', 'changing', 'the', 'subject', ',', 'put', 'a', 'stop', 'to', 'her', 'entreaties', '.', 'She', 'thought', 'it', 'probable', 'that', 'as', 'they', 'lived', 'in', 'the', 'same', 'county', ',', 'Mrs.', 'Palmer', 'might', 'be', 'able', 'to', 'give', 'some', 'more', 'particular', 'account', 'of', 'Willoughby', '’', 's', 'general', 'character', ',', 'than', 'could', 'be', 'gathered', 'from', 'the', 'Middletons', '’', 'partial', 'acquaintance', 'with', 'him', ';', 'and', 'she', 'was', 'eager', 'to', 'gain', 'from', 'any', 'one', ',', 'such', 'a', 'confirmation', 'of', 'his', 'merits', 'as', 'might', 'remove', 'the', 'possibility', 'of', 'fear', 'from', 'Marianne', '.', 'She', 'began', 'by', 'inquiring', 'if', 'they', 'saw', 'much', 'of', 'Mr.', 'Willoughby', 'at', 'Cleveland', ',', 'and', 'whether', 'they', 'were', 'intimately', 'acquainted', 'with', 'him', '.', '“', 'Oh', 'dear', ',', 'yes', ';', 'I', 'know', 'him', 'extremely', 'well', ',', '”', 'replied', 'Mrs.', 'Palmer', ';', '—', '“', 'Not', 'that', 'I', 'ever', 'spoke', 'to', 'him', ',', 'indeed', ';', 'but', 'I', 'have', 'seen', 'him', 'for', 'ever', 'in', 'town', '.', 'Somehow', 'or', 'other', 'I', 'never', 'happened', 'to', 'be', 'staying', 'at', 'Barton', 'while', 'he', 'was', 'at', 'Allenham', '.', 'Mama', 'saw', 'him', 'here', 'once', 'before', ';', '—but', 'I', 'was', 'with', 'my', 'uncle', 'at', 'Weymouth', '.', 'However', ',', 'I', 'dare', 'say', 'we', 'should', 'have', 'seen', 'a', 'great', 'deal', 'of', 'him', 'in', 'Somersetshire', ',', 'if', 'it', 'had', 'not', 'happened', 'very', 'unluckily', 'that', 'we', 'should', 'never', 'have', 'been', 'in', 'the', 'country', 'together', '.', 'He', 'is', 'very', 'little', 'at', 'Combe', ',', 'I', 'believe', ';', 'but', 'if', 'he', 'were', 'ever', 'so', 'much', 'there', ',', 'I', 'do', 'not', 'think', 'Mr.', 'Palmer', 'would', 'visit', 'him', ',', 'for', 'he', 'is', 'in', 'the', 'opposition', ',', 'you', 'know', ',', 'and', 'besides', 'it', 'is', 'such', 'a', 'way', 'off', '.', 'I', 'know', 'why', 'you', 'inquire', 'about', 'him', ',', 'very', 'well', ';', 'your', 'sister', 'is', 'to', 'marry', 'him', '.', 'I', 'am', 'monstrous', 'glad', 'of', 'it', ',', 'for', 'then', 'I', 'shall', 'have', 'her', 'for', 'a', 'neighbour', 'you', 'know.', '”', '“', 'Upon', 'my', 'word', ',', '”', 'replied', 'Elinor', ',', '“', 'you', 'know', 'much', 'more', 'of', 'the', 'matter', 'than', 'I', 'do', ',', 'if', 'you', 'have', 'any', 'reason', 'to', 'expect', 'such', 'a', 'match.', '”', '“', 'Don', '’', 't', 'pretend', 'to', 'deny', 'it', ',', 'because', 'you', 'know', 'it', 'is', 'what', 'every', 'body', 'talks', 'of', '.', 'I', 'assure', 'you', 'I', 'heard', 'of', 'it', 'in', 'my', 'way', 'through', 'town.', '”', '“', 'My', 'dear', 'Mrs.', 'Palmer', '!', '”', '“', 'Upon', 'my', 'honour', 'I', 'did.—I', 'met', 'Colonel', 'Brandon', 'Monday', 'morning', 'in', 'Bond-street', ',', 'just', 'before', 'we', 'left', 'town', ',', 'and', 'he', 'told', 'me', 'of', 'it', 'directly.', '”', '“', 'You', 'surprise', 'me', 'very', 'much', '.', 'Colonel', 'Brandon', 'tell', 'you', 'of', 'it', '!', 'Surely', 'you', 'must', 'be', 'mistaken', '.', 'To', 'give', 'such', 'intelligence', 'to', 'a', 'person', 'who', 'could', 'not', 'be', 'interested', 'in', 'it', ',', 'even', 'if', 'it', 'were', 'true', ',', 'is', 'not', 'what', 'I', 'should', 'expect', 'Colonel', 'Brandon', 'to', 'do.', '”', '“', 'But', 'I', 'do', 'assure', 'you', 'it', 'was', 'so', ',', 'for', 'all', 'that', ',', 'and', 'I', 'will', 'tell', 'you', 'how', 'it', 'happened', '.', 'When', 'we', 'met', 'him', ',', 'he', 'turned', 'back', 'and', 'walked', 'with', 'us', ';', 'and', 'so', 'we', 'began', 'talking', 'of', 'my', 'brother', 'and', 'sister', ',', 'and', 'one', 'thing', 'and', 'another', ',', 'and', 'I', 'said', 'to', 'him', ',', '‘', 'So', ',', 'Colonel', ',', 'there', 'is', 'a', 'new', 'family', 'come', 'to', 'Barton', 'cottage', ',', 'I', 'hear', ',', 'and', 'mama', 'sends', 'me', 'word', 'they', 'are', 'very', 'pretty', ',', 'and', 'that', 'one', 'of', 'them', 'is', 'going', 'to', 'be', 'married', 'to', 'Mr.', 'Willoughby', 'of', 'Combe', 'Magna', '.', 'Is', 'it', 'true', ',', 'pray', '?', 'for', 'of', 'course', 'you', 'must', 'know', ',', 'as', 'you', 'have', 'been', 'in', 'Devonshire', 'so', 'lately.', '’', '”', '“', 'And', 'what', 'did', 'the', 'Colonel', 'say', '?', '”', '“', 'Oh—he', 'did', 'not', 'say', 'much', ';', 'but', 'he', 'looked', 'as', 'if', 'he', 'knew', 'it', 'to', 'be', 'true', ',', 'so', 'from', 'that', 'moment', 'I', 'set', 'it', 'down', 'as', 'certain', '.', 'It', 'will', 'be', 'quite', 'delightful', ',', 'I', 'declare', '!', 'When', 'is', 'it', 'to', 'take', 'place', '?', '”', '“', 'Mr', '.', 'Brandon', 'was', 'very', 'well', 'I', 'hope', '?', '”', '“', 'Oh', '!', 'yes', ',', 'quite', 'well', ';', 'and', 'so', 'full', 'of', 'your', 'praises', ',', 'he', 'did', 'nothing', 'but', 'say', 'fine', 'things', 'of', 'you.', '”', '“', 'I', 'am', 'flattered', 'by', 'his', 'commendation', '.', 'He', 'seems', 'an', 'excellent', 'man', ';', 'and', 'I', 'think', 'him', 'uncommonly', 'pleasing.', '”', '“', 'So', 'do', 'I', '.', 'He', 'is', 'such', 'a', 'charming', 'man', ',', 'that', 'it', 'is', 'quite', 'a', 'pity', 'he', 'should', 'be', 'so', 'grave', 'and', 'so', 'dull', '.', 'Mama', 'says', '_he_', 'was', 'in', 'love', 'with', 'your', 'sister', 'too', '.', 'I', 'assure', 'you', 'it', 'was', 'a', 'great', 'compliment', 'if', 'he', 'was', ',', 'for', 'he', 'hardly', 'ever', 'falls', 'in', 'love', 'with', 'any', 'body.', '”', '“', 'Is', 'Mr.', 'Willoughby', 'much', 'known', 'in', 'your', 'part', 'of', 'Somersetshire', '?', '”', 'said', 'Elinor', '.', '“', 'Oh', '!', 'yes', ',', 'extremely', 'well', ';', 'that', 'is', ',', 'I', 'do', 'not', 'believe', 'many', 'people', 'are', 'acquainted', 'with', 'him', ',', 'because', 'Combe', 'Magna', 'is', 'so', 'far', 'off', ';', 'but', 'they', 'all', 'think', 'him', 'extremely', 'agreeable', 'I', 'assure', 'you', '.', 'Nobody', 'is', 'more', 'liked', 'than', 'Mr.', 'Willoughby', 'wherever', 'he', 'goes', ',', 'and', 'so', 'you', 'may', 'tell', 'your', 'sister', '.', 'She', 'is', 'a', 'monstrous', 'lucky', 'girl', 'to', 'get', 'him', ',', 'upon', 'my', 'honour', ';', 'not', 'but', 'that', 'he', 'is', 'much', 'more', 'lucky', 'in', 'getting', 'her', ',', 'because', 'she', 'is', 'so', 'very', 'handsome', 'and', 'agreeable', ',', 'that', 'nothing', 'can', 'be', 'good', 'enough', 'for', 'her', '.', 'However', ',', 'I', 'don', '’', 't', 'think', 'her', 'hardly', 'at', 'all', 'handsomer', 'than', 'you', ',', 'I', 'assure', 'you', ';', 'for', 'I', 'think', 'you', 'both', 'excessively', 'pretty', ',', 'and', 'so', 'does', 'Mr.', 'Palmer', 'too', 'I', 'am', 'sure', ',', 'though', 'we', 'could', 'not', 'get', 'him', 'to', 'own', 'it', 'last', 'night.', '”', 'Mrs.', 'Palmer', '’', 's', 'information', 'respecting', 'Willoughby', 'was', 'not', 'very', 'material', ';', 'but', 'any', 'testimony', 'in', 'his', 'favour', ',', 'however', 'small', ',', 'was', 'pleasing', 'to', 'her', '.', '“', 'I', 'am', 'so', 'glad', 'we', 'are', 'got', 'acquainted', 'at', 'last', ',', '”', 'continued', 'Charlotte.—', '“', 'And', 'now', 'I', 'hope', 'we', 'shall', 'always', 'be', 'great', 'friends', '.', 'You', 'can', '’', 't', 'think', 'how', 'much', 'I', 'longed', 'to', 'see', 'you', '!', 'It', 'is', 'so', 'delightful', 'that', 'you', 'should', 'live', 'at', 'the', 'cottage', '!', 'Nothing', 'can', 'be', 'like', 'it', ',', 'to', 'be', 'sure', '!', 'And', 'I', 'am', 'so', 'glad', 'your', 'sister', 'is', 'going', 'to', 'be', 'well', 'married', '!', 'I', 'hope', 'you', 'will', 'be', 'a', 'great', 'deal', 'at', 'Combe', 'Magna', '.', 'It', 'is', 'a', 'sweet', 'place', ',', 'by', 'all', 'accounts.', '”', '“', 'You', 'have', 'been', 'long', 'acquainted', 'with', 'Colonel', 'Brandon', ',', 'have', 'not', 'you', '?', '”', '“', 'Yes', ',', 'a', 'great', 'while', ';', 'ever', 'since', 'my', 'sister', 'married', '.', 'He', 'was', 'a', 'particular', 'friend', 'of', 'Sir', 'John', '’', 's', '.', 'I', 'believe', ',', '”', 'she', 'added', 'in', 'a', 'low', 'voice', ',', '“', 'he', 'would', 'have', 'been', 'very', 'glad', 'to', 'have', 'had', 'me', ',', 'if', 'he', 'could', '.', 'Sir', 'John', 'and', 'Lady', 'Middleton', 'wished', 'it', 'very', 'much', '.', 'But', 'mama', 'did', 'not', 'think', 'the', 'match', 'good', 'enough', 'for', 'me', ',', 'otherwise', 'Sir', 'John', 'would', 'have', 'mentioned', 'it', 'to', 'the', 'Colonel', ',', 'and', 'we', 'should', 'have', 'been', 'married', 'immediately.', '”', '“', 'Did', 'not', 'Colonel', 'Brandon', 'know', 'of', 'Sir', 'John', '’', 's', 'proposal', 'to', 'your', 'mother', 'before', 'it', 'was', 'made', '?', 'Had', 'he', 'never', 'owned', 'his', 'affection', 'to', 'yourself', '?', '”', '“', 'Oh', ',', 'no', ';', 'but', 'if', 'mama', 'had', 'not', 'objected', 'to', 'it', ',', 'I', 'dare', 'say', 'he', 'would', 'have', 'liked', 'it', 'of', 'all', 'things', '.', 'He', 'had', 'not', 'seen', 'me', 'then', 'above', 'twice', ',', 'for', 'it', 'was', 'before', 'I', 'left', 'school', '.', 'However', ',', 'I', 'am', 'much', 'happier', 'as', 'I', 'am', '.', 'Mr.', 'Palmer', 'is', 'the', 'kind', 'of', 'man', 'I', 'like.', '”', 'CHAPTER', 'XXI', '.', 'The', 'Palmers', 'returned', 'to', 'Cleveland', 'the', 'next', 'day', ',', 'and', 'the', 'two', 'families', 'at', 'Barton', 'were', 'again', 'left', 'to', 'entertain', 'each', 'other', '.', 'But', 'this', 'did', 'not', 'last', 'long', ';', 'Elinor', 'had', 'hardly', 'got', 'their', 'last', 'visitors', 'out', 'of', 'her', 'head', ',', 'had', 'hardly', 'done', 'wondering', 'at', 'Charlotte', '’', 's', 'being', 'so', 'happy', 'without', 'a', 'cause', ',', 'at', 'Mr.', 'Palmer', '’', 's', 'acting', 'so', 'simply', ',', 'with', 'good', 'abilities', ',', 'and', 'at', 'the', 'strange', 'unsuitableness', 'which', 'often', 'existed', 'between', 'husband', 'and', 'wife', ',', 'before', 'Sir', 'John', '’', 's', 'and', 'Mrs.', 'Jennings', '’', 's', 'active', 'zeal', 'in', 'the', 'cause', 'of', 'society', ',', 'procured', 'her', 'some', 'other', 'new', 'acquaintance', 'to', 'see', 'and', 'observe', '.', 'In', 'a', 'morning', '’', 's', 'excursion', 'to', 'Exeter', ',', 'they', 'had', 'met', 'with', 'two', 'young', 'ladies', ',', 'whom', 'Mrs.', 'Jennings', 'had', 'the', 'satisfaction', 'of', 'discovering', 'to', 'be', 'her', 'relations', ',', 'and', 'this', 'was', 'enough', 'for', 'Sir', 'John', 'to', 'invite', 'them', 'directly', 'to', 'the', 'park', ',', 'as', 'soon', 'as', 'their', 'present', 'engagements', 'at', 'Exeter', 'were', 'over', '.', 'Their', 'engagements', 'at', 'Exeter', 'instantly', 'gave', 'way', 'before', 'such', 'an', 'invitation', ',', 'and', 'Lady', 'Middleton', 'was', 'thrown', 'into', 'no', 'little', 'alarm', 'on', 'the', 'return', 'of', 'Sir', 'John', ',', 'by', 'hearing', 'that', 'she', 'was', 'very', 'soon', 'to', 'receive', 'a', 'visit', 'from', 'two', 'girls', 'whom', 'she', 'had', 'never', 'seen', 'in', 'her', 'life', ',', 'and', 'of', 'whose', 'elegance', ',', '—whose', 'tolerable', 'gentility', 'even', ',', 'she', 'could', 'have', 'no', 'proof', ';', 'for', 'the', 'assurances', 'of', 'her', 'husband', 'and', 'mother', 'on', 'that', 'subject', 'went', 'for', 'nothing', 'at', 'all', '.', 'Their', 'being', 'her', 'relations', 'too', 'made', 'it', 'so', 'much', 'the', 'worse', ';', 'and', 'Mrs.', 'Jennings', '’', 's', 'attempts', 'at', 'consolation', 'were', 'therefore', 'unfortunately', 'founded', ',', 'when', 'she', 'advised', 'her', 'daughter', 'not', 'to', 'care', 'about', 'their', 'being', 'so', 'fashionable', ';', 'because', 'they', 'were', 'all', 'cousins', 'and', 'must', 'put', 'up', 'with', 'one', 'another', '.', 'As', 'it', 'was', 'impossible', ',', 'however', ',', 'now', 'to', 'prevent', 'their', 'coming', ',', 'Lady', 'Middleton', 'resigned', 'herself', 'to', 'the', 'idea', 'of', 'it', ',', 'with', 'all', 'the', 'philosophy', 'of', 'a', 'well-bred', 'woman', ',', 'contenting', 'herself', 'with', 'merely', 'giving', 'her', 'husband', 'a', 'gentle', 'reprimand', 'on', 'the', 'subject', 'five', 'or', 'six', 'times', 'every', 'day', '.', 'The', 'young', 'ladies', 'arrived', ':', 'their', 'appearance', 'was', 'by', 'no', 'means', 'ungenteel', 'or', 'unfashionable', '.', 'Their', 'dress', 'was', 'very', 'smart', ',', 'their', 'manners', 'very', 'civil', ',', 'they', 'were', 'delighted', 'with', 'the', 'house', ',', 'and', 'in', 'raptures', 'with', 'the', 'furniture', ',', 'and', 'they', 'happened', 'to', 'be', 'so', 'doatingly', 'fond', 'of', 'children', 'that', 'Lady', 'Middleton', '’', 's', 'good', 'opinion', 'was', 'engaged', 'in', 'their', 'favour', 'before', 'they', 'had', 'been', 'an', 'hour', 'at', 'the', 'Park', '.', 'She', 'declared', 'them', 'to', 'be', 'very', 'agreeable', 'girls', 'indeed', ',', 'which', 'for', 'her', 'ladyship', 'was', 'enthusiastic', 'admiration', '.', 'Sir', 'John', '’', 's', 'confidence', 'in', 'his', 'own', 'judgment', 'rose', 'with', 'this', 'animated', 'praise', ',', 'and', 'he', 'set', 'off', 'directly', 'for', 'the', 'cottage', 'to', 'tell', 'the', 'Miss', 'Dashwoods', 'of', 'the', 'Miss', 'Steeles', '’', 'arrival', ',', 'and', 'to', 'assure', 'them', 'of', 'their', 'being', 'the', 'sweetest', 'girls', 'in', 'the', 'world', '.', 'From', 'such', 'commendation', 'as', 'this', ',', 'however', ',', 'there', 'was', 'not', 'much', 'to', 'be', 'learned', ';', 'Elinor', 'well', 'knew', 'that', 'the', 'sweetest', 'girls', 'in', 'the', 'world', 'were', 'to', 'be', 'met', 'with', 'in', 'every', 'part', 'of', 'England', ',', 'under', 'every', 'possible', 'variation', 'of', 'form', ',', 'face', ',', 'temper', 'and', 'understanding', '.', 'Sir', 'John', 'wanted', 'the', 'whole', 'family', 'to', 'walk', 'to', 'the', 'Park', 'directly', 'and', 'look', 'at', 'his', 'guests', '.', 'Benevolent', ',', 'philanthropic', 'man', '!', 'It', 'was', 'painful', 'to', 'him', 'even', 'to', 'keep', 'a', 'third', 'cousin', 'to', 'himself', '.', '“', 'Do', 'come', 'now', ',', '”', 'said', 'he—', '“', 'pray', 'come—you', 'must', 'come—I', 'declare', 'you', 'shall', 'come—You', 'can', '’', 't', 'think', 'how', 'you', 'will', 'like', 'them', '.', 'Lucy', 'is', 'monstrous', 'pretty', ',', 'and', 'so', 'good', 'humoured', 'and', 'agreeable', '!', 'The', 'children', 'are', 'all', 'hanging', 'about', 'her', 'already', ',', 'as', 'if', 'she', 'was', 'an', 'old', 'acquaintance', '.', 'And', 'they', 'both', 'long', 'to', 'see', 'you', 'of', 'all', 'things', ',', 'for', 'they', 'have', 'heard', 'at', 'Exeter', 'that', 'you', 'are', 'the', 'most', 'beautiful', 'creatures', 'in', 'the', 'world', ';', 'and', 'I', 'have', 'told', 'them', 'it', 'is', 'all', 'very', 'true', ',', 'and', 'a', 'great', 'deal', 'more', '.', 'You', 'will', 'be', 'delighted', 'with', 'them', 'I', 'am', 'sure', '.', 'They', 'have', 'brought', 'the', 'whole', 'coach', 'full', 'of', 'playthings', 'for', 'the', 'children', '.', 'How', 'can', 'you', 'be', 'so', 'cross', 'as', 'not', 'to', 'come', '?', 'Why', 'they', 'are', 'your', 'cousins', ',', 'you', 'know', ',', 'after', 'a', 'fashion', '.', '_You_', 'are', 'my', 'cousins', ',', 'and', 'they', 'are', 'my', 'wife', '’', 's', ',', 'so', 'you', 'must', 'be', 'related.', '”', 'But', 'Sir', 'John', 'could', 'not', 'prevail', '.', 'He', 'could', 'only', 'obtain', 'a', 'promise', 'of', 'their', 'calling', 'at', 'the', 'Park', 'within', 'a', 'day', 'or', 'two', ',', 'and', 'then', 'left', 'them', 'in', 'amazement', 'at', 'their', 'indifference', ',', 'to', 'walk', 'home', 'and', 'boast', 'anew', 'of', 'their', 'attractions', 'to', 'the', 'Miss', 'Steeles', ',', 'as', 'he', 'had', 'been', 'already', 'boasting', 'of', 'the', 'Miss', 'Steeles', 'to', 'them', '.', 'When', 'their', 'promised', 'visit', 'to', 'the', 'Park', 'and', 'consequent', 'introduction', 'to', 'these', 'young', 'ladies', 'took', 'place', ',', 'they', 'found', 'in', 'the', 'appearance', 'of', 'the', 'eldest', ',', 'who', 'was', 'nearly', 'thirty', ',', 'with', 'a', 'very', 'plain', 'and', 'not', 'a', 'sensible', 'face', ',', 'nothing', 'to', 'admire', ';', 'but', 'in', 'the', 'other', ',', 'who', 'was', 'not', 'more', 'than', 'two', 'or', 'three', 'and', 'twenty', ',', 'they', 'acknowledged', 'considerable', 'beauty', ';', 'her', 'features', 'were', 'pretty', ',', 'and', 'she', 'had', 'a', 'sharp', 'quick', 'eye', ',', 'and', 'a', 'smartness', 'of', 'air', ',', 'which', 'though', 'it', 'did', 'not', 'give', 'actual', 'elegance', 'or', 'grace', ',', 'gave', 'distinction', 'to', 'her', 'person', '.', 'Their', 'manners', 'were', 'particularly', 'civil', ',', 'and', 'Elinor', 'soon', 'allowed', 'them', 'credit', 'for', 'some', 'kind', 'of', 'sense', ',', 'when', 'she', 'saw', 'with', 'what', 'constant', 'and', 'judicious', 'attention', 'they', 'were', 'making', 'themselves', 'agreeable', 'to', 'Lady', 'Middleton', '.', 'With', 'her', 'children', 'they', 'were', 'in', 'continual', 'raptures', ',', 'extolling', 'their', 'beauty', ',', 'courting', 'their', 'notice', ',', 'and', 'humouring', 'their', 'whims', ';', 'and', 'such', 'of', 'their', 'time', 'as', 'could', 'be', 'spared', 'from', 'the', 'importunate', 'demands', 'which', 'this', 'politeness', 'made', 'on', 'it', ',', 'was', 'spent', 'in', 'admiration', 'of', 'whatever', 'her', 'ladyship', 'was', 'doing', ',', 'if', 'she', 'happened', 'to', 'be', 'doing', 'any', 'thing', ',', 'or', 'in', 'taking', 'patterns', 'of', 'some', 'elegant', 'new', 'dress', ',', 'in', 'which', 'her', 'appearance', 'the', 'day', 'before', 'had', 'thrown', 'them', 'into', 'unceasing', 'delight', '.', 'Fortunately', 'for', 'those', 'who', 'pay', 'their', 'court', 'through', 'such', 'foibles', ',', 'a', 'fond', 'mother', ',', 'though', ',', 'in', 'pursuit', 'of', 'praise', 'for', 'her', 'children', ',', 'the', 'most', 'rapacious', 'of', 'human', 'beings', ',', 'is', 'likewise', 'the', 'most', 'credulous', ';', 'her', 'demands', 'are', 'exorbitant', ';', 'but', 'she', 'will', 'swallow', 'any', 'thing', ';', 'and', 'the', 'excessive', 'affection', 'and', 'endurance', 'of', 'the', 'Miss', 'Steeles', 'towards', 'her', 'offspring', 'were', 'viewed', 'therefore', 'by', 'Lady', 'Middleton', 'without', 'the', 'smallest', 'surprise', 'or', 'distrust', '.', 'She', 'saw', 'with', 'maternal', 'complacency', 'all', 'the', 'impertinent', 'encroachments', 'and', 'mischievous', 'tricks', 'to', 'which', 'her', 'cousins', 'submitted', '.', 'She', 'saw', 'their', 'sashes', 'untied', ',', 'their', 'hair', 'pulled', 'about', 'their', 'ears', ',', 'their', 'work-bags', 'searched', ',', 'and', 'their', 'knives', 'and', 'scissors', 'stolen', 'away', ',', 'and', 'felt', 'no', 'doubt', 'of', 'its', 'being', 'a', 'reciprocal', 'enjoyment', '.', 'It', 'suggested', 'no', 'other', 'surprise', 'than', 'that', 'Elinor', 'and', 'Marianne', 'should', 'sit', 'so', 'composedly', 'by', ',', 'without', 'claiming', 'a', 'share', 'in', 'what', 'was', 'passing', '.', '“', 'John', 'is', 'in', 'such', 'spirits', 'today', '!', '”', 'said', 'she', ',', 'on', 'his', 'taking', 'Miss', 'Steeles', '’', 's', 'pocket', 'handkerchief', ',', 'and', 'throwing', 'it', 'out', 'of', 'window—', '“', 'He', 'is', 'full', 'of', 'monkey', 'tricks.', '”', 'And', 'soon', 'afterwards', ',', 'on', 'the', 'second', 'boy', '’', 's', 'violently', 'pinching', 'one', 'of', 'the', 'same', 'lady', '’', 's', 'fingers', ',', 'she', 'fondly', 'observed', ',', '“', 'How', 'playful', 'William', 'is', '!', '”', '“', 'And', 'here', 'is', 'my', 'sweet', 'little', 'Annamaria', ',', '”', 'she', 'added', ',', 'tenderly', 'caressing', 'a', 'little', 'girl', 'of', 'three', 'years', 'old', ',', 'who', 'had', 'not', 'made', 'a', 'noise', 'for', 'the', 'last', 'two', 'minutes', ';', '“', 'And', 'she', 'is', 'always', 'so', 'gentle', 'and', 'quiet—Never', 'was', 'there', 'such', 'a', 'quiet', 'little', 'thing', '!', '”', 'But', 'unfortunately', 'in', 'bestowing', 'these', 'embraces', ',', 'a', 'pin', 'in', 'her', 'ladyship', '’', 's', 'head', 'dress', 'slightly', 'scratching', 'the', 'child', '’', 's', 'neck', ',', 'produced', 'from', 'this', 'pattern', 'of', 'gentleness', 'such', 'violent', 'screams', ',', 'as', 'could', 'hardly', 'be', 'outdone', 'by', 'any', 'creature', 'professedly', 'noisy', '.', 'The', 'mother', '’', 's', 'consternation', 'was', 'excessive', ';', 'but', 'it', 'could', 'not', 'surpass', 'the', 'alarm', 'of', 'the', 'Miss', 'Steeles', ',', 'and', 'every', 'thing', 'was', 'done', 'by', 'all', 'three', ',', 'in', 'so', 'critical', 'an', 'emergency', ',', 'which', 'affection', 'could', 'suggest', 'as', 'likely', 'to', 'assuage', 'the', 'agonies', 'of', 'the', 'little', 'sufferer', '.', 'She', 'was', 'seated', 'in', 'her', 'mother', '’', 's', 'lap', ',', 'covered', 'with', 'kisses', ',', 'her', 'wound', 'bathed', 'with', 'lavender-water', ',', 'by', 'one', 'of', 'the', 'Miss', 'Steeles', ',', 'who', 'was', 'on', 'her', 'knees', 'to', 'attend', 'her', ',', 'and', 'her', 'mouth', 'stuffed', 'with', 'sugar', 'plums', 'by', 'the', 'other', '.', 'With', 'such', 'a', 'reward', 'for', 'her', 'tears', ',', 'the', 'child', 'was', 'too', 'wise', 'to', 'cease', 'crying', '.', 'She', 'still', 'screamed', 'and', 'sobbed', 'lustily', ',', 'kicked', 'her', 'two', 'brothers', 'for', 'offering', 'to', 'touch', 'her', ',', 'and', 'all', 'their', 'united', 'soothings', 'were', 'ineffectual', 'till', 'Lady', 'Middleton', 'luckily', 'remembering', 'that', 'in', 'a', 'scene', 'of', 'similar', 'distress', 'last', 'week', ',', 'some', 'apricot', 'marmalade', 'had', 'been', 'successfully', 'applied', 'for', 'a', 'bruised', 'temple', ',', 'the', 'same', 'remedy', 'was', 'eagerly', 'proposed', 'for', 'this', 'unfortunate', 'scratch', ',', 'and', 'a', 'slight', 'intermission', 'of', 'screams', 'in', 'the', 'young', 'lady', 'on', 'hearing', 'it', ',', 'gave', 'them', 'reason', 'to', 'hope', 'that', 'it', 'would', 'not', 'be', 'rejected', '.', 'She', 'was', 'carried', 'out', 'of', 'the', 'room', 'therefore', 'in', 'her', 'mother', '’', 's', 'arms', ',', 'in', 'quest', 'of', 'this', 'medicine', ',', 'and', 'as', 'the', 'two', 'boys', 'chose', 'to', 'follow', ',', 'though', 'earnestly', 'entreated', 'by', 'their', 'mother', 'to', 'stay', 'behind', ',', 'the', 'four', 'young', 'ladies', 'were', 'left', 'in', 'a', 'quietness', 'which', 'the', 'room', 'had', 'not', 'known', 'for', 'many', 'hours', '.', '“', 'Poor', 'little', 'creatures', '!', '”', 'said', 'Miss', 'Steele', ',', 'as', 'soon', 'as', 'they', 'were', 'gone', '.', '“', 'It', 'might', 'have', 'been', 'a', 'very', 'sad', 'accident.', '”', '“', 'Yet', 'I', 'hardly', 'know', 'how', ',', '”', 'cried', 'Marianne', ',', '“', 'unless', 'it', 'had', 'been', 'under', 'totally', 'different', 'circumstances', '.', 'But', 'this', 'is', 'the', 'usual', 'way', 'of', 'heightening', 'alarm', ',', 'where', 'there', 'is', 'nothing', 'to', 'be', 'alarmed', 'at', 'in', 'reality.', '”', '“', 'What', 'a', 'sweet', 'woman', 'Lady', 'Middleton', 'is', '!', '”', 'said', 'Lucy', 'Steele', '.', 'Marianne', 'was', 'silent', ';', 'it', 'was', 'impossible', 'for', 'her', 'to', 'say', 'what', 'she', 'did', 'not', 'feel', ',', 'however', 'trivial', 'the', 'occasion', ';', 'and', 'upon', 'Elinor', 'therefore', 'the', 'whole', 'task', 'of', 'telling', 'lies', 'when', 'politeness', 'required', 'it', ',', 'always', 'fell', '.', 'She', 'did', 'her', 'best', 'when', 'thus', 'called', 'on', ',', 'by', 'speaking', 'of', 'Lady', 'Middleton', 'with', 'more', 'warmth', 'than', 'she', 'felt', ',', 'though', 'with', 'far', 'less', 'than', 'Miss', 'Lucy', '.', '“', 'And', 'Sir', 'John', 'too', ',', '”', 'cried', 'the', 'elder', 'sister', ',', '“', 'what', 'a', 'charming', 'man', 'he', 'is', '!', '”', 'Here', 'too', ',', 'Miss', 'Dashwood', '’', 's', 'commendation', ',', 'being', 'only', 'simple', 'and', 'just', ',', 'came', 'in', 'without', 'any', 'eclat', '.', 'She', 'merely', 'observed', 'that', 'he', 'was', 'perfectly', 'good', 'humoured', 'and', 'friendly', '.', '“', 'And', 'what', 'a', 'charming', 'little', 'family', 'they', 'have', '!', 'I', 'never', 'saw', 'such', 'fine', 'children', 'in', 'my', 'life.—I', 'declare', 'I', 'quite', 'doat', 'upon', 'them', 'already', ',', 'and', 'indeed', 'I', 'am', 'always', 'distractedly', 'fond', 'of', 'children.', '”', '“', 'I', 'should', 'guess', 'so', ',', '”', 'said', 'Elinor', ',', 'with', 'a', 'smile', ',', '“', 'from', 'what', 'I', 'have', 'witnessed', 'this', 'morning.', '”', '“', 'I', 'have', 'a', 'notion', ',', '”', 'said', 'Lucy', ',', '“', 'you', 'think', 'the', 'little', 'Middletons', 'rather', 'too', 'much', 'indulged', ';', 'perhaps', 'they', 'may', 'be', 'the', 'outside', 'of', 'enough', ';', 'but', 'it', 'is', 'so', 'natural', 'in', 'Lady', 'Middleton', ';', 'and', 'for', 'my', 'part', ',', 'I', 'love', 'to', 'see', 'children', 'full', 'of', 'life', 'and', 'spirits', ';', 'I', 'can', 'not', 'bear', 'them', 'if', 'they', 'are', 'tame', 'and', 'quiet.', '”', '“', 'I', 'confess', ',', '”', 'replied', 'Elinor', ',', '“', 'that', 'while', 'I', 'am', 'at', 'Barton', 'Park', ',', 'I', 'never', 'think', 'of', 'tame', 'and', 'quiet', 'children', 'with', 'any', 'abhorrence.', '”', 'A', 'short', 'pause', 'succeeded', 'this', 'speech', ',', 'which', 'was', 'first', 'broken', 'by', 'Miss', 'Steele', ',', 'who', 'seemed', 'very', 'much', 'disposed', 'for', 'conversation', ',', 'and', 'who', 'now', 'said', 'rather', 'abruptly', ',', '“', 'And', 'how', 'do', 'you', 'like', 'Devonshire', ',', 'Miss', 'Dashwood', '?', 'I', 'suppose', 'you', 'were', 'very', 'sorry', 'to', 'leave', 'Sussex.', '”', 'In', 'some', 'surprise', 'at', 'the', 'familiarity', 'of', 'this', 'question', ',', 'or', 'at', 'least', 'of', 'the', 'manner', 'in', 'which', 'it', 'was', 'spoken', ',', 'Elinor', 'replied', 'that', 'she', 'was', '.', '“', 'Norland', 'is', 'a', 'prodigious', 'beautiful', 'place', ',', 'is', 'not', 'it', '?', '”', 'added', 'Miss', 'Steele', '.', '“', 'We', 'have', 'heard', 'Sir', 'John', 'admire', 'it', 'excessively', ',', '”', 'said', 'Lucy', ',', 'who', 'seemed', 'to', 'think', 'some', 'apology', 'necessary', 'for', 'the', 'freedom', 'of', 'her', 'sister', '.', '“', 'I', 'think', 'every', 'one', '_must_', 'admire', 'it', ',', '”', 'replied', 'Elinor', ',', '“', 'who', 'ever', 'saw', 'the', 'place', ';', 'though', 'it', 'is', 'not', 'to', 'be', 'supposed', 'that', 'any', 'one', 'can', 'estimate', 'its', 'beauties', 'as', 'we', 'do.', '”', '“', 'And', 'had', 'you', 'a', 'great', 'many', 'smart', 'beaux', 'there', '?', 'I', 'suppose', 'you', 'have', 'not', 'so', 'many', 'in', 'this', 'part', 'of', 'the', 'world', ';', 'for', 'my', 'part', ',', 'I', 'think', 'they', 'are', 'a', 'vast', 'addition', 'always.', '”', '“', 'But', 'why', 'should', 'you', 'think', ',', '”', 'said', 'Lucy', ',', 'looking', 'ashamed', 'of', 'her', 'sister', ',', '“', 'that', 'there', 'are', 'not', 'as', 'many', 'genteel', 'young', 'men', 'in', 'Devonshire', 'as', 'Sussex', '?', '”', '“', 'Nay', ',', 'my', 'dear', ',', 'I', '’', 'm', 'sure', 'I', 'don', '’', 't', 'pretend', 'to', 'say', 'that', 'there', 'an', '’', 't', '.', 'I', '’', 'm', 'sure', 'there', '’', 's', 'a', 'vast', 'many', 'smart', 'beaux', 'in', 'Exeter', ';', 'but', 'you', 'know', ',', 'how', 'could', 'I', 'tell', 'what', 'smart', 'beaux', 'there', 'might', 'be', 'about', 'Norland', ';', 'and', 'I', 'was', 'only', 'afraid', 'the', 'Miss', 'Dashwoods', 'might', 'find', 'it', 'dull', 'at', 'Barton', ',', 'if', 'they', 'had', 'not', 'so', 'many', 'as', 'they', 'used', 'to', 'have', '.', 'But', 'perhaps', 'you', 'young', 'ladies', 'may', 'not', 'care', 'about', 'the', 'beaux', ',', 'and', 'had', 'as', 'lief', 'be', 'without', 'them', 'as', 'with', 'them', '.', 'For', 'my', 'part', ',', 'I', 'think', 'they', 'are', 'vastly', 'agreeable', ',', 'provided', 'they', 'dress', 'smart', 'and', 'behave', 'civil', '.', 'But', 'I', 'can', '’', 't', 'bear', 'to', 'see', 'them', 'dirty', 'and', 'nasty', '.', 'Now', 'there', '’', 's', 'Mr.', 'Rose', 'at', 'Exeter', ',', 'a', 'prodigious', 'smart', 'young', 'man', ',', 'quite', 'a', 'beau', ',', 'clerk', 'to', 'Mr.', 'Simpson', ',', 'you', 'know', ',', 'and', 'yet', 'if', 'you', 'do', 'but', 'meet', 'him', 'of', 'a', 'morning', ',', 'he', 'is', 'not', 'fit', 'to', 'be', 'seen', '.', 'I', 'suppose', 'your', 'brother', 'was', 'quite', 'a', 'beau', ',', 'Miss', 'Dashwood', ',', 'before', 'he', 'married', ',', 'as', 'he', 'was', 'so', 'rich', '?', '”', '“', 'Upon', 'my', 'word', ',', '”', 'replied', 'Elinor', ',', '“', 'I', 'can', 'not', 'tell', 'you', ',', 'for', 'I', 'do', 'not', 'perfectly', 'comprehend', 'the', 'meaning', 'of', 'the', 'word', '.', 'But', 'this', 'I', 'can', 'say', ',', 'that', 'if', 'he', 'ever', 'was', 'a', 'beau', 'before', 'he', 'married', ',', 'he', 'is', 'one', 'still', 'for', 'there', 'is', 'not', 'the', 'smallest', 'alteration', 'in', 'him.', '”', '“', 'Oh', '!', 'dear', '!', 'one', 'never', 'thinks', 'of', 'married', 'men', '’', 's', 'being', 'beaux—they', 'have', 'something', 'else', 'to', 'do.', '”', '“', 'Lord', '!', 'Anne', ',', '”', 'cried', 'her', 'sister', ',', '“', 'you', 'can', 'talk', 'of', 'nothing', 'but', 'beaux', ';', '—you', 'will', 'make', 'Miss', 'Dashwood', 'believe', 'you', 'think', 'of', 'nothing', 'else.', '”', 'And', 'then', 'to', 'turn', 'the', 'discourse', ',', 'she', 'began', 'admiring', 'the', 'house', 'and', 'the', 'furniture', '.', 'This', 'specimen', 'of', 'the', 'Miss', 'Steeles', 'was', 'enough', '.', 'The', 'vulgar', 'freedom', 'and', 'folly', 'of', 'the', 'eldest', 'left', 'her', 'no', 'recommendation', ',', 'and', 'as', 'Elinor', 'was', 'not', 'blinded', 'by', 'the', 'beauty', ',', 'or', 'the', 'shrewd', 'look', 'of', 'the', 'youngest', ',', 'to', 'her', 'want', 'of', 'real', 'elegance', 'and', 'artlessness', ',', 'she', 'left', 'the', 'house', 'without', 'any', 'wish', 'of', 'knowing', 'them', 'better', '.', 'Not', 'so', 'the', 'Miss', 'Steeles', '.', 'They', 'came', 'from', 'Exeter', ',', 'well', 'provided', 'with', 'admiration', 'for', 'the', 'use', 'of', 'Sir', 'John', 'Middleton', ',', 'his', 'family', ',', 'and', 'all', 'his', 'relations', ',', 'and', 'no', 'niggardly', 'proportion', 'was', 'now', 'dealt', 'out', 'to', 'his', 'fair', 'cousins', ',', 'whom', 'they', 'declared', 'to', 'be', 'the', 'most', 'beautiful', ',', 'elegant', ',', 'accomplished', ',', 'and', 'agreeable', 'girls', 'they', 'had', 'ever', 'beheld', ',', 'and', 'with', 'whom', 'they', 'were', 'particularly', 'anxious', 'to', 'be', 'better', 'acquainted', '.', 'And', 'to', 'be', 'better', 'acquainted', 'therefore', ',', 'Elinor', 'soon', 'found', 'was', 'their', 'inevitable', 'lot', ',', 'for', 'as', 'Sir', 'John', 'was', 'entirely', 'on', 'the', 'side', 'of', 'the', 'Miss', 'Steeles', ',', 'their', 'party', 'would', 'be', 'too', 'strong', 'for', 'opposition', ',', 'and', 'that', 'kind', 'of', 'intimacy', 'must', 'be', 'submitted', 'to', ',', 'which', 'consists', 'of', 'sitting', 'an', 'hour', 'or', 'two', 'together', 'in', 'the', 'same', 'room', 'almost', 'every', 'day', '.', 'Sir', 'John', 'could', 'do', 'no', 'more', ';', 'but', 'he', 'did', 'not', 'know', 'that', 'any', 'more', 'was', 'required', ':', 'to', 'be', 'together', 'was', ',', 'in', 'his', 'opinion', ',', 'to', 'be', 'intimate', ',', 'and', 'while', 'his', 'continual', 'schemes', 'for', 'their', 'meeting', 'were', 'effectual', ',', 'he', 'had', 'not', 'a', 'doubt', 'of', 'their', 'being', 'established', 'friends', '.', 'To', 'do', 'him', 'justice', ',', 'he', 'did', 'every', 'thing', 'in', 'his', 'power', 'to', 'promote', 'their', 'unreserve', ',', 'by', 'making', 'the', 'Miss', 'Steeles', 'acquainted', 'with', 'whatever', 'he', 'knew', 'or', 'supposed', 'of', 'his', 'cousins', '’', 'situations', 'in', 'the', 'most', 'delicate', 'particulars', ';', 'and', 'Elinor', 'had', 'not', 'seen', 'them', 'more', 'than', 'twice', ',', 'before', 'the', 'eldest', 'of', 'them', 'wished', 'her', 'joy', 'on', 'her', 'sister', '’', 's', 'having', 'been', 'so', 'lucky', 'as', 'to', 'make', 'a', 'conquest', 'of', 'a', 'very', 'smart', 'beau', 'since', 'she', 'came', 'to', 'Barton', '.', '“', '’', 'Twill', 'be', 'a', 'fine', 'thing', 'to', 'have', 'her', 'married', 'so', 'young', 'to', 'be', 'sure', ',', '”', 'said', 'she', ',', '“', 'and', 'I', 'hear', 'he', 'is', 'quite', 'a', 'beau', ',', 'and', 'prodigious', 'handsome', '.', 'And', 'I', 'hope', 'you', 'may', 'have', 'as', 'good', 'luck', 'yourself', 'soon', ',', '—but', 'perhaps', 'you', 'may', 'have', 'a', 'friend', 'in', 'the', 'corner', 'already.', '”', 'Elinor', 'could', 'not', 'suppose', 'that', 'Sir', 'John', 'would', 'be', 'more', 'nice', 'in', 'proclaiming', 'his', 'suspicions', 'of', 'her', 'regard', 'for', 'Edward', ',', 'than', 'he', 'had', 'been', 'with', 'respect', 'to', 'Marianne', ';', 'indeed', 'it', 'was', 'rather', 'his', 'favourite', 'joke', 'of', 'the', 'two', ',', 'as', 'being', 'somewhat', 'newer', 'and', 'more', 'conjectural', ';', 'and', 'since', 'Edward', '’', 's', 'visit', ',', 'they', 'had', 'never', 'dined', 'together', 'without', 'his', 'drinking', 'to', 'her', 'best', 'affections', 'with', 'so', 'much', 'significancy', 'and', 'so', 'many', 'nods', 'and', 'winks', ',', 'as', 'to', 'excite', 'general', 'attention', '.', 'The', 'letter', 'F—had', 'been', 'likewise', 'invariably', 'brought', 'forward', ',', 'and', 'found', 'productive', 'of', 'such', 'countless', 'jokes', ',', 'that', 'its', 'character', 'as', 'the', 'wittiest', 'letter', 'in', 'the', 'alphabet', 'had', 'been', 'long', 'established', 'with', 'Elinor', '.', 'The', 'Miss', 'Steeles', ',', 'as', 'she', 'expected', ',', 'had', 'now', 'all', 'the', 'benefit', 'of', 'these', 'jokes', ',', 'and', 'in', 'the', 'eldest', 'of', 'them', 'they', 'raised', 'a', 'curiosity', 'to', 'know', 'the', 'name', 'of', 'the', 'gentleman', 'alluded', 'to', ',', 'which', ',', 'though', 'often', 'impertinently', 'expressed', ',', 'was', 'perfectly', 'of', 'a', 'piece', 'with', 'her', 'general', 'inquisitiveness', 'into', 'the', 'concerns', 'of', 'their', 'family', '.', 'But', 'Sir', 'John', 'did', 'not', 'sport', 'long', 'with', 'the', 'curiosity', 'which', 'he', 'delighted', 'to', 'raise', ',', 'for', 'he', 'had', 'at', 'least', 'as', 'much', 'pleasure', 'in', 'telling', 'the', 'name', ',', 'as', 'Miss', 'Steele', 'had', 'in', 'hearing', 'it', '.', '“', 'His', 'name', 'is', 'Ferrars', ',', '”', 'said', 'he', ',', 'in', 'a', 'very', 'audible', 'whisper', ';', '“', 'but', 'pray', 'do', 'not', 'tell', 'it', ',', 'for', 'it', '’', 's', 'a', 'great', 'secret.', '”', '“', 'Ferrars', '!', '”', 'repeated', 'Miss', 'Steele', ';', '“', 'Mr', '.', 'Ferrars', 'is', 'the', 'happy', 'man', ',', 'is', 'he', '?', 'What', '!', 'your', 'sister-in-law', '’', 's', 'brother', ',', 'Miss', 'Dashwood', '?', 'a', 'very', 'agreeable', 'young', 'man', 'to', 'be', 'sure', ';', 'I', 'know', 'him', 'very', 'well.', '”', '“', 'How', 'can', 'you', 'say', 'so', ',', 'Anne', '?', '”', 'cried', 'Lucy', ',', 'who', 'generally', 'made', 'an', 'amendment', 'to', 'all', 'her', 'sister', '’', 's', 'assertions', '.', '“', 'Though', 'we', 'have', 'seen', 'him', 'once', 'or', 'twice', 'at', 'my', 'uncle', '’', 's', ',', 'it', 'is', 'rather', 'too', 'much', 'to', 'pretend', 'to', 'know', 'him', 'very', 'well.', '”', 'Elinor', 'heard', 'all', 'this', 'with', 'attention', 'and', 'surprise', '.', '“', 'And', 'who', 'was', 'this', 'uncle', '?', 'Where', 'did', 'he', 'live', '?', 'How', 'came', 'they', 'acquainted', '?', '”', 'She', 'wished', 'very', 'much', 'to', 'have', 'the', 'subject', 'continued', ',', 'though', 'she', 'did', 'not', 'chuse', 'to', 'join', 'in', 'it', 'herself', ';', 'but', 'nothing', 'more', 'of', 'it', 'was', 'said', ',', 'and', 'for', 'the', 'first', 'time', 'in', 'her', 'life', ',', 'she', 'thought', 'Mrs.', 'Jennings', 'deficient', 'either', 'in', 'curiosity', 'after', 'petty', 'information', ',', 'or', 'in', 'a', 'disposition', 'to', 'communicate', 'it', '.', 'The', 'manner', 'in', 'which', 'Miss', 'Steele', 'had', 'spoken', 'of', 'Edward', ',', 'increased', 'her', 'curiosity', ';', 'for', 'it', 'struck', 'her', 'as', 'being', 'rather', 'ill-natured', ',', 'and', 'suggested', 'the', 'suspicion', 'of', 'that', 'lady', '’', 's', 'knowing', ',', 'or', 'fancying', 'herself', 'to', 'know', 'something', 'to', 'his', 'disadvantage.—But', 'her', 'curiosity', 'was', 'unavailing', ',', 'for', 'no', 'farther', 'notice', 'was', 'taken', 'of', 'Mr.', 'Ferrars', '’', 's', 'name', 'by', 'Miss', 'Steele', 'when', 'alluded', 'to', ',', 'or', 'even', 'openly', 'mentioned', 'by', 'Sir', 'John', '.', 'CHAPTER', 'XXII', '.', 'Marianne', ',', 'who', 'had', 'never', 'much', 'toleration', 'for', 'any', 'thing', 'like', 'impertinence', ',', 'vulgarity', ',', 'inferiority', 'of', 'parts', ',', 'or', 'even', 'difference', 'of', 'taste', 'from', 'herself', ',', 'was', 'at', 'this', 'time', 'particularly', 'ill-disposed', ',', 'from', 'the', 'state', 'of', 'her', 'spirits', ',', 'to', 'be', 'pleased', 'with', 'the', 'Miss', 'Steeles', ',', 'or', 'to', 'encourage', 'their', 'advances', ';', 'and', 'to', 'the', 'invariable', 'coldness', 'of', 'her', 'behaviour', 'towards', 'them', ',', 'which', 'checked', 'every', 'endeavour', 'at', 'intimacy', 'on', 'their', 'side', ',', 'Elinor', 'principally', 'attributed', 'that', 'preference', 'of', 'herself', 'which', 'soon', 'became', 'evident', 'in', 'the', 'manners', 'of', 'both', ',', 'but', 'especially', 'of', 'Lucy', ',', 'who', 'missed', 'no', 'opportunity', 'of', 'engaging', 'her', 'in', 'conversation', ',', 'or', 'of', 'striving', 'to', 'improve', 'their', 'acquaintance', 'by', 'an', 'easy', 'and', 'frank', 'communication', 'of', 'her', 'sentiments', '.', 'Lucy', 'was', 'naturally', 'clever', ';', 'her', 'remarks', 'were', 'often', 'just', 'and', 'amusing', ';', 'and', 'as', 'a', 'companion', 'for', 'half', 'an', 'hour', 'Elinor', 'frequently', 'found', 'her', 'agreeable', ';', 'but', 'her', 'powers', 'had', 'received', 'no', 'aid', 'from', 'education', ':', 'she', 'was', 'ignorant', 'and', 'illiterate', ';', 'and', 'her', 'deficiency', 'of', 'all', 'mental', 'improvement', ',', 'her', 'want', 'of', 'information', 'in', 'the', 'most', 'common', 'particulars', ',', 'could', 'not', 'be', 'concealed', 'from', 'Miss', 'Dashwood', ',', 'in', 'spite', 'of', 'her', 'constant', 'endeavour', 'to', 'appear', 'to', 'advantage', '.', 'Elinor', 'saw', ',', 'and', 'pitied', 'her', 'for', ',', 'the', 'neglect', 'of', 'abilities', 'which', 'education', 'might', 'have', 'rendered', 'so', 'respectable', ';', 'but', 'she', 'saw', ',', 'with', 'less', 'tenderness', 'of', 'feeling', ',', 'the', 'thorough', 'want', 'of', 'delicacy', ',', 'of', 'rectitude', ',', 'and', 'integrity', 'of', 'mind', ',', 'which', 'her', 'attentions', ',', 'her', 'assiduities', ',', 'her', 'flatteries', 'at', 'the', 'Park', 'betrayed', ';', 'and', 'she', 'could', 'have', 'no', 'lasting', 'satisfaction', 'in', 'the', 'company', 'of', 'a', 'person', 'who', 'joined', 'insincerity', 'with', 'ignorance', ';', 'whose', 'want', 'of', 'instruction', 'prevented', 'their', 'meeting', 'in', 'conversation', 'on', 'terms', 'of', 'equality', ',', 'and', 'whose', 'conduct', 'toward', 'others', 'made', 'every', 'show', 'of', 'attention', 'and', 'deference', 'towards', 'herself', 'perfectly', 'valueless', '.', '“', 'You', 'will', 'think', 'my', 'question', 'an', 'odd', 'one', ',', 'I', 'dare', 'say', ',', '”', 'said', 'Lucy', 'to', 'her', 'one', 'day', ',', 'as', 'they', 'were', 'walking', 'together', 'from', 'the', 'park', 'to', 'the', 'cottage—', '“', 'but', 'pray', ',', 'are', 'you', 'personally', 'acquainted', 'with', 'your', 'sister-in-law', '’', 's', 'mother', ',', 'Mrs.', 'Ferrars', '?', '”', 'Elinor', '_did_', 'think', 'the', 'question', 'a', 'very', 'odd', 'one', ',', 'and', 'her', 'countenance', 'expressed', 'it', ',', 'as', 'she', 'answered', 'that', 'she', 'had', 'never', 'seen', 'Mrs.', 'Ferrars', '.', '“', 'Indeed', '!', '”', 'replied', 'Lucy', ';', '“', 'I', 'wonder', 'at', 'that', ',', 'for', 'I', 'thought', 'you', 'must', 'have', 'seen', 'her', 'at', 'Norland', 'sometimes', '.', 'Then', ',', 'perhaps', ',', 'you', 'can', 'not', 'tell', 'me', 'what', 'sort', 'of', 'a', 'woman', 'she', 'is', '?', '”', '“', 'No', ',', '”', 'returned', 'Elinor', ',', 'cautious', 'of', 'giving', 'her', 'real', 'opinion', 'of', 'Edward', '’', 's', 'mother', ',', 'and', 'not', 'very', 'desirous', 'of', 'satisfying', 'what', 'seemed', 'impertinent', 'curiosity', ';', '“', 'I', 'know', 'nothing', 'of', 'her.', '”', '“', 'I', 'am', 'sure', 'you', 'think', 'me', 'very', 'strange', ',', 'for', 'enquiring', 'about', 'her', 'in', 'such', 'a', 'way', ',', '”', 'said', 'Lucy', ',', 'eyeing', 'Elinor', 'attentively', 'as', 'she', 'spoke', ';', '“', 'but', 'perhaps', 'there', 'may', 'be', 'reasons—I', 'wish', 'I', 'might', 'venture', ';', 'but', 'however', 'I', 'hope', 'you', 'will', 'do', 'me', 'the', 'justice', 'of', 'believing', 'that', 'I', 'do', 'not', 'mean', 'to', 'be', 'impertinent.', '”', 'Elinor', 'made', 'her', 'a', 'civil', 'reply', ',', 'and', 'they', 'walked', 'on', 'for', 'a', 'few', 'minutes', 'in', 'silence', '.', 'It', 'was', 'broken', 'by', 'Lucy', ',', 'who', 'renewed', 'the', 'subject', 'again', 'by', 'saying', ',', 'with', 'some', 'hesitation', ',', '“', 'I', 'can', 'not', 'bear', 'to', 'have', 'you', 'think', 'me', 'impertinently', 'curious', '.', 'I', 'am', 'sure', 'I', 'would', 'rather', 'do', 'any', 'thing', 'in', 'the', 'world', 'than', 'be', 'thought', 'so', 'by', 'a', 'person', 'whose', 'good', 'opinion', 'is', 'so', 'well', 'worth', 'having', 'as', 'yours', '.', 'And', 'I', 'am', 'sure', 'I', 'should', 'not', 'have', 'the', 'smallest', 'fear', 'of', 'trusting', '_you', ';', '_', 'indeed', ',', 'I', 'should', 'be', 'very', 'glad', 'of', 'your', 'advice', 'how', 'to', 'manage', 'in', 'such', 'an', 'uncomfortable', 'situation', 'as', 'I', 'am', ';', 'but', ',', 'however', ',', 'there', 'is', 'no', 'occasion', 'to', 'trouble', '_you_', '.', 'I', 'am', 'sorry', 'you', 'do', 'not', 'happen', 'to', 'know', 'Mrs.', 'Ferrars.', '”', '“', 'I', 'am', 'sorry', 'I', 'do', '_not_', ',', '”', 'said', 'Elinor', ',', 'in', 'great', 'astonishment', ',', '“', 'if', 'it', 'could', 'be', 'of', 'any', 'use', 'to', 'YOU', 'to', 'know', 'my', 'opinion', 'of', 'her', '.', 'But', 'really', 'I', 'never', 'understood', 'that', 'you', 'were', 'at', 'all', 'connected', 'with', 'that', 'family', ',', 'and', 'therefore', 'I', 'am', 'a', 'little', 'surprised', ',', 'I', 'confess', ',', 'at', 'so', 'serious', 'an', 'inquiry', 'into', 'her', 'character.', '”', '“', 'I', 'dare', 'say', 'you', 'are', ',', 'and', 'I', 'am', 'sure', 'I', 'do', 'not', 'at', 'all', 'wonder', 'at', 'it', '.', 'But', 'if', 'I', 'dared', 'tell', 'you', 'all', ',', 'you', 'would', 'not', 'be', 'so', 'much', 'surprised', '.', 'Mrs.', 'Ferrars', 'is', 'certainly', 'nothing', 'to', 'me', 'at', 'present—but', 'the', 'time', '_may_', 'come—how', 'soon', 'it', 'will', 'come', 'must', 'depend', 'upon', 'herself—when', 'we', 'may', 'be', 'very', 'intimately', 'connected.', '”', 'She', 'looked', 'down', 'as', 'she', 'said', 'this', ',', 'amiably', 'bashful', ',', 'with', 'only', 'one', 'side', 'glance', 'at', 'her', 'companion', 'to', 'observe', 'its', 'effect', 'on', 'her', '.', '“', 'Good', 'heavens', '!', '”', 'cried', 'Elinor', ',', '“', 'what', 'do', 'you', 'mean', '?', 'Are', 'you', 'acquainted', 'with', 'Mr.', 'Robert', 'Ferrars', '?', 'Can', 'you', 'be', '?', '”', 'And', 'she', 'did', 'not', 'feel', 'much', 'delighted', 'with', 'the', 'idea', 'of', 'such', 'a', 'sister-in-law', '.', '“', 'No', ',', '”', 'replied', 'Lucy', ',', '“', 'not', 'to', 'Mr.', '_Robert_', 'Ferrars—I', 'never', 'saw', 'him', 'in', 'my', 'life', ';', 'but', ',', '”', 'fixing', 'her', 'eyes', 'upon', 'Elinor', ',', '“', 'to', 'his', 'eldest', 'brother.', '”', 'What', 'felt', 'Elinor', 'at', 'that', 'moment', '?', 'Astonishment', ',', 'that', 'would', 'have', 'been', 'as', 'painful', 'as', 'it', 'was', 'strong', ',', 'had', 'not', 'an', 'immediate', 'disbelief', 'of', 'the', 'assertion', 'attended', 'it', '.', 'She', 'turned', 'towards', 'Lucy', 'in', 'silent', 'amazement', ',', 'unable', 'to', 'divine', 'the', 'reason', 'or', 'object', 'of', 'such', 'a', 'declaration', ';', 'and', 'though', 'her', 'complexion', 'varied', ',', 'she', 'stood', 'firm', 'in', 'incredulity', ',', 'and', 'felt', 'in', 'no', 'danger', 'of', 'an', 'hysterical', 'fit', ',', 'or', 'a', 'swoon', '.', '“', 'You', 'may', 'well', 'be', 'surprised', ',', '”', 'continued', 'Lucy', ';', '“', 'for', 'to', 'be', 'sure', 'you', 'could', 'have', 'had', 'no', 'idea', 'of', 'it', 'before', ';', 'for', 'I', 'dare', 'say', 'he', 'never', 'dropped', 'the', 'smallest', 'hint', 'of', 'it', 'to', 'you', 'or', 'any', 'of', 'your', 'family', ';', 'because', 'it', 'was', 'always', 'meant', 'to', 'be', 'a', 'great', 'secret', ',', 'and', 'I', 'am', 'sure', 'has', 'been', 'faithfully', 'kept', 'so', 'by', 'me', 'to', 'this', 'hour', '.', 'Not', 'a', 'soul', 'of', 'all', 'my', 'relations', 'know', 'of', 'it', 'but', 'Anne', ',', 'and', 'I', 'never', 'should', 'have', 'mentioned', 'it', 'to', 'you', ',', 'if', 'I', 'had', 'not', 'felt', 'the', 'greatest', 'dependence', 'in', 'the', 'world', 'upon', 'your', 'secrecy', ';', 'and', 'I', 'really', 'thought', 'my', 'behaviour', 'in', 'asking', 'so', 'many', 'questions', 'about', 'Mrs.', 'Ferrars', 'must', 'seem', 'so', 'odd', ',', 'that', 'it', 'ought', 'to', 'be', 'explained', '.', 'And', 'I', 'do', 'not', 'think', 'Mr.', 'Ferrars', 'can', 'be', 'displeased', ',', 'when', 'he', 'knows', 'I', 'have', 'trusted', 'you', ',', 'because', 'I', 'know', 'he', 'has', 'the', 'highest', 'opinion', 'in', 'the', 'world', 'of', 'all', 'your', 'family', ',', 'and', 'looks', 'upon', 'yourself', 'and', 'the', 'other', 'Miss', 'Dashwoods', 'quite', 'as', 'his', 'own', 'sisters.', '”', '—She', 'paused', '.', 'Elinor', 'for', 'a', 'few', 'moments', 'remained', 'silent', '.', 'Her', 'astonishment', 'at', 'what', 'she', 'heard', 'was', 'at', 'first', 'too', 'great', 'for', 'words', ';', 'but', 'at', 'length', 'forcing', 'herself', 'to', 'speak', ',', 'and', 'to', 'speak', 'cautiously', ',', 'she', 'said', ',', 'with', 'calmness', 'of', 'manner', ',', 'which', 'tolerably', 'well', 'concealed', 'her', 'surprise', 'and', 'solicitude—', '“', 'May', 'I', 'ask', 'if', 'your', 'engagement', 'is', 'of', 'long', 'standing', '?', '”', '“', 'We', 'have', 'been', 'engaged', 'these', 'four', 'years.', '”', '“', 'Four', 'years', '!', '”', '“', 'Yes.', '”', 'Elinor', ',', 'though', 'greatly', 'shocked', ',', 'still', 'felt', 'unable', 'to', 'believe', 'it', '.', '“', 'I', 'did', 'not', 'know', ',', '”', 'said', 'she', ',', '“', 'that', 'you', 'were', 'even', 'acquainted', 'till', 'the', 'other', 'day.', '”', '“', 'Our', 'acquaintance', ',', 'however', ',', 'is', 'of', 'many', 'years', 'date', '.', 'He', 'was', 'under', 'my', 'uncle', '’', 's', 'care', ',', 'you', 'know', ',', 'a', 'considerable', 'while.', '”', '“', 'Your', 'uncle', '!', '”', '“', 'Yes', ';', 'Mr.', 'Pratt', '.', 'Did', 'you', 'never', 'hear', 'him', 'talk', 'of', 'Mr.', 'Pratt', '?', '”', '“', 'I', 'think', 'I', 'have', ',', '”', 'replied', 'Elinor', ',', 'with', 'an', 'exertion', 'of', 'spirits', ',', 'which', 'increased', 'with', 'her', 'increase', 'of', 'emotion', '.', '“', 'He', 'was', 'four', 'years', 'with', 'my', 'uncle', ',', 'who', 'lives', 'at', 'Longstaple', ',', 'near', 'Plymouth', '.', 'It', 'was', 'there', 'our', 'acquaintance', 'begun', ',', 'for', 'my', 'sister', 'and', 'me', 'was', 'often', 'staying', 'with', 'my', 'uncle', ',', 'and', 'it', 'was', 'there', 'our', 'engagement', 'was', 'formed', ',', 'though', 'not', 'till', 'a', 'year', 'after', 'he', 'had', 'quitted', 'as', 'a', 'pupil', ';', 'but', 'he', 'was', 'almost', 'always', 'with', 'us', 'afterwards', '.', 'I', 'was', 'very', 'unwilling', 'to', 'enter', 'into', 'it', ',', 'as', 'you', 'may', 'imagine', ',', 'without', 'the', 'knowledge', 'and', 'approbation', 'of', 'his', 'mother', ';', 'but', 'I', 'was', 'too', 'young', ',', 'and', 'loved', 'him', 'too', 'well', ',', 'to', 'be', 'so', 'prudent', 'as', 'I', 'ought', 'to', 'have', 'been', '.', 'Though', 'you', 'do', 'not', 'know', 'him', 'so', 'well', 'as', 'me', ',', 'Miss', 'Dashwood', ',', 'you', 'must', 'have', 'seen', 'enough', 'of', 'him', 'to', 'be', 'sensible', 'he', 'is', 'very', 'capable', 'of', 'making', 'a', 'woman', 'sincerely', 'attached', 'to', 'him.', '”', '“', 'Certainly', ',', '”', 'answered', 'Elinor', ',', 'without', 'knowing', 'what', 'she', 'said', ';', 'but', 'after', 'a', 'moment', '’', 's', 'reflection', ',', 'she', 'added', ',', 'with', 'revived', 'security', 'of', 'Edward', '’', 's', 'honour', 'and', 'love', ',', 'and', 'her', 'companion', '’', 's', 'falsehood—', '“', 'Engaged', 'to', 'Mr.', 'Edward', 'Ferrars', '!', '—I', 'confess', 'myself', 'so', 'totally', 'surprised', 'at', 'what', 'you', 'tell', 'me', ',', 'that', 'really—I', 'beg', 'your', 'pardon', ';', 'but', 'surely', 'there', 'must', 'be', 'some', 'mistake', 'of', 'person', 'or', 'name', '.', 'We', 'can', 'not', 'mean', 'the', 'same', 'Mr.', 'Ferrars.', '”', '“', 'We', 'can', 'mean', 'no', 'other', ',', '”', 'cried', 'Lucy', ',', 'smiling', '.', '“', 'Mr', '.', 'Edward', 'Ferrars', ',', 'the', 'eldest', 'son', 'of', 'Mrs.', 'Ferrars', ',', 'of', 'Park', 'Street', ',', 'and', 'brother', 'of', 'your', 'sister-in-law', ',', 'Mrs.', 'John', 'Dashwood', ',', 'is', 'the', 'person', 'I', 'mean', ';', 'you', 'must', 'allow', 'that', 'I', 'am', 'not', 'likely', 'to', 'be', 'deceived', 'as', 'to', 'the', 'name', 'of', 'the', 'man', 'on', 'who', 'all', 'my', 'happiness', 'depends.', '”', '“', 'It', 'is', 'strange', ',', '”', 'replied', 'Elinor', ',', 'in', 'a', 'most', 'painful', 'perplexity', ',', '“', 'that', 'I', 'should', 'never', 'have', 'heard', 'him', 'even', 'mention', 'your', 'name.', '”', '“', 'No', ';', 'considering', 'our', 'situation', ',', 'it', 'was', 'not', 'strange', '.', 'Our', 'first', 'care', 'has', 'been', 'to', 'keep', 'the', 'matter', 'secret', '.', 'You', 'knew', 'nothing', 'of', 'me', ',', 'or', 'my', 'family', ',', 'and', ',', 'therefore', ',', 'there', 'could', 'be', 'no', '_occasion_', 'for', 'ever', 'mentioning', 'my', 'name', 'to', 'you', ';', 'and', ',', 'as', 'he', 'was', 'always', 'particularly', 'afraid', 'of', 'his', 'sister', '’', 's', 'suspecting', 'any', 'thing', ',', '_that_', 'was', 'reason', 'enough', 'for', 'his', 'not', 'mentioning', 'it.', '”', 'She', 'was', 'silent.—Elinor', '’', 's', 'security', 'sunk', ';', 'but', 'her', 'self-command', 'did', 'not', 'sink', 'with', 'it', '.', '“', 'Four', 'years', 'you', 'have', 'been', 'engaged', ',', '”', 'said', 'she', 'with', 'a', 'firm', 'voice', '.', '“', 'Yes', ';', 'and', 'heaven', 'knows', 'how', 'much', 'longer', 'we', 'may', 'have', 'to', 'wait', '.', 'Poor', 'Edward', '!', 'It', 'puts', 'him', 'quite', 'out', 'of', 'heart.', '”', 'Then', 'taking', 'a', 'small', 'miniature', 'from', 'her', 'pocket', ',', 'she', 'added', ',', '“', 'To', 'prevent', 'the', 'possibility', 'of', 'mistake', ',', 'be', 'so', 'good', 'as', 'to', 'look', 'at', 'this', 'face', '.', 'It', 'does', 'not', 'do', 'him', 'justice', ',', 'to', 'be', 'sure', ',', 'but', 'yet', 'I', 'think', 'you', 'can', 'not', 'be', 'deceived', 'as', 'to', 'the', 'person', 'it', 'was', 'drew', 'for.—I', 'have', 'had', 'it', 'above', 'these', 'three', 'years.', '”', 'She', 'put', 'it', 'into', 'her', 'hands', 'as', 'she', 'spoke', ';', 'and', 'when', 'Elinor', 'saw', 'the', 'painting', ',', 'whatever', 'other', 'doubts', 'her', 'fear', 'of', 'a', 'too', 'hasty', 'decision', ',', 'or', 'her', 'wish', 'of', 'detecting', 'falsehood', 'might', 'suffer', 'to', 'linger', 'in', 'her', 'mind', ',', 'she', 'could', 'have', 'none', 'of', 'its', 'being', 'Edward', '’', 's', 'face', '.', 'She', 'returned', 'it', 'almost', 'instantly', ',', 'acknowledging', 'the', 'likeness', '.', '“', 'I', 'have', 'never', 'been', 'able', ',', '”', 'continued', 'Lucy', ',', '“', 'to', 'give', 'him', 'my', 'picture', 'in', 'return', ',', 'which', 'I', 'am', 'very', 'much', 'vexed', 'at', ',', 'for', 'he', 'has', 'been', 'always', 'so', 'anxious', 'to', 'get', 'it', '!', 'But', 'I', 'am', 'determined', 'to', 'set', 'for', 'it', 'the', 'very', 'first', 'opportunity.', '”', '“', 'You', 'are', 'quite', 'in', 'the', 'right', ',', '”', 'replied', 'Elinor', 'calmly', '.', 'They', 'then', 'proceeded', 'a', 'few', 'paces', 'in', 'silence', '.', 'Lucy', 'spoke', 'first', '.', '“', 'I', 'am', 'sure', ',', '”', 'said', 'she', ',', '“', 'I', 'have', 'no', 'doubt', 'in', 'the', 'world', 'of', 'your', 'faithfully', 'keeping', 'this', 'secret', ',', 'because', 'you', 'must', 'know', 'of', 'what', 'importance', 'it', 'is', 'to', 'us', ',', 'not', 'to', 'have', 'it', 'reach', 'his', 'mother', ';', 'for', 'she', 'would', 'never', 'approve', 'of', 'it', ',', 'I', 'dare', 'say', '.', 'I', 'shall', 'have', 'no', 'fortune', ',', 'and', 'I', 'fancy', 'she', 'is', 'an', 'exceeding', 'proud', 'woman.', '”', '“', 'I', 'certainly', 'did', 'not', 'seek', 'your', 'confidence', ',', '”', 'said', 'Elinor', ';', '“', 'but', 'you', 'do', 'me', 'no', 'more', 'than', 'justice', 'in', 'imagining', 'that', 'I', 'may', 'be', 'depended', 'on', '.', 'Your', 'secret', 'is', 'safe', 'with', 'me', ';', 'but', 'pardon', 'me', 'if', 'I', 'express', 'some', 'surprise', 'at', 'so', 'unnecessary', 'a', 'communication', '.', 'You', 'must', 'at', 'least', 'have', 'felt', 'that', 'my', 'being', 'acquainted', 'with', 'it', 'could', 'not', 'add', 'to', 'its', 'safety.', '”', 'As', 'she', 'said', 'this', ',', 'she', 'looked', 'earnestly', 'at', 'Lucy', ',', 'hoping', 'to', 'discover', 'something', 'in', 'her', 'countenance', ';', 'perhaps', 'the', 'falsehood', 'of', 'the', 'greatest', 'part', 'of', 'what', 'she', 'had', 'been', 'saying', ';', 'but', 'Lucy', '’', 's', 'countenance', 'suffered', 'no', 'change', '.', '“', 'I', 'was', 'afraid', 'you', 'would', 'think', 'I', 'was', 'taking', 'a', 'great', 'liberty', 'with', 'you', ',', '”', 'said', 'she', ',', '“', 'in', 'telling', 'you', 'all', 'this', '.', 'I', 'have', 'not', 'known', 'you', 'long', 'to', 'be', 'sure', ',', 'personally', 'at', 'least', ',', 'but', 'I', 'have', 'known', 'you', 'and', 'all', 'your', 'family', 'by', 'description', 'a', 'great', 'while', ';', 'and', 'as', 'soon', 'as', 'I', 'saw', 'you', ',', 'I', 'felt', 'almost', 'as', 'if', 'you', 'was', 'an', 'old', 'acquaintance', '.', 'Besides', 'in', 'the', 'present', 'case', ',', 'I', 'really', 'thought', 'some', 'explanation', 'was', 'due', 'to', 'you', 'after', 'my', 'making', 'such', 'particular', 'inquiries', 'about', 'Edward', '’', 's', 'mother', ';', 'and', 'I', 'am', 'so', 'unfortunate', ',', 'that', 'I', 'have', 'not', 'a', 'creature', 'whose', 'advice', 'I', 'can', 'ask', '.', 'Anne', 'is', 'the', 'only', 'person', 'that', 'knows', 'of', 'it', ',', 'and', 'she', 'has', 'no', 'judgment', 'at', 'all', ';', 'indeed', ',', 'she', 'does', 'me', 'a', 'great', 'deal', 'more', 'harm', 'than', 'good', ',', 'for', 'I', 'am', 'in', 'constant', 'fear', 'of', 'her', 'betraying', 'me', '.', 'She', 'does', 'not', 'know', 'how', 'to', 'hold', 'her', 'tongue', ',', 'as', 'you', 'must', 'perceive', ',', 'and', 'I', 'am', 'sure', 'I', 'was', 'in', 'the', 'greatest', 'fright', 'in', 'the', 'world', 't', '’', 'other', 'day', ',', 'when', 'Edward', '’', 's', 'name', 'was', 'mentioned', 'by', 'Sir', 'John', ',', 'lest', 'she', 'should', 'out', 'with', 'it', 'all', '.', 'You', 'can', '’', 't', 'think', 'how', 'much', 'I', 'go', 'through', 'in', 'my', 'mind', 'from', 'it', 'altogether', '.', 'I', 'only', 'wonder', 'that', 'I', 'am', 'alive', 'after', 'what', 'I', 'have', 'suffered', 'for', 'Edward', '’', 's', 'sake', 'these', 'last', 'four', 'years', '.', 'Every', 'thing', 'in', 'such', 'suspense', 'and', 'uncertainty', ';', 'and', 'seeing', 'him', 'so', 'seldom—we', 'can', 'hardly', 'meet', 'above', 'twice', 'a-year', '.', 'I', 'am', 'sure', 'I', 'wonder', 'my', 'heart', 'is', 'not', 'quite', 'broke.', '”', 'Here', 'she', 'took', 'out', 'her', 'handkerchief', ';', 'but', 'Elinor', 'did', 'not', 'feel', 'very', 'compassionate', '.', '“', 'Sometimes.', '”', 'continued', 'Lucy', ',', 'after', 'wiping', 'her', 'eyes', ',', '“', 'I', 'think', 'whether', 'it', 'would', 'not', 'be', 'better', 'for', 'us', 'both', 'to', 'break', 'off', 'the', 'matter', 'entirely.', '”', 'As', 'she', 'said', 'this', ',', 'she', 'looked', 'directly', 'at', 'her', 'companion', '.', '“', 'But', 'then', 'at', 'other', 'times', 'I', 'have', 'not', 'resolution', 'enough', 'for', 'it', '.', 'I', 'can', 'not', 'bear', 'the', 'thoughts', 'of', 'making', 'him', 'so', 'miserable', ',', 'as', 'I', 'know', 'the', 'very', 'mention', 'of', 'such', 'a', 'thing', 'would', 'do', '.', 'And', 'on', 'my', 'own', 'account', 'too—so', 'dear', 'as', 'he', 'is', 'to', 'me—I', 'don', '’', 't', 'think', 'I', 'could', 'be', 'equal', 'to', 'it', '.', 'What', 'would', 'you', 'advise', 'me', 'to', 'do', 'in', 'such', 'a', 'case', ',', 'Miss', 'Dashwood', '?', 'What', 'would', 'you', 'do', 'yourself', '?', '”', '“', 'Pardon', 'me', ',', '”', 'replied', 'Elinor', ',', 'startled', 'by', 'the', 'question', ';', '“', 'but', 'I', 'can', 'give', 'you', 'no', 'advice', 'under', 'such', 'circumstances', '.', 'Your', 'own', 'judgment', 'must', 'direct', 'you.', '”', '“', 'To', 'be', 'sure', ',', '”', 'continued', 'Lucy', ',', 'after', 'a', 'few', 'minutes', 'silence', 'on', 'both', 'sides', ',', '“', 'his', 'mother', 'must', 'provide', 'for', 'him', 'sometime', 'or', 'other', ';', 'but', 'poor', 'Edward', 'is', 'so', 'cast', 'down', 'by', 'it', '!', 'Did', 'you', 'not', 'think', 'him', 'dreadful', 'low-spirited', 'when', 'he', 'was', 'at', 'Barton', '?', 'He', 'was', 'so', 'miserable', 'when', 'he', 'left', 'us', 'at', 'Longstaple', ',', 'to', 'go', 'to', 'you', ',', 'that', 'I', 'was', 'afraid', 'you', 'would', 'think', 'him', 'quite', 'ill.', '”', '“', 'Did', 'he', 'come', 'from', 'your', 'uncle', '’', 's', ',', 'then', ',', 'when', 'he', 'visited', 'us', '?', '”', '“', 'Oh', ',', 'yes', ';', 'he', 'had', 'been', 'staying', 'a', 'fortnight', 'with', 'us', '.', 'Did', 'you', 'think', 'he', 'came', 'directly', 'from', 'town', '?', '”', '“', 'No', ',', '”', 'replied', 'Elinor', ',', 'most', 'feelingly', 'sensible', 'of', 'every', 'fresh', 'circumstance', 'in', 'favour', 'of', 'Lucy', '’', 's', 'veracity', ';', '“', 'I', 'remember', 'he', 'told', 'us', ',', 'that', 'he', 'had', 'been', 'staying', 'a', 'fortnight', 'with', 'some', 'friends', 'near', 'Plymouth.', '”', 'She', 'remembered', 'too', ',', 'her', 'own', 'surprise', 'at', 'the', 'time', ',', 'at', 'his', 'mentioning', 'nothing', 'farther', 'of', 'those', 'friends', ',', 'at', 'his', 'total', 'silence', 'with', 'respect', 'even', 'to', 'their', 'names', '.', '“', 'Did', 'not', 'you', 'think', 'him', 'sadly', 'out', 'of', 'spirits', '?', '”', 'repeated', 'Lucy', '.', '“', 'We', 'did', ',', 'indeed', ',', 'particularly', 'so', 'when', 'he', 'first', 'arrived.', '”', '“', 'I', 'begged', 'him', 'to', 'exert', 'himself', 'for', 'fear', 'you', 'should', 'suspect', 'what', 'was', 'the', 'matter', ';', 'but', 'it', 'made', 'him', 'so', 'melancholy', ',', 'not', 'being', 'able', 'to', 'stay', 'more', 'than', 'a', 'fortnight', 'with', 'us', ',', 'and', 'seeing', 'me', 'so', 'much', 'affected', '.', 'Poor', 'fellow', '!', 'I', 'am', 'afraid', 'it', 'is', 'just', 'the', 'same', 'with', 'him', 'now', ';', 'for', 'he', 'writes', 'in', 'wretched', 'spirits', '.', 'I', 'heard', 'from', 'him', 'just', 'before', 'I', 'left', 'Exeter', ';', '”', 'taking', 'a', 'letter', 'from', 'her', 'pocket', 'and', 'carelessly', 'showing', 'the', 'direction', 'to', 'Elinor', '.', '“', 'You', 'know', 'his', 'hand', ',', 'I', 'dare', 'say', ',', '—a', 'charming', 'one', 'it', 'is', ';', 'but', 'that', 'is', 'not', 'written', 'so', 'well', 'as', 'usual', '.', 'He', 'was', 'tired', ',', 'I', 'dare', 'say', ',', 'for', 'he', 'had', 'just', 'filled', 'the', 'sheet', 'to', 'me', 'as', 'full', 'as', 'possible.', '”', 'Elinor', 'saw', 'that', 'it', '_was_', 'his', 'hand', ',', 'and', 'she', 'could', 'doubt', 'no', 'longer', '.', 'This', 'picture', ',', 'she', 'had', 'allowed', 'herself', 'to', 'believe', ',', 'might', 'have', 'been', 'accidentally', 'obtained', ';', 'it', 'might', 'not', 'have', 'been', 'Edward', '’', 's', 'gift', ';', 'but', 'a', 'correspondence', 'between', 'them', 'by', 'letter', ',', 'could', 'subsist', 'only', 'under', 'a', 'positive', 'engagement', ',', 'could', 'be', 'authorised', 'by', 'nothing', 'else', ';', 'for', 'a', 'few', 'moments', ',', 'she', 'was', 'almost', 'overcome—her', 'heart', 'sunk', 'within', 'her', ',', 'and', 'she', 'could', 'hardly', 'stand', ';', 'but', 'exertion', 'was', 'indispensably', 'necessary', ';', 'and', 'she', 'struggled', 'so', 'resolutely', 'against', 'the', 'oppression', 'of', 'her', 'feelings', ',', 'that', 'her', 'success', 'was', 'speedy', ',', 'and', 'for', 'the', 'time', 'complete', '.', '“', 'Writing', 'to', 'each', 'other', ',', '”', 'said', 'Lucy', ',', 'returning', 'the', 'letter', 'into', 'her', 'pocket', ',', '“', 'is', 'the', 'only', 'comfort', 'we', 'have', 'in', 'such', 'long', 'separations', '.', 'Yes', ',', '_I_', 'have', 'one', 'other', 'comfort', 'in', 'his', 'picture', ',', 'but', 'poor', 'Edward', 'has', 'not', 'even', '_that_', '.', 'If', 'he', 'had', 'but', 'my', 'picture', ',', 'he', 'says', 'he', 'should', 'be', 'easy', '.', 'I', 'gave', 'him', 'a', 'lock', 'of', 'my', 'hair', 'set', 'in', 'a', 'ring', 'when', 'he', 'was', 'at', 'Longstaple', 'last', ',', 'and', 'that', 'was', 'some', 'comfort', 'to', 'him', ',', 'he', 'said', ',', 'but', 'not', 'equal', 'to', 'a', 'picture', '.', 'Perhaps', 'you', 'might', 'notice', 'the', 'ring', 'when', 'you', 'saw', 'him', '?', '”', '“', 'I', 'did', ',', '”', 'said', 'Elinor', ',', 'with', 'a', 'composure', 'of', 'voice', ',', 'under', 'which', 'was', 'concealed', 'an', 'emotion', 'and', 'distress', 'beyond', 'any', 'thing', 'she', 'had', 'ever', 'felt', 'before', '.', 'She', 'was', 'mortified', ',', 'shocked', ',', 'confounded', '.', 'Fortunately', 'for', 'her', ',', 'they', 'had', 'now', 'reached', 'the', 'cottage', ',', 'and', 'the', 'conversation', 'could', 'be', 'continued', 'no', 'farther', '.', 'After', 'sitting', 'with', 'them', 'a', 'few', 'minutes', ',', 'the', 'Miss', 'Steeles', 'returned', 'to', 'the', 'Park', ',', 'and', 'Elinor', 'was', 'then', 'at', 'liberty', 'to', 'think', 'and', 'be', 'wretched', '.', 'END', 'OF', 'THE', 'FIRST', 'VOLUME', 'CHAPTER', 'XXIII', '.', 'However', 'small', 'Elinor', '’', 's', 'general', 'dependence', 'on', 'Lucy', '’', 's', 'veracity', 'might', 'be', ',', 'it', 'was', 'impossible', 'for', 'her', 'on', 'serious', 'reflection', 'to', 'suspect', 'it', 'in', 'the', 'present', 'case', ',', 'where', 'no', 'temptation', 'could', 'be', 'answerable', 'to', 'the', 'folly', 'of', 'inventing', 'a', 'falsehood', 'of', 'such', 'a', 'description', '.', 'What', 'Lucy', 'had', 'asserted', 'to', 'be', 'true', ',', 'therefore', ',', 'Elinor', 'could', 'not', ',', 'dared', 'not', 'longer', 'doubt', ';', 'supported', 'as', 'it', 'was', 'too', 'on', 'every', 'side', 'by', 'such', 'probabilities', 'and', 'proofs', ',', 'and', 'contradicted', 'by', 'nothing', 'but', 'her', 'own', 'wishes', '.', 'Their', 'opportunity', 'of', 'acquaintance', 'in', 'the', 'house', 'of', 'Mr.', 'Pratt', 'was', 'a', 'foundation', 'for', 'the', 'rest', ',', 'at', 'once', 'indisputable', 'and', 'alarming', ';', 'and', 'Edward', '’', 's', 'visit', 'near', 'Plymouth', ',', 'his', 'melancholy', 'state', 'of', 'mind', ',', 'his', 'dissatisfaction', 'at', 'his', 'own', 'prospects', ',', 'his', 'uncertain', 'behaviour', 'towards', 'herself', ',', 'the', 'intimate', 'knowledge', 'of', 'the', 'Miss', 'Steeles', 'as', 'to', 'Norland', 'and', 'their', 'family', 'connections', ',', 'which', 'had', 'often', 'surprised', 'her', ',', 'the', 'picture', ',', 'the', 'letter', ',', 'the', 'ring', ',', 'formed', 'altogether', 'such', 'a', 'body', 'of', 'evidence', ',', 'as', 'overcame', 'every', 'fear', 'of', 'condemning', 'him', 'unfairly', ',', 'and', 'established', 'as', 'a', 'fact', ',', 'which', 'no', 'partiality', 'could', 'set', 'aside', ',', 'his', 'ill-treatment', 'of', 'herself.—Her', 'resentment', 'of', 'such', 'behaviour', ',', 'her', 'indignation', 'at', 'having', 'been', 'its', 'dupe', ',', 'for', 'a', 'short', 'time', 'made', 'her', 'feel', 'only', 'for', 'herself', ';', 'but', 'other', 'ideas', ',', 'other', 'considerations', ',', 'soon', 'arose', '.', 'Had', 'Edward', 'been', 'intentionally', 'deceiving', 'her', '?', 'Had', 'he', 'feigned', 'a', 'regard', 'for', 'her', 'which', 'he', 'did', 'not', 'feel', '?', 'Was', 'his', 'engagement', 'to', 'Lucy', 'an', 'engagement', 'of', 'the', 'heart', '?', 'No', ';', 'whatever', 'it', 'might', 'once', 'have', 'been', ',', 'she', 'could', 'not', 'believe', 'it', 'such', 'at', 'present', '.', 'His', 'affection', 'was', 'all', 'her', 'own', '.', 'She', 'could', 'not', 'be', 'deceived', 'in', 'that', '.', 'Her', 'mother', ',', 'sisters', ',', 'Fanny', ',', 'all', 'had', 'been', 'conscious', 'of', 'his', 'regard', 'for', 'her', 'at', 'Norland', ';', 'it', 'was', 'not', 'an', 'illusion', 'of', 'her', 'own', 'vanity', '.', 'He', 'certainly', 'loved', 'her', '.', 'What', 'a', 'softener', 'of', 'the', 'heart', 'was', 'this', 'persuasion', '!', 'How', 'much', 'could', 'it', 'not', 'tempt', 'her', 'to', 'forgive', '!', 'He', 'had', 'been', 'blamable', ',', 'highly', 'blamable', ',', 'in', 'remaining', 'at', 'Norland', 'after', 'he', 'first', 'felt', 'her', 'influence', 'over', 'him', 'to', 'be', 'more', 'than', 'it', 'ought', 'to', 'be', '.', 'In', 'that', ',', 'he', 'could', 'not', 'be', 'defended', ';', 'but', 'if', 'he', 'had', 'injured', 'her', ',', 'how', 'much', 'more', 'had', 'he', 'injured', 'himself', ';', 'if', 'her', 'case', 'were', 'pitiable', ',', 'his', 'was', 'hopeless', '.', 'His', 'imprudence', 'had', 'made', 'her', 'miserable', 'for', 'a', 'while', ';', 'but', 'it', 'seemed', 'to', 'have', 'deprived', 'himself', 'of', 'all', 'chance', 'of', 'ever', 'being', 'otherwise', '.', 'She', 'might', 'in', 'time', 'regain', 'tranquillity', ';', 'but', '_he_', ',', 'what', 'had', 'he', 'to', 'look', 'forward', 'to', '?', 'Could', 'he', 'ever', 'be', 'tolerably', 'happy', 'with', 'Lucy', 'Steele', ';', 'could', 'he', ',', 'were', 'his', 'affection', 'for', 'herself', 'out', 'of', 'the', 'question', ',', 'with', 'his', 'integrity', ',', 'his', 'delicacy', ',', 'and', 'well-informed', 'mind', ',', 'be', 'satisfied', 'with', 'a', 'wife', 'like', 'her—illiterate', ',', 'artful', ',', 'and', 'selfish', '?', 'The', 'youthful', 'infatuation', 'of', 'nineteen', 'would', 'naturally', 'blind', 'him', 'to', 'every', 'thing', 'but', 'her', 'beauty', 'and', 'good', 'nature', ';', 'but', 'the', 'four', 'succeeding', 'years—years', ',', 'which', 'if', 'rationally', 'spent', ',', 'give', 'such', 'improvement', 'to', 'the', 'understanding', ',', 'must', 'have', 'opened', 'his', 'eyes', 'to', 'her', 'defects', 'of', 'education', ',', 'while', 'the', 'same', 'period', 'of', 'time', ',', 'spent', 'on', 'her', 'side', 'in', 'inferior', 'society', 'and', 'more', 'frivolous', 'pursuits', ',', 'had', 'perhaps', 'robbed', 'her', 'of', 'that', 'simplicity', 'which', 'might', 'once', 'have', 'given', 'an', 'interesting', 'character', 'to', 'her', 'beauty', '.', 'If', 'in', 'the', 'supposition', 'of', 'his', 'seeking', 'to', 'marry', 'herself', ',', 'his', 'difficulties', 'from', 'his', 'mother', 'had', 'seemed', 'great', ',', 'how', 'much', 'greater', 'were', 'they', 'now', 'likely', 'to', 'be', ',', 'when', 'the', 'object', 'of', 'his', 'engagement', 'was', 'undoubtedly', 'inferior', 'in', 'connections', ',', 'and', 'probably', 'inferior', 'in', 'fortune', 'to', 'herself', '.', 'These', 'difficulties', ',', 'indeed', ',', 'with', 'a', 'heart', 'so', 'alienated', 'from', 'Lucy', ',', 'might', 'not', 'press', 'very', 'hard', 'upon', 'his', 'patience', ';', 'but', 'melancholy', 'was', 'the', 'state', 'of', 'the', 'person', 'by', 'whom', 'the', 'expectation', 'of', 'family', 'opposition', 'and', 'unkindness', ',', 'could', 'be', 'felt', 'as', 'a', 'relief', '!', 'As', 'these', 'considerations', 'occurred', 'to', 'her', 'in', 'painful', 'succession', ',', 'she', 'wept', 'for', 'him', ',', 'more', 'than', 'for', 'herself', '.', 'Supported', 'by', 'the', 'conviction', 'of', 'having', 'done', 'nothing', 'to', 'merit', 'her', 'present', 'unhappiness', ',', 'and', 'consoled', 'by', 'the', 'belief', 'that', 'Edward', 'had', 'done', 'nothing', 'to', 'forfeit', 'her', 'esteem', ',', 'she', 'thought', 'she', 'could', 'even', 'now', ',', 'under', 'the', 'first', 'smart', 'of', 'the', 'heavy', 'blow', ',', 'command', 'herself', 'enough', 'to', 'guard', 'every', 'suspicion', 'of', 'the', 'truth', 'from', 'her', 'mother', 'and', 'sisters', '.', 'And', 'so', 'well', 'was', 'she', 'able', 'to', 'answer', 'her', 'own', 'expectations', ',', 'that', 'when', 'she', 'joined', 'them', 'at', 'dinner', 'only', 'two', 'hours', 'after', 'she', 'had', 'first', 'suffered', 'the', 'extinction', 'of', 'all', 'her', 'dearest', 'hopes', ',', 'no', 'one', 'would', 'have', 'supposed', 'from', 'the', 'appearance', 'of', 'the', 'sisters', ',', 'that', 'Elinor', 'was', 'mourning', 'in', 'secret', 'over', 'obstacles', 'which', 'must', 'divide', 'her', 'for', 'ever', 'from', 'the', 'object', 'of', 'her', 'love', ',', 'and', 'that', 'Marianne', 'was', 'internally', 'dwelling', 'on', 'the', 'perfections', 'of', 'a', 'man', ',', 'of', 'whose', 'whole', 'heart', 'she', 'felt', 'thoroughly', 'possessed', ',', 'and', 'whom', 'she', 'expected', 'to', 'see', 'in', 'every', 'carriage', 'which', 'drove', 'near', 'their', 'house', '.', 'The', 'necessity', 'of', 'concealing', 'from', 'her', 'mother', 'and', 'Marianne', ',', 'what', 'had', 'been', 'entrusted', 'in', 'confidence', 'to', 'herself', ',', 'though', 'it', 'obliged', 'her', 'to', 'unceasing', 'exertion', ',', 'was', 'no', 'aggravation', 'of', 'Elinor', '’', 's', 'distress', '.', 'On', 'the', 'contrary', 'it', 'was', 'a', 'relief', 'to', 'her', ',', 'to', 'be', 'spared', 'the', 'communication', 'of', 'what', 'would', 'give', 'such', 'affliction', 'to', 'them', ',', 'and', 'to', 'be', 'saved', 'likewise', 'from', 'hearing', 'that', 'condemnation', 'of', 'Edward', ',', 'which', 'would', 'probably', 'flow', 'from', 'the', 'excess', 'of', 'their', 'partial', 'affection', 'for', 'herself', ',', 'and', 'which', 'was', 'more', 'than', 'she', 'felt', 'equal', 'to', 'support', '.', 'From', 'their', 'counsel', ',', 'or', 'their', 'conversation', ',', 'she', 'knew', 'she', 'could', 'receive', 'no', 'assistance', ',', 'their', 'tenderness', 'and', 'sorrow', 'must', 'add', 'to', 'her', 'distress', ',', 'while', 'her', 'self-command', 'would', 'neither', 'receive', 'encouragement', 'from', 'their', 'example', 'nor', 'from', 'their', 'praise', '.', 'She', 'was', 'stronger', 'alone', ',', 'and', 'her', 'own', 'good', 'sense', 'so', 'well', 'supported', 'her', ',', 'that', 'her', 'firmness', 'was', 'as', 'unshaken', ',', 'her', 'appearance', 'of', 'cheerfulness', 'as', 'invariable', ',', 'as', 'with', 'regrets', 'so', 'poignant', 'and', 'so', 'fresh', ',', 'it', 'was', 'possible', 'for', 'them', 'to', 'be', '.', 'Much', 'as', 'she', 'had', 'suffered', 'from', 'her', 'first', 'conversation', 'with', 'Lucy', 'on', 'the', 'subject', ',', 'she', 'soon', 'felt', 'an', 'earnest', 'wish', 'of', 'renewing', 'it', ';', 'and', 'this', 'for', 'more', 'reasons', 'than', 'one', '.', 'She', 'wanted', 'to', 'hear', 'many', 'particulars', 'of', 'their', 'engagement', 'repeated', 'again', ',', 'she', 'wanted', 'more', 'clearly', 'to', 'understand', 'what', 'Lucy', 'really', 'felt', 'for', 'Edward', ',', 'whether', 'there', 'were', 'any', 'sincerity', 'in', 'her', 'declaration', 'of', 'tender', 'regard', 'for', 'him', ',', 'and', 'she', 'particularly', 'wanted', 'to', 'convince', 'Lucy', ',', 'by', 'her', 'readiness', 'to', 'enter', 'on', 'the', 'matter', 'again', ',', 'and', 'her', 'calmness', 'in', 'conversing', 'on', 'it', ',', 'that', 'she', 'was', 'no', 'otherwise', 'interested', 'in', 'it', 'than', 'as', 'a', 'friend', ',', 'which', 'she', 'very', 'much', 'feared', 'her', 'involuntary', 'agitation', ',', 'in', 'their', 'morning', 'discourse', ',', 'must', 'have', 'left', 'at', 'least', 'doubtful', '.', 'That', 'Lucy', 'was', 'disposed', 'to', 'be', 'jealous', 'of', 'her', 'appeared', 'very', 'probable', ':', 'it', 'was', 'plain', 'that', 'Edward', 'had', 'always', 'spoken', 'highly', 'in', 'her', 'praise', ',', 'not', 'merely', 'from', 'Lucy', '’', 's', 'assertion', ',', 'but', 'from', 'her', 'venturing', 'to', 'trust', 'her', 'on', 'so', 'short', 'a', 'personal', 'acquaintance', ',', 'with', 'a', 'secret', 'so', 'confessedly', 'and', 'evidently', 'important', '.', 'And', 'even', 'Sir', 'John', '’', 's', 'joking', 'intelligence', 'must', 'have', 'had', 'some', 'weight', '.', 'But', 'indeed', ',', 'while', 'Elinor', 'remained', 'so', 'well', 'assured', 'within', 'herself', 'of', 'being', 'really', 'beloved', 'by', 'Edward', ',', 'it', 'required', 'no', 'other', 'consideration', 'of', 'probabilities', 'to', 'make', 'it', 'natural', 'that', 'Lucy', 'should', 'be', 'jealous', ';', 'and', 'that', 'she', 'was', 'so', ',', 'her', 'very', 'confidence', 'was', 'a', 'proof', '.', 'What', 'other', 'reason', 'for', 'the', 'disclosure', 'of', 'the', 'affair', 'could', 'there', 'be', ',', 'but', 'that', 'Elinor', 'might', 'be', 'informed', 'by', 'it', 'of', 'Lucy', '’', 's', 'superior', 'claims', 'on', 'Edward', ',', 'and', 'be', 'taught', 'to', 'avoid', 'him', 'in', 'future', '?', 'She', 'had', 'little', 'difficulty', 'in', 'understanding', 'thus', 'much', 'of', 'her', 'rival', '’', 's', 'intentions', ',', 'and', 'while', 'she', 'was', 'firmly', 'resolved', 'to', 'act', 'by', 'her', 'as', 'every', 'principle', 'of', 'honour', 'and', 'honesty', 'directed', ',', 'to', 'combat', 'her', 'own', 'affection', 'for', 'Edward', 'and', 'to', 'see', 'him', 'as', 'little', 'as', 'possible', ';', 'she', 'could', 'not', 'deny', 'herself', 'the', 'comfort', 'of', 'endeavouring', 'to', 'convince', 'Lucy', 'that', 'her', 'heart', 'was', 'unwounded', '.', 'And', 'as', 'she', 'could', 'now', 'have', 'nothing', 'more', 'painful', 'to', 'hear', 'on', 'the', 'subject', 'than', 'had', 'already', 'been', 'told', ',', 'she', 'did', 'not', 'mistrust', 'her', 'own', 'ability', 'of', 'going', 'through', 'a', 'repetition', 'of', 'particulars', 'with', 'composure', '.', 'But', 'it', 'was', 'not', 'immediately', 'that', 'an', 'opportunity', 'of', 'doing', 'so', 'could', 'be', 'commanded', ',', 'though', 'Lucy', 'was', 'as', 'well', 'disposed', 'as', 'herself', 'to', 'take', 'advantage', 'of', 'any', 'that', 'occurred', ';', 'for', 'the', 'weather', 'was', 'not', 'often', 'fine', 'enough', 'to', 'allow', 'of', 'their', 'joining', 'in', 'a', 'walk', ',', 'where', 'they', 'might', 'most', 'easily', 'separate', 'themselves', 'from', 'the', 'others', ';', 'and', 'though', 'they', 'met', 'at', 'least', 'every', 'other', 'evening', 'either', 'at', 'the', 'park', 'or', 'cottage', ',', 'and', 'chiefly', 'at', 'the', 'former', ',', 'they', 'could', 'not', 'be', 'supposed', 'to', 'meet', 'for', 'the', 'sake', 'of', 'conversation', '.', 'Such', 'a', 'thought', 'would', 'never', 'enter', 'either', 'Sir', 'John', 'or', 'Lady', 'Middleton', '’', 's', 'head', ';', 'and', 'therefore', 'very', 'little', 'leisure', 'was', 'ever', 'given', 'for', 'a', 'general', 'chat', ',', 'and', 'none', 'at', 'all', 'for', 'particular', 'discourse', '.', 'They', 'met', 'for', 'the', 'sake', 'of', 'eating', ',', 'drinking', ',', 'and', 'laughing', 'together', ',', 'playing', 'at', 'cards', ',', 'or', 'consequences', ',', 'or', 'any', 'other', 'game', 'that', 'was', 'sufficiently', 'noisy', '.', 'One', 'or', 'two', 'meetings', 'of', 'this', 'kind', 'had', 'taken', 'place', ',', 'without', 'affording', 'Elinor', 'any', 'chance', 'of', 'engaging', 'Lucy', 'in', 'private', ',', 'when', 'Sir', 'John', 'called', 'at', 'the', 'cottage', 'one', 'morning', ',', 'to', 'beg', ',', 'in', 'the', 'name', 'of', 'charity', ',', 'that', 'they', 'would', 'all', 'dine', 'with', 'Lady', 'Middleton', 'that', 'day', ',', 'as', 'he', 'was', 'obliged', 'to', 'attend', 'the', 'club', 'at', 'Exeter', ',', 'and', 'she', 'would', 'otherwise', 'be', 'quite', 'alone', ',', 'except', 'her', 'mother', 'and', 'the', 'two', 'Miss', 'Steeles', '.', 'Elinor', ',', 'who', 'foresaw', 'a', 'fairer', 'opening', 'for', 'the', 'point', 'she', 'had', 'in', 'view', ',', 'in', 'such', 'a', 'party', 'as', 'this', 'was', 'likely', 'to', 'be', ',', 'more', 'at', 'liberty', 'among', 'themselves', 'under', 'the', 'tranquil', 'and', 'well-bred', 'direction', 'of', 'Lady', 'Middleton', 'than', 'when', 'her', 'husband', 'united', 'them', 'together', 'in', 'one', 'noisy', 'purpose', ',', 'immediately', 'accepted', 'the', 'invitation', ';', 'Margaret', ',', 'with', 'her', 'mother', '’', 's', 'permission', ',', 'was', 'equally', 'compliant', ',', 'and', 'Marianne', ',', 'though', 'always', 'unwilling', 'to', 'join', 'any', 'of', 'their', 'parties', ',', 'was', 'persuaded', 'by', 'her', 'mother', ',', 'who', 'could', 'not', 'bear', 'to', 'have', 'her', 'seclude', 'herself', 'from', 'any', 'chance', 'of', 'amusement', ',', 'to', 'go', 'likewise', '.', 'The', 'young', 'ladies', 'went', ',', 'and', 'Lady', 'Middleton', 'was', 'happily', 'preserved', 'from', 'the', 'frightful', 'solitude', 'which', 'had', 'threatened', 'her', '.', 'The', 'insipidity', 'of', 'the', 'meeting', 'was', 'exactly', 'such', 'as', 'Elinor', 'had', 'expected', ';', 'it', 'produced', 'not', 'one', 'novelty', 'of', 'thought', 'or', 'expression', ',', 'and', 'nothing', 'could', 'be', 'less', 'interesting', 'than', 'the', 'whole', 'of', 'their', 'discourse', 'both', 'in', 'the', 'dining', 'parlour', 'and', 'drawing', 'room', ':', 'to', 'the', 'latter', ',', 'the', 'children', 'accompanied', 'them', ',', 'and', 'while', 'they', 'remained', 'there', ',', 'she', 'was', 'too', 'well', 'convinced', 'of', 'the', 'impossibility', 'of', 'engaging', 'Lucy', '’', 's', 'attention', 'to', 'attempt', 'it', '.', 'They', 'quitted', 'it', 'only', 'with', 'the', 'removal', 'of', 'the', 'tea-things', '.', 'The', 'card-table', 'was', 'then', 'placed', ',', 'and', 'Elinor', 'began', 'to', 'wonder', 'at', 'herself', 'for', 'having', 'ever', 'entertained', 'a', 'hope', 'of', 'finding', 'time', 'for', 'conversation', 'at', 'the', 'park', '.', 'They', 'all', 'rose', 'up', 'in', 'preparation', 'for', 'a', 'round', 'game', '.', '“', 'I', 'am', 'glad', ',', '”', 'said', 'Lady', 'Middleton', 'to', 'Lucy', ',', '“', 'you', 'are', 'not', 'going', 'to', 'finish', 'poor', 'little', 'Annamaria', '’', 's', 'basket', 'this', 'evening', ';', 'for', 'I', 'am', 'sure', 'it', 'must', 'hurt', 'your', 'eyes', 'to', 'work', 'filigree', 'by', 'candlelight', '.', 'And', 'we', 'will', 'make', 'the', 'dear', 'little', 'love', 'some', 'amends', 'for', 'her', 'disappointment', 'to-morrow', ',', 'and', 'then', 'I', 'hope', 'she', 'will', 'not', 'much', 'mind', 'it.', '”', 'This', 'hint', 'was', 'enough', ',', 'Lucy', 'recollected', 'herself', 'instantly', 'and', 'replied', ',', '“', 'Indeed', 'you', 'are', 'very', 'much', 'mistaken', ',', 'Lady', 'Middleton', ';', 'I', 'am', 'only', 'waiting', 'to', 'know', 'whether', 'you', 'can', 'make', 'your', 'party', 'without', 'me', ',', 'or', 'I', 'should', 'have', 'been', 'at', 'my', 'filigree', 'already', '.', 'I', 'would', 'not', 'disappoint', 'the', 'little', 'angel', 'for', 'all', 'the', 'world', ':', 'and', 'if', 'you', 'want', 'me', 'at', 'the', 'card-table', 'now', ',', 'I', 'am', 'resolved', 'to', 'finish', 'the', 'basket', 'after', 'supper.', '”', '“', 'You', 'are', 'very', 'good', ',', 'I', 'hope', 'it', 'won', '’', 't', 'hurt', 'your', 'eyes—will', 'you', 'ring', 'the', 'bell', 'for', 'some', 'working', 'candles', '?', 'My', 'poor', 'little', 'girl', 'would', 'be', 'sadly', 'disappointed', ',', 'I', 'know', ',', 'if', 'the', 'basket', 'was', 'not', 'finished', 'tomorrow', ',', 'for', 'though', 'I', 'told', 'her', 'it', 'certainly', 'would', 'not', ',', 'I', 'am', 'sure', 'she', 'depends', 'upon', 'having', 'it', 'done.', '”', 'Lucy', 'directly', 'drew', 'her', 'work', 'table', 'near', 'her', 'and', 'reseated', 'herself', 'with', 'an', 'alacrity', 'and', 'cheerfulness', 'which', 'seemed', 'to', 'infer', 'that', 'she', 'could', 'taste', 'no', 'greater', 'delight', 'than', 'in', 'making', 'a', 'filigree', 'basket', 'for', 'a', 'spoilt', 'child', '.', 'Lady', 'Middleton', 'proposed', 'a', 'rubber', 'of', 'Casino', 'to', 'the', 'others', '.', 'No', 'one', 'made', 'any', 'objection', 'but', 'Marianne', ',', 'who', 'with', 'her', 'usual', 'inattention', 'to', 'the', 'forms', 'of', 'general', 'civility', ',', 'exclaimed', ',', '“', 'Your', 'Ladyship', 'will', 'have', 'the', 'goodness', 'to', 'excuse', '_me_—you', 'know', 'I', 'detest', 'cards', '.', 'I', 'shall', 'go', 'to', 'the', 'piano-forte', ';', 'I', 'have', 'not', 'touched', 'it', 'since', 'it', 'was', 'tuned.', '”', 'And', 'without', 'farther', 'ceremony', ',', 'she', 'turned', 'away', 'and', 'walked', 'to', 'the', 'instrument', '.', 'Lady', 'Middleton', 'looked', 'as', 'if', 'she', 'thanked', 'heaven', 'that', '_she_', 'had', 'never', 'made', 'so', 'rude', 'a', 'speech', '.', '“', 'Marianne', 'can', 'never', 'keep', 'long', 'from', 'that', 'instrument', 'you', 'know', ',', 'ma', '’', 'am', ',', '”', 'said', 'Elinor', ',', 'endeavouring', 'to', 'smooth', 'away', 'the', 'offence', ';', '“', 'and', 'I', 'do', 'not', 'much', 'wonder', 'at', 'it', ';', 'for', 'it', 'is', 'the', 'very', 'best', 'toned', 'piano-forte', 'I', 'ever', 'heard.', '”', 'The', 'remaining', 'five', 'were', 'now', 'to', 'draw', 'their', 'cards', '.', '“', 'Perhaps', ',', '”', 'continued', 'Elinor', ',', '“', 'if', 'I', 'should', 'happen', 'to', 'cut', 'out', ',', 'I', 'may', 'be', 'of', 'some', 'use', 'to', 'Miss', 'Lucy', 'Steele', ',', 'in', 'rolling', 'her', 'papers', 'for', 'her', ';', 'and', 'there', 'is', 'so', 'much', 'still', 'to', 'be', 'done', 'to', 'the', 'basket', ',', 'that', 'it', 'must', 'be', 'impossible', 'I', 'think', 'for', 'her', 'labour', 'singly', ',', 'to', 'finish', 'it', 'this', 'evening', '.', 'I', 'should', 'like', 'the', 'work', 'exceedingly', ',', 'if', 'she', 'would', 'allow', 'me', 'a', 'share', 'in', 'it.', '”', '“', 'Indeed', 'I', 'shall', 'be', 'very', 'much', 'obliged', 'to', 'you', 'for', 'your', 'help', ',', '”', 'cried', 'Lucy', ',', '“', 'for', 'I', 'find', 'there', 'is', 'more', 'to', 'be', 'done', 'to', 'it', 'than', 'I', 'thought', 'there', 'was', ';', 'and', 'it', 'would', 'be', 'a', 'shocking', 'thing', 'to', 'disappoint', 'dear', 'Annamaria', 'after', 'all.', '”', '“', 'Oh', '!', 'that', 'would', 'be', 'terrible', ',', 'indeed', ',', '”', 'said', 'Miss', 'Steele', '.', '“', 'Dear', 'little', 'soul', ',', 'how', 'I', 'do', 'love', 'her', '!', '”', '“', 'You', 'are', 'very', 'kind', ',', '”', 'said', 'Lady', 'Middleton', 'to', 'Elinor', ';', '“', 'and', 'as', 'you', 'really', 'like', 'the', 'work', ',', 'perhaps', 'you', 'will', 'be', 'as', 'well', 'pleased', 'not', 'to', 'cut', 'in', 'till', 'another', 'rubber', ',', 'or', 'will', 'you', 'take', 'your', 'chance', 'now', '?', '”', 'Elinor', 'joyfully', 'profited', 'by', 'the', 'first', 'of', 'these', 'proposals', ',', 'and', 'thus', 'by', 'a', 'little', 'of', 'that', 'address', 'which', 'Marianne', 'could', 'never', 'condescend', 'to', 'practise', ',', 'gained', 'her', 'own', 'end', ',', 'and', 'pleased', 'Lady', 'Middleton', 'at', 'the', 'same', 'time', '.', 'Lucy', 'made', 'room', 'for', 'her', 'with', 'ready', 'attention', ',', 'and', 'the', 'two', 'fair', 'rivals', 'were', 'thus', 'seated', 'side', 'by', 'side', 'at', 'the', 'same', 'table', ',', 'and', ',', 'with', 'the', 'utmost', 'harmony', ',', 'engaged', 'in', 'forwarding', 'the', 'same', 'work', '.', 'The', 'pianoforte', 'at', 'which', 'Marianne', ',', 'wrapped', 'up', 'in', 'her', 'own', 'music', 'and', 'her', 'own', 'thoughts', ',', 'had', 'by', 'this', 'time', 'forgotten', 'that', 'any', 'body', 'was', 'in', 'the', 'room', 'besides', 'herself', ',', 'was', 'luckily', 'so', 'near', 'them', 'that', 'Miss', 'Dashwood', 'now', 'judged', 'she', 'might', 'safely', ',', 'under', 'the', 'shelter', 'of', 'its', 'noise', ',', 'introduce', 'the', 'interesting', 'subject', ',', 'without', 'any', 'risk', 'of', 'being', 'heard', 'at', 'the', 'card-table', '.', 'CHAPTER', 'XXIV', '.', 'In', 'a', 'firm', ',', 'though', 'cautious', 'tone', ',', 'Elinor', 'thus', 'began', '.', '“', 'I', 'should', 'be', 'undeserving', 'of', 'the', 'confidence', 'you', 'have', 'honoured', 'me', 'with', ',', 'if', 'I', 'felt', 'no', 'desire', 'for', 'its', 'continuance', ',', 'or', 'no', 'farther', 'curiosity', 'on', 'its', 'subject', '.', 'I', 'will', 'not', 'apologize', 'therefore', 'for', 'bringing', 'it', 'forward', 'again.', '”', '“', 'Thank', 'you', ',', '”', 'cried', 'Lucy', 'warmly', ',', '“', 'for', 'breaking', 'the', 'ice', ';', 'you', 'have', 'set', 'my', 'heart', 'at', 'ease', 'by', 'it', ';', 'for', 'I', 'was', 'somehow', 'or', 'other', 'afraid', 'I', 'had', 'offended', 'you', 'by', 'what', 'I', 'told', 'you', 'that', 'Monday.', '”', '“', 'Offended', 'me', '!', 'How', 'could', 'you', 'suppose', 'so', '?', 'Believe', 'me', ',', '”', 'and', 'Elinor', 'spoke', 'it', 'with', 'the', 'truest', 'sincerity', ',', '“', 'nothing', 'could', 'be', 'farther', 'from', 'my', 'intention', 'than', 'to', 'give', 'you', 'such', 'an', 'idea', '.', 'Could', 'you', 'have', 'a', 'motive', 'for', 'the', 'trust', ',', 'that', 'was', 'not', 'honourable', 'and', 'flattering', 'to', 'me', '?', '”', '“', 'And', 'yet', 'I', 'do', 'assure', 'you', ',', '”', 'replied', 'Lucy', ',', 'her', 'little', 'sharp', 'eyes', 'full', 'of', 'meaning', ',', '“', 'there', 'seemed', 'to', 'me', 'to', 'be', 'a', 'coldness', 'and', 'displeasure', 'in', 'your', 'manner', 'that', 'made', 'me', 'quite', 'uncomfortable', '.', 'I', 'felt', 'sure', 'that', 'you', 'was', 'angry', 'with', 'me', ';', 'and', 'have', 'been', 'quarrelling', 'with', 'myself', 'ever', 'since', ',', 'for', 'having', 'took', 'such', 'a', 'liberty', 'as', 'to', 'trouble', 'you', 'with', 'my', 'affairs', '.', 'But', 'I', 'am', 'very', 'glad', 'to', 'find', 'it', 'was', 'only', 'my', 'own', 'fancy', ',', 'and', 'that', 'you', 'really', 'do', 'not', 'blame', 'me', '.', 'If', 'you', 'knew', 'what', 'a', 'consolation', 'it', 'was', 'to', 'me', 'to', 'relieve', 'my', 'heart', 'speaking', 'to', 'you', 'of', 'what', 'I', 'am', 'always', 'thinking', 'of', 'every', 'moment', 'of', 'my', 'life', ',', 'your', 'compassion', 'would', 'make', 'you', 'overlook', 'every', 'thing', 'else', 'I', 'am', 'sure.', '”', '“', 'Indeed', ',', 'I', 'can', 'easily', 'believe', 'that', 'it', 'was', 'a', 'very', 'great', 'relief', 'to', 'you', ',', 'to', 'acknowledge', 'your', 'situation', 'to', 'me', ',', 'and', 'be', 'assured', 'that', 'you', 'shall', 'never', 'have', 'reason', 'to', 'repent', 'it', '.', 'Your', 'case', 'is', 'a', 'very', 'unfortunate', 'one', ';', 'you', 'seem', 'to', 'me', 'to', 'be', 'surrounded', 'with', 'difficulties', ',', 'and', 'you', 'will', 'have', 'need', 'of', 'all', 'your', 'mutual', 'affection', 'to', 'support', 'you', 'under', 'them', '.', 'Mr.', 'Ferrars', ',', 'I', 'believe', ',', 'is', 'entirely', 'dependent', 'on', 'his', 'mother.', '”', '“', 'He', 'has', 'only', 'two', 'thousand', 'pounds', 'of', 'his', 'own', ';', 'it', 'would', 'be', 'madness', 'to', 'marry', 'upon', 'that', ',', 'though', 'for', 'my', 'own', 'part', ',', 'I', 'could', 'give', 'up', 'every', 'prospect', 'of', 'more', 'without', 'a', 'sigh', '.', 'I', 'have', 'been', 'always', 'used', 'to', 'a', 'very', 'small', 'income', ',', 'and', 'could', 'struggle', 'with', 'any', 'poverty', 'for', 'him', ';', 'but', 'I', 'love', 'him', 'too', 'well', 'to', 'be', 'the', 'selfish', 'means', 'of', 'robbing', 'him', ',', 'perhaps', ',', 'of', 'all', 'that', 'his', 'mother', 'might', 'give', 'him', 'if', 'he', 'married', 'to', 'please', 'her', '.', 'We', 'must', 'wait', ',', 'it', 'may', 'be', 'for', 'many', 'years', '.', 'With', 'almost', 'every', 'other', 'man', 'in', 'the', 'world', ',', 'it', 'would', 'be', 'an', 'alarming', 'prospect', ';', 'but', 'Edward', '’', 's', 'affection', 'and', 'constancy', 'nothing', 'can', 'deprive', 'me', 'of', 'I', 'know.', '”', '“', 'That', 'conviction', 'must', 'be', 'every', 'thing', 'to', 'you', ';', 'and', 'he', 'is', 'undoubtedly', 'supported', 'by', 'the', 'same', 'trust', 'in', 'your', '’', 's', '.', 'If', 'the', 'strength', 'of', 'your', 'reciprocal', 'attachment', 'had', 'failed', ',', 'as', 'between', 'many', 'people', ',', 'and', 'under', 'many', 'circumstances', 'it', 'naturally', 'would', 'during', 'a', 'four', 'years', '’', 'engagement', ',', 'your', 'situation', 'would', 'have', 'been', 'pitiable', ',', 'indeed.', '”', 'Lucy', 'here', 'looked', 'up', ';', 'but', 'Elinor', 'was', 'careful', 'in', 'guarding', 'her', 'countenance', 'from', 'every', 'expression', 'that', 'could', 'give', 'her', 'words', 'a', 'suspicious', 'tendency', '.', '“', 'Edward', '’', 's', 'love', 'for', 'me', ',', '”', 'said', 'Lucy', ',', '“', 'has', 'been', 'pretty', 'well', 'put', 'to', 'the', 'test', ',', 'by', 'our', 'long', ',', 'very', 'long', 'absence', 'since', 'we', 'were', 'first', 'engaged', ',', 'and', 'it', 'has', 'stood', 'the', 'trial', 'so', 'well', ',', 'that', 'I', 'should', 'be', 'unpardonable', 'to', 'doubt', 'it', 'now', '.', 'I', 'can', 'safely', 'say', 'that', 'he', 'has', 'never', 'gave', 'me', 'one', 'moment', '’', 's', 'alarm', 'on', 'that', 'account', 'from', 'the', 'first.', '”', 'Elinor', 'hardly', 'knew', 'whether', 'to', 'smile', 'or', 'sigh', 'at', 'this', 'assertion', '.', 'Lucy', 'went', 'on', '.', '“', 'I', 'am', 'rather', 'of', 'a', 'jealous', 'temper', 'too', 'by', 'nature', ',', 'and', 'from', 'our', 'different', 'situations', 'in', 'life', ',', 'from', 'his', 'being', 'so', 'much', 'more', 'in', 'the', 'world', 'than', 'me', ',', 'and', 'our', 'continual', 'separation', ',', 'I', 'was', 'enough', 'inclined', 'for', 'suspicion', ',', 'to', 'have', 'found', 'out', 'the', 'truth', 'in', 'an', 'instant', ',', 'if', 'there', 'had', 'been', 'the', 'slightest', 'alteration', 'in', 'his', 'behaviour', 'to', 'me', 'when', 'we', 'met', ',', 'or', 'any', 'lowness', 'of', 'spirits', 'that', 'I', 'could', 'not', 'account', 'for', ',', 'or', 'if', 'he', 'had', 'talked', 'more', 'of', 'one', 'lady', 'than', 'another', ',', 'or', 'seemed', 'in', 'any', 'respect', 'less', 'happy', 'at', 'Longstaple', 'than', 'he', 'used', 'to', 'be', '.', 'I', 'do', 'not', 'mean', 'to', 'say', 'that', 'I', 'am', 'particularly', 'observant', 'or', 'quick-sighted', 'in', 'general', ',', 'but', 'in', 'such', 'a', 'case', 'I', 'am', 'sure', 'I', 'could', 'not', 'be', 'deceived.', '”', '“', 'All', 'this', ',', '”', 'thought', 'Elinor', ',', '“', 'is', 'very', 'pretty', ';', 'but', 'it', 'can', 'impose', 'upon', 'neither', 'of', 'us.', '”', '“', 'But', 'what', ',', '”', 'said', 'she', 'after', 'a', 'short', 'silence', ',', '“', 'are', 'your', 'views', '?', 'or', 'have', 'you', 'none', 'but', 'that', 'of', 'waiting', 'for', 'Mrs.', 'Ferrars', '’', 's', 'death', ',', 'which', 'is', 'a', 'melancholy', 'and', 'shocking', 'extremity', '?', '—Is', 'her', 'son', 'determined', 'to', 'submit', 'to', 'this', ',', 'and', 'to', 'all', 'the', 'tediousness', 'of', 'the', 'many', 'years', 'of', 'suspense', 'in', 'which', 'it', 'may', 'involve', 'you', ',', 'rather', 'than', 'run', 'the', 'risk', 'of', 'her', 'displeasure', 'for', 'a', 'while', 'by', 'owning', 'the', 'truth', '?', '”', '“', 'If', 'we', 'could', 'be', 'certain', 'that', 'it', 'would', 'be', 'only', 'for', 'a', 'while', '!', 'But', 'Mrs.', 'Ferrars', 'is', 'a', 'very', 'headstrong', 'proud', 'woman', ',', 'and', 'in', 'her', 'first', 'fit', 'of', 'anger', 'upon', 'hearing', 'it', ',', 'would', 'very', 'likely', 'secure', 'every', 'thing', 'to', 'Robert', ',', 'and', 'the', 'idea', 'of', 'that', ',', 'for', 'Edward', '’', 's', 'sake', ',', 'frightens', 'away', 'all', 'my', 'inclination', 'for', 'hasty', 'measures.', '”', '“', 'And', 'for', 'your', 'own', 'sake', 'too', ',', 'or', 'you', 'are', 'carrying', 'your', 'disinterestedness', 'beyond', 'reason.', '”', 'Lucy', 'looked', 'at', 'Elinor', 'again', ',', 'and', 'was', 'silent', '.', '“', 'Do', 'you', 'know', 'Mr.', 'Robert', 'Ferrars', '?', '”', 'asked', 'Elinor', '.', '“', 'Not', 'at', 'all—I', 'never', 'saw', 'him', ';', 'but', 'I', 'fancy', 'he', 'is', 'very', 'unlike', 'his', 'brother—silly', 'and', 'a', 'great', 'coxcomb.', '”', '“', 'A', 'great', 'coxcomb', '!', '”', 'repeated', 'Miss', 'Steele', ',', 'whose', 'ear', 'had', 'caught', 'those', 'words', 'by', 'a', 'sudden', 'pause', 'in', 'Marianne', '’', 's', 'music', '.', '“', 'Oh', ',', 'they', 'are', 'talking', 'of', 'their', 'favourite', 'beaux', ',', 'I', 'dare', 'say.', '”', '“', 'No', 'sister', ',', '”', 'cried', 'Lucy', ',', '“', 'you', 'are', 'mistaken', 'there', ',', 'our', 'favourite', 'beaux', 'are', '_not_', 'great', 'coxcombs.', '”', '“', 'I', 'can', 'answer', 'for', 'it', 'that', 'Miss', 'Dashwood', '’', 's', 'is', 'not', ',', '”', 'said', 'Mrs.', 'Jennings', ',', 'laughing', 'heartily', ';', '“', 'for', 'he', 'is', 'one', 'of', 'the', 'modestest', ',', 'prettiest', 'behaved', 'young', 'men', 'I', 'ever', 'saw', ';', 'but', 'as', 'for', 'Lucy', ',', 'she', 'is', 'such', 'a', 'sly', 'little', 'creature', ',', 'there', 'is', 'no', 'finding', 'out', 'who', '_she_', 'likes.', '”', '“', 'Oh', ',', '”', 'cried', 'Miss', 'Steele', ',', 'looking', 'significantly', 'round', 'at', 'them', ',', '“', 'I', 'dare', 'say', 'Lucy', '’', 's', 'beau', 'is', 'quite', 'as', 'modest', 'and', 'pretty', 'behaved', 'as', 'Miss', 'Dashwood', '’', 's.', '”', 'Elinor', 'blushed', 'in', 'spite', 'of', 'herself', '.', 'Lucy', 'bit', 'her', 'lip', ',', 'and', 'looked', 'angrily', 'at', 'her', 'sister', '.', 'A', 'mutual', 'silence', 'took', 'place', 'for', 'some', 'time', '.', 'Lucy', 'first', 'put', 'an', 'end', 'to', 'it', 'by', 'saying', 'in', 'a', 'lower', 'tone', ',', 'though', 'Marianne', 'was', 'then', 'giving', 'them', 'the', 'powerful', 'protection', 'of', 'a', 'very', 'magnificent', 'concerto', ',', '—', '“', 'I', 'will', 'honestly', 'tell', 'you', 'of', 'one', 'scheme', 'which', 'has', 'lately', 'come', 'into', 'my', 'head', ',', 'for', 'bringing', 'matters', 'to', 'bear', ';', 'indeed', 'I', 'am', 'bound', 'to', 'let', 'you', 'into', 'the', 'secret', ',', 'for', 'you', 'are', 'a', 'party', 'concerned', '.', 'I', 'dare', 'say', 'you', 'have', 'seen', 'enough', 'of', 'Edward', 'to', 'know', 'that', 'he', 'would', 'prefer', 'the', 'church', 'to', 'every', 'other', 'profession', ';', 'now', 'my', 'plan', 'is', 'that', 'he', 'should', 'take', 'orders', 'as', 'soon', 'as', 'he', 'can', ',', 'and', 'then', 'through', 'your', 'interest', ',', 'which', 'I', 'am', 'sure', 'you', 'would', 'be', 'kind', 'enough', 'to', 'use', 'out', 'of', 'friendship', 'for', 'him', ',', 'and', 'I', 'hope', 'out', 'of', 'some', 'regard', 'to', 'me', ',', 'your', 'brother', 'might', 'be', 'persuaded', 'to', 'give', 'him', 'Norland', 'living', ';', 'which', 'I', 'understand', 'is', 'a', 'very', 'good', 'one', ',', 'and', 'the', 'present', 'incumbent', 'not', 'likely', 'to', 'live', 'a', 'great', 'while', '.', 'That', 'would', 'be', 'enough', 'for', 'us', 'to', 'marry', 'upon', ',', 'and', 'we', 'might', 'trust', 'to', 'time', 'and', 'chance', 'for', 'the', 'rest.', '”', '“', 'I', 'should', 'always', 'be', 'happy', ',', '”', 'replied', 'Elinor', ',', '“', 'to', 'show', 'any', 'mark', 'of', 'my', 'esteem', 'and', 'friendship', 'for', 'Mr.', 'Ferrars', ';', 'but', 'do', 'you', 'not', 'perceive', 'that', 'my', 'interest', 'on', 'such', 'an', 'occasion', 'would', 'be', 'perfectly', 'unnecessary', '?', 'He', 'is', 'brother', 'to', 'Mrs.', 'John', 'Dashwood—_that_', 'must', 'be', 'recommendation', 'enough', 'to', 'her', 'husband.', '”', '“', 'But', 'Mrs.', 'John', 'Dashwood', 'would', 'not', 'much', 'approve', 'of', 'Edward', '’', 's', 'going', 'into', 'orders.', '”', '“', 'Then', 'I', 'rather', 'suspect', 'that', 'my', 'interest', 'would', 'do', 'very', 'little.', '”', 'They', 'were', 'again', 'silent', 'for', 'many', 'minutes', '.', 'At', 'length', 'Lucy', 'exclaimed', 'with', 'a', 'deep', 'sigh', ',', '“', 'I', 'believe', 'it', 'would', 'be', 'the', 'wisest', 'way', 'to', 'put', 'an', 'end', 'to', 'the', 'business', 'at', 'once', 'by', 'dissolving', 'the', 'engagement', '.', 'We', 'seem', 'so', 'beset', 'with', 'difficulties', 'on', 'every', 'side', ',', 'that', 'though', 'it', 'would', 'make', 'us', 'miserable', 'for', 'a', 'time', ',', 'we', 'should', 'be', 'happier', 'perhaps', 'in', 'the', 'end', '.', 'But', 'you', 'will', 'not', 'give', 'me', 'your', 'advice', ',', 'Miss', 'Dashwood', '?', '”', '“', 'No', ',', '”', 'answered', 'Elinor', ',', 'with', 'a', 'smile', ',', 'which', 'concealed', 'very', 'agitated', 'feelings', ',', '“', 'on', 'such', 'a', 'subject', 'I', 'certainly', 'will', 'not', '.', 'You', 'know', 'very', 'well', 'that', 'my', 'opinion', 'would', 'have', 'no', 'weight', 'with', 'you', ',', 'unless', 'it', 'were', 'on', 'the', 'side', 'of', 'your', 'wishes.', '”', '“', 'Indeed', 'you', 'wrong', 'me', ',', '”', 'replied', 'Lucy', ',', 'with', 'great', 'solemnity', ';', '“', 'I', 'know', 'nobody', 'of', 'whose', 'judgment', 'I', 'think', 'so', 'highly', 'as', 'I', 'do', 'of', 'yours', ';', 'and', 'I', 'do', 'really', 'believe', ',', 'that', 'if', 'you', 'was', 'to', 'say', 'to', 'me', ',', '‘', 'I', 'advise', 'you', 'by', 'all', 'means', 'to', 'put', 'an', 'end', 'to', 'your', 'engagement', 'with', 'Edward', 'Ferrars', ',', 'it', 'will', 'be', 'more', 'for', 'the', 'happiness', 'of', 'both', 'of', 'you', ',', '’', 'I', 'should', 'resolve', 'upon', 'doing', 'it', 'immediately.', '”', 'Elinor', 'blushed', 'for', 'the', 'insincerity', 'of', 'Edward', '’', 's', 'future', 'wife', ',', 'and', 'replied', ',', '“', 'This', 'compliment', 'would', 'effectually', 'frighten', 'me', 'from', 'giving', 'any', 'opinion', 'on', 'the', 'subject', 'had', 'I', 'formed', 'one', '.', 'It', 'raises', 'my', 'influence', 'much', 'too', 'high', ';', 'the', 'power', 'of', 'dividing', 'two', 'people', 'so', 'tenderly', 'attached', 'is', 'too', 'much', 'for', 'an', 'indifferent', 'person.', '”', '“', '’', 'Tis', 'because', 'you', 'are', 'an', 'indifferent', 'person', ',', '”', 'said', 'Lucy', ',', 'with', 'some', 'pique', ',', 'and', 'laying', 'a', 'particular', 'stress', 'on', 'those', 'words', ',', '“', 'that', 'your', 'judgment', 'might', 'justly', 'have', 'such', 'weight', 'with', 'me', '.', 'If', 'you', 'could', 'be', 'supposed', 'to', 'be', 'biased', 'in', 'any', 'respect', 'by', 'your', 'own', 'feelings', ',', 'your', 'opinion', 'would', 'not', 'be', 'worth', 'having.', '”', 'Elinor', 'thought', 'it', 'wisest', 'to', 'make', 'no', 'answer', 'to', 'this', ',', 'lest', 'they', 'might', 'provoke', 'each', 'other', 'to', 'an', 'unsuitable', 'increase', 'of', 'ease', 'and', 'unreserve', ';', 'and', 'was', 'even', 'partly', 'determined', 'never', 'to', 'mention', 'the', 'subject', 'again', '.', 'Another', 'pause', 'therefore', 'of', 'many', 'minutes', '’', 'duration', ',', 'succeeded', 'this', 'speech', ',', 'and', 'Lucy', 'was', 'still', 'the', 'first', 'to', 'end', 'it', '.', '“', 'Shall', 'you', 'be', 'in', 'town', 'this', 'winter', ',', 'Miss', 'Dashwood', '?', '”', 'said', 'she', 'with', 'all', 'her', 'accustomary', 'complacency', '.', '“', 'Certainly', 'not.', '”', '“', 'I', 'am', 'sorry', 'for', 'that', ',', '”', 'returned', 'the', 'other', ',', 'while', 'her', 'eyes', 'brightened', 'at', 'the', 'information', ',', '“', 'it', 'would', 'have', 'gave', 'me', 'such', 'pleasure', 'to', 'meet', 'you', 'there', '!', 'But', 'I', 'dare', 'say', 'you', 'will', 'go', 'for', 'all', 'that', '.', 'To', 'be', 'sure', ',', 'your', 'brother', 'and', 'sister', 'will', 'ask', 'you', 'to', 'come', 'to', 'them.', '”', '“', 'It', 'will', 'not', 'be', 'in', 'my', 'power', 'to', 'accept', 'their', 'invitation', 'if', 'they', 'do.', '”', '“', 'How', 'unlucky', 'that', 'is', '!', 'I', 'had', 'quite', 'depended', 'upon', 'meeting', 'you', 'there', '.', 'Anne', 'and', 'me', 'are', 'to', 'go', 'the', 'latter', 'end', 'of', 'January', 'to', 'some', 'relations', 'who', 'have', 'been', 'wanting', 'us', 'to', 'visit', 'them', 'these', 'several', 'years', '!', 'But', 'I', 'only', 'go', 'for', 'the', 'sake', 'of', 'seeing', 'Edward', '.', 'He', 'will', 'be', 'there', 'in', 'February', ',', 'otherwise', 'London', 'would', 'have', 'no', 'charms', 'for', 'me', ';', 'I', 'have', 'not', 'spirits', 'for', 'it.', '”', 'Elinor', 'was', 'soon', 'called', 'to', 'the', 'card-table', 'by', 'the', 'conclusion', 'of', 'the', 'first', 'rubber', ',', 'and', 'the', 'confidential', 'discourse', 'of', 'the', 'two', 'ladies', 'was', 'therefore', 'at', 'an', 'end', ',', 'to', 'which', 'both', 'of', 'them', 'submitted', 'without', 'any', 'reluctance', ',', 'for', 'nothing', 'had', 'been', 'said', 'on', 'either', 'side', 'to', 'make', 'them', 'dislike', 'each', 'other', 'less', 'than', 'they', 'had', 'done', 'before', ';', 'and', 'Elinor', 'sat', 'down', 'to', 'the', 'card', 'table', 'with', 'the', 'melancholy', 'persuasion', 'that', 'Edward', 'was', 'not', 'only', 'without', 'affection', 'for', 'the', 'person', 'who', 'was', 'to', 'be', 'his', 'wife', ';', 'but', 'that', 'he', 'had', 'not', 'even', 'the', 'chance', 'of', 'being', 'tolerably', 'happy', 'in', 'marriage', ',', 'which', 'sincere', 'affection', 'on', '_her_', 'side', 'would', 'have', 'given', ',', 'for', 'self-interest', 'alone', 'could', 'induce', 'a', 'woman', 'to', 'keep', 'a', 'man', 'to', 'an', 'engagement', ',', 'of', 'which', 'she', 'seemed', 'so', 'thoroughly', 'aware', 'that', 'he', 'was', 'weary', '.', 'From', 'this', 'time', 'the', 'subject', 'was', 'never', 'revived', 'by', 'Elinor', ',', 'and', 'when', 'entered', 'on', 'by', 'Lucy', ',', 'who', 'seldom', 'missed', 'an', 'opportunity', 'of', 'introducing', 'it', ',', 'and', 'was', 'particularly', 'careful', 'to', 'inform', 'her', 'confidante', ',', 'of', 'her', 'happiness', 'whenever', 'she', 'received', 'a', 'letter', 'from', 'Edward', ',', 'it', 'was', 'treated', 'by', 'the', 'former', 'with', 'calmness', 'and', 'caution', ',', 'and', 'dismissed', 'as', 'soon', 'as', 'civility', 'would', 'allow', ';', 'for', 'she', 'felt', 'such', 'conversations', 'to', 'be', 'an', 'indulgence', 'which', 'Lucy', 'did', 'not', 'deserve', ',', 'and', 'which', 'were', 'dangerous', 'to', 'herself', '.', 'The', 'visit', 'of', 'the', 'Miss', 'Steeles', 'at', 'Barton', 'Park', 'was', 'lengthened', 'far', 'beyond', 'what', 'the', 'first', 'invitation', 'implied', '.', 'Their', 'favour', 'increased', ';', 'they', 'could', 'not', 'be', 'spared', ';', 'Sir', 'John', 'would', 'not', 'hear', 'of', 'their', 'going', ';', 'and', 'in', 'spite', 'of', 'their', 'numerous', 'and', 'long', 'arranged', 'engagements', 'in', 'Exeter', ',', 'in', 'spite', 'of', 'the', 'absolute', 'necessity', 'of', 'returning', 'to', 'fulfill', 'them', 'immediately', ',', 'which', 'was', 'in', 'full', 'force', 'at', 'the', 'end', 'of', 'every', 'week', ',', 'they', 'were', 'prevailed', 'on', 'to', 'stay', 'nearly', 'two', 'months', 'at', 'the', 'park', ',', 'and', 'to', 'assist', 'in', 'the', 'due', 'celebration', 'of', 'that', 'festival', 'which', 'requires', 'a', 'more', 'than', 'ordinary', 'share', 'of', 'private', 'balls', 'and', 'large', 'dinners', 'to', 'proclaim', 'its', 'importance', '.', 'CHAPTER', 'XXV', '.', 'Though', 'Mrs.', 'Jennings', 'was', 'in', 'the', 'habit', 'of', 'spending', 'a', 'large', 'portion', 'of', 'the', 'year', 'at', 'the', 'houses', 'of', 'her', 'children', 'and', 'friends', ',', 'she', 'was', 'not', 'without', 'a', 'settled', 'habitation', 'of', 'her', 'own', '.', 'Since', 'the', 'death', 'of', 'her', 'husband', ',', 'who', 'had', 'traded', 'with', 'success', 'in', 'a', 'less', 'elegant', 'part', 'of', 'the', 'town', ',', 'she', 'had', 'resided', 'every', 'winter', 'in', 'a', 'house', 'in', 'one', 'of', 'the', 'streets', 'near', 'Portman', 'Square', '.', 'Towards', 'this', 'home', ',', 'she', 'began', 'on', 'the', 'approach', 'of', 'January', 'to', 'turn', 'her', 'thoughts', ',', 'and', 'thither', 'she', 'one', 'day', 'abruptly', ',', 'and', 'very', 'unexpectedly', 'by', 'them', ',', 'asked', 'the', 'elder', 'Misses', 'Dashwood', 'to', 'accompany', 'her', '.', 'Elinor', ',', 'without', 'observing', 'the', 'varying', 'complexion', 'of', 'her', 'sister', ',', 'and', 'the', 'animated', 'look', 'which', 'spoke', 'no', 'indifference', 'to', 'the', 'plan', ',', 'immediately', 'gave', 'a', 'grateful', 'but', 'absolute', 'denial', 'for', 'both', ',', 'in', 'which', 'she', 'believed', 'herself', 'to', 'be', 'speaking', 'their', 'united', 'inclinations', '.', 'The', 'reason', 'alleged', 'was', 'their', 'determined', 'resolution', 'of', 'not', 'leaving', 'their', 'mother', 'at', 'that', 'time', 'of', 'the', 'year', '.', 'Mrs.', 'Jennings', 'received', 'the', 'refusal', 'with', 'some', 'surprise', ',', 'and', 'repeated', 'her', 'invitation', 'immediately', '.', '“', 'Oh', ',', 'Lord', '!', 'I', 'am', 'sure', 'your', 'mother', 'can', 'spare', 'you', 'very', 'well', ',', 'and', 'I', '_do_', 'beg', 'you', 'will', 'favour', 'me', 'with', 'your', 'company', ',', 'for', 'I', '’', 've', 'quite', 'set', 'my', 'heart', 'upon', 'it', '.', 'Don', '’', 't', 'fancy', 'that', 'you', 'will', 'be', 'any', 'inconvenience', 'to', 'me', ',', 'for', 'I', 'shan', '’', 't', 'put', 'myself', 'at', 'all', 'out', 'of', 'my', 'way', 'for', 'you', '.', 'It', 'will', 'only', 'be', 'sending', 'Betty', 'by', 'the', 'coach', ',', 'and', 'I', 'hope', 'I', 'can', 'afford', '_that_', '.', 'We', 'three', 'shall', 'be', 'able', 'to', 'go', 'very', 'well', 'in', 'my', 'chaise', ';', 'and', 'when', 'we', 'are', 'in', 'town', ',', 'if', 'you', 'do', 'not', 'like', 'to', 'go', 'wherever', 'I', 'do', ',', 'well', 'and', 'good', ',', 'you', 'may', 'always', 'go', 'with', 'one', 'of', 'my', 'daughters', '.', 'I', 'am', 'sure', 'your', 'mother', 'will', 'not', 'object', 'to', 'it', ';', 'for', 'I', 'have', 'had', 'such', 'good', 'luck', 'in', 'getting', 'my', 'own', 'children', 'off', 'my', 'hands', 'that', 'she', 'will', 'think', 'me', 'a', 'very', 'fit', 'person', 'to', 'have', 'the', 'charge', 'of', 'you', ';', 'and', 'if', 'I', 'don', '’', 't', 'get', 'one', 'of', 'you', 'at', 'least', 'well', 'married', 'before', 'I', 'have', 'done', 'with', 'you', ',', 'it', 'shall', 'not', 'be', 'my', 'fault', '.', 'I', 'shall', 'speak', 'a', 'good', 'word', 'for', 'you', 'to', 'all', 'the', 'young', 'men', ',', 'you', 'may', 'depend', 'upon', 'it.', '”', '“', 'I', 'have', 'a', 'notion', ',', '”', 'said', 'Sir', 'John', ',', '“', 'that', 'Miss', 'Marianne', 'would', 'not', 'object', 'to', 'such', 'a', 'scheme', ',', 'if', 'her', 'elder', 'sister', 'would', 'come', 'into', 'it', '.', 'It', 'is', 'very', 'hard', 'indeed', 'that', 'she', 'should', 'not', 'have', 'a', 'little', 'pleasure', ',', 'because', 'Miss', 'Dashwood', 'does', 'not', 'wish', 'it', '.', 'So', 'I', 'would', 'advise', 'you', 'two', ',', 'to', 'set', 'off', 'for', 'town', ',', 'when', 'you', 'are', 'tired', 'of', 'Barton', ',', 'without', 'saying', 'a', 'word', 'to', 'Miss', 'Dashwood', 'about', 'it.', '”', '“', 'Nay', ',', '”', 'cried', 'Mrs.', 'Jennings', ',', '“', 'I', 'am', 'sure', 'I', 'shall', 'be', 'monstrous', 'glad', 'of', 'Miss', 'Marianne', '’', 's', 'company', ',', 'whether', 'Miss', 'Dashwood', 'will', 'go', 'or', 'not', ',', 'only', 'the', 'more', 'the', 'merrier', 'say', 'I', ',', 'and', 'I', 'thought', 'it', 'would', 'be', 'more', 'comfortable', 'for', 'them', 'to', 'be', 'together', ';', 'because', ',', 'if', 'they', 'got', 'tired', 'of', 'me', ',', 'they', 'might', 'talk', 'to', 'one', 'another', ',', 'and', 'laugh', 'at', 'my', 'odd', 'ways', 'behind', 'my', 'back', '.', 'But', 'one', 'or', 'the', 'other', ',', 'if', 'not', 'both', 'of', 'them', ',', 'I', 'must', 'have', '.', 'Lord', 'bless', 'me', '!', 'how', 'do', 'you', 'think', 'I', 'can', 'live', 'poking', 'by', 'myself', ',', 'I', 'who', 'have', 'been', 'always', 'used', 'till', 'this', 'winter', 'to', 'have', 'Charlotte', 'with', 'me', '.', 'Come', ',', 'Miss', 'Marianne', ',', 'let', 'us', 'strike', 'hands', 'upon', 'the', 'bargain', ',', 'and', 'if', 'Miss', 'Dashwood', 'will', 'change', 'her', 'mind', 'by', 'and', 'bye', ',', 'why', 'so', 'much', 'the', 'better.', '”', '“', 'I', 'thank', 'you', ',', 'ma', '’', 'am', ',', 'sincerely', 'thank', 'you', ',', '”', 'said', 'Marianne', ',', 'with', 'warmth', ':', '“', 'your', 'invitation', 'has', 'insured', 'my', 'gratitude', 'for', 'ever', ',', 'and', 'it', 'would', 'give', 'me', 'such', 'happiness', ',', 'yes', ',', 'almost', 'the', 'greatest', 'happiness', 'I', 'am', 'capable', 'of', ',', 'to', 'be', 'able', 'to', 'accept', 'it', '.', 'But', 'my', 'mother', ',', 'my', 'dearest', ',', 'kindest', 'mother', ',', '—I', 'feel', 'the', 'justice', 'of', 'what', 'Elinor', 'has', 'urged', ',', 'and', 'if', 'she', 'were', 'to', 'be', 'made', 'less', 'happy', ',', 'less', 'comfortable', 'by', 'our', 'absence—Oh', '!', 'no', ',', 'nothing', 'should', 'tempt', 'me', 'to', 'leave', 'her', '.', 'It', 'should', 'not', ',', 'must', 'not', 'be', 'a', 'struggle.', '”', 'Mrs.', 'Jennings', 'repeated', 'her', 'assurance', 'that', 'Mrs.', 'Dashwood', 'could', 'spare', 'them', 'perfectly', 'well', ';', 'and', 'Elinor', ',', 'who', 'now', 'understood', 'her', 'sister', ',', 'and', 'saw', 'to', 'what', 'indifference', 'to', 'almost', 'every', 'thing', 'else', 'she', 'was', 'carried', 'by', 'her', 'eagerness', 'to', 'be', 'with', 'Willoughby', 'again', ',', 'made', 'no', 'farther', 'direct', 'opposition', 'to', 'the', 'plan', ',', 'and', 'merely', 'referred', 'it', 'to', 'her', 'mother', '’', 's', 'decision', ',', 'from', 'whom', 'however', 'she', 'scarcely', 'expected', 'to', 'receive', 'any', 'support', 'in', 'her', 'endeavour', 'to', 'prevent', 'a', 'visit', ',', 'which', 'she', 'could', 'not', 'approve', 'of', 'for', 'Marianne', ',', 'and', 'which', 'on', 'her', 'own', 'account', 'she', 'had', 'particular', 'reasons', 'to', 'avoid', '.', 'Whatever', 'Marianne', 'was', 'desirous', 'of', ',', 'her', 'mother', 'would', 'be', 'eager', 'to', 'promote—she', 'could', 'not', 'expect', 'to', 'influence', 'the', 'latter', 'to', 'cautiousness', 'of', 'conduct', 'in', 'an', 'affair', 'respecting', 'which', 'she', 'had', 'never', 'been', 'able', 'to', 'inspire', 'her', 'with', 'distrust', ';', 'and', 'she', 'dared', 'not', 'explain', 'the', 'motive', 'of', 'her', 'own', 'disinclination', 'for', 'going', 'to', 'London', '.', 'That', 'Marianne', ',', 'fastidious', 'as', 'she', 'was', ',', 'thoroughly', 'acquainted', 'with', 'Mrs.', 'Jennings', '’', 'manners', ',', 'and', 'invariably', 'disgusted', 'by', 'them', ',', 'should', 'overlook', 'every', 'inconvenience', 'of', 'that', 'kind', ',', 'should', 'disregard', 'whatever', 'must', 'be', 'most', 'wounding', 'to', 'her', 'irritable', 'feelings', ',', 'in', 'her', 'pursuit', 'of', 'one', 'object', ',', 'was', 'such', 'a', 'proof', ',', 'so', 'strong', ',', 'so', 'full', ',', 'of', 'the', 'importance', 'of', 'that', 'object', 'to', 'her', ',', 'as', 'Elinor', ',', 'in', 'spite', 'of', 'all', 'that', 'had', 'passed', ',', 'was', 'not', 'prepared', 'to', 'witness', '.', 'On', 'being', 'informed', 'of', 'the', 'invitation', ',', 'Mrs.', 'Dashwood', ',', 'persuaded', 'that', 'such', 'an', 'excursion', 'would', 'be', 'productive', 'of', 'much', 'amusement', 'to', 'both', 'her', 'daughters', ',', 'and', 'perceiving', 'through', 'all', 'her', 'affectionate', 'attention', 'to', 'herself', ',', 'how', 'much', 'the', 'heart', 'of', 'Marianne', 'was', 'in', 'it', ',', 'would', 'not', 'hear', 'of', 'their', 'declining', 'the', 'offer', 'upon', '_her_', 'account', ';', 'insisted', 'on', 'their', 'both', 'accepting', 'it', 'directly', ';', 'and', 'then', 'began', 'to', 'foresee', ',', 'with', 'her', 'usual', 'cheerfulness', ',', 'a', 'variety', 'of', 'advantages', 'that', 'would', 'accrue', 'to', 'them', 'all', ',', 'from', 'this', 'separation', '.', '“', 'I', 'am', 'delighted', 'with', 'the', 'plan', ',', '”', 'she', 'cried', ',', '“', 'it', 'is', 'exactly', 'what', 'I', 'could', 'wish', '.', 'Margaret', 'and', 'I', 'shall', 'be', 'as', 'much', 'benefited', 'by', 'it', 'as', 'yourselves', '.', 'When', 'you', 'and', 'the', 'Middletons', 'are', 'gone', ',', 'we', 'shall', 'go', 'on', 'so', 'quietly', 'and', 'happily', 'together', 'with', 'our', 'books', 'and', 'our', 'music', '!', 'You', 'will', 'find', 'Margaret', 'so', 'improved', 'when', 'you', 'come', 'back', 'again', '!', 'I', 'have', 'a', 'little', 'plan', 'of', 'alteration', 'for', 'your', 'bedrooms', 'too', ',', 'which', 'may', 'now', 'be', 'performed', 'without', 'any', 'inconvenience', 'to', 'any', 'one', '.', 'It', 'is', 'very', 'right', 'that', 'you', '_should_', 'go', 'to', 'town', ';', 'I', 'would', 'have', 'every', 'young', 'woman', 'of', 'your', 'condition', 'in', 'life', 'acquainted', 'with', 'the', 'manners', 'and', 'amusements', 'of', 'London', '.', 'You', 'will', 'be', 'under', 'the', 'care', 'of', 'a', 'motherly', 'good', 'sort', 'of', 'woman', ',', 'of', 'whose', 'kindness', 'to', 'you', 'I', 'can', 'have', 'no', 'doubt', '.', 'And', 'in', 'all', 'probability', 'you', 'will', 'see', 'your', 'brother', ',', 'and', 'whatever', 'may', 'be', 'his', 'faults', ',', 'or', 'the', 'faults', 'of', 'his', 'wife', ',', 'when', 'I', 'consider', 'whose', 'son', 'he', 'is', ',', 'I', 'can', 'not', 'bear', 'to', 'have', 'you', 'so', 'wholly', 'estranged', 'from', 'each', 'other.', '”', '“', 'Though', 'with', 'your', 'usual', 'anxiety', 'for', 'our', 'happiness', ',', '”', 'said', 'Elinor', ',', '“', 'you', 'have', 'been', 'obviating', 'every', 'impediment', 'to', 'the', 'present', 'scheme', 'which', 'occurred', 'to', 'you', ',', 'there', 'is', 'still', 'one', 'objection', 'which', ',', 'in', 'my', 'opinion', ',', 'can', 'not', 'be', 'so', 'easily', 'removed.', '”', 'Marianne', '’', 's', 'countenance', 'sunk', '.', '“', 'And', 'what', ',', '”', 'said', 'Mrs.', 'Dashwood', ',', '“', 'is', 'my', 'dear', 'prudent', 'Elinor', 'going', 'to', 'suggest', '?', 'What', 'formidable', 'obstacle', 'is', 'she', 'now', 'to', 'bring', 'forward', '?', 'Do', 'not', 'let', 'me', 'hear', 'a', 'word', 'about', 'the', 'expense', 'of', 'it.', '”', '“', 'My', 'objection', 'is', 'this', ';', 'though', 'I', 'think', 'very', 'well', 'of', 'Mrs.', 'Jennings', '’', 's', 'heart', ',', 'she', 'is', 'not', 'a', 'woman', 'whose', 'society', 'can', 'afford', 'us', 'pleasure', ',', 'or', 'whose', 'protection', 'will', 'give', 'us', 'consequence.', '”', '“', 'That', 'is', 'very', 'true', ',', '”', 'replied', 'her', 'mother', ',', '“', 'but', 'of', 'her', 'society', ',', 'separately', 'from', 'that', 'of', 'other', 'people', ',', 'you', 'will', 'scarcely', 'have', 'any', 'thing', 'at', 'all', ',', 'and', 'you', 'will', 'almost', 'always', 'appear', 'in', 'public', 'with', 'Lady', 'Middleton.', '”', '“', 'If', 'Elinor', 'is', 'frightened', 'away', 'by', 'her', 'dislike', 'of', 'Mrs.', 'Jennings', ',', '”', 'said', 'Marianne', ',', '“', 'at', 'least', 'it', 'need', 'not', 'prevent', 'MY', 'accepting', 'her', 'invitation', '.', 'I', 'have', 'no', 'such', 'scruples', ',', 'and', 'I', 'am', 'sure', 'I', 'could', 'put', 'up', 'with', 'every', 'unpleasantness', 'of', 'that', 'kind', 'with', 'very', 'little', 'effort.', '”', 'Elinor', 'could', 'not', 'help', 'smiling', 'at', 'this', 'display', 'of', 'indifference', 'towards', 'the', 'manners', 'of', 'a', 'person', ',', 'to', 'whom', 'she', 'had', 'often', 'had', 'difficulty', 'in', 'persuading', 'Marianne', 'to', 'behave', 'with', 'tolerable', 'politeness', ';', 'and', 'resolved', 'within', 'herself', ',', 'that', 'if', 'her', 'sister', 'persisted', 'in', 'going', ',', 'she', 'would', 'go', 'likewise', ',', 'as', 'she', 'did', 'not', 'think', 'it', 'proper', 'that', 'Marianne', 'should', 'be', 'left', 'to', 'the', 'sole', 'guidance', 'of', 'her', 'own', 'judgment', ',', 'or', 'that', 'Mrs.', 'Jennings', 'should', 'be', 'abandoned', 'to', 'the', 'mercy', 'of', 'Marianne', 'for', 'all', 'the', 'comfort', 'of', 'her', 'domestic', 'hours', '.', 'To', 'this', 'determination', 'she', 'was', 'the', 'more', 'easily', 'reconciled', ',', 'by', 'recollecting', 'that', 'Edward', 'Ferrars', ',', 'by', 'Lucy', '’', 's', 'account', ',', 'was', 'not', 'to', 'be', 'in', 'town', 'before', 'February', ';', 'and', 'that', 'their', 'visit', ',', 'without', 'any', 'unreasonable', 'abridgement', ',', 'might', 'be', 'previously', 'finished', '.', '“', 'I', 'will', 'have', 'you', '_both_', 'go', ',', '”', 'said', 'Mrs.', 'Dashwood', ';', '“', 'these', 'objections', 'are', 'nonsensical', '.', 'You', 'will', 'have', 'much', 'pleasure', 'in', 'being', 'in', 'London', ',', 'and', 'especially', 'in', 'being', 'together', ';', 'and', 'if', 'Elinor', 'would', 'ever', 'condescend', 'to', 'anticipate', 'enjoyment', ',', 'she', 'would', 'foresee', 'it', 'there', 'from', 'a', 'variety', 'of', 'sources', ';', 'she', 'would', ',', 'perhaps', ',', 'expect', 'some', 'from', 'improving', 'her', 'acquaintance', 'with', 'her', 'sister-in-law', '’', 's', 'family.', '”', 'Elinor', 'had', 'often', 'wished', 'for', 'an', 'opportunity', 'of', 'attempting', 'to', 'weaken', 'her', 'mother', '’', 's', 'dependence', 'on', 'the', 'attachment', 'of', 'Edward', 'and', 'herself', ',', 'that', 'the', 'shock', 'might', 'be', 'less', 'when', 'the', 'whole', 'truth', 'were', 'revealed', ',', 'and', 'now', 'on', 'this', 'attack', ',', 'though', 'almost', 'hopeless', 'of', 'success', ',', 'she', 'forced', 'herself', 'to', 'begin', 'her', 'design', 'by', 'saying', ',', 'as', 'calmly', 'as', 'she', 'could', ',', '“', 'I', 'like', 'Edward', 'Ferrars', 'very', 'much', ',', 'and', 'shall', 'always', 'be', 'glad', 'to', 'see', 'him', ';', 'but', 'as', 'to', 'the', 'rest', 'of', 'the', 'family', ',', 'it', 'is', 'a', 'matter', 'of', 'perfect', 'indifference', 'to', 'me', ',', 'whether', 'I', 'am', 'ever', 'known', 'to', 'them', 'or', 'not.', '”', 'Mrs.', 'Dashwood', 'smiled', ',', 'and', 'said', 'nothing', '.', 'Marianne', 'lifted', 'up', 'her', 'eyes', 'in', 'astonishment', ',', 'and', 'Elinor', 'conjectured', 'that', 'she', 'might', 'as', 'well', 'have', 'held', 'her', 'tongue', '.', 'After', 'very', 'little', 'farther', 'discourse', ',', 'it', 'was', 'finally', 'settled', 'that', 'the', 'invitation', 'should', 'be', 'fully', 'accepted', '.', 'Mrs.', 'Jennings', 'received', 'the', 'information', 'with', 'a', 'great', 'deal', 'of', 'joy', ',', 'and', 'many', 'assurances', 'of', 'kindness', 'and', 'care', ';', 'nor', 'was', 'it', 'a', 'matter', 'of', 'pleasure', 'merely', 'to', 'her', '.', 'Sir', 'John', 'was', 'delighted', ';', 'for', 'to', 'a', 'man', ',', 'whose', 'prevailing', 'anxiety', 'was', 'the', 'dread', 'of', 'being', 'alone', ',', 'the', 'acquisition', 'of', 'two', ',', 'to', 'the', 'number', 'of', 'inhabitants', 'in', 'London', ',', 'was', 'something', '.', 'Even', 'Lady', 'Middleton', 'took', 'the', 'trouble', 'of', 'being', 'delighted', ',', 'which', 'was', 'putting', 'herself', 'rather', 'out', 'of', 'her', 'way', ';', 'and', 'as', 'for', 'the', 'Miss', 'Steeles', ',', 'especially', 'Lucy', ',', 'they', 'had', 'never', 'been', 'so', 'happy', 'in', 'their', 'lives', 'as', 'this', 'intelligence', 'made', 'them', '.', 'Elinor', 'submitted', 'to', 'the', 'arrangement', 'which', 'counteracted', 'her', 'wishes', 'with', 'less', 'reluctance', 'than', 'she', 'had', 'expected', 'to', 'feel', '.', 'With', 'regard', 'to', 'herself', ',', 'it', 'was', 'now', 'a', 'matter', 'of', 'unconcern', 'whether', 'she', 'went', 'to', 'town', 'or', 'not', ',', 'and', 'when', 'she', 'saw', 'her', 'mother', 'so', 'thoroughly', 'pleased', 'with', 'the', 'plan', ',', 'and', 'her', 'sister', 'exhilarated', 'by', 'it', 'in', 'look', ',', 'voice', ',', 'and', 'manner', ',', 'restored', 'to', 'all', 'her', 'usual', 'animation', ',', 'and', 'elevated', 'to', 'more', 'than', 'her', 'usual', 'gaiety', ',', 'she', 'could', 'not', 'be', 'dissatisfied', 'with', 'the', 'cause', ',', 'and', 'would', 'hardly', 'allow', 'herself', 'to', 'distrust', 'the', 'consequence', '.', 'Marianne', '’', 's', 'joy', 'was', 'almost', 'a', 'degree', 'beyond', 'happiness', ',', 'so', 'great', 'was', 'the', 'perturbation', 'of', 'her', 'spirits', 'and', 'her', 'impatience', 'to', 'be', 'gone', '.', 'Her', 'unwillingness', 'to', 'quit', 'her', 'mother', 'was', 'her', 'only', 'restorative', 'to', 'calmness', ';', 'and', 'at', 'the', 'moment', 'of', 'parting', 'her', 'grief', 'on', 'that', 'score', 'was', 'excessive', '.', 'Her', 'mother', '’', 's', 'affliction', 'was', 'hardly', 'less', ',', 'and', 'Elinor', 'was', 'the', 'only', 'one', 'of', 'the', 'three', ',', 'who', 'seemed', 'to', 'consider', 'the', 'separation', 'as', 'any', 'thing', 'short', 'of', 'eternal', '.', 'Their', 'departure', 'took', 'place', 'in', 'the', 'first', 'week', 'in', 'January', '.', 'The', 'Middletons', 'were', 'to', 'follow', 'in', 'about', 'a', 'week', '.', 'The', 'Miss', 'Steeles', 'kept', 'their', 'station', 'at', 'the', 'park', ',', 'and', 'were', 'to', 'quit', 'it', 'only', 'with', 'the', 'rest', 'of', 'the', 'family', '.', 'CHAPTER', 'XXVI', '.', 'Elinor', 'could', 'not', 'find', 'herself', 'in', 'the', 'carriage', 'with', 'Mrs.', 'Jennings', ',', 'and', 'beginning', 'a', 'journey', 'to', 'London', 'under', 'her', 'protection', ',', 'and', 'as', 'her', 'guest', ',', 'without', 'wondering', 'at', 'her', 'own', 'situation', ',', 'so', 'short', 'had', 'their', 'acquaintance', 'with', 'that', 'lady', 'been', ',', 'so', 'wholly', 'unsuited', 'were', 'they', 'in', 'age', 'and', 'disposition', ',', 'and', 'so', 'many', 'had', 'been', 'her', 'objections', 'against', 'such', 'a', 'measure', 'only', 'a', 'few', 'days', 'before', '!', 'But', 'these', 'objections', 'had', 'all', ',', 'with', 'that', 'happy', 'ardour', 'of', 'youth', 'which', 'Marianne', 'and', 'her', 'mother', 'equally', 'shared', ',', 'been', 'overcome', 'or', 'overlooked', ';', 'and', 'Elinor', ',', 'in', 'spite', 'of', 'every', 'occasional', 'doubt', 'of', 'Willoughby', '’', 's', 'constancy', ',', 'could', 'not', 'witness', 'the', 'rapture', 'of', 'delightful', 'expectation', 'which', 'filled', 'the', 'whole', 'soul', 'and', 'beamed', 'in', 'the', 'eyes', 'of', 'Marianne', ',', 'without', 'feeling', 'how', 'blank', 'was', 'her', 'own', 'prospect', ',', 'how', 'cheerless', 'her', 'own', 'state', 'of', 'mind', 'in', 'the', 'comparison', ',', 'and', 'how', 'gladly', 'she', 'would', 'engage', 'in', 'the', 'solicitude', 'of', 'Marianne', '’', 's', 'situation', 'to', 'have', 'the', 'same', 'animating', 'object', 'in', 'view', ',', 'the', 'same', 'possibility', 'of', 'hope', '.', 'A', 'short', ',', 'a', 'very', 'short', 'time', 'however', 'must', 'now', 'decide', 'what', 'Willoughby', '’', 's', 'intentions', 'were', ';', 'in', 'all', 'probability', 'he', 'was', 'already', 'in', 'town', '.', 'Marianne', '’', 's', 'eagerness', 'to', 'be', 'gone', 'declared', 'her', 'dependence', 'on', 'finding', 'him', 'there', ';', 'and', 'Elinor', 'was', 'resolved', 'not', 'only', 'upon', 'gaining', 'every', 'new', 'light', 'as', 'to', 'his', 'character', 'which', 'her', 'own', 'observation', 'or', 'the', 'intelligence', 'of', 'others', 'could', 'give', 'her', ',', 'but', 'likewise', 'upon', 'watching', 'his', 'behaviour', 'to', 'her', 'sister', 'with', 'such', 'zealous', 'attention', ',', 'as', 'to', 'ascertain', 'what', 'he', 'was', 'and', 'what', 'he', 'meant', ',', 'before', 'many', 'meetings', 'had', 'taken', 'place', '.', 'Should', 'the', 'result', 'of', 'her', 'observations', 'be', 'unfavourable', ',', 'she', 'was', 'determined', 'at', 'all', 'events', 'to', 'open', 'the', 'eyes', 'of', 'her', 'sister', ';', 'should', 'it', 'be', 'otherwise', ',', 'her', 'exertions', 'would', 'be', 'of', 'a', 'different', 'nature—she', 'must', 'then', 'learn', 'to', 'avoid', 'every', 'selfish', 'comparison', ',', 'and', 'banish', 'every', 'regret', 'which', 'might', 'lessen', 'her', 'satisfaction', 'in', 'the', 'happiness', 'of', 'Marianne', '.', 'They', 'were', 'three', 'days', 'on', 'their', 'journey', ',', 'and', 'Marianne', '’', 's', 'behaviour', 'as', 'they', 'travelled', 'was', 'a', 'happy', 'specimen', 'of', 'what', 'future', 'complaisance', 'and', 'companionableness', 'to', 'Mrs.', 'Jennings', 'might', 'be', 'expected', 'to', 'be', '.', 'She', 'sat', 'in', 'silence', 'almost', 'all', 'the', 'way', ',', 'wrapt', 'in', 'her', 'own', 'meditations', ',', 'and', 'scarcely', 'ever', 'voluntarily', 'speaking', ',', 'except', 'when', 'any', 'object', 'of', 'picturesque', 'beauty', 'within', 'their', 'view', 'drew', 'from', 'her', 'an', 'exclamation', 'of', 'delight', 'exclusively', 'addressed', 'to', 'her', 'sister', '.', 'To', 'atone', 'for', 'this', 'conduct', 'therefore', ',', 'Elinor', 'took', 'immediate', 'possession', 'of', 'the', 'post', 'of', 'civility', 'which', 'she', 'had', 'assigned', 'herself', ',', 'behaved', 'with', 'the', 'greatest', 'attention', 'to', 'Mrs.', 'Jennings', ',', 'talked', 'with', 'her', ',', 'laughed', 'with', 'her', ',', 'and', 'listened', 'to', 'her', 'whenever', 'she', 'could', ';', 'and', 'Mrs.', 'Jennings', 'on', 'her', 'side', 'treated', 'them', 'both', 'with', 'all', 'possible', 'kindness', ',', 'was', 'solicitous', 'on', 'every', 'occasion', 'for', 'their', 'ease', 'and', 'enjoyment', ',', 'and', 'only', 'disturbed', 'that', 'she', 'could', 'not', 'make', 'them', 'choose', 'their', 'own', 'dinners', 'at', 'the', 'inn', ',', 'nor', 'extort', 'a', 'confession', 'of', 'their', 'preferring', 'salmon', 'to', 'cod', ',', 'or', 'boiled', 'fowls', 'to', 'veal', 'cutlets', '.', 'They', 'reached', 'town', 'by', 'three', 'o', '’', 'clock', 'the', 'third', 'day', ',', 'glad', 'to', 'be', 'released', ',', 'after', 'such', 'a', 'journey', ',', 'from', 'the', 'confinement', 'of', 'a', 'carriage', ',', 'and', 'ready', 'to', 'enjoy', 'all', 'the', 'luxury', 'of', 'a', 'good', 'fire', '.', 'The', 'house', 'was', 'handsome', ',', 'and', 'handsomely', 'fitted', 'up', ',', 'and', 'the', 'young', 'ladies', 'were', 'immediately', 'put', 'in', 'possession', 'of', 'a', 'very', 'comfortable', 'apartment', '.', 'It', 'had', 'formerly', 'been', 'Charlotte', '’', 's', ',', 'and', 'over', 'the', 'mantelpiece', 'still', 'hung', 'a', 'landscape', 'in', 'coloured', 'silks', 'of', 'her', 'performance', ',', 'in', 'proof', 'of', 'her', 'having', 'spent', 'seven', 'years', 'at', 'a', 'great', 'school', 'in', 'town', 'to', 'some', 'effect', '.', 'As', 'dinner', 'was', 'not', 'to', 'be', 'ready', 'in', 'less', 'than', 'two', 'hours', 'from', 'their', 'arrival', ',', 'Elinor', 'determined', 'to', 'employ', 'the', 'interval', 'in', 'writing', 'to', 'her', 'mother', ',', 'and', 'sat', 'down', 'for', 'that', 'purpose', '.', 'In', 'a', 'few', 'moments', 'Marianne', 'did', 'the', 'same', '.', '“', '_I_', 'am', 'writing', 'home', ',', 'Marianne', ',', '”', 'said', 'Elinor', ';', '“', 'had', 'not', 'you', 'better', 'defer', 'your', 'letter', 'for', 'a', 'day', 'or', 'two', '?', '”', '“', 'I', 'am', '_not_', 'going', 'to', 'write', 'to', 'my', 'mother', ',', '”', 'replied', 'Marianne', ',', 'hastily', ',', 'and', 'as', 'if', 'wishing', 'to', 'avoid', 'any', 'farther', 'inquiry', '.', 'Elinor', 'said', 'no', 'more', ';', 'it', 'immediately', 'struck', 'her', 'that', 'she', 'must', 'then', 'be', 'writing', 'to', 'Willoughby', ';', 'and', 'the', 'conclusion', 'which', 'as', 'instantly', 'followed', 'was', ',', 'that', ',', 'however', 'mysteriously', 'they', 'might', 'wish', 'to', 'conduct', 'the', 'affair', ',', 'they', 'must', 'be', 'engaged', '.', 'This', 'conviction', ',', 'though', 'not', 'entirely', 'satisfactory', ',', 'gave', 'her', 'pleasure', ',', 'and', 'she', 'continued', 'her', 'letter', 'with', 'greater', 'alacrity', '.', 'Marianne', '’', 's', 'was', 'finished', 'in', 'a', 'very', 'few', 'minutes', ';', 'in', 'length', 'it', 'could', 'be', 'no', 'more', 'than', 'a', 'note', ';', 'it', 'was', 'then', 'folded', 'up', ',', 'sealed', ',', 'and', 'directed', 'with', 'eager', 'rapidity', '.', 'Elinor', 'thought', 'she', 'could', 'distinguish', 'a', 'large', 'W', 'in', 'the', 'direction', ';', 'and', 'no', 'sooner', 'was', 'it', 'complete', 'than', 'Marianne', ',', 'ringing', 'the', 'bell', ',', 'requested', 'the', 'footman', 'who', 'answered', 'it', 'to', 'get', 'that', 'letter', 'conveyed', 'for', 'her', 'to', 'the', 'two-penny', 'post', '.', 'This', 'decided', 'the', 'matter', 'at', 'once', '.', 'Her', 'spirits', 'still', 'continued', 'very', 'high', ';', 'but', 'there', 'was', 'a', 'flutter', 'in', 'them', 'which', 'prevented', 'their', 'giving', 'much', 'pleasure', 'to', 'her', 'sister', ',', 'and', 'this', 'agitation', 'increased', 'as', 'the', 'evening', 'drew', 'on', '.', 'She', 'could', 'scarcely', 'eat', 'any', 'dinner', ',', 'and', 'when', 'they', 'afterwards', 'returned', 'to', 'the', 'drawing', 'room', ',', 'seemed', 'anxiously', 'listening', 'to', 'the', 'sound', 'of', 'every', 'carriage', '.', 'It', 'was', 'a', 'great', 'satisfaction', 'to', 'Elinor', 'that', 'Mrs.', 'Jennings', ',', 'by', 'being', 'much', 'engaged', 'in', 'her', 'own', 'room', ',', 'could', 'see', 'little', 'of', 'what', 'was', 'passing', '.', 'The', 'tea', 'things', 'were', 'brought', 'in', ',', 'and', 'already', 'had', 'Marianne', 'been', 'disappointed', 'more', 'than', 'once', 'by', 'a', 'rap', 'at', 'a', 'neighbouring', 'door', ',', 'when', 'a', 'loud', 'one', 'was', 'suddenly', 'heard', 'which', 'could', 'not', 'be', 'mistaken', 'for', 'one', 'at', 'any', 'other', 'house', ',', 'Elinor', 'felt', 'secure', 'of', 'its', 'announcing', 'Willoughby', '’', 's', 'approach', ',', 'and', 'Marianne', ',', 'starting', 'up', ',', 'moved', 'towards', 'the', 'door', '.', 'Every', 'thing', 'was', 'silent', ';', 'this', 'could', 'not', 'be', 'borne', 'many', 'seconds', ';', 'she', 'opened', 'the', 'door', ',', 'advanced', 'a', 'few', 'steps', 'towards', 'the', 'stairs', ',', 'and', 'after', 'listening', 'half', 'a', 'minute', ',', 'returned', 'into', 'the', 'room', 'in', 'all', 'the', 'agitation', 'which', 'a', 'conviction', 'of', 'having', 'heard', 'him', 'would', 'naturally', 'produce', ';', 'in', 'the', 'ecstasy', 'of', 'her', 'feelings', 'at', 'that', 'instant', 'she', 'could', 'not', 'help', 'exclaiming', ',', '“', 'Oh', ',', 'Elinor', ',', 'it', 'is', 'Willoughby', ',', 'indeed', 'it', 'is', '!', '”', 'and', 'seemed', 'almost', 'ready', 'to', 'throw', 'herself', 'into', 'his', 'arms', ',', 'when', 'Colonel', 'Brandon', 'appeared', '.', 'It', 'was', 'too', 'great', 'a', 'shock', 'to', 'be', 'borne', 'with', 'calmness', ',', 'and', 'she', 'immediately', 'left', 'the', 'room', '.', 'Elinor', 'was', 'disappointed', 'too', ';', 'but', 'at', 'the', 'same', 'time', 'her', 'regard', 'for', 'Colonel', 'Brandon', 'ensured', 'his', 'welcome', 'with', 'her', ';', 'and', 'she', 'felt', 'particularly', 'hurt', 'that', 'a', 'man', 'so', 'partial', 'to', 'her', 'sister', 'should', 'perceive', 'that', 'she', 'experienced', 'nothing', 'but', 'grief', 'and', 'disappointment', 'in', 'seeing', 'him', '.', 'She', 'instantly', 'saw', 'that', 'it', 'was', 'not', 'unnoticed', 'by', 'him', ',', 'that', 'he', 'even', 'observed', 'Marianne', 'as', 'she', 'quitted', 'the', 'room', ',', 'with', 'such', 'astonishment', 'and', 'concern', ',', 'as', 'hardly', 'left', 'him', 'the', 'recollection', 'of', 'what', 'civility', 'demanded', 'towards', 'herself', '.', '“', 'Is', 'your', 'sister', 'ill', '?', '”', 'said', 'he', '.', 'Elinor', 'answered', 'in', 'some', 'distress', 'that', 'she', 'was', ',', 'and', 'then', 'talked', 'of', 'head-aches', ',', 'low', 'spirits', ',', 'and', 'over', 'fatigues', ';', 'and', 'of', 'every', 'thing', 'to', 'which', 'she', 'could', 'decently', 'attribute', 'her', 'sister', '’', 's', 'behaviour', '.', 'He', 'heard', 'her', 'with', 'the', 'most', 'earnest', 'attention', ',', 'but', 'seeming', 'to', 'recollect', 'himself', ',', 'said', 'no', 'more', 'on', 'the', 'subject', ',', 'and', 'began', 'directly', 'to', 'speak', 'of', 'his', 'pleasure', 'at', 'seeing', 'them', 'in', 'London', ',', 'making', 'the', 'usual', 'inquiries', 'about', 'their', 'journey', ',', 'and', 'the', 'friends', 'they', 'had', 'left', 'behind', '.', 'In', 'this', 'calm', 'kind', 'of', 'way', ',', 'with', 'very', 'little', 'interest', 'on', 'either', 'side', ',', 'they', 'continued', 'to', 'talk', ',', 'both', 'of', 'them', 'out', 'of', 'spirits', ',', 'and', 'the', 'thoughts', 'of', 'both', 'engaged', 'elsewhere', '.', 'Elinor', 'wished', 'very', 'much', 'to', 'ask', 'whether', 'Willoughby', 'were', 'then', 'in', 'town', ',', 'but', 'she', 'was', 'afraid', 'of', 'giving', 'him', 'pain', 'by', 'any', 'enquiry', 'after', 'his', 'rival', ';', 'and', 'at', 'length', ',', 'by', 'way', 'of', 'saying', 'something', ',', 'she', 'asked', 'if', 'he', 'had', 'been', 'in', 'London', 'ever', 'since', 'she', 'had', 'seen', 'him', 'last', '.', '“', 'Yes', ',', '”', 'he', 'replied', ',', 'with', 'some', 'embarrassment', ',', '“', 'almost', 'ever', 'since', ';', 'I', 'have', 'been', 'once', 'or', 'twice', 'at', 'Delaford', 'for', 'a', 'few', 'days', ',', 'but', 'it', 'has', 'never', 'been', 'in', 'my', 'power', 'to', 'return', 'to', 'Barton.', '”', 'This', ',', 'and', 'the', 'manner', 'in', 'which', 'it', 'was', 'said', ',', 'immediately', 'brought', 'back', 'to', 'her', 'remembrance', 'all', 'the', 'circumstances', 'of', 'his', 'quitting', 'that', 'place', ',', 'with', 'the', 'uneasiness', 'and', 'suspicions', 'they', 'had', 'caused', 'to', 'Mrs.', 'Jennings', ',', 'and', 'she', 'was', 'fearful', 'that', 'her', 'question', 'had', 'implied', 'much', 'more', 'curiosity', 'on', 'the', 'subject', 'than', 'she', 'had', 'ever', 'felt', '.', 'Mrs.', 'Jennings', 'soon', 'came', 'in', '.', '“', 'Oh', '!', 'Colonel', ',', '”', 'said', 'she', ',', 'with', 'her', 'usual', 'noisy', 'cheerfulness', ',', '“', 'I', 'am', 'monstrous', 'glad', 'to', 'see', 'you—sorry', 'I', 'could', 'not', 'come', 'before—beg', 'your', 'pardon', ',', 'but', 'I', 'have', 'been', 'forced', 'to', 'look', 'about', 'me', 'a', 'little', ',', 'and', 'settle', 'my', 'matters', ';', 'for', 'it', 'is', 'a', 'long', 'while', 'since', 'I', 'have', 'been', 'at', 'home', ',', 'and', 'you', 'know', 'one', 'has', 'always', 'a', 'world', 'of', 'little', 'odd', 'things', 'to', 'do', 'after', 'one', 'has', 'been', 'away', 'for', 'any', 'time', ';', 'and', 'then', 'I', 'have', 'had', 'Cartwright', 'to', 'settle', 'with', '.', 'Lord', ',', 'I', 'have', 'been', 'as', 'busy', 'as', 'a', 'bee', 'ever', 'since', 'dinner', '!', 'But', 'pray', ',', 'Colonel', ',', 'how', 'came', 'you', 'to', 'conjure', 'out', 'that', 'I', 'should', 'be', 'in', 'town', 'today', '?', '”', '“', 'I', 'had', 'the', 'pleasure', 'of', 'hearing', 'it', 'at', 'Mr.', 'Palmer', '’', 's', ',', 'where', 'I', 'have', 'been', 'dining.', '”', '“', 'Oh', ',', 'you', 'did', ';', 'well', ',', 'and', 'how', 'do', 'they', 'all', 'do', 'at', 'their', 'house', '?', 'How', 'does', 'Charlotte', 'do', '?', 'I', 'warrant', 'you', 'she', 'is', 'a', 'fine', 'size', 'by', 'this', 'time.', '”', '“', 'Mrs', '.', 'Palmer', 'appeared', 'quite', 'well', ',', 'and', 'I', 'am', 'commissioned', 'to', 'tell', 'you', ',', 'that', 'you', 'will', 'certainly', 'see', 'her', 'to-morrow.', '”', '“', 'Ay', ',', 'to', 'be', 'sure', ',', 'I', 'thought', 'as', 'much', '.', 'Well', ',', 'Colonel', ',', 'I', 'have', 'brought', 'two', 'young', 'ladies', 'with', 'me', ',', 'you', 'see—that', 'is', ',', 'you', 'see', 'but', 'one', 'of', 'them', 'now', ',', 'but', 'there', 'is', 'another', 'somewhere', '.', 'Your', 'friend', ',', 'Miss', 'Marianne', ',', 'too—which', 'you', 'will', 'not', 'be', 'sorry', 'to', 'hear', '.', 'I', 'do', 'not', 'know', 'what', 'you', 'and', 'Mr.', 'Willoughby', 'will', 'do', 'between', 'you', 'about', 'her', '.', 'Ay', ',', 'it', 'is', 'a', 'fine', 'thing', 'to', 'be', 'young', 'and', 'handsome', '.', 'Well', '!', 'I', 'was', 'young', 'once', ',', 'but', 'I', 'never', 'was', 'very', 'handsome—worse', 'luck', 'for', 'me', '.', 'However', ',', 'I', 'got', 'a', 'very', 'good', 'husband', ',', 'and', 'I', 'don', '’', 't', 'know', 'what', 'the', 'greatest', 'beauty', 'can', 'do', 'more', '.', 'Ah', '!', 'poor', 'man', '!', 'he', 'has', 'been', 'dead', 'these', 'eight', 'years', 'and', 'better', '.', 'But', 'Colonel', ',', 'where', 'have', 'you', 'been', 'to', 'since', 'we', 'parted', '?', 'And', 'how', 'does', 'your', 'business', 'go', 'on', '?', 'Come', ',', 'come', ',', 'let', '’', 's', 'have', 'no', 'secrets', 'among', 'friends.', '”', 'He', 'replied', 'with', 'his', 'accustomary', 'mildness', 'to', 'all', 'her', 'inquiries', ',', 'but', 'without', 'satisfying', 'her', 'in', 'any', '.', 'Elinor', 'now', 'began', 'to', 'make', 'the', 'tea', ',', 'and', 'Marianne', 'was', 'obliged', 'to', 'appear', 'again', '.', 'After', 'her', 'entrance', ',', 'Colonel', 'Brandon', 'became', 'more', 'thoughtful', 'and', 'silent', 'than', 'he', 'had', 'been', 'before', ',', 'and', 'Mrs.', 'Jennings', 'could', 'not', 'prevail', 'on', 'him', 'to', 'stay', 'long', '.', 'No', 'other', 'visitor', 'appeared', 'that', 'evening', ',', 'and', 'the', 'ladies', 'were', 'unanimous', 'in', 'agreeing', 'to', 'go', 'early', 'to', 'bed', '.', 'Marianne', 'rose', 'the', 'next', 'morning', 'with', 'recovered', 'spirits', 'and', 'happy', 'looks', '.', 'The', 'disappointment', 'of', 'the', 'evening', 'before', 'seemed', 'forgotten', 'in', 'the', 'expectation', 'of', 'what', 'was', 'to', 'happen', 'that', 'day', '.', 'They', 'had', 'not', 'long', 'finished', 'their', 'breakfast', 'before', 'Mrs.', 'Palmer', '’', 's', 'barouche', 'stopped', 'at', 'the', 'door', ',', 'and', 'in', 'a', 'few', 'minutes', 'she', 'came', 'laughing', 'into', 'the', 'room', ':', 'so', 'delighted', 'to', 'see', 'them', 'all', ',', 'that', 'it', 'was', 'hard', 'to', 'say', 'whether', 'she', 'received', 'most', 'pleasure', 'from', 'meeting', 'her', 'mother', 'or', 'the', 'Miss', 'Dashwoods', 'again', '.', 'So', 'surprised', 'at', 'their', 'coming', 'to', 'town', ',', 'though', 'it', 'was', 'what', 'she', 'had', 'rather', 'expected', 'all', 'along', ';', 'so', 'angry', 'at', 'their', 'accepting', 'her', 'mother', '’', 's', 'invitation', 'after', 'having', 'declined', 'her', 'own', ',', 'though', 'at', 'the', 'same', 'time', 'she', 'would', 'never', 'have', 'forgiven', 'them', 'if', 'they', 'had', 'not', 'come', '!', '“', 'Mr', '.', 'Palmer', 'will', 'be', 'so', 'happy', 'to', 'see', 'you', ',', '”', 'said', 'she', ';', '“', 'What', 'do', 'you', 'think', 'he', 'said', 'when', 'he', 'heard', 'of', 'your', 'coming', 'with', 'Mama', '?', 'I', 'forget', 'what', 'it', 'was', 'now', ',', 'but', 'it', 'was', 'something', 'so', 'droll', '!', '”', 'After', 'an', 'hour', 'or', 'two', 'spent', 'in', 'what', 'her', 'mother', 'called', 'comfortable', 'chat', ',', 'or', 'in', 'other', 'words', ',', 'in', 'every', 'variety', 'of', 'inquiry', 'concerning', 'all', 'their', 'acquaintance', 'on', 'Mrs.', 'Jennings', '’', 's', 'side', ',', 'and', 'in', 'laughter', 'without', 'cause', 'on', 'Mrs.', 'Palmer', '’', 's', ',', 'it', 'was', 'proposed', 'by', 'the', 'latter', 'that', 'they', 'should', 'all', 'accompany', 'her', 'to', 'some', 'shops', 'where', 'she', 'had', 'business', 'that', 'morning', ',', 'to', 'which', 'Mrs.', 'Jennings', 'and', 'Elinor', 'readily', 'consented', ',', 'as', 'having', 'likewise', 'some', 'purchases', 'to', 'make', 'themselves', ';', 'and', 'Marianne', ',', 'though', 'declining', 'it', 'at', 'first', 'was', 'induced', 'to', 'go', 'likewise', '.', 'Wherever', 'they', 'went', ',', 'she', 'was', 'evidently', 'always', 'on', 'the', 'watch', '.', 'In', 'Bond', 'Street', 'especially', ',', 'where', 'much', 'of', 'their', 'business', 'lay', ',', 'her', 'eyes', 'were', 'in', 'constant', 'inquiry', ';', 'and', 'in', 'whatever', 'shop', 'the', 'party', 'were', 'engaged', ',', 'her', 'mind', 'was', 'equally', 'abstracted', 'from', 'every', 'thing', 'actually', 'before', 'them', ',', 'from', 'all', 'that', 'interested', 'and', 'occupied', 'the', 'others', '.', 'Restless', 'and', 'dissatisfied', 'every', 'where', ',', 'her', 'sister', 'could', 'never', 'obtain', 'her', 'opinion', 'of', 'any', 'article', 'of', 'purchase', ',', 'however', 'it', 'might', 'equally', 'concern', 'them', 'both', ':', 'she', 'received', 'no', 'pleasure', 'from', 'anything', ';', 'was', 'only', 'impatient', 'to', 'be', 'at', 'home', 'again', ',', 'and', 'could', 'with', 'difficulty', 'govern', 'her', 'vexation', 'at', 'the', 'tediousness', 'of', 'Mrs.', 'Palmer', ',', 'whose', 'eye', 'was', 'caught', 'by', 'every', 'thing', 'pretty', ',', 'expensive', ',', 'or', 'new', ';', 'who', 'was', 'wild', 'to', 'buy', 'all', ',', 'could', 'determine', 'on', 'none', ',', 'and', 'dawdled', 'away', 'her', 'time', 'in', 'rapture', 'and', 'indecision', '.', 'It', 'was', 'late', 'in', 'the', 'morning', 'before', 'they', 'returned', 'home', ';', 'and', 'no', 'sooner', 'had', 'they', 'entered', 'the', 'house', 'than', 'Marianne', 'flew', 'eagerly', 'up', 'stairs', ',', 'and', 'when', 'Elinor', 'followed', ',', 'she', 'found', 'her', 'turning', 'from', 'the', 'table', 'with', 'a', 'sorrowful', 'countenance', ',', 'which', 'declared', 'that', 'no', 'Willoughby', 'had', 'been', 'there', '.', '“', 'Has', 'no', 'letter', 'been', 'left', 'here', 'for', 'me', 'since', 'we', 'went', 'out', '?', '”', 'said', 'she', 'to', 'the', 'footman', 'who', 'then', 'entered', 'with', 'the', 'parcels', '.', 'She', 'was', 'answered', 'in', 'the', 'negative', '.', '“', 'Are', 'you', 'quite', 'sure', 'of', 'it', '?', '”', 'she', 'replied', '.', '“', 'Are', 'you', 'certain', 'that', 'no', 'servant', ',', 'no', 'porter', 'has', 'left', 'any', 'letter', 'or', 'note', '?', '”', 'The', 'man', 'replied', 'that', 'none', 'had', '.', '“', 'How', 'very', 'odd', '!', '”', 'said', 'she', ',', 'in', 'a', 'low', 'and', 'disappointed', 'voice', ',', 'as', 'she', 'turned', 'away', 'to', 'the', 'window', '.', '“', 'How', 'odd', ',', 'indeed', '!', '”', 'repeated', 'Elinor', 'within', 'herself', ',', 'regarding', 'her', 'sister', 'with', 'uneasiness', '.', '“', 'If', 'she', 'had', 'not', 'known', 'him', 'to', 'be', 'in', 'town', 'she', 'would', 'not', 'have', 'written', 'to', 'him', ',', 'as', 'she', 'did', ';', 'she', 'would', 'have', 'written', 'to', 'Combe', 'Magna', ';', 'and', 'if', 'he', 'is', 'in', 'town', ',', 'how', 'odd', 'that', 'he', 'should', 'neither', 'come', 'nor', 'write', '!', 'Oh', '!', 'my', 'dear', 'mother', ',', 'you', 'must', 'be', 'wrong', 'in', 'permitting', 'an', 'engagement', 'between', 'a', 'daughter', 'so', 'young', ',', 'a', 'man', 'so', 'little', 'known', ',', 'to', 'be', 'carried', 'on', 'in', 'so', 'doubtful', ',', 'so', 'mysterious', 'a', 'manner', '!', '_I_', 'long', 'to', 'inquire', ';', 'and', 'how', 'will', '_my_', 'interference', 'be', 'borne.', '”', 'She', 'determined', ',', 'after', 'some', 'consideration', ',', 'that', 'if', 'appearances', 'continued', 'many', 'days', 'longer', 'as', 'unpleasant', 'as', 'they', 'now', 'were', ',', 'she', 'would', 'represent', 'in', 'the', 'strongest', 'manner', 'to', 'her', 'mother', 'the', 'necessity', 'of', 'some', 'serious', 'enquiry', 'into', 'the', 'affair', '.', 'Mrs.', 'Palmer', 'and', 'two', 'elderly', 'ladies', 'of', 'Mrs.', 'Jennings', '’', 's', 'intimate', 'acquaintance', ',', 'whom', 'she', 'had', 'met', 'and', 'invited', 'in', 'the', 'morning', ',', 'dined', 'with', 'them', '.', 'The', 'former', 'left', 'them', 'soon', 'after', 'tea', 'to', 'fulfill', 'her', 'evening', 'engagements', ';', 'and', 'Elinor', 'was', 'obliged', 'to', 'assist', 'in', 'making', 'a', 'whist', 'table', 'for', 'the', 'others', '.', 'Marianne', 'was', 'of', 'no', 'use', 'on', 'these', 'occasions', ',', 'as', 'she', 'would', 'never', 'learn', 'the', 'game', ';', 'but', 'though', 'her', 'time', 'was', 'therefore', 'at', 'her', 'own', 'disposal', ',', 'the', 'evening', 'was', 'by', 'no', 'means', 'more', 'productive', 'of', 'pleasure', 'to', 'her', 'than', 'to', 'Elinor', ',', 'for', 'it', 'was', 'spent', 'in', 'all', 'the', 'anxiety', 'of', 'expectation', 'and', 'the', 'pain', 'of', 'disappointment', '.', 'She', 'sometimes', 'endeavoured', 'for', 'a', 'few', 'minutes', 'to', 'read', ';', 'but', 'the', 'book', 'was', 'soon', 'thrown', 'aside', ',', 'and', 'she', 'returned', 'to', 'the', 'more', 'interesting', 'employment', 'of', 'walking', 'backwards', 'and', 'forwards', 'across', 'the', 'room', ',', 'pausing', 'for', 'a', 'moment', 'whenever', 'she', 'came', 'to', 'the', 'window', ',', 'in', 'hopes', 'of', 'distinguishing', 'the', 'long-expected', 'rap', '.', 'CHAPTER', 'XXVII', '.', '“', 'If', 'this', 'open', 'weather', 'holds', 'much', 'longer', ',', '”', 'said', 'Mrs.', 'Jennings', ',', 'when', 'they', 'met', 'at', 'breakfast', 'the', 'following', 'morning', ',', '“', 'Sir', 'John', 'will', 'not', 'like', 'leaving', 'Barton', 'next', 'week', ';', '’', 'tis', 'a', 'sad', 'thing', 'for', 'sportsmen', 'to', 'lose', 'a', 'day', '’', 's', 'pleasure', '.', 'Poor', 'souls', '!', 'I', 'always', 'pity', 'them', 'when', 'they', 'do', ';', 'they', 'seem', 'to', 'take', 'it', 'so', 'much', 'to', 'heart.', '”', '“', 'That', 'is', 'true', ',', '”', 'cried', 'Marianne', ',', 'in', 'a', 'cheerful', 'voice', ',', 'and', 'walking', 'to', 'the', 'window', 'as', 'she', 'spoke', ',', 'to', 'examine', 'the', 'day', '.', '“', 'I', 'had', 'not', 'thought', 'of', '_that_', '.', 'This', 'weather', 'will', 'keep', 'many', 'sportsmen', 'in', 'the', 'country.', '”', 'It', 'was', 'a', 'lucky', 'recollection', ',', 'all', 'her', 'good', 'spirits', 'were', 'restored', 'by', 'it', '.', '“', 'It', 'is', 'charming', 'weather', 'for', '_them_', 'indeed', ',', '”', 'she', 'continued', ',', 'as', 'she', 'sat', 'down', 'to', 'the', 'breakfast', 'table', 'with', 'a', 'happy', 'countenance', '.', '“', 'How', 'much', 'they', 'must', 'enjoy', 'it', '!', 'But', '”', '(', 'with', 'a', 'little', 'return', 'of', 'anxiety', ')', '“', 'it', 'can', 'not', 'be', 'expected', 'to', 'last', 'long', '.', 'At', 'this', 'time', 'of', 'the', 'year', ',', 'and', 'after', 'such', 'a', 'series', 'of', 'rain', ',', 'we', 'shall', 'certainly', 'have', 'very', 'little', 'more', 'of', 'it', '.', 'Frosts', 'will', 'soon', 'set', 'in', ',', 'and', 'in', 'all', 'probability', 'with', 'severity', '.', 'In', 'another', 'day', 'or', 'two', 'perhaps', ';', 'this', 'extreme', 'mildness', 'can', 'hardly', 'last', 'longer—nay', ',', 'perhaps', 'it', 'may', 'freeze', 'tonight', '!', '”', '“', 'At', 'any', 'rate', ',', '”', 'said', 'Elinor', ',', 'wishing', 'to', 'prevent', 'Mrs.', 'Jennings', 'from', 'seeing', 'her', 'sister', '’', 's', 'thoughts', 'as', 'clearly', 'as', 'she', 'did', ',', '“', 'I', 'dare', 'say', 'we', 'shall', 'have', 'Sir', 'John', 'and', 'Lady', 'Middleton', 'in', 'town', 'by', 'the', 'end', 'of', 'next', 'week.', '”', '“', 'Ay', ',', 'my', 'dear', ',', 'I', '’', 'll', 'warrant', 'you', 'we', 'do', '.', 'Mary', 'always', 'has', 'her', 'own', 'way.', '”', '“', 'And', 'now', ',', '”', 'silently', 'conjectured', 'Elinor', ',', '“', 'she', 'will', 'write', 'to', 'Combe', 'by', 'this', 'day', '’', 's', 'post.', '”', 'But', 'if', 'she', '_did_', ',', 'the', 'letter', 'was', 'written', 'and', 'sent', 'away', 'with', 'a', 'privacy', 'which', 'eluded', 'all', 'her', 'watchfulness', 'to', 'ascertain', 'the', 'fact', '.', 'Whatever', 'the', 'truth', 'of', 'it', 'might', 'be', ',', 'and', 'far', 'as', 'Elinor', 'was', 'from', 'feeling', 'thorough', 'contentment', 'about', 'it', ',', 'yet', 'while', 'she', 'saw', 'Marianne', 'in', 'spirits', ',', 'she', 'could', 'not', 'be', 'very', 'uncomfortable', 'herself', '.', 'And', 'Marianne', 'was', 'in', 'spirits', ';', 'happy', 'in', 'the', 'mildness', 'of', 'the', 'weather', ',', 'and', 'still', 'happier', 'in', 'her', 'expectation', 'of', 'a', 'frost', '.', 'The', 'morning', 'was', 'chiefly', 'spent', 'in', 'leaving', 'cards', 'at', 'the', 'houses', 'of', 'Mrs.', 'Jennings', '’', 's', 'acquaintance', 'to', 'inform', 'them', 'of', 'her', 'being', 'in', 'town', ';', 'and', 'Marianne', 'was', 'all', 'the', 'time', 'busy', 'in', 'observing', 'the', 'direction', 'of', 'the', 'wind', ',', 'watching', 'the', 'variations', 'of', 'the', 'sky', 'and', 'imagining', 'an', 'alteration', 'in', 'the', 'air', '.', '“', 'Don', '’', 't', 'you', 'find', 'it', 'colder', 'than', 'it', 'was', 'in', 'the', 'morning', ',', 'Elinor', '?', 'There', 'seems', 'to', 'me', 'a', 'very', 'decided', 'difference', '.', 'I', 'can', 'hardly', 'keep', 'my', 'hands', 'warm', 'even', 'in', 'my', 'muff', '.', 'It', 'was', 'not', 'so', 'yesterday', ',', 'I', 'think', '.', 'The', 'clouds', 'seem', 'parting', 'too', ',', 'the', 'sun', 'will', 'be', 'out', 'in', 'a', 'moment', ',', 'and', 'we', 'shall', 'have', 'a', 'clear', 'afternoon.', '”', 'Elinor', 'was', 'alternately', 'diverted', 'and', 'pained', ';', 'but', 'Marianne', 'persevered', ',', 'and', 'saw', 'every', 'night', 'in', 'the', 'brightness', 'of', 'the', 'fire', ',', 'and', 'every', 'morning', 'in', 'the', 'appearance', 'of', 'the', 'atmosphere', ',', 'the', 'certain', 'symptoms', 'of', 'approaching', 'frost', '.', 'The', 'Miss', 'Dashwoods', 'had', 'no', 'greater', 'reason', 'to', 'be', 'dissatisfied', 'with', 'Mrs.', 'Jennings', '’', 's', 'style', 'of', 'living', ',', 'and', 'set', 'of', 'acquaintance', ',', 'than', 'with', 'her', 'behaviour', 'to', 'themselves', ',', 'which', 'was', 'invariably', 'kind', '.', 'Every', 'thing', 'in', 'her', 'household', 'arrangements', 'was', 'conducted', 'on', 'the', 'most', 'liberal', 'plan', ',', 'and', 'excepting', 'a', 'few', 'old', 'city', 'friends', ',', 'whom', ',', 'to', 'Lady', 'Middleton', '’', 's', 'regret', ',', 'she', 'had', 'never', 'dropped', ',', 'she', 'visited', 'no', 'one', 'to', 'whom', 'an', 'introduction', 'could', 'at', 'all', 'discompose', 'the', 'feelings', 'of', 'her', 'young', 'companions', '.', 'Pleased', 'to', 'find', 'herself', 'more', 'comfortably', 'situated', 'in', 'that', 'particular', 'than', 'she', 'had', 'expected', ',', 'Elinor', 'was', 'very', 'willing', 'to', 'compound', 'for', 'the', 'want', 'of', 'much', 'real', 'enjoyment', 'from', 'any', 'of', 'their', 'evening', 'parties', ',', 'which', ',', 'whether', 'at', 'home', 'or', 'abroad', ',', 'formed', 'only', 'for', 'cards', ',', 'could', 'have', 'little', 'to', 'amuse', 'her', '.', 'Colonel', 'Brandon', ',', 'who', 'had', 'a', 'general', 'invitation', 'to', 'the', 'house', ',', 'was', 'with', 'them', 'almost', 'every', 'day', ';', 'he', 'came', 'to', 'look', 'at', 'Marianne', 'and', 'talk', 'to', 'Elinor', ',', 'who', 'often', 'derived', 'more', 'satisfaction', 'from', 'conversing', 'with', 'him', 'than', 'from', 'any', 'other', 'daily', 'occurrence', ',', 'but', 'who', 'saw', 'at', 'the', 'same', 'time', 'with', 'much', 'concern', 'his', 'continued', 'regard', 'for', 'her', 'sister', '.', 'She', 'feared', 'it', 'was', 'a', 'strengthening', 'regard', '.', 'It', 'grieved', 'her', 'to', 'see', 'the', 'earnestness', 'with', 'which', 'he', 'often', 'watched', 'Marianne', ',', 'and', 'his', 'spirits', 'were', 'certainly', 'worse', 'than', 'when', 'at', 'Barton', '.', 'About', 'a', 'week', 'after', 'their', 'arrival', ',', 'it', 'became', 'certain', 'that', 'Willoughby', 'was', 'also', 'arrived', '.', 'His', 'card', 'was', 'on', 'the', 'table', 'when', 'they', 'came', 'in', 'from', 'the', 'morning', '’', 's', 'drive', '.', '“', 'Good', 'God', '!', '”', 'cried', 'Marianne', ',', '“', 'he', 'has', 'been', 'here', 'while', 'we', 'were', 'out.', '”', 'Elinor', ',', 'rejoiced', 'to', 'be', 'assured', 'of', 'his', 'being', 'in', 'London', ',', 'now', 'ventured', 'to', 'say', ',', '“', 'Depend', 'upon', 'it', ',', 'he', 'will', 'call', 'again', 'tomorrow.', '”', 'But', 'Marianne', 'seemed', 'hardly', 'to', 'hear', 'her', ',', 'and', 'on', 'Mrs.', 'Jennings', '’', 's', 'entrance', ',', 'escaped', 'with', 'the', 'precious', 'card', '.', 'This', 'event', ',', 'while', 'it', 'raised', 'the', 'spirits', 'of', 'Elinor', ',', 'restored', 'to', 'those', 'of', 'her', 'sister', 'all', ',', 'and', 'more', 'than', 'all', ',', 'their', 'former', 'agitation', '.', 'From', 'this', 'moment', 'her', 'mind', 'was', 'never', 'quiet', ';', 'the', 'expectation', 'of', 'seeing', 'him', 'every', 'hour', 'of', 'the', 'day', ',', 'made', 'her', 'unfit', 'for', 'any', 'thing', '.', 'She', 'insisted', 'on', 'being', 'left', 'behind', ',', 'the', 'next', 'morning', ',', 'when', 'the', 'others', 'went', 'out', '.', 'Elinor', '’', 's', 'thoughts', 'were', 'full', 'of', 'what', 'might', 'be', 'passing', 'in', 'Berkeley', 'Street', 'during', 'their', 'absence', ';', 'but', 'a', 'moment', '’', 's', 'glance', 'at', 'her', 'sister', 'when', 'they', 'returned', 'was', 'enough', 'to', 'inform', 'her', ',', 'that', 'Willoughby', 'had', 'paid', 'no', 'second', 'visit', 'there', '.', 'A', 'note', 'was', 'just', 'then', 'brought', 'in', ',', 'and', 'laid', 'on', 'the', 'table', '.', '“', 'For', 'me', '!', '”', 'cried', 'Marianne', ',', 'stepping', 'hastily', 'forward', '.', '“', 'No', ',', 'ma', '’', 'am', ',', 'for', 'my', 'mistress.', '”', 'But', 'Marianne', ',', 'not', 'convinced', ',', 'took', 'it', 'instantly', 'up', '.', '“', 'It', 'is', 'indeed', 'for', 'Mrs.', 'Jennings', ';', 'how', 'provoking', '!', '”', '“', 'You', 'are', 'expecting', 'a', 'letter', ',', 'then', '?', '”', 'said', 'Elinor', ',', 'unable', 'to', 'be', 'longer', 'silent', '.', '“', 'Yes', ',', 'a', 'little—not', 'much.', '”', 'After', 'a', 'short', 'pause', '.', '“', 'You', 'have', 'no', 'confidence', 'in', 'me', ',', 'Marianne.', '”', '“', 'Nay', ',', 'Elinor', ',', 'this', 'reproach', 'from', '_you_—you', 'who', 'have', 'confidence', 'in', 'no', 'one', '!', '”', '“', 'Me', '!', '”', 'returned', 'Elinor', 'in', 'some', 'confusion', ';', '“', 'indeed', ',', 'Marianne', ',', 'I', 'have', 'nothing', 'to', 'tell.', '”', '“', 'Nor', 'I', ',', '”', 'answered', 'Marianne', 'with', 'energy', ',', '“', 'our', 'situations', 'then', 'are', 'alike', '.', 'We', 'have', 'neither', 'of', 'us', 'any', 'thing', 'to', 'tell', ';', 'you', ',', 'because', 'you', 'do', 'not', 'communicate', ',', 'and', 'I', ',', 'because', 'I', 'conceal', 'nothing.', '”', 'Elinor', ',', 'distressed', 'by', 'this', 'charge', 'of', 'reserve', 'in', 'herself', ',', 'which', 'she', 'was', 'not', 'at', 'liberty', 'to', 'do', 'away', ',', 'knew', 'not', 'how', ',', 'under', 'such', 'circumstances', ',', 'to', 'press', 'for', 'greater', 'openness', 'in', 'Marianne', '.', 'Mrs.', 'Jennings', 'soon', 'appeared', ',', 'and', 'the', 'note', 'being', 'given', 'her', ',', 'she', 'read', 'it', 'aloud', '.', 'It', 'was', 'from', 'Lady', 'Middleton', ',', 'announcing', 'their', 'arrival', 'in', 'Conduit', 'Street', 'the', 'night', 'before', ',', 'and', 'requesting', 'the', 'company', 'of', 'her', 'mother', 'and', 'cousins', 'the', 'following', 'evening', '.', 'Business', 'on', 'Sir', 'John', '’', 's', 'part', ',', 'and', 'a', 'violent', 'cold', 'on', 'her', 'own', ',', 'prevented', 'their', 'calling', 'in', 'Berkeley', 'Street', '.', 'The', 'invitation', 'was', 'accepted', ';', 'but', 'when', 'the', 'hour', 'of', 'appointment', 'drew', 'near', ',', 'necessary', 'as', 'it', 'was', 'in', 'common', 'civility', 'to', 'Mrs.', 'Jennings', ',', 'that', 'they', 'should', 'both', 'attend', 'her', 'on', 'such', 'a', 'visit', ',', 'Elinor', 'had', 'some', 'difficulty', 'in', 'persuading', 'her', 'sister', 'to', 'go', ',', 'for', 'still', 'she', 'had', 'seen', 'nothing', 'of', 'Willoughby', ';', 'and', 'therefore', 'was', 'not', 'more', 'indisposed', 'for', 'amusement', 'abroad', ',', 'than', 'unwilling', 'to', 'run', 'the', 'risk', 'of', 'his', 'calling', 'again', 'in', 'her', 'absence', '.', 'Elinor', 'found', ',', 'when', 'the', 'evening', 'was', 'over', ',', 'that', 'disposition', 'is', 'not', 'materially', 'altered', 'by', 'a', 'change', 'of', 'abode', ',', 'for', 'although', 'scarcely', 'settled', 'in', 'town', ',', 'Sir', 'John', 'had', 'contrived', 'to', 'collect', 'around', 'him', ',', 'nearly', 'twenty', 'young', 'people', ',', 'and', 'to', 'amuse', 'them', 'with', 'a', 'ball', '.', 'This', 'was', 'an', 'affair', ',', 'however', ',', 'of', 'which', 'Lady', 'Middleton', 'did', 'not', 'approve', '.', 'In', 'the', 'country', ',', 'an', 'unpremeditated', 'dance', 'was', 'very', 'allowable', ';', 'but', 'in', 'London', ',', 'where', 'the', 'reputation', 'of', 'elegance', 'was', 'more', 'important', 'and', 'less', 'easily', 'attained', ',', 'it', 'was', 'risking', 'too', 'much', 'for', 'the', 'gratification', 'of', 'a', 'few', 'girls', ',', 'to', 'have', 'it', 'known', 'that', 'Lady', 'Middleton', 'had', 'given', 'a', 'small', 'dance', 'of', 'eight', 'or', 'nine', 'couple', ',', 'with', 'two', 'violins', ',', 'and', 'a', 'mere', 'side-board', 'collation', '.', 'Mr.', 'and', 'Mrs.', 'Palmer', 'were', 'of', 'the', 'party', ';', 'from', 'the', 'former', ',', 'whom', 'they', 'had', 'not', 'seen', 'before', 'since', 'their', 'arrival', 'in', 'town', ',', 'as', 'he', 'was', 'careful', 'to', 'avoid', 'the', 'appearance', 'of', 'any', 'attention', 'to', 'his', 'mother-in-law', ',', 'and', 'therefore', 'never', 'came', 'near', 'her', ',', 'they', 'received', 'no', 'mark', 'of', 'recognition', 'on', 'their', 'entrance', '.', 'He', 'looked', 'at', 'them', 'slightly', ',', 'without', 'seeming', 'to', 'know', 'who', 'they', 'were', ',', 'and', 'merely', 'nodded', 'to', 'Mrs.', 'Jennings', 'from', 'the', 'other', 'side', 'of', 'the', 'room', '.', 'Marianne', 'gave', 'one', 'glance', 'round', 'the', 'apartment', 'as', 'she', 'entered', ':', 'it', 'was', 'enough—_he_', 'was', 'not', 'there—and', 'she', 'sat', 'down', ',', 'equally', 'ill-disposed', 'to', 'receive', 'or', 'communicate', 'pleasure', '.', 'After', 'they', 'had', 'been', 'assembled', 'about', 'an', 'hour', ',', 'Mr.', 'Palmer', 'sauntered', 'towards', 'the', 'Miss', 'Dashwoods', 'to', 'express', 'his', 'surprise', 'on', 'seeing', 'them', 'in', 'town', ',', 'though', 'Colonel', 'Brandon', 'had', 'been', 'first', 'informed', 'of', 'their', 'arrival', 'at', 'his', 'house', ',', 'and', 'he', 'had', 'himself', 'said', 'something', 'very', 'droll', 'on', 'hearing', 'that', 'they', 'were', 'to', 'come', '.', '“', 'I', 'thought', 'you', 'were', 'both', 'in', 'Devonshire', ',', '”', 'said', 'he', '.', '“', 'Did', 'you', '?', '”', 'replied', 'Elinor', '.', '“', 'When', 'do', 'you', 'go', 'back', 'again', '?', '”', '“', 'I', 'do', 'not', 'know.', '”', 'And', 'thus', 'ended', 'their', 'discourse', '.', 'Never', 'had', 'Marianne', 'been', 'so', 'unwilling', 'to', 'dance', 'in', 'her', 'life', ',', 'as', 'she', 'was', 'that', 'evening', ',', 'and', 'never', 'so', 'much', 'fatigued', 'by', 'the', 'exercise', '.', 'She', 'complained', 'of', 'it', 'as', 'they', 'returned', 'to', 'Berkeley', 'Street', '.', '“', 'Aye', ',', 'aye', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'we', 'know', 'the', 'reason', 'of', 'all', 'that', 'very', 'well', ';', 'if', 'a', 'certain', 'person', 'who', 'shall', 'be', 'nameless', ',', 'had', 'been', 'there', ',', 'you', 'would', 'not', 'have', 'been', 'a', 'bit', 'tired', ':', 'and', 'to', 'say', 'the', 'truth', 'it', 'was', 'not', 'very', 'pretty', 'of', 'him', 'not', 'to', 'give', 'you', 'the', 'meeting', 'when', 'he', 'was', 'invited.', '”', '“', 'Invited', '!', '”', 'cried', 'Marianne', '.', '“', 'So', 'my', 'daughter', 'Middleton', 'told', 'me', ',', 'for', 'it', 'seems', 'Sir', 'John', 'met', 'him', 'somewhere', 'in', 'the', 'street', 'this', 'morning.', '”', 'Marianne', 'said', 'no', 'more', ',', 'but', 'looked', 'exceedingly', 'hurt', '.', 'Impatient', 'in', 'this', 'situation', 'to', 'be', 'doing', 'something', 'that', 'might', 'lead', 'to', 'her', 'sister', '’', 's', 'relief', ',', 'Elinor', 'resolved', 'to', 'write', 'the', 'next', 'morning', 'to', 'her', 'mother', ',', 'and', 'hoped', 'by', 'awakening', 'her', 'fears', 'for', 'the', 'health', 'of', 'Marianne', ',', 'to', 'procure', 'those', 'inquiries', 'which', 'had', 'been', 'so', 'long', 'delayed', ';', 'and', 'she', 'was', 'still', 'more', 'eagerly', 'bent', 'on', 'this', 'measure', 'by', 'perceiving', 'after', 'breakfast', 'on', 'the', 'morrow', ',', 'that', 'Marianne', 'was', 'again', 'writing', 'to', 'Willoughby', ',', 'for', 'she', 'could', 'not', 'suppose', 'it', 'to', 'be', 'to', 'any', 'other', 'person', '.', 'About', 'the', 'middle', 'of', 'the', 'day', ',', 'Mrs.', 'Jennings', 'went', 'out', 'by', 'herself', 'on', 'business', ',', 'and', 'Elinor', 'began', 'her', 'letter', 'directly', ',', 'while', 'Marianne', ',', 'too', 'restless', 'for', 'employment', ',', 'too', 'anxious', 'for', 'conversation', ',', 'walked', 'from', 'one', 'window', 'to', 'the', 'other', ',', 'or', 'sat', 'down', 'by', 'the', 'fire', 'in', 'melancholy', 'meditation', '.', 'Elinor', 'was', 'very', 'earnest', 'in', 'her', 'application', 'to', 'her', 'mother', ',', 'relating', 'all', 'that', 'had', 'passed', ',', 'her', 'suspicions', 'of', 'Willoughby', '’', 's', 'inconstancy', ',', 'urging', 'her', 'by', 'every', 'plea', 'of', 'duty', 'and', 'affection', 'to', 'demand', 'from', 'Marianne', 'an', 'account', 'of', 'her', 'real', 'situation', 'with', 'respect', 'to', 'him', '.', 'Her', 'letter', 'was', 'scarcely', 'finished', ',', 'when', 'a', 'rap', 'foretold', 'a', 'visitor', ',', 'and', 'Colonel', 'Brandon', 'was', 'announced', '.', 'Marianne', ',', 'who', 'had', 'seen', 'him', 'from', 'the', 'window', ',', 'and', 'who', 'hated', 'company', 'of', 'any', 'kind', ',', 'left', 'the', 'room', 'before', 'he', 'entered', 'it', '.', 'He', 'looked', 'more', 'than', 'usually', 'grave', ',', 'and', 'though', 'expressing', 'satisfaction', 'at', 'finding', 'Miss', 'Dashwood', 'alone', ',', 'as', 'if', 'he', 'had', 'somewhat', 'in', 'particular', 'to', 'tell', 'her', ',', 'sat', 'for', 'some', 'time', 'without', 'saying', 'a', 'word', '.', 'Elinor', ',', 'persuaded', 'that', 'he', 'had', 'some', 'communication', 'to', 'make', 'in', 'which', 'her', 'sister', 'was', 'concerned', ',', 'impatiently', 'expected', 'its', 'opening', '.', 'It', 'was', 'not', 'the', 'first', 'time', 'of', 'her', 'feeling', 'the', 'same', 'kind', 'of', 'conviction', ';', 'for', ',', 'more', 'than', 'once', 'before', ',', 'beginning', 'with', 'the', 'observation', 'of', '“', 'your', 'sister', 'looks', 'unwell', 'to-day', ',', '”', 'or', '“', 'your', 'sister', 'seems', 'out', 'of', 'spirits', ',', '”', 'he', 'had', 'appeared', 'on', 'the', 'point', ',', 'either', 'of', 'disclosing', ',', 'or', 'of', 'inquiring', ',', 'something', 'particular', 'about', 'her', '.', 'After', 'a', 'pause', 'of', 'several', 'minutes', ',', 'their', 'silence', 'was', 'broken', ',', 'by', 'his', 'asking', 'her', 'in', 'a', 'voice', 'of', 'some', 'agitation', ',', 'when', 'he', 'was', 'to', 'congratulate', 'her', 'on', 'the', 'acquisition', 'of', 'a', 'brother', '?', 'Elinor', 'was', 'not', 'prepared', 'for', 'such', 'a', 'question', ',', 'and', 'having', 'no', 'answer', 'ready', ',', 'was', 'obliged', 'to', 'adopt', 'the', 'simple', 'and', 'common', 'expedient', ',', 'of', 'asking', 'what', 'he', 'meant', '?', 'He', 'tried', 'to', 'smile', 'as', 'he', 'replied', ',', '“', 'your', 'sister', '’', 's', 'engagement', 'to', 'Mr.', 'Willoughby', 'is', 'very', 'generally', 'known.', '”', '“', 'It', 'can', 'not', 'be', 'generally', 'known', ',', '”', 'returned', 'Elinor', ',', '“', 'for', 'her', 'own', 'family', 'do', 'not', 'know', 'it.', '”', 'He', 'looked', 'surprised', 'and', 'said', ',', '“', 'I', 'beg', 'your', 'pardon', ',', 'I', 'am', 'afraid', 'my', 'inquiry', 'has', 'been', 'impertinent', ';', 'but', 'I', 'had', 'not', 'supposed', 'any', 'secrecy', 'intended', ',', 'as', 'they', 'openly', 'correspond', ',', 'and', 'their', 'marriage', 'is', 'universally', 'talked', 'of.', '”', '“', 'How', 'can', 'that', 'be', '?', 'By', 'whom', 'can', 'you', 'have', 'heard', 'it', 'mentioned', '?', '”', '“', 'By', 'many—by', 'some', 'of', 'whom', 'you', 'know', 'nothing', ',', 'by', 'others', 'with', 'whom', 'you', 'are', 'most', 'intimate', ',', 'Mrs.', 'Jennings', ',', 'Mrs.', 'Palmer', ',', 'and', 'the', 'Middletons', '.', 'But', 'still', 'I', 'might', 'not', 'have', 'believed', 'it', ',', 'for', 'where', 'the', 'mind', 'is', 'perhaps', 'rather', 'unwilling', 'to', 'be', 'convinced', ',', 'it', 'will', 'always', 'find', 'something', 'to', 'support', 'its', 'doubts', ',', 'if', 'I', 'had', 'not', ',', 'when', 'the', 'servant', 'let', 'me', 'in', 'today', ',', 'accidentally', 'seen', 'a', 'letter', 'in', 'his', 'hand', ',', 'directed', 'to', 'Mr.', 'Willoughby', 'in', 'your', 'sister', '’', 's', 'writing', '.', 'I', 'came', 'to', 'inquire', ',', 'but', 'I', 'was', 'convinced', 'before', 'I', 'could', 'ask', 'the', 'question', '.', 'Is', 'every', 'thing', 'finally', 'settled', '?', 'Is', 'it', 'impossible', 'to—', '?', 'But', 'I', 'have', 'no', 'right', ',', 'and', 'I', 'could', 'have', 'no', 'chance', 'of', 'succeeding', '.', 'Excuse', 'me', ',', 'Miss', 'Dashwood', '.', 'I', 'believe', 'I', 'have', 'been', 'wrong', 'in', 'saying', 'so', 'much', ',', 'but', 'I', 'hardly', 'know', 'what', 'to', 'do', ',', 'and', 'on', 'your', 'prudence', 'I', 'have', 'the', 'strongest', 'dependence', '.', 'Tell', 'me', 'that', 'it', 'is', 'all', 'absolutely', 'resolved', 'on', ',', 'that', 'any', 'attempt', ',', 'that', 'in', 'short', 'concealment', ',', 'if', 'concealment', 'be', 'possible', ',', 'is', 'all', 'that', 'remains.', '”', 'These', 'words', ',', 'which', 'conveyed', 'to', 'Elinor', 'a', 'direct', 'avowal', 'of', 'his', 'love', 'for', 'her', 'sister', ',', 'affected', 'her', 'very', 'much', '.', 'She', 'was', 'not', 'immediately', 'able', 'to', 'say', 'anything', ',', 'and', 'even', 'when', 'her', 'spirits', 'were', 'recovered', ',', 'she', 'debated', 'for', 'a', 'short', 'time', ',', 'on', 'the', 'answer', 'it', 'would', 'be', 'most', 'proper', 'to', 'give', '.', 'The', 'real', 'state', 'of', 'things', 'between', 'Willoughby', 'and', 'her', 'sister', 'was', 'so', 'little', 'known', 'to', 'herself', ',', 'that', 'in', 'endeavouring', 'to', 'explain', 'it', ',', 'she', 'might', 'be', 'as', 'liable', 'to', 'say', 'too', 'much', 'as', 'too', 'little', '.', 'Yet', 'as', 'she', 'was', 'convinced', 'that', 'Marianne', '’', 's', 'affection', 'for', 'Willoughby', ',', 'could', 'leave', 'no', 'hope', 'of', 'Colonel', 'Brandon', '’', 's', 'success', ',', 'whatever', 'the', 'event', 'of', 'that', 'affection', 'might', 'be', ',', 'and', 'at', 'the', 'same', 'time', 'wished', 'to', 'shield', 'her', 'conduct', 'from', 'censure', ',', 'she', 'thought', 'it', 'most', 'prudent', 'and', 'kind', ',', 'after', 'some', 'consideration', ',', 'to', 'say', 'more', 'than', 'she', 'really', 'knew', 'or', 'believed', '.', 'She', 'acknowledged', ',', 'therefore', ',', 'that', 'though', 'she', 'had', 'never', 'been', 'informed', 'by', 'themselves', 'of', 'the', 'terms', 'on', 'which', 'they', 'stood', 'with', 'each', 'other', ',', 'of', 'their', 'mutual', 'affection', 'she', 'had', 'no', 'doubt', ',', 'and', 'of', 'their', 'correspondence', 'she', 'was', 'not', 'astonished', 'to', 'hear', '.', 'He', 'listened', 'to', 'her', 'with', 'silent', 'attention', ',', 'and', 'on', 'her', 'ceasing', 'to', 'speak', ',', 'rose', 'directly', 'from', 'his', 'seat', ',', 'and', 'after', 'saying', 'in', 'a', 'voice', 'of', 'emotion', ',', '“', 'to', 'your', 'sister', 'I', 'wish', 'all', 'imaginable', 'happiness', ';', 'to', 'Willoughby', 'that', 'he', 'may', 'endeavour', 'to', 'deserve', 'her', ',', '”', '—took', 'leave', ',', 'and', 'went', 'away', '.', 'Elinor', 'derived', 'no', 'comfortable', 'feelings', 'from', 'this', 'conversation', ',', 'to', 'lessen', 'the', 'uneasiness', 'of', 'her', 'mind', 'on', 'other', 'points', ';', 'she', 'was', 'left', ',', 'on', 'the', 'contrary', ',', 'with', 'a', 'melancholy', 'impression', 'of', 'Colonel', 'Brandon', '’', 's', 'unhappiness', ',', 'and', 'was', 'prevented', 'even', 'from', 'wishing', 'it', 'removed', ',', 'by', 'her', 'anxiety', 'for', 'the', 'very', 'event', 'that', 'must', 'confirm', 'it', '.', 'CHAPTER', 'XXVIII', '.', 'Nothing', 'occurred', 'during', 'the', 'next', 'three', 'or', 'four', 'days', ',', 'to', 'make', 'Elinor', 'regret', 'what', 'she', 'had', 'done', ',', 'in', 'applying', 'to', 'her', 'mother', ';', 'for', 'Willoughby', 'neither', 'came', 'nor', 'wrote', '.', 'They', 'were', 'engaged', 'about', 'the', 'end', 'of', 'that', 'time', 'to', 'attend', 'Lady', 'Middleton', 'to', 'a', 'party', ',', 'from', 'which', 'Mrs.', 'Jennings', 'was', 'kept', 'away', 'by', 'the', 'indisposition', 'of', 'her', 'youngest', 'daughter', ';', 'and', 'for', 'this', 'party', ',', 'Marianne', ',', 'wholly', 'dispirited', ',', 'careless', 'of', 'her', 'appearance', ',', 'and', 'seeming', 'equally', 'indifferent', 'whether', 'she', 'went', 'or', 'staid', ',', 'prepared', ',', 'without', 'one', 'look', 'of', 'hope', 'or', 'one', 'expression', 'of', 'pleasure', '.', 'She', 'sat', 'by', 'the', 'drawing-room', 'fire', 'after', 'tea', ',', 'till', 'the', 'moment', 'of', 'Lady', 'Middleton', '’', 's', 'arrival', ',', 'without', 'once', 'stirring', 'from', 'her', 'seat', ',', 'or', 'altering', 'her', 'attitude', ',', 'lost', 'in', 'her', 'own', 'thoughts', ',', 'and', 'insensible', 'of', 'her', 'sister', '’', 's', 'presence', ';', 'and', 'when', 'at', 'last', 'they', 'were', 'told', 'that', 'Lady', 'Middleton', 'waited', 'for', 'them', 'at', 'the', 'door', ',', 'she', 'started', 'as', 'if', 'she', 'had', 'forgotten', 'that', 'any', 'one', 'was', 'expected', '.', 'They', 'arrived', 'in', 'due', 'time', 'at', 'the', 'place', 'of', 'destination', ',', 'and', 'as', 'soon', 'as', 'the', 'string', 'of', 'carriages', 'before', 'them', 'would', 'allow', ',', 'alighted', ',', 'ascended', 'the', 'stairs', ',', 'heard', 'their', 'names', 'announced', 'from', 'one', 'landing-place', 'to', 'another', 'in', 'an', 'audible', 'voice', ',', 'and', 'entered', 'a', 'room', 'splendidly', 'lit', 'up', ',', 'quite', 'full', 'of', 'company', ',', 'and', 'insufferably', 'hot', '.', 'When', 'they', 'had', 'paid', 'their', 'tribute', 'of', 'politeness', 'by', 'curtsying', 'to', 'the', 'lady', 'of', 'the', 'house', ',', 'they', 'were', 'permitted', 'to', 'mingle', 'in', 'the', 'crowd', ',', 'and', 'take', 'their', 'share', 'of', 'the', 'heat', 'and', 'inconvenience', ',', 'to', 'which', 'their', 'arrival', 'must', 'necessarily', 'add', '.', 'After', 'some', 'time', 'spent', 'in', 'saying', 'little', 'or', 'doing', 'less', ',', 'Lady', 'Middleton', 'sat', 'down', 'to', 'Cassino', ',', 'and', 'as', 'Marianne', 'was', 'not', 'in', 'spirits', 'for', 'moving', 'about', ',', 'she', 'and', 'Elinor', 'luckily', 'succeeding', 'to', 'chairs', ',', 'placed', 'themselves', 'at', 'no', 'great', 'distance', 'from', 'the', 'table', '.', 'They', 'had', 'not', 'remained', 'in', 'this', 'manner', 'long', ',', 'before', 'Elinor', 'perceived', 'Willoughby', ',', 'standing', 'within', 'a', 'few', 'yards', 'of', 'them', ',', 'in', 'earnest', 'conversation', 'with', 'a', 'very', 'fashionable', 'looking', 'young', 'woman', '.', 'She', 'soon', 'caught', 'his', 'eye', ',', 'and', 'he', 'immediately', 'bowed', ',', 'but', 'without', 'attempting', 'to', 'speak', 'to', 'her', ',', 'or', 'to', 'approach', 'Marianne', ',', 'though', 'he', 'could', 'not', 'but', 'see', 'her', ';', 'and', 'then', 'continued', 'his', 'discourse', 'with', 'the', 'same', 'lady', '.', 'Elinor', 'turned', 'involuntarily', 'to', 'Marianne', ',', 'to', 'see', 'whether', 'it', 'could', 'be', 'unobserved', 'by', 'her', '.', 'At', 'that', 'moment', 'she', 'first', 'perceived', 'him', ',', 'and', 'her', 'whole', 'countenance', 'glowing', 'with', 'sudden', 'delight', ',', 'she', 'would', 'have', 'moved', 'towards', 'him', 'instantly', ',', 'had', 'not', 'her', 'sister', 'caught', 'hold', 'of', 'her', '.', '“', 'Good', 'heavens', '!', '”', 'she', 'exclaimed', ',', '“', 'he', 'is', 'there—he', 'is', 'there—Oh', '!', 'why', 'does', 'he', 'not', 'look', 'at', 'me', '?', 'why', 'can', 'not', 'I', 'speak', 'to', 'him', '?', '”', '“', 'Pray', ',', 'pray', 'be', 'composed', ',', '”', 'cried', 'Elinor', ',', '“', 'and', 'do', 'not', 'betray', 'what', 'you', 'feel', 'to', 'every', 'body', 'present', '.', 'Perhaps', 'he', 'has', 'not', 'observed', 'you', 'yet.', '”', 'This', 'however', 'was', 'more', 'than', 'she', 'could', 'believe', 'herself', ';', 'and', 'to', 'be', 'composed', 'at', 'such', 'a', 'moment', 'was', 'not', 'only', 'beyond', 'the', 'reach', 'of', 'Marianne', ',', 'it', 'was', 'beyond', 'her', 'wish', '.', 'She', 'sat', 'in', 'an', 'agony', 'of', 'impatience', 'which', 'affected', 'every', 'feature', '.', 'At', 'last', 'he', 'turned', 'round', 'again', ',', 'and', 'regarded', 'them', 'both', ';', 'she', 'started', 'up', ',', 'and', 'pronouncing', 'his', 'name', 'in', 'a', 'tone', 'of', 'affection', ',', 'held', 'out', 'her', 'hand', 'to', 'him', '.', 'He', 'approached', ',', 'and', 'addressing', 'himself', 'rather', 'to', 'Elinor', 'than', 'Marianne', ',', 'as', 'if', 'wishing', 'to', 'avoid', 'her', 'eye', ',', 'and', 'determined', 'not', 'to', 'observe', 'her', 'attitude', ',', 'inquired', 'in', 'a', 'hurried', 'manner', 'after', 'Mrs.', 'Dashwood', ',', 'and', 'asked', 'how', 'long', 'they', 'had', 'been', 'in', 'town', '.', 'Elinor', 'was', 'robbed', 'of', 'all', 'presence', 'of', 'mind', 'by', 'such', 'an', 'address', ',', 'and', 'was', 'unable', 'to', 'say', 'a', 'word', '.', 'But', 'the', 'feelings', 'of', 'her', 'sister', 'were', 'instantly', 'expressed', '.', 'Her', 'face', 'was', 'crimsoned', 'over', ',', 'and', 'she', 'exclaimed', ',', 'in', 'a', 'voice', 'of', 'the', 'greatest', 'emotion', ',', '“', 'Good', 'God', '!', 'Willoughby', ',', 'what', 'is', 'the', 'meaning', 'of', 'this', '?', 'Have', 'you', 'not', 'received', 'my', 'letters', '?', 'Will', 'you', 'not', 'shake', 'hands', 'with', 'me', '?', '”', 'He', 'could', 'not', 'then', 'avoid', 'it', ',', 'but', 'her', 'touch', 'seemed', 'painful', 'to', 'him', ',', 'and', 'he', 'held', 'her', 'hand', 'only', 'for', 'a', 'moment', '.', 'During', 'all', 'this', 'time', 'he', 'was', 'evidently', 'struggling', 'for', 'composure', '.', 'Elinor', 'watched', 'his', 'countenance', 'and', 'saw', 'its', 'expression', 'becoming', 'more', 'tranquil', '.', 'After', 'a', 'moment', '’', 's', 'pause', ',', 'he', 'spoke', 'with', 'calmness', '.', '“', 'I', 'did', 'myself', 'the', 'honour', 'of', 'calling', 'in', 'Berkeley', 'Street', 'last', 'Tuesday', ',', 'and', 'very', 'much', 'regretted', 'that', 'I', 'was', 'not', 'fortunate', 'enough', 'to', 'find', 'yourselves', 'and', 'Mrs.', 'Jennings', 'at', 'home', '.', 'My', 'card', 'was', 'not', 'lost', ',', 'I', 'hope.', '”', '“', 'But', 'have', 'you', 'not', 'received', 'my', 'notes', '?', '”', 'cried', 'Marianne', 'in', 'the', 'wildest', 'anxiety', '.', '“', 'Here', 'is', 'some', 'mistake', 'I', 'am', 'sure—some', 'dreadful', 'mistake', '.', 'What', 'can', 'be', 'the', 'meaning', 'of', 'it', '?', 'Tell', 'me', ',', 'Willoughby', ';', 'for', 'heaven', '’', 's', 'sake', 'tell', 'me', ',', 'what', 'is', 'the', 'matter', '?', '”', 'He', 'made', 'no', 'reply', ';', 'his', 'complexion', 'changed', 'and', 'all', 'his', 'embarrassment', 'returned', ';', 'but', 'as', 'if', ',', 'on', 'catching', 'the', 'eye', 'of', 'the', 'young', 'lady', 'with', 'whom', 'he', 'had', 'been', 'previously', 'talking', ',', 'he', 'felt', 'the', 'necessity', 'of', 'instant', 'exertion', ',', 'he', 'recovered', 'himself', 'again', ',', 'and', 'after', 'saying', ',', '“', 'Yes', ',', 'I', 'had', 'the', 'pleasure', 'of', 'receiving', 'the', 'information', 'of', 'your', 'arrival', 'in', 'town', ',', 'which', 'you', 'were', 'so', 'good', 'as', 'to', 'send', 'me', ',', '”', 'turned', 'hastily', 'away', 'with', 'a', 'slight', 'bow', 'and', 'joined', 'his', 'friend', '.', 'Marianne', ',', 'now', 'looking', 'dreadfully', 'white', ',', 'and', 'unable', 'to', 'stand', ',', 'sunk', 'into', 'her', 'chair', ',', 'and', 'Elinor', ',', 'expecting', 'every', 'moment', 'to', 'see', 'her', 'faint', ',', 'tried', 'to', 'screen', 'her', 'from', 'the', 'observation', 'of', 'others', ',', 'while', 'reviving', 'her', 'with', 'lavender', 'water', '.', '“', 'Go', 'to', 'him', ',', 'Elinor', ',', '”', 'she', 'cried', ',', 'as', 'soon', 'as', 'she', 'could', 'speak', ',', '“', 'and', 'force', 'him', 'to', 'come', 'to', 'me', '.', 'Tell', 'him', 'I', 'must', 'see', 'him', 'again—must', 'speak', 'to', 'him', 'instantly.—I', 'can', 'not', 'rest—I', 'shall', 'not', 'have', 'a', 'moment', '’', 's', 'peace', 'till', 'this', 'is', 'explained—some', 'dreadful', 'misapprehension', 'or', 'other', '.', 'Oh', ',', 'go', 'to', 'him', 'this', 'moment.', '”', '“', 'How', 'can', 'that', 'be', 'done', '?', 'No', ',', 'my', 'dearest', 'Marianne', ',', 'you', 'must', 'wait', '.', 'This', 'is', 'not', 'the', 'place', 'for', 'explanations', '.', 'Wait', 'only', 'till', 'tomorrow.', '”', 'With', 'difficulty', 'however', 'could', 'she', 'prevent', 'her', 'from', 'following', 'him', 'herself', ';', 'and', 'to', 'persuade', 'her', 'to', 'check', 'her', 'agitation', ',', 'to', 'wait', ',', 'at', 'least', ',', 'with', 'the', 'appearance', 'of', 'composure', ',', 'till', 'she', 'might', 'speak', 'to', 'him', 'with', 'more', 'privacy', 'and', 'more', 'effect', ',', 'was', 'impossible', ';', 'for', 'Marianne', 'continued', 'incessantly', 'to', 'give', 'way', 'in', 'a', 'low', 'voice', 'to', 'the', 'misery', 'of', 'her', 'feelings', ',', 'by', 'exclamations', 'of', 'wretchedness', '.', 'In', 'a', 'short', 'time', 'Elinor', 'saw', 'Willoughby', 'quit', 'the', 'room', 'by', 'the', 'door', 'towards', 'the', 'staircase', ',', 'and', 'telling', 'Marianne', 'that', 'he', 'was', 'gone', ',', 'urged', 'the', 'impossibility', 'of', 'speaking', 'to', 'him', 'again', 'that', 'evening', ',', 'as', 'a', 'fresh', 'argument', 'for', 'her', 'to', 'be', 'calm', '.', 'She', 'instantly', 'begged', 'her', 'sister', 'would', 'entreat', 'Lady', 'Middleton', 'to', 'take', 'them', 'home', ',', 'as', 'she', 'was', 'too', 'miserable', 'to', 'stay', 'a', 'minute', 'longer', '.', 'Lady', 'Middleton', ',', 'though', 'in', 'the', 'middle', 'of', 'a', 'rubber', ',', 'on', 'being', 'informed', 'that', 'Marianne', 'was', 'unwell', ',', 'was', 'too', 'polite', 'to', 'object', 'for', 'a', 'moment', 'to', 'her', 'wish', 'of', 'going', 'away', ',', 'and', 'making', 'over', 'her', 'cards', 'to', 'a', 'friend', ',', 'they', 'departed', 'as', 'soon', 'as', 'the', 'carriage', 'could', 'be', 'found', '.', 'Scarcely', 'a', 'word', 'was', 'spoken', 'during', 'their', 'return', 'to', 'Berkeley', 'Street', '.', 'Marianne', 'was', 'in', 'a', 'silent', 'agony', ',', 'too', 'much', 'oppressed', 'even', 'for', 'tears', ';', 'but', 'as', 'Mrs.', 'Jennings', 'was', 'luckily', 'not', 'come', 'home', ',', 'they', 'could', 'go', 'directly', 'to', 'their', 'own', 'room', ',', 'where', 'hartshorn', 'restored', 'her', 'a', 'little', 'to', 'herself', '.', 'She', 'was', 'soon', 'undressed', 'and', 'in', 'bed', ',', 'and', 'as', 'she', 'seemed', 'desirous', 'of', 'being', 'alone', ',', 'her', 'sister', 'then', 'left', 'her', ',', 'and', 'while', 'she', 'waited', 'the', 'return', 'of', 'Mrs.', 'Jennings', ',', 'had', 'leisure', 'enough', 'for', 'thinking', 'over', 'the', 'past', '.', 'That', 'some', 'kind', 'of', 'engagement', 'had', 'subsisted', 'between', 'Willoughby', 'and', 'Marianne', 'she', 'could', 'not', 'doubt', ',', 'and', 'that', 'Willoughby', 'was', 'weary', 'of', 'it', ',', 'seemed', 'equally', 'clear', ';', 'for', 'however', 'Marianne', 'might', 'still', 'feed', 'her', 'own', 'wishes', ',', '_she_', 'could', 'not', 'attribute', 'such', 'behaviour', 'to', 'mistake', 'or', 'misapprehension', 'of', 'any', 'kind', '.', 'Nothing', 'but', 'a', 'thorough', 'change', 'of', 'sentiment', 'could', 'account', 'for', 'it', '.', 'Her', 'indignation', 'would', 'have', 'been', 'still', 'stronger', 'than', 'it', 'was', ',', 'had', 'she', 'not', 'witnessed', 'that', 'embarrassment', 'which', 'seemed', 'to', 'speak', 'a', 'consciousness', 'of', 'his', 'own', 'misconduct', ',', 'and', 'prevented', 'her', 'from', 'believing', 'him', 'so', 'unprincipled', 'as', 'to', 'have', 'been', 'sporting', 'with', 'the', 'affections', 'of', 'her', 'sister', 'from', 'the', 'first', ',', 'without', 'any', 'design', 'that', 'would', 'bear', 'investigation', '.', 'Absence', 'might', 'have', 'weakened', 'his', 'regard', ',', 'and', 'convenience', 'might', 'have', 'determined', 'him', 'to', 'overcome', 'it', ',', 'but', 'that', 'such', 'a', 'regard', 'had', 'formerly', 'existed', 'she', 'could', 'not', 'bring', 'herself', 'to', 'doubt', '.', 'As', 'for', 'Marianne', ',', 'on', 'the', 'pangs', 'which', 'so', 'unhappy', 'a', 'meeting', 'must', 'already', 'have', 'given', 'her', ',', 'and', 'on', 'those', 'still', 'more', 'severe', 'which', 'might', 'await', 'her', 'in', 'its', 'probable', 'consequence', ',', 'she', 'could', 'not', 'reflect', 'without', 'the', 'deepest', 'concern', '.', 'Her', 'own', 'situation', 'gained', 'in', 'the', 'comparison', ';', 'for', 'while', 'she', 'could', '_esteem_', 'Edward', 'as', 'much', 'as', 'ever', ',', 'however', 'they', 'might', 'be', 'divided', 'in', 'future', ',', 'her', 'mind', 'might', 'be', 'always', 'supported', '.', 'But', 'every', 'circumstance', 'that', 'could', 'embitter', 'such', 'an', 'evil', 'seemed', 'uniting', 'to', 'heighten', 'the', 'misery', 'of', 'Marianne', 'in', 'a', 'final', 'separation', 'from', 'Willoughby—in', 'an', 'immediate', 'and', 'irreconcilable', 'rupture', 'with', 'him', '.', 'CHAPTER', 'XXIX', '.', 'Before', 'the', 'housemaid', 'had', 'lit', 'their', 'fire', 'the', 'next', 'day', ',', 'or', 'the', 'sun', 'gained', 'any', 'power', 'over', 'a', 'cold', ',', 'gloomy', 'morning', 'in', 'January', ',', 'Marianne', ',', 'only', 'half', 'dressed', ',', 'was', 'kneeling', 'against', 'one', 'of', 'the', 'window-seats', 'for', 'the', 'sake', 'of', 'all', 'the', 'little', 'light', 'she', 'could', 'command', 'from', 'it', ',', 'and', 'writing', 'as', 'fast', 'as', 'a', 'continual', 'flow', 'of', 'tears', 'would', 'permit', 'her', '.', 'In', 'this', 'situation', ',', 'Elinor', ',', 'roused', 'from', 'sleep', 'by', 'her', 'agitation', 'and', 'sobs', ',', 'first', 'perceived', 'her', ';', 'and', 'after', 'observing', 'her', 'for', 'a', 'few', 'moments', 'with', 'silent', 'anxiety', ',', 'said', ',', 'in', 'a', 'tone', 'of', 'the', 'most', 'considerate', 'gentleness', ',', '“', 'Marianne', ',', 'may', 'I', 'ask—', '?', '”', '“', 'No', ',', 'Elinor', ',', '”', 'she', 'replied', ',', '“', 'ask', 'nothing', ';', 'you', 'will', 'soon', 'know', 'all.', '”', 'The', 'sort', 'of', 'desperate', 'calmness', 'with', 'which', 'this', 'was', 'said', ',', 'lasted', 'no', 'longer', 'than', 'while', 'she', 'spoke', ',', 'and', 'was', 'immediately', 'followed', 'by', 'a', 'return', 'of', 'the', 'same', 'excessive', 'affliction', '.', 'It', 'was', 'some', 'minutes', 'before', 'she', 'could', 'go', 'on', 'with', 'her', 'letter', ',', 'and', 'the', 'frequent', 'bursts', 'of', 'grief', 'which', 'still', 'obliged', 'her', ',', 'at', 'intervals', ',', 'to', 'withhold', 'her', 'pen', ',', 'were', 'proofs', 'enough', 'of', 'her', 'feeling', 'how', 'more', 'than', 'probable', 'it', 'was', 'that', 'she', 'was', 'writing', 'for', 'the', 'last', 'time', 'to', 'Willoughby', '.', 'Elinor', 'paid', 'her', 'every', 'quiet', 'and', 'unobtrusive', 'attention', 'in', 'her', 'power', ';', 'and', 'she', 'would', 'have', 'tried', 'to', 'sooth', 'and', 'tranquilize', 'her', 'still', 'more', ',', 'had', 'not', 'Marianne', 'entreated', 'her', ',', 'with', 'all', 'the', 'eagerness', 'of', 'the', 'most', 'nervous', 'irritability', ',', 'not', 'to', 'speak', 'to', 'her', 'for', 'the', 'world', '.', 'In', 'such', 'circumstances', ',', 'it', 'was', 'better', 'for', 'both', 'that', 'they', 'should', 'not', 'be', 'long', 'together', ';', 'and', 'the', 'restless', 'state', 'of', 'Marianne', '’', 's', 'mind', 'not', 'only', 'prevented', 'her', 'from', 'remaining', 'in', 'the', 'room', 'a', 'moment', 'after', 'she', 'was', 'dressed', ',', 'but', 'requiring', 'at', 'once', 'solitude', 'and', 'continual', 'change', 'of', 'place', ',', 'made', 'her', 'wander', 'about', 'the', 'house', 'till', 'breakfast', 'time', ',', 'avoiding', 'the', 'sight', 'of', 'every', 'body', '.', 'At', 'breakfast', 'she', 'neither', 'ate', ',', 'nor', 'attempted', 'to', 'eat', 'any', 'thing', ';', 'and', 'Elinor', '’', 's', 'attention', 'was', 'then', 'all', 'employed', ',', 'not', 'in', 'urging', 'her', ',', 'not', 'in', 'pitying', 'her', ',', 'nor', 'in', 'appearing', 'to', 'regard', 'her', ',', 'but', 'in', 'endeavouring', 'to', 'engage', 'Mrs.', 'Jennings', '’', 's', 'notice', 'entirely', 'to', 'herself', '.', 'As', 'this', 'was', 'a', 'favourite', 'meal', 'with', 'Mrs.', 'Jennings', ',', 'it', 'lasted', 'a', 'considerable', 'time', ',', 'and', 'they', 'were', 'just', 'setting', 'themselves', ',', 'after', 'it', ',', 'round', 'the', 'common', 'working', 'table', ',', 'when', 'a', 'letter', 'was', 'delivered', 'to', 'Marianne', ',', 'which', 'she', 'eagerly', 'caught', 'from', 'the', 'servant', ',', 'and', ',', 'turning', 'of', 'a', 'death-like', 'paleness', ',', 'instantly', 'ran', 'out', 'of', 'the', 'room', '.', 'Elinor', ',', 'who', 'saw', 'as', 'plainly', 'by', 'this', ',', 'as', 'if', 'she', 'had', 'seen', 'the', 'direction', ',', 'that', 'it', 'must', 'come', 'from', 'Willoughby', ',', 'felt', 'immediately', 'such', 'a', 'sickness', 'at', 'heart', 'as', 'made', 'her', 'hardly', 'able', 'to', 'hold', 'up', 'her', 'head', ',', 'and', 'sat', 'in', 'such', 'a', 'general', 'tremour', 'as', 'made', 'her', 'fear', 'it', 'impossible', 'to', 'escape', 'Mrs.', 'Jennings', '’', 's', 'notice', '.', 'That', 'good', 'lady', ',', 'however', ',', 'saw', 'only', 'that', 'Marianne', 'had', 'received', 'a', 'letter', 'from', 'Willoughby', ',', 'which', 'appeared', 'to', 'her', 'a', 'very', 'good', 'joke', ',', 'and', 'which', 'she', 'treated', 'accordingly', ',', 'by', 'hoping', ',', 'with', 'a', 'laugh', ',', 'that', 'she', 'would', 'find', 'it', 'to', 'her', 'liking', '.', 'Of', 'Elinor', '’', 's', 'distress', ',', 'she', 'was', 'too', 'busily', 'employed', 'in', 'measuring', 'lengths', 'of', 'worsted', 'for', 'her', 'rug', ',', 'to', 'see', 'any', 'thing', 'at', 'all', ';', 'and', 'calmly', 'continuing', 'her', 'talk', ',', 'as', 'soon', 'as', 'Marianne', 'disappeared', ',', 'she', 'said', ',', '“', 'Upon', 'my', 'word', ',', 'I', 'never', 'saw', 'a', 'young', 'woman', 'so', 'desperately', 'in', 'love', 'in', 'my', 'life', '!', '_My_', 'girls', 'were', 'nothing', 'to', 'her', ',', 'and', 'yet', 'they', 'used', 'to', 'be', 'foolish', 'enough', ';', 'but', 'as', 'for', 'Miss', 'Marianne', ',', 'she', 'is', 'quite', 'an', 'altered', 'creature', '.', 'I', 'hope', ',', 'from', 'the', 'bottom', 'of', 'my', 'heart', ',', 'he', 'won', '’', 't', 'keep', 'her', 'waiting', 'much', 'longer', ',', 'for', 'it', 'is', 'quite', 'grievous', 'to', 'see', 'her', 'look', 'so', 'ill', 'and', 'forlorn', '.', 'Pray', ',', 'when', 'are', 'they', 'to', 'be', 'married', '?', '”', 'Elinor', ',', 'though', 'never', 'less', 'disposed', 'to', 'speak', 'than', 'at', 'that', 'moment', ',', 'obliged', 'herself', 'to', 'answer', 'such', 'an', 'attack', 'as', 'this', ',', 'and', ',', 'therefore', ',', 'trying', 'to', 'smile', ',', 'replied', ',', '“', 'And', 'have', 'you', 'really', ',', 'Ma', '’', 'am', ',', 'talked', 'yourself', 'into', 'a', 'persuasion', 'of', 'my', 'sister', '’', 's', 'being', 'engaged', 'to', 'Mr.', 'Willoughby', '?', 'I', 'thought', 'it', 'had', 'been', 'only', 'a', 'joke', ',', 'but', 'so', 'serious', 'a', 'question', 'seems', 'to', 'imply', 'more', ';', 'and', 'I', 'must', 'beg', ',', 'therefore', ',', 'that', 'you', 'will', 'not', 'deceive', 'yourself', 'any', 'longer', '.', 'I', 'do', 'assure', 'you', 'that', 'nothing', 'would', 'surprise', 'me', 'more', 'than', 'to', 'hear', 'of', 'their', 'being', 'going', 'to', 'be', 'married.', '”', '“', 'For', 'shame', ',', 'for', 'shame', ',', 'Miss', 'Dashwood', '!', 'how', 'can', 'you', 'talk', 'so', '?', 'Don', '’', 't', 'we', 'all', 'know', 'that', 'it', 'must', 'be', 'a', 'match', ',', 'that', 'they', 'were', 'over', 'head', 'and', 'ears', 'in', 'love', 'with', 'each', 'other', 'from', 'the', 'first', 'moment', 'they', 'met', '?', 'Did', 'not', 'I', 'see', 'them', 'together', 'in', 'Devonshire', 'every', 'day', ',', 'and', 'all', 'day', 'long', ';', 'and', 'did', 'not', 'I', 'know', 'that', 'your', 'sister', 'came', 'to', 'town', 'with', 'me', 'on', 'purpose', 'to', 'buy', 'wedding', 'clothes', '?', 'Come', ',', 'come', ',', 'this', 'won', '’', 't', 'do', '.', 'Because', 'you', 'are', 'so', 'sly', 'about', 'it', 'yourself', ',', 'you', 'think', 'nobody', 'else', 'has', 'any', 'senses', ';', 'but', 'it', 'is', 'no', 'such', 'thing', ',', 'I', 'can', 'tell', 'you', ',', 'for', 'it', 'has', 'been', 'known', 'all', 'over', 'town', 'this', 'ever', 'so', 'long', '.', 'I', 'tell', 'every', 'body', 'of', 'it', 'and', 'so', 'does', 'Charlotte.', '”', '“', 'Indeed', ',', 'Ma', '’', 'am', ',', '”', 'said', 'Elinor', ',', 'very', 'seriously', ',', '“', 'you', 'are', 'mistaken', '.', 'Indeed', ',', 'you', 'are', 'doing', 'a', 'very', 'unkind', 'thing', 'in', 'spreading', 'the', 'report', ',', 'and', 'you', 'will', 'find', 'that', 'you', 'have', 'though', 'you', 'will', 'not', 'believe', 'me', 'now.', '”', 'Mrs.', 'Jennings', 'laughed', 'again', ',', 'but', 'Elinor', 'had', 'not', 'spirits', 'to', 'say', 'more', ',', 'and', 'eager', 'at', 'all', 'events', 'to', 'know', 'what', 'Willoughby', 'had', 'written', ',', 'hurried', 'away', 'to', 'their', 'room', ',', 'where', ',', 'on', 'opening', 'the', 'door', ',', 'she', 'saw', 'Marianne', 'stretched', 'on', 'the', 'bed', ',', 'almost', 'choked', 'by', 'grief', ',', 'one', 'letter', 'in', 'her', 'hand', ',', 'and', 'two', 'or', 'three', 'others', 'lying', 'by', 'her', '.', 'Elinor', 'drew', 'near', ',', 'but', 'without', 'saying', 'a', 'word', ';', 'and', 'seating', 'herself', 'on', 'the', 'bed', ',', 'took', 'her', 'hand', ',', 'kissed', 'her', 'affectionately', 'several', 'times', ',', 'and', 'then', 'gave', 'way', 'to', 'a', 'burst', 'of', 'tears', ',', 'which', 'at', 'first', 'was', 'scarcely', 'less', 'violent', 'than', 'Marianne', '’', 's', '.', 'The', 'latter', ',', 'though', 'unable', 'to', 'speak', ',', 'seemed', 'to', 'feel', 'all', 'the', 'tenderness', 'of', 'this', 'behaviour', ',', 'and', 'after', 'some', 'time', 'thus', 'spent', 'in', 'joint', 'affliction', ',', 'she', 'put', 'all', 'the', 'letters', 'into', 'Elinor', '’', 's', 'hands', ';', 'and', 'then', 'covering', 'her', 'face', 'with', 'her', 'handkerchief', ',', 'almost', 'screamed', 'with', 'agony', '.', 'Elinor', ',', 'who', 'knew', 'that', 'such', 'grief', ',', 'shocking', 'as', 'it', 'was', 'to', 'witness', 'it', ',', 'must', 'have', 'its', 'course', ',', 'watched', 'by', 'her', 'till', 'this', 'excess', 'of', 'suffering', 'had', 'somewhat', 'spent', 'itself', ',', 'and', 'then', 'turning', 'eagerly', 'to', 'Willoughby', '’', 's', 'letter', ',', 'read', 'as', 'follows', ':', '“', 'Bond', 'Street', ',', 'January', '.', 'MY', 'DEAR', 'MADAM', ',', '“', 'I', 'have', 'just', 'had', 'the', 'honour', 'of', 'receiving', 'your', 'letter', ',', 'for', 'which', 'I', 'beg', 'to', 'return', 'my', 'sincere', 'acknowledgments', '.', 'I', 'am', 'much', 'concerned', 'to', 'find', 'there', 'was', 'anything', 'in', 'my', 'behaviour', 'last', 'night', 'that', 'did', 'not', 'meet', 'your', 'approbation', ';', 'and', 'though', 'I', 'am', 'quite', 'at', 'a', 'loss', 'to', 'discover', 'in', 'what', 'point', 'I', 'could', 'be', 'so', 'unfortunate', 'as', 'to', 'offend', 'you', ',', 'I', 'entreat', 'your', 'forgiveness', 'of', 'what', 'I', 'can', 'assure', 'you', 'to', 'have', 'been', 'perfectly', 'unintentional', '.', 'I', 'shall', 'never', 'reflect', 'on', 'my', 'former', 'acquaintance', 'with', 'your', 'family', 'in', 'Devonshire', 'without', 'the', 'most', 'grateful', 'pleasure', ',', 'and', 'flatter', 'myself', 'it', 'will', 'not', 'be', 'broken', 'by', 'any', 'mistake', 'or', 'misapprehension', 'of', 'my', 'actions', '.', 'My', 'esteem', 'for', 'your', 'whole', 'family', 'is', 'very', 'sincere', ';', 'but', 'if', 'I', 'have', 'been', 'so', 'unfortunate', 'as', 'to', 'give', 'rise', 'to', 'a', 'belief', 'of', 'more', 'than', 'I', 'felt', ',', 'or', 'meant', 'to', 'express', ',', 'I', 'shall', 'reproach', 'myself', 'for', 'not', 'having', 'been', 'more', 'guarded', 'in', 'my', 'professions', 'of', 'that', 'esteem', '.', 'That', 'I', 'should', 'ever', 'have', 'meant', 'more', 'you', 'will', 'allow', 'to', 'be', 'impossible', ',', 'when', 'you', 'understand', 'that', 'my', 'affections', 'have', 'been', 'long', 'engaged', 'elsewhere', ',', 'and', 'it', 'will', 'not', 'be', 'many', 'weeks', ',', 'I', 'believe', ',', 'before', 'this', 'engagement', 'is', 'fulfilled', '.', 'It', 'is', 'with', 'great', 'regret', 'that', 'I', 'obey', 'your', 'commands', 'in', 'returning', 'the', 'letters', 'with', 'which', 'I', 'have', 'been', 'honoured', 'from', 'you', ',', 'and', 'the', 'lock', 'of', 'hair', ',', 'which', 'you', 'so', 'obligingly', 'bestowed', 'on', 'me', '.', '“', 'I', 'am', ',', 'dear', 'Madam', ',', '“', 'Your', 'most', 'obedient', '“', 'humble', 'servant', ',', '“', 'JOHN', 'WILLOUGHBY.', '”', 'With', 'what', 'indignation', 'such', 'a', 'letter', 'as', 'this', 'must', 'be', 'read', 'by', 'Miss', 'Dashwood', ',', 'may', 'be', 'imagined', '.', 'Though', 'aware', ',', 'before', 'she', 'began', 'it', ',', 'that', 'it', 'must', 'bring', 'a', 'confession', 'of', 'his', 'inconstancy', ',', 'and', 'confirm', 'their', 'separation', 'for', 'ever', ',', 'she', 'was', 'not', 'aware', 'that', 'such', 'language', 'could', 'be', 'suffered', 'to', 'announce', 'it', ';', 'nor', 'could', 'she', 'have', 'supposed', 'Willoughby', 'capable', 'of', 'departing', 'so', 'far', 'from', 'the', 'appearance', 'of', 'every', 'honourable', 'and', 'delicate', 'feeling—so', 'far', 'from', 'the', 'common', 'decorum', 'of', 'a', 'gentleman', ',', 'as', 'to', 'send', 'a', 'letter', 'so', 'impudently', 'cruel', ':', 'a', 'letter', 'which', ',', 'instead', 'of', 'bringing', 'with', 'his', 'desire', 'of', 'a', 'release', 'any', 'professions', 'of', 'regret', ',', 'acknowledged', 'no', 'breach', 'of', 'faith', ',', 'denied', 'all', 'peculiar', 'affection', 'whatever—a', 'letter', 'of', 'which', 'every', 'line', 'was', 'an', 'insult', ',', 'and', 'which', 'proclaimed', 'its', 'writer', 'to', 'be', 'deep', 'in', 'hardened', 'villainy', '.', 'She', 'paused', 'over', 'it', 'for', 'some', 'time', 'with', 'indignant', 'astonishment', ';', 'then', 'read', 'it', 'again', 'and', 'again', ';', 'but', 'every', 'perusal', 'only', 'served', 'to', 'increase', 'her', 'abhorrence', 'of', 'the', 'man', ',', 'and', 'so', 'bitter', 'were', 'her', 'feelings', 'against', 'him', ',', 'that', 'she', 'dared', 'not', 'trust', 'herself', 'to', 'speak', ',', 'lest', 'she', 'might', 'wound', 'Marianne', 'still', 'deeper', 'by', 'treating', 'their', 'disengagement', ',', 'not', 'as', 'a', 'loss', 'to', 'her', 'of', 'any', 'possible', 'good', 'but', 'as', 'an', 'escape', 'from', 'the', 'worst', 'and', 'most', 'irremediable', 'of', 'all', 'evils', ',', 'a', 'connection', ',', 'for', 'life', ',', 'with', 'an', 'unprincipled', 'man', ',', 'as', 'a', 'deliverance', 'the', 'most', 'real', ',', 'a', 'blessing', 'the', 'most', 'important', '.', 'In', 'her', 'earnest', 'meditations', 'on', 'the', 'contents', 'of', 'the', 'letter', ',', 'on', 'the', 'depravity', 'of', 'that', 'mind', 'which', 'could', 'dictate', 'it', ',', 'and', 'probably', ',', 'on', 'the', 'very', 'different', 'mind', 'of', 'a', 'very', 'different', 'person', ',', 'who', 'had', 'no', 'other', 'connection', 'whatever', 'with', 'the', 'affair', 'than', 'what', 'her', 'heart', 'gave', 'him', 'with', 'every', 'thing', 'that', 'passed', ',', 'Elinor', 'forgot', 'the', 'immediate', 'distress', 'of', 'her', 'sister', ',', 'forgot', 'that', 'she', 'had', 'three', 'letters', 'on', 'her', 'lap', 'yet', 'unread', ',', 'and', 'so', 'entirely', 'forgot', 'how', 'long', 'she', 'had', 'been', 'in', 'the', 'room', ',', 'that', 'when', 'on', 'hearing', 'a', 'carriage', 'drive', 'up', 'to', 'the', 'door', ',', 'she', 'went', 'to', 'the', 'window', 'to', 'see', 'who', 'could', 'be', 'coming', 'so', 'unreasonably', 'early', ',', 'she', 'was', 'all', 'astonishment', 'to', 'perceive', 'Mrs.', 'Jennings', '’', 's', 'chariot', ',', 'which', 'she', 'knew', 'had', 'not', 'been', 'ordered', 'till', 'one', '.', 'Determined', 'not', 'to', 'quit', 'Marianne', ',', 'though', 'hopeless', 'of', 'contributing', ',', 'at', 'present', ',', 'to', 'her', 'ease', ',', 'she', 'hurried', 'away', 'to', 'excuse', 'herself', 'from', 'attending', 'Mrs.', 'Jennings', ',', 'on', 'account', 'of', 'her', 'sister', 'being', 'indisposed', '.', 'Mrs.', 'Jennings', ',', 'with', 'a', 'thoroughly', 'good-humoured', 'concern', 'for', 'its', 'cause', ',', 'admitted', 'the', 'excuse', 'most', 'readily', ',', 'and', 'Elinor', ',', 'after', 'seeing', 'her', 'safe', 'off', ',', 'returned', 'to', 'Marianne', ',', 'whom', 'she', 'found', 'attempting', 'to', 'rise', 'from', 'the', 'bed', ',', 'and', 'whom', 'she', 'reached', 'just', 'in', 'time', 'to', 'prevent', 'her', 'from', 'falling', 'on', 'the', 'floor', ',', 'faint', 'and', 'giddy', 'from', 'a', 'long', 'want', 'of', 'proper', 'rest', 'and', 'food', ';', 'for', 'it', 'was', 'many', 'days', 'since', 'she', 'had', 'any', 'appetite', ',', 'and', 'many', 'nights', 'since', 'she', 'had', 'really', 'slept', ';', 'and', 'now', ',', 'when', 'her', 'mind', 'was', 'no', 'longer', 'supported', 'by', 'the', 'fever', 'of', 'suspense', ',', 'the', 'consequence', 'of', 'all', 'this', 'was', 'felt', 'in', 'an', 'aching', 'head', ',', 'a', 'weakened', 'stomach', ',', 'and', 'a', 'general', 'nervous', 'faintness', '.', 'A', 'glass', 'of', 'wine', ',', 'which', 'Elinor', 'procured', 'for', 'her', 'directly', ',', 'made', 'her', 'more', 'comfortable', ',', 'and', 'she', 'was', 'at', 'last', 'able', 'to', 'express', 'some', 'sense', 'of', 'her', 'kindness', ',', 'by', 'saying', ',', '“', 'Poor', 'Elinor', '!', 'how', 'unhappy', 'I', 'make', 'you', '!', '”', '“', 'I', 'only', 'wish', ',', '”', 'replied', 'her', 'sister', ',', '“', 'there', 'were', 'any', 'thing', 'I', '_could_', 'do', ',', 'which', 'might', 'be', 'of', 'comfort', 'to', 'you.', '”', 'This', ',', 'as', 'every', 'thing', 'else', 'would', 'have', 'been', ',', 'was', 'too', 'much', 'for', 'Marianne', ',', 'who', 'could', 'only', 'exclaim', ',', 'in', 'the', 'anguish', 'of', 'her', 'heart', ',', '“', 'Oh', '!', 'Elinor', ',', 'I', 'am', 'miserable', ',', 'indeed', ',', '”', 'before', 'her', 'voice', 'was', 'entirely', 'lost', 'in', 'sobs', '.', 'Elinor', 'could', 'no', 'longer', 'witness', 'this', 'torrent', 'of', 'unresisted', 'grief', 'in', 'silence', '.', '“', 'Exert', 'yourself', ',', 'dear', 'Marianne', ',', '”', 'she', 'cried', ',', '“', 'if', 'you', 'would', 'not', 'kill', 'yourself', 'and', 'all', 'who', 'love', 'you', '.', 'Think', 'of', 'your', 'mother', ';', 'think', 'of', 'her', 'misery', 'while', '_you_', 'suffer', ':', 'for', 'her', 'sake', 'you', 'must', 'exert', 'yourself.', '”', '“', 'I', 'can', 'not', ',', 'I', 'can', 'not', ',', '”', 'cried', 'Marianne', ';', '“', 'leave', 'me', ',', 'leave', 'me', ',', 'if', 'I', 'distress', 'you', ';', 'leave', 'me', ',', 'hate', 'me', ',', 'forget', 'me', '!', 'but', 'do', 'not', 'torture', 'me', 'so', '.', 'Oh', '!', 'how', 'easy', 'for', 'those', ',', 'who', 'have', 'no', 'sorrow', 'of', 'their', 'own', 'to', 'talk', 'of', 'exertion', '!', 'Happy', ',', 'happy', 'Elinor', ',', '_you_', 'can', 'not', 'have', 'an', 'idea', 'of', 'what', 'I', 'suffer.', '”', '“', 'Do', 'you', 'call', '_me_', 'happy', ',', 'Marianne', '?', 'Ah', '!', 'if', 'you', 'knew', '!', '—And', 'can', 'you', 'believe', 'me', 'to', 'be', 'so', ',', 'while', 'I', 'see', 'you', 'so', 'wretched', '!', '”', '“', 'Forgive', 'me', ',', 'forgive', 'me', ',', '”', 'throwing', 'her', 'arms', 'round', 'her', 'sister', '’', 's', 'neck', ';', '“', 'I', 'know', 'you', 'feel', 'for', 'me', ';', 'I', 'know', 'what', 'a', 'heart', 'you', 'have', ';', 'but', 'yet', 'you', 'are—you', 'must', 'be', 'happy', ';', 'Edward', 'loves', 'you—what', ',', 'oh', 'what', ',', 'can', 'do', 'away', 'such', 'happiness', 'as', 'that', '?', '”', '“', 'Many', ',', 'many', 'circumstances', ',', '”', 'said', 'Elinor', ',', 'solemnly', '.', '“', 'No', ',', 'no', ',', 'no', ',', '”', 'cried', 'Marianne', 'wildly', ',', '“', 'he', 'loves', 'you', ',', 'and', 'only', 'you', '.', 'You', '_can_', 'have', 'no', 'grief.', '”', '“', 'I', 'can', 'have', 'no', 'pleasure', 'while', 'I', 'see', 'you', 'in', 'this', 'state.', '”', '“', 'And', 'you', 'will', 'never', 'see', 'me', 'otherwise', '.', 'Mine', 'is', 'a', 'misery', 'which', 'nothing', 'can', 'do', 'away.', '”', '“', 'You', 'must', 'not', 'talk', 'so', ',', 'Marianne', '.', 'Have', 'you', 'no', 'comforts', '?', 'no', 'friends', '?', 'Is', 'your', 'loss', 'such', 'as', 'leaves', 'no', 'opening', 'for', 'consolation', '?', 'Much', 'as', 'you', 'suffer', 'now', ',', 'think', 'of', 'what', 'you', 'would', 'have', 'suffered', 'if', 'the', 'discovery', 'of', 'his', 'character', 'had', 'been', 'delayed', 'to', 'a', 'later', 'period—if', 'your', 'engagement', 'had', 'been', 'carried', 'on', 'for', 'months', 'and', 'months', ',', 'as', 'it', 'might', 'have', 'been', ',', 'before', 'he', 'chose', 'to', 'put', 'an', 'end', 'to', 'it', '.', 'Every', 'additional', 'day', 'of', 'unhappy', 'confidence', ',', 'on', 'your', 'side', ',', 'would', 'have', 'made', 'the', 'blow', 'more', 'dreadful.', '”', '“', 'Engagement', '!', '”', 'cried', 'Marianne', ',', '“', 'there', 'has', 'been', 'no', 'engagement.', '”', '“', 'No', 'engagement', '!', '”', '“', 'No', ',', 'he', 'is', 'not', 'so', 'unworthy', 'as', 'you', 'believe', 'him', '.', 'He', 'has', 'broken', 'no', 'faith', 'with', 'me.', '”', '“', 'But', 'he', 'told', 'you', 'that', 'he', 'loved', 'you.', '”', '“', 'Yes—no—never', 'absolutely', '.', 'It', 'was', 'every', 'day', 'implied', ',', 'but', 'never', 'professedly', 'declared', '.', 'Sometimes', 'I', 'thought', 'it', 'had', 'been', ',', 'but', 'it', 'never', 'was.', '”', '“', 'Yet', 'you', 'wrote', 'to', 'him', '?', '”', '“', 'Yes', ':', 'could', 'that', 'be', 'wrong', 'after', 'all', 'that', 'had', 'passed', '?', 'But', 'I', 'can', 'not', 'talk.', '”', 'Elinor', 'said', 'no', 'more', ',', 'and', 'turning', 'again', 'to', 'the', 'three', 'letters', 'which', 'now', 'raised', 'a', 'much', 'stronger', 'curiosity', 'than', 'before', ',', 'directly', 'ran', 'over', 'the', 'contents', 'of', 'all', '.', 'The', 'first', ',', 'which', 'was', 'what', 'her', 'sister', 'had', 'sent', 'him', 'on', 'their', 'arrival', 'in', 'town', ',', 'was', 'to', 'this', 'effect', '.', 'Berkeley', 'Street', ',', 'January', '.', '“', 'How', 'surprised', 'you', 'will', 'be', ',', 'Willoughby', ',', 'on', 'receiving', 'this', ';', 'and', 'I', 'think', 'you', 'will', 'feel', 'something', 'more', 'than', 'surprise', ',', 'when', 'you', 'know', 'that', 'I', 'am', 'in', 'town', '.', 'An', 'opportunity', 'of', 'coming', 'hither', ',', 'though', 'with', 'Mrs.', 'Jennings', ',', 'was', 'a', 'temptation', 'we', 'could', 'not', 'resist', '.', 'I', 'wish', 'you', 'may', 'receive', 'this', 'in', 'time', 'to', 'come', 'here', 'to-night', ',', 'but', 'I', 'will', 'not', 'depend', 'on', 'it', '.', 'At', 'any', 'rate', 'I', 'shall', 'expect', 'you', 'to-morrow', '.', 'For', 'the', 'present', ',', 'adieu', '.', '“', 'M.D.', '”', 'Her', 'second', 'note', ',', 'which', 'had', 'been', 'written', 'on', 'the', 'morning', 'after', 'the', 'dance', 'at', 'the', 'Middletons', '’', ',', 'was', 'in', 'these', 'words', ':', '—', '“', 'I', 'can', 'not', 'express', 'my', 'disappointment', 'in', 'having', 'missed', 'you', 'the', 'day', 'before', 'yesterday', ',', 'nor', 'my', 'astonishment', 'at', 'not', 'having', 'received', 'any', 'answer', 'to', 'a', 'note', 'which', 'I', 'sent', 'you', 'above', 'a', 'week', 'ago', '.', 'I', 'have', 'been', 'expecting', 'to', 'hear', 'from', 'you', ',', 'and', 'still', 'more', 'to', 'see', 'you', ',', 'every', 'hour', 'of', 'the', 'day', '.', 'Pray', 'call', 'again', 'as', 'soon', 'as', 'possible', ',', 'and', 'explain', 'the', 'reason', 'of', 'my', 'having', 'expected', 'this', 'in', 'vain', '.', 'You', 'had', 'better', 'come', 'earlier', 'another', 'time', ',', 'because', 'we', 'are', 'generally', 'out', 'by', 'one', '.', 'We', 'were', 'last', 'night', 'at', 'Lady', 'Middleton', '’', 's', ',', 'where', 'there', 'was', 'a', 'dance', '.', 'I', 'have', 'been', 'told', 'that', 'you', 'were', 'asked', 'to', 'be', 'of', 'the', 'party', '.', 'But', 'could', 'it', 'be', 'so', '?', 'You', 'must', 'be', 'very', 'much', 'altered', 'indeed', 'since', 'we', 'parted', ',', 'if', 'that', 'could', 'be', 'the', 'case', ',', 'and', 'you', 'not', 'there', '.', 'But', 'I', 'will', 'not', 'suppose', 'this', 'possible', ',', 'and', 'I', 'hope', 'very', 'soon', 'to', 'receive', 'your', 'personal', 'assurance', 'of', 'its', 'being', 'otherwise', '.', '“', 'M.D.', '”', 'The', 'contents', 'of', 'her', 'last', 'note', 'to', 'him', 'were', 'these', ':', '—', '“', 'What', 'am', 'I', 'to', 'imagine', ',', 'Willoughby', ',', 'by', 'your', 'behaviour', 'last', 'night', '?', 'Again', 'I', 'demand', 'an', 'explanation', 'of', 'it', '.', 'I', 'was', 'prepared', 'to', 'meet', 'you', 'with', 'the', 'pleasure', 'which', 'our', 'separation', 'naturally', 'produced', ',', 'with', 'the', 'familiarity', 'which', 'our', 'intimacy', 'at', 'Barton', 'appeared', 'to', 'me', 'to', 'justify', '.', 'I', 'was', 'repulsed', 'indeed', '!', 'I', 'have', 'passed', 'a', 'wretched', 'night', 'in', 'endeavouring', 'to', 'excuse', 'a', 'conduct', 'which', 'can', 'scarcely', 'be', 'called', 'less', 'than', 'insulting', ';', 'but', 'though', 'I', 'have', 'not', 'yet', 'been', 'able', 'to', 'form', 'any', 'reasonable', 'apology', 'for', 'your', 'behaviour', ',', 'I', 'am', 'perfectly', 'ready', 'to', 'hear', 'your', 'justification', 'of', 'it', '.', 'You', 'have', 'perhaps', 'been', 'misinformed', ',', 'or', 'purposely', 'deceived', ',', 'in', 'something', 'concerning', 'me', ',', 'which', 'may', 'have', 'lowered', 'me', 'in', 'your', 'opinion', '.', 'Tell', 'me', 'what', 'it', 'is', ',', 'explain', 'the', 'grounds', 'on', 'which', 'you', 'acted', ',', 'and', 'I', 'shall', 'be', 'satisfied', ',', 'in', 'being', 'able', 'to', 'satisfy', 'you', '.', 'It', 'would', 'grieve', 'me', 'indeed', 'to', 'be', 'obliged', 'to', 'think', 'ill', 'of', 'you', ';', 'but', 'if', 'I', 'am', 'to', 'do', 'it', ',', 'if', 'I', 'am', 'to', 'learn', 'that', 'you', 'are', 'not', 'what', 'we', 'have', 'hitherto', 'believed', 'you', ',', 'that', 'your', 'regard', 'for', 'us', 'all', 'was', 'insincere', ',', 'that', 'your', 'behaviour', 'to', 'me', 'was', 'intended', 'only', 'to', 'deceive', ',', 'let', 'it', 'be', 'told', 'as', 'soon', 'as', 'possible', '.', 'My', 'feelings', 'are', 'at', 'present', 'in', 'a', 'state', 'of', 'dreadful', 'indecision', ';', 'I', 'wish', 'to', 'acquit', 'you', ',', 'but', 'certainty', 'on', 'either', 'side', 'will', 'be', 'ease', 'to', 'what', 'I', 'now', 'suffer', '.', 'If', 'your', 'sentiments', 'are', 'no', 'longer', 'what', 'they', 'were', ',', 'you', 'will', 'return', 'my', 'notes', ',', 'and', 'the', 'lock', 'of', 'my', 'hair', 'which', 'is', 'in', 'your', 'possession', '.', '“', 'M.D.', '”', 'That', 'such', 'letters', ',', 'so', 'full', 'of', 'affection', 'and', 'confidence', ',', 'could', 'have', 'been', 'so', 'answered', ',', 'Elinor', ',', 'for', 'Willoughby', '’', 's', 'sake', ',', 'would', 'have', 'been', 'unwilling', 'to', 'believe', '.', 'But', 'her', 'condemnation', 'of', 'him', 'did', 'not', 'blind', 'her', 'to', 'the', 'impropriety', 'of', 'their', 'having', 'been', 'written', 'at', 'all', ';', 'and', 'she', 'was', 'silently', 'grieving', 'over', 'the', 'imprudence', 'which', 'had', 'hazarded', 'such', 'unsolicited', 'proofs', 'of', 'tenderness', ',', 'not', 'warranted', 'by', 'anything', 'preceding', ',', 'and', 'most', 'severely', 'condemned', 'by', 'the', 'event', ',', 'when', 'Marianne', ',', 'perceiving', 'that', 'she', 'had', 'finished', 'the', 'letters', ',', 'observed', 'to', 'her', 'that', 'they', 'contained', 'nothing', 'but', 'what', 'any', 'one', 'would', 'have', 'written', 'in', 'the', 'same', 'situation', '.', '“', 'I', 'felt', 'myself', ',', '”', 'she', 'added', ',', '“', 'to', 'be', 'as', 'solemnly', 'engaged', 'to', 'him', ',', 'as', 'if', 'the', 'strictest', 'legal', 'covenant', 'had', 'bound', 'us', 'to', 'each', 'other.', '”', '“', 'I', 'can', 'believe', 'it', ',', '”', 'said', 'Elinor', ';', '“', 'but', 'unfortunately', 'he', 'did', 'not', 'feel', 'the', 'same.', '”', '“', 'He', '_did_', 'feel', 'the', 'same', ',', 'Elinor—for', 'weeks', 'and', 'weeks', 'he', 'felt', 'it', '.', 'I', 'know', 'he', 'did', '.', 'Whatever', 'may', 'have', 'changed', 'him', 'now', ',', '(', 'and', 'nothing', 'but', 'the', 'blackest', 'art', 'employed', 'against', 'me', 'can', 'have', 'done', 'it', ')', ',', 'I', 'was', 'once', 'as', 'dear', 'to', 'him', 'as', 'my', 'own', 'soul', 'could', 'wish', '.', 'This', 'lock', 'of', 'hair', ',', 'which', 'now', 'he', 'can', 'so', 'readily', 'give', 'up', ',', 'was', 'begged', 'of', 'me', 'with', 'the', 'most', 'earnest', 'supplication', '.', 'Had', 'you', 'seen', 'his', 'look', ',', 'his', 'manner', ',', 'had', 'you', 'heard', 'his', 'voice', 'at', 'that', 'moment', '!', 'Have', 'you', 'forgot', 'the', 'last', 'evening', 'of', 'our', 'being', 'together', 'at', 'Barton', '?', 'The', 'morning', 'that', 'we', 'parted', 'too', '!', 'When', 'he', 'told', 'me', 'that', 'it', 'might', 'be', 'many', 'weeks', 'before', 'we', 'met', 'again—his', 'distress—can', 'I', 'ever', 'forget', 'his', 'distress', '?', '”', 'For', 'a', 'moment', 'or', 'two', 'she', 'could', 'say', 'no', 'more', ';', 'but', 'when', 'this', 'emotion', 'had', 'passed', 'away', ',', 'she', 'added', ',', 'in', 'a', 'firmer', 'tone', ',', '“', 'Elinor', ',', 'I', 'have', 'been', 'cruelly', 'used', ';', 'but', 'not', 'by', 'Willoughby.', '”', '“', 'Dearest', 'Marianne', ',', 'who', 'but', 'himself', '?', 'By', 'whom', 'can', 'he', 'have', 'been', 'instigated', '?', '”', '“', 'By', 'all', 'the', 'world', ',', 'rather', 'than', 'by', 'his', 'own', 'heart', '.', 'I', 'could', 'rather', 'believe', 'every', 'creature', 'of', 'my', 'acquaintance', 'leagued', 'together', 'to', 'ruin', 'me', 'in', 'his', 'opinion', ',', 'than', 'believe', 'his', 'nature', 'capable', 'of', 'such', 'cruelty', '.', 'This', 'woman', 'of', 'whom', 'he', 'writes—whoever', 'she', 'be—or', 'any', 'one', ',', 'in', 'short', ',', 'but', 'your', 'own', 'dear', 'self', ',', 'mama', ',', 'and', 'Edward', ',', 'may', 'have', 'been', 'so', 'barbarous', 'to', 'bely', 'me', '.', 'Beyond', 'you', 'three', ',', 'is', 'there', 'a', 'creature', 'in', 'the', 'world', 'whom', 'I', 'would', 'not', 'rather', 'suspect', 'of', 'evil', 'than', 'Willoughby', ',', 'whose', 'heart', 'I', 'know', 'so', 'well', '?', '”', 'Elinor', 'would', 'not', 'contend', ',', 'and', 'only', 'replied', ',', '“', 'Whoever', 'may', 'have', 'been', 'so', 'detestably', 'your', 'enemy', ',', 'let', 'them', 'be', 'cheated', 'of', 'their', 'malignant', 'triumph', ',', 'my', 'dear', 'sister', ',', 'by', 'seeing', 'how', 'nobly', 'the', 'consciousness', 'of', 'your', 'own', 'innocence', 'and', 'good', 'intentions', 'supports', 'your', 'spirits', '.', 'It', 'is', 'a', 'reasonable', 'and', 'laudable', 'pride', 'which', 'resists', 'such', 'malevolence.', '”', '“', 'No', ',', 'no', ',', '”', 'cried', 'Marianne', ',', '“', 'misery', 'such', 'as', 'mine', 'has', 'no', 'pride', '.', 'I', 'care', 'not', 'who', 'knows', 'that', 'I', 'am', 'wretched', '.', 'The', 'triumph', 'of', 'seeing', 'me', 'so', 'may', 'be', 'open', 'to', 'all', 'the', 'world', '.', 'Elinor', ',', 'Elinor', ',', 'they', 'who', 'suffer', 'little', 'may', 'be', 'proud', 'and', 'independent', 'as', 'they', 'like—may', 'resist', 'insult', ',', 'or', 'return', 'mortification—but', 'I', 'can', 'not', '.', 'I', 'must', 'feel—I', 'must', 'be', 'wretched—and', 'they', 'are', 'welcome', 'to', 'enjoy', 'the', 'consciousness', 'of', 'it', 'that', 'can.', '”', '“', 'But', 'for', 'my', 'mother', '’', 's', 'sake', 'and', 'mine—', '”', '“', 'I', 'would', 'do', 'more', 'than', 'for', 'my', 'own', '.', 'But', 'to', 'appear', 'happy', 'when', 'I', 'am', 'so', 'miserable—Oh', '!', 'who', 'can', 'require', 'it', '?', '”', 'Again', 'they', 'were', 'both', 'silent', '.', 'Elinor', 'was', 'employed', 'in', 'walking', 'thoughtfully', 'from', 'the', 'fire', 'to', 'the', 'window', ',', 'from', 'the', 'window', 'to', 'the', 'fire', ',', 'without', 'knowing', 'that', 'she', 'received', 'warmth', 'from', 'one', ',', 'or', 'discerning', 'objects', 'through', 'the', 'other', ';', 'and', 'Marianne', ',', 'seated', 'at', 'the', 'foot', 'of', 'the', 'bed', ',', 'with', 'her', 'head', 'leaning', 'against', 'one', 'of', 'its', 'posts', ',', 'again', 'took', 'up', 'Willoughby', '’', 's', 'letter', ',', 'and', ',', 'after', 'shuddering', 'over', 'every', 'sentence', ',', 'exclaimed', ',', '—', '“', 'It', 'is', 'too', 'much', '!', 'Oh', ',', 'Willoughby', ',', 'Willoughby', ',', 'could', 'this', 'be', 'yours', '!', 'Cruel', ',', 'cruel—nothing', 'can', 'acquit', 'you', '.', 'Elinor', ',', 'nothing', 'can', '.', 'Whatever', 'he', 'might', 'have', 'heard', 'against', 'me—ought', 'he', 'not', 'to', 'have', 'suspended', 'his', 'belief', '?', 'ought', 'he', 'not', 'to', 'have', 'told', 'me', 'of', 'it', ',', 'to', 'have', 'given', 'me', 'the', 'power', 'of', 'clearing', 'myself', '?', '‘', 'The', 'lock', 'of', 'hair', ',', '(', 'repeating', 'it', 'from', 'the', 'letter', ',', ')', 'which', 'you', 'so', 'obligingly', 'bestowed', 'on', 'me', '’', '—That', 'is', 'unpardonable', '.', 'Willoughby', ',', 'where', 'was', 'your', 'heart', 'when', 'you', 'wrote', 'those', 'words', '?', 'Oh', ',', 'barbarously', 'insolent', '!', '—Elinor', ',', 'can', 'he', 'be', 'justified', '?', '”', '“', 'No', ',', 'Marianne', ',', 'in', 'no', 'possible', 'way.', '”', '“', 'And', 'yet', 'this', 'woman—who', 'knows', 'what', 'her', 'art', 'may', 'have', 'been', '?', '—how', 'long', 'it', 'may', 'have', 'been', 'premeditated', ',', 'and', 'how', 'deeply', 'contrived', 'by', 'her', '!', '—Who', 'is', 'she', '?', '—Who', 'can', 'she', 'be', '?', '—Whom', 'did', 'I', 'ever', 'hear', 'him', 'talk', 'of', 'as', 'young', 'and', 'attractive', 'among', 'his', 'female', 'acquaintance', '?', '—Oh', '!', 'no', 'one', ',', 'no', 'one—he', 'talked', 'to', 'me', 'only', 'of', 'myself.', '”', 'Another', 'pause', 'ensued', ';', 'Marianne', 'was', 'greatly', 'agitated', ',', 'and', 'it', 'ended', 'thus', '.', '“', 'Elinor', ',', 'I', 'must', 'go', 'home', '.', 'I', 'must', 'go', 'and', 'comfort', 'mama', '.', 'Can', 'not', 'we', 'be', 'gone', 'to-morrow', '?', '”', '“', 'To-morrow', ',', 'Marianne', '!', '”', '“', 'Yes', ',', 'why', 'should', 'I', 'stay', 'here', '?', 'I', 'came', 'only', 'for', 'Willoughby', '’', 's', 'sake—and', 'now', 'who', 'cares', 'for', 'me', '?', 'Who', 'regards', 'me', '?', '”', '“', 'It', 'would', 'be', 'impossible', 'to', 'go', 'to-morrow', '.', 'We', 'owe', 'Mrs.', 'Jennings', 'much', 'more', 'than', 'civility', ';', 'and', 'civility', 'of', 'the', 'commonest', 'kind', 'must', 'prevent', 'such', 'a', 'hasty', 'removal', 'as', 'that.', '”', '“', 'Well', 'then', ',', 'another', 'day', 'or', 'two', ',', 'perhaps', ';', 'but', 'I', 'can', 'not', 'stay', 'here', 'long', ',', 'I', 'can', 'not', 'stay', 'to', 'endure', 'the', 'questions', 'and', 'remarks', 'of', 'all', 'these', 'people', '.', 'The', 'Middletons', 'and', 'Palmers—how', 'am', 'I', 'to', 'bear', 'their', 'pity', '?', 'The', 'pity', 'of', 'such', 'a', 'woman', 'as', 'Lady', 'Middleton', '!', 'Oh', ',', 'what', 'would', '_he_', 'say', 'to', 'that', '!', '”', 'Elinor', 'advised', 'her', 'to', 'lie', 'down', 'again', ',', 'and', 'for', 'a', 'moment', 'she', 'did', 'so', ';', 'but', 'no', 'attitude', 'could', 'give', 'her', 'ease', ';', 'and', 'in', 'restless', 'pain', 'of', 'mind', 'and', 'body', 'she', 'moved', 'from', 'one', 'posture', 'to', 'another', ',', 'till', 'growing', 'more', 'and', 'more', 'hysterical', ',', 'her', 'sister', 'could', 'with', 'difficulty', 'keep', 'her', 'on', 'the', 'bed', 'at', 'all', ',', 'and', 'for', 'some', 'time', 'was', 'fearful', 'of', 'being', 'constrained', 'to', 'call', 'for', 'assistance', '.', 'Some', 'lavender', 'drops', ',', 'however', ',', 'which', 'she', 'was', 'at', 'length', 'persuaded', 'to', 'take', ',', 'were', 'of', 'use', ';', 'and', 'from', 'that', 'time', 'till', 'Mrs.', 'Jennings', 'returned', ',', 'she', 'continued', 'on', 'the', 'bed', 'quiet', 'and', 'motionless', '.', 'CHAPTER', 'XXX', '.', 'Mrs.', 'Jennings', 'came', 'immediately', 'to', 'their', 'room', 'on', 'her', 'return', ',', 'and', 'without', 'waiting', 'to', 'have', 'her', 'request', 'of', 'admittance', 'answered', ',', 'opened', 'the', 'door', 'and', 'walked', 'in', 'with', 'a', 'look', 'of', 'real', 'concern', '.', '“', 'How', 'do', 'you', 'do', 'my', 'dear', '?', '”', '—said', 'she', 'in', 'a', 'voice', 'of', 'great', 'compassion', 'to', 'Marianne', ',', 'who', 'turned', 'away', 'her', 'face', 'without', 'attempting', 'to', 'answer', '.', '“', 'How', 'is', 'she', ',', 'Miss', 'Dashwood', '?', 'Poor', 'thing', '!', 'she', 'looks', 'very', 'bad', '.', 'No', 'wonder', '.', 'Ay', ',', 'it', 'is', 'but', 'too', 'true', '.', 'He', 'is', 'to', 'be', 'married', 'very', 'soon—a', 'good-for-nothing', 'fellow', '!', 'I', 'have', 'no', 'patience', 'with', 'him', '.', 'Mrs.', 'Taylor', 'told', 'me', 'of', 'it', 'half', 'an', 'hour', 'ago', ',', 'and', 'she', 'was', 'told', 'it', 'by', 'a', 'particular', 'friend', 'of', 'Miss', 'Grey', 'herself', ',', 'else', 'I', 'am', 'sure', 'I', 'should', 'not', 'have', 'believed', 'it', ';', 'and', 'I', 'was', 'almost', 'ready', 'to', 'sink', 'as', 'it', 'was', '.', 'Well', ',', 'said', 'I', ',', 'all', 'I', 'can', 'say', 'is', ',', 'that', 'if', 'this', 'be', 'true', ',', 'he', 'has', 'used', 'a', 'young', 'lady', 'of', 'my', 'acquaintance', 'abominably', 'ill', ',', 'and', 'I', 'wish', 'with', 'all', 'my', 'soul', 'his', 'wife', 'may', 'plague', 'his', 'heart', 'out', '.', 'And', 'so', 'I', 'shall', 'always', 'say', ',', 'my', 'dear', ',', 'you', 'may', 'depend', 'on', 'it', '.', 'I', 'have', 'no', 'notion', 'of', 'men', '’', 's', 'going', 'on', 'in', 'this', 'way', ';', 'and', 'if', 'ever', 'I', 'meet', 'him', 'again', ',', 'I', 'will', 'give', 'him', 'such', 'a', 'dressing', 'as', 'he', 'has', 'not', 'had', 'this', 'many', 'a', 'day', '.', 'But', 'there', 'is', 'one', 'comfort', ',', 'my', 'dear', 'Miss', 'Marianne', ';', 'he', 'is', 'not', 'the', 'only', 'young', 'man', 'in', 'the', 'world', 'worth', 'having', ';', 'and', 'with', 'your', 'pretty', 'face', 'you', 'will', 'never', 'want', 'admirers', '.', 'Well', ',', 'poor', 'thing', '!', 'I', 'won', '’', 't', 'disturb', 'her', 'any', 'longer', ',', 'for', 'she', 'had', 'better', 'have', 'her', 'cry', 'out', 'at', 'once', 'and', 'have', 'done', 'with', '.', 'The', 'Parrys', 'and', 'Sandersons', 'luckily', 'are', 'coming', 'tonight', 'you', 'know', ',', 'and', 'that', 'will', 'amuse', 'her.', '”', 'She', 'then', 'went', 'away', ',', 'walking', 'on', 'tiptoe', 'out', 'of', 'the', 'room', ',', 'as', 'if', 'she', 'supposed', 'her', 'young', 'friend', '’', 's', 'affliction', 'could', 'be', 'increased', 'by', 'noise', '.', 'Marianne', ',', 'to', 'the', 'surprise', 'of', 'her', 'sister', ',', 'determined', 'on', 'dining', 'with', 'them', '.', 'Elinor', 'even', 'advised', 'her', 'against', 'it', '.', 'But', '“', 'no', ',', 'she', 'would', 'go', 'down', ';', 'she', 'could', 'bear', 'it', 'very', 'well', ',', 'and', 'the', 'bustle', 'about', 'her', 'would', 'be', 'less.', '”', 'Elinor', ',', 'pleased', 'to', 'have', 'her', 'governed', 'for', 'a', 'moment', 'by', 'such', 'a', 'motive', ',', 'though', 'believing', 'it', 'hardly', 'possible', 'that', 'she', 'could', 'sit', 'out', 'the', 'dinner', ',', 'said', 'no', 'more', ';', 'and', 'adjusting', 'her', 'dress', 'for', 'her', 'as', 'well', 'as', 'she', 'could', ',', 'while', 'Marianne', 'still', 'remained', 'on', 'the', 'bed', ',', 'was', 'ready', 'to', 'assist', 'her', 'into', 'the', 'dining', 'room', 'as', 'soon', 'as', 'they', 'were', 'summoned', 'to', 'it', '.', 'When', 'there', ',', 'though', 'looking', 'most', 'wretchedly', ',', 'she', 'ate', 'more', 'and', 'was', 'calmer', 'than', 'her', 'sister', 'had', 'expected', '.', 'Had', 'she', 'tried', 'to', 'speak', ',', 'or', 'had', 'she', 'been', 'conscious', 'of', 'half', 'Mrs.', 'Jennings', '’', 's', 'well-meant', 'but', 'ill-judged', 'attentions', 'to', 'her', ',', 'this', 'calmness', 'could', 'not', 'have', 'been', 'maintained', ';', 'but', 'not', 'a', 'syllable', 'escaped', 'her', 'lips', ';', 'and', 'the', 'abstraction', 'of', 'her', 'thoughts', 'preserved', 'her', 'in', 'ignorance', 'of', 'every', 'thing', 'that', 'was', 'passing', 'before', 'her', '.', 'Elinor', ',', 'who', 'did', 'justice', 'to', 'Mrs.', 'Jennings', '’', 's', 'kindness', ',', 'though', 'its', 'effusions', 'were', 'often', 'distressing', ',', 'and', 'sometimes', 'almost', 'ridiculous', ',', 'made', 'her', 'those', 'acknowledgments', ',', 'and', 'returned', 'her', 'those', 'civilities', ',', 'which', 'her', 'sister', 'could', 'not', 'make', 'or', 'return', 'for', 'herself', '.', 'Their', 'good', 'friend', 'saw', 'that', 'Marianne', 'was', 'unhappy', ',', 'and', 'felt', 'that', 'every', 'thing', 'was', 'due', 'to', 'her', 'which', 'might', 'make', 'her', 'at', 'all', 'less', 'so', '.', 'She', 'treated', 'her', 'therefore', ',', 'with', 'all', 'the', 'indulgent', 'fondness', 'of', 'a', 'parent', 'towards', 'a', 'favourite', 'child', 'on', 'the', 'last', 'day', 'of', 'its', 'holidays', '.', 'Marianne', 'was', 'to', 'have', 'the', 'best', 'place', 'by', 'the', 'fire', ',', 'was', 'to', 'be', 'tempted', 'to', 'eat', 'by', 'every', 'delicacy', 'in', 'the', 'house', ',', 'and', 'to', 'be', 'amused', 'by', 'the', 'relation', 'of', 'all', 'the', 'news', 'of', 'the', 'day', '.', 'Had', 'not', 'Elinor', ',', 'in', 'the', 'sad', 'countenance', 'of', 'her', 'sister', ',', 'seen', 'a', 'check', 'to', 'all', 'mirth', ',', 'she', 'could', 'have', 'been', 'entertained', 'by', 'Mrs.', 'Jennings', '’', 's', 'endeavours', 'to', 'cure', 'a', 'disappointment', 'in', 'love', ',', 'by', 'a', 'variety', 'of', 'sweetmeats', 'and', 'olives', ',', 'and', 'a', 'good', 'fire', '.', 'As', 'soon', ',', 'however', ',', 'as', 'the', 'consciousness', 'of', 'all', 'this', 'was', 'forced', 'by', 'continual', 'repetition', 'on', 'Marianne', ',', 'she', 'could', 'stay', 'no', 'longer', '.', 'With', 'a', 'hasty', 'exclamation', 'of', 'Misery', ',', 'and', 'a', 'sign', 'to', 'her', 'sister', 'not', 'to', 'follow', 'her', ',', 'she', 'directly', 'got', 'up', 'and', 'hurried', 'out', 'of', 'the', 'room', '.', '“', 'Poor', 'soul', '!', '”', 'cried', 'Mrs.', 'Jennings', ',', 'as', 'soon', 'as', 'she', 'was', 'gone', ',', '“', 'how', 'it', 'grieves', 'me', 'to', 'see', 'her', '!', 'And', 'I', 'declare', 'if', 'she', 'is', 'not', 'gone', 'away', 'without', 'finishing', 'her', 'wine', '!', 'And', 'the', 'dried', 'cherries', 'too', '!', 'Lord', '!', 'nothing', 'seems', 'to', 'do', 'her', 'any', 'good', '.', 'I', 'am', 'sure', 'if', 'I', 'knew', 'of', 'any', 'thing', 'she', 'would', 'like', ',', 'I', 'would', 'send', 'all', 'over', 'the', 'town', 'for', 'it', '.', 'Well', ',', 'it', 'is', 'the', 'oddest', 'thing', 'to', 'me', ',', 'that', 'a', 'man', 'should', 'use', 'such', 'a', 'pretty', 'girl', 'so', 'ill', '!', 'But', 'when', 'there', 'is', 'plenty', 'of', 'money', 'on', 'one', 'side', ',', 'and', 'next', 'to', 'none', 'on', 'the', 'other', ',', 'Lord', 'bless', 'you', '!', 'they', 'care', 'no', 'more', 'about', 'such', 'things', '!', '—', '”', '“', 'The', 'lady', 'then—Miss', 'Grey', 'I', 'think', 'you', 'called', 'her—is', 'very', 'rich', '?', '”', '“', 'Fifty', 'thousand', 'pounds', ',', 'my', 'dear', '.', 'Did', 'you', 'ever', 'see', 'her', '?', 'a', 'smart', ',', 'stylish', 'girl', 'they', 'say', ',', 'but', 'not', 'handsome', '.', 'I', 'remember', 'her', 'aunt', 'very', 'well', ',', 'Biddy', 'Henshawe', ';', 'she', 'married', 'a', 'very', 'wealthy', 'man', '.', 'But', 'the', 'family', 'are', 'all', 'rich', 'together', '.', 'Fifty', 'thousand', 'pounds', '!', 'and', 'by', 'all', 'accounts', ',', 'it', 'won', '’', 't', 'come', 'before', 'it', '’', 's', 'wanted', ';', 'for', 'they', 'say', 'he', 'is', 'all', 'to', 'pieces', '.', 'No', 'wonder', '!', 'dashing', 'about', 'with', 'his', 'curricle', 'and', 'hunters', '!', 'Well', ',', 'it', 'don', '’', 't', 'signify', 'talking', ';', 'but', 'when', 'a', 'young', 'man', ',', 'be', 'who', 'he', 'will', ',', 'comes', 'and', 'makes', 'love', 'to', 'a', 'pretty', 'girl', ',', 'and', 'promises', 'marriage', ',', 'he', 'has', 'no', 'business', 'to', 'fly', 'off', 'from', 'his', 'word', 'only', 'because', 'he', 'grows', 'poor', ',', 'and', 'a', 'richer', 'girl', 'is', 'ready', 'to', 'have', 'him', '.', 'Why', 'don', '’', 't', 'he', ',', 'in', 'such', 'a', 'case', ',', 'sell', 'his', 'horses', ',', 'let', 'his', 'house', ',', 'turn', 'off', 'his', 'servants', ',', 'and', 'make', 'a', 'thorough', 'reform', 'at', 'once', '?', 'I', 'warrant', 'you', ',', 'Miss', 'Marianne', 'would', 'have', 'been', 'ready', 'to', 'wait', 'till', 'matters', 'came', 'round', '.', 'But', 'that', 'won', '’', 't', 'do', 'now-a-days', ';', 'nothing', 'in', 'the', 'way', 'of', 'pleasure', 'can', 'ever', 'be', 'given', 'up', 'by', 'the', 'young', 'men', 'of', 'this', 'age.', '”', '“', 'Do', 'you', 'know', 'what', 'kind', 'of', 'a', 'girl', 'Miss', 'Grey', 'is', '?', 'Is', 'she', 'said', 'to', 'be', 'amiable', '?', '”', '“', 'I', 'never', 'heard', 'any', 'harm', 'of', 'her', ';', 'indeed', 'I', 'hardly', 'ever', 'heard', 'her', 'mentioned', ';', 'except', 'that', 'Mrs.', 'Taylor', 'did', 'say', 'this', 'morning', ',', 'that', 'one', 'day', 'Miss', 'Walker', 'hinted', 'to', 'her', ',', 'that', 'she', 'believed', 'Mr.', 'and', 'Mrs.', 'Ellison', 'would', 'not', 'be', 'sorry', 'to', 'have', 'Miss', 'Grey', 'married', ',', 'for', 'she', 'and', 'Mrs.', 'Ellison', 'could', 'never', 'agree.', '”', '“', 'And', 'who', 'are', 'the', 'Ellisons', '?', '”', '“', 'Her', 'guardians', ',', 'my', 'dear', '.', 'But', 'now', 'she', 'is', 'of', 'age', 'and', 'may', 'choose', 'for', 'herself', ';', 'and', 'a', 'pretty', 'choice', 'she', 'has', 'made', '!', '—What', 'now', ',', '”', 'after', 'pausing', 'a', 'moment—', '“', 'your', 'poor', 'sister', 'is', 'gone', 'to', 'her', 'own', 'room', ',', 'I', 'suppose', ',', 'to', 'moan', 'by', 'herself', '.', 'Is', 'there', 'nothing', 'one', 'can', 'get', 'to', 'comfort', 'her', '?', 'Poor', 'dear', ',', 'it', 'seems', 'quite', 'cruel', 'to', 'let', 'her', 'be', 'alone', '.', 'Well', ',', 'by-and-by', 'we', 'shall', 'have', 'a', 'few', 'friends', ',', 'and', 'that', 'will', 'amuse', 'her', 'a', 'little', '.', 'What', 'shall', 'we', 'play', 'at', '?', 'She', 'hates', 'whist', 'I', 'know', ';', 'but', 'is', 'there', 'no', 'round', 'game', 'she', 'cares', 'for', '?', '”', '“', 'Dear', 'ma', '’', 'am', ',', 'this', 'kindness', 'is', 'quite', 'unnecessary', '.', 'Marianne', ',', 'I', 'dare', 'say', ',', 'will', 'not', 'leave', 'her', 'room', 'again', 'this', 'evening', '.', 'I', 'shall', 'persuade', 'her', 'if', 'I', 'can', 'to', 'go', 'early', 'to', 'bed', ',', 'for', 'I', 'am', 'sure', 'she', 'wants', 'rest.', '”', '“', 'Aye', ',', 'I', 'believe', 'that', 'will', 'be', 'best', 'for', 'her', '.', 'Let', 'her', 'name', 'her', 'own', 'supper', ',', 'and', 'go', 'to', 'bed', '.', 'Lord', '!', 'no', 'wonder', 'she', 'has', 'been', 'looking', 'so', 'bad', 'and', 'so', 'cast', 'down', 'this', 'last', 'week', 'or', 'two', ',', 'for', 'this', 'matter', 'I', 'suppose', 'has', 'been', 'hanging', 'over', 'her', 'head', 'as', 'long', 'as', 'that', '.', 'And', 'so', 'the', 'letter', 'that', 'came', 'today', 'finished', 'it', '!', 'Poor', 'soul', '!', 'I', 'am', 'sure', 'if', 'I', 'had', 'had', 'a', 'notion', 'of', 'it', ',', 'I', 'would', 'not', 'have', 'joked', 'her', 'about', 'it', 'for', 'all', 'my', 'money', '.', 'But', 'then', 'you', 'know', ',', 'how', 'should', 'I', 'guess', 'such', 'a', 'thing', '?', 'I', 'made', 'sure', 'of', 'its', 'being', 'nothing', 'but', 'a', 'common', 'love', 'letter', ',', 'and', 'you', 'know', 'young', 'people', 'like', 'to', 'be', 'laughed', 'at', 'about', 'them', '.', 'Lord', '!', 'how', 'concerned', 'Sir', 'John', 'and', 'my', 'daughters', 'will', 'be', 'when', 'they', 'hear', 'it', '!', 'If', 'I', 'had', 'my', 'senses', 'about', 'me', 'I', 'might', 'have', 'called', 'in', 'Conduit', 'Street', 'in', 'my', 'way', 'home', ',', 'and', 'told', 'them', 'of', 'it', '.', 'But', 'I', 'shall', 'see', 'them', 'tomorrow.', '”', '“', 'It', 'would', 'be', 'unnecessary', 'I', 'am', 'sure', ',', 'for', 'you', 'to', 'caution', 'Mrs.', 'Palmer', 'and', 'Sir', 'John', 'against', 'ever', 'naming', 'Mr.', 'Willoughby', ',', 'or', 'making', 'the', 'slightest', 'allusion', 'to', 'what', 'has', 'passed', ',', 'before', 'my', 'sister', '.', 'Their', 'own', 'good-nature', 'must', 'point', 'out', 'to', 'them', 'the', 'real', 'cruelty', 'of', 'appearing', 'to', 'know', 'any', 'thing', 'about', 'it', 'when', 'she', 'is', 'present', ';', 'and', 'the', 'less', 'that', 'may', 'ever', 'be', 'said', 'to', 'myself', 'on', 'the', 'subject', ',', 'the', 'more', 'my', 'feelings', 'will', 'be', 'spared', ',', 'as', 'you', 'my', 'dear', 'madam', 'will', 'easily', 'believe.', '”', '“', 'Oh', '!', 'Lord', '!', 'yes', ',', 'that', 'I', 'do', 'indeed', '.', 'It', 'must', 'be', 'terrible', 'for', 'you', 'to', 'hear', 'it', 'talked', 'of', ';', 'and', 'as', 'for', 'your', 'sister', ',', 'I', 'am', 'sure', 'I', 'would', 'not', 'mention', 'a', 'word', 'about', 'it', 'to', 'her', 'for', 'the', 'world', '.', 'You', 'saw', 'I', 'did', 'not', 'all', 'dinner', 'time', '.', 'No', 'more', 'would', 'Sir', 'John', ',', 'nor', 'my', 'daughters', ',', 'for', 'they', 'are', 'all', 'very', 'thoughtful', 'and', 'considerate', ';', 'especially', 'if', 'I', 'give', 'them', 'a', 'hint', ',', 'as', 'I', 'certainly', 'will', '.', 'For', 'my', 'part', ',', 'I', 'think', 'the', 'less', 'that', 'is', 'said', 'about', 'such', 'things', ',', 'the', 'better', ',', 'the', 'sooner', '’', 'tis', 'blown', 'over', 'and', 'forgot', '.', 'And', 'what', 'good', 'does', 'talking', 'ever', 'do', 'you', 'know', '?', '”', '“', 'In', 'this', 'affair', 'it', 'can', 'only', 'do', 'harm', ';', 'more', 'so', 'perhaps', 'than', 'in', 'many', 'cases', 'of', 'a', 'similar', 'kind', ',', 'for', 'it', 'has', 'been', 'attended', 'by', 'circumstances', 'which', ',', 'for', 'the', 'sake', 'of', 'every', 'one', 'concerned', 'in', 'it', ',', 'make', 'it', 'unfit', 'to', 'become', 'the', 'public', 'conversation', '.', 'I', 'must', 'do', '_this_', 'justice', 'to', 'Mr.', 'Willoughby—he', 'has', 'broken', 'no', 'positive', 'engagement', 'with', 'my', 'sister.', '”', '“', 'Law', ',', 'my', 'dear', '!', 'Don', '’', 't', 'pretend', 'to', 'defend', 'him', '.', 'No', 'positive', 'engagement', 'indeed', '!', 'after', 'taking', 'her', 'all', 'over', 'Allenham', 'House', ',', 'and', 'fixing', 'on', 'the', 'very', 'rooms', 'they', 'were', 'to', 'live', 'in', 'hereafter', '!', '”', 'Elinor', ',', 'for', 'her', 'sister', '’', 's', 'sake', ',', 'could', 'not', 'press', 'the', 'subject', 'farther', ',', 'and', 'she', 'hoped', 'it', 'was', 'not', 'required', 'of', 'her', 'for', 'Willoughby', '’', 's', ';', 'since', ',', 'though', 'Marianne', 'might', 'lose', 'much', ',', 'he', 'could', 'gain', 'very', 'little', 'by', 'the', 'enforcement', 'of', 'the', 'real', 'truth', '.', 'After', 'a', 'short', 'silence', 'on', 'both', 'sides', ',', 'Mrs.', 'Jennings', ',', 'with', 'all', 'her', 'natural', 'hilarity', ',', 'burst', 'forth', 'again', '.', '“', 'Well', ',', 'my', 'dear', ',', '’', 'tis', 'a', 'true', 'saying', 'about', 'an', 'ill-wind', ',', 'for', 'it', 'will', 'be', 'all', 'the', 'better', 'for', 'Colonel', 'Brandon', '.', 'He', 'will', 'have', 'her', 'at', 'last', ';', 'aye', ',', 'that', 'he', 'will', '.', 'Mind', 'me', ',', 'now', ',', 'if', 'they', 'an', '’', 't', 'married', 'by', 'Mid-summer', '.', 'Lord', '!', 'how', 'he', '’', 'll', 'chuckle', 'over', 'this', 'news', '!', 'I', 'hope', 'he', 'will', 'come', 'tonight', '.', 'It', 'will', 'be', 'all', 'to', 'one', 'a', 'better', 'match', 'for', 'your', 'sister', '.', 'Two', 'thousand', 'a', 'year', 'without', 'debt', 'or', 'drawback—except', 'the', 'little', 'love-child', ',', 'indeed', ';', 'aye', ',', 'I', 'had', 'forgot', 'her', ';', 'but', 'she', 'may', 'be', '’', 'prenticed', 'out', 'at', 'a', 'small', 'cost', ',', 'and', 'then', 'what', 'does', 'it', 'signify', '?', 'Delaford', 'is', 'a', 'nice', 'place', ',', 'I', 'can', 'tell', 'you', ';', 'exactly', 'what', 'I', 'call', 'a', 'nice', 'old', 'fashioned', 'place', ',', 'full', 'of', 'comforts', 'and', 'conveniences', ';', 'quite', 'shut', 'in', 'with', 'great', 'garden', 'walls', 'that', 'are', 'covered', 'with', 'the', 'best', 'fruit-trees', 'in', 'the', 'country', ';', 'and', 'such', 'a', 'mulberry', 'tree', 'in', 'one', 'corner', '!', 'Lord', '!', 'how', 'Charlotte', 'and', 'I', 'did', 'stuff', 'the', 'only', 'time', 'we', 'were', 'there', '!', 'Then', ',', 'there', 'is', 'a', 'dove-cote', ',', 'some', 'delightful', 'stew-ponds', ',', 'and', 'a', 'very', 'pretty', 'canal', ';', 'and', 'every', 'thing', ',', 'in', 'short', ',', 'that', 'one', 'could', 'wish', 'for', ';', 'and', ',', 'moreover', ',', 'it', 'is', 'close', 'to', 'the', 'church', ',', 'and', 'only', 'a', 'quarter', 'of', 'a', 'mile', 'from', 'the', 'turnpike-road', ',', 'so', '’', 'tis', 'never', 'dull', ',', 'for', 'if', 'you', 'only', 'go', 'and', 'sit', 'up', 'in', 'an', 'old', 'yew', 'arbour', 'behind', 'the', 'house', ',', 'you', 'may', 'see', 'all', 'the', 'carriages', 'that', 'pass', 'along', '.', 'Oh', '!', '’', 'tis', 'a', 'nice', 'place', '!', 'A', 'butcher', 'hard', 'by', 'in', 'the', 'village', ',', 'and', 'the', 'parsonage-house', 'within', 'a', 'stone', '’', 's', 'throw', '.', 'To', 'my', 'fancy', ',', 'a', 'thousand', 'times', 'prettier', 'than', 'Barton', 'Park', ',', 'where', 'they', 'are', 'forced', 'to', 'send', 'three', 'miles', 'for', 'their', 'meat', ',', 'and', 'have', 'not', 'a', 'neighbour', 'nearer', 'than', 'your', 'mother', '.', 'Well', ',', 'I', 'shall', 'spirit', 'up', 'the', 'Colonel', 'as', 'soon', 'as', 'I', 'can', '.', 'One', 'shoulder', 'of', 'mutton', ',', 'you', 'know', ',', 'drives', 'another', 'down', '.', 'If', 'we', '_can_', 'but', 'put', 'Willoughby', 'out', 'of', 'her', 'head', '!', '”', '“', 'Ay', ',', 'if', 'we', 'can', 'do', '_that_', ',', 'Ma', '’', 'am', ',', '”', 'said', 'Elinor', ',', '“', 'we', 'shall', 'do', 'very', 'well', 'with', 'or', 'without', 'Colonel', 'Brandon.', '”', 'And', 'then', 'rising', ',', 'she', 'went', 'away', 'to', 'join', 'Marianne', ',', 'whom', 'she', 'found', ',', 'as', 'she', 'expected', ',', 'in', 'her', 'own', 'room', ',', 'leaning', ',', 'in', 'silent', 'misery', ',', 'over', 'the', 'small', 'remains', 'of', 'a', 'fire', ',', 'which', ',', 'till', 'Elinor', '’', 's', 'entrance', ',', 'had', 'been', 'her', 'only', 'light', '.', '“', 'You', 'had', 'better', 'leave', 'me', ',', '”', 'was', 'all', 'the', 'notice', 'that', 'her', 'sister', 'received', 'from', 'her', '.', '“', 'I', 'will', 'leave', 'you', ',', '”', 'said', 'Elinor', ',', '“', 'if', 'you', 'will', 'go', 'to', 'bed.', '”', 'But', 'this', ',', 'from', 'the', 'momentary', 'perverseness', 'of', 'impatient', 'suffering', ',', 'she', 'at', 'first', 'refused', 'to', 'do', '.', 'Her', 'sister', '’', 's', 'earnest', ',', 'though', 'gentle', 'persuasion', ',', 'however', ',', 'soon', 'softened', 'her', 'to', 'compliance', ',', 'and', 'Elinor', 'saw', 'her', 'lay', 'her', 'aching', 'head', 'on', 'the', 'pillow', ',', 'and', 'as', 'she', 'hoped', ',', 'in', 'a', 'way', 'to', 'get', 'some', 'quiet', 'rest', 'before', 'she', 'left', 'her', '.', 'In', 'the', 'drawing-room', ',', 'whither', 'she', 'then', 'repaired', ',', 'she', 'was', 'soon', 'joined', 'by', 'Mrs.', 'Jennings', ',', 'with', 'a', 'wine-glass', ',', 'full', 'of', 'something', ',', 'in', 'her', 'hand', '.', '“', 'My', 'dear', ',', '”', 'said', 'she', ',', 'entering', ',', '“', 'I', 'have', 'just', 'recollected', 'that', 'I', 'have', 'some', 'of', 'the', 'finest', 'old', 'Constantia', 'wine', 'in', 'the', 'house', 'that', 'ever', 'was', 'tasted', ',', 'so', 'I', 'have', 'brought', 'a', 'glass', 'of', 'it', 'for', 'your', 'sister', '.', 'My', 'poor', 'husband', '!', 'how', 'fond', 'he', 'was', 'of', 'it', '!', 'Whenever', 'he', 'had', 'a', 'touch', 'of', 'his', 'old', 'colicky', 'gout', ',', 'he', 'said', 'it', 'did', 'him', 'more', 'good', 'than', 'any', 'thing', 'else', 'in', 'the', 'world', '.', 'Do', 'take', 'it', 'to', 'your', 'sister.', '”', '“', 'Dear', 'Ma', '’', 'am', ',', '”', 'replied', 'Elinor', ',', 'smiling', 'at', 'the', 'difference', 'of', 'the', 'complaints', 'for', 'which', 'it', 'was', 'recommended', ',', '“', 'how', 'good', 'you', 'are', '!', 'But', 'I', 'have', 'just', 'left', 'Marianne', 'in', 'bed', ',', 'and', ',', 'I', 'hope', ',', 'almost', 'asleep', ';', 'and', 'as', 'I', 'think', 'nothing', 'will', 'be', 'of', 'so', 'much', 'service', 'to', 'her', 'as', 'rest', ',', 'if', 'you', 'will', 'give', 'me', 'leave', ',', 'I', 'will', 'drink', 'the', 'wine', 'myself.', '”', 'Mrs.', 'Jennings', ',', 'though', 'regretting', 'that', 'she', 'had', 'not', 'been', 'five', 'minutes', 'earlier', ',', 'was', 'satisfied', 'with', 'the', 'compromise', ';', 'and', 'Elinor', ',', 'as', 'she', 'swallowed', 'the', 'chief', 'of', 'it', ',', 'reflected', ',', 'that', 'though', 'its', 'effects', 'on', 'a', 'colicky', 'gout', 'were', ',', 'at', 'present', ',', 'of', 'little', 'importance', 'to', 'her', ',', 'its', 'healing', 'powers', ',', 'on', 'a', 'disappointed', 'heart', 'might', 'be', 'as', 'reasonably', 'tried', 'on', 'herself', 'as', 'on', 'her', 'sister', '.', 'Colonel', 'Brandon', 'came', 'in', 'while', 'the', 'party', 'were', 'at', 'tea', ',', 'and', 'by', 'his', 'manner', 'of', 'looking', 'round', 'the', 'room', 'for', 'Marianne', ',', 'Elinor', 'immediately', 'fancied', 'that', 'he', 'neither', 'expected', 'nor', 'wished', 'to', 'see', 'her', 'there', ',', 'and', ',', 'in', 'short', ',', 'that', 'he', 'was', 'already', 'aware', 'of', 'what', 'occasioned', 'her', 'absence', '.', 'Mrs.', 'Jennings', 'was', 'not', 'struck', 'by', 'the', 'same', 'thought', ';', 'for', 'soon', 'after', 'his', 'entrance', ',', 'she', 'walked', 'across', 'the', 'room', 'to', 'the', 'tea-table', 'where', 'Elinor', 'presided', ',', 'and', 'whispered', ',', '“', 'The', 'Colonel', 'looks', 'as', 'grave', 'as', 'ever', 'you', 'see', '.', 'He', 'knows', 'nothing', 'of', 'it', ';', 'do', 'tell', 'him', ',', 'my', 'dear.', '”', 'He', 'shortly', 'afterwards', 'drew', 'a', 'chair', 'close', 'to', 'hers', ',', 'and', ',', 'with', 'a', 'look', 'which', 'perfectly', 'assured', 'her', 'of', 'his', 'good', 'information', ',', 'inquired', 'after', 'her', 'sister', '.', '“', 'Marianne', 'is', 'not', 'well', ',', '”', 'said', 'she', '.', '“', 'She', 'has', 'been', 'indisposed', 'all', 'day', ',', 'and', 'we', 'have', 'persuaded', 'her', 'to', 'go', 'to', 'bed.', '”', '“', 'Perhaps', ',', 'then', ',', '”', 'he', 'hesitatingly', 'replied', ',', '“', 'what', 'I', 'heard', 'this', 'morning', 'may', 'be—there', 'may', 'be', 'more', 'truth', 'in', 'it', 'than', 'I', 'could', 'believe', 'possible', 'at', 'first.', '”', '“', 'What', 'did', 'you', 'hear', '?', '”', '“', 'That', 'a', 'gentleman', ',', 'whom', 'I', 'had', 'reason', 'to', 'think—in', 'short', ',', 'that', 'a', 'man', ',', 'whom', 'I', '_knew_', 'to', 'be', 'engaged—but', 'how', 'shall', 'I', 'tell', 'you', '?', 'If', 'you', 'know', 'it', 'already', ',', 'as', 'surely', 'you', 'must', ',', 'I', 'may', 'be', 'spared.', '”', '“', 'You', 'mean', ',', '”', 'answered', 'Elinor', ',', 'with', 'forced', 'calmness', ',', '“', 'Mr', '.', 'Willoughby', '’', 's', 'marriage', 'with', 'Miss', 'Grey', '.', 'Yes', ',', 'we', '_do_', 'know', 'it', 'all', '.', 'This', 'seems', 'to', 'have', 'been', 'a', 'day', 'of', 'general', 'elucidation', ',', 'for', 'this', 'very', 'morning', 'first', 'unfolded', 'it', 'to', 'us', '.', 'Mr.', 'Willoughby', 'is', 'unfathomable', '!', 'Where', 'did', 'you', 'hear', 'it', '?', '”', '“', 'In', 'a', 'stationer', '’', 's', 'shop', 'in', 'Pall', 'Mall', ',', 'where', 'I', 'had', 'business', '.', 'Two', 'ladies', 'were', 'waiting', 'for', 'their', 'carriage', ',', 'and', 'one', 'of', 'them', 'was', 'giving', 'the', 'other', 'an', 'account', 'of', 'the', 'intended', 'match', ',', 'in', 'a', 'voice', 'so', 'little', 'attempting', 'concealment', ',', 'that', 'it', 'was', 'impossible', 'for', 'me', 'not', 'to', 'hear', 'all', '.', 'The', 'name', 'of', 'Willoughby', ',', 'John', 'Willoughby', ',', 'frequently', 'repeated', ',', 'first', 'caught', 'my', 'attention', ';', 'and', 'what', 'followed', 'was', 'a', 'positive', 'assertion', 'that', 'every', 'thing', 'was', 'now', 'finally', 'settled', 'respecting', 'his', 'marriage', 'with', 'Miss', 'Grey—it', 'was', 'no', 'longer', 'to', 'be', 'a', 'secret—it', 'would', 'take', 'place', 'even', 'within', 'a', 'few', 'weeks', ',', 'with', 'many', 'particulars', 'of', 'preparations', 'and', 'other', 'matters', '.', 'One', 'thing', ',', 'especially', ',', 'I', 'remember', ',', 'because', 'it', 'served', 'to', 'identify', 'the', 'man', 'still', 'more', ':', '—as', 'soon', 'as', 'the', 'ceremony', 'was', 'over', ',', 'they', 'were', 'to', 'go', 'to', 'Combe', 'Magna', ',', 'his', 'seat', 'in', 'Somersetshire', '.', 'My', 'astonishment', '!', '—but', 'it', 'would', 'be', 'impossible', 'to', 'describe', 'what', 'I', 'felt', '.', 'The', 'communicative', 'lady', 'I', 'learnt', ',', 'on', 'inquiry', ',', 'for', 'I', 'stayed', 'in', 'the', 'shop', 'till', 'they', 'were', 'gone', ',', 'was', 'a', 'Mrs.', 'Ellison', ',', 'and', 'that', ',', 'as', 'I', 'have', 'been', 'since', 'informed', ',', 'is', 'the', 'name', 'of', 'Miss', 'Grey', '’', 's', 'guardian.', '”', '“', 'It', 'is', '.', 'But', 'have', 'you', 'likewise', 'heard', 'that', 'Miss', 'Grey', 'has', 'fifty', 'thousand', 'pounds', '?', 'In', 'that', ',', 'if', 'in', 'any', 'thing', ',', 'we', 'may', 'find', 'an', 'explanation.', '”', '“', 'It', 'may', 'be', 'so', ';', 'but', 'Willoughby', 'is', 'capable—at', 'least', 'I', 'think', '”', '—he', 'stopped', 'a', 'moment', ';', 'then', 'added', 'in', 'a', 'voice', 'which', 'seemed', 'to', 'distrust', 'itself', ',', '“', 'And', 'your', 'sister—how', 'did', 'she—', '”', '“', 'Her', 'sufferings', 'have', 'been', 'very', 'severe', '.', 'I', 'have', 'only', 'to', 'hope', 'that', 'they', 'may', 'be', 'proportionately', 'short', '.', 'It', 'has', 'been', ',', 'it', 'is', 'a', 'most', 'cruel', 'affliction', '.', 'Till', 'yesterday', ',', 'I', 'believe', ',', 'she', 'never', 'doubted', 'his', 'regard', ';', 'and', 'even', 'now', ',', 'perhaps—but', '_I_', 'am', 'almost', 'convinced', 'that', 'he', 'never', 'was', 'really', 'attached', 'to', 'her', '.', 'He', 'has', 'been', 'very', 'deceitful', '!', 'and', ',', 'in', 'some', 'points', ',', 'there', 'seems', 'a', 'hardness', 'of', 'heart', 'about', 'him.', '”', '“', 'Ah', '!', '”', 'said', 'Colonel', 'Brandon', ',', '“', 'there', 'is', ',', 'indeed', '!', 'But', 'your', 'sister', 'does', 'not—I', 'think', 'you', 'said', 'so—she', 'does', 'not', 'consider', 'quite', 'as', 'you', 'do', '?', '”', '“', 'You', 'know', 'her', 'disposition', ',', 'and', 'may', 'believe', 'how', 'eagerly', 'she', 'would', 'still', 'justify', 'him', 'if', 'she', 'could.', '”', 'He', 'made', 'no', 'answer', ';', 'and', 'soon', 'afterwards', ',', 'by', 'the', 'removal', 'of', 'the', 'tea-things', ',', 'and', 'the', 'arrangement', 'of', 'the', 'card', 'parties', ',', 'the', 'subject', 'was', 'necessarily', 'dropped', '.', 'Mrs.', 'Jennings', ',', 'who', 'had', 'watched', 'them', 'with', 'pleasure', 'while', 'they', 'were', 'talking', ',', 'and', 'who', 'expected', 'to', 'see', 'the', 'effect', 'of', 'Miss', 'Dashwood', '’', 's', 'communication', ',', 'in', 'such', 'an', 'instantaneous', 'gaiety', 'on', 'Colonel', 'Brandon', '’', 's', 'side', ',', 'as', 'might', 'have', 'become', 'a', 'man', 'in', 'the', 'bloom', 'of', 'youth', ',', 'of', 'hope', 'and', 'happiness', ',', 'saw', 'him', ',', 'with', 'amazement', ',', 'remain', 'the', 'whole', 'evening', 'more', 'serious', 'and', 'thoughtful', 'than', 'usual', '.', 'CHAPTER', 'XXXI', '.', 'From', 'a', 'night', 'of', 'more', 'sleep', 'than', 'she', 'had', 'expected', ',', 'Marianne', 'awoke', 'the', 'next', 'morning', 'to', 'the', 'same', 'consciousness', 'of', 'misery', 'in', 'which', 'she', 'had', 'closed', 'her', 'eyes', '.', 'Elinor', 'encouraged', 'her', 'as', 'much', 'as', 'possible', 'to', 'talk', 'of', 'what', 'she', 'felt', ';', 'and', 'before', 'breakfast', 'was', 'ready', ',', 'they', 'had', 'gone', 'through', 'the', 'subject', 'again', 'and', 'again', ';', 'and', 'with', 'the', 'same', 'steady', 'conviction', 'and', 'affectionate', 'counsel', 'on', 'Elinor', '’', 's', 'side', ',', 'the', 'same', 'impetuous', 'feelings', 'and', 'varying', 'opinions', 'on', 'Marianne', '’', 's', ',', 'as', 'before', '.', 'Sometimes', 'she', 'could', 'believe', 'Willoughby', 'to', 'be', 'as', 'unfortunate', 'and', 'as', 'innocent', 'as', 'herself', ',', 'and', 'at', 'others', ',', 'lost', 'every', 'consolation', 'in', 'the', 'impossibility', 'of', 'acquitting', 'him', '.', 'At', 'one', 'moment', 'she', 'was', 'absolutely', 'indifferent', 'to', 'the', 'observation', 'of', 'all', 'the', 'world', ',', 'at', 'another', 'she', 'would', 'seclude', 'herself', 'from', 'it', 'for', 'ever', ',', 'and', 'at', 'a', 'third', 'could', 'resist', 'it', 'with', 'energy', '.', 'In', 'one', 'thing', ',', 'however', ',', 'she', 'was', 'uniform', ',', 'when', 'it', 'came', 'to', 'the', 'point', ',', 'in', 'avoiding', ',', 'where', 'it', 'was', 'possible', ',', 'the', 'presence', 'of', 'Mrs.', 'Jennings', ',', 'and', 'in', 'a', 'determined', 'silence', 'when', 'obliged', 'to', 'endure', 'it', '.', 'Her', 'heart', 'was', 'hardened', 'against', 'the', 'belief', 'of', 'Mrs.', 'Jennings', '’', 's', 'entering', 'into', 'her', 'sorrows', 'with', 'any', 'compassion', '.', '“', 'No', ',', 'no', ',', 'no', ',', 'it', 'can', 'not', 'be', ',', '”', 'she', 'cried', ';', '“', 'she', 'can', 'not', 'feel', '.', 'Her', 'kindness', 'is', 'not', 'sympathy', ';', 'her', 'good-nature', 'is', 'not', 'tenderness', '.', 'All', 'that', 'she', 'wants', 'is', 'gossip', ',', 'and', 'she', 'only', 'likes', 'me', 'now', 'because', 'I', 'supply', 'it.', '”', 'Elinor', 'had', 'not', 'needed', 'this', 'to', 'be', 'assured', 'of', 'the', 'injustice', 'to', 'which', 'her', 'sister', 'was', 'often', 'led', 'in', 'her', 'opinion', 'of', 'others', ',', 'by', 'the', 'irritable', 'refinement', 'of', 'her', 'own', 'mind', ',', 'and', 'the', 'too', 'great', 'importance', 'placed', 'by', 'her', 'on', 'the', 'delicacies', 'of', 'a', 'strong', 'sensibility', ',', 'and', 'the', 'graces', 'of', 'a', 'polished', 'manner', '.', 'Like', 'half', 'the', 'rest', 'of', 'the', 'world', ',', 'if', 'more', 'than', 'half', 'there', 'be', 'that', 'are', 'clever', 'and', 'good', ',', 'Marianne', ',', 'with', 'excellent', 'abilities', 'and', 'an', 'excellent', 'disposition', ',', 'was', 'neither', 'reasonable', 'nor', 'candid', '.', 'She', 'expected', 'from', 'other', 'people', 'the', 'same', 'opinions', 'and', 'feelings', 'as', 'her', 'own', ',', 'and', 'she', 'judged', 'of', 'their', 'motives', 'by', 'the', 'immediate', 'effect', 'of', 'their', 'actions', 'on', 'herself', '.', 'Thus', 'a', 'circumstance', 'occurred', ',', 'while', 'the', 'sisters', 'were', 'together', 'in', 'their', 'own', 'room', 'after', 'breakfast', ',', 'which', 'sunk', 'the', 'heart', 'of', 'Mrs.', 'Jennings', 'still', 'lower', 'in', 'her', 'estimation', ';', 'because', ',', 'through', 'her', 'own', 'weakness', ',', 'it', 'chanced', 'to', 'prove', 'a', 'source', 'of', 'fresh', 'pain', 'to', 'herself', ',', 'though', 'Mrs.', 'Jennings', 'was', 'governed', 'in', 'it', 'by', 'an', 'impulse', 'of', 'the', 'utmost', 'goodwill', '.', 'With', 'a', 'letter', 'in', 'her', 'outstretched', 'hand', ',', 'and', 'countenance', 'gaily', 'smiling', ',', 'from', 'the', 'persuasion', 'of', 'bringing', 'comfort', ',', 'she', 'entered', 'their', 'room', ',', 'saying', ',', '“', 'Now', ',', 'my', 'dear', ',', 'I', 'bring', 'you', 'something', 'that', 'I', 'am', 'sure', 'will', 'do', 'you', 'good.', '”', 'Marianne', 'heard', 'enough', '.', 'In', 'one', 'moment', 'her', 'imagination', 'placed', 'before', 'her', 'a', 'letter', 'from', 'Willoughby', ',', 'full', 'of', 'tenderness', 'and', 'contrition', ',', 'explanatory', 'of', 'all', 'that', 'had', 'passed', ',', 'satisfactory', ',', 'convincing', ';', 'and', 'instantly', 'followed', 'by', 'Willoughby', 'himself', ',', 'rushing', 'eagerly', 'into', 'the', 'room', 'to', 'inforce', ',', 'at', 'her', 'feet', ',', 'by', 'the', 'eloquence', 'of', 'his', 'eyes', ',', 'the', 'assurances', 'of', 'his', 'letter', '.', 'The', 'work', 'of', 'one', 'moment', 'was', 'destroyed', 'by', 'the', 'next', '.', 'The', 'hand', 'writing', 'of', 'her', 'mother', ',', 'never', 'till', 'then', 'unwelcome', ',', 'was', 'before', 'her', ';', 'and', ',', 'in', 'the', 'acuteness', 'of', 'the', 'disappointment', 'which', 'followed', 'such', 'an', 'ecstasy', 'of', 'more', 'than', 'hope', ',', 'she', 'felt', 'as', 'if', ',', 'till', 'that', 'instant', ',', 'she', 'had', 'never', 'suffered', '.', 'The', 'cruelty', 'of', 'Mrs.', 'Jennings', 'no', 'language', ',', 'within', 'her', 'reach', 'in', 'her', 'moments', 'of', 'happiest', 'eloquence', ',', 'could', 'have', 'expressed', ';', 'and', 'now', 'she', 'could', 'reproach', 'her', 'only', 'by', 'the', 'tears', 'which', 'streamed', 'from', 'her', 'eyes', 'with', 'passionate', 'violence—a', 'reproach', ',', 'however', ',', 'so', 'entirely', 'lost', 'on', 'its', 'object', ',', 'that', 'after', 'many', 'expressions', 'of', 'pity', ',', 'she', 'withdrew', ',', 'still', 'referring', 'her', 'to', 'the', 'letter', 'of', 'comfort', '.', 'But', 'the', 'letter', ',', 'when', 'she', 'was', 'calm', 'enough', 'to', 'read', 'it', ',', 'brought', 'little', 'comfort', '.', 'Willoughby', 'filled', 'every', 'page', '.', 'Her', 'mother', ',', 'still', 'confident', 'of', 'their', 'engagement', ',', 'and', 'relying', 'as', 'warmly', 'as', 'ever', 'on', 'his', 'constancy', ',', 'had', 'only', 'been', 'roused', 'by', 'Elinor', '’', 's', 'application', ',', 'to', 'intreat', 'from', 'Marianne', 'greater', 'openness', 'towards', 'them', 'both', ';', 'and', 'this', ',', 'with', 'such', 'tenderness', 'towards', 'her', ',', 'such', 'affection', 'for', 'Willoughby', ',', 'and', 'such', 'a', 'conviction', 'of', 'their', 'future', 'happiness', 'in', 'each', 'other', ',', 'that', 'she', 'wept', 'with', 'agony', 'through', 'the', 'whole', 'of', 'it', '.', 'All', 'her', 'impatience', 'to', 'be', 'at', 'home', 'again', 'now', 'returned', ';', 'her', 'mother', 'was', 'dearer', 'to', 'her', 'than', 'ever', ';', 'dearer', 'through', 'the', 'very', 'excess', 'of', 'her', 'mistaken', 'confidence', 'in', 'Willoughby', ',', 'and', 'she', 'was', 'wildly', 'urgent', 'to', 'be', 'gone', '.', 'Elinor', ',', 'unable', 'herself', 'to', 'determine', 'whether', 'it', 'were', 'better', 'for', 'Marianne', 'to', 'be', 'in', 'London', 'or', 'at', 'Barton', ',', 'offered', 'no', 'counsel', 'of', 'her', 'own', 'except', 'of', 'patience', 'till', 'their', 'mother', '’', 's', 'wishes', 'could', 'be', 'known', ';', 'and', 'at', 'length', 'she', 'obtained', 'her', 'sister', '’', 's', 'consent', 'to', 'wait', 'for', 'that', 'knowledge', '.', 'Mrs.', 'Jennings', 'left', 'them', 'earlier', 'than', 'usual', ';', 'for', 'she', 'could', 'not', 'be', 'easy', 'till', 'the', 'Middletons', 'and', 'Palmers', 'were', 'able', 'to', 'grieve', 'as', 'much', 'as', 'herself', ';', 'and', 'positively', 'refusing', 'Elinor', '’', 's', 'offered', 'attendance', ',', 'went', 'out', 'alone', 'for', 'the', 'rest', 'of', 'the', 'morning', '.', 'Elinor', ',', 'with', 'a', 'very', 'heavy', 'heart', ',', 'aware', 'of', 'the', 'pain', 'she', 'was', 'going', 'to', 'communicate', ',', 'and', 'perceiving', ',', 'by', 'Marianne', '’', 's', 'letter', ',', 'how', 'ill', 'she', 'had', 'succeeded', 'in', 'laying', 'any', 'foundation', 'for', 'it', ',', 'then', 'sat', 'down', 'to', 'write', 'her', 'mother', 'an', 'account', 'of', 'what', 'had', 'passed', ',', 'and', 'entreat', 'her', 'directions', 'for', 'the', 'future', ';', 'while', 'Marianne', ',', 'who', 'came', 'into', 'the', 'drawing-room', 'on', 'Mrs.', 'Jennings', '’', 's', 'going', 'away', ',', 'remained', 'fixed', 'at', 'the', 'table', 'where', 'Elinor', 'wrote', ',', 'watching', 'the', 'advancement', 'of', 'her', 'pen', ',', 'grieving', 'over', 'her', 'for', 'the', 'hardship', 'of', 'such', 'a', 'task', ',', 'and', 'grieving', 'still', 'more', 'fondly', 'over', 'its', 'effect', 'on', 'her', 'mother', '.', 'In', 'this', 'manner', 'they', 'had', 'continued', 'about', 'a', 'quarter', 'of', 'an', 'hour', ',', 'when', 'Marianne', ',', 'whose', 'nerves', 'could', 'not', 'then', 'bear', 'any', 'sudden', 'noise', ',', 'was', 'startled', 'by', 'a', 'rap', 'at', 'the', 'door', '.', '“', 'Who', 'can', 'this', 'be', '?', '”', 'cried', 'Elinor', '.', '“', 'So', 'early', 'too', '!', 'I', 'thought', 'we', '_had_', 'been', 'safe.', '”', 'Marianne', 'moved', 'to', 'the', 'window', '.', '“', 'It', 'is', 'Colonel', 'Brandon', '!', '”', 'said', 'she', ',', 'with', 'vexation', '.', '“', 'We', 'are', 'never', 'safe', 'from', '_him_.', '”', '“', 'He', 'will', 'not', 'come', 'in', ',', 'as', 'Mrs.', 'Jennings', 'is', 'from', 'home.', '”', '“', 'I', 'will', 'not', 'trust', 'to', '_that_', ',', '”', 'retreating', 'to', 'her', 'own', 'room', '.', '“', 'A', 'man', 'who', 'has', 'nothing', 'to', 'do', 'with', 'his', 'own', 'time', 'has', 'no', 'conscience', 'in', 'his', 'intrusion', 'on', 'that', 'of', 'others.', '”', 'The', 'event', 'proved', 'her', 'conjecture', 'right', ',', 'though', 'it', 'was', 'founded', 'on', 'injustice', 'and', 'error', ';', 'for', 'Colonel', 'Brandon', '_did_', 'come', 'in', ';', 'and', 'Elinor', ',', 'who', 'was', 'convinced', 'that', 'solicitude', 'for', 'Marianne', 'brought', 'him', 'thither', ',', 'and', 'who', 'saw', '_that_', 'solicitude', 'in', 'his', 'disturbed', 'and', 'melancholy', 'look', ',', 'and', 'in', 'his', 'anxious', 'though', 'brief', 'inquiry', 'after', 'her', ',', 'could', 'not', 'forgive', 'her', 'sister', 'for', 'esteeming', 'him', 'so', 'lightly', '.', '“', 'I', 'met', 'Mrs.', 'Jennings', 'in', 'Bond', 'Street', ',', '”', 'said', 'he', ',', 'after', 'the', 'first', 'salutation', ',', '“', 'and', 'she', 'encouraged', 'me', 'to', 'come', 'on', ';', 'and', 'I', 'was', 'the', 'more', 'easily', 'encouraged', ',', 'because', 'I', 'thought', 'it', 'probable', 'that', 'I', 'might', 'find', 'you', 'alone', ',', 'which', 'I', 'was', 'very', 'desirous', 'of', 'doing', '.', 'My', 'object—my', 'wish—my', 'sole', 'wish', 'in', 'desiring', 'it—I', 'hope', ',', 'I', 'believe', 'it', 'is—is', 'to', 'be', 'a', 'means', 'of', 'giving', 'comfort', ';', '—no', ',', 'I', 'must', 'not', 'say', 'comfort—not', 'present', 'comfort—but', 'conviction', ',', 'lasting', 'conviction', 'to', 'your', 'sister', '’', 's', 'mind', '.', 'My', 'regard', 'for', 'her', ',', 'for', 'yourself', ',', 'for', 'your', 'mother—will', 'you', 'allow', 'me', 'to', 'prove', 'it', ',', 'by', 'relating', 'some', 'circumstances', 'which', 'nothing', 'but', 'a', '_very_', 'sincere', 'regard—nothing', 'but', 'an', 'earnest', 'desire', 'of', 'being', 'useful—I', 'think', 'I', 'am', 'justified—though', 'where', 'so', 'many', 'hours', 'have', 'been', 'spent', 'in', 'convincing', 'myself', 'that', 'I', 'am', 'right', ',', 'is', 'there', 'not', 'some', 'reason', 'to', 'fear', 'I', 'may', 'be', 'wrong', '?', '”', 'He', 'stopped', '.', '“', 'I', 'understand', 'you', ',', '”', 'said', 'Elinor', '.', '“', 'You', 'have', 'something', 'to', 'tell', 'me', 'of', 'Mr.', 'Willoughby', ',', 'that', 'will', 'open', 'his', 'character', 'farther', '.', 'Your', 'telling', 'it', 'will', 'be', 'the', 'greatest', 'act', 'of', 'friendship', 'that', 'can', 'be', 'shown', 'Marianne', '.', '_My_', 'gratitude', 'will', 'be', 'insured', 'immediately', 'by', 'any', 'information', 'tending', 'to', 'that', 'end', ',', 'and', '_hers_', 'must', 'be', 'gained', 'by', 'it', 'in', 'time', '.', 'Pray', ',', 'pray', 'let', 'me', 'hear', 'it.', '”', '“', 'You', 'shall', ';', 'and', ',', 'to', 'be', 'brief', ',', 'when', 'I', 'quitted', 'Barton', 'last', 'October', ',', '—but', 'this', 'will', 'give', 'you', 'no', 'idea—I', 'must', 'go', 'farther', 'back', '.', 'You', 'will', 'find', 'me', 'a', 'very', 'awkward', 'narrator', ',', 'Miss', 'Dashwood', ';', 'I', 'hardly', 'know', 'where', 'to', 'begin', '.', 'A', 'short', 'account', 'of', 'myself', ',', 'I', 'believe', ',', 'will', 'be', 'necessary', ',', 'and', 'it', '_shall_', 'be', 'a', 'short', 'one', '.', 'On', 'such', 'a', 'subject', ',', '”', 'sighing', 'heavily', ',', '“', 'can', 'I', 'have', 'little', 'temptation', 'to', 'be', 'diffuse.', '”', 'He', 'stopt', 'a', 'moment', 'for', 'recollection', ',', 'and', 'then', ',', 'with', 'another', 'sigh', ',', 'went', 'on', '.', '“', 'You', 'have', 'probably', 'entirely', 'forgotten', 'a', 'conversation—', '(', 'it', 'is', 'not', 'to', 'be', 'supposed', 'that', 'it', 'could', 'make', 'any', 'impression', 'on', 'you', ')', '—a', 'conversation', 'between', 'us', 'one', 'evening', 'at', 'Barton', 'Park—it', 'was', 'the', 'evening', 'of', 'a', 'dance—in', 'which', 'I', 'alluded', 'to', 'a', 'lady', 'I', 'had', 'once', 'known', ',', 'as', 'resembling', ',', 'in', 'some', 'measure', ',', 'your', 'sister', 'Marianne.', '”', '“', 'Indeed', ',', '”', 'answered', 'Elinor', ',', '“', 'I', 'have', '_not_', 'forgotten', 'it.', '”', 'He', 'looked', 'pleased', 'by', 'this', 'remembrance', ',', 'and', 'added', ',', '“', 'If', 'I', 'am', 'not', 'deceived', 'by', 'the', 'uncertainty', ',', 'the', 'partiality', 'of', 'tender', 'recollection', ',', 'there', 'is', 'a', 'very', 'strong', 'resemblance', 'between', 'them', ',', 'as', 'well', 'in', 'mind', 'as', 'person', '.', 'The', 'same', 'warmth', 'of', 'heart', ',', 'the', 'same', 'eagerness', 'of', 'fancy', 'and', 'spirits', '.', 'This', 'lady', 'was', 'one', 'of', 'my', 'nearest', 'relations', ',', 'an', 'orphan', 'from', 'her', 'infancy', ',', 'and', 'under', 'the', 'guardianship', 'of', 'my', 'father', '.', 'Our', 'ages', 'were', 'nearly', 'the', 'same', ',', 'and', 'from', 'our', 'earliest', 'years', 'we', 'were', 'playfellows', 'and', 'friends', '.', 'I', 'can', 'not', 'remember', 'the', 'time', 'when', 'I', 'did', 'not', 'love', 'Eliza', ';', 'and', 'my', 'affection', 'for', 'her', ',', 'as', 'we', 'grew', 'up', ',', 'was', 'such', ',', 'as', 'perhaps', ',', 'judging', 'from', 'my', 'present', 'forlorn', 'and', 'cheerless', 'gravity', ',', 'you', 'might', 'think', 'me', 'incapable', 'of', 'having', 'ever', 'felt', '.', 'Hers', ',', 'for', 'me', ',', 'was', ',', 'I', 'believe', ',', 'fervent', 'as', 'the', 'attachment', 'of', 'your', 'sister', 'to', 'Mr.', 'Willoughby', 'and', 'it', 'was', ',', 'though', 'from', 'a', 'different', 'cause', ',', 'no', 'less', 'unfortunate', '.', 'At', 'seventeen', 'she', 'was', 'lost', 'to', 'me', 'for', 'ever', '.', 'She', 'was', 'married—married', 'against', 'her', 'inclination', 'to', 'my', 'brother', '.', 'Her', 'fortune', 'was', 'large', ',', 'and', 'our', 'family', 'estate', 'much', 'encumbered', '.', 'And', 'this', ',', 'I', 'fear', ',', 'is', 'all', 'that', 'can', 'be', 'said', 'for', 'the', 'conduct', 'of', 'one', ',', 'who', 'was', 'at', 'once', 'her', 'uncle', 'and', 'guardian', '.', 'My', 'brother', 'did', 'not', 'deserve', 'her', ';', 'he', 'did', 'not', 'even', 'love', 'her', '.', 'I', 'had', 'hoped', 'that', 'her', 'regard', 'for', 'me', 'would', 'support', 'her', 'under', 'any', 'difficulty', ',', 'and', 'for', 'some', 'time', 'it', 'did', ';', 'but', 'at', 'last', 'the', 'misery', 'of', 'her', 'situation', ',', 'for', 'she', 'experienced', 'great', 'unkindness', ',', 'overcame', 'all', 'her', 'resolution', ',', 'and', 'though', 'she', 'had', 'promised', 'me', 'that', 'nothing—but', 'how', 'blindly', 'I', 'relate', '!', 'I', 'have', 'never', 'told', 'you', 'how', 'this', 'was', 'brought', 'on', '.', 'We', 'were', 'within', 'a', 'few', 'hours', 'of', 'eloping', 'together', 'for', 'Scotland', '.', 'The', 'treachery', ',', 'or', 'the', 'folly', ',', 'of', 'my', 'cousin', '’', 's', 'maid', 'betrayed', 'us', '.', 'I', 'was', 'banished', 'to', 'the', 'house', 'of', 'a', 'relation', 'far', 'distant', ',', 'and', 'she', 'was', 'allowed', 'no', 'liberty', ',', 'no', 'society', ',', 'no', 'amusement', ',', 'till', 'my', 'father', '’', 's', 'point', 'was', 'gained', '.', 'I', 'had', 'depended', 'on', 'her', 'fortitude', 'too', 'far', ',', 'and', 'the', 'blow', 'was', 'a', 'severe', 'one—but', 'had', 'her', 'marriage', 'been', 'happy', ',', 'so', 'young', 'as', 'I', 'then', 'was', ',', 'a', 'few', 'months', 'must', 'have', 'reconciled', 'me', 'to', 'it', ',', 'or', 'at', 'least', 'I', 'should', 'not', 'have', 'now', 'to', 'lament', 'it', '.', 'This', 'however', 'was', 'not', 'the', 'case', '.', 'My', 'brother', 'had', 'no', 'regard', 'for', 'her', ';', 'his', 'pleasures', 'were', 'not', 'what', 'they', 'ought', 'to', 'have', 'been', ',', 'and', 'from', 'the', 'first', 'he', 'treated', 'her', 'unkindly', '.', 'The', 'consequence', 'of', 'this', ',', 'upon', 'a', 'mind', 'so', 'young', ',', 'so', 'lively', ',', 'so', 'inexperienced', 'as', 'Mrs.', 'Brandon', '’', 's', ',', 'was', 'but', 'too', 'natural', '.', 'She', 'resigned', 'herself', 'at', 'first', 'to', 'all', 'the', 'misery', 'of', 'her', 'situation', ';', 'and', 'happy', 'had', 'it', 'been', 'if', 'she', 'had', 'not', 'lived', 'to', 'overcome', 'those', 'regrets', 'which', 'the', 'remembrance', 'of', 'me', 'occasioned', '.', 'But', 'can', 'we', 'wonder', 'that', ',', 'with', 'such', 'a', 'husband', 'to', 'provoke', 'inconstancy', ',', 'and', 'without', 'a', 'friend', 'to', 'advise', 'or', 'restrain', 'her', '(', 'for', 'my', 'father', 'lived', 'only', 'a', 'few', 'months', 'after', 'their', 'marriage', ',', 'and', 'I', 'was', 'with', 'my', 'regiment', 'in', 'the', 'East', 'Indies', ')', 'she', 'should', 'fall', '?', 'Had', 'I', 'remained', 'in', 'England', ',', 'perhaps—but', 'I', 'meant', 'to', 'promote', 'the', 'happiness', 'of', 'both', 'by', 'removing', 'from', 'her', 'for', 'years', ',', 'and', 'for', 'that', 'purpose', 'had', 'procured', 'my', 'exchange', '.', 'The', 'shock', 'which', 'her', 'marriage', 'had', 'given', 'me', ',', '”', 'he', 'continued', ',', 'in', 'a', 'voice', 'of', 'great', 'agitation', ',', '“', 'was', 'of', 'trifling', 'weight—was', 'nothing', 'to', 'what', 'I', 'felt', 'when', 'I', 'heard', ',', 'about', 'two', 'years', 'afterwards', ',', 'of', 'her', 'divorce', '.', 'It', 'was', '_that_', 'which', 'threw', 'this', 'gloom', ',', '—even', 'now', 'the', 'recollection', 'of', 'what', 'I', 'suffered—', '”', 'He', 'could', 'say', 'no', 'more', ',', 'and', 'rising', 'hastily', 'walked', 'for', 'a', 'few', 'minutes', 'about', 'the', 'room', '.', 'Elinor', ',', 'affected', 'by', 'his', 'relation', ',', 'and', 'still', 'more', 'by', 'his', 'distress', ',', 'could', 'not', 'speak', '.', 'He', 'saw', 'her', 'concern', ',', 'and', 'coming', 'to', 'her', ',', 'took', 'her', 'hand', ',', 'pressed', 'it', ',', 'and', 'kissed', 'it', 'with', 'grateful', 'respect', '.', 'A', 'few', 'minutes', 'more', 'of', 'silent', 'exertion', 'enabled', 'him', 'to', 'proceed', 'with', 'composure', '.', '“', 'It', 'was', 'nearly', 'three', 'years', 'after', 'this', 'unhappy', 'period', 'before', 'I', 'returned', 'to', 'England', '.', 'My', 'first', 'care', ',', 'when', 'I', '_did_', 'arrive', ',', 'was', 'of', 'course', 'to', 'seek', 'for', 'her', ';', 'but', 'the', 'search', 'was', 'as', 'fruitless', 'as', 'it', 'was', 'melancholy', '.', 'I', 'could', 'not', 'trace', 'her', 'beyond', 'her', 'first', 'seducer', ',', 'and', 'there', 'was', 'every', 'reason', 'to', 'fear', 'that', 'she', 'had', 'removed', 'from', 'him', 'only', 'to', 'sink', 'deeper', 'in', 'a', 'life', 'of', 'sin', '.', 'Her', 'legal', 'allowance', 'was', 'not', 'adequate', 'to', 'her', 'fortune', ',', 'nor', 'sufficient', 'for', 'her', 'comfortable', 'maintenance', ',', 'and', 'I', 'learnt', 'from', 'my', 'brother', 'that', 'the', 'power', 'of', 'receiving', 'it', 'had', 'been', 'made', 'over', 'some', 'months', 'before', 'to', 'another', 'person', '.', 'He', 'imagined', ',', 'and', 'calmly', 'could', 'he', 'imagine', 'it', ',', 'that', 'her', 'extravagance', ',', 'and', 'consequent', 'distress', ',', 'had', 'obliged', 'her', 'to', 'dispose', 'of', 'it', 'for', 'some', 'immediate', 'relief', '.', 'At', 'last', ',', 'however', ',', 'and', 'after', 'I', 'had', 'been', 'six', 'months', 'in', 'England', ',', 'I', '_did_', 'find', 'her', '.', 'Regard', 'for', 'a', 'former', 'servant', 'of', 'my', 'own', ',', 'who', 'had', 'since', 'fallen', 'into', 'misfortune', ',', 'carried', 'me', 'to', 'visit', 'him', 'in', 'a', 'spunging-house', ',', 'where', 'he', 'was', 'confined', 'for', 'debt', ';', 'and', 'there', ',', 'in', 'the', 'same', 'house', ',', 'under', 'a', 'similar', 'confinement', ',', 'was', 'my', 'unfortunate', 'sister', '.', 'So', 'altered—so', 'faded—worn', 'down', 'by', 'acute', 'suffering', 'of', 'every', 'kind', '!', 'hardly', 'could', 'I', 'believe', 'the', 'melancholy', 'and', 'sickly', 'figure', 'before', 'me', ',', 'to', 'be', 'the', 'remains', 'of', 'the', 'lovely', ',', 'blooming', ',', 'healthful', 'girl', ',', 'on', 'whom', 'I', 'had', 'once', 'doted', '.', 'What', 'I', 'endured', 'in', 'so', 'beholding', 'her—but', 'I', 'have', 'no', 'right', 'to', 'wound', 'your', 'feelings', 'by', 'attempting', 'to', 'describe', 'it—I', 'have', 'pained', 'you', 'too', 'much', 'already', '.', 'That', 'she', 'was', ',', 'to', 'all', 'appearance', ',', 'in', 'the', 'last', 'stage', 'of', 'a', 'consumption', ',', 'was—yes', ',', 'in', 'such', 'a', 'situation', 'it', 'was', 'my', 'greatest', 'comfort', '.', 'Life', 'could', 'do', 'nothing', 'for', 'her', ',', 'beyond', 'giving', 'time', 'for', 'a', 'better', 'preparation', 'for', 'death', ';', 'and', 'that', 'was', 'given', '.', 'I', 'saw', 'her', 'placed', 'in', 'comfortable', 'lodgings', ',', 'and', 'under', 'proper', 'attendants', ';', 'I', 'visited', 'her', 'every', 'day', 'during', 'the', 'rest', 'of', 'her', 'short', 'life', ':', 'I', 'was', 'with', 'her', 'in', 'her', 'last', 'moments.', '”', 'Again', 'he', 'stopped', 'to', 'recover', 'himself', ';', 'and', 'Elinor', 'spoke', 'her', 'feelings', 'in', 'an', 'exclamation', 'of', 'tender', 'concern', ',', 'at', 'the', 'fate', 'of', 'his', 'unfortunate', 'friend', '.', '“', 'Your', 'sister', ',', 'I', 'hope', ',', 'can', 'not', 'be', 'offended', ',', '”', 'said', 'he', ',', '“', 'by', 'the', 'resemblance', 'I', 'have', 'fancied', 'between', 'her', 'and', 'my', 'poor', 'disgraced', 'relation', '.', 'Their', 'fates', ',', 'their', 'fortunes', ',', 'can', 'not', 'be', 'the', 'same', ';', 'and', 'had', 'the', 'natural', 'sweet', 'disposition', 'of', 'the', 'one', 'been', 'guarded', 'by', 'a', 'firmer', 'mind', ',', 'or', 'a', 'happier', 'marriage', ',', 'she', 'might', 'have', 'been', 'all', 'that', 'you', 'will', 'live', 'to', 'see', 'the', 'other', 'be', '.', 'But', 'to', 'what', 'does', 'all', 'this', 'lead', '?', 'I', 'seem', 'to', 'have', 'been', 'distressing', 'you', 'for', 'nothing', '.', 'Ah', '!', 'Miss', 'Dashwood—a', 'subject', 'such', 'as', 'this—untouched', 'for', 'fourteen', 'years—it', 'is', 'dangerous', 'to', 'handle', 'it', 'at', 'all', '!', 'I', '_will_', 'be', 'more', 'collected—more', 'concise', '.', 'She', 'left', 'to', 'my', 'care', 'her', 'only', 'child', ',', 'a', 'little', 'girl', ',', 'the', 'offspring', 'of', 'her', 'first', 'guilty', 'connection', ',', 'who', 'was', 'then', 'about', 'three', 'years', 'old', '.', 'She', 'loved', 'the', 'child', ',', 'and', 'had', 'always', 'kept', 'it', 'with', 'her', '.', 'It', 'was', 'a', 'valued', ',', 'a', 'precious', 'trust', 'to', 'me', ';', 'and', 'gladly', 'would', 'I', 'have', 'discharged', 'it', 'in', 'the', 'strictest', 'sense', ',', 'by', 'watching', 'over', 'her', 'education', 'myself', ',', 'had', 'the', 'nature', 'of', 'our', 'situations', 'allowed', 'it', ';', 'but', 'I', 'had', 'no', 'family', ',', 'no', 'home', ';', 'and', 'my', 'little', 'Eliza', 'was', 'therefore', 'placed', 'at', 'school', '.', 'I', 'saw', 'her', 'there', 'whenever', 'I', 'could', ',', 'and', 'after', 'the', 'death', 'of', 'my', 'brother', ',', '(', 'which', 'happened', 'about', 'five', 'years', 'ago', ',', 'and', 'which', 'left', 'to', 'me', 'the', 'possession', 'of', 'the', 'family', 'property', ',', ')', 'she', 'visited', 'me', 'at', 'Delaford', '.', 'I', 'called', 'her', 'a', 'distant', 'relation', ';', 'but', 'I', 'am', 'well', 'aware', 'that', 'I', 'have', 'in', 'general', 'been', 'suspected', 'of', 'a', 'much', 'nearer', 'connection', 'with', 'her', '.', 'It', 'is', 'now', 'three', 'years', 'ago', '(', 'she', 'had', 'just', 'reached', 'her', 'fourteenth', 'year', ',', ')', 'that', 'I', 'removed', 'her', 'from', 'school', ',', 'to', 'place', 'her', 'under', 'the', 'care', 'of', 'a', 'very', 'respectable', 'woman', ',', 'residing', 'in', 'Dorsetshire', ',', 'who', 'had', 'the', 'charge', 'of', 'four', 'or', 'five', 'other', 'girls', 'of', 'about', 'the', 'same', 'time', 'of', 'life', ';', 'and', 'for', 'two', 'years', 'I', 'had', 'every', 'reason', 'to', 'be', 'pleased', 'with', 'her', 'situation', '.', 'But', 'last', 'February', ',', 'almost', 'a', 'twelvemonth', 'back', ',', 'she', 'suddenly', 'disappeared', '.', 'I', 'had', 'allowed', 'her', ',', '(', 'imprudently', ',', 'as', 'it', 'has', 'since', 'turned', 'out', ',', ')', 'at', 'her', 'earnest', 'desire', ',', 'to', 'go', 'to', 'Bath', 'with', 'one', 'of', 'her', 'young', 'friends', ',', 'who', 'was', 'attending', 'her', 'father', 'there', 'for', 'his', 'health', '.', 'I', 'knew', 'him', 'to', 'be', 'a', 'very', 'good', 'sort', 'of', 'man', ',', 'and', 'I', 'thought', 'well', 'of', 'his', 'daughter—better', 'than', 'she', 'deserved', ',', 'for', ',', 'with', 'a', 'most', 'obstinate', 'and', 'ill-judged', 'secrecy', ',', 'she', 'would', 'tell', 'nothing', ',', 'would', 'give', 'no', 'clue', ',', 'though', 'she', 'certainly', 'knew', 'all', '.', 'He', ',', 'her', 'father', ',', 'a', 'well-meaning', ',', 'but', 'not', 'a', 'quick-sighted', 'man', ',', 'could', 'really', ',', 'I', 'believe', ',', 'give', 'no', 'information', ';', 'for', 'he', 'had', 'been', 'generally', 'confined', 'to', 'the', 'house', ',', 'while', 'the', 'girls', 'were', 'ranging', 'over', 'the', 'town', 'and', 'making', 'what', 'acquaintance', 'they', 'chose', ';', 'and', 'he', 'tried', 'to', 'convince', 'me', ',', 'as', 'thoroughly', 'as', 'he', 'was', 'convinced', 'himself', ',', 'of', 'his', 'daughter', '’', 's', 'being', 'entirely', 'unconcerned', 'in', 'the', 'business', '.', 'In', 'short', ',', 'I', 'could', 'learn', 'nothing', 'but', 'that', 'she', 'was', 'gone', ';', 'all', 'the', 'rest', ',', 'for', 'eight', 'long', 'months', ',', 'was', 'left', 'to', 'conjecture', '.', 'What', 'I', 'thought', ',', 'what', 'I', 'feared', ',', 'may', 'be', 'imagined', ';', 'and', 'what', 'I', 'suffered', 'too.', '”', '“', 'Good', 'heavens', '!', '”', 'cried', 'Elinor', ',', '“', 'could', 'it', 'be—could', 'Willoughby', '!', '”', '—', '“', 'The', 'first', 'news', 'that', 'reached', 'me', 'of', 'her', ',', '”', 'he', 'continued', ',', '“', 'came', 'in', 'a', 'letter', 'from', 'herself', ',', 'last', 'October', '.', 'It', 'was', 'forwarded', 'to', 'me', 'from', 'Delaford', ',', 'and', 'I', 'received', 'it', 'on', 'the', 'very', 'morning', 'of', 'our', 'intended', 'party', 'to', 'Whitwell', ';', 'and', 'this', 'was', 'the', 'reason', 'of', 'my', 'leaving', 'Barton', 'so', 'suddenly', ',', 'which', 'I', 'am', 'sure', 'must', 'at', 'the', 'time', 'have', 'appeared', 'strange', 'to', 'every', 'body', ',', 'and', 'which', 'I', 'believe', 'gave', 'offence', 'to', 'some', '.', 'Little', 'did', 'Mr.', 'Willoughby', 'imagine', ',', 'I', 'suppose', ',', 'when', 'his', 'looks', 'censured', 'me', 'for', 'incivility', 'in', 'breaking', 'up', 'the', 'party', ',', 'that', 'I', 'was', 'called', 'away', 'to', 'the', 'relief', 'of', 'one', 'whom', 'he', 'had', 'made', 'poor', 'and', 'miserable', ';', 'but', '_had_', 'he', 'known', 'it', ',', 'what', 'would', 'it', 'have', 'availed', '?', 'Would', 'he', 'have', 'been', 'less', 'gay', 'or', 'less', 'happy', 'in', 'the', 'smiles', 'of', 'your', 'sister', '?', 'No', ',', 'he', 'had', 'already', 'done', 'that', ',', 'which', 'no', 'man', 'who', '_can_', 'feel', 'for', 'another', 'would', 'do', '.', 'He', 'had', 'left', 'the', 'girl', 'whose', 'youth', 'and', 'innocence', 'he', 'had', 'seduced', ',', 'in', 'a', 'situation', 'of', 'the', 'utmost', 'distress', ',', 'with', 'no', 'creditable', 'home', ',', 'no', 'help', ',', 'no', 'friends', ',', 'ignorant', 'of', 'his', 'address', '!', 'He', 'had', 'left', 'her', ',', 'promising', 'to', 'return', ';', 'he', 'neither', 'returned', ',', 'nor', 'wrote', ',', 'nor', 'relieved', 'her.', '”', '“', 'This', 'is', 'beyond', 'every', 'thing', '!', '”', 'exclaimed', 'Elinor', '.', '“', 'His', 'character', 'is', 'now', 'before', 'you', ';', 'expensive', ',', 'dissipated', ',', 'and', 'worse', 'than', 'both', '.', 'Knowing', 'all', 'this', ',', 'as', 'I', 'have', 'now', 'known', 'it', 'many', 'weeks', ',', 'guess', 'what', 'I', 'must', 'have', 'felt', 'on', 'seeing', 'your', 'sister', 'as', 'fond', 'of', 'him', 'as', 'ever', ',', 'and', 'on', 'being', 'assured', 'that', 'she', 'was', 'to', 'marry', 'him', ':', 'guess', 'what', 'I', 'must', 'have', 'felt', 'for', 'all', 'your', 'sakes', '.', 'When', 'I', 'came', 'to', 'you', 'last', 'week', 'and', 'found', 'you', 'alone', ',', 'I', 'came', 'determined', 'to', 'know', 'the', 'truth', ';', 'though', 'irresolute', 'what', 'to', 'do', 'when', 'it', '_was_', 'known', '.', 'My', 'behaviour', 'must', 'have', 'seemed', 'strange', 'to', 'you', 'then', ';', 'but', 'now', 'you', 'will', 'comprehend', 'it', '.', 'To', 'suffer', 'you', 'all', 'to', 'be', 'so', 'deceived', ';', 'to', 'see', 'your', 'sister—but', 'what', 'could', 'I', 'do', '?', 'I', 'had', 'no', 'hope', 'of', 'interfering', 'with', 'success', ';', 'and', 'sometimes', 'I', 'thought', 'your', 'sister', '’', 's', 'influence', 'might', 'yet', 'reclaim', 'him', '.', 'But', 'now', ',', 'after', 'such', 'dishonorable', 'usage', ',', 'who', 'can', 'tell', 'what', 'were', 'his', 'designs', 'on', 'her', '.', 'Whatever', 'they', 'may', 'have', 'been', ',', 'however', ',', 'she', 'may', 'now', ',', 'and', 'hereafter', 'doubtless', '_will_', 'turn', 'with', 'gratitude', 'towards', 'her', 'own', 'condition', ',', 'when', 'she', 'compares', 'it', 'with', 'that', 'of', 'my', 'poor', 'Eliza', ',', 'when', 'she', 'considers', 'the', 'wretched', 'and', 'hopeless', 'situation', 'of', 'this', 'poor', 'girl', ',', 'and', 'pictures', 'her', 'to', 'herself', ',', 'with', 'an', 'affection', 'for', 'him', 'so', 'strong', ',', 'still', 'as', 'strong', 'as', 'her', 'own', ',', 'and', 'with', 'a', 'mind', 'tormented', 'by', 'self-reproach', ',', 'which', 'must', 'attend', 'her', 'through', 'life', '.', 'Surely', 'this', 'comparison', 'must', 'have', 'its', 'use', 'with', 'her', '.', 'She', 'will', 'feel', 'her', 'own', 'sufferings', 'to', 'be', 'nothing', '.', 'They', 'proceed', 'from', 'no', 'misconduct', ',', 'and', 'can', 'bring', 'no', 'disgrace', '.', 'On', 'the', 'contrary', ',', 'every', 'friend', 'must', 'be', 'made', 'still', 'more', 'her', 'friend', 'by', 'them', '.', 'Concern', 'for', 'her', 'unhappiness', ',', 'and', 'respect', 'for', 'her', 'fortitude', 'under', 'it', ',', 'must', 'strengthen', 'every', 'attachment', '.', 'Use', 'your', 'own', 'discretion', ',', 'however', ',', 'in', 'communicating', 'to', 'her', 'what', 'I', 'have', 'told', 'you', '.', 'You', 'must', 'know', 'best', 'what', 'will', 'be', 'its', 'effect', ';', 'but', 'had', 'I', 'not', 'seriously', ',', 'and', 'from', 'my', 'heart', 'believed', 'it', 'might', 'be', 'of', 'service', ',', 'might', 'lessen', 'her', 'regrets', ',', 'I', 'would', 'not', 'have', 'suffered', 'myself', 'to', 'trouble', 'you', 'with', 'this', 'account', 'of', 'my', 'family', 'afflictions', ',', 'with', 'a', 'recital', 'which', 'may', 'seem', 'to', 'have', 'been', 'intended', 'to', 'raise', 'myself', 'at', 'the', 'expense', 'of', 'others.', '”', 'Elinor', '’', 's', 'thanks', 'followed', 'this', 'speech', 'with', 'grateful', 'earnestness', ';', 'attended', 'too', 'with', 'the', 'assurance', 'of', 'her', 'expecting', 'material', 'advantage', 'to', 'Marianne', ',', 'from', 'the', 'communication', 'of', 'what', 'had', 'passed', '.', '“', 'I', 'have', 'been', 'more', 'pained', ',', '”', 'said', 'she', ',', '“', 'by', 'her', 'endeavors', 'to', 'acquit', 'him', 'than', 'by', 'all', 'the', 'rest', ';', 'for', 'it', 'irritates', 'her', 'mind', 'more', 'than', 'the', 'most', 'perfect', 'conviction', 'of', 'his', 'unworthiness', 'can', 'do', '.', 'Now', ',', 'though', 'at', 'first', 'she', 'will', 'suffer', 'much', ',', 'I', 'am', 'sure', 'she', 'will', 'soon', 'become', 'easier', '.', 'Have', 'you', ',', '”', 'she', 'continued', ',', 'after', 'a', 'short', 'silence', ',', '“', 'ever', 'seen', 'Mr.', 'Willoughby', 'since', 'you', 'left', 'him', 'at', 'Barton', '?', '”', '“', 'Yes', ',', '”', 'he', 'replied', 'gravely', ',', '“', 'once', 'I', 'have', '.', 'One', 'meeting', 'was', 'unavoidable.', '”', 'Elinor', ',', 'startled', 'by', 'his', 'manner', ',', 'looked', 'at', 'him', 'anxiously', ',', 'saying', ',', '“', 'What', '?', 'have', 'you', 'met', 'him', 'to—', '”', '“', 'I', 'could', 'meet', 'him', 'no', 'other', 'way', '.', 'Eliza', 'had', 'confessed', 'to', 'me', ',', 'though', 'most', 'reluctantly', ',', 'the', 'name', 'of', 'her', 'lover', ';', 'and', 'when', 'he', 'returned', 'to', 'town', ',', 'which', 'was', 'within', 'a', 'fortnight', 'after', 'myself', ',', 'we', 'met', 'by', 'appointment', ',', 'he', 'to', 'defend', ',', 'I', 'to', 'punish', 'his', 'conduct', '.', 'We', 'returned', 'unwounded', ',', 'and', 'the', 'meeting', ',', 'therefore', ',', 'never', 'got', 'abroad.', '”', 'Elinor', 'sighed', 'over', 'the', 'fancied', 'necessity', 'of', 'this', ';', 'but', 'to', 'a', 'man', 'and', 'a', 'soldier', 'she', 'presumed', 'not', 'to', 'censure', 'it', '.', '“', 'Such', ',', '”', 'said', 'Colonel', 'Brandon', ',', 'after', 'a', 'pause', ',', '“', 'has', 'been', 'the', 'unhappy', 'resemblance', 'between', 'the', 'fate', 'of', 'mother', 'and', 'daughter', '!', 'and', 'so', 'imperfectly', 'have', 'I', 'discharged', 'my', 'trust', '!', '”', '“', 'Is', 'she', 'still', 'in', 'town', '?', '”', '“', 'No', ';', 'as', 'soon', 'as', 'she', 'recovered', 'from', 'her', 'lying-in', ',', 'for', 'I', 'found', 'her', 'near', 'her', 'delivery', ',', 'I', 'removed', 'her', 'and', 'her', 'child', 'into', 'the', 'country', ',', 'and', 'there', 'she', 'remains.', '”', 'Recollecting', ',', 'soon', 'afterwards', ',', 'that', 'he', 'was', 'probably', 'dividing', 'Elinor', 'from', 'her', 'sister', ',', 'he', 'put', 'an', 'end', 'to', 'his', 'visit', ',', 'receiving', 'from', 'her', 'again', 'the', 'same', 'grateful', 'acknowledgments', ',', 'and', 'leaving', 'her', 'full', 'of', 'compassion', 'and', 'esteem', 'for', 'him', '.', 'CHAPTER', 'XXXII', '.', 'When', 'the', 'particulars', 'of', 'this', 'conversation', 'were', 'repeated', 'by', 'Miss', 'Dashwood', 'to', 'her', 'sister', ',', 'as', 'they', 'very', 'soon', 'were', ',', 'the', 'effect', 'on', 'her', 'was', 'not', 'entirely', 'such', 'as', 'the', 'former', 'had', 'hoped', 'to', 'see', '.', 'Not', 'that', 'Marianne', 'appeared', 'to', 'distrust', 'the', 'truth', 'of', 'any', 'part', 'of', 'it', ',', 'for', 'she', 'listened', 'to', 'it', 'all', 'with', 'the', 'most', 'steady', 'and', 'submissive', 'attention', ',', 'made', 'neither', 'objection', 'nor', 'remark', ',', 'attempted', 'no', 'vindication', 'of', 'Willoughby', ',', 'and', 'seemed', 'to', 'show', 'by', 'her', 'tears', 'that', 'she', 'felt', 'it', 'to', 'be', 'impossible', '.', 'But', 'though', 'this', 'behaviour', 'assured', 'Elinor', 'that', 'the', 'conviction', 'of', 'this', 'guilt', '_was_', 'carried', 'home', 'to', 'her', 'mind', ',', 'though', 'she', 'saw', 'with', 'satisfaction', 'the', 'effect', 'of', 'it', ',', 'in', 'her', 'no', 'longer', 'avoiding', 'Colonel', 'Brandon', 'when', 'he', 'called', ',', 'in', 'her', 'speaking', 'to', 'him', ',', 'even', 'voluntarily', 'speaking', ',', 'with', 'a', 'kind', 'of', 'compassionate', 'respect', ',', 'and', 'though', 'she', 'saw', 'her', 'spirits', 'less', 'violently', 'irritated', 'than', 'before', ',', 'she', 'did', 'not', 'see', 'her', 'less', 'wretched', '.', 'Her', 'mind', 'did', 'become', 'settled', ',', 'but', 'it', 'was', 'settled', 'in', 'a', 'gloomy', 'dejection', '.', 'She', 'felt', 'the', 'loss', 'of', 'Willoughby', '’', 's', 'character', 'yet', 'more', 'heavily', 'than', 'she', 'had', 'felt', 'the', 'loss', 'of', 'his', 'heart', ';', 'his', 'seduction', 'and', 'desertion', 'of', 'Miss', 'Williams', ',', 'the', 'misery', 'of', 'that', 'poor', 'girl', ',', 'and', 'the', 'doubt', 'of', 'what', 'his', 'designs', 'might', '_once_', 'have', 'been', 'on', 'herself', ',', 'preyed', 'altogether', 'so', 'much', 'on', 'her', 'spirits', ',', 'that', 'she', 'could', 'not', 'bring', 'herself', 'to', 'speak', 'of', 'what', 'she', 'felt', 'even', 'to', 'Elinor', ';', 'and', ',', 'brooding', 'over', 'her', 'sorrows', 'in', 'silence', ',', 'gave', 'more', 'pain', 'to', 'her', 'sister', 'than', 'could', 'have', 'been', 'communicated', 'by', 'the', 'most', 'open', 'and', 'most', 'frequent', 'confession', 'of', 'them', '.', 'To', 'give', 'the', 'feelings', 'or', 'the', 'language', 'of', 'Mrs.', 'Dashwood', 'on', 'receiving', 'and', 'answering', 'Elinor', '’', 's', 'letter', 'would', 'be', 'only', 'to', 'give', 'a', 'repetition', 'of', 'what', 'her', 'daughters', 'had', 'already', 'felt', 'and', 'said', ';', 'of', 'a', 'disappointment', 'hardly', 'less', 'painful', 'than', 'Marianne', '’', 's', ',', 'and', 'an', 'indignation', 'even', 'greater', 'than', 'Elinor', '’', 's', '.', 'Long', 'letters', 'from', 'her', ',', 'quickly', 'succeeding', 'each', 'other', ',', 'arrived', 'to', 'tell', 'all', 'that', 'she', 'suffered', 'and', 'thought', ';', 'to', 'express', 'her', 'anxious', 'solicitude', 'for', 'Marianne', ',', 'and', 'entreat', 'she', 'would', 'bear', 'up', 'with', 'fortitude', 'under', 'this', 'misfortune', '.', 'Bad', 'indeed', 'must', 'the', 'nature', 'of', 'Marianne', '’', 's', 'affliction', 'be', ',', 'when', 'her', 'mother', 'could', 'talk', 'of', 'fortitude', '!', 'mortifying', 'and', 'humiliating', 'must', 'be', 'the', 'origin', 'of', 'those', 'regrets', ',', 'which', '_she_', 'could', 'wish', 'her', 'not', 'to', 'indulge', '!', 'Against', 'the', 'interest', 'of', 'her', 'own', 'individual', 'comfort', ',', 'Mrs.', 'Dashwood', 'had', 'determined', 'that', 'it', 'would', 'be', 'better', 'for', 'Marianne', 'to', 'be', 'any', 'where', ',', 'at', 'that', 'time', ',', 'than', 'at', 'Barton', ',', 'where', 'every', 'thing', 'within', 'her', 'view', 'would', 'be', 'bringing', 'back', 'the', 'past', 'in', 'the', 'strongest', 'and', 'most', 'afflicting', 'manner', ',', 'by', 'constantly', 'placing', 'Willoughby', 'before', 'her', ',', 'such', 'as', 'she', 'had', 'always', 'seen', 'him', 'there', '.', 'She', 'recommended', 'it', 'to', 'her', 'daughters', ',', 'therefore', ',', 'by', 'all', 'means', 'not', 'to', 'shorten', 'their', 'visit', 'to', 'Mrs.', 'Jennings', ';', 'the', 'length', 'of', 'which', ',', 'though', 'never', 'exactly', 'fixed', ',', 'had', 'been', 'expected', 'by', 'all', 'to', 'comprise', 'at', 'least', 'five', 'or', 'six', 'weeks', '.', 'A', 'variety', 'of', 'occupations', ',', 'of', 'objects', ',', 'and', 'of', 'company', ',', 'which', 'could', 'not', 'be', 'procured', 'at', 'Barton', ',', 'would', 'be', 'inevitable', 'there', ',', 'and', 'might', 'yet', ',', 'she', 'hoped', ',', 'cheat', 'Marianne', ',', 'at', 'times', ',', 'into', 'some', 'interest', 'beyond', 'herself', ',', 'and', 'even', 'into', 'some', 'amusement', ',', 'much', 'as', 'the', 'ideas', 'of', 'both', 'might', 'now', 'be', 'spurned', 'by', 'her', '.', 'From', 'all', 'danger', 'of', 'seeing', 'Willoughby', 'again', ',', 'her', 'mother', 'considered', 'her', 'to', 'be', 'at', 'least', 'equally', 'safe', 'in', 'town', 'as', 'in', 'the', 'country', ',', 'since', 'his', 'acquaintance', 'must', 'now', 'be', 'dropped', 'by', 'all', 'who', 'called', 'themselves', 'her', 'friends', '.', 'Design', 'could', 'never', 'bring', 'them', 'in', 'each', 'other', '’', 's', 'way', ':', 'negligence', 'could', 'never', 'leave', 'them', 'exposed', 'to', 'a', 'surprise', ';', 'and', 'chance', 'had', 'less', 'in', 'its', 'favour', 'in', 'the', 'crowd', 'of', 'London', 'than', 'even', 'in', 'the', 'retirement', 'of', 'Barton', ',', 'where', 'it', 'might', 'force', 'him', 'before', 'her', 'while', 'paying', 'that', 'visit', 'at', 'Allenham', 'on', 'his', 'marriage', ',', 'which', 'Mrs.', 'Dashwood', ',', 'from', 'foreseeing', 'at', 'first', 'as', 'a', 'probable', 'event', ',', 'had', 'brought', 'herself', 'to', 'expect', 'as', 'a', 'certain', 'one', '.', 'She', 'had', 'yet', 'another', 'reason', 'for', 'wishing', 'her', 'children', 'to', 'remain', 'where', 'they', 'were', ';', 'a', 'letter', 'from', 'her', 'son-in-law', 'had', 'told', 'her', 'that', 'he', 'and', 'his', 'wife', 'were', 'to', 'be', 'in', 'town', 'before', 'the', 'middle', 'of', 'February', ',', 'and', 'she', 'judged', 'it', 'right', 'that', 'they', 'should', 'sometimes', 'see', 'their', 'brother', '.', 'Marianne', 'had', 'promised', 'to', 'be', 'guided', 'by', 'her', 'mother', '’', 's', 'opinion', ',', 'and', 'she', 'submitted', 'to', 'it', 'therefore', 'without', 'opposition', ',', 'though', 'it', 'proved', 'perfectly', 'different', 'from', 'what', 'she', 'wished', 'and', 'expected', ',', 'though', 'she', 'felt', 'it', 'to', 'be', 'entirely', 'wrong', ',', 'formed', 'on', 'mistaken', 'grounds', ',', 'and', 'that', 'by', 'requiring', 'her', 'longer', 'continuance', 'in', 'London', 'it', 'deprived', 'her', 'of', 'the', 'only', 'possible', 'alleviation', 'of', 'her', 'wretchedness', ',', 'the', 'personal', 'sympathy', 'of', 'her', 'mother', ',', 'and', 'doomed', 'her', 'to', 'such', 'society', 'and', 'such', 'scenes', 'as', 'must', 'prevent', 'her', 'ever', 'knowing', 'a', 'moment', '’', 's', 'rest', '.', 'But', 'it', 'was', 'a', 'matter', 'of', 'great', 'consolation', 'to', 'her', ',', 'that', 'what', 'brought', 'evil', 'to', 'herself', 'would', 'bring', 'good', 'to', 'her', 'sister', ';', 'and', 'Elinor', ',', 'on', 'the', 'other', 'hand', ',', 'suspecting', 'that', 'it', 'would', 'not', 'be', 'in', 'her', 'power', 'to', 'avoid', 'Edward', 'entirely', ',', 'comforted', 'herself', 'by', 'thinking', ',', 'that', 'though', 'their', 'longer', 'stay', 'would', 'therefore', 'militate', 'against', 'her', 'own', 'happiness', ',', 'it', 'would', 'be', 'better', 'for', 'Marianne', 'than', 'an', 'immediate', 'return', 'into', 'Devonshire', '.', 'Her', 'carefulness', 'in', 'guarding', 'her', 'sister', 'from', 'ever', 'hearing', 'Willoughby', '’', 's', 'name', 'mentioned', ',', 'was', 'not', 'thrown', 'away', '.', 'Marianne', ',', 'though', 'without', 'knowing', 'it', 'herself', ',', 'reaped', 'all', 'its', 'advantage', ';', 'for', 'neither', 'Mrs.', 'Jennings', ',', 'nor', 'Sir', 'John', ',', 'nor', 'even', 'Mrs.', 'Palmer', 'herself', ',', 'ever', 'spoke', 'of', 'him', 'before', 'her', '.', 'Elinor', 'wished', 'that', 'the', 'same', 'forbearance', 'could', 'have', 'extended', 'towards', 'herself', ',', 'but', 'that', 'was', 'impossible', ',', 'and', 'she', 'was', 'obliged', 'to', 'listen', 'day', 'after', 'day', 'to', 'the', 'indignation', 'of', 'them', 'all', '.', 'Sir', 'John', ',', 'could', 'not', 'have', 'thought', 'it', 'possible', '.', '“', 'A', 'man', 'of', 'whom', 'he', 'had', 'always', 'had', 'such', 'reason', 'to', 'think', 'well', '!', 'Such', 'a', 'good-natured', 'fellow', '!', 'He', 'did', 'not', 'believe', 'there', 'was', 'a', 'bolder', 'rider', 'in', 'England', '!', 'It', 'was', 'an', 'unaccountable', 'business', '.', 'He', 'wished', 'him', 'at', 'the', 'devil', 'with', 'all', 'his', 'heart', '.', 'He', 'would', 'not', 'speak', 'another', 'word', 'to', 'him', ',', 'meet', 'him', 'where', 'he', 'might', ',', 'for', 'all', 'the', 'world', '!', 'No', ',', 'not', 'if', 'it', 'were', 'to', 'be', 'by', 'the', 'side', 'of', 'Barton', 'covert', ',', 'and', 'they', 'were', 'kept', 'watching', 'for', 'two', 'hours', 'together', '.', 'Such', 'a', 'scoundrel', 'of', 'a', 'fellow', '!', 'such', 'a', 'deceitful', 'dog', '!', 'It', 'was', 'only', 'the', 'last', 'time', 'they', 'met', 'that', 'he', 'had', 'offered', 'him', 'one', 'of', 'Folly', '’', 's', 'puppies', '!', 'and', 'this', 'was', 'the', 'end', 'of', 'it', '!', '”', 'Mrs.', 'Palmer', ',', 'in', 'her', 'way', ',', 'was', 'equally', 'angry', '.', '“', 'She', 'was', 'determined', 'to', 'drop', 'his', 'acquaintance', 'immediately', ',', 'and', 'she', 'was', 'very', 'thankful', 'that', 'she', 'had', 'never', 'been', 'acquainted', 'with', 'him', 'at', 'all', '.', 'She', 'wished', 'with', 'all', 'her', 'heart', 'Combe', 'Magna', 'was', 'not', 'so', 'near', 'Cleveland', ';', 'but', 'it', 'did', 'not', 'signify', ',', 'for', 'it', 'was', 'a', 'great', 'deal', 'too', 'far', 'off', 'to', 'visit', ';', 'she', 'hated', 'him', 'so', 'much', 'that', 'she', 'was', 'resolved', 'never', 'to', 'mention', 'his', 'name', 'again', ',', 'and', 'she', 'should', 'tell', 'everybody', 'she', 'saw', ',', 'how', 'good-for-nothing', 'he', 'was.', '”', 'The', 'rest', 'of', 'Mrs.', 'Palmer', '’', 's', 'sympathy', 'was', 'shown', 'in', 'procuring', 'all', 'the', 'particulars', 'in', 'her', 'power', 'of', 'the', 'approaching', 'marriage', ',', 'and', 'communicating', 'them', 'to', 'Elinor', '.', 'She', 'could', 'soon', 'tell', 'at', 'what', 'coachmaker', '’', 's', 'the', 'new', 'carriage', 'was', 'building', ',', 'by', 'what', 'painter', 'Mr.', 'Willoughby', '’', 's', 'portrait', 'was', 'drawn', ',', 'and', 'at', 'what', 'warehouse', 'Miss', 'Grey', '’', 's', 'clothes', 'might', 'be', 'seen', '.', 'The', 'calm', 'and', 'polite', 'unconcern', 'of', 'Lady', 'Middleton', 'on', 'the', 'occasion', 'was', 'a', 'happy', 'relief', 'to', 'Elinor', '’', 's', 'spirits', ',', 'oppressed', 'as', 'they', 'often', 'were', 'by', 'the', 'clamorous', 'kindness', 'of', 'the', 'others', '.', 'It', 'was', 'a', 'great', 'comfort', 'to', 'her', 'to', 'be', 'sure', 'of', 'exciting', 'no', 'interest', 'in', '_one_', 'person', 'at', 'least', 'among', 'their', 'circle', 'of', 'friends', ':', 'a', 'great', 'comfort', 'to', 'know', 'that', 'there', 'was', '_one_', 'who', 'would', 'meet', 'her', 'without', 'feeling', 'any', 'curiosity', 'after', 'particulars', ',', 'or', 'any', 'anxiety', 'for', 'her', 'sister', '’', 's', 'health', '.', 'Every', 'qualification', 'is', 'raised', 'at', 'times', ',', 'by', 'the', 'circumstances', 'of', 'the', 'moment', ',', 'to', 'more', 'than', 'its', 'real', 'value', ';', 'and', 'she', 'was', 'sometimes', 'worried', 'down', 'by', 'officious', 'condolence', 'to', 'rate', 'good-breeding', 'as', 'more', 'indispensable', 'to', 'comfort', 'than', 'good-nature', '.', 'Lady', 'Middleton', 'expressed', 'her', 'sense', 'of', 'the', 'affair', 'about', 'once', 'every', 'day', ',', 'or', 'twice', ',', 'if', 'the', 'subject', 'occurred', 'very', 'often', ',', 'by', 'saying', ',', '“', 'It', 'is', 'very', 'shocking', ',', 'indeed', '!', '”', 'and', 'by', 'the', 'means', 'of', 'this', 'continual', 'though', 'gentle', 'vent', ',', 'was', 'able', 'not', 'only', 'to', 'see', 'the', 'Miss', 'Dashwoods', 'from', 'the', 'first', 'without', 'the', 'smallest', 'emotion', ',', 'but', 'very', 'soon', 'to', 'see', 'them', 'without', 'recollecting', 'a', 'word', 'of', 'the', 'matter', ';', 'and', 'having', 'thus', 'supported', 'the', 'dignity', 'of', 'her', 'own', 'sex', ',', 'and', 'spoken', 'her', 'decided', 'censure', 'of', 'what', 'was', 'wrong', 'in', 'the', 'other', ',', 'she', 'thought', 'herself', 'at', 'liberty', 'to', 'attend', 'to', 'the', 'interest', 'of', 'her', 'own', 'assemblies', ',', 'and', 'therefore', 'determined', '(', 'though', 'rather', 'against', 'the', 'opinion', 'of', 'Sir', 'John', ')', 'that', 'as', 'Mrs.', 'Willoughby', 'would', 'at', 'once', 'be', 'a', 'woman', 'of', 'elegance', 'and', 'fortune', ',', 'to', 'leave', 'her', 'card', 'with', 'her', 'as', 'soon', 'as', 'she', 'married', '.', 'Colonel', 'Brandon', '’', 's', 'delicate', ',', 'unobtrusive', 'enquiries', 'were', 'never', 'unwelcome', 'to', 'Miss', 'Dashwood', '.', 'He', 'had', 'abundantly', 'earned', 'the', 'privilege', 'of', 'intimate', 'discussion', 'of', 'her', 'sister', '’', 's', 'disappointment', ',', 'by', 'the', 'friendly', 'zeal', 'with', 'which', 'he', 'had', 'endeavoured', 'to', 'soften', 'it', ',', 'and', 'they', 'always', 'conversed', 'with', 'confidence', '.', 'His', 'chief', 'reward', 'for', 'the', 'painful', 'exertion', 'of', 'disclosing', 'past', 'sorrows', 'and', 'present', 'humiliations', ',', 'was', 'given', 'in', 'the', 'pitying', 'eye', 'with', 'which', 'Marianne', 'sometimes', 'observed', 'him', ',', 'and', 'the', 'gentleness', 'of', 'her', 'voice', 'whenever', '(', 'though', 'it', 'did', 'not', 'often', 'happen', ')', 'she', 'was', 'obliged', ',', 'or', 'could', 'oblige', 'herself', 'to', 'speak', 'to', 'him', '.', '_These_', 'assured', 'him', 'that', 'his', 'exertion', 'had', 'produced', 'an', 'increase', 'of', 'good-will', 'towards', 'himself', ',', 'and', '_these_', 'gave', 'Elinor', 'hopes', 'of', 'its', 'being', 'farther', 'augmented', 'hereafter', ';', 'but', 'Mrs.', 'Jennings', ',', 'who', 'knew', 'nothing', 'of', 'all', 'this', ',', 'who', 'knew', 'only', 'that', 'the', 'Colonel', 'continued', 'as', 'grave', 'as', 'ever', ',', 'and', 'that', 'she', 'could', 'neither', 'prevail', 'on', 'him', 'to', 'make', 'the', 'offer', 'himself', ',', 'nor', 'commission', 'her', 'to', 'make', 'it', 'for', 'him', ',', 'began', ',', 'at', 'the', 'end', 'of', 'two', 'days', ',', 'to', 'think', 'that', ',', 'instead', 'of', 'Midsummer', ',', 'they', 'would', 'not', 'be', 'married', 'till', 'Michaelmas', ',', 'and', 'by', 'the', 'end', 'of', 'a', 'week', 'that', 'it', 'would', 'not', 'be', 'a', 'match', 'at', 'all', '.', 'The', 'good', 'understanding', 'between', 'the', 'Colonel', 'and', 'Miss', 'Dashwood', 'seemed', 'rather', 'to', 'declare', 'that', 'the', 'honours', 'of', 'the', 'mulberry-tree', ',', 'the', 'canal', ',', 'and', 'the', 'yew', 'arbour', ',', 'would', 'all', 'be', 'made', 'over', 'to', '_her', ';', '_', 'and', 'Mrs.', 'Jennings', 'had', ',', 'for', 'some', 'time', 'ceased', 'to', 'think', 'at', 'all', 'of', 'Mrs.', 'Ferrars', '.', 'Early', 'in', 'February', ',', 'within', 'a', 'fortnight', 'from', 'the', 'receipt', 'of', 'Willoughby', '’', 's', 'letter', ',', 'Elinor', 'had', 'the', 'painful', 'office', 'of', 'informing', 'her', 'sister', 'that', 'he', 'was', 'married', '.', 'She', 'had', 'taken', 'care', 'to', 'have', 'the', 'intelligence', 'conveyed', 'to', 'herself', ',', 'as', 'soon', 'as', 'it', 'was', 'known', 'that', 'the', 'ceremony', 'was', 'over', ',', 'as', 'she', 'was', 'desirous', 'that', 'Marianne', 'should', 'not', 'receive', 'the', 'first', 'notice', 'of', 'it', 'from', 'the', 'public', 'papers', ',', 'which', 'she', 'saw', 'her', 'eagerly', 'examining', 'every', 'morning', '.', 'She', 'received', 'the', 'news', 'with', 'resolute', 'composure', ';', 'made', 'no', 'observation', 'on', 'it', ',', 'and', 'at', 'first', 'shed', 'no', 'tears', ';', 'but', 'after', 'a', 'short', 'time', 'they', 'would', 'burst', 'out', ',', 'and', 'for', 'the', 'rest', 'of', 'the', 'day', ',', 'she', 'was', 'in', 'a', 'state', 'hardly', 'less', 'pitiable', 'than', 'when', 'she', 'first', 'learnt', 'to', 'expect', 'the', 'event', '.', 'The', 'Willoughbys', 'left', 'town', 'as', 'soon', 'as', 'they', 'were', 'married', ';', 'and', 'Elinor', 'now', 'hoped', ',', 'as', 'there', 'could', 'be', 'no', 'danger', 'of', 'her', 'seeing', 'either', 'of', 'them', ',', 'to', 'prevail', 'on', 'her', 'sister', ',', 'who', 'had', 'never', 'yet', 'left', 'the', 'house', 'since', 'the', 'blow', 'first', 'fell', ',', 'to', 'go', 'out', 'again', 'by', 'degrees', 'as', 'she', 'had', 'done', 'before', '.', 'About', 'this', 'time', 'the', 'two', 'Miss', 'Steeles', ',', 'lately', 'arrived', 'at', 'their', 'cousin', '’', 's', 'house', 'in', 'Bartlett', '’', 's', 'Buildings', ',', 'Holburn', ',', 'presented', 'themselves', 'again', 'before', 'their', 'more', 'grand', 'relations', 'in', 'Conduit', 'and', 'Berkeley', 'Streets', ';', 'and', 'were', 'welcomed', 'by', 'them', 'all', 'with', 'great', 'cordiality', '.', 'Elinor', 'only', 'was', 'sorry', 'to', 'see', 'them', '.', 'Their', 'presence', 'always', 'gave', 'her', 'pain', ',', 'and', 'she', 'hardly', 'knew', 'how', 'to', 'make', 'a', 'very', 'gracious', 'return', 'to', 'the', 'overpowering', 'delight', 'of', 'Lucy', 'in', 'finding', 'her', '_still_', 'in', 'town', '.', '“', 'I', 'should', 'have', 'been', 'quite', 'disappointed', 'if', 'I', 'had', 'not', 'found', 'you', 'here', '_still_', ',', '”', 'said', 'she', 'repeatedly', ',', 'with', 'a', 'strong', 'emphasis', 'on', 'the', 'word', '.', '“', 'But', 'I', 'always', 'thought', 'I', '_should_', '.', 'I', 'was', 'almost', 'sure', 'you', 'would', 'not', 'leave', 'London', 'yet', 'awhile', ';', 'though', 'you', '_told_', 'me', ',', 'you', 'know', ',', 'at', 'Barton', ',', 'that', 'you', 'should', 'not', 'stay', 'above', 'a', '_month_', '.', 'But', 'I', 'thought', ',', 'at', 'the', 'time', ',', 'that', 'you', 'would', 'most', 'likely', 'change', 'your', 'mind', 'when', 'it', 'came', 'to', 'the', 'point', '.', 'It', 'would', 'have', 'been', 'such', 'a', 'great', 'pity', 'to', 'have', 'went', 'away', 'before', 'your', 'brother', 'and', 'sister', 'came', '.', 'And', 'now', 'to', 'be', 'sure', 'you', 'will', 'be', 'in', 'no', '_hurry_', 'to', 'be', 'gone', '.', 'I', 'am', 'amazingly', 'glad', 'you', 'did', 'not', 'keep', 'to', '_your', 'word_.', '”', 'Elinor', 'perfectly', 'understood', 'her', ',', 'and', 'was', 'forced', 'to', 'use', 'all', 'her', 'self-command', 'to', 'make', 'it', 'appear', 'that', 'she', 'did', '_not_', '.', '“', 'Well', ',', 'my', 'dear', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'and', 'how', 'did', 'you', 'travel', '?', '”', '“', 'Not', 'in', 'the', 'stage', ',', 'I', 'assure', 'you', ',', '”', 'replied', 'Miss', 'Steele', ',', 'with', 'quick', 'exultation', ';', '“', 'we', 'came', 'post', 'all', 'the', 'way', ',', 'and', 'had', 'a', 'very', 'smart', 'beau', 'to', 'attend', 'us', '.', 'Dr.', 'Davies', 'was', 'coming', 'to', 'town', ',', 'and', 'so', 'we', 'thought', 'we', '’', 'd', 'join', 'him', 'in', 'a', 'post-chaise', ';', 'and', 'he', 'behaved', 'very', 'genteelly', ',', 'and', 'paid', 'ten', 'or', 'twelve', 'shillings', 'more', 'than', 'we', 'did.', '”', '“', 'Oh', ',', 'oh', '!', '”', 'cried', 'Mrs.', 'Jennings', ';', '“', 'very', 'pretty', ',', 'indeed', '!', 'and', 'the', 'Doctor', 'is', 'a', 'single', 'man', ',', 'I', 'warrant', 'you.', '”', '“', 'There', 'now', ',', '”', 'said', 'Miss', 'Steele', ',', 'affectedly', 'simpering', ',', '“', 'everybody', 'laughs', 'at', 'me', 'so', 'about', 'the', 'Doctor', ',', 'and', 'I', 'can', 'not', 'think', 'why', '.', 'My', 'cousins', 'say', 'they', 'are', 'sure', 'I', 'have', 'made', 'a', 'conquest', ';', 'but', 'for', 'my', 'part', 'I', 'declare', 'I', 'never', 'think', 'about', 'him', 'from', 'one', 'hour', '’', 's', 'end', 'to', 'another', '.', '‘', 'Lord', '!', 'here', 'comes', 'your', 'beau', ',', 'Nancy', ',', '’', 'my', 'cousin', 'said', 't', '’', 'other', 'day', ',', 'when', 'she', 'saw', 'him', 'crossing', 'the', 'street', 'to', 'the', 'house', '.', 'My', 'beau', ',', 'indeed', '!', 'said', 'I—I', 'can', 'not', 'think', 'who', 'you', 'mean', '.', 'The', 'Doctor', 'is', 'no', 'beau', 'of', 'mine.', '”', '“', 'Aye', ',', 'aye', ',', 'that', 'is', 'very', 'pretty', 'talking—but', 'it', 'won', '’', 't', 'do—the', 'Doctor', 'is', 'the', 'man', ',', 'I', 'see.', '”', '“', 'No', ',', 'indeed', '!', '”', 'replied', 'her', 'cousin', ',', 'with', 'affected', 'earnestness', ',', '“', 'and', 'I', 'beg', 'you', 'will', 'contradict', 'it', ',', 'if', 'you', 'ever', 'hear', 'it', 'talked', 'of.', '”', 'Mrs.', 'Jennings', 'directly', 'gave', 'her', 'the', 'gratifying', 'assurance', 'that', 'she', 'certainly', 'would', '_not_', ',', 'and', 'Miss', 'Steele', 'was', 'made', 'completely', 'happy', '.', '“', 'I', 'suppose', 'you', 'will', 'go', 'and', 'stay', 'with', 'your', 'brother', 'and', 'sister', ',', 'Miss', 'Dashwood', ',', 'when', 'they', 'come', 'to', 'town', ',', '”', 'said', 'Lucy', ',', 'returning', ',', 'after', 'a', 'cessation', 'of', 'hostile', 'hints', ',', 'to', 'the', 'charge', '.', '“', 'No', ',', 'I', 'do', 'not', 'think', 'we', 'shall.', '”', '“', 'Oh', ',', 'yes', ',', 'I', 'dare', 'say', 'you', 'will.', '”', 'Elinor', 'would', 'not', 'humour', 'her', 'by', 'farther', 'opposition', '.', '“', 'What', 'a', 'charming', 'thing', 'it', 'is', 'that', 'Mrs.', 'Dashwood', 'can', 'spare', 'you', 'both', 'for', 'so', 'long', 'a', 'time', 'together', '!', '”', '“', 'Long', 'a', 'time', ',', 'indeed', '!', '”', 'interposed', 'Mrs.', 'Jennings', '.', '“', 'Why', ',', 'their', 'visit', 'is', 'but', 'just', 'begun', '!', '”', 'Lucy', 'was', 'silenced', '.', '“', 'I', 'am', 'sorry', 'we', 'can', 'not', 'see', 'your', 'sister', ',', 'Miss', 'Dashwood', ',', '”', 'said', 'Miss', 'Steele', '.', '“', 'I', 'am', 'sorry', 'she', 'is', 'not', 'well—', '”', 'for', 'Marianne', 'had', 'left', 'the', 'room', 'on', 'their', 'arrival', '.', '“', 'You', 'are', 'very', 'good', '.', 'My', 'sister', 'will', 'be', 'equally', 'sorry', 'to', 'miss', 'the', 'pleasure', 'of', 'seeing', 'you', ';', 'but', 'she', 'has', 'been', 'very', 'much', 'plagued', 'lately', 'with', 'nervous', 'head-aches', ',', 'which', 'make', 'her', 'unfit', 'for', 'company', 'or', 'conversation.', '”', '“', 'Oh', ',', 'dear', ',', 'that', 'is', 'a', 'great', 'pity', '!', 'but', 'such', 'old', 'friends', 'as', 'Lucy', 'and', 'me', '!', '—I', 'think', 'she', 'might', 'see', '_us', ';', '_', 'and', 'I', 'am', 'sure', 'we', 'would', 'not', 'speak', 'a', 'word.', '”', 'Elinor', ',', 'with', 'great', 'civility', ',', 'declined', 'the', 'proposal', '.', 'Her', 'sister', 'was', 'perhaps', 'laid', 'down', 'upon', 'the', 'bed', ',', 'or', 'in', 'her', 'dressing', 'gown', ',', 'and', 'therefore', 'not', 'able', 'to', 'come', 'to', 'them', '.', '“', 'Oh', ',', 'if', 'that', '’', 's', 'all', ',', '”', 'cried', 'Miss', 'Steele', ',', '“', 'we', 'can', 'just', 'as', 'well', 'go', 'and', 'see', '_her_.', '”', 'Elinor', 'began', 'to', 'find', 'this', 'impertinence', 'too', 'much', 'for', 'her', 'temper', ';', 'but', 'she', 'was', 'saved', 'the', 'trouble', 'of', 'checking', 'it', ',', 'by', 'Lucy', '’', 's', 'sharp', 'reprimand', ',', 'which', 'now', ',', 'as', 'on', 'many', 'occasions', ',', 'though', 'it', 'did', 'not', 'give', 'much', 'sweetness', 'to', 'the', 'manners', 'of', 'one', 'sister', ',', 'was', 'of', 'advantage', 'in', 'governing', 'those', 'of', 'the', 'other', '.', 'CHAPTER', 'XXXIII', '.', 'After', 'some', 'opposition', ',', 'Marianne', 'yielded', 'to', 'her', 'sister', '’', 's', 'entreaties', ',', 'and', 'consented', 'to', 'go', 'out', 'with', 'her', 'and', 'Mrs.', 'Jennings', 'one', 'morning', 'for', 'half', 'an', 'hour', '.', 'She', 'expressly', 'conditioned', ',', 'however', ',', 'for', 'paying', 'no', 'visits', ',', 'and', 'would', 'do', 'no', 'more', 'than', 'accompany', 'them', 'to', 'Gray', '’', 's', 'in', 'Sackville', 'Street', ',', 'where', 'Elinor', 'was', 'carrying', 'on', 'a', 'negotiation', 'for', 'the', 'exchange', 'of', 'a', 'few', 'old-fashioned', 'jewels', 'of', 'her', 'mother', '.', 'When', 'they', 'stopped', 'at', 'the', 'door', ',', 'Mrs.', 'Jennings', 'recollected', 'that', 'there', 'was', 'a', 'lady', 'at', 'the', 'other', 'end', 'of', 'the', 'street', 'on', 'whom', 'she', 'ought', 'to', 'call', ';', 'and', 'as', 'she', 'had', 'no', 'business', 'at', 'Gray', '’', 's', ',', 'it', 'was', 'resolved', ',', 'that', 'while', 'her', 'young', 'friends', 'transacted', 'their', '’', 's', ',', 'she', 'should', 'pay', 'her', 'visit', 'and', 'return', 'for', 'them', '.', 'On', 'ascending', 'the', 'stairs', ',', 'the', 'Miss', 'Dashwoods', 'found', 'so', 'many', 'people', 'before', 'them', 'in', 'the', 'room', ',', 'that', 'there', 'was', 'not', 'a', 'person', 'at', 'liberty', 'to', 'tend', 'to', 'their', 'orders', ';', 'and', 'they', 'were', 'obliged', 'to', 'wait', '.', 'All', 'that', 'could', 'be', 'done', 'was', ',', 'to', 'sit', 'down', 'at', 'that', 'end', 'of', 'the', 'counter', 'which', 'seemed', 'to', 'promise', 'the', 'quickest', 'succession', ';', 'one', 'gentleman', 'only', 'was', 'standing', 'there', ',', 'and', 'it', 'is', 'probable', 'that', 'Elinor', 'was', 'not', 'without', 'hope', 'of', 'exciting', 'his', 'politeness', 'to', 'a', 'quicker', 'despatch', '.', 'But', 'the', 'correctness', 'of', 'his', 'eye', ',', 'and', 'the', 'delicacy', 'of', 'his', 'taste', ',', 'proved', 'to', 'be', 'beyond', 'his', 'politeness', '.', 'He', 'was', 'giving', 'orders', 'for', 'a', 'toothpick-case', 'for', 'himself', ',', 'and', 'till', 'its', 'size', ',', 'shape', ',', 'and', 'ornaments', 'were', 'determined', ',', 'all', 'of', 'which', ',', 'after', 'examining', 'and', 'debating', 'for', 'a', 'quarter', 'of', 'an', 'hour', 'over', 'every', 'toothpick-case', 'in', 'the', 'shop', ',', 'were', 'finally', 'arranged', 'by', 'his', 'own', 'inventive', 'fancy', ',', 'he', 'had', 'no', 'leisure', 'to', 'bestow', 'any', 'other', 'attention', 'on', 'the', 'two', 'ladies', ',', 'than', 'what', 'was', 'comprised', 'in', 'three', 'or', 'four', 'very', 'broad', 'stares', ';', 'a', 'kind', 'of', 'notice', 'which', 'served', 'to', 'imprint', 'on', 'Elinor', 'the', 'remembrance', 'of', 'a', 'person', 'and', 'face', ',', 'of', 'strong', ',', 'natural', ',', 'sterling', 'insignificance', ',', 'though', 'adorned', 'in', 'the', 'first', 'style', 'of', 'fashion', '.', 'Marianne', 'was', 'spared', 'from', 'the', 'troublesome', 'feelings', 'of', 'contempt', 'and', 'resentment', ',', 'on', 'this', 'impertinent', 'examination', 'of', 'their', 'features', ',', 'and', 'on', 'the', 'puppyism', 'of', 'his', 'manner', 'in', 'deciding', 'on', 'all', 'the', 'different', 'horrors', 'of', 'the', 'different', 'toothpick-cases', 'presented', 'to', 'his', 'inspection', ',', 'by', 'remaining', 'unconscious', 'of', 'it', 'all', ';', 'for', 'she', 'was', 'as', 'well', 'able', 'to', 'collect', 'her', 'thoughts', 'within', 'herself', ',', 'and', 'be', 'as', 'ignorant', 'of', 'what', 'was', 'passing', 'around', 'her', ',', 'in', 'Mr.', 'Gray', '’', 's', 'shop', ',', 'as', 'in', 'her', 'own', 'bedroom', '.', 'At', 'last', 'the', 'affair', 'was', 'decided', '.', 'The', 'ivory', ',', 'the', 'gold', ',', 'and', 'the', 'pearls', ',', 'all', 'received', 'their', 'appointment', ',', 'and', 'the', 'gentleman', 'having', 'named', 'the', 'last', 'day', 'on', 'which', 'his', 'existence', 'could', 'be', 'continued', 'without', 'the', 'possession', 'of', 'the', 'toothpick-case', ',', 'drew', 'on', 'his', 'gloves', 'with', 'leisurely', 'care', ',', 'and', 'bestowing', 'another', 'glance', 'on', 'the', 'Miss', 'Dashwoods', ',', 'but', 'such', 'a', 'one', 'as', 'seemed', 'rather', 'to', 'demand', 'than', 'express', 'admiration', ',', 'walked', 'off', 'with', 'a', 'happy', 'air', 'of', 'real', 'conceit', 'and', 'affected', 'indifference', '.', 'Elinor', 'lost', 'no', 'time', 'in', 'bringing', 'her', 'business', 'forward', ',', 'was', 'on', 'the', 'point', 'of', 'concluding', 'it', ',', 'when', 'another', 'gentleman', 'presented', 'himself', 'at', 'her', 'side', '.', 'She', 'turned', 'her', 'eyes', 'towards', 'his', 'face', ',', 'and', 'found', 'him', 'with', 'some', 'surprise', 'to', 'be', 'her', 'brother', '.', 'Their', 'affection', 'and', 'pleasure', 'in', 'meeting', 'was', 'just', 'enough', 'to', 'make', 'a', 'very', 'creditable', 'appearance', 'in', 'Mr.', 'Gray', '’', 's', 'shop', '.', 'John', 'Dashwood', 'was', 'really', 'far', 'from', 'being', 'sorry', 'to', 'see', 'his', 'sisters', 'again', ';', 'it', 'rather', 'gave', 'them', 'satisfaction', ';', 'and', 'his', 'inquiries', 'after', 'their', 'mother', 'were', 'respectful', 'and', 'attentive', '.', 'Elinor', 'found', 'that', 'he', 'and', 'Fanny', 'had', 'been', 'in', 'town', 'two', 'days', '.', '“', 'I', 'wished', 'very', 'much', 'to', 'call', 'upon', 'you', 'yesterday', ',', '”', 'said', 'he', ',', '“', 'but', 'it', 'was', 'impossible', ',', 'for', 'we', 'were', 'obliged', 'to', 'take', 'Harry', 'to', 'see', 'the', 'wild', 'beasts', 'at', 'Exeter', 'Exchange', ';', 'and', 'we', 'spent', 'the', 'rest', 'of', 'the', 'day', 'with', 'Mrs.', 'Ferrars', '.', 'Harry', 'was', 'vastly', 'pleased', '.', '_This_', 'morning', 'I', 'had', 'fully', 'intended', 'to', 'call', 'on', 'you', ',', 'if', 'I', 'could', 'possibly', 'find', 'a', 'spare', 'half', 'hour', ',', 'but', 'one', 'has', 'always', 'so', 'much', 'to', 'do', 'on', 'first', 'coming', 'to', 'town', '.', 'I', 'am', 'come', 'here', 'to', 'bespeak', 'Fanny', 'a', 'seal', '.', 'But', 'tomorrow', 'I', 'think', 'I', 'shall', 'certainly', 'be', 'able', 'to', 'call', 'in', 'Berkeley', 'Street', ',', 'and', 'be', 'introduced', 'to', 'your', 'friend', 'Mrs.', 'Jennings', '.', 'I', 'understand', 'she', 'is', 'a', 'woman', 'of', 'very', 'good', 'fortune', '.', 'And', 'the', 'Middletons', 'too', ',', 'you', 'must', 'introduce', 'me', 'to', '_them_', '.', 'As', 'my', 'mother-in-law', '’', 's', 'relations', ',', 'I', 'shall', 'be', 'happy', 'to', 'show', 'them', 'every', 'respect', '.', 'They', 'are', 'excellent', 'neighbours', 'to', 'you', 'in', 'the', 'country', ',', 'I', 'understand.', '”', '“', 'Excellent', 'indeed', '.', 'Their', 'attention', 'to', 'our', 'comfort', ',', 'their', 'friendliness', 'in', 'every', 'particular', ',', 'is', 'more', 'than', 'I', 'can', 'express.', '”', '“', 'I', 'am', 'extremely', 'glad', 'to', 'hear', 'it', ',', 'upon', 'my', 'word', ';', 'extremely', 'glad', 'indeed', '.', 'But', 'so', 'it', 'ought', 'to', 'be', ';', 'they', 'are', 'people', 'of', 'large', 'fortune', ',', 'they', 'are', 'related', 'to', 'you', ',', 'and', 'every', 'civility', 'and', 'accommodation', 'that', 'can', 'serve', 'to', 'make', 'your', 'situation', 'pleasant', 'might', 'be', 'reasonably', 'expected', '.', 'And', 'so', 'you', 'are', 'most', 'comfortably', 'settled', 'in', 'your', 'little', 'cottage', 'and', 'want', 'for', 'nothing', '!', 'Edward', 'brought', 'us', 'a', 'most', 'charming', 'account', 'of', 'the', 'place', ':', 'the', 'most', 'complete', 'thing', 'of', 'its', 'kind', ',', 'he', 'said', ',', 'that', 'ever', 'was', ',', 'and', 'you', 'all', 'seemed', 'to', 'enjoy', 'it', 'beyond', 'any', 'thing', '.', 'It', 'was', 'a', 'great', 'satisfaction', 'to', 'us', 'to', 'hear', 'it', ',', 'I', 'assure', 'you.', '”', 'Elinor', 'did', 'feel', 'a', 'little', 'ashamed', 'of', 'her', 'brother', ';', 'and', 'was', 'not', 'sorry', 'to', 'be', 'spared', 'the', 'necessity', 'of', 'answering', 'him', ',', 'by', 'the', 'arrival', 'of', 'Mrs.', 'Jennings', '’', 's', 'servant', ',', 'who', 'came', 'to', 'tell', 'her', 'that', 'his', 'mistress', 'waited', 'for', 'them', 'at', 'the', 'door', '.', 'Mr.', 'Dashwood', 'attended', 'them', 'down', 'stairs', ',', 'was', 'introduced', 'to', 'Mrs.', 'Jennings', 'at', 'the', 'door', 'of', 'her', 'carriage', ',', 'and', 'repeating', 'his', 'hope', 'of', 'being', 'able', 'to', 'call', 'on', 'them', 'the', 'next', 'day', ',', 'took', 'leave', '.', 'His', 'visit', 'was', 'duly', 'paid', '.', 'He', 'came', 'with', 'a', 'pretence', 'at', 'an', 'apology', 'from', 'their', 'sister-in-law', ',', 'for', 'not', 'coming', 'too', ';', '“', 'but', 'she', 'was', 'so', 'much', 'engaged', 'with', 'her', 'mother', ',', 'that', 'really', 'she', 'had', 'no', 'leisure', 'for', 'going', 'any', 'where.', '”', 'Mrs.', 'Jennings', ',', 'however', ',', 'assured', 'him', 'directly', ',', 'that', 'she', 'should', 'not', 'stand', 'upon', 'ceremony', ',', 'for', 'they', 'were', 'all', 'cousins', ',', 'or', 'something', 'like', 'it', ',', 'and', 'she', 'should', 'certainly', 'wait', 'on', 'Mrs.', 'John', 'Dashwood', 'very', 'soon', ',', 'and', 'bring', 'her', 'sisters', 'to', 'see', 'her', '.', 'His', 'manners', 'to', '_them_', ',', 'though', 'calm', ',', 'were', 'perfectly', 'kind', ';', 'to', 'Mrs.', 'Jennings', ',', 'most', 'attentively', 'civil', ';', 'and', 'on', 'Colonel', 'Brandon', '’', 's', 'coming', 'in', 'soon', 'after', 'himself', ',', 'he', 'eyed', 'him', 'with', 'a', 'curiosity', 'which', 'seemed', 'to', 'say', ',', 'that', 'he', 'only', 'wanted', 'to', 'know', 'him', 'to', 'be', 'rich', ',', 'to', 'be', 'equally', 'civil', 'to', '_him_', '.', 'After', 'staying', 'with', 'them', 'half', 'an', 'hour', ',', 'he', 'asked', 'Elinor', 'to', 'walk', 'with', 'him', 'to', 'Conduit', 'Street', ',', 'and', 'introduce', 'him', 'to', 'Sir', 'John', 'and', 'Lady', 'Middleton', '.', 'The', 'weather', 'was', 'remarkably', 'fine', ',', 'and', 'she', 'readily', 'consented', '.', 'As', 'soon', 'as', 'they', 'were', 'out', 'of', 'the', 'house', ',', 'his', 'enquiries', 'began', '.', '“', 'Who', 'is', 'Colonel', 'Brandon', '?', 'Is', 'he', 'a', 'man', 'of', 'fortune', '?', '”', '“', 'Yes', ';', 'he', 'has', 'very', 'good', 'property', 'in', 'Dorsetshire.', '”', '“', 'I', 'am', 'glad', 'of', 'it', '.', 'He', 'seems', 'a', 'most', 'gentlemanlike', 'man', ';', 'and', 'I', 'think', ',', 'Elinor', ',', 'I', 'may', 'congratulate', 'you', 'on', 'the', 'prospect', 'of', 'a', 'very', 'respectable', 'establishment', 'in', 'life.', '”', '“', 'Me', ',', 'brother', '!', 'what', 'do', 'you', 'mean', '?', '”', '“', 'He', 'likes', 'you', '.', 'I', 'observed', 'him', 'narrowly', ',', 'and', 'am', 'convinced', 'of', 'it', '.', 'What', 'is', 'the', 'amount', 'of', 'his', 'fortune', '?', '”', '“', 'I', 'believe', 'about', 'two', 'thousand', 'a', 'year.', '”', '“', 'Two', 'thousand', 'a-year', ';', '”', 'and', 'then', 'working', 'himself', 'up', 'to', 'a', 'pitch', 'of', 'enthusiastic', 'generosity', ',', 'he', 'added', ',', '“', 'Elinor', ',', 'I', 'wish', 'with', 'all', 'my', 'heart', 'it', 'were', '_twice_', 'as', 'much', ',', 'for', 'your', 'sake.', '”', '“', 'Indeed', 'I', 'believe', 'you', ',', '”', 'replied', 'Elinor', ';', '“', 'but', 'I', 'am', 'very', 'sure', 'that', 'Colonel', 'Brandon', 'has', 'not', 'the', 'smallest', 'wish', 'of', 'marrying', '_me_.', '”', '“', 'You', 'are', 'mistaken', ',', 'Elinor', ';', 'you', 'are', 'very', 'much', 'mistaken', '.', 'A', 'very', 'little', 'trouble', 'on', 'your', 'side', 'secures', 'him', '.', 'Perhaps', 'just', 'at', 'present', 'he', 'may', 'be', 'undecided', ';', 'the', 'smallness', 'of', 'your', 'fortune', 'may', 'make', 'him', 'hang', 'back', ';', 'his', 'friends', 'may', 'all', 'advise', 'him', 'against', 'it', '.', 'But', 'some', 'of', 'those', 'little', 'attentions', 'and', 'encouragements', 'which', 'ladies', 'can', 'so', 'easily', 'give', 'will', 'fix', 'him', ',', 'in', 'spite', 'of', 'himself', '.', 'And', 'there', 'can', 'be', 'no', 'reason', 'why', 'you', 'should', 'not', 'try', 'for', 'him', '.', 'It', 'is', 'not', 'to', 'be', 'supposed', 'that', 'any', 'prior', 'attachment', 'on', 'your', 'side—in', 'short', ',', 'you', 'know', 'as', 'to', 'an', 'attachment', 'of', 'that', 'kind', ',', 'it', 'is', 'quite', 'out', 'of', 'the', 'question', ',', 'the', 'objections', 'are', 'insurmountable—you', 'have', 'too', 'much', 'sense', 'not', 'to', 'see', 'all', 'that', '.', 'Colonel', 'Brandon', 'must', 'be', 'the', 'man', ';', 'and', 'no', 'civility', 'shall', 'be', 'wanting', 'on', 'my', 'part', 'to', 'make', 'him', 'pleased', 'with', 'you', 'and', 'your', 'family', '.', 'It', 'is', 'a', 'match', 'that', 'must', 'give', 'universal', 'satisfaction', '.', 'In', 'short', ',', 'it', 'is', 'a', 'kind', 'of', 'thing', 'that', '”', '—lowering', 'his', 'voice', 'to', 'an', 'important', 'whisper—', '“', 'will', 'be', 'exceedingly', 'welcome', 'to', '_all', 'parties_.', '”', 'Recollecting', 'himself', ',', 'however', ',', 'he', 'added', ',', '“', 'That', 'is', ',', 'I', 'mean', 'to', 'say—your', 'friends', 'are', 'all', 'truly', 'anxious', 'to', 'see', 'you', 'well', 'settled', ';', 'Fanny', 'particularly', ',', 'for', 'she', 'has', 'your', 'interest', 'very', 'much', 'at', 'heart', ',', 'I', 'assure', 'you', '.', 'And', 'her', 'mother', 'too', ',', 'Mrs.', 'Ferrars', ',', 'a', 'very', 'good-natured', 'woman', ',', 'I', 'am', 'sure', 'it', 'would', 'give', 'her', 'great', 'pleasure', ';', 'she', 'said', 'as', 'much', 'the', 'other', 'day.', '”', 'Elinor', 'would', 'not', 'vouchsafe', 'any', 'answer', '.', '“', 'It', 'would', 'be', 'something', 'remarkable', ',', 'now', ',', '”', 'he', 'continued', ',', '“', 'something', 'droll', ',', 'if', 'Fanny', 'should', 'have', 'a', 'brother', 'and', 'I', 'a', 'sister', 'settling', 'at', 'the', 'same', 'time', '.', 'And', 'yet', 'it', 'is', 'not', 'very', 'unlikely.', '”', '“', 'Is', 'Mr.', 'Edward', 'Ferrars', ',', '”', 'said', 'Elinor', ',', 'with', 'resolution', ',', '“', 'going', 'to', 'be', 'married', '?', '”', '“', 'It', 'is', 'not', 'actually', 'settled', ',', 'but', 'there', 'is', 'such', 'a', 'thing', 'in', 'agitation', '.', 'He', 'has', 'a', 'most', 'excellent', 'mother', '.', 'Mrs.', 'Ferrars', ',', 'with', 'the', 'utmost', 'liberality', ',', 'will', 'come', 'forward', ',', 'and', 'settle', 'on', 'him', 'a', 'thousand', 'a', 'year', ',', 'if', 'the', 'match', 'takes', 'place', '.', 'The', 'lady', 'is', 'the', 'Hon', '.', 'Miss', 'Morton', ',', 'only', 'daughter', 'of', 'the', 'late', 'Lord', 'Morton', ',', 'with', 'thirty', 'thousand', 'pounds', '.', 'A', 'very', 'desirable', 'connection', 'on', 'both', 'sides', ',', 'and', 'I', 'have', 'not', 'a', 'doubt', 'of', 'its', 'taking', 'place', 'in', 'time', '.', 'A', 'thousand', 'a-year', 'is', 'a', 'great', 'deal', 'for', 'a', 'mother', 'to', 'give', 'away', ',', 'to', 'make', 'over', 'for', 'ever', ';', 'but', 'Mrs.', 'Ferrars', 'has', 'a', 'noble', 'spirit', '.', 'To', 'give', 'you', 'another', 'instance', 'of', 'her', 'liberality', ':', '—The', 'other', 'day', ',', 'as', 'soon', 'as', 'we', 'came', 'to', 'town', ',', 'aware', 'that', 'money', 'could', 'not', 'be', 'very', 'plenty', 'with', 'us', 'just', 'now', ',', 'she', 'put', 'bank-notes', 'into', 'Fanny', '’', 's', 'hands', 'to', 'the', 'amount', 'of', 'two', 'hundred', 'pounds', '.', 'And', 'extremely', 'acceptable', 'it', 'is', ',', 'for', 'we', 'must', 'live', 'at', 'a', 'great', 'expense', 'while', 'we', 'are', 'here.', '”', 'He', 'paused', 'for', 'her', 'assent', 'and', 'compassion', ';', 'and', 'she', 'forced', 'herself', 'to', 'say', ',', '“', 'Your', 'expenses', 'both', 'in', 'town', 'and', 'country', 'must', 'certainly', 'be', 'considerable', ';', 'but', 'your', 'income', 'is', 'a', 'large', 'one.', '”', '“', 'Not', 'so', 'large', ',', 'I', 'dare', 'say', ',', 'as', 'many', 'people', 'suppose', '.', 'I', 'do', 'not', 'mean', 'to', 'complain', ',', 'however', ';', 'it', 'is', 'undoubtedly', 'a', 'comfortable', 'one', ',', 'and', 'I', 'hope', 'will', 'in', 'time', 'be', 'better', '.', 'The', 'enclosure', 'of', 'Norland', 'Common', ',', 'now', 'carrying', 'on', ',', 'is', 'a', 'most', 'serious', 'drain', '.', 'And', 'then', 'I', 'have', 'made', 'a', 'little', 'purchase', 'within', 'this', 'half', 'year', ';', 'East', 'Kingham', 'Farm', ',', 'you', 'must', 'remember', 'the', 'place', ',', 'where', 'old', 'Gibson', 'used', 'to', 'live', '.', 'The', 'land', 'was', 'so', 'very', 'desirable', 'for', 'me', 'in', 'every', 'respect', ',', 'so', 'immediately', 'adjoining', 'my', 'own', 'property', ',', 'that', 'I', 'felt', 'it', 'my', 'duty', 'to', 'buy', 'it', '.', 'I', 'could', 'not', 'have', 'answered', 'it', 'to', 'my', 'conscience', 'to', 'let', 'it', 'fall', 'into', 'any', 'other', 'hands', '.', 'A', 'man', 'must', 'pay', 'for', 'his', 'convenience', ';', 'and', 'it', '_has_', 'cost', 'me', 'a', 'vast', 'deal', 'of', 'money.', '”', '“', 'More', 'than', 'you', 'think', 'it', 'really', 'and', 'intrinsically', 'worth.', '”', '“', 'Why', ',', 'I', 'hope', 'not', 'that', '.', 'I', 'might', 'have', 'sold', 'it', 'again', ',', 'the', 'next', 'day', ',', 'for', 'more', 'than', 'I', 'gave', ':', 'but', ',', 'with', 'regard', 'to', 'the', 'purchase-money', ',', 'I', 'might', 'have', 'been', 'very', 'unfortunate', 'indeed', ';', 'for', 'the', 'stocks', 'were', 'at', 'that', 'time', 'so', 'low', ',', 'that', 'if', 'I', 'had', 'not', 'happened', 'to', 'have', 'the', 'necessary', 'sum', 'in', 'my', 'banker', '’', 's', 'hands', ',', 'I', 'must', 'have', 'sold', 'out', 'to', 'very', 'great', 'loss.', '”', 'Elinor', 'could', 'only', 'smile', '.', '“', 'Other', 'great', 'and', 'inevitable', 'expenses', 'too', 'we', 'have', 'had', 'on', 'first', 'coming', 'to', 'Norland', '.', 'Our', 'respected', 'father', ',', 'as', 'you', 'well', 'know', ',', 'bequeathed', 'all', 'the', 'Stanhill', 'effects', 'that', 'remained', 'at', 'Norland', '(', 'and', 'very', 'valuable', 'they', 'were', ')', 'to', 'your', 'mother', '.', 'Far', 'be', 'it', 'from', 'me', 'to', 'repine', 'at', 'his', 'doing', 'so', ';', 'he', 'had', 'an', 'undoubted', 'right', 'to', 'dispose', 'of', 'his', 'own', 'property', 'as', 'he', 'chose', ',', 'but', ',', 'in', 'consequence', 'of', 'it', ',', 'we', 'have', 'been', 'obliged', 'to', 'make', 'large', 'purchases', 'of', 'linen', ',', 'china', ',', '&', 'c.', 'to', 'supply', 'the', 'place', 'of', 'what', 'was', 'taken', 'away', '.', 'You', 'may', 'guess', ',', 'after', 'all', 'these', 'expenses', ',', 'how', 'very', 'far', 'we', 'must', 'be', 'from', 'being', 'rich', ',', 'and', 'how', 'acceptable', 'Mrs.', 'Ferrars', '’', 's', 'kindness', 'is.', '”', '“', 'Certainly', ',', '”', 'said', 'Elinor', ';', '“', 'and', 'assisted', 'by', 'her', 'liberality', ',', 'I', 'hope', 'you', 'may', 'yet', 'live', 'to', 'be', 'in', 'easy', 'circumstances.', '”', '“', 'Another', 'year', 'or', 'two', 'may', 'do', 'much', 'towards', 'it', ',', '”', 'he', 'gravely', 'replied', ';', '“', 'but', 'however', 'there', 'is', 'still', 'a', 'great', 'deal', 'to', 'be', 'done', '.', 'There', 'is', 'not', 'a', 'stone', 'laid', 'of', 'Fanny', '’', 's', 'green-house', ',', 'and', 'nothing', 'but', 'the', 'plan', 'of', 'the', 'flower-garden', 'marked', 'out.', '”', '“', 'Where', 'is', 'the', 'green-house', 'to', 'be', '?', '”', '“', 'Upon', 'the', 'knoll', 'behind', 'the', 'house', '.', 'The', 'old', 'walnut', 'trees', 'are', 'all', 'come', 'down', 'to', 'make', 'room', 'for', 'it', '.', 'It', 'will', 'be', 'a', 'very', 'fine', 'object', 'from', 'many', 'parts', 'of', 'the', 'park', ',', 'and', 'the', 'flower-garden', 'will', 'slope', 'down', 'just', 'before', 'it', ',', 'and', 'be', 'exceedingly', 'pretty', '.', 'We', 'have', 'cleared', 'away', 'all', 'the', 'old', 'thorns', 'that', 'grew', 'in', 'patches', 'over', 'the', 'brow.', '”', 'Elinor', 'kept', 'her', 'concern', 'and', 'her', 'censure', 'to', 'herself', ';', 'and', 'was', 'very', 'thankful', 'that', 'Marianne', 'was', 'not', 'present', ',', 'to', 'share', 'the', 'provocation', '.', 'Having', 'now', 'said', 'enough', 'to', 'make', 'his', 'poverty', 'clear', ',', 'and', 'to', 'do', 'away', 'the', 'necessity', 'of', 'buying', 'a', 'pair', 'of', 'ear-rings', 'for', 'each', 'of', 'his', 'sisters', ',', 'in', 'his', 'next', 'visit', 'at', 'Gray', '’', 's', ',', 'his', 'thoughts', 'took', 'a', 'cheerfuller', 'turn', ',', 'and', 'he', 'began', 'to', 'congratulate', 'Elinor', 'on', 'having', 'such', 'a', 'friend', 'as', 'Mrs.', 'Jennings', '.', '“', 'She', 'seems', 'a', 'most', 'valuable', 'woman', 'indeed', '.', 'Her', 'house', ',', 'her', 'style', 'of', 'living', ',', 'all', 'bespeak', 'an', 'exceeding', 'good', 'income', ';', 'and', 'it', 'is', 'an', 'acquaintance', 'that', 'has', 'not', 'only', 'been', 'of', 'great', 'use', 'to', 'you', 'hitherto', ',', 'but', 'in', 'the', 'end', 'may', 'prove', 'materially', 'advantageous', '.', 'Her', 'inviting', 'you', 'to', 'town', 'is', 'certainly', 'a', 'vast', 'thing', 'in', 'your', 'favour', ';', 'and', 'indeed', ',', 'it', 'speaks', 'altogether', 'so', 'great', 'a', 'regard', 'for', 'you', ',', 'that', 'in', 'all', 'probability', 'when', 'she', 'dies', 'you', 'will', 'not', 'be', 'forgotten', '.', 'She', 'must', 'have', 'a', 'great', 'deal', 'to', 'leave.', '”', '“', 'Nothing', 'at', 'all', ',', 'I', 'should', 'rather', 'suppose', ';', 'for', 'she', 'has', 'only', 'her', 'jointure', ',', 'which', 'will', 'descend', 'to', 'her', 'children.', '”', '“', 'But', 'it', 'is', 'not', 'to', 'be', 'imagined', 'that', 'she', 'lives', 'up', 'to', 'her', 'income', '.', 'Few', 'people', 'of', 'common', 'prudence', 'will', 'do', '_that_', 'and', 'whatever', 'she', 'saves', ',', 'she', 'will', 'be', 'able', 'to', 'dispose', 'of.', '”', '“', 'And', 'do', 'you', 'not', 'think', 'it', 'more', 'likely', 'that', 'she', 'should', 'leave', 'it', 'to', 'her', 'daughters', ',', 'than', 'to', 'us', '?', '”', '“', 'Her', 'daughters', 'are', 'both', 'exceedingly', 'well', 'married', ',', 'and', 'therefore', 'I', 'can', 'not', 'perceive', 'the', 'necessity', 'of', 'her', 'remembering', 'them', 'farther', '.', 'Whereas', ',', 'in', 'my', 'opinion', ',', 'by', 'her', 'taking', 'so', 'much', 'notice', 'of', 'you', ',', 'and', 'treating', 'you', 'in', 'this', 'kind', 'of', 'way', ',', 'she', 'has', 'given', 'you', 'a', 'sort', 'of', 'claim', 'on', 'her', 'future', 'consideration', ',', 'which', 'a', 'conscientious', 'woman', 'would', 'not', 'disregard', '.', 'Nothing', 'can', 'be', 'kinder', 'than', 'her', 'behaviour', ';', 'and', 'she', 'can', 'hardly', 'do', 'all', 'this', ',', 'without', 'being', 'aware', 'of', 'the', 'expectation', 'it', 'raises.', '”', '“', 'But', 'she', 'raises', 'none', 'in', 'those', 'most', 'concerned', '.', 'Indeed', ',', 'brother', ',', 'your', 'anxiety', 'for', 'our', 'welfare', 'and', 'prosperity', 'carries', 'you', 'too', 'far.', '”', '“', 'Why', ',', 'to', 'be', 'sure', ',', '”', 'said', 'he', ',', 'seeming', 'to', 'recollect', 'himself', ',', '“', 'people', 'have', 'little', ',', 'have', 'very', 'little', 'in', 'their', 'power', '.', 'But', ',', 'my', 'dear', 'Elinor', ',', 'what', 'is', 'the', 'matter', 'with', 'Marianne', '?', '—she', 'looks', 'very', 'unwell', ',', 'has', 'lost', 'her', 'colour', ',', 'and', 'is', 'grown', 'quite', 'thin', '.', 'Is', 'she', 'ill', '?', '”', '“', 'She', 'is', 'not', 'well', ',', 'she', 'has', 'had', 'a', 'nervous', 'complaint', 'on', 'her', 'for', 'several', 'weeks.', '”', '“', 'I', 'am', 'sorry', 'for', 'that', '.', 'At', 'her', 'time', 'of', 'life', ',', 'any', 'thing', 'of', 'an', 'illness', 'destroys', 'the', 'bloom', 'for', 'ever', '!', 'Hers', 'has', 'been', 'a', 'very', 'short', 'one', '!', 'She', 'was', 'as', 'handsome', 'a', 'girl', 'last', 'September', ',', 'as', 'I', 'ever', 'saw', ';', 'and', 'as', 'likely', 'to', 'attract', 'the', 'man', '.', 'There', 'was', 'something', 'in', 'her', 'style', 'of', 'beauty', ',', 'to', 'please', 'them', 'particularly', '.', 'I', 'remember', 'Fanny', 'used', 'to', 'say', 'that', 'she', 'would', 'marry', 'sooner', 'and', 'better', 'than', 'you', 'did', ';', 'not', 'but', 'what', 'she', 'is', 'exceedingly', 'fond', 'of', '_you_', ',', 'but', 'so', 'it', 'happened', 'to', 'strike', 'her', '.', 'She', 'will', 'be', 'mistaken', ',', 'however', '.', 'I', 'question', 'whether', 'Marianne', '_now_', ',', 'will', 'marry', 'a', 'man', 'worth', 'more', 'than', 'five', 'or', 'six', 'hundred', 'a-year', ',', 'at', 'the', 'utmost', ',', 'and', 'I', 'am', 'very', 'much', 'deceived', 'if', '_you_', 'do', 'not', 'do', 'better', '.', 'Dorsetshire', '!', 'I', 'know', 'very', 'little', 'of', 'Dorsetshire', ';', 'but', ',', 'my', 'dear', 'Elinor', ',', 'I', 'shall', 'be', 'exceedingly', 'glad', 'to', 'know', 'more', 'of', 'it', ';', 'and', 'I', 'think', 'I', 'can', 'answer', 'for', 'your', 'having', 'Fanny', 'and', 'myself', 'among', 'the', 'earliest', 'and', 'best', 'pleased', 'of', 'your', 'visitors.', '”', 'Elinor', 'tried', 'very', 'seriously', 'to', 'convince', 'him', 'that', 'there', 'was', 'no', 'likelihood', 'of', 'her', 'marrying', 'Colonel', 'Brandon', ';', 'but', 'it', 'was', 'an', 'expectation', 'of', 'too', 'much', 'pleasure', 'to', 'himself', 'to', 'be', 'relinquished', ',', 'and', 'he', 'was', 'really', 'resolved', 'on', 'seeking', 'an', 'intimacy', 'with', 'that', 'gentleman', ',', 'and', 'promoting', 'the', 'marriage', 'by', 'every', 'possible', 'attention', '.', 'He', 'had', 'just', 'compunction', 'enough', 'for', 'having', 'done', 'nothing', 'for', 'his', 'sisters', 'himself', ',', 'to', 'be', 'exceedingly', 'anxious', 'that', 'everybody', 'else', 'should', 'do', 'a', 'great', 'deal', ';', 'and', 'an', 'offer', 'from', 'Colonel', 'Brandon', ',', 'or', 'a', 'legacy', 'from', 'Mrs.', 'Jennings', ',', 'was', 'the', 'easiest', 'means', 'of', 'atoning', 'for', 'his', 'own', 'neglect', '.', 'They', 'were', 'lucky', 'enough', 'to', 'find', 'Lady', 'Middleton', 'at', 'home', ',', 'and', 'Sir', 'John', 'came', 'in', 'before', 'their', 'visit', 'ended', '.', 'Abundance', 'of', 'civilities', 'passed', 'on', 'all', 'sides', '.', 'Sir', 'John', 'was', 'ready', 'to', 'like', 'anybody', ',', 'and', 'though', 'Mr.', 'Dashwood', 'did', 'not', 'seem', 'to', 'know', 'much', 'about', 'horses', ',', 'he', 'soon', 'set', 'him', 'down', 'as', 'a', 'very', 'good-natured', 'fellow', ':', 'while', 'Lady', 'Middleton', 'saw', 'enough', 'of', 'fashion', 'in', 'his', 'appearance', 'to', 'think', 'his', 'acquaintance', 'worth', 'having', ';', 'and', 'Mr.', 'Dashwood', 'went', 'away', 'delighted', 'with', 'both', '.', '“', 'I', 'shall', 'have', 'a', 'charming', 'account', 'to', 'carry', 'to', 'Fanny', ',', '”', 'said', 'he', ',', 'as', 'he', 'walked', 'back', 'with', 'his', 'sister', '.', '“', 'Lady', 'Middleton', 'is', 'really', 'a', 'most', 'elegant', 'woman', '!', 'Such', 'a', 'woman', 'as', 'I', 'am', 'sure', 'Fanny', 'will', 'be', 'glad', 'to', 'know', '.', 'And', 'Mrs.', 'Jennings', 'too', ',', 'an', 'exceedingly', 'well-behaved', 'woman', ',', 'though', 'not', 'so', 'elegant', 'as', 'her', 'daughter', '.', 'Your', 'sister', 'need', 'not', 'have', 'any', 'scruple', 'even', 'of', 'visiting', '_her_', ',', 'which', ',', 'to', 'say', 'the', 'truth', ',', 'has', 'been', 'a', 'little', 'the', 'case', ',', 'and', 'very', 'naturally', ';', 'for', 'we', 'only', 'knew', 'that', 'Mrs.', 'Jennings', 'was', 'the', 'widow', 'of', 'a', 'man', 'who', 'had', 'got', 'all', 'his', 'money', 'in', 'a', 'low', 'way', ';', 'and', 'Fanny', 'and', 'Mrs.', 'Ferrars', 'were', 'both', 'strongly', 'prepossessed', ',', 'that', 'neither', 'she', 'nor', 'her', 'daughters', 'were', 'such', 'kind', 'of', 'women', 'as', 'Fanny', 'would', 'like', 'to', 'associate', 'with', '.', 'But', 'now', 'I', 'can', 'carry', 'her', 'a', 'most', 'satisfactory', 'account', 'of', 'both.', '”', 'CHAPTER', 'XXXIV', '.', 'Mrs.', 'John', 'Dashwood', 'had', 'so', 'much', 'confidence', 'in', 'her', 'husband', '’', 's', 'judgment', ',', 'that', 'she', 'waited', 'the', 'very', 'next', 'day', 'both', 'on', 'Mrs.', 'Jennings', 'and', 'her', 'daughter', ';', 'and', 'her', 'confidence', 'was', 'rewarded', 'by', 'finding', 'even', 'the', 'former', ',', 'even', 'the', 'woman', 'with', 'whom', 'her', 'sisters', 'were', 'staying', ',', 'by', 'no', 'means', 'unworthy', 'her', 'notice', ';', 'and', 'as', 'for', 'Lady', 'Middleton', ',', 'she', 'found', 'her', 'one', 'of', 'the', 'most', 'charming', 'women', 'in', 'the', 'world', '!', 'Lady', 'Middleton', 'was', 'equally', 'pleased', 'with', 'Mrs.', 'Dashwood', '.', 'There', 'was', 'a', 'kind', 'of', 'cold', 'hearted', 'selfishness', 'on', 'both', 'sides', ',', 'which', 'mutually', 'attracted', 'them', ';', 'and', 'they', 'sympathised', 'with', 'each', 'other', 'in', 'an', 'insipid', 'propriety', 'of', 'demeanor', ',', 'and', 'a', 'general', 'want', 'of', 'understanding', '.', 'The', 'same', 'manners', ',', 'however', ',', 'which', 'recommended', 'Mrs.', 'John', 'Dashwood', 'to', 'the', 'good', 'opinion', 'of', 'Lady', 'Middleton', 'did', 'not', 'suit', 'the', 'fancy', 'of', 'Mrs.', 'Jennings', ',', 'and', 'to', '_her_', 'she', 'appeared', 'nothing', 'more', 'than', 'a', 'little', 'proud-looking', 'woman', 'of', 'uncordial', 'address', ',', 'who', 'met', 'her', 'husband', '’', 's', 'sisters', 'without', 'any', 'affection', ',', 'and', 'almost', 'without', 'having', 'anything', 'to', 'say', 'to', 'them', ';', 'for', 'of', 'the', 'quarter', 'of', 'an', 'hour', 'bestowed', 'on', 'Berkeley', 'Street', ',', 'she', 'sat', 'at', 'least', 'seven', 'minutes', 'and', 'a', 'half', 'in', 'silence', '.', 'Elinor', 'wanted', 'very', 'much', 'to', 'know', ',', 'though', 'she', 'did', 'not', 'chuse', 'to', 'ask', ',', 'whether', 'Edward', 'was', 'then', 'in', 'town', ';', 'but', 'nothing', 'would', 'have', 'induced', 'Fanny', 'voluntarily', 'to', 'mention', 'his', 'name', 'before', 'her', ',', 'till', 'able', 'to', 'tell', 'her', 'that', 'his', 'marriage', 'with', 'Miss', 'Morton', 'was', 'resolved', 'on', ',', 'or', 'till', 'her', 'husband', '’', 's', 'expectations', 'on', 'Colonel', 'Brandon', 'were', 'answered', ';', 'because', 'she', 'believed', 'them', 'still', 'so', 'very', 'much', 'attached', 'to', 'each', 'other', ',', 'that', 'they', 'could', 'not', 'be', 'too', 'sedulously', 'divided', 'in', 'word', 'and', 'deed', 'on', 'every', 'occasion', '.', 'The', 'intelligence', 'however', ',', 'which', '_she_', 'would', 'not', 'give', ',', 'soon', 'flowed', 'from', 'another', 'quarter', '.', 'Lucy', 'came', 'very', 'shortly', 'to', 'claim', 'Elinor', '’', 's', 'compassion', 'on', 'being', 'unable', 'to', 'see', 'Edward', ',', 'though', 'he', 'had', 'arrived', 'in', 'town', 'with', 'Mr.', 'and', 'Mrs.', 'Dashwood', '.', 'He', 'dared', 'not', 'come', 'to', 'Bartlett', '’', 's', 'Buildings', 'for', 'fear', 'of', 'detection', ',', 'and', 'though', 'their', 'mutual', 'impatience', 'to', 'meet', ',', 'was', 'not', 'to', 'be', 'told', ',', 'they', 'could', 'do', 'nothing', 'at', 'present', 'but', 'write', '.', 'Edward', 'assured', 'them', 'himself', 'of', 'his', 'being', 'in', 'town', ',', 'within', 'a', 'very', 'short', 'time', ',', 'by', 'twice', 'calling', 'in', 'Berkeley', 'Street', '.', 'Twice', 'was', 'his', 'card', 'found', 'on', 'the', 'table', ',', 'when', 'they', 'returned', 'from', 'their', 'morning', '’', 's', 'engagements', '.', 'Elinor', 'was', 'pleased', 'that', 'he', 'had', 'called', ';', 'and', 'still', 'more', 'pleased', 'that', 'she', 'had', 'missed', 'him', '.', 'The', 'Dashwoods', 'were', 'so', 'prodigiously', 'delighted', 'with', 'the', 'Middletons', ',', 'that', ',', 'though', 'not', 'much', 'in', 'the', 'habit', 'of', 'giving', 'anything', ',', 'they', 'determined', 'to', 'give', 'them—a', 'dinner', ';', 'and', 'soon', 'after', 'their', 'acquaintance', 'began', ',', 'invited', 'them', 'to', 'dine', 'in', 'Harley', 'Street', ',', 'where', 'they', 'had', 'taken', 'a', 'very', 'good', 'house', 'for', 'three', 'months', '.', 'Their', 'sisters', 'and', 'Mrs.', 'Jennings', 'were', 'invited', 'likewise', ',', 'and', 'John', 'Dashwood', 'was', 'careful', 'to', 'secure', 'Colonel', 'Brandon', ',', 'who', ',', 'always', 'glad', 'to', 'be', 'where', 'the', 'Miss', 'Dashwoods', 'were', ',', 'received', 'his', 'eager', 'civilities', 'with', 'some', 'surprise', ',', 'but', 'much', 'more', 'pleasure', '.', 'They', 'were', 'to', 'meet', 'Mrs.', 'Ferrars', ';', 'but', 'Elinor', 'could', 'not', 'learn', 'whether', 'her', 'sons', 'were', 'to', 'be', 'of', 'the', 'party', '.', 'The', 'expectation', 'of', 'seeing', '_her_', ',', 'however', ',', 'was', 'enough', 'to', 'make', 'her', 'interested', 'in', 'the', 'engagement', ';', 'for', 'though', 'she', 'could', 'now', 'meet', 'Edward', '’', 's', 'mother', 'without', 'that', 'strong', 'anxiety', 'which', 'had', 'once', 'promised', 'to', 'attend', 'such', 'an', 'introduction', ',', 'though', 'she', 'could', 'now', 'see', 'her', 'with', 'perfect', 'indifference', 'as', 'to', 'her', 'opinion', 'of', 'herself', ',', 'her', 'desire', 'of', 'being', 'in', 'company', 'with', 'Mrs.', 'Ferrars', ',', 'her', 'curiosity', 'to', 'know', 'what', 'she', 'was', 'like', ',', 'was', 'as', 'lively', 'as', 'ever', '.', 'The', 'interest', 'with', 'which', 'she', 'thus', 'anticipated', 'the', 'party', ',', 'was', 'soon', 'afterwards', 'increased', ',', 'more', 'powerfully', 'than', 'pleasantly', ',', 'by', 'her', 'hearing', 'that', 'the', 'Miss', 'Steeles', 'were', 'also', 'to', 'be', 'at', 'it', '.', 'So', 'well', 'had', 'they', 'recommended', 'themselves', 'to', 'Lady', 'Middleton', ',', 'so', 'agreeable', 'had', 'their', 'assiduities', 'made', 'them', 'to', 'her', ',', 'that', 'though', 'Lucy', 'was', 'certainly', 'not', 'so', 'elegant', ',', 'and', 'her', 'sister', 'not', 'even', 'genteel', ',', 'she', 'was', 'as', 'ready', 'as', 'Sir', 'John', 'to', 'ask', 'them', 'to', 'spend', 'a', 'week', 'or', 'two', 'in', 'Conduit', 'Street', ';', 'and', 'it', 'happened', 'to', 'be', 'particularly', 'convenient', 'to', 'the', 'Miss', 'Steeles', ',', 'as', 'soon', 'as', 'the', 'Dashwoods', '’', 'invitation', 'was', 'known', ',', 'that', 'their', 'visit', 'should', 'begin', 'a', 'few', 'days', 'before', 'the', 'party', 'took', 'place', '.', 'Their', 'claims', 'to', 'the', 'notice', 'of', 'Mrs.', 'John', 'Dashwood', ',', 'as', 'the', 'nieces', 'of', 'the', 'gentleman', 'who', 'for', 'many', 'years', 'had', 'had', 'the', 'care', 'of', 'her', 'brother', ',', 'might', 'not', 'have', 'done', 'much', ',', 'however', ',', 'towards', 'procuring', 'them', 'seats', 'at', 'her', 'table', ';', 'but', 'as', 'Lady', 'Middleton', '’', 's', 'guests', 'they', 'must', 'be', 'welcome', ';', 'and', 'Lucy', ',', 'who', 'had', 'long', 'wanted', 'to', 'be', 'personally', 'known', 'to', 'the', 'family', ',', 'to', 'have', 'a', 'nearer', 'view', 'of', 'their', 'characters', 'and', 'her', 'own', 'difficulties', ',', 'and', 'to', 'have', 'an', 'opportunity', 'of', 'endeavouring', 'to', 'please', 'them', ',', 'had', 'seldom', 'been', 'happier', 'in', 'her', 'life', ',', 'than', 'she', 'was', 'on', 'receiving', 'Mrs.', 'John', 'Dashwood', '’', 's', 'card', '.', 'On', 'Elinor', 'its', 'effect', 'was', 'very', 'different', '.', 'She', 'began', 'immediately', 'to', 'determine', ',', 'that', 'Edward', 'who', 'lived', 'with', 'his', 'mother', ',', 'must', 'be', 'asked', 'as', 'his', 'mother', 'was', ',', 'to', 'a', 'party', 'given', 'by', 'his', 'sister', ';', 'and', 'to', 'see', 'him', 'for', 'the', 'first', 'time', ',', 'after', 'all', 'that', 'passed', ',', 'in', 'the', 'company', 'of', 'Lucy', '!', '—she', 'hardly', 'knew', 'how', 'she', 'could', 'bear', 'it', '!', 'These', 'apprehensions', ',', 'perhaps', ',', 'were', 'not', 'founded', 'entirely', 'on', 'reason', ',', 'and', 'certainly', 'not', 'at', 'all', 'on', 'truth', '.', 'They', 'were', 'relieved', 'however', ',', 'not', 'by', 'her', 'own', 'recollection', ',', 'but', 'by', 'the', 'good', 'will', 'of', 'Lucy', ',', 'who', 'believed', 'herself', 'to', 'be', 'inflicting', 'a', 'severe', 'disappointment', 'when', 'she', 'told', 'her', 'that', 'Edward', 'certainly', 'would', 'not', 'be', 'in', 'Harley', 'Street', 'on', 'Tuesday', ',', 'and', 'even', 'hoped', 'to', 'be', 'carrying', 'the', 'pain', 'still', 'farther', 'by', 'persuading', 'her', 'that', 'he', 'was', 'kept', 'away', 'by', 'the', 'extreme', 'affection', 'for', 'herself', ',', 'which', 'he', 'could', 'not', 'conceal', 'when', 'they', 'were', 'together', '.', 'The', 'important', 'Tuesday', 'came', 'that', 'was', 'to', 'introduce', 'the', 'two', 'young', 'ladies', 'to', 'this', 'formidable', 'mother-in-law', '.', '“', 'Pity', 'me', ',', 'dear', 'Miss', 'Dashwood', '!', '”', 'said', 'Lucy', ',', 'as', 'they', 'walked', 'up', 'the', 'stairs', 'together—for', 'the', 'Middletons', 'arrived', 'so', 'directly', 'after', 'Mrs.', 'Jennings', ',', 'that', 'they', 'all', 'followed', 'the', 'servant', 'at', 'the', 'same', 'time', ':', '—', '“', 'there', 'is', 'nobody', 'here', 'but', 'you', ',', 'that', 'can', 'feel', 'for', 'me', '.', 'I', 'declare', 'I', 'can', 'hardly', 'stand', '.', 'Good', 'gracious', '!', 'In', 'a', 'moment', 'I', 'shall', 'see', 'the', 'person', 'that', 'all', 'my', 'happiness', 'depends', 'on—that', 'is', 'to', 'be', 'my', 'mother', '!', '”', 'Elinor', 'could', 'have', 'given', 'her', 'immediate', 'relief', 'by', 'suggesting', 'the', 'possibility', 'of', 'its', 'being', 'Miss', 'Morton', '’', 's', 'mother', ',', 'rather', 'than', 'her', 'own', ',', 'whom', 'they', 'were', 'about', 'to', 'behold', ';', 'but', 'instead', 'of', 'doing', 'that', ',', 'she', 'assured', 'her', ',', 'and', 'with', 'great', 'sincerity', ',', 'that', 'she', 'did', 'pity', 'her—to', 'the', 'utter', 'amazement', 'of', 'Lucy', ',', 'who', ',', 'though', 'really', 'uncomfortable', 'herself', ',', 'hoped', 'at', 'least', 'to', 'be', 'an', 'object', 'of', 'irrepressible', 'envy', 'to', 'Elinor', '.', 'Mrs.', 'Ferrars', 'was', 'a', 'little', ',', 'thin', 'woman', ',', 'upright', ',', 'even', 'to', 'formality', ',', 'in', 'her', 'figure', ',', 'and', 'serious', ',', 'even', 'to', 'sourness', ',', 'in', 'her', 'aspect', '.', 'Her', 'complexion', 'was', 'sallow', ';', 'and', 'her', 'features', 'small', ',', 'without', 'beauty', ',', 'and', 'naturally', 'without', 'expression', ';', 'but', 'a', 'lucky', 'contraction', 'of', 'the', 'brow', 'had', 'rescued', 'her', 'countenance', 'from', 'the', 'disgrace', 'of', 'insipidity', ',', 'by', 'giving', 'it', 'the', 'strong', 'characters', 'of', 'pride', 'and', 'ill', 'nature', '.', 'She', 'was', 'not', 'a', 'woman', 'of', 'many', 'words', ';', 'for', ',', 'unlike', 'people', 'in', 'general', ',', 'she', 'proportioned', 'them', 'to', 'the', 'number', 'of', 'her', 'ideas', ';', 'and', 'of', 'the', 'few', 'syllables', 'that', 'did', 'escape', 'her', ',', 'not', 'one', 'fell', 'to', 'the', 'share', 'of', 'Miss', 'Dashwood', ',', 'whom', 'she', 'eyed', 'with', 'the', 'spirited', 'determination', 'of', 'disliking', 'her', 'at', 'all', 'events', '.', 'Elinor', 'could', 'not', '_now_', 'be', 'made', 'unhappy', 'by', 'this', 'behaviour', '.', 'A', 'few', 'months', 'ago', 'it', 'would', 'have', 'hurt', 'her', 'exceedingly', ';', 'but', 'it', 'was', 'not', 'in', 'Mrs.', 'Ferrars', '’', 'power', 'to', 'distress', 'her', 'by', 'it', 'now', ';', 'and', 'the', 'difference', 'of', 'her', 'manners', 'to', 'the', 'Miss', 'Steeles', ',', 'a', 'difference', 'which', 'seemed', 'purposely', 'made', 'to', 'humble', 'her', 'more', ',', 'only', 'amused', 'her', '.', 'She', 'could', 'not', 'but', 'smile', 'to', 'see', 'the', 'graciousness', 'of', 'both', 'mother', 'and', 'daughter', 'towards', 'the', 'very', 'person—for', 'Lucy', 'was', 'particularly', 'distinguished—whom', 'of', 'all', 'others', ',', 'had', 'they', 'known', 'as', 'much', 'as', 'she', 'did', ',', 'they', 'would', 'have', 'been', 'most', 'anxious', 'to', 'mortify', ';', 'while', 'she', 'herself', ',', 'who', 'had', 'comparatively', 'no', 'power', 'to', 'wound', 'them', ',', 'sat', 'pointedly', 'slighted', 'by', 'both', '.', 'But', 'while', 'she', 'smiled', 'at', 'a', 'graciousness', 'so', 'misapplied', ',', 'she', 'could', 'not', 'reflect', 'on', 'the', 'mean-spirited', 'folly', 'from', 'which', 'it', 'sprung', ',', 'nor', 'observe', 'the', 'studied', 'attentions', 'with', 'which', 'the', 'Miss', 'Steeles', 'courted', 'its', 'continuance', ',', 'without', 'thoroughly', 'despising', 'them', 'all', 'four', '.', 'Lucy', 'was', 'all', 'exultation', 'on', 'being', 'so', 'honorably', 'distinguished', ';', 'and', 'Miss', 'Steele', 'wanted', 'only', 'to', 'be', 'teazed', 'about', 'Dr.', 'Davies', 'to', 'be', 'perfectly', 'happy', '.', 'The', 'dinner', 'was', 'a', 'grand', 'one', ',', 'the', 'servants', 'were', 'numerous', ',', 'and', 'every', 'thing', 'bespoke', 'the', 'Mistress', '’', 's', 'inclination', 'for', 'show', ',', 'and', 'the', 'Master', '’', 's', 'ability', 'to', 'support', 'it', '.', 'In', 'spite', 'of', 'the', 'improvements', 'and', 'additions', 'which', 'were', 'making', 'to', 'the', 'Norland', 'estate', ',', 'and', 'in', 'spite', 'of', 'its', 'owner', 'having', 'once', 'been', 'within', 'some', 'thousand', 'pounds', 'of', 'being', 'obliged', 'to', 'sell', 'out', 'at', 'a', 'loss', ',', 'nothing', 'gave', 'any', 'symptom', 'of', 'that', 'indigence', 'which', 'he', 'had', 'tried', 'to', 'infer', 'from', 'it', ';', '—no', 'poverty', 'of', 'any', 'kind', ',', 'except', 'of', 'conversation', ',', 'appeared—but', 'there', ',', 'the', 'deficiency', 'was', 'considerable', '.', 'John', 'Dashwood', 'had', 'not', 'much', 'to', 'say', 'for', 'himself', 'that', 'was', 'worth', 'hearing', ',', 'and', 'his', 'wife', 'had', 'still', 'less', '.', 'But', 'there', 'was', 'no', 'peculiar', 'disgrace', 'in', 'this', ';', 'for', 'it', 'was', 'very', 'much', 'the', 'case', 'with', 'the', 'chief', 'of', 'their', 'visitors', ',', 'who', 'almost', 'all', 'laboured', 'under', 'one', 'or', 'other', 'of', 'these', 'disqualifications', 'for', 'being', 'agreeable—Want', 'of', 'sense', ',', 'either', 'natural', 'or', 'improved—want', 'of', 'elegance—want', 'of', 'spirits—or', 'want', 'of', 'temper', '.', 'When', 'the', 'ladies', 'withdrew', 'to', 'the', 'drawing-room', 'after', 'dinner', ',', 'this', 'poverty', 'was', 'particularly', 'evident', ',', 'for', 'the', 'gentlemen', '_had_', 'supplied', 'the', 'discourse', 'with', 'some', 'variety—the', 'variety', 'of', 'politics', ',', 'inclosing', 'land', ',', 'and', 'breaking', 'horses—but', 'then', 'it', 'was', 'all', 'over', ';', 'and', 'one', 'subject', 'only', 'engaged', 'the', 'ladies', 'till', 'coffee', 'came', 'in', ',', 'which', 'was', 'the', 'comparative', 'heights', 'of', 'Harry', 'Dashwood', ',', 'and', 'Lady', 'Middleton', '’', 's', 'second', 'son', 'William', ',', 'who', 'were', 'nearly', 'of', 'the', 'same', 'age', '.', 'Had', 'both', 'the', 'children', 'been', 'there', ',', 'the', 'affair', 'might', 'have', 'been', 'determined', 'too', 'easily', 'by', 'measuring', 'them', 'at', 'once', ';', 'but', 'as', 'Harry', 'only', 'was', 'present', ',', 'it', 'was', 'all', 'conjectural', 'assertion', 'on', 'both', 'sides', ';', 'and', 'every', 'body', 'had', 'a', 'right', 'to', 'be', 'equally', 'positive', 'in', 'their', 'opinion', ',', 'and', 'to', 'repeat', 'it', 'over', 'and', 'over', 'again', 'as', 'often', 'as', 'they', 'liked', '.', 'The', 'parties', 'stood', 'thus', ':', 'The', 'two', 'mothers', ',', 'though', 'each', 'really', 'convinced', 'that', 'her', 'own', 'son', 'was', 'the', 'tallest', ',', 'politely', 'decided', 'in', 'favour', 'of', 'the', 'other', '.', 'The', 'two', 'grandmothers', ',', 'with', 'not', 'less', 'partiality', ',', 'but', 'more', 'sincerity', ',', 'were', 'equally', 'earnest', 'in', 'support', 'of', 'their', 'own', 'descendant', '.', 'Lucy', ',', 'who', 'was', 'hardly', 'less', 'anxious', 'to', 'please', 'one', 'parent', 'than', 'the', 'other', ',', 'thought', 'the', 'boys', 'were', 'both', 'remarkably', 'tall', 'for', 'their', 'age', ',', 'and', 'could', 'not', 'conceive', 'that', 'there', 'could', 'be', 'the', 'smallest', 'difference', 'in', 'the', 'world', 'between', 'them', ';', 'and', 'Miss', 'Steele', ',', 'with', 'yet', 'greater', 'address', 'gave', 'it', ',', 'as', 'fast', 'as', 'she', 'could', ',', 'in', 'favour', 'of', 'each', '.', 'Elinor', ',', 'having', 'once', 'delivered', 'her', 'opinion', 'on', 'William', '’', 's', 'side', ',', 'by', 'which', 'she', 'offended', 'Mrs.', 'Ferrars', 'and', 'Fanny', 'still', 'more', ',', 'did', 'not', 'see', 'the', 'necessity', 'of', 'enforcing', 'it', 'by', 'any', 'farther', 'assertion', ';', 'and', 'Marianne', ',', 'when', 'called', 'on', 'for', 'hers', ',', 'offended', 'them', 'all', ',', 'by', 'declaring', 'that', 'she', 'had', 'no', 'opinion', 'to', 'give', ',', 'as', 'she', 'had', 'never', 'thought', 'about', 'it', '.', 'Before', 'her', 'removing', 'from', 'Norland', ',', 'Elinor', 'had', 'painted', 'a', 'very', 'pretty', 'pair', 'of', 'screens', 'for', 'her', 'sister-in-law', ',', 'which', 'being', 'now', 'just', 'mounted', 'and', 'brought', 'home', ',', 'ornamented', 'her', 'present', 'drawing', 'room', ';', 'and', 'these', 'screens', ',', 'catching', 'the', 'eye', 'of', 'John', 'Dashwood', 'on', 'his', 'following', 'the', 'other', 'gentlemen', 'into', 'the', 'room', ',', 'were', 'officiously', 'handed', 'by', 'him', 'to', 'Colonel', 'Brandon', 'for', 'his', 'admiration', '.', '“', 'These', 'are', 'done', 'by', 'my', 'eldest', 'sister', ',', '”', 'said', 'he', ';', '“', 'and', 'you', ',', 'as', 'a', 'man', 'of', 'taste', ',', 'will', ',', 'I', 'dare', 'say', ',', 'be', 'pleased', 'with', 'them', '.', 'I', 'do', 'not', 'know', 'whether', 'you', 'have', 'ever', 'happened', 'to', 'see', 'any', 'of', 'her', 'performances', 'before', ',', 'but', 'she', 'is', 'in', 'general', 'reckoned', 'to', 'draw', 'extremely', 'well.', '”', 'The', 'Colonel', ',', 'though', 'disclaiming', 'all', 'pretensions', 'to', 'connoisseurship', ',', 'warmly', 'admired', 'the', 'screens', ',', 'as', 'he', 'would', 'have', 'done', 'any', 'thing', 'painted', 'by', 'Miss', 'Dashwood', ';', 'and', 'on', 'the', 'curiosity', 'of', 'the', 'others', 'being', 'of', 'course', 'excited', ',', 'they', 'were', 'handed', 'round', 'for', 'general', 'inspection', '.', 'Mrs.', 'Ferrars', ',', 'not', 'aware', 'of', 'their', 'being', 'Elinor', '’', 's', 'work', ',', 'particularly', 'requested', 'to', 'look', 'at', 'them', ';', 'and', 'after', 'they', 'had', 'received', 'gratifying', 'testimony', 'of', 'Lady', 'Middletons', '’', 's', 'approbation', ',', 'Fanny', 'presented', 'them', 'to', 'her', 'mother', ',', 'considerately', 'informing', 'her', ',', 'at', 'the', 'same', 'time', ',', 'that', 'they', 'were', 'done', 'by', 'Miss', 'Dashwood', '.', '“', 'Hum', '”', '—said', 'Mrs.', 'Ferrars—', '“', 'very', 'pretty', ',', '”', '—and', 'without', 'regarding', 'them', 'at', 'all', ',', 'returned', 'them', 'to', 'her', 'daughter', '.', 'Perhaps', 'Fanny', 'thought', 'for', 'a', 'moment', 'that', 'her', 'mother', 'had', 'been', 'quite', 'rude', 'enough', ',', '—for', ',', 'colouring', 'a', 'little', ',', 'she', 'immediately', 'said', ',', '“', 'They', 'are', 'very', 'pretty', ',', 'ma', '’', 'am—an', '’', 't', 'they', '?', '”', 'But', 'then', 'again', ',', 'the', 'dread', 'of', 'having', 'been', 'too', 'civil', ',', 'too', 'encouraging', 'herself', ',', 'probably', 'came', 'over', 'her', ',', 'for', 'she', 'presently', 'added', ',', '“', 'Do', 'you', 'not', 'think', 'they', 'are', 'something', 'in', 'Miss', 'Morton', '’', 's', 'style', 'of', 'painting', ',', 'Ma', '’', 'am', '?', '—_She', 'does_', 'paint', 'most', 'delightfully', '!', '—How', 'beautifully', 'her', 'last', 'landscape', 'is', 'done', '!', '”', '“', 'Beautifully', 'indeed', '!', 'But', '_she_', 'does', 'every', 'thing', 'well.', '”', 'Marianne', 'could', 'not', 'bear', 'this.—She', 'was', 'already', 'greatly', 'displeased', 'with', 'Mrs.', 'Ferrars', ';', 'and', 'such', 'ill-timed', 'praise', 'of', 'another', ',', 'at', 'Elinor', '’', 's', 'expense', ',', 'though', 'she', 'had', 'not', 'any', 'notion', 'of', 'what', 'was', 'principally', 'meant', 'by', 'it', ',', 'provoked', 'her', 'immediately', 'to', 'say', 'with', 'warmth', ',', '“', 'This', 'is', 'admiration', 'of', 'a', 'very', 'particular', 'kind', '!', '—what', 'is', 'Miss', 'Morton', 'to', 'us', '?', '—who', 'knows', ',', 'or', 'who', 'cares', ',', 'for', 'her', '?', '—it', 'is', 'Elinor', 'of', 'whom', '_we_', 'think', 'and', 'speak.', '”', 'And', 'so', 'saying', ',', 'she', 'took', 'the', 'screens', 'out', 'of', 'her', 'sister-in-law', '’', 's', 'hands', ',', 'to', 'admire', 'them', 'herself', 'as', 'they', 'ought', 'to', 'be', 'admired', '.', 'Mrs.', 'Ferrars', 'looked', 'exceedingly', 'angry', ',', 'and', 'drawing', 'herself', 'up', 'more', 'stiffly', 'than', 'ever', ',', 'pronounced', 'in', 'retort', 'this', 'bitter', 'philippic', ',', '“', 'Miss', 'Morton', 'is', 'Lord', 'Morton', '’', 's', 'daughter.', '”', 'Fanny', 'looked', 'very', 'angry', 'too', ',', 'and', 'her', 'husband', 'was', 'all', 'in', 'a', 'fright', 'at', 'his', 'sister', '’', 's', 'audacity', '.', 'Elinor', 'was', 'much', 'more', 'hurt', 'by', 'Marianne', '’', 's', 'warmth', 'than', 'she', 'had', 'been', 'by', 'what', 'produced', 'it', ';', 'but', 'Colonel', 'Brandon', '’', 's', 'eyes', ',', 'as', 'they', 'were', 'fixed', 'on', 'Marianne', ',', 'declared', 'that', 'he', 'noticed', 'only', 'what', 'was', 'amiable', 'in', 'it', ',', 'the', 'affectionate', 'heart', 'which', 'could', 'not', 'bear', 'to', 'see', 'a', 'sister', 'slighted', 'in', 'the', 'smallest', 'point', '.', 'Marianne', '’', 's', 'feelings', 'did', 'not', 'stop', 'here', '.', 'The', 'cold', 'insolence', 'of', 'Mrs.', 'Ferrars', '’', 's', 'general', 'behaviour', 'to', 'her', 'sister', ',', 'seemed', ',', 'to', 'her', ',', 'to', 'foretell', 'such', 'difficulties', 'and', 'distresses', 'to', 'Elinor', ',', 'as', 'her', 'own', 'wounded', 'heart', 'taught', 'her', 'to', 'think', 'of', 'with', 'horror', ';', 'and', 'urged', 'by', 'a', 'strong', 'impulse', 'of', 'affectionate', 'sensibility', ',', 'she', 'moved', 'after', 'a', 'moment', ',', 'to', 'her', 'sister', '’', 's', 'chair', ',', 'and', 'putting', 'one', 'arm', 'round', 'her', 'neck', ',', 'and', 'one', 'cheek', 'close', 'to', 'hers', ',', 'said', 'in', 'a', 'low', ',', 'but', 'eager', ',', 'voice', ',', '“', 'Dear', ',', 'dear', 'Elinor', ',', 'don', '’', 't', 'mind', 'them', '.', 'Don', '’', 't', 'let', 'them', 'make', '_you_', 'unhappy.', '”', 'She', 'could', 'say', 'no', 'more', ';', 'her', 'spirits', 'were', 'quite', 'overcome', ',', 'and', 'hiding', 'her', 'face', 'on', 'Elinor', '’', 's', 'shoulder', ',', 'she', 'burst', 'into', 'tears', '.', 'Every', 'body', '’', 's', 'attention', 'was', 'called', ',', 'and', 'almost', 'every', 'body', 'was', 'concerned.—Colonel', 'Brandon', 'rose', 'up', 'and', 'went', 'to', 'them', 'without', 'knowing', 'what', 'he', 'did.—Mrs', '.', 'Jennings', ',', 'with', 'a', 'very', 'intelligent', '“', 'Ah', '!', 'poor', 'dear', ',', '”', 'immediately', 'gave', 'her', 'her', 'salts', ';', 'and', 'Sir', 'John', 'felt', 'so', 'desperately', 'enraged', 'against', 'the', 'author', 'of', 'this', 'nervous', 'distress', ',', 'that', 'he', 'instantly', 'changed', 'his', 'seat', 'to', 'one', 'close', 'by', 'Lucy', 'Steele', ',', 'and', 'gave', 'her', ',', 'in', 'a', 'whisper', ',', 'a', 'brief', 'account', 'of', 'the', 'whole', 'shocking', 'affair', '.', 'In', 'a', 'few', 'minutes', ',', 'however', ',', 'Marianne', 'was', 'recovered', 'enough', 'to', 'put', 'an', 'end', 'to', 'the', 'bustle', ',', 'and', 'sit', 'down', 'among', 'the', 'rest', ';', 'though', 'her', 'spirits', 'retained', 'the', 'impression', 'of', 'what', 'had', 'passed', ',', 'the', 'whole', 'evening', '.', '“', 'Poor', 'Marianne', '!', '”', 'said', 'her', 'brother', 'to', 'Colonel', 'Brandon', ',', 'in', 'a', 'low', 'voice', ',', 'as', 'soon', 'as', 'he', 'could', 'secure', 'his', 'attention', ':', '“', 'She', 'has', 'not', 'such', 'good', 'health', 'as', 'her', 'sister', ',', '—she', 'is', 'very', 'nervous', ',', '—she', 'has', 'not', 'Elinor', '’', 's', 'constitution', ';', '—and', 'one', 'must', 'allow', 'that', 'there', 'is', 'something', 'very', 'trying', 'to', 'a', 'young', 'woman', 'who', '_has', 'been_', 'a', 'beauty', 'in', 'the', 'loss', 'of', 'her', 'personal', 'attractions', '.', 'You', 'would', 'not', 'think', 'it', 'perhaps', ',', 'but', 'Marianne', '_was_', 'remarkably', 'handsome', 'a', 'few', 'months', 'ago', ';', 'quite', 'as', 'handsome', 'as', 'Elinor', '.', 'Now', 'you', 'see', 'it', 'is', 'all', 'gone.', '”', 'CHAPTER', 'XXXV', '.', 'Elinor', '’', 's', 'curiosity', 'to', 'see', 'Mrs.', 'Ferrars', 'was', 'satisfied', '.', 'She', 'had', 'found', 'in', 'her', 'every', 'thing', 'that', 'could', 'tend', 'to', 'make', 'a', 'farther', 'connection', 'between', 'the', 'families', 'undesirable', '.', 'She', 'had', 'seen', 'enough', 'of', 'her', 'pride', ',', 'her', 'meanness', ',', 'and', 'her', 'determined', 'prejudice', 'against', 'herself', ',', 'to', 'comprehend', 'all', 'the', 'difficulties', 'that', 'must', 'have', 'perplexed', 'the', 'engagement', ',', 'and', 'retarded', 'the', 'marriage', ',', 'of', 'Edward', 'and', 'herself', ',', 'had', 'he', 'been', 'otherwise', 'free', ';', 'and', 'she', 'had', 'seen', 'almost', 'enough', 'to', 'be', 'thankful', 'for', 'her', '_own_', 'sake', ',', 'that', 'one', 'greater', 'obstacle', 'preserved', 'her', 'from', 'suffering', 'under', 'any', 'other', 'of', 'Mrs.', 'Ferrars', '’', 's', 'creation', ',', 'preserved', 'her', 'from', 'all', 'dependence', 'upon', 'her', 'caprice', ',', 'or', 'any', 'solicitude', 'for', 'her', 'good', 'opinion', '.', 'Or', 'at', 'least', ',', 'if', 'she', 'did', 'not', 'bring', 'herself', 'quite', 'to', 'rejoice', 'in', 'Edward', '’', 's', 'being', 'fettered', 'to', 'Lucy', ',', 'she', 'determined', ',', 'that', 'had', 'Lucy', 'been', 'more', 'amiable', ',', 'she', '_ought_', 'to', 'have', 'rejoiced', '.', 'She', 'wondered', 'that', 'Lucy', '’', 's', 'spirits', 'could', 'be', 'so', 'very', 'much', 'elevated', 'by', 'the', 'civility', 'of', 'Mrs.', 'Ferrars', ';', '—that', 'her', 'interest', 'and', 'her', 'vanity', 'should', 'so', 'very', 'much', 'blind', 'her', 'as', 'to', 'make', 'the', 'attention', 'which', 'seemed', 'only', 'paid', 'her', 'because', 'she', 'was', '_not', 'Elinor_', ',', 'appear', 'a', 'compliment', 'to', 'herself—or', 'to', 'allow', 'her', 'to', 'derive', 'encouragement', 'from', 'a', 'preference', 'only', 'given', 'her', ',', 'because', 'her', 'real', 'situation', 'was', 'unknown', '.', 'But', 'that', 'it', 'was', 'so', ',', 'had', 'not', 'only', 'been', 'declared', 'by', 'Lucy', '’', 's', 'eyes', 'at', 'the', 'time', ',', 'but', 'was', 'declared', 'over', 'again', 'the', 'next', 'morning', 'more', 'openly', ',', 'for', 'at', 'her', 'particular', 'desire', ',', 'Lady', 'Middleton', 'set', 'her', 'down', 'in', 'Berkeley', 'Street', 'on', 'the', 'chance', 'of', 'seeing', 'Elinor', 'alone', ',', 'to', 'tell', 'her', 'how', 'happy', 'she', 'was', '.', 'The', 'chance', 'proved', 'a', 'lucky', 'one', ',', 'for', 'a', 'message', 'from', 'Mrs.', 'Palmer', 'soon', 'after', 'she', 'arrived', ',', 'carried', 'Mrs.', 'Jennings', 'away', '.', '“', 'My', 'dear', 'friend', ',', '”', 'cried', 'Lucy', ',', 'as', 'soon', 'as', 'they', 'were', 'by', 'themselves', ',', '“', 'I', 'come', 'to', 'talk', 'to', 'you', 'of', 'my', 'happiness', '.', 'Could', 'anything', 'be', 'so', 'flattering', 'as', 'Mrs.', 'Ferrars', '’', 's', 'way', 'of', 'treating', 'me', 'yesterday', '?', 'So', 'exceeding', 'affable', 'as', 'she', 'was', '!', 'You', 'know', 'how', 'I', 'dreaded', 'the', 'thoughts', 'of', 'seeing', 'her', ';', 'but', 'the', 'very', 'moment', 'I', 'was', 'introduced', ',', 'there', 'was', 'such', 'an', 'affability', 'in', 'her', 'behaviour', 'as', 'really', 'should', 'seem', 'to', 'say', ',', 'she', 'had', 'quite', 'took', 'a', 'fancy', 'to', 'me', '.', 'Now', 'was', 'not', 'it', 'so', '?', 'You', 'saw', 'it', 'all', ';', 'and', 'was', 'not', 'you', 'quite', 'struck', 'with', 'it', '?', '”', '“', 'She', 'was', 'certainly', 'very', 'civil', 'to', 'you.', '”', '“', 'Civil', '!', '—Did', 'you', 'see', 'nothing', 'but', 'only', 'civility', '?', '—I', 'saw', 'a', 'vast', 'deal', 'more', '.', 'Such', 'kindness', 'as', 'fell', 'to', 'the', 'share', 'of', 'nobody', 'but', 'me', '!', '—No', 'pride', ',', 'no', 'hauteur', ',', 'and', 'your', 'sister', 'just', 'the', 'same—all', 'sweetness', 'and', 'affability', '!', '”', 'Elinor', 'wished', 'to', 'talk', 'of', 'something', 'else', ',', 'but', 'Lucy', 'still', 'pressed', 'her', 'to', 'own', 'that', 'she', 'had', 'reason', 'for', 'her', 'happiness', ';', 'and', 'Elinor', 'was', 'obliged', 'to', 'go', 'on', '.', '“', 'Undoubtedly', ',', 'if', 'they', 'had', 'known', 'your', 'engagement', ',', '”', 'said', 'she', ',', '“', 'nothing', 'could', 'be', 'more', 'flattering', 'than', 'their', 'treatment', 'of', 'you', ';', '—but', 'as', 'that', 'was', 'not', 'the', 'case—', '”', '“', 'I', 'guessed', 'you', 'would', 'say', 'so', ',', '”', '—replied', 'Lucy', 'quickly—', '“', 'but', 'there', 'was', 'no', 'reason', 'in', 'the', 'world', 'why', 'Mrs.', 'Ferrars', 'should', 'seem', 'to', 'like', 'me', ',', 'if', 'she', 'did', 'not', ',', 'and', 'her', 'liking', 'me', 'is', 'every', 'thing', '.', 'You', 'shan', '’', 't', 'talk', 'me', 'out', 'of', 'my', 'satisfaction', '.', 'I', 'am', 'sure', 'it', 'will', 'all', 'end', 'well', ',', 'and', 'there', 'will', 'be', 'no', 'difficulties', 'at', 'all', ',', 'to', 'what', 'I', 'used', 'to', 'think', '.', 'Mrs.', 'Ferrars', 'is', 'a', 'charming', 'woman', ',', 'and', 'so', 'is', 'your', 'sister', '.', 'They', 'are', 'both', 'delightful', 'women', ',', 'indeed', '!', '—I', 'wonder', 'I', 'should', 'never', 'hear', 'you', 'say', 'how', 'agreeable', 'Mrs.', 'Dashwood', 'was', '!', '”', 'To', 'this', 'Elinor', 'had', 'no', 'answer', 'to', 'make', ',', 'and', 'did', 'not', 'attempt', 'any', '.', '“', 'Are', 'you', 'ill', ',', 'Miss', 'Dashwood', '?', '—you', 'seem', 'low—you', 'don', '’', 't', 'speak', ';', '—sure', 'you', 'an', '’', 't', 'well.', '”', '“', 'I', 'never', 'was', 'in', 'better', 'health.', '”', '“', 'I', 'am', 'glad', 'of', 'it', 'with', 'all', 'my', 'heart', ';', 'but', 'really', 'you', 'did', 'not', 'look', 'it', '.', 'I', 'should', 'be', 'sorry', 'to', 'have', '_you_', 'ill', ';', 'you', ',', 'that', 'have', 'been', 'the', 'greatest', 'comfort', 'to', 'me', 'in', 'the', 'world', '!', '—Heaven', 'knows', 'what', 'I', 'should', 'have', 'done', 'without', 'your', 'friendship.', '”', 'Elinor', 'tried', 'to', 'make', 'a', 'civil', 'answer', ',', 'though', 'doubting', 'her', 'own', 'success', '.', 'But', 'it', 'seemed', 'to', 'satisfy', 'Lucy', ',', 'for', 'she', 'directly', 'replied', ',', '“', 'Indeed', 'I', 'am', 'perfectly', 'convinced', 'of', 'your', 'regard', 'for', 'me', ',', 'and', 'next', 'to', 'Edward', '’', 's', 'love', ',', 'it', 'is', 'the', 'greatest', 'comfort', 'I', 'have', '.', 'Poor', 'Edward', '!', 'But', 'now', 'there', 'is', 'one', 'good', 'thing', ',', 'we', 'shall', 'be', 'able', 'to', 'meet', ',', 'and', 'meet', 'pretty', 'often', ',', 'for', 'Lady', 'Middleton', '’', 's', 'delighted', 'with', 'Mrs.', 'Dashwood', ',', 'so', 'we', 'shall', 'be', 'a', 'good', 'deal', 'in', 'Harley', 'Street', ',', 'I', 'dare', 'say', ',', 'and', 'Edward', 'spends', 'half', 'his', 'time', 'with', 'his', 'sister—besides', ',', 'Lady', 'Middleton', 'and', 'Mrs.', 'Ferrars', 'will', 'visit', 'now', ';', '—and', 'Mrs.', 'Ferrars', 'and', 'your', 'sister', 'were', 'both', 'so', 'good', 'to', 'say', 'more', 'than', 'once', ',', 'they', 'should', 'always', 'be', 'glad', 'to', 'see', 'me', '.', 'They', 'are', 'such', 'charming', 'women', '!', '—I', 'am', 'sure', 'if', 'ever', 'you', 'tell', 'your', 'sister', 'what', 'I', 'think', 'of', 'her', ',', 'you', 'can', 'not', 'speak', 'too', 'high.', '”', 'But', 'Elinor', 'would', 'not', 'give', 'her', 'any', 'encouragement', 'to', 'hope', 'that', 'she', '_should_', 'tell', 'her', 'sister', '.', 'Lucy', 'continued', '.', '“', 'I', 'am', 'sure', 'I', 'should', 'have', 'seen', 'it', 'in', 'a', 'moment', ',', 'if', 'Mrs.', 'Ferrars', 'had', 'took', 'a', 'dislike', 'to', 'me', '.', 'If', 'she', 'had', 'only', 'made', 'me', 'a', 'formal', 'courtesy', ',', 'for', 'instance', ',', 'without', 'saying', 'a', 'word', ',', 'and', 'never', 'after', 'had', 'took', 'any', 'notice', 'of', 'me', ',', 'and', 'never', 'looked', 'at', 'me', 'in', 'a', 'pleasant', 'way—you', 'know', 'what', 'I', 'mean—if', 'I', 'had', 'been', 'treated', 'in', 'that', 'forbidding', 'sort', 'of', 'way', ',', 'I', 'should', 'have', 'gave', 'it', 'all', 'up', 'in', 'despair', '.', 'I', 'could', 'not', 'have', 'stood', 'it', '.', 'For', 'where', 'she', '_does_', 'dislike', ',', 'I', 'know', 'it', 'is', 'most', 'violent.', '”', 'Elinor', 'was', 'prevented', 'from', 'making', 'any', 'reply', 'to', 'this', 'civil', 'triumph', ',', 'by', 'the', 'door', '’', 's', 'being', 'thrown', 'open', ',', 'the', 'servant', '’', 's', 'announcing', 'Mr.', 'Ferrars', ',', 'and', 'Edward', '’', 's', 'immediately', 'walking', 'in', '.', 'It', 'was', 'a', 'very', 'awkward', 'moment', ';', 'and', 'the', 'countenance', 'of', 'each', 'showed', 'that', 'it', 'was', 'so', '.', 'They', 'all', 'looked', 'exceedingly', 'foolish', ';', 'and', 'Edward', 'seemed', 'to', 'have', 'as', 'great', 'an', 'inclination', 'to', 'walk', 'out', 'of', 'the', 'room', 'again', ',', 'as', 'to', 'advance', 'farther', 'into', 'it', '.', 'The', 'very', 'circumstance', ',', 'in', 'its', 'unpleasantest', 'form', ',', 'which', 'they', 'would', 'each', 'have', 'been', 'most', 'anxious', 'to', 'avoid', ',', 'had', 'fallen', 'on', 'them.—They', 'were', 'not', 'only', 'all', 'three', 'together', ',', 'but', 'were', 'together', 'without', 'the', 'relief', 'of', 'any', 'other', 'person', '.', 'The', 'ladies', 'recovered', 'themselves', 'first', '.', 'It', 'was', 'not', 'Lucy', '’', 's', 'business', 'to', 'put', 'herself', 'forward', ',', 'and', 'the', 'appearance', 'of', 'secrecy', 'must', 'still', 'be', 'kept', 'up', '.', 'She', 'could', 'therefore', 'only', '_look_', 'her', 'tenderness', ',', 'and', 'after', 'slightly', 'addressing', 'him', ',', 'said', 'no', 'more', '.', 'But', 'Elinor', 'had', 'more', 'to', 'do', ';', 'and', 'so', 'anxious', 'was', 'she', ',', 'for', 'his', 'sake', 'and', 'her', 'own', ',', 'to', 'do', 'it', 'well', ',', 'that', 'she', 'forced', 'herself', ',', 'after', 'a', 'moment', '’', 's', 'recollection', ',', 'to', 'welcome', 'him', ',', 'with', 'a', 'look', 'and', 'manner', 'that', 'were', 'almost', 'easy', ',', 'and', 'almost', 'open', ';', 'and', 'another', 'struggle', ',', 'another', 'effort', 'still', 'improved', 'them', '.', 'She', 'would', 'not', 'allow', 'the', 'presence', 'of', 'Lucy', ',', 'nor', 'the', 'consciousness', 'of', 'some', 'injustice', 'towards', 'herself', ',', 'to', 'deter', 'her', 'from', 'saying', 'that', 'she', 'was', 'happy', 'to', 'see', 'him', ',', 'and', 'that', 'she', 'had', 'very', 'much', 'regretted', 'being', 'from', 'home', ',', 'when', 'he', 'called', 'before', 'in', 'Berkeley', 'Street', '.', 'She', 'would', 'not', 'be', 'frightened', 'from', 'paying', 'him', 'those', 'attentions', 'which', ',', 'as', 'a', 'friend', 'and', 'almost', 'a', 'relation', ',', 'were', 'his', 'due', ',', 'by', 'the', 'observant', 'eyes', 'of', 'Lucy', ',', 'though', 'she', 'soon', 'perceived', 'them', 'to', 'be', 'narrowly', 'watching', 'her', '.', 'Her', 'manners', 'gave', 'some', 're-assurance', 'to', 'Edward', ',', 'and', 'he', 'had', 'courage', 'enough', 'to', 'sit', 'down', ';', 'but', 'his', 'embarrassment', 'still', 'exceeded', 'that', 'of', 'the', 'ladies', 'in', 'a', 'proportion', ',', 'which', 'the', 'case', 'rendered', 'reasonable', ',', 'though', 'his', 'sex', 'might', 'make', 'it', 'rare', ';', 'for', 'his', 'heart', 'had', 'not', 'the', 'indifference', 'of', 'Lucy', '’', 's', ',', 'nor', 'could', 'his', 'conscience', 'have', 'quite', 'the', 'ease', 'of', 'Elinor', '’', 's', '.', 'Lucy', ',', 'with', 'a', 'demure', 'and', 'settled', 'air', ',', 'seemed', 'determined', 'to', 'make', 'no', 'contribution', 'to', 'the', 'comfort', 'of', 'the', 'others', ',', 'and', 'would', 'not', 'say', 'a', 'word', ';', 'and', 'almost', 'every', 'thing', 'that', '_was_', 'said', ',', 'proceeded', 'from', 'Elinor', ',', 'who', 'was', 'obliged', 'to', 'volunteer', 'all', 'the', 'information', 'about', 'her', 'mother', '’', 's', 'health', ',', 'their', 'coming', 'to', 'town', ',', '&', 'c.', 'which', 'Edward', 'ought', 'to', 'have', 'inquired', 'about', ',', 'but', 'never', 'did', '.', 'Her', 'exertions', 'did', 'not', 'stop', 'here', ';', 'for', 'she', 'soon', 'afterwards', 'felt', 'herself', 'so', 'heroically', 'disposed', 'as', 'to', 'determine', ',', 'under', 'pretence', 'of', 'fetching', 'Marianne', ',', 'to', 'leave', 'the', 'others', 'by', 'themselves', ';', 'and', 'she', 'really', 'did', 'it', ',', 'and', '_that_', 'in', 'the', 'handsomest', 'manner', ',', 'for', 'she', 'loitered', 'away', 'several', 'minutes', 'on', 'the', 'landing-place', ',', 'with', 'the', 'most', 'high-minded', 'fortitude', ',', 'before', 'she', 'went', 'to', 'her', 'sister', '.', 'When', 'that', 'was', 'once', 'done', ',', 'however', ',', 'it', 'was', 'time', 'for', 'the', 'raptures', 'of', 'Edward', 'to', 'cease', ';', 'for', 'Marianne', '’', 's', 'joy', 'hurried', 'her', 'into', 'the', 'drawing-room', 'immediately', '.', 'Her', 'pleasure', 'in', 'seeing', 'him', 'was', 'like', 'every', 'other', 'of', 'her', 'feelings', ',', 'strong', 'in', 'itself', ',', 'and', 'strongly', 'spoken', '.', 'She', 'met', 'him', 'with', 'a', 'hand', 'that', 'would', 'be', 'taken', ',', 'and', 'a', 'voice', 'that', 'expressed', 'the', 'affection', 'of', 'a', 'sister', '.', '“', 'Dear', 'Edward', '!', '”', 'she', 'cried', ',', '“', 'this', 'is', 'a', 'moment', 'of', 'great', 'happiness', '!', '—This', 'would', 'almost', 'make', 'amends', 'for', 'every', 'thing', '!', '”', 'Edward', 'tried', 'to', 'return', 'her', 'kindness', 'as', 'it', 'deserved', ',', 'but', 'before', 'such', 'witnesses', 'he', 'dared', 'not', 'say', 'half', 'what', 'he', 'really', 'felt', '.', 'Again', 'they', 'all', 'sat', 'down', ',', 'and', 'for', 'a', 'moment', 'or', 'two', 'all', 'were', 'silent', ';', 'while', 'Marianne', 'was', 'looking', 'with', 'the', 'most', 'speaking', 'tenderness', ',', 'sometimes', 'at', 'Edward', 'and', 'sometimes', 'at', 'Elinor', ',', 'regretting', 'only', 'that', 'their', 'delight', 'in', 'each', 'other', 'should', 'be', 'checked', 'by', 'Lucy', '’', 's', 'unwelcome', 'presence', '.', 'Edward', 'was', 'the', 'first', 'to', 'speak', ',', 'and', 'it', 'was', 'to', 'notice', 'Marianne', '’', 's', 'altered', 'looks', ',', 'and', 'express', 'his', 'fear', 'of', 'her', 'not', 'finding', 'London', 'agree', 'with', 'her', '.', '“', 'Oh', ',', 'don', '’', 't', 'think', 'of', 'me', '!', '”', 'she', 'replied', 'with', 'spirited', 'earnestness', ',', 'though', 'her', 'eyes', 'were', 'filled', 'with', 'tears', 'as', 'she', 'spoke', ',', '“', 'don', '’', 't', 'think', 'of', '_my_', 'health', '.', 'Elinor', 'is', 'well', ',', 'you', 'see', '.', 'That', 'must', 'be', 'enough', 'for', 'us', 'both.', '”', 'This', 'remark', 'was', 'not', 'calculated', 'to', 'make', 'Edward', 'or', 'Elinor', 'more', 'easy', ',', 'nor', 'to', 'conciliate', 'the', 'good', 'will', 'of', 'Lucy', ',', 'who', 'looked', 'up', 'at', 'Marianne', 'with', 'no', 'very', 'benignant', 'expression', '.', '“', 'Do', 'you', 'like', 'London', '?', '”', 'said', 'Edward', ',', 'willing', 'to', 'say', 'any', 'thing', 'that', 'might', 'introduce', 'another', 'subject', '.', '“', 'Not', 'at', 'all', '.', 'I', 'expected', 'much', 'pleasure', 'in', 'it', ',', 'but', 'I', 'have', 'found', 'none', '.', 'The', 'sight', 'of', 'you', ',', 'Edward', ',', 'is', 'the', 'only', 'comfort', 'it', 'has', 'afforded', ';', 'and', 'thank', 'Heaven', '!', 'you', 'are', 'what', 'you', 'always', 'were', '!', '”', 'She', 'paused—no', 'one', 'spoke', '.', '“', 'I', 'think', ',', 'Elinor', ',', '”', 'she', 'presently', 'added', ',', '“', 'we', 'must', 'employ', 'Edward', 'to', 'take', 'care', 'of', 'us', 'in', 'our', 'return', 'to', 'Barton', '.', 'In', 'a', 'week', 'or', 'two', ',', 'I', 'suppose', ',', 'we', 'shall', 'be', 'going', ';', 'and', ',', 'I', 'trust', ',', 'Edward', 'will', 'not', 'be', 'very', 'unwilling', 'to', 'accept', 'the', 'charge.', '”', 'Poor', 'Edward', 'muttered', 'something', ',', 'but', 'what', 'it', 'was', ',', 'nobody', 'knew', ',', 'not', 'even', 'himself', '.', 'But', 'Marianne', ',', 'who', 'saw', 'his', 'agitation', ',', 'and', 'could', 'easily', 'trace', 'it', 'to', 'whatever', 'cause', 'best', 'pleased', 'herself', ',', 'was', 'perfectly', 'satisfied', ',', 'and', 'soon', 'talked', 'of', 'something', 'else', '.', '“', 'We', 'spent', 'such', 'a', 'day', ',', 'Edward', ',', 'in', 'Harley', 'Street', 'yesterday', '!', 'So', 'dull', ',', 'so', 'wretchedly', 'dull', '!', '—But', 'I', 'have', 'much', 'to', 'say', 'to', 'you', 'on', 'that', 'head', ',', 'which', 'can', 'not', 'be', 'said', 'now.', '”', 'And', 'with', 'this', 'admirable', 'discretion', 'did', 'she', 'defer', 'the', 'assurance', 'of', 'her', 'finding', 'their', 'mutual', 'relatives', 'more', 'disagreeable', 'than', 'ever', ',', 'and', 'of', 'her', 'being', 'particularly', 'disgusted', 'with', 'his', 'mother', ',', 'till', 'they', 'were', 'more', 'in', 'private', '.', '“', 'But', 'why', 'were', 'you', 'not', 'there', ',', 'Edward', '?', '—Why', 'did', 'you', 'not', 'come', '?', '”', '“', 'I', 'was', 'engaged', 'elsewhere.', '”', '“', 'Engaged', '!', 'But', 'what', 'was', 'that', ',', 'when', 'such', 'friends', 'were', 'to', 'be', 'met', '?', '”', '“', 'Perhaps', ',', 'Miss', 'Marianne', ',', '”', 'cried', 'Lucy', ',', 'eager', 'to', 'take', 'some', 'revenge', 'on', 'her', ',', '“', 'you', 'think', 'young', 'men', 'never', 'stand', 'upon', 'engagements', ',', 'if', 'they', 'have', 'no', 'mind', 'to', 'keep', 'them', ',', 'little', 'as', 'well', 'as', 'great.', '”', 'Elinor', 'was', 'very', 'angry', ',', 'but', 'Marianne', 'seemed', 'entirely', 'insensible', 'of', 'the', 'sting', ';', 'for', 'she', 'calmly', 'replied', ',', '“', 'Not', 'so', ',', 'indeed', ';', 'for', ',', 'seriously', 'speaking', ',', 'I', 'am', 'very', 'sure', 'that', 'conscience', 'only', 'kept', 'Edward', 'from', 'Harley', 'Street', '.', 'And', 'I', 'really', 'believe', 'he', '_has_', 'the', 'most', 'delicate', 'conscience', 'in', 'the', 'world', ';', 'the', 'most', 'scrupulous', 'in', 'performing', 'every', 'engagement', ',', 'however', 'minute', ',', 'and', 'however', 'it', 'may', 'make', 'against', 'his', 'interest', 'or', 'pleasure', '.', 'He', 'is', 'the', 'most', 'fearful', 'of', 'giving', 'pain', ',', 'of', 'wounding', 'expectation', ',', 'and', 'the', 'most', 'incapable', 'of', 'being', 'selfish', ',', 'of', 'any', 'body', 'I', 'ever', 'saw', '.', 'Edward', ',', 'it', 'is', 'so', ',', 'and', 'I', 'will', 'say', 'it', '.', 'What', '!', 'are', 'you', 'never', 'to', 'hear', 'yourself', 'praised', '!', '—Then', 'you', 'must', 'be', 'no', 'friend', 'of', 'mine', ';', 'for', 'those', 'who', 'will', 'accept', 'of', 'my', 'love', 'and', 'esteem', ',', 'must', 'submit', 'to', 'my', 'open', 'commendation.', '”', 'The', 'nature', 'of', 'her', 'commendation', ',', 'in', 'the', 'present', 'case', ',', 'however', ',', 'happened', 'to', 'be', 'particularly', 'ill-suited', 'to', 'the', 'feelings', 'of', 'two', 'thirds', 'of', 'her', 'auditors', ',', 'and', 'was', 'so', 'very', 'unexhilarating', 'to', 'Edward', ',', 'that', 'he', 'very', 'soon', 'got', 'up', 'to', 'go', 'away', '.', '“', 'Going', 'so', 'soon', '!', '”', 'said', 'Marianne', ';', '“', 'my', 'dear', 'Edward', ',', 'this', 'must', 'not', 'be.', '”', 'And', 'drawing', 'him', 'a', 'little', 'aside', ',', 'she', 'whispered', 'her', 'persuasion', 'that', 'Lucy', 'could', 'not', 'stay', 'much', 'longer', '.', 'But', 'even', 'this', 'encouragement', 'failed', ',', 'for', 'he', 'would', 'go', ';', 'and', 'Lucy', ',', 'who', 'would', 'have', 'outstaid', 'him', ',', 'had', 'his', 'visit', 'lasted', 'two', 'hours', ',', 'soon', 'afterwards', 'went', 'away', '.', '“', 'What', 'can', 'bring', 'her', 'here', 'so', 'often', '?', '”', 'said', 'Marianne', ',', 'on', 'her', 'leaving', 'them', '.', '“', 'Could', 'not', 'she', 'see', 'that', 'we', 'wanted', 'her', 'gone', '!', '—how', 'teazing', 'to', 'Edward', '!', '”', '“', 'Why', 'so', '?', '—we', 'were', 'all', 'his', 'friends', ',', 'and', 'Lucy', 'has', 'been', 'the', 'longest', 'known', 'to', 'him', 'of', 'any', '.', 'It', 'is', 'but', 'natural', 'that', 'he', 'should', 'like', 'to', 'see', 'her', 'as', 'well', 'as', 'ourselves.', '”', 'Marianne', 'looked', 'at', 'her', 'steadily', ',', 'and', 'said', ',', '“', 'You', 'know', ',', 'Elinor', ',', 'that', 'this', 'is', 'a', 'kind', 'of', 'talking', 'which', 'I', 'can', 'not', 'bear', '.', 'If', 'you', 'only', 'hope', 'to', 'have', 'your', 'assertion', 'contradicted', ',', 'as', 'I', 'must', 'suppose', 'to', 'be', 'the', 'case', ',', 'you', 'ought', 'to', 'recollect', 'that', 'I', 'am', 'the', 'last', 'person', 'in', 'the', 'world', 'to', 'do', 'it', '.', 'I', 'can', 'not', 'descend', 'to', 'be', 'tricked', 'out', 'of', 'assurances', ',', 'that', 'are', 'not', 'really', 'wanted.', '”', 'She', 'then', 'left', 'the', 'room', ';', 'and', 'Elinor', 'dared', 'not', 'follow', 'her', 'to', 'say', 'more', ',', 'for', 'bound', 'as', 'she', 'was', 'by', 'her', 'promise', 'of', 'secrecy', 'to', 'Lucy', ',', 'she', 'could', 'give', 'no', 'information', 'that', 'would', 'convince', 'Marianne', ';', 'and', 'painful', 'as', 'the', 'consequences', 'of', 'her', 'still', 'continuing', 'in', 'an', 'error', 'might', 'be', ',', 'she', 'was', 'obliged', 'to', 'submit', 'to', 'it', '.', 'All', 'that', 'she', 'could', 'hope', ',', 'was', 'that', 'Edward', 'would', 'not', 'often', 'expose', 'her', 'or', 'himself', 'to', 'the', 'distress', 'of', 'hearing', 'Marianne', '’', 's', 'mistaken', 'warmth', ',', 'nor', 'to', 'the', 'repetition', 'of', 'any', 'other', 'part', 'of', 'the', 'pain', 'that', 'had', 'attended', 'their', 'recent', 'meeting—and', 'this', 'she', 'had', 'every', 'reason', 'to', 'expect', '.', 'CHAPTER', 'XXXVI', '.', 'Within', 'a', 'few', 'days', 'after', 'this', 'meeting', ',', 'the', 'newspapers', 'announced', 'to', 'the', 'world', ',', 'that', 'the', 'lady', 'of', 'Thomas', 'Palmer', ',', 'Esq', '.', 'was', 'safely', 'delivered', 'of', 'a', 'son', 'and', 'heir', ';', 'a', 'very', 'interesting', 'and', 'satisfactory', 'paragraph', ',', 'at', 'least', 'to', 'all', 'those', 'intimate', 'connections', 'who', 'knew', 'it', 'before', '.', 'This', 'event', ',', 'highly', 'important', 'to', 'Mrs.', 'Jennings', '’', 's', 'happiness', ',', 'produced', 'a', 'temporary', 'alteration', 'in', 'the', 'disposal', 'of', 'her', 'time', ',', 'and', 'influenced', ',', 'in', 'a', 'like', 'degree', ',', 'the', 'engagements', 'of', 'her', 'young', 'friends', ';', 'for', 'as', 'she', 'wished', 'to', 'be', 'as', 'much', 'as', 'possible', 'with', 'Charlotte', ',', 'she', 'went', 'thither', 'every', 'morning', 'as', 'soon', 'as', 'she', 'was', 'dressed', ',', 'and', 'did', 'not', 'return', 'till', 'late', 'in', 'the', 'evening', ';', 'and', 'the', 'Miss', 'Dashwoods', ',', 'at', 'the', 'particular', 'request', 'of', 'the', 'Middletons', ',', 'spent', 'the', 'whole', 'of', 'every', 'day', 'in', 'Conduit', 'Street', '.', 'For', 'their', 'own', 'comfort', 'they', 'would', 'much', 'rather', 'have', 'remained', ',', 'at', 'least', 'all', 'the', 'morning', ',', 'in', 'Mrs.', 'Jennings', '’', 's', 'house', ';', 'but', 'it', 'was', 'not', 'a', 'thing', 'to', 'be', 'urged', 'against', 'the', 'wishes', 'of', 'everybody', '.', 'Their', 'hours', 'were', 'therefore', 'made', 'over', 'to', 'Lady', 'Middleton', 'and', 'the', 'two', 'Miss', 'Steeles', ',', 'by', 'whom', 'their', 'company', ',', 'in', 'fact', 'was', 'as', 'little', 'valued', ',', 'as', 'it', 'was', 'professedly', 'sought', '.', 'They', 'had', 'too', 'much', 'sense', 'to', 'be', 'desirable', 'companions', 'to', 'the', 'former', ';', 'and', 'by', 'the', 'latter', 'they', 'were', 'considered', 'with', 'a', 'jealous', 'eye', ',', 'as', 'intruding', 'on', '_their_', 'ground', ',', 'and', 'sharing', 'the', 'kindness', 'which', 'they', 'wanted', 'to', 'monopolize', '.', 'Though', 'nothing', 'could', 'be', 'more', 'polite', 'than', 'Lady', 'Middleton', '’', 's', 'behaviour', 'to', 'Elinor', 'and', 'Marianne', ',', 'she', 'did', 'not', 'really', 'like', 'them', 'at', 'all', '.', 'Because', 'they', 'neither', 'flattered', 'herself', 'nor', 'her', 'children', ',', 'she', 'could', 'not', 'believe', 'them', 'good-natured', ';', 'and', 'because', 'they', 'were', 'fond', 'of', 'reading', ',', 'she', 'fancied', 'them', 'satirical', ':', 'perhaps', 'without', 'exactly', 'knowing', 'what', 'it', 'was', 'to', 'be', 'satirical', ';', 'but', '_that_', 'did', 'not', 'signify', '.', 'It', 'was', 'censure', 'in', 'common', 'use', ',', 'and', 'easily', 'given', '.', 'Their', 'presence', 'was', 'a', 'restraint', 'both', 'on', 'her', 'and', 'on', 'Lucy', '.', 'It', 'checked', 'the', 'idleness', 'of', 'one', ',', 'and', 'the', 'business', 'of', 'the', 'other', '.', 'Lady', 'Middleton', 'was', 'ashamed', 'of', 'doing', 'nothing', 'before', 'them', ',', 'and', 'the', 'flattery', 'which', 'Lucy', 'was', 'proud', 'to', 'think', 'of', 'and', 'administer', 'at', 'other', 'times', ',', 'she', 'feared', 'they', 'would', 'despise', 'her', 'for', 'offering', '.', 'Miss', 'Steele', 'was', 'the', 'least', 'discomposed', 'of', 'the', 'three', ',', 'by', 'their', 'presence', ';', 'and', 'it', 'was', 'in', 'their', 'power', 'to', 'reconcile', 'her', 'to', 'it', 'entirely', '.', 'Would', 'either', 'of', 'them', 'only', 'have', 'given', 'her', 'a', 'full', 'and', 'minute', 'account', 'of', 'the', 'whole', 'affair', 'between', 'Marianne', 'and', 'Mr.', 'Willoughby', ',', 'she', 'would', 'have', 'thought', 'herself', 'amply', 'rewarded', 'for', 'the', 'sacrifice', 'of', 'the', 'best', 'place', 'by', 'the', 'fire', 'after', 'dinner', ',', 'which', 'their', 'arrival', 'occasioned', '.', 'But', 'this', 'conciliation', 'was', 'not', 'granted', ';', 'for', 'though', 'she', 'often', 'threw', 'out', 'expressions', 'of', 'pity', 'for', 'her', 'sister', 'to', 'Elinor', ',', 'and', 'more', 'than', 'once', 'dropt', 'a', 'reflection', 'on', 'the', 'inconstancy', 'of', 'beaux', 'before', 'Marianne', ',', 'no', 'effect', 'was', 'produced', ',', 'but', 'a', 'look', 'of', 'indifference', 'from', 'the', 'former', ',', 'or', 'of', 'disgust', 'in', 'the', 'latter', '.', 'An', 'effort', 'even', 'yet', 'lighter', 'might', 'have', 'made', 'her', 'their', 'friend', '.', 'Would', 'they', 'only', 'have', 'laughed', 'at', 'her', 'about', 'the', 'Doctor', '!', 'But', 'so', 'little', 'were', 'they', ',', 'any', 'more', 'than', 'the', 'others', ',', 'inclined', 'to', 'oblige', 'her', ',', 'that', 'if', 'Sir', 'John', 'dined', 'from', 'home', ',', 'she', 'might', 'spend', 'a', 'whole', 'day', 'without', 'hearing', 'any', 'other', 'raillery', 'on', 'the', 'subject', ',', 'than', 'what', 'she', 'was', 'kind', 'enough', 'to', 'bestow', 'on', 'herself', '.', 'All', 'these', 'jealousies', 'and', 'discontents', ',', 'however', ',', 'were', 'so', 'totally', 'unsuspected', 'by', 'Mrs.', 'Jennings', ',', 'that', 'she', 'thought', 'it', 'a', 'delightful', 'thing', 'for', 'the', 'girls', 'to', 'be', 'together', ';', 'and', 'generally', 'congratulated', 'her', 'young', 'friends', 'every', 'night', ',', 'on', 'having', 'escaped', 'the', 'company', 'of', 'a', 'stupid', 'old', 'woman', 'so', 'long', '.', 'She', 'joined', 'them', 'sometimes', 'at', 'Sir', 'John', '’', 's', ',', 'sometimes', 'at', 'her', 'own', 'house', ';', 'but', 'wherever', 'it', 'was', ',', 'she', 'always', 'came', 'in', 'excellent', 'spirits', ',', 'full', 'of', 'delight', 'and', 'importance', ',', 'attributing', 'Charlotte', '’', 's', 'well', 'doing', 'to', 'her', 'own', 'care', ',', 'and', 'ready', 'to', 'give', 'so', 'exact', ',', 'so', 'minute', 'a', 'detail', 'of', 'her', 'situation', ',', 'as', 'only', 'Miss', 'Steele', 'had', 'curiosity', 'enough', 'to', 'desire', '.', 'One', 'thing', '_did_', 'disturb', 'her', ';', 'and', 'of', 'that', 'she', 'made', 'her', 'daily', 'complaint', '.', 'Mr.', 'Palmer', 'maintained', 'the', 'common', ',', 'but', 'unfatherly', 'opinion', 'among', 'his', 'sex', ',', 'of', 'all', 'infants', 'being', 'alike', ';', 'and', 'though', 'she', 'could', 'plainly', 'perceive', ',', 'at', 'different', 'times', ',', 'the', 'most', 'striking', 'resemblance', 'between', 'this', 'baby', 'and', 'every', 'one', 'of', 'his', 'relations', 'on', 'both', 'sides', ',', 'there', 'was', 'no', 'convincing', 'his', 'father', 'of', 'it', ';', 'no', 'persuading', 'him', 'to', 'believe', 'that', 'it', 'was', 'not', 'exactly', 'like', 'every', 'other', 'baby', 'of', 'the', 'same', 'age', ';', 'nor', 'could', 'he', 'even', 'be', 'brought', 'to', 'acknowledge', 'the', 'simple', 'proposition', 'of', 'its', 'being', 'the', 'finest', 'child', 'in', 'the', 'world', '.', 'I', 'come', 'now', 'to', 'the', 'relation', 'of', 'a', 'misfortune', ',', 'which', 'about', 'this', 'time', 'befell', 'Mrs.', 'John', 'Dashwood', '.', 'It', 'so', 'happened', 'that', 'while', 'her', 'two', 'sisters', 'with', 'Mrs.', 'Jennings', 'were', 'first', 'calling', 'on', 'her', 'in', 'Harley', 'Street', ',', 'another', 'of', 'her', 'acquaintance', 'had', 'dropt', 'in—a', 'circumstance', 'in', 'itself', 'not', 'apparently', 'likely', 'to', 'produce', 'evil', 'to', 'her', '.', 'But', 'while', 'the', 'imaginations', 'of', 'other', 'people', 'will', 'carry', 'them', 'away', 'to', 'form', 'wrong', 'judgments', 'of', 'our', 'conduct', ',', 'and', 'to', 'decide', 'on', 'it', 'by', 'slight', 'appearances', ',', 'one', '’', 's', 'happiness', 'must', 'in', 'some', 'measure', 'be', 'always', 'at', 'the', 'mercy', 'of', 'chance', '.', 'In', 'the', 'present', 'instance', ',', 'this', 'last-arrived', 'lady', 'allowed', 'her', 'fancy', 'to', 'so', 'far', 'outrun', 'truth', 'and', 'probability', ',', 'that', 'on', 'merely', 'hearing', 'the', 'name', 'of', 'the', 'Miss', 'Dashwoods', ',', 'and', 'understanding', 'them', 'to', 'be', 'Mr.', 'Dashwood', '’', 's', 'sisters', ',', 'she', 'immediately', 'concluded', 'them', 'to', 'be', 'staying', 'in', 'Harley', 'Street', ';', 'and', 'this', 'misconstruction', 'produced', 'within', 'a', 'day', 'or', 'two', 'afterwards', ',', 'cards', 'of', 'invitation', 'for', 'them', 'as', 'well', 'as', 'for', 'their', 'brother', 'and', 'sister', ',', 'to', 'a', 'small', 'musical', 'party', 'at', 'her', 'house', '.', 'The', 'consequence', 'of', 'which', 'was', ',', 'that', 'Mrs.', 'John', 'Dashwood', 'was', 'obliged', 'to', 'submit', 'not', 'only', 'to', 'the', 'exceedingly', 'great', 'inconvenience', 'of', 'sending', 'her', 'carriage', 'for', 'the', 'Miss', 'Dashwoods', ',', 'but', ',', 'what', 'was', 'still', 'worse', ',', 'must', 'be', 'subject', 'to', 'all', 'the', 'unpleasantness', 'of', 'appearing', 'to', 'treat', 'them', 'with', 'attention', ':', 'and', 'who', 'could', 'tell', 'that', 'they', 'might', 'not', 'expect', 'to', 'go', 'out', 'with', 'her', 'a', 'second', 'time', '?', 'The', 'power', 'of', 'disappointing', 'them', ',', 'it', 'was', 'true', ',', 'must', 'always', 'be', 'hers', '.', 'But', 'that', 'was', 'not', 'enough', ';', 'for', 'when', 'people', 'are', 'determined', 'on', 'a', 'mode', 'of', 'conduct', 'which', 'they', 'know', 'to', 'be', 'wrong', ',', 'they', 'feel', 'injured', 'by', 'the', 'expectation', 'of', 'any', 'thing', 'better', 'from', 'them', '.', 'Marianne', 'had', 'now', 'been', 'brought', 'by', 'degrees', ',', 'so', 'much', 'into', 'the', 'habit', 'of', 'going', 'out', 'every', 'day', ',', 'that', 'it', 'was', 'become', 'a', 'matter', 'of', 'indifference', 'to', 'her', ',', 'whether', 'she', 'went', 'or', 'not', ':', 'and', 'she', 'prepared', 'quietly', 'and', 'mechanically', 'for', 'every', 'evening', '’', 's', 'engagement', ',', 'though', 'without', 'expecting', 'the', 'smallest', 'amusement', 'from', 'any', ',', 'and', 'very', 'often', 'without', 'knowing', ',', 'till', 'the', 'last', 'moment', ',', 'where', 'it', 'was', 'to', 'take', 'her', '.', 'To', 'her', 'dress', 'and', 'appearance', 'she', 'was', 'grown', 'so', 'perfectly', 'indifferent', ',', 'as', 'not', 'to', 'bestow', 'half', 'the', 'consideration', 'on', 'it', ',', 'during', 'the', 'whole', 'of', 'her', 'toilet', ',', 'which', 'it', 'received', 'from', 'Miss', 'Steele', 'in', 'the', 'first', 'five', 'minutes', 'of', 'their', 'being', 'together', ',', 'when', 'it', 'was', 'finished', '.', 'Nothing', 'escaped', '_her_', 'minute', 'observation', 'and', 'general', 'curiosity', ';', 'she', 'saw', 'every', 'thing', ',', 'and', 'asked', 'every', 'thing', ';', 'was', 'never', 'easy', 'till', 'she', 'knew', 'the', 'price', 'of', 'every', 'part', 'of', 'Marianne', '’', 's', 'dress', ';', 'could', 'have', 'guessed', 'the', 'number', 'of', 'her', 'gowns', 'altogether', 'with', 'better', 'judgment', 'than', 'Marianne', 'herself', ',', 'and', 'was', 'not', 'without', 'hopes', 'of', 'finding', 'out', 'before', 'they', 'parted', ',', 'how', 'much', 'her', 'washing', 'cost', 'per', 'week', ',', 'and', 'how', 'much', 'she', 'had', 'every', 'year', 'to', 'spend', 'upon', 'herself', '.', 'The', 'impertinence', 'of', 'these', 'kind', 'of', 'scrutinies', ',', 'moreover', ',', 'was', 'generally', 'concluded', 'with', 'a', 'compliment', ',', 'which', 'though', 'meant', 'as', 'its', 'douceur', ',', 'was', 'considered', 'by', 'Marianne', 'as', 'the', 'greatest', 'impertinence', 'of', 'all', ';', 'for', 'after', 'undergoing', 'an', 'examination', 'into', 'the', 'value', 'and', 'make', 'of', 'her', 'gown', ',', 'the', 'colour', 'of', 'her', 'shoes', ',', 'and', 'the', 'arrangement', 'of', 'her', 'hair', ',', 'she', 'was', 'almost', 'sure', 'of', 'being', 'told', 'that', 'upon', '“', 'her', 'word', 'she', 'looked', 'vastly', 'smart', ',', 'and', 'she', 'dared', 'to', 'say', 'she', 'would', 'make', 'a', 'great', 'many', 'conquests.', '”', 'With', 'such', 'encouragement', 'as', 'this', ',', 'was', 'she', 'dismissed', 'on', 'the', 'present', 'occasion', ',', 'to', 'her', 'brother', '’', 's', 'carriage', ';', 'which', 'they', 'were', 'ready', 'to', 'enter', 'five', 'minutes', 'after', 'it', 'stopped', 'at', 'the', 'door', ',', 'a', 'punctuality', 'not', 'very', 'agreeable', 'to', 'their', 'sister-in-law', ',', 'who', 'had', 'preceded', 'them', 'to', 'the', 'house', 'of', 'her', 'acquaintance', ',', 'and', 'was', 'there', 'hoping', 'for', 'some', 'delay', 'on', 'their', 'part', 'that', 'might', 'inconvenience', 'either', 'herself', 'or', 'her', 'coachman', '.', 'The', 'events', 'of', 'this', 'evening', 'were', 'not', 'very', 'remarkable', '.', 'The', 'party', ',', 'like', 'other', 'musical', 'parties', ',', 'comprehended', 'a', 'great', 'many', 'people', 'who', 'had', 'real', 'taste', 'for', 'the', 'performance', ',', 'and', 'a', 'great', 'many', 'more', 'who', 'had', 'none', 'at', 'all', ';', 'and', 'the', 'performers', 'themselves', 'were', ',', 'as', 'usual', ',', 'in', 'their', 'own', 'estimation', ',', 'and', 'that', 'of', 'their', 'immediate', 'friends', ',', 'the', 'first', 'private', 'performers', 'in', 'England', '.', 'As', 'Elinor', 'was', 'neither', 'musical', ',', 'nor', 'affecting', 'to', 'be', 'so', ',', 'she', 'made', 'no', 'scruple', 'of', 'turning', 'her', 'eyes', 'from', 'the', 'grand', 'pianoforte', ',', 'whenever', 'it', 'suited', 'her', ',', 'and', 'unrestrained', 'even', 'by', 'the', 'presence', 'of', 'a', 'harp', ',', 'and', 'violoncello', ',', 'would', 'fix', 'them', 'at', 'pleasure', 'on', 'any', 'other', 'object', 'in', 'the', 'room', '.', 'In', 'one', 'of', 'these', 'excursive', 'glances', 'she', 'perceived', 'among', 'a', 'group', 'of', 'young', 'men', ',', 'the', 'very', 'he', ',', 'who', 'had', 'given', 'them', 'a', 'lecture', 'on', 'toothpick-cases', 'at', 'Gray', '’', 's', '.', 'She', 'perceived', 'him', 'soon', 'afterwards', 'looking', 'at', 'herself', ',', 'and', 'speaking', 'familiarly', 'to', 'her', 'brother', ';', 'and', 'had', 'just', 'determined', 'to', 'find', 'out', 'his', 'name', 'from', 'the', 'latter', ',', 'when', 'they', 'both', 'came', 'towards', 'her', ',', 'and', 'Mr.', 'Dashwood', 'introduced', 'him', 'to', 'her', 'as', 'Mr.', 'Robert', 'Ferrars', '.', 'He', 'addressed', 'her', 'with', 'easy', 'civility', ',', 'and', 'twisted', 'his', 'head', 'into', 'a', 'bow', 'which', 'assured', 'her', 'as', 'plainly', 'as', 'words', 'could', 'have', 'done', ',', 'that', 'he', 'was', 'exactly', 'the', 'coxcomb', 'she', 'had', 'heard', 'him', 'described', 'to', 'be', 'by', 'Lucy', '.', 'Happy', 'had', 'it', 'been', 'for', 'her', ',', 'if', 'her', 'regard', 'for', 'Edward', 'had', 'depended', 'less', 'on', 'his', 'own', 'merit', ',', 'than', 'on', 'the', 'merit', 'of', 'his', 'nearest', 'relations', '!', 'For', 'then', 'his', 'brother', '’', 's', 'bow', 'must', 'have', 'given', 'the', 'finishing', 'stroke', 'to', 'what', 'the', 'ill-humour', 'of', 'his', 'mother', 'and', 'sister', 'would', 'have', 'begun', '.', 'But', 'while', 'she', 'wondered', 'at', 'the', 'difference', 'of', 'the', 'two', 'young', 'men', ',', 'she', 'did', 'not', 'find', 'that', 'the', 'emptiness', 'and', 'conceit', 'of', 'the', 'one', ',', 'put', 'her', 'out', 'of', 'all', 'charity', 'with', 'the', 'modesty', 'and', 'worth', 'of', 'the', 'other', '.', 'Why', 'they', '_were_', 'different', ',', 'Robert', 'explained', 'to', 'her', 'himself', 'in', 'the', 'course', 'of', 'a', 'quarter', 'of', 'an', 'hour', '’', 's', 'conversation', ';', 'for', ',', 'talking', 'of', 'his', 'brother', ',', 'and', 'lamenting', 'the', 'extreme', '_gaucherie_', 'which', 'he', 'really', 'believed', 'kept', 'him', 'from', 'mixing', 'in', 'proper', 'society', ',', 'he', 'candidly', 'and', 'generously', 'attributed', 'it', 'much', 'less', 'to', 'any', 'natural', 'deficiency', ',', 'than', 'to', 'the', 'misfortune', 'of', 'a', 'private', 'education', ';', 'while', 'he', 'himself', ',', 'though', 'probably', 'without', 'any', 'particular', ',', 'any', 'material', 'superiority', 'by', 'nature', ',', 'merely', 'from', 'the', 'advantage', 'of', 'a', 'public', 'school', ',', 'was', 'as', 'well', 'fitted', 'to', 'mix', 'in', 'the', 'world', 'as', 'any', 'other', 'man', '.', '“', 'Upon', 'my', 'soul', ',', '”', 'he', 'added', ',', '“', 'I', 'believe', 'it', 'is', 'nothing', 'more', ';', 'and', 'so', 'I', 'often', 'tell', 'my', 'mother', ',', 'when', 'she', 'is', 'grieving', 'about', 'it', '.', '‘', 'My', 'dear', 'Madam', ',', '’', 'I', 'always', 'say', 'to', 'her', ',', '‘', 'you', 'must', 'make', 'yourself', 'easy', '.', 'The', 'evil', 'is', 'now', 'irremediable', ',', 'and', 'it', 'has', 'been', 'entirely', 'your', 'own', 'doing', '.', 'Why', 'would', 'you', 'be', 'persuaded', 'by', 'my', 'uncle', ',', 'Sir', 'Robert', ',', 'against', 'your', 'own', 'judgment', ',', 'to', 'place', 'Edward', 'under', 'private', 'tuition', ',', 'at', 'the', 'most', 'critical', 'time', 'of', 'his', 'life', '?', 'If', 'you', 'had', 'only', 'sent', 'him', 'to', 'Westminster', 'as', 'well', 'as', 'myself', ',', 'instead', 'of', 'sending', 'him', 'to', 'Mr.', 'Pratt', '’', 's', ',', 'all', 'this', 'would', 'have', 'been', 'prevented.', '’', 'This', 'is', 'the', 'way', 'in', 'which', 'I', 'always', 'consider', 'the', 'matter', ',', 'and', 'my', 'mother', 'is', 'perfectly', 'convinced', 'of', 'her', 'error.', '”', 'Elinor', 'would', 'not', 'oppose', 'his', 'opinion', ',', 'because', ',', 'whatever', 'might', 'be', 'her', 'general', 'estimation', 'of', 'the', 'advantage', 'of', 'a', 'public', 'school', ',', 'she', 'could', 'not', 'think', 'of', 'Edward', '’', 's', 'abode', 'in', 'Mr.', 'Pratt', '’', 's', 'family', ',', 'with', 'any', 'satisfaction', '.', '“', 'You', 'reside', 'in', 'Devonshire', ',', 'I', 'think', ',', '”', '—was', 'his', 'next', 'observation', ',', '“', 'in', 'a', 'cottage', 'near', 'Dawlish.', '”', 'Elinor', 'set', 'him', 'right', 'as', 'to', 'its', 'situation', ';', 'and', 'it', 'seemed', 'rather', 'surprising', 'to', 'him', 'that', 'anybody', 'could', 'live', 'in', 'Devonshire', ',', 'without', 'living', 'near', 'Dawlish', '.', 'He', 'bestowed', 'his', 'hearty', 'approbation', 'however', 'on', 'their', 'species', 'of', 'house', '.', '“', 'For', 'my', 'own', 'part', ',', '”', 'said', 'he', ',', '“', 'I', 'am', 'excessively', 'fond', 'of', 'a', 'cottage', ';', 'there', 'is', 'always', 'so', 'much', 'comfort', ',', 'so', 'much', 'elegance', 'about', 'them', '.', 'And', 'I', 'protest', ',', 'if', 'I', 'had', 'any', 'money', 'to', 'spare', ',', 'I', 'should', 'buy', 'a', 'little', 'land', 'and', 'build', 'one', 'myself', ',', 'within', 'a', 'short', 'distance', 'of', 'London', ',', 'where', 'I', 'might', 'drive', 'myself', 'down', 'at', 'any', 'time', ',', 'and', 'collect', 'a', 'few', 'friends', 'about', 'me', ',', 'and', 'be', 'happy', '.', 'I', 'advise', 'every', 'body', 'who', 'is', 'going', 'to', 'build', ',', 'to', 'build', 'a', 'cottage', '.', 'My', 'friend', 'Lord', 'Courtland', 'came', 'to', 'me', 'the', 'other', 'day', 'on', 'purpose', 'to', 'ask', 'my', 'advice', ',', 'and', 'laid', 'before', 'me', 'three', 'different', 'plans', 'of', 'Bonomi', '’', 's', '.', 'I', 'was', 'to', 'decide', 'on', 'the', 'best', 'of', 'them', '.', '‘', 'My', 'dear', 'Courtland', ',', '’', 'said', 'I', ',', 'immediately', 'throwing', 'them', 'all', 'into', 'the', 'fire', ',', '‘', 'do', 'not', 'adopt', 'either', 'of', 'them', ',', 'but', 'by', 'all', 'means', 'build', 'a', 'cottage.', '’', 'And', 'that', 'I', 'fancy', ',', 'will', 'be', 'the', 'end', 'of', 'it', '.', '“', 'Some', 'people', 'imagine', 'that', 'there', 'can', 'be', 'no', 'accommodations', ',', 'no', 'space', 'in', 'a', 'cottage', ';', 'but', 'this', 'is', 'all', 'a', 'mistake', '.', 'I', 'was', 'last', 'month', 'at', 'my', 'friend', 'Elliott', '’', 's', ',', 'near', 'Dartford', '.', 'Lady', 'Elliott', 'wished', 'to', 'give', 'a', 'dance', '.', '‘', 'But', 'how', 'can', 'it', 'be', 'done', '?', '’', 'said', 'she', ';', '‘', 'my', 'dear', 'Ferrars', ',', 'do', 'tell', 'me', 'how', 'it', 'is', 'to', 'be', 'managed', '.', 'There', 'is', 'not', 'a', 'room', 'in', 'this', 'cottage', 'that', 'will', 'hold', 'ten', 'couple', ',', 'and', 'where', 'can', 'the', 'supper', 'be', '?', '’', '_I_', 'immediately', 'saw', 'that', 'there', 'could', 'be', 'no', 'difficulty', 'in', 'it', ',', 'so', 'I', 'said', ',', '‘', 'My', 'dear', 'Lady', 'Elliott', ',', 'do', 'not', 'be', 'uneasy', '.', 'The', 'dining', 'parlour', 'will', 'admit', 'eighteen', 'couple', 'with', 'ease', ';', 'card-tables', 'may', 'be', 'placed', 'in', 'the', 'drawing-room', ';', 'the', 'library', 'may', 'be', 'open', 'for', 'tea', 'and', 'other', 'refreshments', ';', 'and', 'let', 'the', 'supper', 'be', 'set', 'out', 'in', 'the', 'saloon.', '’', 'Lady', 'Elliott', 'was', 'delighted', 'with', 'the', 'thought', '.', 'We', 'measured', 'the', 'dining-room', ',', 'and', 'found', 'it', 'would', 'hold', 'exactly', 'eighteen', 'couple', ',', 'and', 'the', 'affair', 'was', 'arranged', 'precisely', 'after', 'my', 'plan', '.', 'So', 'that', ',', 'in', 'fact', ',', 'you', 'see', ',', 'if', 'people', 'do', 'but', 'know', 'how', 'to', 'set', 'about', 'it', ',', 'every', 'comfort', 'may', 'be', 'as', 'well', 'enjoyed', 'in', 'a', 'cottage', 'as', 'in', 'the', 'most', 'spacious', 'dwelling.', '”', 'Elinor', 'agreed', 'to', 'it', 'all', ',', 'for', 'she', 'did', 'not', 'think', 'he', 'deserved', 'the', 'compliment', 'of', 'rational', 'opposition', '.', 'As', 'John', 'Dashwood', 'had', 'no', 'more', 'pleasure', 'in', 'music', 'than', 'his', 'eldest', 'sister', ',', 'his', 'mind', 'was', 'equally', 'at', 'liberty', 'to', 'fix', 'on', 'any', 'thing', 'else', ';', 'and', 'a', 'thought', 'struck', 'him', 'during', 'the', 'evening', ',', 'which', 'he', 'communicated', 'to', 'his', 'wife', ',', 'for', 'her', 'approbation', ',', 'when', 'they', 'got', 'home', '.', 'The', 'consideration', 'of', 'Mrs.', 'Dennison', '’', 's', 'mistake', ',', 'in', 'supposing', 'his', 'sisters', 'their', 'guests', ',', 'had', 'suggested', 'the', 'propriety', 'of', 'their', 'being', 'really', 'invited', 'to', 'become', 'such', ',', 'while', 'Mrs.', 'Jennings', '’', 's', 'engagements', 'kept', 'her', 'from', 'home', '.', 'The', 'expense', 'would', 'be', 'nothing', ',', 'the', 'inconvenience', 'not', 'more', ';', 'and', 'it', 'was', 'altogether', 'an', 'attention', 'which', 'the', 'delicacy', 'of', 'his', 'conscience', 'pointed', 'out', 'to', 'be', 'requisite', 'to', 'its', 'complete', 'enfranchisement', 'from', 'his', 'promise', 'to', 'his', 'father', '.', 'Fanny', 'was', 'startled', 'at', 'the', 'proposal', '.', '“', 'I', 'do', 'not', 'see', 'how', 'it', 'can', 'be', 'done', ',', '”', 'said', 'she', ',', '“', 'without', 'affronting', 'Lady', 'Middleton', ',', 'for', 'they', 'spend', 'every', 'day', 'with', 'her', ';', 'otherwise', 'I', 'should', 'be', 'exceedingly', 'glad', 'to', 'do', 'it', '.', 'You', 'know', 'I', 'am', 'always', 'ready', 'to', 'pay', 'them', 'any', 'attention', 'in', 'my', 'power', ',', 'as', 'my', 'taking', 'them', 'out', 'this', 'evening', 'shows', '.', 'But', 'they', 'are', 'Lady', 'Middleton', '’', 's', 'visitors', '.', 'How', 'can', 'I', 'ask', 'them', 'away', 'from', 'her', '?', '”', 'Her', 'husband', ',', 'but', 'with', 'great', 'humility', ',', 'did', 'not', 'see', 'the', 'force', 'of', 'her', 'objection', '.', '“', 'They', 'had', 'already', 'spent', 'a', 'week', 'in', 'this', 'manner', 'in', 'Conduit', 'Street', ',', 'and', 'Lady', 'Middleton', 'could', 'not', 'be', 'displeased', 'at', 'their', 'giving', 'the', 'same', 'number', 'of', 'days', 'to', 'such', 'near', 'relations.', '”', 'Fanny', 'paused', 'a', 'moment', ',', 'and', 'then', ',', 'with', 'fresh', 'vigor', ',', 'said', ',', '“', 'My', 'love', ',', 'I', 'would', 'ask', 'them', 'with', 'all', 'my', 'heart', ',', 'if', 'it', 'was', 'in', 'my', 'power', '.', 'But', 'I', 'had', 'just', 'settled', 'within', 'myself', 'to', 'ask', 'the', 'Miss', 'Steeles', 'to', 'spend', 'a', 'few', 'days', 'with', 'us', '.', 'They', 'are', 'very', 'well', 'behaved', ',', 'good', 'kind', 'of', 'girls', ';', 'and', 'I', 'think', 'the', 'attention', 'is', 'due', 'to', 'them', ',', 'as', 'their', 'uncle', 'did', 'so', 'very', 'well', 'by', 'Edward', '.', 'We', 'can', 'ask', 'your', 'sisters', 'some', 'other', 'year', ',', 'you', 'know', ';', 'but', 'the', 'Miss', 'Steeles', 'may', 'not', 'be', 'in', 'town', 'any', 'more', '.', 'I', 'am', 'sure', 'you', 'will', 'like', 'them', ';', 'indeed', ',', 'you', '_do_', 'like', 'them', ',', 'you', 'know', ',', 'very', 'much', 'already', ',', 'and', 'so', 'does', 'my', 'mother', ';', 'and', 'they', 'are', 'such', 'favourites', 'with', 'Harry', '!', '”', 'Mr.', 'Dashwood', 'was', 'convinced', '.', 'He', 'saw', 'the', 'necessity', 'of', 'inviting', 'the', 'Miss', 'Steeles', 'immediately', ',', 'and', 'his', 'conscience', 'was', 'pacified', 'by', 'the', 'resolution', 'of', 'inviting', 'his', 'sisters', 'another', 'year', ';', 'at', 'the', 'same', 'time', ',', 'however', ',', 'slyly', 'suspecting', 'that', 'another', 'year', 'would', 'make', 'the', 'invitation', 'needless', ',', 'by', 'bringing', 'Elinor', 'to', 'town', 'as', 'Colonel', 'Brandon', '’', 's', 'wife', ',', 'and', 'Marianne', 'as', '_their_', 'visitor', '.', 'Fanny', ',', 'rejoicing', 'in', 'her', 'escape', ',', 'and', 'proud', 'of', 'the', 'ready', 'wit', 'that', 'had', 'procured', 'it', ',', 'wrote', 'the', 'next', 'morning', 'to', 'Lucy', ',', 'to', 'request', 'her', 'company', 'and', 'her', 'sister', '’', 's', ',', 'for', 'some', 'days', ',', 'in', 'Harley', 'Street', ',', 'as', 'soon', 'as', 'Lady', 'Middleton', 'could', 'spare', 'them', '.', 'This', 'was', 'enough', 'to', 'make', 'Lucy', 'really', 'and', 'reasonably', 'happy', '.', 'Mrs.', 'Dashwood', 'seemed', 'actually', 'working', 'for', 'her', ',', 'herself', ';', 'cherishing', 'all', 'her', 'hopes', ',', 'and', 'promoting', 'all', 'her', 'views', '!', 'Such', 'an', 'opportunity', 'of', 'being', 'with', 'Edward', 'and', 'his', 'family', 'was', ',', 'above', 'all', 'things', ',', 'the', 'most', 'material', 'to', 'her', 'interest', ',', 'and', 'such', 'an', 'invitation', 'the', 'most', 'gratifying', 'to', 'her', 'feelings', '!', 'It', 'was', 'an', 'advantage', 'that', 'could', 'not', 'be', 'too', 'gratefully', 'acknowledged', ',', 'nor', 'too', 'speedily', 'made', 'use', 'of', ';', 'and', 'the', 'visit', 'to', 'Lady', 'Middleton', ',', 'which', 'had', 'not', 'before', 'had', 'any', 'precise', 'limits', ',', 'was', 'instantly', 'discovered', 'to', 'have', 'been', 'always', 'meant', 'to', 'end', 'in', 'two', 'days', '’', 'time', '.', 'When', 'the', 'note', 'was', 'shown', 'to', 'Elinor', ',', 'as', 'it', 'was', 'within', 'ten', 'minutes', 'after', 'its', 'arrival', ',', 'it', 'gave', 'her', ',', 'for', 'the', 'first', 'time', ',', 'some', 'share', 'in', 'the', 'expectations', 'of', 'Lucy', ';', 'for', 'such', 'a', 'mark', 'of', 'uncommon', 'kindness', ',', 'vouchsafed', 'on', 'so', 'short', 'an', 'acquaintance', ',', 'seemed', 'to', 'declare', 'that', 'the', 'good-will', 'towards', 'her', 'arose', 'from', 'something', 'more', 'than', 'merely', 'malice', 'against', 'herself', ';', 'and', 'might', 'be', 'brought', ',', 'by', 'time', 'and', 'address', ',', 'to', 'do', 'every', 'thing', 'that', 'Lucy', 'wished', '.', 'Her', 'flattery', 'had', 'already', 'subdued', 'the', 'pride', 'of', 'Lady', 'Middleton', ',', 'and', 'made', 'an', 'entry', 'into', 'the', 'close', 'heart', 'of', 'Mrs.', 'John', 'Dashwood', ';', 'and', 'these', 'were', 'effects', 'that', 'laid', 'open', 'the', 'probability', 'of', 'greater', '.', 'The', 'Miss', 'Steeles', 'removed', 'to', 'Harley', 'Street', ',', 'and', 'all', 'that', 'reached', 'Elinor', 'of', 'their', 'influence', 'there', ',', 'strengthened', 'her', 'expectation', 'of', 'the', 'event', '.', 'Sir', 'John', ',', 'who', 'called', 'on', 'them', 'more', 'than', 'once', ',', 'brought', 'home', 'such', 'accounts', 'of', 'the', 'favour', 'they', 'were', 'in', ',', 'as', 'must', 'be', 'universally', 'striking', '.', 'Mrs.', 'Dashwood', 'had', 'never', 'been', 'so', 'much', 'pleased', 'with', 'any', 'young', 'women', 'in', 'her', 'life', ',', 'as', 'she', 'was', 'with', 'them', ';', 'had', 'given', 'each', 'of', 'them', 'a', 'needle', 'book', 'made', 'by', 'some', 'emigrant', ';', 'called', 'Lucy', 'by', 'her', 'Christian', 'name', ';', 'and', 'did', 'not', 'know', 'whether', 'she', 'should', 'ever', 'be', 'able', 'to', 'part', 'with', 'them', '.', 'END', 'OF', 'THE', 'SECOND', 'VOLUME', 'CHAPTER', 'XXXVII', '.', 'Mrs.', 'Palmer', 'was', 'so', 'well', 'at', 'the', 'end', 'of', 'a', 'fortnight', ',', 'that', 'her', 'mother', 'felt', 'it', 'no', 'longer', 'necessary', 'to', 'give', 'up', 'the', 'whole', 'of', 'her', 'time', 'to', 'her', ';', 'and', ',', 'contenting', 'herself', 'with', 'visiting', 'her', 'once', 'or', 'twice', 'a', 'day', ',', 'returned', 'from', 'that', 'period', 'to', 'her', 'own', 'home', ',', 'and', 'her', 'own', 'habits', ',', 'in', 'which', 'she', 'found', 'the', 'Miss', 'Dashwoods', 'very', 'ready', 'to', 'resume', 'their', 'former', 'share', '.', 'About', 'the', 'third', 'or', 'fourth', 'morning', 'after', 'their', 'being', 'thus', 'resettled', 'in', 'Berkeley', 'Street', ',', 'Mrs.', 'Jennings', ',', 'on', 'returning', 'from', 'her', 'ordinary', 'visit', 'to', 'Mrs.', 'Palmer', ',', 'entered', 'the', 'drawing-room', ',', 'where', 'Elinor', 'was', 'sitting', 'by', 'herself', ',', 'with', 'an', 'air', 'of', 'such', 'hurrying', 'importance', 'as', 'prepared', 'her', 'to', 'hear', 'something', 'wonderful', ';', 'and', 'giving', 'her', 'time', 'only', 'to', 'form', 'that', 'idea', ',', 'began', 'directly', 'to', 'justify', 'it', ',', 'by', 'saying', ',', '“', 'Lord', '!', 'my', 'dear', 'Miss', 'Dashwood', '!', 'have', 'you', 'heard', 'the', 'news', '?', '”', '“', 'No', ',', 'ma', '’', 'am', '.', 'What', 'is', 'it', '?', '”', '“', 'Something', 'so', 'strange', '!', 'But', 'you', 'shall', 'hear', 'it', 'all', '.', 'When', 'I', 'got', 'to', 'Mr.', 'Palmer', '’', 's', ',', 'I', 'found', 'Charlotte', 'quite', 'in', 'a', 'fuss', 'about', 'the', 'child', '.', 'She', 'was', 'sure', 'it', 'was', 'very', 'ill—it', 'cried', ',', 'and', 'fretted', ',', 'and', 'was', 'all', 'over', 'pimples', '.', 'So', 'I', 'looked', 'at', 'it', 'directly', ',', 'and', ',', '‘', 'Lord', '!', 'my', 'dear', ',', '’', 'says', 'I', ',', '‘', 'it', 'is', 'nothing', 'in', 'the', 'world', ',', 'but', 'the', 'red', 'gum', ';', '’', 'and', 'nurse', 'said', 'just', 'the', 'same', '.', 'But', 'Charlotte', ',', 'she', 'would', 'not', 'be', 'satisfied', ',', 'so', 'Mr.', 'Donavan', 'was', 'sent', 'for', ';', 'and', 'luckily', 'he', 'happened', 'to', 'just', 'come', 'in', 'from', 'Harley', 'Street', ',', 'so', 'he', 'stepped', 'over', 'directly', ',', 'and', 'as', 'soon', 'as', 'ever', 'he', 'saw', 'the', 'child', ',', 'he', 'said', 'just', 'as', 'we', 'did', ',', 'that', 'it', 'was', 'nothing', 'in', 'the', 'world', 'but', 'the', 'red', 'gum', ',', 'and', 'then', 'Charlotte', 'was', 'easy', '.', 'And', 'so', ',', 'just', 'as', 'he', 'was', 'going', 'away', 'again', ',', 'it', 'came', 'into', 'my', 'head', ',', 'I', 'am', 'sure', 'I', 'do', 'not', 'know', 'how', 'I', 'happened', 'to', 'think', 'of', 'it', ',', 'but', 'it', 'came', 'into', 'my', 'head', 'to', 'ask', 'him', 'if', 'there', 'was', 'any', 'news', '.', 'So', 'upon', 'that', ',', 'he', 'smirked', ',', 'and', 'simpered', ',', 'and', 'looked', 'grave', ',', 'and', 'seemed', 'to', 'know', 'something', 'or', 'other', ',', 'and', 'at', 'last', 'he', 'said', 'in', 'a', 'whisper', ',', '‘', 'For', 'fear', 'any', 'unpleasant', 'report', 'should', 'reach', 'the', 'young', 'ladies', 'under', 'your', 'care', 'as', 'to', 'their', 'sister', '’', 's', 'indisposition', ',', 'I', 'think', 'it', 'advisable', 'to', 'say', ',', 'that', 'I', 'believe', 'there', 'is', 'no', 'great', 'reason', 'for', 'alarm', ';', 'I', 'hope', 'Mrs.', 'Dashwood', 'will', 'do', 'very', 'well.', '’', '”', '“', 'What', '!', 'is', 'Fanny', 'ill', '?', '”', '“', 'That', 'is', 'exactly', 'what', 'I', 'said', ',', 'my', 'dear', '.', '‘', 'Lord', '!', '’', 'says', 'I', ',', '‘', 'is', 'Mrs.', 'Dashwood', 'ill', '?', '’', 'So', 'then', 'it', 'all', 'came', 'out', ';', 'and', 'the', 'long', 'and', 'the', 'short', 'of', 'the', 'matter', ',', 'by', 'all', 'I', 'can', 'learn', ',', 'seems', 'to', 'be', 'this', '.', 'Mr.', 'Edward', 'Ferrars', ',', 'the', 'very', 'young', 'man', 'I', 'used', 'to', 'joke', 'with', 'you', 'about', '(', 'but', 'however', ',', 'as', 'it', 'turns', 'out', ',', 'I', 'am', 'monstrous', 'glad', 'there', 'was', 'never', 'any', 'thing', 'in', 'it', ')', ',', 'Mr.', 'Edward', 'Ferrars', ',', 'it', 'seems', ',', 'has', 'been', 'engaged', 'above', 'this', 'twelvemonth', 'to', 'my', 'cousin', 'Lucy', '!', '—There', '’', 's', 'for', 'you', ',', 'my', 'dear', '!', 'And', 'not', 'a', 'creature', 'knowing', 'a', 'syllable', 'of', 'the', 'matter', ',', 'except', 'Nancy', '!', 'Could', 'you', 'have', 'believed', 'such', 'a', 'thing', 'possible', '?', 'There', 'is', 'no', 'great', 'wonder', 'in', 'their', 'liking', 'one', 'another', ';', 'but', 'that', 'matters', 'should', 'be', 'brought', 'so', 'forward', 'between', 'them', ',', 'and', 'nobody', 'suspect', 'it', '!', '_That_', 'is', 'strange', '!', 'I', 'never', 'happened', 'to', 'see', 'them', 'together', ',', 'or', 'I', 'am', 'sure', 'I', 'should', 'have', 'found', 'it', 'out', 'directly', '.', 'Well', ',', 'and', 'so', 'this', 'was', 'kept', 'a', 'great', 'secret', ',', 'for', 'fear', 'of', 'Mrs.', 'Ferrars', ',', 'and', 'neither', 'she', 'nor', 'your', 'brother', 'or', 'sister', 'suspected', 'a', 'word', 'of', 'the', 'matter', ':', 'till', 'this', 'very', 'morning', ',', 'poor', 'Nancy', ',', 'who', ',', 'you', 'know', ',', 'is', 'a', 'well-meaning', 'creature', ',', 'but', 'no', 'conjurer', ',', 'popt', 'it', 'all', 'out', '.', '‘', 'Lord', '!', '’', 'thinks', 'she', 'to', 'herself', ',', '‘', 'they', 'are', 'all', 'so', 'fond', 'of', 'Lucy', ',', 'to', 'be', 'sure', 'they', 'will', 'make', 'no', 'difficulty', 'about', 'it', ';', '’', 'and', 'so', ',', 'away', 'she', 'went', 'to', 'your', 'sister', ',', 'who', 'was', 'sitting', 'all', 'alone', 'at', 'her', 'carpet-work', ',', 'little', 'suspecting', 'what', 'was', 'to', 'come—for', 'she', 'had', 'just', 'been', 'saying', 'to', 'your', 'brother', ',', 'only', 'five', 'minutes', 'before', ',', 'that', 'she', 'thought', 'to', 'make', 'a', 'match', 'between', 'Edward', 'and', 'some', 'Lord', '’', 's', 'daughter', 'or', 'other', ',', 'I', 'forget', 'who', '.', 'So', 'you', 'may', 'think', 'what', 'a', 'blow', 'it', 'was', 'to', 'all', 'her', 'vanity', 'and', 'pride', '.', 'She', 'fell', 'into', 'violent', 'hysterics', 'immediately', ',', 'with', 'such', 'screams', 'as', 'reached', 'your', 'brother', '’', 's', 'ears', ',', 'as', 'he', 'was', 'sitting', 'in', 'his', 'own', 'dressing-room', 'down', 'stairs', ',', 'thinking', 'about', 'writing', 'a', 'letter', 'to', 'his', 'steward', 'in', 'the', 'country', '.', 'So', 'up', 'he', 'flew', 'directly', ',', 'and', 'a', 'terrible', 'scene', 'took', 'place', ',', 'for', 'Lucy', 'was', 'come', 'to', 'them', 'by', 'that', 'time', ',', 'little', 'dreaming', 'what', 'was', 'going', 'on', '.', 'Poor', 'soul', '!', 'I', 'pity', '_her_', '.', 'And', 'I', 'must', 'say', ',', 'I', 'think', 'she', 'was', 'used', 'very', 'hardly', ';', 'for', 'your', 'sister', 'scolded', 'like', 'any', 'fury', ',', 'and', 'soon', 'drove', 'her', 'into', 'a', 'fainting', 'fit', '.', 'Nancy', ',', 'she', 'fell', 'upon', 'her', 'knees', ',', 'and', 'cried', 'bitterly', ';', 'and', 'your', 'brother', ',', 'he', 'walked', 'about', 'the', 'room', ',', 'and', 'said', 'he', 'did', 'not', 'know', 'what', 'to', 'do', '.', 'Mrs.', 'Dashwood', 'declared', 'they', 'should', 'not', 'stay', 'a', 'minute', 'longer', 'in', 'the', 'house', ',', 'and', 'your', 'brother', 'was', 'forced', 'to', 'go', 'down', 'upon', '_his_', 'knees', 'too', ',', 'to', 'persuade', 'her', 'to', 'let', 'them', 'stay', 'till', 'they', 'had', 'packed', 'up', 'their', 'clothes', '.', '_Then_', 'she', 'fell', 'into', 'hysterics', 'again', ',', 'and', 'he', 'was', 'so', 'frightened', 'that', 'he', 'would', 'send', 'for', 'Mr.', 'Donavan', ',', 'and', 'Mr.', 'Donavan', 'found', 'the', 'house', 'in', 'all', 'this', 'uproar', '.', 'The', 'carriage', 'was', 'at', 'the', 'door', 'ready', 'to', 'take', 'my', 'poor', 'cousins', 'away', ',', 'and', 'they', 'were', 'just', 'stepping', 'in', 'as', 'he', 'came', 'off', ';', 'poor', 'Lucy', 'in', 'such', 'a', 'condition', ',', 'he', 'says', ',', 'she', 'could', 'hardly', 'walk', ';', 'and', 'Nancy', ',', 'she', 'was', 'almost', 'as', 'bad', '.', 'I', 'declare', ',', 'I', 'have', 'no', 'patience', 'with', 'your', 'sister', ';', 'and', 'I', 'hope', ',', 'with', 'all', 'my', 'heart', ',', 'it', 'will', 'be', 'a', 'match', 'in', 'spite', 'of', 'her', '.', 'Lord', '!', 'what', 'a', 'taking', 'poor', 'Mr.', 'Edward', 'will', 'be', 'in', 'when', 'he', 'hears', 'of', 'it', '!', 'To', 'have', 'his', 'love', 'used', 'so', 'scornfully', '!', 'for', 'they', 'say', 'he', 'is', 'monstrous', 'fond', 'of', 'her', ',', 'as', 'well', 'he', 'may', '.', 'I', 'should', 'not', 'wonder', ',', 'if', 'he', 'was', 'to', 'be', 'in', 'the', 'greatest', 'passion', '!', '—and', 'Mr.', 'Donavan', 'thinks', 'just', 'the', 'same', '.', 'He', 'and', 'I', 'had', 'a', 'great', 'deal', 'of', 'talk', 'about', 'it', ';', 'and', 'the', 'best', 'of', 'all', 'is', ',', 'that', 'he', 'is', 'gone', 'back', 'again', 'to', 'Harley', 'Street', ',', 'that', 'he', 'may', 'be', 'within', 'call', 'when', 'Mrs.', 'Ferrars', 'is', 'told', 'of', 'it', ',', 'for', 'she', 'was', 'sent', 'for', 'as', 'soon', 'as', 'ever', 'my', 'cousins', 'left', 'the', 'house', ',', 'for', 'your', 'sister', 'was', 'sure', '_she_', 'would', 'be', 'in', 'hysterics', 'too', ';', 'and', 'so', 'she', 'may', ',', 'for', 'what', 'I', 'care', '.', 'I', 'have', 'no', 'pity', 'for', 'either', 'of', 'them', '.', 'I', 'have', 'no', 'notion', 'of', 'people', '’', 's', 'making', 'such', 'a', 'to-do', 'about', 'money', 'and', 'greatness', '.', 'There', 'is', 'no', 'reason', 'on', 'earth', 'why', 'Mr.', 'Edward', 'and', 'Lucy', 'should', 'not', 'marry', ';', 'for', 'I', 'am', 'sure', 'Mrs.', 'Ferrars', 'may', 'afford', 'to', 'do', 'very', 'well', 'by', 'her', 'son', ',', 'and', 'though', 'Lucy', 'has', 'next', 'to', 'nothing', 'herself', ',', 'she', 'knows', 'better', 'than', 'any', 'body', 'how', 'to', 'make', 'the', 'most', 'of', 'every', 'thing', ';', 'I', 'dare', 'say', ',', 'if', 'Mrs.', 'Ferrars', 'would', 'only', 'allow', 'him', 'five', 'hundred', 'a-year', ',', 'she', 'would', 'make', 'as', 'good', 'an', 'appearance', 'with', 'it', 'as', 'any', 'body', 'else', 'would', 'with', 'eight', '.', 'Lord', '!', 'how', 'snug', 'they', 'might', 'live', 'in', 'such', 'another', 'cottage', 'as', 'yours—or', 'a', 'little', 'bigger—with', 'two', 'maids', ',', 'and', 'two', 'men', ';', 'and', 'I', 'believe', 'I', 'could', 'help', 'them', 'to', 'a', 'housemaid', ',', 'for', 'my', 'Betty', 'has', 'a', 'sister', 'out', 'of', 'place', ',', 'that', 'would', 'fit', 'them', 'exactly.', '”', 'Here', 'Mrs.', 'Jennings', 'ceased', ',', 'and', 'as', 'Elinor', 'had', 'had', 'time', 'enough', 'to', 'collect', 'her', 'thoughts', ',', 'she', 'was', 'able', 'to', 'give', 'such', 'an', 'answer', ',', 'and', 'make', 'such', 'observations', ',', 'as', 'the', 'subject', 'might', 'naturally', 'be', 'supposed', 'to', 'produce', '.', 'Happy', 'to', 'find', 'that', 'she', 'was', 'not', 'suspected', 'of', 'any', 'extraordinary', 'interest', 'in', 'it', ';', 'that', 'Mrs.', 'Jennings', '(', 'as', 'she', 'had', 'of', 'late', 'often', 'hoped', 'might', 'be', 'the', 'case', ')', 'had', 'ceased', 'to', 'imagine', 'her', 'at', 'all', 'attached', 'to', 'Edward', ';', 'and', 'happy', 'above', 'all', 'the', 'rest', ',', 'in', 'the', 'absence', 'of', 'Marianne', ',', 'she', 'felt', 'very', 'well', 'able', 'to', 'speak', 'of', 'the', 'affair', 'without', 'embarrassment', ',', 'and', 'to', 'give', 'her', 'judgment', ',', 'as', 'she', 'believed', ',', 'with', 'impartiality', 'on', 'the', 'conduct', 'of', 'every', 'one', 'concerned', 'in', 'it', '.', 'She', 'could', 'hardly', 'determine', 'what', 'her', 'own', 'expectation', 'of', 'its', 'event', 'really', 'was', ';', 'though', 'she', 'earnestly', 'tried', 'to', 'drive', 'away', 'the', 'notion', 'of', 'its', 'being', 'possible', 'to', 'end', 'otherwise', 'at', 'last', ',', 'than', 'in', 'the', 'marriage', 'of', 'Edward', 'and', 'Lucy', '.', 'What', 'Mrs.', 'Ferrars', 'would', 'say', 'and', 'do', ',', 'though', 'there', 'could', 'not', 'be', 'a', 'doubt', 'of', 'its', 'nature', ',', 'she', 'was', 'anxious', 'to', 'hear', ';', 'and', 'still', 'more', 'anxious', 'to', 'know', 'how', 'Edward', 'would', 'conduct', 'himself', '.', 'For', '_him_', 'she', 'felt', 'much', 'compassion', ';', '—for', 'Lucy', 'very', 'little—and', 'it', 'cost', 'her', 'some', 'pains', 'to', 'procure', 'that', 'little', ';', '—for', 'the', 'rest', 'of', 'the', 'party', 'none', 'at', 'all', '.', 'As', 'Mrs.', 'Jennings', 'could', 'talk', 'on', 'no', 'other', 'subject', ',', 'Elinor', 'soon', 'saw', 'the', 'necessity', 'of', 'preparing', 'Marianne', 'for', 'its', 'discussion', '.', 'No', 'time', 'was', 'to', 'be', 'lost', 'in', 'undeceiving', 'her', ',', 'in', 'making', 'her', 'acquainted', 'with', 'the', 'real', 'truth', ',', 'and', 'in', 'endeavouring', 'to', 'bring', 'her', 'to', 'hear', 'it', 'talked', 'of', 'by', 'others', ',', 'without', 'betraying', 'that', 'she', 'felt', 'any', 'uneasiness', 'for', 'her', 'sister', ',', 'or', 'any', 'resentment', 'against', 'Edward', '.', 'Elinor', '’', 's', 'office', 'was', 'a', 'painful', 'one.—She', 'was', 'going', 'to', 'remove', 'what', 'she', 'really', 'believed', 'to', 'be', 'her', 'sister', '’', 's', 'chief', 'consolation', ',', '—to', 'give', 'such', 'particulars', 'of', 'Edward', 'as', 'she', 'feared', 'would', 'ruin', 'him', 'for', 'ever', 'in', 'her', 'good', 'opinion', ',', '-and', 'to', 'make', 'Marianne', ',', 'by', 'a', 'resemblance', 'in', 'their', 'situations', ',', 'which', 'to', '_her_', 'fancy', 'would', 'seem', 'strong', ',', 'feel', 'all', 'her', 'own', 'disappointment', 'over', 'again', '.', 'But', 'unwelcome', 'as', 'such', 'a', 'task', 'must', 'be', ',', 'it', 'was', 'necessary', 'to', 'be', 'done', ',', 'and', 'Elinor', 'therefore', 'hastened', 'to', 'perform', 'it', '.', 'She', 'was', 'very', 'far', 'from', 'wishing', 'to', 'dwell', 'on', 'her', 'own', 'feelings', ',', 'or', 'to', 'represent', 'herself', 'as', 'suffering', 'much', ',', 'any', 'otherwise', 'than', 'as', 'the', 'self-command', 'she', 'had', 'practised', 'since', 'her', 'first', 'knowledge', 'of', 'Edward', '’', 's', 'engagement', ',', 'might', 'suggest', 'a', 'hint', 'of', 'what', 'was', 'practicable', 'to', 'Marianne', '.', 'Her', 'narration', 'was', 'clear', 'and', 'simple', ';', 'and', 'though', 'it', 'could', 'not', 'be', 'given', 'without', 'emotion', ',', 'it', 'was', 'not', 'accompanied', 'by', 'violent', 'agitation', ',', 'nor', 'impetuous', 'grief', '.', '_That_', 'belonged', 'rather', 'to', 'the', 'hearer', ',', 'for', 'Marianne', 'listened', 'with', 'horror', ',', 'and', 'cried', 'excessively', '.', 'Elinor', 'was', 'to', 'be', 'the', 'comforter', 'of', 'others', 'in', 'her', 'own', 'distresses', ',', 'no', 'less', 'than', 'in', 'theirs', ';', 'and', 'all', 'the', 'comfort', 'that', 'could', 'be', 'given', 'by', 'assurances', 'of', 'her', 'own', 'composure', 'of', 'mind', ',', 'and', 'a', 'very', 'earnest', 'vindication', 'of', 'Edward', 'from', 'every', 'charge', 'but', 'of', 'imprudence', ',', 'was', 'readily', 'offered', '.', 'But', 'Marianne', 'for', 'some', 'time', 'would', 'give', 'credit', 'to', 'neither', '.', 'Edward', 'seemed', 'a', 'second', 'Willoughby', ';', 'and', 'acknowledging', 'as', 'Elinor', 'did', ',', 'that', 'she', '_had_', 'loved', 'him', 'most', 'sincerely', ',', 'could', 'she', 'feel', 'less', 'than', 'herself', '!', 'As', 'for', 'Lucy', 'Steele', ',', 'she', 'considered', 'her', 'so', 'totally', 'unamiable', ',', 'so', 'absolutely', 'incapable', 'of', 'attaching', 'a', 'sensible', 'man', ',', 'that', 'she', 'could', 'not', 'be', 'persuaded', 'at', 'first', 'to', 'believe', ',', 'and', 'afterwards', 'to', 'pardon', ',', 'any', 'former', 'affection', 'of', 'Edward', 'for', 'her', '.', 'She', 'would', 'not', 'even', 'admit', 'it', 'to', 'have', 'been', 'natural', ';', 'and', 'Elinor', 'left', 'her', 'to', 'be', 'convinced', 'that', 'it', 'was', 'so', ',', 'by', 'that', 'which', 'only', 'could', 'convince', 'her', ',', 'a', 'better', 'knowledge', 'of', 'mankind', '.', 'Her', 'first', 'communication', 'had', 'reached', 'no', 'farther', 'than', 'to', 'state', 'the', 'fact', 'of', 'the', 'engagement', ',', 'and', 'the', 'length', 'of', 'time', 'it', 'had', 'existed.—Marianne', '’', 's', 'feelings', 'had', 'then', 'broken', 'in', ',', 'and', 'put', 'an', 'end', 'to', 'all', 'regularity', 'of', 'detail', ';', 'and', 'for', 'some', 'time', 'all', 'that', 'could', 'be', 'done', 'was', 'to', 'soothe', 'her', 'distress', ',', 'lessen', 'her', 'alarms', ',', 'and', 'combat', 'her', 'resentment', '.', 'The', 'first', 'question', 'on', 'her', 'side', ',', 'which', 'led', 'to', 'farther', 'particulars', ',', 'was', ',', '—', '“', 'How', 'long', 'has', 'this', 'been', 'known', 'to', 'you', ',', 'Elinor', '?', 'has', 'he', 'written', 'to', 'you', '?', '”', '“', 'I', 'have', 'known', 'it', 'these', 'four', 'months', '.', 'When', 'Lucy', 'first', 'came', 'to', 'Barton', 'Park', 'last', 'November', ',', 'she', 'told', 'me', 'in', 'confidence', 'of', 'her', 'engagement.', '”', 'At', 'these', 'words', ',', 'Marianne', '’', 's', 'eyes', 'expressed', 'the', 'astonishment', 'which', 'her', 'lips', 'could', 'not', 'utter', '.', 'After', 'a', 'pause', 'of', 'wonder', ',', 'she', 'exclaimed—', '“', 'Four', 'months', '!', '—Have', 'you', 'known', 'of', 'this', 'four', 'months', '?', '”', 'Elinor', 'confirmed', 'it', '.', '“', 'What', '!', 'while', 'attending', 'me', 'in', 'all', 'my', 'misery', ',', 'has', 'this', 'been', 'on', 'your', 'heart', '?', 'And', 'I', 'have', 'reproached', 'you', 'for', 'being', 'happy', '!', '”', '“', 'It', 'was', 'not', 'fit', 'that', 'you', 'should', 'then', 'know', 'how', 'much', 'I', 'was', 'the', 'reverse', '!', '”', '“', 'Four', 'months', '!', '”', 'cried', 'Marianne', 'again', '.', '“', 'So', 'calm', '!', 'so', 'cheerful', '!', 'How', 'have', 'you', 'been', 'supported', '?', '”', '“', 'By', 'feeling', 'that', 'I', 'was', 'doing', 'my', 'duty.—My', 'promise', 'to', 'Lucy', ',', 'obliged', 'me', 'to', 'be', 'secret', '.', 'I', 'owed', 'it', 'to', 'her', ',', 'therefore', ',', 'to', 'avoid', 'giving', 'any', 'hint', 'of', 'the', 'truth', ';', 'and', 'I', 'owed', 'it', 'to', 'my', 'family', 'and', 'friends', ',', 'not', 'to', 'create', 'in', 'them', 'a', 'solicitude', 'about', 'me', ',', 'which', 'it', 'could', 'not', 'be', 'in', 'my', 'power', 'to', 'satisfy.', '”', 'Marianne', 'seemed', 'much', 'struck', '.', '“', 'I', 'have', 'very', 'often', 'wished', 'to', 'undeceive', 'yourself', 'and', 'my', 'mother', ',', '”', 'added', 'Elinor', ';', '“', 'and', 'once', 'or', 'twice', 'I', 'have', 'attempted', 'it', ';', '—but', 'without', 'betraying', 'my', 'trust', ',', 'I', 'never', 'could', 'have', 'convinced', 'you.', '”', '“', 'Four', 'months', '!', 'and', 'yet', 'you', 'loved', 'him', '!', '”', '“', 'Yes', '.', 'But', 'I', 'did', 'not', 'love', 'only', 'him', ';', 'and', 'while', 'the', 'comfort', 'of', 'others', 'was', 'dear', 'to', 'me', ',', 'I', 'was', 'glad', 'to', 'spare', 'them', 'from', 'knowing', 'how', 'much', 'I', 'felt', '.', 'Now', ',', 'I', 'can', 'think', 'and', 'speak', 'of', 'it', 'with', 'little', 'emotion', '.', 'I', 'would', 'not', 'have', 'you', 'suffer', 'on', 'my', 'account', ';', 'for', 'I', 'assure', 'you', 'I', 'no', 'longer', 'suffer', 'materially', 'myself', '.', 'I', 'have', 'many', 'things', 'to', 'support', 'me', '.', 'I', 'am', 'not', 'conscious', 'of', 'having', 'provoked', 'the', 'disappointment', 'by', 'any', 'imprudence', 'of', 'my', 'own', ',', 'I', 'have', 'borne', 'it', 'as', 'much', 'as', 'possible', 'without', 'spreading', 'it', 'farther', '.', 'I', 'acquit', 'Edward', 'of', 'essential', 'misconduct', '.', 'I', 'wish', 'him', 'very', 'happy', ';', 'and', 'I', 'am', 'so', 'sure', 'of', 'his', 'always', 'doing', 'his', 'duty', ',', 'that', 'though', 'now', 'he', 'may', 'harbour', 'some', 'regret', ',', 'in', 'the', 'end', 'he', 'must', 'become', 'so', '.', 'Lucy', 'does', 'not', 'want', 'sense', ',', 'and', 'that', 'is', 'the', 'foundation', 'on', 'which', 'every', 'thing', 'good', 'may', 'be', 'built', '.', 'And', 'after', 'all', ',', 'Marianne', ',', 'after', 'all', 'that', 'is', 'bewitching', 'in', 'the', 'idea', 'of', 'a', 'single', 'and', 'constant', 'attachment', ',', 'and', 'all', 'that', 'can', 'be', 'said', 'of', 'one', '’', 's', 'happiness', 'depending', 'entirely', 'on', 'any', 'particular', 'person', ',', 'it', 'is', 'not', 'meant—it', 'is', 'not', 'fit—it', 'is', 'not', 'possible', 'that', 'it', 'should', 'be', 'so', '.', 'Edward', 'will', 'marry', 'Lucy', ';', 'he', 'will', 'marry', 'a', 'woman', 'superior', 'in', 'person', 'and', 'understanding', 'to', 'half', 'her', 'sex', ';', 'and', 'time', 'and', 'habit', 'will', 'teach', 'him', 'to', 'forget', 'that', 'he', 'ever', 'thought', 'another', 'superior', 'to', '_her_.', '”', '“', 'If', 'such', 'is', 'your', 'way', 'of', 'thinking', ',', '”', 'said', 'Marianne', ',', '“', 'if', 'the', 'loss', 'of', 'what', 'is', 'most', 'valued', 'is', 'so', 'easily', 'to', 'be', 'made', 'up', 'by', 'something', 'else', ',', 'your', 'resolution', ',', 'your', 'self-command', ',', 'are', ',', 'perhaps', ',', 'a', 'little', 'less', 'to', 'be', 'wondered', 'at.—They', 'are', 'brought', 'more', 'within', 'my', 'comprehension.', '”', '“', 'I', 'understand', 'you', '.', 'You', 'do', 'not', 'suppose', 'that', 'I', 'have', 'ever', 'felt', 'much', '.', 'For', 'four', 'months', ',', 'Marianne', ',', 'I', 'have', 'had', 'all', 'this', 'hanging', 'on', 'my', 'mind', ',', 'without', 'being', 'at', 'liberty', 'to', 'speak', 'of', 'it', 'to', 'a', 'single', 'creature', ';', 'knowing', 'that', 'it', 'would', 'make', 'you', 'and', 'my', 'mother', 'most', 'unhappy', 'whenever', 'it', 'were', 'explained', 'to', 'you', ',', 'yet', 'unable', 'to', 'prepare', 'you', 'for', 'it', 'in', 'the', 'least', '.', 'It', 'was', 'told', 'me', ',', '—it', 'was', 'in', 'a', 'manner', 'forced', 'on', 'me', 'by', 'the', 'very', 'person', 'herself', ',', 'whose', 'prior', 'engagement', 'ruined', 'all', 'my', 'prospects', ';', 'and', 'told', 'me', ',', 'as', 'I', 'thought', ',', 'with', 'triumph', '.', 'This', 'person', '’', 's', 'suspicions', ',', 'therefore', ',', 'I', 'have', 'had', 'to', 'oppose', ',', 'by', 'endeavouring', 'to', 'appear', 'indifferent', 'where', 'I', 'have', 'been', 'most', 'deeply', 'interested', ';', 'and', 'it', 'has', 'not', 'been', 'only', 'once', ';', 'I', 'have', 'had', 'her', 'hopes', 'and', 'exultation', 'to', 'listen', 'to', 'again', 'and', 'again', '.', 'I', 'have', 'known', 'myself', 'to', 'be', 'divided', 'from', 'Edward', 'for', 'ever', ',', 'without', 'hearing', 'one', 'circumstance', 'that', 'could', 'make', 'me', 'less', 'desire', 'the', 'connection', '.', 'Nothing', 'has', 'proved', 'him', 'unworthy', ';', 'nor', 'has', 'anything', 'declared', 'him', 'indifferent', 'to', 'me', '.', 'I', 'have', 'had', 'to', 'contend', 'against', 'the', 'unkindness', 'of', 'his', 'sister', ',', 'and', 'the', 'insolence', 'of', 'his', 'mother', ';', 'and', 'have', 'suffered', 'the', 'punishment', 'of', 'an', 'attachment', ',', 'without', 'enjoying', 'its', 'advantages', '.', 'And', 'all', 'this', 'has', 'been', 'going', 'on', 'at', 'a', 'time', ',', 'when', ',', 'as', 'you', 'know', 'too', 'well', ',', 'it', 'has', 'not', 'been', 'my', 'only', 'unhappiness', '.', 'If', 'you', 'can', 'think', 'me', 'capable', 'of', 'ever', 'feeling', ',', 'surely', 'you', 'may', 'suppose', 'that', 'I', 'have', 'suffered', '_now_', '.', 'The', 'composure', 'of', 'mind', 'with', 'which', 'I', 'have', 'brought', 'myself', 'at', 'present', 'to', 'consider', 'the', 'matter', ',', 'the', 'consolation', 'that', 'I', 'have', 'been', 'willing', 'to', 'admit', ',', 'have', 'been', 'the', 'effect', 'of', 'constant', 'and', 'painful', 'exertion', ';', 'they', 'did', 'not', 'spring', 'up', 'of', 'themselves', ';', 'they', 'did', 'not', 'occur', 'to', 'relieve', 'my', 'spirits', 'at', 'first', '.', 'No', ',', 'Marianne', '.', '_Then_', ',', 'if', 'I', 'had', 'not', 'been', 'bound', 'to', 'silence', ',', 'perhaps', 'nothing', 'could', 'have', 'kept', 'me', 'entirely—not', 'even', 'what', 'I', 'owed', 'to', 'my', 'dearest', 'friends—from', 'openly', 'showing', 'that', 'I', 'was', '_very_', 'unhappy.', '”', 'Marianne', 'was', 'quite', 'subdued', '.', '“', 'Oh', '!', 'Elinor', ',', '”', 'she', 'cried', ',', '“', 'you', 'have', 'made', 'me', 'hate', 'myself', 'for', 'ever.—How', 'barbarous', 'have', 'I', 'been', 'to', 'you', '!', '—you', ',', 'who', 'have', 'been', 'my', 'only', 'comfort', ',', 'who', 'have', 'borne', 'with', 'me', 'in', 'all', 'my', 'misery', ',', 'who', 'have', 'seemed', 'to', 'be', 'only', 'suffering', 'for', 'me', '!', '—Is', 'this', 'my', 'gratitude', '?', '—Is', 'this', 'the', 'only', 'return', 'I', 'can', 'make', 'you', '?', '—Because', 'your', 'merit', 'cries', 'out', 'upon', 'myself', ',', 'I', 'have', 'been', 'trying', 'to', 'do', 'it', 'away.', '”', 'The', 'tenderest', 'caresses', 'followed', 'this', 'confession', '.', 'In', 'such', 'a', 'frame', 'of', 'mind', 'as', 'she', 'was', 'now', 'in', ',', 'Elinor', 'had', 'no', 'difficulty', 'in', 'obtaining', 'from', 'her', 'whatever', 'promise', 'she', 'required', ';', 'and', 'at', 'her', 'request', ',', 'Marianne', 'engaged', 'never', 'to', 'speak', 'of', 'the', 'affair', 'to', 'any', 'one', 'with', 'the', 'least', 'appearance', 'of', 'bitterness', ';', 'to', 'meet', 'Lucy', 'without', 'betraying', 'the', 'smallest', 'increase', 'of', 'dislike', 'to', 'her', ';', 'and', 'even', 'to', 'see', 'Edward', 'himself', ',', 'if', 'chance', 'should', 'bring', 'them', 'together', ',', 'without', 'any', 'diminution', 'of', 'her', 'usual', 'cordiality', '.', 'These', 'were', 'great', 'concessions', ';', 'but', 'where', 'Marianne', 'felt', 'that', 'she', 'had', 'injured', ',', 'no', 'reparation', 'could', 'be', 'too', 'much', 'for', 'her', 'to', 'make', '.', 'She', 'performed', 'her', 'promise', 'of', 'being', 'discreet', ',', 'to', 'admiration.—She', 'attended', 'to', 'all', 'that', 'Mrs.', 'Jennings', 'had', 'to', 'say', 'upon', 'the', 'subject', ',', 'with', 'an', 'unchanging', 'complexion', ',', 'dissented', 'from', 'her', 'in', 'nothing', ',', 'and', 'was', 'heard', 'three', 'times', 'to', 'say', ',', '“', 'Yes', ',', 'ma', '’', 'am.', '”', '—She', 'listened', 'to', 'her', 'praise', 'of', 'Lucy', 'with', 'only', 'moving', 'from', 'one', 'chair', 'to', 'another', ',', 'and', 'when', 'Mrs.', 'Jennings', 'talked', 'of', 'Edward', '’', 's', 'affection', ',', 'it', 'cost', 'her', 'only', 'a', 'spasm', 'in', 'her', 'throat.—Such', 'advances', 'towards', 'heroism', 'in', 'her', 'sister', ',', 'made', 'Elinor', 'feel', 'equal', 'to', 'any', 'thing', 'herself', '.', 'The', 'next', 'morning', 'brought', 'a', 'farther', 'trial', 'of', 'it', ',', 'in', 'a', 'visit', 'from', 'their', 'brother', ',', 'who', 'came', 'with', 'a', 'most', 'serious', 'aspect', 'to', 'talk', 'over', 'the', 'dreadful', 'affair', ',', 'and', 'bring', 'them', 'news', 'of', 'his', 'wife', '.', '“', 'You', 'have', 'heard', ',', 'I', 'suppose', ',', '”', 'said', 'he', 'with', 'great', 'solemnity', ',', 'as', 'soon', 'as', 'he', 'was', 'seated', ',', '“', 'of', 'the', 'very', 'shocking', 'discovery', 'that', 'took', 'place', 'under', 'our', 'roof', 'yesterday.', '”', 'They', 'all', 'looked', 'their', 'assent', ';', 'it', 'seemed', 'too', 'awful', 'a', 'moment', 'for', 'speech', '.', '“', 'Your', 'sister', ',', '”', 'he', 'continued', ',', '“', 'has', 'suffered', 'dreadfully', '.', 'Mrs.', 'Ferrars', 'too—in', 'short', 'it', 'has', 'been', 'a', 'scene', 'of', 'such', 'complicated', 'distress—but', 'I', 'will', 'hope', 'that', 'the', 'storm', 'may', 'be', 'weathered', 'without', 'our', 'being', 'any', 'of', 'us', 'quite', 'overcome', '.', 'Poor', 'Fanny', '!', 'she', 'was', 'in', 'hysterics', 'all', 'yesterday', '.', 'But', 'I', 'would', 'not', 'alarm', 'you', 'too', 'much', '.', 'Donavan', 'says', 'there', 'is', 'nothing', 'materially', 'to', 'be', 'apprehended', ';', 'her', 'constitution', 'is', 'a', 'good', 'one', ',', 'and', 'her', 'resolution', 'equal', 'to', 'any', 'thing', '.', 'She', 'has', 'borne', 'it', 'all', ',', 'with', 'the', 'fortitude', 'of', 'an', 'angel', '!', 'She', 'says', 'she', 'never', 'shall', 'think', 'well', 'of', 'anybody', 'again', ';', 'and', 'one', 'can', 'not', 'wonder', 'at', 'it', ',', 'after', 'being', 'so', 'deceived', '!', '—meeting', 'with', 'such', 'ingratitude', ',', 'where', 'so', 'much', 'kindness', 'had', 'been', 'shown', ',', 'so', 'much', 'confidence', 'had', 'been', 'placed', '!', 'It', 'was', 'quite', 'out', 'of', 'the', 'benevolence', 'of', 'her', 'heart', ',', 'that', 'she', 'had', 'asked', 'these', 'young', 'women', 'to', 'her', 'house', ';', 'merely', 'because', 'she', 'thought', 'they', 'deserved', 'some', 'attention', ',', 'were', 'harmless', ',', 'well-behaved', 'girls', ',', 'and', 'would', 'be', 'pleasant', 'companions', ';', 'for', 'otherwise', 'we', 'both', 'wished', 'very', 'much', 'to', 'have', 'invited', 'you', 'and', 'Marianne', 'to', 'be', 'with', 'us', ',', 'while', 'your', 'kind', 'friend', 'there', ',', 'was', 'attending', 'her', 'daughter', '.', 'And', 'now', 'to', 'be', 'so', 'rewarded', '!', '‘', 'I', 'wish', ',', 'with', 'all', 'my', 'heart', ',', '’', 'says', 'poor', 'Fanny', 'in', 'her', 'affectionate', 'way', ',', '‘', 'that', 'we', 'had', 'asked', 'your', 'sisters', 'instead', 'of', 'them.', '’', '”', 'Here', 'he', 'stopped', 'to', 'be', 'thanked', ';', 'which', 'being', 'done', ',', 'he', 'went', 'on', '.', '“', 'What', 'poor', 'Mrs.', 'Ferrars', 'suffered', ',', 'when', 'first', 'Fanny', 'broke', 'it', 'to', 'her', ',', 'is', 'not', 'to', 'be', 'described', '.', 'While', 'she', 'with', 'the', 'truest', 'affection', 'had', 'been', 'planning', 'a', 'most', 'eligible', 'connection', 'for', 'him', ',', 'was', 'it', 'to', 'be', 'supposed', 'that', 'he', 'could', 'be', 'all', 'the', 'time', 'secretly', 'engaged', 'to', 'another', 'person', '!', '—such', 'a', 'suspicion', 'could', 'never', 'have', 'entered', 'her', 'head', '!', 'If', 'she', 'suspected', '_any_', 'prepossession', 'elsewhere', ',', 'it', 'could', 'not', 'be', 'in', '_that_', 'quarter', '.', '‘', '_There_', ',', 'to', 'be', 'sure', ',', '’', 'said', 'she', ',', '‘', 'I', 'might', 'have', 'thought', 'myself', 'safe.', '’', 'She', 'was', 'quite', 'in', 'an', 'agony', '.', 'We', 'consulted', 'together', ',', 'however', ',', 'as', 'to', 'what', 'should', 'be', 'done', ',', 'and', 'at', 'last', 'she', 'determined', 'to', 'send', 'for', 'Edward', '.', 'He', 'came', '.', 'But', 'I', 'am', 'sorry', 'to', 'relate', 'what', 'ensued', '.', 'All', 'that', 'Mrs.', 'Ferrars', 'could', 'say', 'to', 'make', 'him', 'put', 'an', 'end', 'to', 'the', 'engagement', ',', 'assisted', 'too', 'as', 'you', 'may', 'well', 'suppose', 'by', 'my', 'arguments', ',', 'and', 'Fanny', '’', 's', 'entreaties', ',', 'was', 'of', 'no', 'avail', '.', 'Duty', ',', 'affection', ',', 'every', 'thing', 'was', 'disregarded', '.', 'I', 'never', 'thought', 'Edward', 'so', 'stubborn', ',', 'so', 'unfeeling', 'before', '.', 'His', 'mother', 'explained', 'to', 'him', 'her', 'liberal', 'designs', ',', 'in', 'case', 'of', 'his', 'marrying', 'Miss', 'Morton', ';', 'told', 'him', 'she', 'would', 'settle', 'on', 'him', 'the', 'Norfolk', 'estate', ',', 'which', ',', 'clear', 'of', 'land-tax', ',', 'brings', 'in', 'a', 'good', 'thousand', 'a-year', ';', 'offered', 'even', ',', 'when', 'matters', 'grew', 'desperate', ',', 'to', 'make', 'it', 'twelve', 'hundred', ';', 'and', 'in', 'opposition', 'to', 'this', ',', 'if', 'he', 'still', 'persisted', 'in', 'this', 'low', 'connection', ',', 'represented', 'to', 'him', 'the', 'certain', 'penury', 'that', 'must', 'attend', 'the', 'match', '.', 'His', 'own', 'two', 'thousand', 'pounds', 'she', 'protested', 'should', 'be', 'his', 'all', ';', 'she', 'would', 'never', 'see', 'him', 'again', ';', 'and', 'so', 'far', 'would', 'she', 'be', 'from', 'affording', 'him', 'the', 'smallest', 'assistance', ',', 'that', 'if', 'he', 'were', 'to', 'enter', 'into', 'any', 'profession', 'with', 'a', 'view', 'of', 'better', 'support', ',', 'she', 'would', 'do', 'all', 'in', 'her', 'power', 'to', 'prevent', 'him', 'advancing', 'in', 'it.', '”', 'Here', 'Marianne', ',', 'in', 'an', 'ecstasy', 'of', 'indignation', ',', 'clapped', 'her', 'hands', 'together', ',', 'and', 'cried', ',', '“', 'Gracious', 'God', '!', 'can', 'this', 'be', 'possible', '!', '”', '“', 'Well', 'may', 'you', 'wonder', ',', 'Marianne', ',', '”', 'replied', 'her', 'brother', ',', '“', 'at', 'the', 'obstinacy', 'which', 'could', 'resist', 'such', 'arguments', 'as', 'these', '.', 'Your', 'exclamation', 'is', 'very', 'natural.', '”', 'Marianne', 'was', 'going', 'to', 'retort', ',', 'but', 'she', 'remembered', 'her', 'promises', ',', 'and', 'forbore', '.', '“', 'All', 'this', ',', 'however', ',', '”', 'he', 'continued', ',', '“', 'was', 'urged', 'in', 'vain', '.', 'Edward', 'said', 'very', 'little', ';', 'but', 'what', 'he', 'did', 'say', ',', 'was', 'in', 'the', 'most', 'determined', 'manner', '.', 'Nothing', 'should', 'prevail', 'on', 'him', 'to', 'give', 'up', 'his', 'engagement', '.', 'He', 'would', 'stand', 'to', 'it', ',', 'cost', 'him', 'what', 'it', 'might.', '”', '“', 'Then', ',', '”', 'cried', 'Mrs.', 'Jennings', 'with', 'blunt', 'sincerity', ',', 'no', 'longer', 'able', 'to', 'be', 'silent', ',', '“', 'he', 'has', 'acted', 'like', 'an', 'honest', 'man', '!', 'I', 'beg', 'your', 'pardon', ',', 'Mr.', 'Dashwood', ',', 'but', 'if', 'he', 'had', 'done', 'otherwise', ',', 'I', 'should', 'have', 'thought', 'him', 'a', 'rascal', '.', 'I', 'have', 'some', 'little', 'concern', 'in', 'the', 'business', ',', 'as', 'well', 'as', 'yourself', ',', 'for', 'Lucy', 'Steele', 'is', 'my', 'cousin', ',', 'and', 'I', 'believe', 'there', 'is', 'not', 'a', 'better', 'kind', 'of', 'girl', 'in', 'the', 'world', ',', 'nor', 'one', 'who', 'more', 'deserves', 'a', 'good', 'husband.', '”', 'John', 'Dashwood', 'was', 'greatly', 'astonished', ';', 'but', 'his', 'nature', 'was', 'calm', ',', 'not', 'open', 'to', 'provocation', ',', 'and', 'he', 'never', 'wished', 'to', 'offend', 'anybody', ',', 'especially', 'anybody', 'of', 'good', 'fortune', '.', 'He', 'therefore', 'replied', ',', 'without', 'any', 'resentment', ',', '“', 'I', 'would', 'by', 'no', 'means', 'speak', 'disrespectfully', 'of', 'any', 'relation', 'of', 'yours', ',', 'madam', '.', 'Miss', 'Lucy', 'Steele', 'is', ',', 'I', 'dare', 'say', ',', 'a', 'very', 'deserving', 'young', 'woman', ',', 'but', 'in', 'the', 'present', 'case', 'you', 'know', ',', 'the', 'connection', 'must', 'be', 'impossible', '.', 'And', 'to', 'have', 'entered', 'into', 'a', 'secret', 'engagement', 'with', 'a', 'young', 'man', 'under', 'her', 'uncle', '’', 's', 'care', ',', 'the', 'son', 'of', 'a', 'woman', 'especially', 'of', 'such', 'very', 'large', 'fortune', 'as', 'Mrs.', 'Ferrars', ',', 'is', 'perhaps', ',', 'altogether', 'a', 'little', 'extraordinary', '.', 'In', 'short', ',', 'I', 'do', 'not', 'mean', 'to', 'reflect', 'upon', 'the', 'behaviour', 'of', 'any', 'person', 'whom', 'you', 'have', 'a', 'regard', 'for', ',', 'Mrs.', 'Jennings', '.', 'We', 'all', 'wish', 'her', 'extremely', 'happy', ';', 'and', 'Mrs.', 'Ferrars', '’', 's', 'conduct', 'throughout', 'the', 'whole', ',', 'has', 'been', 'such', 'as', 'every', 'conscientious', ',', 'good', 'mother', ',', 'in', 'like', 'circumstances', ',', 'would', 'adopt', '.', 'It', 'has', 'been', 'dignified', 'and', 'liberal', '.', 'Edward', 'has', 'drawn', 'his', 'own', 'lot', ',', 'and', 'I', 'fear', 'it', 'will', 'be', 'a', 'bad', 'one.', '”', 'Marianne', 'sighed', 'out', 'her', 'similar', 'apprehension', ';', 'and', 'Elinor', '’', 's', 'heart', 'wrung', 'for', 'the', 'feelings', 'of', 'Edward', ',', 'while', 'braving', 'his', 'mother', '’', 's', 'threats', ',', 'for', 'a', 'woman', 'who', 'could', 'not', 'reward', 'him', '.', '“', 'Well', ',', 'sir', ',', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'and', 'how', 'did', 'it', 'end', '?', '”', '“', 'I', 'am', 'sorry', 'to', 'say', ',', 'ma', '’', 'am', ',', 'in', 'a', 'most', 'unhappy', 'rupture', ':', '—Edward', 'is', 'dismissed', 'for', 'ever', 'from', 'his', 'mother', '’', 's', 'notice', '.', 'He', 'left', 'her', 'house', 'yesterday', ',', 'but', 'where', 'he', 'is', 'gone', ',', 'or', 'whether', 'he', 'is', 'still', 'in', 'town', ',', 'I', 'do', 'not', 'know', ';', 'for', '_we_', 'of', 'course', 'can', 'make', 'no', 'inquiry.', '”', '“', 'Poor', 'young', 'man', '!', '—and', 'what', 'is', 'to', 'become', 'of', 'him', '?', '”', '“', 'What', ',', 'indeed', ',', 'ma', '’', 'am', '!', 'It', 'is', 'a', 'melancholy', 'consideration', '.', 'Born', 'to', 'the', 'prospect', 'of', 'such', 'affluence', '!', 'I', 'can', 'not', 'conceive', 'a', 'situation', 'more', 'deplorable', '.', 'The', 'interest', 'of', 'two', 'thousand', 'pounds—how', 'can', 'a', 'man', 'live', 'on', 'it', '?', '—and', 'when', 'to', 'that', 'is', 'added', 'the', 'recollection', ',', 'that', 'he', 'might', ',', 'but', 'for', 'his', 'own', 'folly', ',', 'within', 'three', 'months', 'have', 'been', 'in', 'the', 'receipt', 'of', 'two', 'thousand', ',', 'five', 'hundred', 'a-year', '(', 'for', 'Miss', 'Morton', 'has', 'thirty', 'thousand', 'pounds', ',', ')', 'I', 'can', 'not', 'picture', 'to', 'myself', 'a', 'more', 'wretched', 'condition', '.', 'We', 'must', 'all', 'feel', 'for', 'him', ';', 'and', 'the', 'more', 'so', ',', 'because', 'it', 'is', 'totally', 'out', 'of', 'our', 'power', 'to', 'assist', 'him.', '”', '“', 'Poor', 'young', 'man', '!', '”', 'cried', 'Mrs.', 'Jennings', ',', '“', 'I', 'am', 'sure', 'he', 'should', 'be', 'very', 'welcome', 'to', 'bed', 'and', 'board', 'at', 'my', 'house', ';', 'and', 'so', 'I', 'would', 'tell', 'him', 'if', 'I', 'could', 'see', 'him', '.', 'It', 'is', 'not', 'fit', 'that', 'he', 'should', 'be', 'living', 'about', 'at', 'his', 'own', 'charge', 'now', ',', 'at', 'lodgings', 'and', 'taverns.', '”', 'Elinor', '’', 's', 'heart', 'thanked', 'her', 'for', 'such', 'kindness', 'towards', 'Edward', ',', 'though', 'she', 'could', 'not', 'forbear', 'smiling', 'at', 'the', 'form', 'of', 'it', '.', '“', 'If', 'he', 'would', 'only', 'have', 'done', 'as', 'well', 'by', 'himself', ',', '”', 'said', 'John', 'Dashwood', ',', '“', 'as', 'all', 'his', 'friends', 'were', 'disposed', 'to', 'do', 'by', 'him', ',', 'he', 'might', 'now', 'have', 'been', 'in', 'his', 'proper', 'situation', ',', 'and', 'would', 'have', 'wanted', 'for', 'nothing', '.', 'But', 'as', 'it', 'is', ',', 'it', 'must', 'be', 'out', 'of', 'anybody', '’', 's', 'power', 'to', 'assist', 'him', '.', 'And', 'there', 'is', 'one', 'thing', 'more', 'preparing', 'against', 'him', ',', 'which', 'must', 'be', 'worse', 'than', 'all—his', 'mother', 'has', 'determined', ',', 'with', 'a', 'very', 'natural', 'kind', 'of', 'spirit', ',', 'to', 'settle', '_that_', 'estate', 'upon', 'Robert', 'immediately', ',', 'which', 'might', 'have', 'been', 'Edward', '’', 's', ',', 'on', 'proper', 'conditions', '.', 'I', 'left', 'her', 'this', 'morning', 'with', 'her', 'lawyer', ',', 'talking', 'over', 'the', 'business.', '”', '“', 'Well', '!', '”', 'said', 'Mrs.', 'Jennings', ',', '“', 'that', 'is', '_her_', 'revenge', '.', 'Everybody', 'has', 'a', 'way', 'of', 'their', 'own', '.', 'But', 'I', 'don', '’', 't', 'think', 'mine', 'would', 'be', ',', 'to', 'make', 'one', 'son', 'independent', ',', 'because', 'another', 'had', 'plagued', 'me.', '”', 'Marianne', 'got', 'up', 'and', 'walked', 'about', 'the', 'room', '.', '“', 'Can', 'anything', 'be', 'more', 'galling', 'to', 'the', 'spirit', 'of', 'a', 'man', ',', '”', 'continued', 'John', ',', '“', 'than', 'to', 'see', 'his', 'younger', 'brother', 'in', 'possession', 'of', 'an', 'estate', 'which', 'might', 'have', 'been', 'his', 'own', '?', 'Poor', 'Edward', '!', 'I', 'feel', 'for', 'him', 'sincerely.', '”', 'A', 'few', 'minutes', 'more', 'spent', 'in', 'the', 'same', 'kind', 'of', 'effusion', ',', 'concluded', 'his', 'visit', ';', 'and', 'with', 'repeated', 'assurances', 'to', 'his', 'sisters', 'that', 'he', 'really', 'believed', 'there', 'was', 'no', 'material', 'danger', 'in', 'Fanny', '’', 's', 'indisposition', ',', 'and', 'that', 'they', 'need', 'not', 'therefore', 'be', 'very', 'uneasy', 'about', 'it', ',', 'he', 'went', 'away', ';', 'leaving', 'the', 'three', 'ladies', 'unanimous', 'in', 'their', 'sentiments', 'on', 'the', 'present', 'occasion', ',', 'as', 'far', 'at', 'least', 'as', 'it', 'regarded', 'Mrs.', 'Ferrars', '’', 's', 'conduct', ',', 'the', 'Dashwoods', '’', ',', 'and', 'Edward', '’', 's', '.', 'Marianne', '’', 's', 'indignation', 'burst', 'forth', 'as', 'soon', 'as', 'he', 'quitted', 'the', 'room', ';', 'and', 'as', 'her', 'vehemence', 'made', 'reserve', 'impossible', 'in', 'Elinor', ',', 'and', 'unnecessary', 'in', 'Mrs.', 'Jennings', ',', 'they', 'all', 'joined', 'in', 'a', 'very', 'spirited', 'critique', 'upon', 'the', 'party', '.', 'CHAPTER', 'XXXVIII', '.', 'Mrs.', 'Jennings', 'was', 'very', 'warm', 'in', 'her', 'praise', 'of', 'Edward', '’', 's', 'conduct', ',', 'but', 'only', 'Elinor', 'and', 'Marianne', 'understood', 'its', 'true', 'merit', '.', '_They_', 'only', 'knew', 'how', 'little', 'he', 'had', 'had', 'to', 'tempt', 'him', 'to', 'be', 'disobedient', ',', 'and', 'how', 'small', 'was', 'the', 'consolation', ',', 'beyond', 'the', 'consciousness', 'of', 'doing', 'right', ',', 'that', 'could', 'remain', 'to', 'him', 'in', 'the', 'loss', 'of', 'friends', 'and', 'fortune', '.', 'Elinor', 'gloried', 'in', 'his', 'integrity', ';', 'and', 'Marianne', 'forgave', 'all', 'his', 'offences', 'in', 'compassion', 'for', 'his', 'punishment', '.', 'But', 'though', 'confidence', 'between', 'them', 'was', ',', 'by', 'this', 'public', 'discovery', ',', 'restored', 'to', 'its', 'proper', 'state', ',', 'it', 'was', 'not', 'a', 'subject', 'on', 'which', 'either', 'of', 'them', 'were', 'fond', 'of', 'dwelling', 'when', 'alone', '.', 'Elinor', 'avoided', 'it', 'upon', 'principle', ',', 'as', 'tending', 'to', 'fix', 'still', 'more', 'upon', 'her', 'thoughts', ',', 'by', 'the', 'too', 'warm', ',', 'too', 'positive', 'assurances', 'of', 'Marianne', ',', 'that', 'belief', 'of', 'Edward', '’', 's', 'continued', 'affection', 'for', 'herself', 'which', 'she', 'rather', 'wished', 'to', 'do', 'away', ';', 'and', 'Marianne', '’', 's', 'courage', 'soon', 'failed', 'her', ',', 'in', 'trying', 'to', 'converse', 'upon', 'a', 'topic', 'which', 'always', 'left', 'her', 'more', 'dissatisfied', 'with', 'herself', 'than', 'ever', ',', 'by', 'the', 'comparison', 'it', 'necessarily', 'produced', 'between', 'Elinor', '’', 's', 'conduct', 'and', 'her', 'own', '.', 'She', 'felt', 'all', 'the', 'force', 'of', 'that', 'comparison', ';', 'but', 'not', 'as', 'her', 'sister', 'had', 'hoped', ',', 'to', 'urge', 'her', 'to', 'exertion', 'now', ';', 'she', 'felt', 'it', 'with', 'all', 'the', 'pain', 'of', 'continual', 'self-reproach', ',', 'regretted', 'most', 'bitterly', 'that', 'she', 'had', 'never', 'exerted', 'herself', 'before', ';', 'but', 'it', 'brought', 'only', 'the', 'torture', 'of', 'penitence', ',', 'without', 'the', 'hope', 'of', 'amendment', '.', 'Her', 'mind', 'was', 'so', 'much', 'weakened', 'that', 'she', 'still', 'fancied', 'present', 'exertion', 'impossible', ',', 'and', 'therefore', 'it', 'only', 'dispirited', 'her', 'more', '.', 'Nothing', 'new', 'was', 'heard', 'by', 'them', ',', 'for', 'a', 'day', 'or', 'two', 'afterwards', ',', 'of', 'affairs', 'in', 'Harley', 'Street', ',', 'or', 'Bartlett', '’', 's', 'Buildings', '.', 'But', 'though', 'so', 'much', 'of', 'the', 'matter', 'was', 'known', 'to', 'them', 'already', ',', 'that', 'Mrs.', 'Jennings', 'might', 'have', 'had', 'enough', 'to', 'do', 'in', 'spreading', 'that', 'knowledge', 'farther', ',', 'without', 'seeking', 'after', 'more', ',', 'she', 'had', 'resolved', 'from', 'the', 'first', 'to', 'pay', 'a', 'visit', 'of', 'comfort', 'and', 'inquiry', 'to', 'her', 'cousins', 'as', 'soon', 'as', 'she', 'could', ';', 'and', 'nothing', 'but', 'the', 'hindrance', 'of', 'more', 'visitors', 'than', 'usual', ',', 'had', 'prevented', 'her', 'going', 'to', 'them', 'within', 'that', 'time', '.', 'The', 'third', 'day', 'succeeding', 'their', 'knowledge', 'of', 'the', 'particulars', ',', 'was', 'so', 'fine', ',', 'so', 'beautiful', 'a', 'Sunday', 'as', 'to', 'draw', 'many', 'to', 'Kensington', 'Gardens', ',', 'though', 'it', 'was', 'only', 'the', 'second', 'week', 'in', 'March', '.', 'Mrs.', 'Jennings', 'and', 'Elinor', 'were', 'of', 'the', 'number', ';', 'but', 'Marianne', ',', 'who', 'knew', 'that', 'the', 'Willoughbys', 'were', 'again', 'in', 'town', ',', 'and', 'had', 'a', 'constant', 'dread', 'of', 'meeting', 'them', ',', 'chose', 'rather', 'to', 'stay', 'at', 'home', ',', 'than', 'venture', 'into', 'so', 'public', 'a', 'place', '.', 'An', 'intimate', 'acquaintance', 'of', 'Mrs.', 'Jennings', 'joined', 'them', 'soon', 'after', 'they', 'entered', 'the', 'Gardens', ',', 'and', 'Elinor', 'was', 'not', 'sorry', 'that', 'by', 'her', 'continuing', 'with', 'them', ',', 'and', 'engaging', 'all', 'Mrs.', 'Jennings', '’', 's', 'conversation', ',', 'she', 'was', 'herself', 'left', 'to', 'quiet', 'reflection', '.', 'She', 'saw', 'nothing', 'of', 'the', 'Willoughbys', ',', 'nothing', 'of', 'Edward', ',', 'and', 'for', 'some', 'time', 'nothing', 'of', 'anybody', 'who', 'could', 'by', 'any', 'chance', 'whether', 'grave', 'or', 'gay', ',', 'be', 'interesting', 'to', 'her', '.', 'But', 'at', 'last', 'she', 'found', 'herself', 'with', 'some', 'surprise', ',', 'accosted', 'by', 'Miss', 'Steele', ',', 'who', ',', 'though', 'looking', 'rather', 'shy', ',', 'expressed', 'great', 'satisfaction', 'in', 'meeting', 'them', ',', 'and', 'on', 'receiving', 'encouragement', 'from', 'the', 'particular', 'kindness', 'of', 'Mrs.', 'Jennings', ',', 'left', 'her', 'own', 'party', 'for', 'a', 'short', 'time', ',', 'to', 'join', 'their', '’', 's', '.', 'Mrs.', 'Jennings', 'immediately', 'whispered', 'to', 'Elinor', ',', '“', 'Get', 'it', 'all', 'out', 'of', 'her', ',', 'my', 'dear', '.', 'She', 'will', 'tell', 'you', 'any', 'thing', 'if', 'you', 'ask', '.', 'You', 'see', 'I', 'can', 'not', 'leave', 'Mrs.', 'Clarke.', '”', 'It', 'was', 'lucky', ',', 'however', ',', 'for', 'Mrs.', 'Jennings', '’', 's', 'curiosity', 'and', 'Elinor', '’', 's', 'too', ',', 'that', 'she', 'would', 'tell', 'any', 'thing', '_without_', 'being', 'asked', ';', 'for', 'nothing', 'would', 'otherwise', 'have', 'been', 'learnt', '.', '“', 'I', 'am', 'so', 'glad', 'to', 'meet', 'you', ';', '”', 'said', 'Miss', 'Steele', ',', 'taking', 'her', 'familiarly', 'by', 'the', 'arm—', '“', 'for', 'I', 'wanted', 'to', 'see', 'you', 'of', 'all', 'things', 'in', 'the', 'world.', '”', 'And', 'then', 'lowering', 'her', 'voice', ',', '“', 'I', 'suppose', 'Mrs.', 'Jennings', 'has', 'heard', 'all', 'about', 'it', '.', 'Is', 'she', 'angry', '?', '”', '“', 'Not', 'at', 'all', ',', 'I', 'believe', ',', 'with', 'you.', '”', '“', 'That', 'is', 'a', 'good', 'thing', '.', 'And', 'Lady', 'Middleton', ',', 'is', '_she_', 'angry', '?', '”', '“', 'I', 'can', 'not', 'suppose', 'it', 'possible', 'that', 'she', 'should', 'be.', '”', '“', 'I', 'am', 'monstrous', 'glad', 'of', 'it', '.', 'Good', 'gracious', '!', 'I', 'have', 'had', 'such', 'a', 'time', 'of', 'it', '!', 'I', 'never', 'saw', 'Lucy', 'in', 'such', 'a', 'rage', 'in', 'my', 'life', '.', 'She', 'vowed', 'at', 'first', 'she', 'would', 'never', 'trim', 'me', 'up', 'a', 'new', 'bonnet', ',', 'nor', 'do', 'any', 'thing', 'else', 'for', 'me', 'again', ',', 'so', 'long', 'as', 'she', 'lived', ';', 'but', 'now', 'she', 'is', 'quite', 'come', 'to', ',', 'and', 'we', 'are', 'as', 'good', 'friends', 'as', 'ever', '.', 'Look', ',', 'she', 'made', 'me', 'this', 'bow', 'to', 'my', 'hat', ',', 'and', 'put', 'in', 'the', 'feather', 'last', 'night', '.', 'There', 'now', ',', '_you_', 'are', 'going', 'to', 'laugh', 'at', 'me', 'too', '.', 'But', 'why', 'should', 'not', 'I', 'wear', 'pink', 'ribbons', '?', 'I', 'do', 'not', 'care', 'if', 'it', '_is_', 'the', 'Doctor', '’', 's', 'favourite', 'colour', '.', 'I', 'am', 'sure', ',', 'for', 'my', 'part', ',', 'I', 'should', 'never', 'have', 'known', 'he', '_did_', 'like', 'it', 'better', 'than', 'any', 'other', 'colour', ',', 'if', 'he', 'had', 'not', 'happened', 'to', 'say', 'so', '.', 'My', 'cousins', 'have', 'been', 'so', 'plaguing', 'me', '!', 'I', 'declare', 'sometimes', 'I', 'do', 'not', 'know', 'which', 'way', 'to', 'look', 'before', 'them.', '”', 'She', 'had', 'wandered', 'away', 'to', 'a', 'subject', 'on', 'which', 'Elinor', 'had', 'nothing', 'to', 'say', ',', 'and', 'therefore', 'soon', 'judged', 'it', 'expedient', 'to', 'find', 'her', 'way', 'back', 'again', 'to', 'the', 'first', '.', '“', 'Well', ',', 'but', 'Miss', 'Dashwood', ',', '”', 'speaking', 'triumphantly', ',', '“', 'people', 'may', 'say', 'what', 'they', 'chuse', 'about', 'Mr.', 'Ferrars', '’', 's', 'declaring', 'he', 'would', 'not', 'have', 'Lucy', ',', 'for', 'it', 'is', 'no', 'such', 'thing', 'I', 'can', 'tell', 'you', ';', 'and', 'it', 'is', 'quite', 'a', 'shame', 'for', 'such', 'ill-natured', 'reports', 'to', 'be', 'spread', 'abroad', '.', 'Whatever', 'Lucy', 'might', 'think', 'about', 'it', 'herself', ',', 'you', 'know', ',', 'it', 'was', 'no', 'business', 'of', 'other', 'people', 'to', 'set', 'it', 'down', 'for', 'certain.', '”', '“', 'I', 'never', 'heard', 'any', 'thing', 'of', 'the', 'kind', 'hinted', 'at', 'before', ',', 'I', 'assure', 'you', ',', '”', 'said', 'Elinor', '.', '“', 'Oh', ',', 'did', 'not', 'you', '?', 'But', 'it', '_was_', 'said', ',', 'I', 'know', ',', 'very', 'well', ',', 'and', 'by', 'more', 'than', 'one', ';', 'for', 'Miss', 'Godby', 'told', 'Miss', 'Sparks', ',', 'that', 'nobody', 'in', 'their', 'senses', 'could', 'expect', 'Mr.', 'Ferrars', 'to', 'give', 'up', 'a', 'woman', 'like', 'Miss', 'Morton', ',', 'with', 'thirty', 'thousand', 'pounds', 'to', 'her', 'fortune', ',', 'for', 'Lucy', 'Steele', 'that', 'had', 'nothing', 'at', 'all', ';', 'and', 'I', 'had', 'it', 'from', 'Miss', 'Sparks', 'myself', '.', 'And', 'besides', 'that', ',', 'my', 'cousin', 'Richard', 'said', 'himself', ',', 'that', 'when', 'it', 'came', 'to', 'the', 'point', 'he', 'was', 'afraid', 'Mr.', 'Ferrars', 'would', 'be', 'off', ';', 'and', 'when', 'Edward', 'did', 'not', 'come', 'near', 'us', 'for', 'three', 'days', ',', 'I', 'could', 'not', 'tell', 'what', 'to', 'think', 'myself', ';', 'and', 'I', 'believe', 'in', 'my', 'heart', 'Lucy', 'gave', 'it', 'up', 'all', 'for', 'lost', ';', 'for', 'we', 'came', 'away', 'from', 'your', 'brother', '’', 's', 'Wednesday', ',', 'and', 'we', 'saw', 'nothing', 'of', 'him', 'not', 'all', 'Thursday', ',', 'Friday', ',', 'and', 'Saturday', ',', 'and', 'did', 'not', 'know', 'what', 'was', 'become', 'of', 'him', '.', 'Once', 'Lucy', 'thought', 'to', 'write', 'to', 'him', ',', 'but', 'then', 'her', 'spirits', 'rose', 'against', 'that', '.', 'However', 'this', 'morning', 'he', 'came', 'just', 'as', 'we', 'came', 'home', 'from', 'church', ';', 'and', 'then', 'it', 'all', 'came', 'out', ',', 'how', 'he', 'had', 'been', 'sent', 'for', 'Wednesday', 'to', 'Harley', 'Street', ',', 'and', 'been', 'talked', 'to', 'by', 'his', 'mother', 'and', 'all', 'of', 'them', ',', 'and', 'how', 'he', 'had', 'declared', 'before', 'them', 'all', 'that', 'he', 'loved', 'nobody', 'but', 'Lucy', ',', 'and', 'nobody', 'but', 'Lucy', 'would', 'he', 'have', '.', 'And', 'how', 'he', 'had', 'been', 'so', 'worried', 'by', 'what', 'passed', ',', 'that', 'as', 'soon', 'as', 'he', 'had', 'went', 'away', 'from', 'his', 'mother', '’', 's', 'house', ',', 'he', 'had', 'got', 'upon', 'his', 'horse', ',', 'and', 'rid', 'into', 'the', 'country', ',', 'some', 'where', 'or', 'other', ';', 'and', 'how', 'he', 'had', 'stayed', 'about', 'at', 'an', 'inn', 'all', 'Thursday', 'and', 'Friday', ',', 'on', 'purpose', 'to', 'get', 'the', 'better', 'of', 'it', '.', 'And', 'after', 'thinking', 'it', 'all', 'over', 'and', 'over', 'again', ',', 'he', 'said', ',', 'it', 'seemed', 'to', 'him', 'as', 'if', ',', 'now', 'he', 'had', 'no', 'fortune', ',', 'and', 'no', 'nothing', 'at', 'all', ',', 'it', 'would', 'be', 'quite', 'unkind', 'to', 'keep', 'her', 'on', 'to', 'the', 'engagement', ',', 'because', 'it', 'must', 'be', 'for', 'her', 'loss', ',', 'for', 'he', 'had', 'nothing', 'but', 'two', 'thousand', 'pounds', ',', 'and', 'no', 'hope', 'of', 'any', 'thing', 'else', ';', 'and', 'if', 'he', 'was', 'to', 'go', 'into', 'orders', ',', 'as', 'he', 'had', 'some', 'thoughts', ',', 'he', 'could', 'get', 'nothing', 'but', 'a', 'curacy', ',', 'and', 'how', 'was', 'they', 'to', 'live', 'upon', 'that', '?', '—He', 'could', 'not', 'bear', 'to', 'think', 'of', 'her', 'doing', 'no', 'better', ',', 'and', 'so', 'he', 'begged', ',', 'if', 'she', 'had', 'the', 'least', 'mind', 'for', 'it', ',', 'to', 'put', 'an', 'end', 'to', 'the', 'matter', 'directly', ',', 'and', 'leave', 'him', 'shift', 'for', 'himself', '.', 'I', 'heard', 'him', 'say', 'all', 'this', 'as', 'plain', 'as', 'could', 'possibly', 'be', '.', 'And', 'it', 'was', 'entirely', 'for', '_her_', 'sake', ',', 'and', 'upon', '_her_', 'account', ',', 'that', 'he', 'said', 'a', 'word', 'about', 'being', 'off', ',', 'and', 'not', 'upon', 'his', 'own', '.', 'I', 'will', 'take', 'my', 'oath', 'he', 'never', 'dropt', 'a', 'syllable', 'of', 'being', 'tired', 'of', 'her', ',', 'or', 'of', 'wishing', 'to', 'marry', 'Miss', 'Morton', ',', 'or', 'any', 'thing', 'like', 'it', '.', 'But', ',', 'to', 'be', 'sure', ',', 'Lucy', 'would', 'not', 'give', 'ear', 'to', 'such', 'kind', 'of', 'talking', ';', 'so', 'she', 'told', 'him', 'directly', '(', 'with', 'a', 'great', 'deal', 'about', 'sweet', 'and', 'love', ',', 'you', 'know', ',', 'and', 'all', 'that—Oh', ',', 'la', '!', 'one', 'can', '’', 't', 'repeat', 'such', 'kind', 'of', 'things', 'you', 'know', ')', '—she', 'told', 'him', 'directly', ',', 'she', 'had', 'not', 'the', 'least', 'mind', 'in', 'the', 'world', 'to', 'be', 'off', ',', 'for', 'she', 'could', 'live', 'with', 'him', 'upon', 'a', 'trifle', ',', 'and', 'how', 'little', 'so', 'ever', 'he', 'might', 'have', ',', 'she', 'should', 'be', 'very', 'glad', 'to', 'have', 'it', 'all', ',', 'you', 'know', ',', 'or', 'something', 'of', 'the', 'kind', '.', 'So', 'then', 'he', 'was', 'monstrous', 'happy', ',', 'and', 'talked', 'on', 'some', 'time', 'about', 'what', 'they', 'should', 'do', ',', 'and', 'they', 'agreed', 'he', 'should', 'take', 'orders', 'directly', ',', 'and', 'they', 'must', 'wait', 'to', 'be', 'married', 'till', 'he', 'got', 'a', 'living', '.', 'And', 'just', 'then', 'I', 'could', 'not', 'hear', 'any', 'more', ',', 'for', 'my', 'cousin', 'called', 'from', 'below', 'to', 'tell', 'me', 'Mrs.', 'Richardson', 'was', 'come', 'in', 'her', 'coach', ',', 'and', 'would', 'take', 'one', 'of', 'us', 'to', 'Kensington', 'Gardens', ';', 'so', 'I', 'was', 'forced', 'to', 'go', 'into', 'the', 'room', 'and', 'interrupt', 'them', ',', 'to', 'ask', 'Lucy', 'if', 'she', 'would', 'like', 'to', 'go', ',', 'but', 'she', 'did', 'not', 'care', 'to', 'leave', 'Edward', ';', 'so', 'I', 'just', 'run', 'up', 'stairs', 'and', 'put', 'on', 'a', 'pair', 'of', 'silk', 'stockings', 'and', 'came', 'off', 'with', 'the', 'Richardsons.', '”', '“', 'I', 'do', 'not', 'understand', 'what', 'you', 'mean', 'by', 'interrupting', 'them', ',', '”', 'said', 'Elinor', ';', '“', 'you', 'were', 'all', 'in', 'the', 'same', 'room', 'together', ',', 'were', 'not', 'you', '?', '”', '“', 'No', ',', 'indeed', ',', 'not', 'us', '.', 'La', '!', 'Miss', 'Dashwood', ',', 'do', 'you', 'think', 'people', 'make', 'love', 'when', 'any', 'body', 'else', 'is', 'by', '?', 'Oh', ',', 'for', 'shame', '!', '—To', 'be', 'sure', 'you', 'must', 'know', 'better', 'than', 'that', '.', '(', 'Laughing', 'affectedly', '.', ')', '—No', ',', 'no', ';', 'they', 'were', 'shut', 'up', 'in', 'the', 'drawing-room', 'together', ',', 'and', 'all', 'I', 'heard', 'was', 'only', 'by', 'listening', 'at', 'the', 'door.', '”', '“', 'How', '!', '”', 'cried', 'Elinor', ';', '“', 'have', 'you', 'been', 'repeating', 'to', 'me', 'what', 'you', 'only', 'learnt', 'yourself', 'by', 'listening', 'at', 'the', 'door', '?', 'I', 'am', 'sorry', 'I', 'did', 'not', 'know', 'it', 'before', ';', 'for', 'I', 'certainly', 'would', 'not', 'have', 'suffered', 'you', 'to', 'give', 'me', 'particulars', 'of', 'a', 'conversation', 'which', 'you', 'ought', 'not', 'to', 'have', 'known', 'yourself', '.', 'How', 'could', 'you', 'behave', 'so', 'unfairly', 'by', 'your', 'sister', '?', '”', '“', 'Oh', ',', 'la', '!', 'there', 'is', 'nothing', 'in', '_that_', '.', 'I', 'only', 'stood', 'at', 'the', 'door', ',', 'and', 'heard', 'what', 'I', 'could', '.', 'And', 'I', 'am', 'sure', 'Lucy', 'would', 'have', 'done', 'just', 'the', 'same', 'by', 'me', ';', 'for', 'a', 'year', 'or', 'two', 'back', ',', 'when', 'Martha', 'Sharpe', 'and', 'I', 'had', 'so', 'many', 'secrets', 'together', ',', 'she', 'never', 'made', 'any', 'bones', 'of', 'hiding', 'in', 'a', 'closet', ',', 'or', 'behind', 'a', 'chimney-board', ',', 'on', 'purpose', 'to', 'hear', 'what', 'we', 'said.', '”', 'Elinor', 'tried', 'to', 'talk', 'of', 'something', 'else', ';', 'but', 'Miss', 'Steele', 'could', 'not', 'be', 'kept', 'beyond', 'a', 'couple', 'of', 'minutes', ',', 'from', 'what', 'was', 'uppermost', 'in', 'her', 'mind', '.', '“', 'Edward', 'talks', 'of', 'going', 'to', 'Oxford', 'soon', ',', '”', 'said', 'she', ';', '“', 'but', 'now', 'he', 'is', 'lodging', 'at', 'No.—', ',', 'Pall', 'Mall', '.', 'What', 'an', 'ill-natured', 'woman', 'his', 'mother', 'is', ',', 'an', '’', 't', 'she', '?', 'And', 'your', 'brother', 'and', 'sister', 'were', 'not', 'very', 'kind', '!', 'However', ',', 'I', 'shan', '’', 't', 'say', 'anything', 'against', 'them', 'to', '_you', ';', '_', 'and', 'to', 'be', 'sure', 'they', 'did', 'send', 'us', 'home', 'in', 'their', 'own', 'chariot', ',', 'which', 'was', 'more', 'than', 'I', 'looked', 'for', '.', 'And', 'for', 'my', 'part', ',', 'I', 'was', 'all', 'in', 'a', 'fright', 'for', 'fear', 'your', 'sister', 'should', 'ask', 'us', 'for', 'the', 'huswifes', 'she', 'had', 'gave', 'us', 'a', 'day', 'or', 'two', 'before', ';', 'but', ',', 'however', ',', 'nothing', 'was', 'said', 'about', 'them', ',', 'and', 'I', 'took', 'care', 'to', 'keep', 'mine', 'out', 'of', 'sight', '.', 'Edward', 'have', 'got', 'some', 'business', 'at', 'Oxford', ',', 'he', 'says', ';', 'so', 'he', 'must', 'go', 'there', 'for', 'a', 'time', ';', 'and', 'after', '_that_', ',', 'as', 'soon', 'as', 'he', 'can', 'light', 'upon', 'a', 'Bishop', ',', 'he', 'will', 'be', 'ordained', '.', 'I', 'wonder', 'what', 'curacy', 'he', 'will', 'get', '!', 'Good', 'gracious', '!', '(', 'giggling', 'as', 'she', 'spoke', ')', 'I', '’', 'd', 'lay', 'my', 'life', 'I', 'know', 'what', 'my', 'cousins', 'will', 'say', ',', 'when', 'they', 'hear', 'of', 'it', '.', 'They', 'will', 'tell', 'me', 'I', 'should', 'write', 'to', 'the', 'Doctor', ',', 'to', 'get', 'Edward', 'the', 'curacy', 'of', 'his', 'new', 'living', '.', 'I', 'know', 'they', 'will', ';', 'but', 'I', 'am', 'sure', 'I', 'would', 'not', 'do', 'such', 'a', 'thing', 'for', 'all', 'the', 'world', '.', '‘', 'La', '!', '’', 'I', 'shall', 'say', 'directly', ',', '‘', 'I', 'wonder', 'how', 'you', 'could', 'think', 'of', 'such', 'a', 'thing', '?', '_I_', 'write', 'to', 'the', 'Doctor', ',', 'indeed', '!', '’', '”', '“', 'Well', ',', '”', 'said', 'Elinor', ',', '“', 'it', 'is', 'a', 'comfort', 'to', 'be', 'prepared', 'against', 'the', 'worst', '.', 'You', 'have', 'got', 'your', 'answer', 'ready.', '”', 'Miss', 'Steele', 'was', 'going', 'to', 'reply', 'on', 'the', 'same', 'subject', ',', 'but', 'the', 'approach', 'of', 'her', 'own', 'party', 'made', 'another', 'more', 'necessary', '.', '“', 'Oh', ',', 'la', '!', 'here', 'come', 'the', 'Richardsons', '.', 'I', 'had', 'a', 'vast', 'deal', 'more', 'to', 'say', 'to', 'you', ',', 'but', 'I', 'must', 'not', 'stay', 'away', 'from', 'them', 'not', 'any', 'longer', '.', 'I', 'assure', 'you', 'they', 'are', 'very', 'genteel', 'people', '.', 'He', 'makes', 'a', 'monstrous', 'deal', 'of', 'money', ',', 'and', 'they', 'keep', 'their', 'own', 'coach', '.', 'I', 'have', 'not', 'time', 'to', 'speak', 'to', 'Mrs.', 'Jennings', 'about', 'it', 'myself', ',', 'but', 'pray', 'tell', 'her', 'I', 'am', 'quite', 'happy', 'to', 'hear', 'she', 'is', 'not', 'in', 'anger', 'against', 'us', ',', 'and', 'Lady', 'Middleton', 'the', 'same', ';', 'and', 'if', 'anything', 'should', 'happen', 'to', 'take', 'you', 'and', 'your', 'sister', 'away', ',', 'and', 'Mrs.', 'Jennings', 'should', 'want', 'company', ',', 'I', 'am', 'sure', 'we', 'should', 'be', 'very', 'glad', 'to', 'come', 'and', 'stay', 'with', 'her', 'for', 'as', 'long', 'a', 'time', 'as', 'she', 'likes', '.', 'I', 'suppose', 'Lady', 'Middleton', 'won', '’', 't', 'ask', 'us', 'any', 'more', 'this', 'bout', '.', 'Good-by', ';', 'I', 'am', 'sorry', 'Miss', 'Marianne', 'was', 'not', 'here', '.', 'Remember', 'me', 'kindly', 'to', 'her', '.', 'La', '!', 'if', 'you', 'have', 'not', 'got', 'your', 'spotted', 'muslin', 'on', '!', '—I', 'wonder', 'you', 'was', 'not', 'afraid', 'of', 'its', 'being', 'torn.', '”', 'Such', 'was', 'her', 'parting', 'concern', ';', 'for', 'after', 'this', ',', 'she', 'had', 'time', 'only', 'to', 'pay', 'her', 'farewell', 'compliments', 'to', 'Mrs.', 'Jennings', ',', 'before', 'her', 'company', 'was', 'claimed', 'by', 'Mrs.', 'Richardson', ';', 'and', 'Elinor', 'was', 'left', 'in', 'possession', 'of', 'knowledge', 'which', 'might', 'feed', 'her', 'powers', 'of', 'reflection', 'some', 'time', ',', 'though', 'she', 'had', 'learnt', 'very', 'little', 'more', 'than', 'what', 'had', 'been', 'already', 'foreseen', 'and', 'foreplanned', 'in', 'her', 'own', 'mind', '.', 'Edward', '’', 's', 'marriage', 'with', 'Lucy', 'was', 'as', 'firmly', 'determined', 'on', ',', 'and', 'the', 'time', 'of', 'its', 'taking', 'place', 'remained', 'as', 'absolutely', 'uncertain', ',', 'as', 'she', 'had', 'concluded', 'it', 'would', 'be', ';', '—every', 'thing', 'depended', ',', 'exactly', 'after', 'her', 'expectation', ',', 'on', 'his', 'getting', 'that', 'preferment', ',', 'of', 'which', ',', 'at', 'present', ',', 'there', 'seemed', 'not', 'the', 'smallest', 'chance', '.', 'As', 'soon', 'as', 'they', 'returned', 'to', 'the', 'carriage', ',', 'Mrs.', 'Jennings', 'was', 'eager', 'for', 'information', ';', 'but', 'as', 'Elinor', 'wished', 'to', 'spread', 'as', 'little', 'as', 'possible', 'intelligence', 'that', 'had', 'in', 'the', 'first', 'place', 'been', 'so', 'unfairly', 'obtained', ',', 'she', 'confined', 'herself', 'to', 'the', 'brief', 'repetition', 'of', 'such', 'simple', 'particulars', ',', 'as', 'she', 'felt', 'assured', 'that', 'Lucy', ',', 'for', 'the', 'sake', 'of', 'her', 'own', 'consequence', ',', 'would', 'choose', 'to', 'have', 'known', '.', 'The', 'continuance', 'of', 'their', 'engagement', ',', 'and', 'the', 'means', 'that', 'were', 'able', 'to', 'be', 'taken', 'for', 'promoting', 'its', 'end', ',', 'was', 'all', 'her', 'communication', ';', 'and', 'this', 'produced', 'from', 'Mrs.', 'Jennings', 'the', 'following', 'natural', 'remark', '.', '“', 'Wait', 'for', 'his', 'having', 'a', 'living', '!', '—ay', ',', 'we', 'all', 'know', 'how', '_that_', 'will', 'end', ':', '—they', 'will', 'wait', 'a', 'twelvemonth', ',', 'and', 'finding', 'no', 'good', 'comes', 'of', 'it', ',', 'will', 'set', 'down', 'upon', 'a', 'curacy', 'of', 'fifty', 'pounds', 'a-year', ',', 'with', 'the', 'interest', 'of', 'his', 'two', 'thousand', 'pounds', ',', 'and', 'what', 'little', 'matter', 'Mr.', 'Steele', 'and', 'Mr.', 'Pratt', 'can', 'give', 'her', '.', 'Then', 'they', 'will', 'have', 'a', 'child', 'every', 'year', '!', 'and', 'Lord', 'help', '’', 'em', '!', 'how', 'poor', 'they', 'will', 'be', '!', 'I', 'must', 'see', 'what', 'I', 'can', 'give', 'them', 'towards', 'furnishing', 'their', 'house', '.', 'Two', 'maids', 'and', 'two', 'men', ',', 'indeed', '!', 'as', 'I', 'talked', 'of', 't', '’', 'other', 'day', '.', 'No', ',', 'no', ',', 'they', 'must', 'get', 'a', 'stout', 'girl', 'of', 'all', 'works', '.', 'Betty', '’', 's', 'sister', 'would', 'never', 'do', 'for', 'them', '_now_.', '”', 'The', 'next', 'morning', 'brought', 'Elinor', 'a', 'letter', 'by', 'the', 'two-penny', 'post', 'from', 'Lucy', 'herself', '.', 'It', 'was', 'as', 'follows', ':', '“', 'Bartlett', '’', 's', 'Building', ',', 'March', '.', '“', 'I', 'hope', 'my', 'dear', 'Miss', 'Dashwood', 'will', 'excuse', 'the', 'liberty', 'I', 'take', 'of', 'writing', 'to', 'her', ';', 'but', 'I', 'know', 'your', 'friendship', 'for', 'me', 'will', 'make', 'you', 'pleased', 'to', 'hear', 'such', 'a', 'good', 'account', 'of', 'myself', 'and', 'my', 'dear', 'Edward', ',', 'after', 'all', 'the', 'troubles', 'we', 'have', 'went', 'through', 'lately', ',', 'therefore', 'will', 'make', 'no', 'more', 'apologies', ',', 'but', 'proceed', 'to', 'say', 'that', ',', 'thank', 'God', '!', 'though', 'we', 'have', 'suffered', 'dreadfully', ',', 'we', 'are', 'both', 'quite', 'well', 'now', ',', 'and', 'as', 'happy', 'as', 'we', 'must', 'always', 'be', 'in', 'one', 'another', '’', 's', 'love', '.', 'We', 'have', 'had', 'great', 'trials', ',', 'and', 'great', 'persecutions', ',', 'but', 'however', ',', 'at', 'the', 'same', 'time', ',', 'gratefully', 'acknowledge', 'many', 'friends', ',', 'yourself', 'not', 'the', 'least', 'among', 'them', ',', 'whose', 'great', 'kindness', 'I', 'shall', 'always', 'thankfully', 'remember', ',', 'as', 'will', 'Edward', 'too', ',', 'who', 'I', 'have', 'told', 'of', 'it', '.', 'I', 'am', 'sure', 'you', 'will', 'be', 'glad', 'to', 'hear', ',', 'as', 'likewise', 'dear', 'Mrs.', 'Jennings', ',', 'I', 'spent', 'two', 'happy', 'hours', 'with', 'him', 'yesterday', 'afternoon', ',', 'he', 'would', 'not', 'hear', 'of', 'our', 'parting', ',', 'though', 'earnestly', 'did', 'I', ',', 'as', 'I', 'thought', 'my', 'duty', 'required', ',', 'urge', 'him', 'to', 'it', 'for', 'prudence', 'sake', ',', 'and', 'would', 'have', 'parted', 'for', 'ever', 'on', 'the', 'spot', ',', 'would', 'he', 'consent', 'to', 'it', ';', 'but', 'he', 'said', 'it', 'should', 'never', 'be', ',', 'he', 'did', 'not', 'regard', 'his', 'mother', '’', 's', 'anger', ',', 'while', 'he', 'could', 'have', 'my', 'affections', ';', 'our', 'prospects', 'are', 'not', 'very', 'bright', ',', 'to', 'be', 'sure', ',', 'but', 'we', 'must', 'wait', ',', 'and', 'hope', 'for', 'the', 'best', ';', 'he', 'will', 'be', 'ordained', 'shortly', ';', 'and', 'should', 'it', 'ever', 'be', 'in', 'your', 'power', 'to', 'recommend', 'him', 'to', 'any', 'body', 'that', 'has', 'a', 'living', 'to', 'bestow', ',', 'am', 'very', 'sure', 'you', 'will', 'not', 'forget', 'us', ',', 'and', 'dear', 'Mrs.', 'Jennings', 'too', ',', 'trust', 'she', 'will', 'speak', 'a', 'good', 'word', 'for', 'us', 'to', 'Sir', 'John', ',', 'or', 'Mr.', 'Palmer', ',', 'or', 'any', 'friend', 'that', 'may', 'be', 'able', 'to', 'assist', 'us.—Poor', 'Anne', 'was', 'much', 'to', 'blame', 'for', 'what', 'she', 'did', ',', 'but', 'she', 'did', 'it', 'for', 'the', 'best', ',', 'so', 'I', 'say', 'nothing', ';', 'hope', 'Mrs.', 'Jennings', 'won', '’', 't', 'think', 'it', 'too', 'much', 'trouble', 'to', 'give', 'us', 'a', 'call', ',', 'should', 'she', 'come', 'this', 'way', 'any', 'morning', ',', '’', 'twould', 'be', 'a', 'great', 'kindness', ',', 'and', 'my', 'cousins', 'would', 'be', 'proud', 'to', 'know', 'her.—My', 'paper', 'reminds', 'me', 'to', 'conclude', ';', 'and', 'begging', 'to', 'be', 'most', 'gratefully', 'and', 'respectfully', 'remembered', 'to', 'her', ',', 'and', 'to', 'Sir', 'John', ',', 'and', 'Lady', 'Middleton', ',', 'and', 'the', 'dear', 'children', ',', 'when', 'you', 'chance', 'to', 'see', 'them', ',', 'and', 'love', 'to', 'Miss', 'Marianne', ',', '“', 'I', 'am', ',', '&', 'c.', '”', 'As', 'soon', 'as', 'Elinor', 'had', 'finished', 'it', ',', 'she', 'performed', 'what', 'she', 'concluded', 'to', 'be', 'its', 'writer', '’', 's', 'real', 'design', ',', 'by', 'placing', 'it', 'in', 'the', 'hands', 'of', 'Mrs.', 'Jennings', ',', 'who', 'read', 'it', 'aloud', 'with', 'many', 'comments', 'of', 'satisfaction', 'and', 'praise', '.', '“', 'Very', 'well', 'indeed', '!', '—how', 'prettily', 'she', 'writes', '!', '—aye', ',', 'that', 'was', 'quite', 'proper', 'to', 'let', 'him', 'be', 'off', 'if', 'he', 'would', '.', 'That', 'was', 'just', 'like', 'Lucy', '.', 'Poor', 'soul', '!', 'I', 'wish', 'I', '_could_', 'get', 'him', 'a', 'living', ',', 'with', 'all', 'my', 'heart', '.', 'She', 'calls', 'me', 'dear', 'Mrs.', 'Jennings', ',', 'you', 'see', '.', 'She', 'is', 'a', 'good-hearted', 'girl', 'as', 'ever', 'lived', '.', 'Very', 'well', 'upon', 'my', 'word', '.', 'That', 'sentence', 'is', 'very', 'prettily', 'turned', '.', 'Yes', ',', 'yes', ',', 'I', 'will', 'go', 'and', 'see', 'her', ',', 'sure', 'enough', '.', 'How', 'attentive', 'she', 'is', ',', 'to', 'think', 'of', 'every', 'body', '!', '—Thank', 'you', ',', 'my', 'dear', ',', 'for', 'showing', 'it', 'me', '.', 'It', 'is', 'as', 'pretty', 'a', 'letter', 'as', 'ever', 'I', 'saw', ',', 'and', 'does', 'Lucy', '’', 's', 'head', 'and', 'heart', 'great', 'credit.', '”', 'CHAPTER', 'XXXIX', '.', 'The', 'Miss', 'Dashwoods', 'had', 'now', 'been', 'rather', 'more', 'than', 'two', 'months', 'in', 'town', ',', 'and', 'Marianne', '’', 's', 'impatience', 'to', 'be', 'gone', 'increased', 'every', 'day', '.', 'She', 'sighed', 'for', 'the', 'air', ',', 'the', 'liberty', ',', 'the', 'quiet', 'of', 'the', 'country', ';', 'and', 'fancied', 'that', 'if', 'any', 'place', 'could', 'give', 'her', 'ease', ',', 'Barton', 'must', 'do', 'it', '.', 'Elinor', 'was', 'hardly', 'less', 'anxious', 'than', 'herself', 'for', 'their', 'removal', ',', 'and', 'only', 'so', 'much', 'less', 'bent', 'on', 'its', 'being', 'effected', 'immediately', ',', 'as', 'that', 'she', 'was', 'conscious', 'of', 'the', 'difficulties', 'of', 'so', 'long', 'a', 'journey', ',', 'which', 'Marianne', 'could', 'not', 'be', 'brought', 'to', 'acknowledge', '.', 'She', 'began', ',', 'however', ',', 'seriously', 'to', 'turn', 'her', 'thoughts', 'towards', 'its', 'accomplishment', ',', 'and', 'had', 'already', 'mentioned', 'their', 'wishes', 'to', 'their', 'kind', 'hostess', ',', 'who', 'resisted', 'them', 'with', 'all', 'the', 'eloquence', 'of', 'her', 'good-will', ',', 'when', 'a', 'plan', 'was', 'suggested', ',', 'which', ',', 'though', 'detaining', 'them', 'from', 'home', 'yet', 'a', 'few', 'weeks', 'longer', ',', 'appeared', 'to', 'Elinor', 'altogether', 'much', 'more', 'eligible', 'than', 'any', 'other', '.', 'The', 'Palmers', 'were', 'to', 'remove', 'to', 'Cleveland', 'about', 'the', 'end', 'of', 'March', ',', 'for', 'the', 'Easter', 'holidays', ';', 'and', 'Mrs.', 'Jennings', ',', 'with', 'both', 'her', 'friends', ',', 'received', 'a', 'very', 'warm', 'invitation', 'from', 'Charlotte', 'to', 'go', 'with', 'them', '.', 'This', 'would', 'not', ',', 'in', 'itself', ',', 'have', 'been', 'sufficient', 'for', 'the', 'delicacy', 'of', 'Miss', 'Dashwood', ';', '—but', 'it', 'was', 'inforced', 'with', 'so', 'much', 'real', 'politeness', 'by', 'Mr.', 'Palmer', 'himself', ',', 'as', ',', 'joined', 'to', 'the', 'very', 'great', 'amendment', 'of', 'his', 'manners', 'towards', 'them', 'since', 'her', 'sister', 'had', 'been', 'known', 'to', 'be', 'unhappy', ',', 'induced', 'her', 'to', 'accept', 'it', 'with', 'pleasure', '.', 'When', 'she', 'told', 'Marianne', 'what', 'she', 'had', 'done', ',', 'however', ',', 'her', 'first', 'reply', 'was', 'not', 'very', 'auspicious', '.', '“', 'Cleveland', '!', '”', '—she', 'cried', ',', 'with', 'great', 'agitation', '.', '“', 'No', ',', 'I', 'can', 'not', 'go', 'to', 'Cleveland.', '”', '“', 'You', 'forget', ',', '”', 'said', 'Elinor', 'gently', ',', '“', 'that', 'its', 'situation', 'is', 'not—that', 'it', 'is', 'not', 'in', 'the', 'neighbourhood', 'of—', '”', '“', 'But', 'it', 'is', 'in', 'Somersetshire.—I', 'can', 'not', 'go', 'into', 'Somersetshire.—There', ',', 'where', 'I', 'looked', 'forward', 'to', 'going', '...', 'No', ',', 'Elinor', ',', 'you', 'can', 'not', 'expect', 'me', 'to', 'go', 'there.', '”', 'Elinor', 'would', 'not', 'argue', 'upon', 'the', 'propriety', 'of', 'overcoming', 'such', 'feelings', ';', '—she', 'only', 'endeavoured', 'to', 'counteract', 'them', 'by', 'working', 'on', 'others', ';', '—represented', 'it', ',', 'therefore', ',', 'as', 'a', 'measure', 'which', 'would', 'fix', 'the', 'time', 'of', 'her', 'returning', 'to', 'that', 'dear', 'mother', ',', 'whom', 'she', 'so', 'much', 'wished', 'to', 'see', ',', 'in', 'a', 'more', 'eligible', ',', 'more', 'comfortable', 'manner', ',', 'than', 'any', 'other', 'plan', 'could', 'do', ',', 'and', 'perhaps', 'without', 'any', 'greater', 'delay', '.', 'From', 'Cleveland', ',', 'which', 'was', 'within', 'a', 'few', 'miles', 'of', 'Bristol', ',', 'the', 'distance', 'to', 'Barton', 'was', 'not', 'beyond', 'one', 'day', ',', 'though', 'a', 'long', 'day', '’', 's', 'journey', ';', 'and', 'their', 'mother', '’', 's', 'servant', 'might', 'easily', 'come', 'there', 'to', 'attend', 'them', 'down', ';', 'and', 'as', 'there', 'could', 'be', 'no', 'occasion', 'of', 'their', 'staying', 'above', 'a', 'week', 'at', 'Cleveland', ',', 'they', 'might', 'now', 'be', 'at', 'home', 'in', 'little', 'more', 'than', 'three', 'weeks', '’', 'time', '.', 'As', 'Marianne', '’', 's', 'affection', 'for', 'her', 'mother', 'was', 'sincere', ',', 'it', 'must', 'triumph', 'with', 'little', 'difficulty', ',', 'over', 'the', 'imaginary', 'evils', 'she', 'had', 'started', '.', 'Mrs.', 'Jennings', 'was', 'so', 'far', 'from', 'being', 'weary', 'of', 'her', 'guests', ',', 'that', 'she', 'pressed', 'them', 'very', 'earnestly', 'to', 'return', 'with', 'her', 'again', 'from', 'Cleveland', '.', 'Elinor', 'was', 'grateful', 'for', 'the', 'attention', ',', 'but', 'it', 'could', 'not', 'alter', 'her', 'design', ';', 'and', 'their', 'mother', '’', 's', 'concurrence', 'being', 'readily', 'gained', ',', 'every', 'thing', 'relative', 'to', 'their', 'return', 'was', 'arranged', 'as', 'far', 'as', 'it', 'could', 'be', ';', '—and', 'Marianne', 'found', 'some', 'relief', 'in', 'drawing', 'up', 'a', 'statement', 'of', 'the', 'hours', 'that', 'were', 'yet', 'to', 'divide', 'her', 'from', 'Barton', '.', '“', 'Ah', '!', 'Colonel', ',', 'I', 'do', 'not', 'know', 'what', 'you', 'and', 'I', 'shall', 'do', 'without', 'the', 'Miss', 'Dashwoods', ';', '”', '—was', 'Mrs.', 'Jennings', '’', 's', 'address', 'to', 'him', 'when', 'he', 'first', 'called', 'on', 'her', ',', 'after', 'their', 'leaving', 'her', 'was', 'settled—', '“', 'for', 'they', 'are', 'quite', 'resolved', 'upon', 'going', 'home', 'from', 'the', 'Palmers', ';', '—and', 'how', 'forlorn', 'we', 'shall', 'be', ',', 'when', 'I', 'come', 'back', '!', '—Lord', '!', 'we', 'shall', 'sit', 'and', 'gape', 'at', 'one', 'another', 'as', 'dull', 'as', 'two', 'cats.', '”', 'Perhaps', 'Mrs.', 'Jennings', 'was', 'in', 'hopes', ',', 'by', 'this', 'vigorous', 'sketch', 'of', 'their', 'future', 'ennui', ',', 'to', 'provoke', 'him', 'to', 'make', 'that', 'offer', ',', 'which', 'might', 'give', 'himself', 'an', 'escape', 'from', 'it', ';', 'and', 'if', 'so', ',', 'she', 'had', 'soon', 'afterwards', 'good', 'reason', 'to', 'think', 'her', 'object', 'gained', ';', 'for', ',', 'on', 'Elinor', '’', 's', 'moving', 'to', 'the', 'window', 'to', 'take', 'more', 'expeditiously', 'the', 'dimensions', 'of', 'a', 'print', ',', 'which', 'she', 'was', 'going', 'to', 'copy', 'for', 'her', 'friend', ',', 'he', 'followed', 'her', 'to', 'it', 'with', 'a', 'look', 'of', 'particular', 'meaning', ',', 'and', 'conversed', 'with', 'her', 'there', 'for', 'several', 'minutes', '.', 'The', 'effect', 'of', 'his', 'discourse', 'on', 'the', 'lady', 'too', ',', 'could', 'not', 'escape', 'her', 'observation', ',', 'for', 'though', 'she', 'was', 'too', 'honorable', 'to', 'listen', ',', 'and', 'had', 'even', 'changed', 'her', 'seat', ',', 'on', 'purpose', 'that', 'she', 'might', '_not_', 'hear', ',', 'to', 'one', 'close', 'by', 'the', 'piano', 'forte', 'on', 'which', 'Marianne', 'was', 'playing', ',', 'she', 'could', 'not', 'keep', 'herself', 'from', 'seeing', 'that', 'Elinor', 'changed', 'colour', ',', 'attended', 'with', 'agitation', ',', 'and', 'was', 'too', 'intent', 'on', 'what', 'he', 'said', 'to', 'pursue', 'her', 'employment', '.', 'Still', 'farther', 'in', 'confirmation', 'of', 'her', 'hopes', ',', 'in', 'the', 'interval', 'of', 'Marianne', '’', 's', 'turning', 'from', 'one', 'lesson', 'to', 'another', ',', 'some', 'words', 'of', 'the', 'Colonel', '’', 's', 'inevitably', 'reached', 'her', 'ear', ',', 'in', 'which', 'he', 'seemed', 'to', 'be', 'apologising', 'for', 'the', 'badness', 'of', 'his', 'house', '.', 'This', 'set', 'the', 'matter', 'beyond', 'a', 'doubt', '.', 'She', 'wondered', ',', 'indeed', ',', 'at', 'his', 'thinking', 'it', 'necessary', 'to', 'do', 'so', ';', 'but', 'supposed', 'it', 'to', 'be', 'the', 'proper', 'etiquette', '.', 'What', 'Elinor', 'said', 'in', 'reply', 'she', 'could', 'not', 'distinguish', ',', 'but', 'judged', 'from', 'the', 'motion', 'of', 'her', 'lips', ',', 'that', 'she', 'did', 'not', 'think', '_that_', 'any', 'material', 'objection', ';', 'and', 'Mrs.', 'Jennings', 'commended', 'her', 'in', 'her', 'heart', 'for', 'being', 'so', 'honest', '.', 'They', 'then', 'talked', 'on', 'for', 'a', 'few', 'minutes', 'longer', 'without', 'her', 'catching', 'a', 'syllable', ',', 'when', 'another', 'lucky', 'stop', 'in', 'Marianne', '’', 's', 'performance', 'brought', 'her', 'these', 'words', 'in', 'the', 'Colonel', '’', 's', 'calm', 'voice', ',', '—', '“', 'I', 'am', 'afraid', 'it', 'can', 'not', 'take', 'place', 'very', 'soon.', '”', 'Astonished', 'and', 'shocked', 'at', 'so', 'unlover-like', 'a', 'speech', ',', 'she', 'was', 'almost', 'ready', 'to', 'cry', 'out', ',', '“', 'Lord', '!', 'what', 'should', 'hinder', 'it', '?', '”', '—but', 'checking', 'her', 'desire', ',', 'confined', 'herself', 'to', 'this', 'silent', 'ejaculation', '.', '“', 'This', 'is', 'very', 'strange', '!', '—sure', 'he', 'need', 'not', 'wait', 'to', 'be', 'older.', '”', 'This', 'delay', 'on', 'the', 'Colonel', '’', 's', 'side', ',', 'however', ',', 'did', 'not', 'seem', 'to', 'offend', 'or', 'mortify', 'his', 'fair', 'companion', 'in', 'the', 'least', ',', 'for', 'on', 'their', 'breaking', 'up', 'the', 'conference', 'soon', 'afterwards', ',', 'and', 'moving', 'different', 'ways', ',', 'Mrs.', 'Jennings', 'very', 'plainly', 'heard', 'Elinor', 'say', ',', 'and', 'with', 'a', 'voice', 'which', 'showed', 'her', 'to', 'feel', 'what', 'she', 'said', ',', '“', 'I', 'shall', 'always', 'think', 'myself', 'very', 'much', 'obliged', 'to', 'you.', '”', 'Mrs.', 'Jennings', 'was', 'delighted', 'with', 'her', 'gratitude', ',', 'and', 'only', 'wondered', 'that', 'after', 'hearing', 'such', 'a', 'sentence', ',', 'the', 'Colonel', 'should', 'be', 'able', 'to', 'take', 'leave', 'of', 'them', ',', 'as', 'he', 'immediately', 'did', ',', 'with', 'the', 'utmost', '_sang-froid_', ',', 'and', 'go', 'away', 'without', 'making', 'her', 'any', 'reply', '!', 'She', 'had', 'not', 'thought', 'her', 'old', 'friend', 'could', 'have', 'made', 'so', 'indifferent', 'a', 'suitor', '.', 'What', 'had', 'really', 'passed', 'between', 'them', 'was', 'to', 'this', 'effect', '.', '“', 'I', 'have', 'heard', ',', '”', 'said', 'he', ',', 'with', 'great', 'compassion', ',', '“', 'of', 'the', 'injustice', 'your', 'friend', 'Mr.', 'Ferrars', 'has', 'suffered', 'from', 'his', 'family', ';', 'for', 'if', 'I', 'understand', 'the', 'matter', 'right', ',', 'he', 'has', 'been', 'entirely', 'cast', 'off', 'by', 'them', 'for', 'persevering', 'in', 'his', 'engagement', 'with', 'a', 'very', 'deserving', 'young', 'woman', '.', 'Have', 'I', 'been', 'rightly', 'informed', '?', 'Is', 'it', 'so', '?', ';', '”', 'Elinor', 'told', 'him', 'that', 'it', 'was', '.', '“', 'The', 'cruelty', ',', 'the', 'impolitic', 'cruelty', ',', '”', 'he', 'replied', ',', 'with', 'great', 'feeling', ',', '“', 'of', 'dividing', ',', 'or', 'attempting', 'to', 'divide', ',', 'two', 'young', 'people', 'long', 'attached', 'to', 'each', 'other', ',', 'is', 'terrible', '.', 'Mrs.', 'Ferrars', 'does', 'not', 'know', 'what', 'she', 'may', 'be', 'doing—what', 'she', 'may', 'drive', 'her', 'son', 'to', '.', 'I', 'have', 'seen', 'Mr.', 'Ferrars', 'two', 'or', 'three', 'times', 'in', 'Harley', 'Street', ',', 'and', 'am', 'much', 'pleased', 'with', 'him', '.', 'He', 'is', 'not', 'a', 'young', 'man', 'with', 'whom', 'one', 'can', 'be', 'intimately', 'acquainted', 'in', 'a', 'short', 'time', ',', 'but', 'I', 'have', 'seen', 'enough', 'of', 'him', 'to', 'wish', 'him', 'well', 'for', 'his', 'own', 'sake', ',', 'and', 'as', 'a', 'friend', 'of', 'yours', ',', 'I', 'wish', 'it', 'still', 'more', '.', 'I', 'understand', 'that', 'he', 'intends', 'to', 'take', 'orders', '.', 'Will', 'you', 'be', 'so', 'good', 'as', 'to', 'tell', 'him', 'that', 'the', 'living', 'of', 'Delaford', ',', 'now', 'just', 'vacant', ',', 'as', 'I', 'am', 'informed', 'by', 'this', 'day', '’', 's', 'post', ',', 'is', 'his', ',', 'if', 'he', 'think', 'it', 'worth', 'his', 'acceptance', ';', 'but', '_that_', ',', 'perhaps', ',', 'so', 'unfortunately', 'circumstanced', 'as', 'he', 'is', 'now', ',', 'it', 'may', 'be', 'nonsense', 'to', 'appear', 'to', 'doubt', ';', 'I', 'only', 'wish', 'it', 'were', 'more', 'valuable', '.', 'It', 'is', 'a', 'rectory', ',', 'but', 'a', 'small', 'one', ';', 'the', 'late', 'incumbent', ',', 'I', 'believe', ',', 'did', 'not', 'make', 'more', 'than', '200£', 'per', 'annum', ',', 'and', 'though', 'it', 'is', 'certainly', 'capable', 'of', 'improvement', ',', 'I', 'fear', ',', 'not', 'to', 'such', 'an', 'amount', 'as', 'to', 'afford', 'him', 'a', 'very', 'comfortable', 'income', '.', 'Such', 'as', 'it', 'is', ',', 'however', ',', 'my', 'pleasure', 'in', 'presenting', 'it', 'to', 'him', ',', 'will', 'be', 'very', 'great', '.', 'Pray', 'assure', 'him', 'of', 'it.', '”', 'Elinor', '’', 's', 'astonishment', 'at', 'this', 'commission', 'could', 'hardly', 'have', 'been', 'greater', ',', 'had', 'the', 'Colonel', 'been', 'really', 'making', 'her', 'an', 'offer', 'of', 'his', 'hand', '.', 'The', 'preferment', ',', 'which', 'only', 'two', 'days', 'before', 'she', 'had', 'considered', 'as', 'hopeless', 'for', 'Edward', ',', 'was', 'already', 'provided', 'to', 'enable', 'him', 'to', 'marry', ';', 'and', '_she_', ',', 'of', 'all', 'people', 'in', 'the', 'world', ',', 'was', 'fixed', 'on', 'to', 'bestow', 'it', '!', 'Her', 'emotion', 'was', 'such', 'as', 'Mrs.', 'Jennings', 'had', 'attributed', 'to', 'a', 'very', 'different', 'cause', ';', 'but', 'whatever', 'minor', 'feelings', 'less', 'pure', ',', 'less', 'pleasing', ',', 'might', 'have', 'a', 'share', 'in', 'that', 'emotion', ',', 'her', 'esteem', 'for', 'the', 'general', 'benevolence', ',', 'and', 'her', 'gratitude', 'for', 'the', 'particular', 'friendship', ',', 'which', 'together', 'prompted', 'Colonel', 'Brandon', 'to', 'this', 'act', ',', 'were', 'strongly', 'felt', ',', 'and', 'warmly', 'expressed', '.', 'She', 'thanked', 'him', 'for', 'it', 'with', 'all', 'her', 'heart', ',', 'spoke', 'of', 'Edward', '’', 's', 'principles', 'and', 'disposition', 'with', 'that', 'praise', 'which', 'she', 'knew', 'them', 'to', 'deserve', ';', 'and', 'promised', 'to', 'undertake', 'the', 'commission', 'with', 'pleasure', ',', 'if', 'it', 'were', 'really', 'his', 'wish', 'to', 'put', 'off', 'so', 'agreeable', 'an', 'office', 'to', 'another', '.', 'But', 'at', 'the', 'same', 'time', ',', 'she', 'could', 'not', 'help', 'thinking', 'that', 'no', 'one', 'could', 'so', 'well', 'perform', 'it', 'as', 'himself', '.', 'It', 'was', 'an', 'office', 'in', 'short', ',', 'from', 'which', ',', 'unwilling', 'to', 'give', 'Edward', 'the', 'pain', 'of', 'receiving', 'an', 'obligation', 'from', '_her_', ',', 'she', 'would', 'have', 'been', 'very', 'glad', 'to', 'be', 'spared', 'herself', ';', 'but', 'Colonel', 'Brandon', ',', 'on', 'motives', 'of', 'equal', 'delicacy', ',', 'declining', 'it', 'likewise', ',', 'still', 'seemed', 'so', 'desirous', 'of', 'its', 'being', 'given', 'through', 'her', 'means', ',', 'that', 'she', 'would', 'not', 'on', 'any', 'account', 'make', 'farther', 'opposition', '.', 'Edward', ',', 'she', 'believed', ',', 'was', 'still', 'in', 'town', ',', 'and', 'fortunately', 'she', 'had', 'heard', 'his', 'address', 'from', 'Miss', 'Steele', '.', 'She', 'could', 'undertake', 'therefore', 'to', 'inform', 'him', 'of', 'it', ',', 'in', 'the', 'course', 'of', 'the', 'day', '.', 'After', 'this', 'had', 'been', 'settled', ',', 'Colonel', 'Brandon', 'began', 'to', 'talk', 'of', 'his', 'own', 'advantage', 'in', 'securing', 'so', 'respectable', 'and', 'agreeable', 'a', 'neighbour', ',', 'and', '_then_', 'it', 'was', 'that', 'he', 'mentioned', 'with', 'regret', ',', 'that', 'the', 'house', 'was', 'small', 'and', 'indifferent', ';', 'an', 'evil', 'which', 'Elinor', ',', 'as', 'Mrs.', 'Jennings', 'had', 'supposed', 'her', 'to', 'do', ',', 'made', 'very', 'light', 'of', ',', 'at', 'least', 'as', 'far', 'as', 'regarded', 'its', 'size', '.', '“', 'The', 'smallness', 'of', 'the', 'house', ',', '”', 'said', 'she', ',', '“', 'I', 'can', 'not', 'imagine', 'any', 'inconvenience', 'to', 'them', ',', 'for', 'it', 'will', 'be', 'in', 'proportion', 'to', 'their', 'family', 'and', 'income.', '”', 'By', 'which', 'the', 'Colonel', 'was', 'surprised', 'to', 'find', 'that', '_she_', 'was', 'considering', 'Mr.', 'Ferrars', '’', 's', 'marriage', 'as', 'the', 'certain', 'consequence', 'of', 'the', 'presentation', ';', 'for', 'he', 'did', 'not', 'suppose', 'it', 'possible', 'that', 'Delaford', 'living', 'could', 'supply', 'such', 'an', 'income', ',', 'as', 'anybody', 'in', 'his', 'style', 'of', 'life', 'would', 'venture', 'to', 'settle', 'on', ',', 'and', 'he', 'said', 'so', '.', '“', 'This', 'little', 'rectory', '_can_', 'do', 'no', 'more', 'than', 'make', 'Mr.', 'Ferrars', 'comfortable', 'as', 'a', 'bachelor', ';', 'it', 'can', 'not', 'enable', 'him', 'to', 'marry', '.', 'I', 'am', 'sorry', 'to', 'say', 'that', 'my', 'patronage', 'ends', 'with', 'this', ';', 'and', 'my', 'interest', 'is', 'hardly', 'more', 'extensive', '.', 'If', ',', 'however', ',', 'by', 'an', 'unforeseen', 'chance', 'it', 'should', 'be', 'in', 'my', 'power', 'to', 'serve', 'him', 'farther', ',', 'I', 'must', 'think', 'very', 'differently', 'of', 'him', 'from', 'what', 'I', 'now', 'do', ',', 'if', 'I', 'am', 'not', 'as', 'ready', 'to', 'be', 'useful', 'to', 'him', 'then', 'as', 'I', 'sincerely', 'wish', 'I', 'could', 'be', 'at', 'present', '.', 'What', 'I', 'am', 'now', 'doing', 'indeed', ',', 'seems', 'nothing', 'at', 'all', ',', 'since', 'it', 'can', 'advance', 'him', 'so', 'little', 'towards', 'what', 'must', 'be', 'his', 'principal', ',', 'his', 'only', 'object', 'of', 'happiness', '.', 'His', 'marriage', 'must', 'still', 'be', 'a', 'distant', 'good', ';', 'at', 'least', ',', 'I', 'am', 'afraid', 'it', 'can', 'not', 'take', 'place', 'very', 'soon.', '”', 'Such', 'was', 'the', 'sentence', 'which', ',', 'when', 'misunderstood', ',', 'so', 'justly', 'offended', 'the', 'delicate', 'feelings', 'of', 'Mrs.', 'Jennings', ';', 'but', 'after', 'this', 'narration', 'of', 'what', 'really', 'passed', 'between', 'Colonel', 'Brandon', 'and', 'Elinor', ',', 'while', 'they', 'stood', 'at', 'the', 'window', ',', 'the', 'gratitude', 'expressed', 'by', 'the', 'latter', 'on', 'their', 'parting', ',', 'may', 'perhaps', 'appear', 'in', 'general', ',', 'not', 'less', 'reasonably', 'excited', ',', 'nor', 'less', 'properly', 'worded', 'than', 'if', 'it', 'had', 'arisen', 'from', 'an', 'offer', 'of', 'marriage', '.', 'CHAPTER', 'XL', '.', '“', 'Well', ',', 'Miss', 'Dashwood', ',', '”', 'said', 'Mrs.', 'Jennings', ',', 'sagaciously', 'smiling', ',', 'as', 'soon', 'as', 'the', 'gentleman', 'had', 'withdrawn', ',', '“', 'I', 'do', 'not', 'ask', 'you', 'what', 'the', 'Colonel', 'has', 'been', 'saying', 'to', 'you', ';', 'for', 'though', ',', 'upon', 'my', 'honour', ',', 'I', '_tried_', 'to', 'keep', 'out', 'of', 'hearing', ',', 'I', 'could', 'not', 'help', 'catching', 'enough', 'to', 'understand', 'his', 'business', '.', 'And', 'I', 'assure', 'you', 'I', 'never', 'was', 'better', 'pleased', 'in', 'my', 'life', ',', 'and', 'I', 'wish', 'you', 'joy', 'of', 'it', 'with', 'all', 'my', 'heart.', '”', '“', 'Thank', 'you', ',', 'ma', '’', 'am', ',', '”', 'said', 'Elinor', '.', '“', 'It', '_is_', 'a', 'matter', 'of', 'great', 'joy', 'to', 'me', ';', 'and', 'I', 'feel', 'the', 'goodness', 'of', 'Colonel', 'Brandon', 'most', 'sensibly', '.', 'There', 'are', 'not', 'many', 'men', 'who', 'would', 'act', 'as', 'he', 'has', 'done', '.', 'Few', 'people', 'who', 'have', 'so', 'compassionate', 'a', 'heart', '!', 'I', 'never', 'was', 'more', 'astonished', 'in', 'my', 'life.', '”', '“', 'Lord', '!', 'my', 'dear', ',', 'you', 'are', 'very', 'modest', '.', 'I', 'an', '’', 't', 'the', 'least', 'astonished', 'at', 'it', 'in', 'the', 'world', ',', 'for', 'I', 'have', 'often', 'thought', 'of', 'late', ',', 'there', 'was', 'nothing', 'more', 'likely', 'to', 'happen.', '”', '“', 'You', 'judged', 'from', 'your', 'knowledge', 'of', 'the', 'Colonel', '’', 's', 'general', 'benevolence', ';', 'but', 'at', 'least', 'you', 'could', 'not', 'foresee', 'that', 'the', 'opportunity', 'would', 'so', 'very', 'soon', 'occur.', '”', '“', 'Opportunity', '!', '”', 'repeated', 'Mrs.', 'Jennings—', '“', 'Oh', '!', 'as', 'to', 'that', ',', 'when', 'a', 'man', 'has', 'once', 'made', 'up', 'his', 'mind', 'to', 'such', 'a', 'thing', ',', 'somehow', 'or', 'other', 'he', 'will', 'soon', 'find', 'an', 'opportunity', '.', 'Well', ',', 'my', 'dear', ',', 'I', 'wish', 'you', 'joy', 'of', 'it', 'again', 'and', 'again', ';', 'and', 'if', 'ever', 'there', 'was', 'a', 'happy', 'couple', 'in', 'the', 'world', ',', 'I', 'think', 'I', 'shall', 'soon', 'know', 'where', 'to', 'look', 'for', 'them.', '”', '“', 'You', 'mean', 'to', 'go', 'to', 'Delaford', 'after', 'them', 'I', 'suppose', ',', '”', 'said', 'Elinor', ',', 'with', 'a', 'faint', 'smile', '.', '“', 'Aye', ',', 'my', 'dear', ',', 'that', 'I', 'do', ',', 'indeed', '.', 'And', 'as', 'to', 'the', 'house', 'being', 'a', 'bad', 'one', ',', 'I', 'do', 'not', 'know', 'what', 'the', 'Colonel', 'would', 'be', 'at', ',', 'for', 'it', 'is', 'as', 'good', 'a', 'one', 'as', 'ever', 'I', 'saw.', '”', '“', 'He', 'spoke', 'of', 'its', 'being', 'out', 'of', 'repair.', '”', '“', 'Well', ',', 'and', 'whose', 'fault', 'is', 'that', '?', 'why', 'don', '’', 't', 'he', 'repair', 'it', '?', '—who', 'should', 'do', 'it', 'but', 'himself', '?', '”', 'They', 'were', 'interrupted', 'by', 'the', 'servant', '’', 's', 'coming', 'in', 'to', 'announce', 'the', 'carriage', 'being', 'at', 'the', 'door', ';', 'and', 'Mrs.', 'Jennings', 'immediately', 'preparing', 'to', 'go', ',', 'said', ',', '—', '“', 'Well', ',', 'my', 'dear', ',', 'I', 'must', 'be', 'gone', 'before', 'I', 'have', 'had', 'half', 'my', 'talk', 'out', '.', 'But', ',', 'however', ',', 'we', 'may', 'have', 'it', 'all', 'over', 'in', 'the', 'evening', ';', 'for', 'we', 'shall', 'be', 'quite', 'alone', '.', 'I', 'do', 'not', 'ask', 'you', 'to', 'go', 'with', 'me', ',', 'for', 'I', 'dare', 'say', 'your', 'mind', 'is', 'too', 'full', 'of', 'the', 'matter', 'to', 'care', 'for', 'company', ';', 'and', 'besides', ',', 'you', 'must', 'long', 'to', 'tell', 'your', 'sister', 'all', 'about', 'it.', '”', 'Marianne', 'had', 'left', 'the', 'room', 'before', 'the', 'conversation', 'began', '.', '“', 'Certainly', ',', 'ma', '’', 'am', ',', 'I', 'shall', 'tell', 'Marianne', 'of', 'it', ';', 'but', 'I', 'shall', 'not', 'mention', 'it', 'at', 'present', 'to', 'any', 'body', 'else.', '”', '“', 'Oh', '!', 'very', 'well', ',', '”', 'said', 'Mrs.', 'Jennings', 'rather', 'disappointed', '.', '“', 'Then', 'you', 'would', 'not', 'have', 'me', 'tell', 'it', 'to', 'Lucy', ',', 'for', 'I', 'think', 'of', 'going', 'as', 'far', 'as', 'Holborn', 'to-day.', '”', '“', 'No', ',', 'ma', '’', 'am', ',', 'not', 'even', 'Lucy', 'if', 'you', 'please', '.', 'One', 'day', '’', 's', 'delay', 'will', 'not', 'be', 'very', 'material', ';', 'and', 'till', 'I', 'have', 'written', 'to', 'Mr.', 'Ferrars', ',', 'I', 'think', 'it', 'ought', 'not', 'to', 'be', 'mentioned', 'to', 'any', 'body', 'else', '.', 'I', 'shall', 'do', '_that_', 'directly', '.', 'It', 'is', 'of', 'importance', 'that', 'no', 'time', 'should', 'be', 'lost', 'with', 'him', ',', 'for', 'he', 'will', 'of', 'course', 'have', 'much', 'to', 'do', 'relative', 'to', 'his', 'ordination.', '”', 'This', 'speech', 'at', 'first', 'puzzled', 'Mrs.', 'Jennings', 'exceedingly', '.', 'Why', 'Mr.', 'Ferrars', 'was', 'to', 'have', 'been', 'written', 'to', 'about', 'it', 'in', 'such', 'a', 'hurry', ',', 'she', 'could', 'not', 'immediately', 'comprehend', '.', 'A', 'few', 'moments', '’', 'reflection', ',', 'however', ',', 'produced', 'a', 'very', 'happy', 'idea', ',', 'and', 'she', 'exclaimed', ';', '—', '“', 'Oh', ',', 'ho', '!', '—I', 'understand', 'you', '.', 'Mr.', 'Ferrars', 'is', 'to', 'be', 'the', 'man', '.', 'Well', ',', 'so', 'much', 'the', 'better', 'for', 'him', '.', 'Ay', ',', 'to', 'be', 'sure', ',', 'he', 'must', 'be', 'ordained', 'in', 'readiness', ';', 'and', 'I', 'am', 'very', 'glad', 'to', 'find', 'things', 'are', 'so', 'forward', 'between', 'you', '.', 'But', ',', 'my', 'dear', ',', 'is', 'not', 'this', 'rather', 'out', 'of', 'character', '?', 'Should', 'not', 'the', 'Colonel', 'write', 'himself', '?', '—sure', ',', 'he', 'is', 'the', 'proper', 'person.', '”', 'Elinor', 'did', 'not', 'quite', 'understand', 'the', 'beginning', 'of', 'Mrs.', 'Jennings', '’', 's', 'speech', ',', 'neither', 'did', 'she', 'think', 'it', 'worth', 'inquiring', 'into', ';', 'and', 'therefore', 'only', 'replied', 'to', 'its', 'conclusion', '.', '“', 'Colonel', 'Brandon', 'is', 'so', 'delicate', 'a', 'man', ',', 'that', 'he', 'rather', 'wished', 'any', 'one', 'to', 'announce', 'his', 'intentions', 'to', 'Mr.', 'Ferrars', 'than', 'himself.', '”', '“', 'And', 'so', '_you_', 'are', 'forced', 'to', 'do', 'it', '.', 'Well', '_that_', 'is', 'an', 'odd', 'kind', 'of', 'delicacy', '!', 'However', ',', 'I', 'will', 'not', 'disturb', 'you', '(', 'seeing', 'her', 'preparing', 'to', 'write', '.', ')', 'You', 'know', 'your', 'own', 'concerns', 'best', '.', 'So', 'goodby', ',', 'my', 'dear', '.', 'I', 'have', 'not', 'heard', 'of', 'any', 'thing', 'to', 'please', 'me', 'so', 'well', 'since', 'Charlotte', 'was', 'brought', 'to', 'bed.', '”', 'And', 'away', 'she', 'went', ';', 'but', 'returning', 'again', 'in', 'a', 'moment', ',', '“', 'I', 'have', 'just', 'been', 'thinking', 'of', 'Betty', '’', 's', 'sister', ',', 'my', 'dear', '.', 'I', 'should', 'be', 'very', 'glad', 'to', 'get', 'her', 'so', 'good', 'a', 'mistress', '.', 'But', 'whether', 'she', 'would', 'do', 'for', 'a', 'lady', '’', 's', 'maid', ',', 'I', 'am', 'sure', 'I', 'can', '’', 't', 'tell', '.', 'She', 'is', 'an', 'excellent', 'housemaid', ',', 'and', 'works', 'very', 'well', 'at', 'her', 'needle', '.', 'However', ',', 'you', 'will', 'think', 'of', 'all', 'that', 'at', 'your', 'leisure.', '”', '“', 'Certainly', ',', 'ma', '’', 'am', ',', '”', 'replied', 'Elinor', ',', 'not', 'hearing', 'much', 'of', 'what', 'she', 'said', ',', 'and', 'more', 'anxious', 'to', 'be', 'alone', ',', 'than', 'to', 'be', 'mistress', 'of', 'the', 'subject', '.', 'How', 'she', 'should', 'begin—how', 'she', 'should', 'express', 'herself', 'in', 'her', 'note', 'to', 'Edward', ',', 'was', 'now', 'all', 'her', 'concern', '.', 'The', 'particular', 'circumstances', 'between', 'them', 'made', 'a', 'difficulty', 'of', 'that', 'which', 'to', 'any', 'other', 'person', 'would', 'have', 'been', 'the', 'easiest', 'thing', 'in', 'the', 'world', ';', 'but', 'she', 'equally', 'feared', 'to', 'say', 'too', 'much', 'or', 'too', 'little', ',', 'and', 'sat', 'deliberating', 'over', 'her', 'paper', ',', 'with', 'the', 'pen', 'in', 'her', 'hand', ',', 'till', 'broken', 'in', 'on', 'by', 'the', 'entrance', 'of', 'Edward', 'himself', '.', 'He', 'had', 'met', 'Mrs.', 'Jennings', 'at', 'the', 'door', 'in', 'her', 'way', 'to', 'the', 'carriage', ',', 'as', 'he', 'came', 'to', 'leave', 'his', 'farewell', 'card', ';', 'and', 'she', ',', 'after', 'apologising', 'for', 'not', 'returning', 'herself', ',', 'had', 'obliged', 'him', 'to', 'enter', ',', 'by', 'saying', 'that', 'Miss', 'Dashwood', 'was', 'above', ',', 'and', 'wanted', 'to', 'speak', 'with', 'him', 'on', 'very', 'particular', 'business', '.', 'Elinor', 'had', 'just', 'been', 'congratulating', 'herself', ',', 'in', 'the', 'midst', 'of', 'her', 'perplexity', ',', 'that', 'however', 'difficult', 'it', 'might', 'be', 'to', 'express', 'herself', 'properly', 'by', 'letter', ',', 'it', 'was', 'at', 'least', 'preferable', 'to', 'giving', 'the', 'information', 'by', 'word', 'of', 'mouth', ',', 'when', 'her', 'visitor', 'entered', ',', 'to', 'force', 'her', 'upon', 'this', 'greatest', 'exertion', 'of', 'all', '.', 'Her', 'astonishment', 'and', 'confusion', 'were', 'very', 'great', 'on', 'his', 'so', 'sudden', 'appearance', '.', 'She', 'had', 'not', 'seen', 'him', 'before', 'since', 'his', 'engagement', 'became', 'public', ',', 'and', 'therefore', 'not', 'since', 'his', 'knowing', 'her', 'to', 'be', 'acquainted', 'with', 'it', ';', 'which', ',', 'with', 'the', 'consciousness', 'of', 'what', 'she', 'had', 'been', 'thinking', 'of', ',', 'and', 'what', 'she', 'had', 'to', 'tell', 'him', ',', 'made', 'her', 'feel', 'particularly', 'uncomfortable', 'for', 'some', 'minutes', '.', 'He', 'too', 'was', 'much', 'distressed', ';', 'and', 'they', 'sat', 'down', 'together', 'in', 'a', 'most', 'promising', 'state', 'of', 'embarrassment.—Whether', 'he', 'had', 'asked', 'her', 'pardon', 'for', 'his', 'intrusion', 'on', 'first', 'coming', 'into', 'the', 'room', ',', 'he', 'could', 'not', 'recollect', ';', 'but', 'determining', 'to', 'be', 'on', 'the', 'safe', 'side', ',', 'he', 'made', 'his', 'apology', 'in', 'form', 'as', 'soon', 'as', 'he', 'could', 'say', 'any', 'thing', ',', 'after', 'taking', 'a', 'chair', '.', '“', 'Mrs', '.', 'Jennings', 'told', 'me', ',', '”', 'said', 'he', ',', '“', 'that', 'you', 'wished', 'to', 'speak', 'with', 'me', ',', 'at', 'least', 'I', 'understood', 'her', 'so—or', 'I', 'certainly', 'should', 'not', 'have', 'intruded', 'on', 'you', 'in', 'such', 'a', 'manner', ';', 'though', 'at', 'the', 'same', 'time', ',', 'I', 'should', 'have', 'been', 'extremely', 'sorry', 'to', 'leave', 'London', 'without', 'seeing', 'you', 'and', 'your', 'sister', ';', 'especially', 'as', 'it', 'will', 'most', 'likely', 'be', 'some', 'time—it', 'is', 'not', 'probable', 'that', 'I', 'should', 'soon', 'have', 'the', 'pleasure', 'of', 'meeting', 'you', 'again', '.', 'I', 'go', 'to', 'Oxford', 'tomorrow.', '”', '“', 'You', 'would', 'not', 'have', 'gone', ',', 'however', ',', '”', 'said', 'Elinor', ',', 'recovering', 'herself', ',', 'and', 'determined', 'to', 'get', 'over', 'what', 'she', 'so', 'much', 'dreaded', 'as', 'soon', 'as', 'possible', ',', '“', 'without', 'receiving', 'our', 'good', 'wishes', ',', 'even', 'if', 'we', 'had', 'not', 'been', 'able', 'to', 'give', 'them', 'in', 'person', '.', 'Mrs.', 'Jennings', 'was', 'quite', 'right', 'in', 'what', 'she', 'said', '.', 'I', 'have', 'something', 'of', 'consequence', 'to', 'inform', 'you', 'of', ',', 'which', 'I', 'was', 'on', 'the', 'point', 'of', 'communicating', 'by', 'paper', '.', 'I', 'am', 'charged', 'with', 'a', 'most', 'agreeable', 'office', '(', 'breathing', 'rather', 'faster', 'than', 'usual', 'as', 'she', 'spoke', '.', ')', 'Colonel', 'Brandon', ',', 'who', 'was', 'here', 'only', 'ten', 'minutes', 'ago', ',', 'has', 'desired', 'me', 'to', 'say', ',', 'that', 'understanding', 'you', 'mean', 'to', 'take', 'orders', ',', 'he', 'has', 'great', 'pleasure', 'in', 'offering', 'you', 'the', 'living', 'of', 'Delaford', 'now', 'just', 'vacant', ',', 'and', 'only', 'wishes', 'it', 'were', 'more', 'valuable', '.', 'Allow', 'me', 'to', 'congratulate', 'you', 'on', 'having', 'so', 'respectable', 'and', 'well-judging', 'a', 'friend', ',', 'and', 'to', 'join', 'in', 'his', 'wish', 'that', 'the', 'living—it', 'is', 'about', 'two', 'hundred', 'a-year—were', 'much', 'more', 'considerable', ',', 'and', 'such', 'as', 'might', 'better', 'enable', 'you', 'to—as', 'might', 'be', 'more', 'than', 'a', 'temporary', 'accommodation', 'to', 'yourself—such', ',', 'in', 'short', ',', 'as', 'might', 'establish', 'all', 'your', 'views', 'of', 'happiness.', '”', 'What', 'Edward', 'felt', ',', 'as', 'he', 'could', 'not', 'say', 'it', 'himself', ',', 'it', 'can', 'not', 'be', 'expected', 'that', 'any', 'one', 'else', 'should', 'say', 'for', 'him', '.', 'He', '_looked_', 'all', 'the', 'astonishment', 'which', 'such', 'unexpected', ',', 'such', 'unthought-of', 'information', 'could', 'not', 'fail', 'of', 'exciting', ';', 'but', 'he', 'said', 'only', 'these', 'two', 'words', ',', '—', '“', 'Colonel', 'Brandon', '!', '”', '“', 'Yes', ',', '”', 'continued', 'Elinor', ',', 'gathering', 'more', 'resolution', ',', 'as', 'some', 'of', 'the', 'worst', 'was', 'over', ',', '“', 'Colonel', 'Brandon', 'means', 'it', 'as', 'a', 'testimony', 'of', 'his', 'concern', 'for', 'what', 'has', 'lately', 'passed—for', 'the', 'cruel', 'situation', 'in', 'which', 'the', 'unjustifiable', 'conduct', 'of', 'your', 'family', 'has', 'placed', 'you—a', 'concern', 'which', 'I', 'am', 'sure', 'Marianne', ',', 'myself', ',', 'and', 'all', 'your', 'friends', ',', 'must', 'share', ';', 'and', 'likewise', 'as', 'a', 'proof', 'of', 'his', 'high', 'esteem', 'for', 'your', 'general', 'character', ',', 'and', 'his', 'particular', 'approbation', 'of', 'your', 'behaviour', 'on', 'the', 'present', 'occasion.', '”', '“', 'Colonel', 'Brandon', 'give', '_me_', 'a', 'living', '!', '—Can', 'it', 'be', 'possible', '?', '”', '“', 'The', 'unkindness', 'of', 'your', 'own', 'relations', 'has', 'made', 'you', 'astonished', 'to', 'find', 'friendship', 'any', 'where.', '”', '“', 'No', ',', '”', 'replied', 'he', ',', 'with', 'sudden', 'consciousness', ',', '“', 'not', 'to', 'find', 'it', 'in', '_you', ';', '_', 'for', 'I', 'can', 'not', 'be', 'ignorant', 'that', 'to', 'you', ',', 'to', 'your', 'goodness', ',', 'I', 'owe', 'it', 'all.—I', 'feel', 'it—I', 'would', 'express', 'it', 'if', 'I', 'could—but', ',', 'as', 'you', 'well', 'know', ',', 'I', 'am', 'no', 'orator.', '”', '“', 'You', 'are', 'very', 'much', 'mistaken', '.', 'I', 'do', 'assure', 'you', 'that', 'you', 'owe', 'it', 'entirely', ',', 'at', 'least', 'almost', 'entirely', ',', 'to', 'your', 'own', 'merit', ',', 'and', 'Colonel', 'Brandon', '’', 's', 'discernment', 'of', 'it', '.', 'I', 'have', 'had', 'no', 'hand', 'in', 'it', '.', 'I', 'did', 'not', 'even', 'know', ',', 'till', 'I', 'understood', 'his', 'design', ',', 'that', 'the', 'living', 'was', 'vacant', ';', 'nor', 'had', 'it', 'ever', 'occurred', 'to', 'me', 'that', 'he', 'might', 'have', 'had', 'such', 'a', 'living', 'in', 'his', 'gift', '.', 'As', 'a', 'friend', 'of', 'mine', ',', 'of', 'my', 'family', ',', 'he', 'may', ',', 'perhaps—indeed', 'I', 'know', 'he', '_has_', ',', 'still', 'greater', 'pleasure', 'in', 'bestowing', 'it', ';', 'but', ',', 'upon', 'my', 'word', ',', 'you', 'owe', 'nothing', 'to', 'my', 'solicitation.', '”', 'Truth', 'obliged', 'her', 'to', 'acknowledge', 'some', 'small', 'share', 'in', 'the', 'action', ',', 'but', 'she', 'was', 'at', 'the', 'same', 'time', 'so', 'unwilling', 'to', 'appear', 'as', 'the', 'benefactress', 'of', 'Edward', ',', 'that', 'she', 'acknowledged', 'it', 'with', 'hesitation', ';', 'which', 'probably', 'contributed', 'to', 'fix', 'that', 'suspicion', 'in', 'his', 'mind', 'which', 'had', 'recently', 'entered', 'it', '.', 'For', 'a', 'short', 'time', 'he', 'sat', 'deep', 'in', 'thought', ',', 'after', 'Elinor', 'had', 'ceased', 'to', 'speak', ';', '—at', 'last', ',', 'and', 'as', 'if', 'it', 'were', 'rather', 'an', 'effort', ',', 'he', 'said', ',', '“', 'Colonel', 'Brandon', 'seems', 'a', 'man', 'of', 'great', 'worth', 'and', 'respectability', '.', 'I', 'have', 'always', 'heard', 'him', 'spoken', 'of', 'as', 'such', ',', 'and', 'your', 'brother', 'I', 'know', 'esteems', 'him', 'highly', '.', 'He', 'is', 'undoubtedly', 'a', 'sensible', 'man', ',', 'and', 'in', 'his', 'manners', 'perfectly', 'the', 'gentleman.', '”', '“', 'Indeed', ',', '”', 'replied', 'Elinor', ',', '“', 'I', 'believe', 'that', 'you', 'will', 'find', 'him', ',', 'on', 'farther', 'acquaintance', ',', 'all', 'that', 'you', 'have', 'heard', 'him', 'to', 'be', ',', 'and', 'as', 'you', 'will', 'be', 'such', 'very', 'near', 'neighbours', '(', 'for', 'I', 'understand', 'the', 'parsonage', 'is', 'almost', 'close', 'to', 'the', 'mansion-house', ',', ')', 'it', 'is', 'particularly', 'important', 'that', 'he', '_should_', 'be', 'all', 'this.', '”', 'Edward', 'made', 'no', 'answer', ';', 'but', 'when', 'she', 'had', 'turned', 'away', 'her', 'head', ',', 'gave', 'her', 'a', 'look', 'so', 'serious', ',', 'so', 'earnest', ',', 'so', 'uncheerful', ',', 'as', 'seemed', 'to', 'say', ',', 'that', 'he', 'might', 'hereafter', 'wish', 'the', 'distance', 'between', 'the', 'parsonage', 'and', 'the', 'mansion-house', 'much', 'greater', '.', '“', 'Colonel', 'Brandon', ',', 'I', 'think', ',', 'lodges', 'in', 'St.', 'James', 'Street', ',', '”', 'said', 'he', ',', 'soon', 'afterwards', ',', 'rising', 'from', 'his', 'chair', '.', 'Elinor', 'told', 'him', 'the', 'number', 'of', 'the', 'house', '.', '“', 'I', 'must', 'hurry', 'away', 'then', ',', 'to', 'give', 'him', 'those', 'thanks', 'which', 'you', 'will', 'not', 'allow', 'me', 'to', 'give', '_you', ';', '_', 'to', 'assure', 'him', 'that', 'he', 'has', 'made', 'me', 'a', 'very—an', 'exceedingly', 'happy', 'man.', '”', 'Elinor', 'did', 'not', 'offer', 'to', 'detain', 'him', ';', 'and', 'they', 'parted', ',', 'with', 'a', 'very', 'earnest', 'assurance', 'on', '_her_', 'side', 'of', 'her', 'unceasing', 'good', 'wishes', 'for', 'his', 'happiness', 'in', 'every', 'change', 'of', 'situation', 'that', 'might', 'befall', 'him', ';', 'on', '_his_', ',', 'with', 'rather', 'an', 'attempt', 'to', 'return', 'the', 'same', 'good', 'will', ',', 'than', 'the', 'power', 'of', 'expressing', 'it', '.', '“', 'When', 'I', 'see', 'him', 'again', ',', '”', 'said', 'Elinor', 'to', 'herself', ',', 'as', 'the', 'door', 'shut', 'him', 'out', ',', '“', 'I', 'shall', 'see', 'him', 'the', 'husband', 'of', 'Lucy.', '”', 'And', 'with', 'this', 'pleasing', 'anticipation', ',', 'she', 'sat', 'down', 'to', 'reconsider', 'the', 'past', ',', 'recall', 'the', 'words', 'and', 'endeavour', 'to', 'comprehend', 'all', 'the', 'feelings', 'of', 'Edward', ';', 'and', ',', 'of', 'course', ',', 'to', 'reflect', 'on', 'her', 'own', 'with', 'discontent', '.', 'When', 'Mrs.', 'Jennings', 'came', 'home', ',', 'though', 'she', 'returned', 'from', 'seeing', 'people', 'whom', 'she', 'had', 'never', 'seen', 'before', ',', 'and', 'of', 'whom', 'therefore', 'she', 'must', 'have', 'a', 'great', 'deal', 'to', 'say', ',', 'her', 'mind', 'was', 'so', 'much', 'more', 'occupied', 'by', 'the', 'important', 'secret', 'in', 'her', 'possession', ',', 'than', 'by', 'anything', 'else', ',', 'that', 'she', 'reverted', 'to', 'it', 'again', 'as', 'soon', 'as', 'Elinor', 'appeared', '.', '“', 'Well', ',', 'my', 'dear', ',', '”', 'she', 'cried', ',', '“', 'I', 'sent', 'you', 'up', 'the', 'young', 'man', '.', 'Did', 'not', 'I', 'do', 'right', '?', '—And', 'I', 'suppose', 'you', 'had', 'no', 'great', 'difficulty—You', 'did', 'not', 'find', 'him', 'very', 'unwilling', 'to', 'accept', 'your', 'proposal', '?', '”', '“', 'No', ',', 'ma', '’', 'am', ';', '_that_', 'was', 'not', 'very', 'likely.', '”', '“', 'Well', ',', 'and', 'how', 'soon', 'will', 'he', 'be', 'ready', '?', '—For', 'it', 'seems', 'all', 'to', 'depend', 'upon', 'that.', '”', '“', 'Really', ',', '”', 'said', 'Elinor', ',', '“', 'I', 'know', 'so', 'little', 'of', 'these', 'kind', 'of', 'forms', ',', 'that', 'I', 'can', 'hardly', 'even', 'conjecture', 'as', 'to', 'the', 'time', ',', 'or', 'the', 'preparation', 'necessary', ';', 'but', 'I', 'suppose', 'two', 'or', 'three', 'months', 'will', 'complete', 'his', 'ordination.', '”', '“', 'Two', 'or', 'three', 'months', '!', '”', 'cried', 'Mrs.', 'Jennings', ';', '“', 'Lord', '!', 'my', 'dear', ',', 'how', 'calmly', 'you', 'talk', 'of', 'it', ';', 'and', 'can', 'the', 'Colonel', 'wait', 'two', 'or', 'three', 'months', '!', 'Lord', 'bless', 'me', '!', '—I', 'am', 'sure', 'it', 'would', 'put', '_me_', 'quite', 'out', 'of', 'patience', '!', '—And', 'though', 'one', 'would', 'be', 'very', 'glad', 'to', 'do', 'a', 'kindness', 'by', 'poor', 'Mr.', 'Ferrars', ',', 'I', 'do', 'think', 'it', 'is', 'not', 'worth', 'while', 'to', 'wait', 'two', 'or', 'three', 'months', 'for', 'him', '.', 'Sure', 'somebody', 'else', 'might', 'be', 'found', 'that', 'would', 'do', 'as', 'well', ';', 'somebody', 'that', 'is', 'in', 'orders', 'already.', '”', '“', 'My', 'dear', 'ma', '’', 'am', ',', '”', 'said', 'Elinor', ',', '“', 'what', 'can', 'you', 'be', 'thinking', 'of', '?', 'Why', ',', 'Colonel', 'Brandon', '’', 's', 'only', 'object', 'is', 'to', 'be', 'of', 'use', 'to', 'Mr.', 'Ferrars.', '”', '“', 'Lord', 'bless', 'you', ',', 'my', 'dear', '!', 'Sure', 'you', 'do', 'not', 'mean', 'to', 'persuade', 'me', 'that', 'the', 'Colonel', 'only', 'marries', 'you', 'for', 'the', 'sake', 'of', 'giving', 'ten', 'guineas', 'to', 'Mr.', 'Ferrars', '!', '”', 'The', 'deception', 'could', 'not', 'continue', 'after', 'this', ';', 'and', 'an', 'explanation', 'immediately', 'took', 'place', ',', 'by', 'which', 'both', 'gained', 'considerable', 'amusement', 'for', 'the', 'moment', ',', 'without', 'any', 'material', 'loss', 'of', 'happiness', 'to', 'either', ',', 'for', 'Mrs.', 'Jennings', 'only', 'exchanged', 'one', 'form', 'of', 'delight', 'for', 'another', ',', 'and', 'still', 'without', 'forfeiting', 'her', 'expectation', 'of', 'the', 'first', '.', '“', 'Aye', ',', 'aye', ',', 'the', 'parsonage', 'is', 'but', 'a', 'small', 'one', ',', '”', 'said', 'she', ',', 'after', 'the', 'first', 'ebullition', 'of', 'surprise', 'and', 'satisfaction', 'was', 'over', ',', '“', 'and', 'very', 'likely', '_may_', 'be', 'out', 'of', 'repair', ';', 'but', 'to', 'hear', 'a', 'man', 'apologising', ',', 'as', 'I', 'thought', ',', 'for', 'a', 'house', 'that', 'to', 'my', 'knowledge', 'has', 'five', 'sitting', 'rooms', 'on', 'the', 'ground-floor', ',', 'and', 'I', 'think', 'the', 'housekeeper', 'told', 'me', 'could', 'make', 'up', 'fifteen', 'beds', '!', 'and', 'to', 'you', 'too', ',', 'that', 'had', 'been', 'used', 'to', 'live', 'in', 'Barton', 'cottage', '!', 'It', 'seems', 'quite', 'ridiculous', '.', 'But', ',', 'my', 'dear', ',', 'we', 'must', 'touch', 'up', 'the', 'Colonel', 'to', 'do', 'some', 'thing', 'to', 'the', 'parsonage', ',', 'and', 'make', 'it', 'comfortable', 'for', 'them', ',', 'before', 'Lucy', 'goes', 'to', 'it.', '”', '“', 'But', 'Colonel', 'Brandon', 'does', 'not', 'seem', 'to', 'have', 'any', 'idea', 'of', 'the', 'living', '’', 's', 'being', 'enough', 'to', 'allow', 'them', 'to', 'marry.', '”', '“', 'The', 'Colonel', 'is', 'a', 'ninny', ',', 'my', 'dear', ';', 'because', 'he', 'has', 'two', 'thousand', 'a-year', 'himself', ',', 'he', 'thinks', 'that', 'nobody', 'else', 'can', 'marry', 'on', 'less', '.', 'Take', 'my', 'word', 'for', 'it', ',', 'that', ',', 'if', 'I', 'am', 'alive', ',', 'I', 'shall', 'be', 'paying', 'a', 'visit', 'at', 'Delaford', 'Parsonage', 'before', 'Michaelmas', ';', 'and', 'I', 'am', 'sure', 'I', 'shan', '’', 't', 'go', 'if', 'Lucy', 'an', '’', 't', 'there.', '”', 'Elinor', 'was', 'quite', 'of', 'her', 'opinion', ',', 'as', 'to', 'the', 'probability', 'of', 'their', 'not', 'waiting', 'for', 'any', 'thing', 'more', '.', 'CHAPTER', 'XLI', '.', 'Edward', ',', 'having', 'carried', 'his', 'thanks', 'to', 'Colonel', 'Brandon', ',', 'proceeded', 'with', 'his', 'happiness', 'to', 'Lucy', ';', 'and', 'such', 'was', 'the', 'excess', 'of', 'it', 'by', 'the', 'time', 'he', 'reached', 'Bartlett', '’', 's', 'Buildings', ',', 'that', 'she', 'was', 'able', 'to', 'assure', 'Mrs.', 'Jennings', ',', 'who', 'called', 'on', 'her', 'again', 'the', 'next', 'day', 'with', 'her', 'congratulations', ',', 'that', 'she', 'had', 'never', 'seen', 'him', 'in', 'such', 'spirits', 'before', 'in', 'her', 'life', '.', 'Her', 'own', 'happiness', ',', 'and', 'her', 'own', 'spirits', ',', 'were', 'at', 'least', 'very', 'certain', ';', 'and', 'she', 'joined', 'Mrs.', 'Jennings', 'most', 'heartily', 'in', 'her', 'expectation', 'of', 'their', 'being', 'all', 'comfortably', 'together', 'in', 'Delaford', 'Parsonage', 'before', 'Michaelmas', '.', 'So', 'far', 'was', 'she', ',', 'at', 'the', 'same', 'time', ',', 'from', 'any', 'backwardness', 'to', 'give', 'Elinor', 'that', 'credit', 'which', 'Edward', '_would_', 'give', 'her', ',', 'that', 'she', 'spoke', 'of', 'her', 'friendship', 'for', 'them', 'both', 'with', 'the', 'most', 'grateful', 'warmth', ',', 'was', 'ready', 'to', 'own', 'all', 'their', 'obligation', 'to', 'her', ',', 'and', 'openly', 'declared', 'that', 'no', 'exertion', 'for', 'their', 'good', 'on', 'Miss', 'Dashwood', '’', 's', 'part', ',', 'either', 'present', 'or', 'future', ',', 'would', 'ever', 'surprise', 'her', ',', 'for', 'she', 'believed', 'her', 'capable', 'of', 'doing', 'any', 'thing', 'in', 'the', 'world', 'for', 'those', 'she', 'really', 'valued', '.', 'As', 'for', 'Colonel', 'Brandon', ',', 'she', 'was', 'not', 'only', 'ready', 'to', 'worship', 'him', 'as', 'a', 'saint', ',', 'but', 'was', 'moreover', 'truly', 'anxious', 'that', 'he', 'should', 'be', 'treated', 'as', 'one', 'in', 'all', 'worldly', 'concerns', ';', 'anxious', 'that', 'his', 'tithes', 'should', 'be', 'raised', 'to', 'the', 'utmost', ';', 'and', 'secretly', 'resolved', 'to', 'avail', 'herself', ',', 'at', 'Delaford', ',', 'as', 'far', 'as', 'she', 'possibly', 'could', ',', 'of', 'his', 'servants', ',', 'his', 'carriage', ',', 'his', 'cows', ',', 'and', 'his', 'poultry', '.', 'It', 'was', 'now', 'above', 'a', 'week', 'since', 'John', 'Dashwood', 'had', 'called', 'in', 'Berkeley', 'Street', ',', 'and', 'as', 'since', 'that', 'time', 'no', 'notice', 'had', 'been', 'taken', 'by', 'them', 'of', 'his', 'wife', '’', 's', 'indisposition', ',', 'beyond', 'one', 'verbal', 'enquiry', ',', 'Elinor', 'began', 'to', 'feel', 'it', 'necessary', 'to', 'pay', 'her', 'a', 'visit.—This', 'was', 'an', 'obligation', ',', 'however', ',', 'which', 'not', 'only', 'opposed', 'her', 'own', 'inclination', ',', 'but', 'which', 'had', 'not', 'the', 'assistance', 'of', 'any', 'encouragement', 'from', 'her', 'companions', '.', 'Marianne', ',', 'not', 'contented', 'with', 'absolutely', 'refusing', 'to', 'go', 'herself', ',', 'was', 'very', 'urgent', 'to', 'prevent', 'her', 'sister', '’', 's', 'going', 'at', 'all', ';', 'and', 'Mrs.', 'Jennings', ',', 'though', 'her', 'carriage', 'was', 'always', 'at', 'Elinor', '’', 's', 'service', ',', 'so', 'very', 'much', 'disliked', 'Mrs.', 'John', 'Dashwood', ',', 'that', 'not', 'even', 'her', 'curiosity', 'to', 'see', 'how', 'she', 'looked', 'after', 'the', 'late', 'discovery', ',', 'nor', 'her', 'strong', 'desire', 'to', 'affront', 'her', 'by', 'taking', 'Edward', '’', 's', 'part', ',', 'could', 'overcome', 'her', 'unwillingness', 'to', 'be', 'in', 'her', 'company', 'again', '.', 'The', 'consequence', 'was', ',', 'that', 'Elinor', 'set', 'out', 'by', 'herself', 'to', 'pay', 'a', 'visit', ',', 'for', 'which', 'no', 'one', 'could', 'really', 'have', 'less', 'inclination', ',', 'and', 'to', 'run', 'the', 'risk', 'of', 'a', 'tête-à-tête', 'with', 'a', 'woman', ',', 'whom', 'neither', 'of', 'the', 'others', 'had', 'so', 'much', 'reason', 'to', 'dislike', '.', 'Mrs.', 'Dashwood', 'was', 'denied', ';', 'but', 'before', 'the', 'carriage', 'could', 'turn', 'from', 'the', 'house', ',', 'her', 'husband', 'accidentally', 'came', 'out', '.', 'He', 'expressed', 'great', 'pleasure', 'in', 'meeting', 'Elinor', ',', 'told', 'her', 'that', 'he', 'had', 'been', 'just', 'going', 'to', 'call', 'in', 'Berkeley', 'Street', ',', 'and', ',', 'assuring', 'her', 'that', 'Fanny', 'would', 'be', 'very', 'glad', 'to', 'see', 'her', ',', 'invited', 'her', 'to', 'come', 'in', '.', 'They', 'walked', 'up', 'stairs', 'in', 'to', 'the', 'drawing-room.—Nobody', 'was', 'there', '.', '“', 'Fanny', 'is', 'in', 'her', 'own', 'room', ',', 'I', 'suppose', ',', '”', 'said', 'he', ':', '“', 'I', 'will', 'go', 'to', 'her', 'presently', ',', 'for', 'I', 'am', 'sure', 'she', 'will', 'not', 'have', 'the', 'least', 'objection', 'in', 'the', 'world', 'to', 'seeing', '_you_', '.', 'Very', 'far', 'from', 'it', ',', 'indeed', '.', '_Now_', 'especially', 'there', 'can', 'not', 'be—but', 'however', ',', 'you', 'and', 'Marianne', 'were', 'always', 'great', 'favourites', '.', 'Why', 'would', 'not', 'Marianne', 'come', '?', '”', 'Elinor', 'made', 'what', 'excuse', 'she', 'could', 'for', 'her', '.', '“', 'I', 'am', 'not', 'sorry', 'to', 'see', 'you', 'alone', ',', '”', 'he', 'replied', ',', '“', 'for', 'I', 'have', 'a', 'good', 'deal', 'to', 'say', 'to', 'you', '.', 'This', 'living', 'of', 'Colonel', 'Brandon', '’', 's—can', 'it', 'be', 'true', '?', '—has', 'he', 'really', 'given', 'it', 'to', 'Edward', '?', '—I', 'heard', 'it', 'yesterday', 'by', 'chance', ',', 'and', 'was', 'coming', 'to', 'you', 'on', 'purpose', 'to', 'enquire', 'farther', 'about', 'it.', '”', '“', 'It', 'is', 'perfectly', 'true.—Colonel', 'Brandon', 'has', 'given', 'the', 'living', 'of', 'Delaford', 'to', 'Edward.', '”', '“', 'Really', '!', '—Well', ',', 'this', 'is', 'very', 'astonishing', '!', '—no', 'relationship', '!', '—no', 'connection', 'between', 'them', '!', '—and', 'now', 'that', 'livings', 'fetch', 'such', 'a', 'price', '!', '—what', 'was', 'the', 'value', 'of', 'this', '?', '”', '“', 'About', 'two', 'hundred', 'a', 'year.', '”', '“', 'Very', 'well—and', 'for', 'the', 'next', 'presentation', 'to', 'a', 'living', 'of', 'that', 'value—supposing', 'the', 'late', 'incumbent', 'to', 'have', 'been', 'old', 'and', 'sickly', ',', 'and', 'likely', 'to', 'vacate', 'it', 'soon—he', 'might', 'have', 'got', 'I', 'dare', 'say—fourteen', 'hundred', 'pounds', '.', 'And', 'how', 'came', 'he', 'not', 'to', 'have', 'settled', 'that', 'matter', 'before', 'this', 'person', '’', 's', 'death', '?', '_Now_', ',', 'indeed', 'it', 'would', 'be', 'too', 'late', 'to', 'sell', 'it', ',', 'but', 'a', 'man', 'of', 'Colonel', 'Brandon', '’', 's', 'sense', '!', 'I', 'wonder', 'he', 'should', 'be', 'so', 'improvident', 'in', 'a', 'point', 'of', 'such', 'common', ',', 'such', 'natural', ',', 'concern', '!', 'Well', ',', 'I', 'am', 'convinced', 'that', 'there', 'is', 'a', 'vast', 'deal', 'of', 'inconsistency', 'in', 'almost', 'every', 'human', 'character', '.', 'I', 'suppose', ',', 'however—on', 'recollection—that', 'the', 'case', 'may', 'probably', 'be', '_this_', '.', 'Edward', 'is', 'only', 'to', 'hold', 'the', 'living', 'till', 'the', 'person', 'to', 'whom', 'the', 'Colonel', 'has', 'really', 'sold', 'the', 'presentation', ',', 'is', 'old', 'enough', 'to', 'take', 'it', '.', 'Aye', ',', 'aye', ',', 'that', 'is', 'the', 'fact', ',', 'depend', 'upon', 'it.', '”', 'Elinor', 'contradicted', 'it', ',', 'however', ',', 'very', 'positively', ';', 'and', 'by', 'relating', 'that', 'she', 'had', 'herself', 'been', 'employed', 'in', 'conveying', 'the', 'offer', 'from', 'Colonel', 'Brandon', 'to', 'Edward', ',', 'and', ',', 'therefore', ',', 'must', 'understand', 'the', 'terms', 'on', 'which', 'it', 'was', 'given', ',', 'obliged', 'him', 'to', 'submit', 'to', 'her', 'authority', '.', '“', 'It', 'is', 'truly', 'astonishing', '!', '”', '—he', 'cried', ',', 'after', 'hearing', 'what', 'she', 'said—', '“', 'what', 'could', 'be', 'the', 'Colonel', '’', 's', 'motive', '?', '”', '“', 'A', 'very', 'simple', 'one—to', 'be', 'of', 'use', 'to', 'Mr.', 'Ferrars.', '”', '“', 'Well', ',', 'well', ';', 'whatever', 'Colonel', 'Brandon', 'may', 'be', ',', 'Edward', 'is', 'a', 'very', 'lucky', 'man.—You', 'will', 'not', 'mention', 'the', 'matter', 'to', 'Fanny', ',', 'however', ',', 'for', 'though', 'I', 'have', 'broke', 'it', 'to', 'her', ',', 'and', 'she', 'bears', 'it', 'vastly', 'well', ',', '—she', 'will', 'not', 'like', 'to', 'hear', 'it', 'much', 'talked', 'of.', '”', 'Elinor', 'had', 'some', 'difficulty', 'here', 'to', 'refrain', 'from', 'observing', ',', 'that', 'she', 'thought', 'Fanny', 'might', 'have', 'borne', 'with', 'composure', ',', 'an', 'acquisition', 'of', 'wealth', 'to', 'her', 'brother', ',', 'by', 'which', 'neither', 'she', 'nor', 'her', 'child', 'could', 'be', 'possibly', 'impoverished', '.', '“', 'Mrs', '.', 'Ferrars', ',', '”', 'added', 'he', ',', 'lowering', 'his', 'voice', 'to', 'the', 'tone', 'becoming', 'so', 'important', 'a', 'subject', ',', '“', 'knows', 'nothing', 'about', 'it', 'at', 'present', ',', 'and', 'I', 'believe', 'it', 'will', 'be', 'best', 'to', 'keep', 'it', 'entirely', 'concealed', 'from', 'her', 'as', 'long', 'as', 'may', 'be', '.', 'When', 'the', 'marriage', 'takes', 'place', ',', 'I', 'fear', 'she', 'must', 'hear', 'of', 'it', 'all.', '”', '“', 'But', 'why', 'should', 'such', 'precaution', 'be', 'used', '?', 'Though', 'it', 'is', 'not', 'to', 'be', 'supposed', 'that', 'Mrs.', 'Ferrars', 'can', 'have', 'the', 'smallest', 'satisfaction', 'in', 'knowing', 'that', 'her', 'son', 'has', 'money', 'enough', 'to', 'live', 'upon', ',', 'for', '_that_', 'must', 'be', 'quite', 'out', 'of', 'the', 'question', ';', 'yet', 'why', ',', 'upon', 'her', 'late', 'behaviour', ',', 'is', 'she', 'supposed', 'to', 'feel', 'at', 'all', '?', 'She', 'has', 'done', 'with', 'her', 'son', ',', '—she', 'cast', 'him', 'off', 'for', 'ever', ',', 'and', 'has', 'made', 'all', 'those', 'over', 'whom', 'she', 'had', 'any', 'influence', ',', 'cast', 'him', 'off', 'likewise', '.', 'Surely', ',', 'after', 'doing', 'so', ',', 'she', 'can', 'not', 'be', 'imagined', 'liable', 'to', 'any', 'impression', 'of', 'sorrow', 'or', 'of', 'joy', 'on', 'his', 'account', ':', 'she', 'can', 'not', 'be', 'interested', 'in', 'any', 'thing', 'that', 'befalls', 'him', '.', 'She', 'would', 'not', 'be', 'so', 'weak', 'as', 'to', 'throw', 'away', 'the', 'comfort', 'of', 'a', 'child', ',', 'and', 'yet', 'retain', 'the', 'anxiety', 'of', 'a', 'parent', '!', '”', '“', 'Ah', '!', 'Elinor', ',', '”', 'said', 'John', ',', '“', 'your', 'reasoning', 'is', 'very', 'good', ',', 'but', 'it', 'is', 'founded', 'on', 'ignorance', 'of', 'human', 'nature', '.', 'When', 'Edward', '’', 's', 'unhappy', 'match', 'takes', 'place', ',', 'depend', 'upon', 'it', 'his', 'mother', 'will', 'feel', 'as', 'much', 'as', 'if', 'she', 'had', 'never', 'discarded', 'him', ';', 'and', ',', 'therefore', 'every', 'circumstance', 'that', 'may', 'accelerate', 'that', 'dreadful', 'event', ',', 'must', 'be', 'concealed', 'from', 'her', 'as', 'much', 'as', 'possible', '.', 'Mrs.', 'Ferrars', 'can', 'never', 'forget', 'that', 'Edward', 'is', 'her', 'son.', '”', '“', 'You', 'surprise', 'me', ';', 'I', 'should', 'think', 'it', 'must', 'nearly', 'have', 'escaped', 'her', 'memory', 'by', '_this_', 'time.', '”', '“', 'You', 'wrong', 'her', 'exceedingly', '.', 'Mrs.', 'Ferrars', 'is', 'one', 'of', 'the', 'most', 'affectionate', 'mothers', 'in', 'the', 'world.', '”', 'Elinor', 'was', 'silent', '.', '“', 'We', 'think', '_now_', ',', '”', '—said', 'Mr.', 'Dashwood', ',', 'after', 'a', 'short', 'pause', ',', '“', 'of', '_Robert', '’', 's_', 'marrying', 'Miss', 'Morton.', '”', 'Elinor', ',', 'smiling', 'at', 'the', 'grave', 'and', 'decisive', 'importance', 'of', 'her', 'brother', '’', 's', 'tone', ',', 'calmly', 'replied', ',', '—', '“', 'The', 'lady', ',', 'I', 'suppose', ',', 'has', 'no', 'choice', 'in', 'the', 'affair.', '”', '“', 'Choice', '!', '—how', 'do', 'you', 'mean', '?', '”', '“', 'I', 'only', 'mean', 'that', 'I', 'suppose', ',', 'from', 'your', 'manner', 'of', 'speaking', ',', 'it', 'must', 'be', 'the', 'same', 'to', 'Miss', 'Morton', 'whether', 'she', 'marry', 'Edward', 'or', 'Robert.', '”', '“', 'Certainly', ',', 'there', 'can', 'be', 'no', 'difference', ';', 'for', 'Robert', 'will', 'now', 'to', 'all', 'intents', 'and', 'purposes', 'be', 'considered', 'as', 'the', 'eldest', 'son', ';', '—and', 'as', 'to', 'any', 'thing', 'else', ',', 'they', 'are', 'both', 'very', 'agreeable', 'young', 'men', ':', 'I', 'do', 'not', 'know', 'that', 'one', 'is', 'superior', 'to', 'the', 'other.', '”', 'Elinor', 'said', 'no', 'more', ',', 'and', 'John', 'was', 'also', 'for', 'a', 'short', 'time', 'silent.—His', 'reflections', 'ended', 'thus', '.', '“', 'Of', '_one_', 'thing', ',', 'my', 'dear', 'sister', ',', '”', 'kindly', 'taking', 'her', 'hand', ',', 'and', 'speaking', 'in', 'an', 'awful', 'whisper', ',', '“', 'I', 'may', 'assure', 'you', ';', '—and', 'I', '_will_', 'do', 'it', ',', 'because', 'I', 'know', 'it', 'must', 'gratify', 'you', '.', 'I', 'have', 'good', 'reason', 'to', 'think—indeed', 'I', 'have', 'it', 'from', 'the', 'best', 'authority', ',', 'or', 'I', 'should', 'not', 'repeat', 'it', ',', 'for', 'otherwise', 'it', 'would', 'be', 'very', 'wrong', 'to', 'say', 'any', 'thing', 'about', 'it', ',', '—but', 'I', 'have', 'it', 'from', 'the', 'very', 'best', 'authority', ',', '—not', 'that', 'I', 'ever', 'precisely', 'heard', 'Mrs.', 'Ferrars', 'say', 'it', 'herself—but', 'her', 'daughter', '_did_', ',', 'and', 'I', 'have', 'it', 'from', 'her', ',', '—that', 'in', 'short', ',', 'whatever', 'objections', 'there', 'might', 'be', 'against', 'a', 'certain—a', 'certain', 'connection', ',', 'you', 'understand', 'me', ',', '—it', 'would', 'have', 'been', 'far', 'preferable', 'to', 'her', ',', '—it', 'would', 'not', 'have', 'given', 'her', 'half', 'the', 'vexation', 'that', '_this_', 'does', '.', 'I', 'was', 'exceedingly', 'pleased', 'to', 'hear', 'that', 'Mrs.', 'Ferrars', 'considered', 'it', 'in', 'that', 'light', ';', 'a', 'very', 'gratifying', 'circumstance', 'you', 'know', 'to', 'us', 'all', '.', '‘', 'It', 'would', 'have', 'been', 'beyond', 'comparison', ',', '’', 'she', 'said', ',', '‘', 'the', 'least', 'evil', 'of', 'the', 'two', ',', 'and', 'she', 'would', 'be', 'glad', 'to', 'compound', '_now_', 'for', 'nothing', 'worse.', '’', 'But', 'however', ',', 'all', 'that', 'is', 'quite', 'out', 'of', 'the', 'question', ',', '—not', 'to', 'be', 'thought', 'of', 'or', 'mentioned—as', 'to', 'any', 'attachment', 'you', 'know', ',', 'it', 'never', 'could', 'be', ':', 'all', 'that', 'is', 'gone', 'by', '.', 'But', 'I', 'thought', 'I', 'would', 'just', 'tell', 'you', 'of', 'this', ',', 'because', 'I', 'knew', 'how', 'much', 'it', 'must', 'please', 'you', '.', 'Not', 'that', 'you', 'have', 'any', 'reason', 'to', 'regret', ',', 'my', 'dear', 'Elinor', '.', 'There', 'is', 'no', 'doubt', 'of', 'your', 'doing', 'exceedingly', 'well', ',', '—quite', 'as', 'well', ',', 'or', 'better', ',', 'perhaps', ',', 'all', 'things', 'considered', '.', 'Has', 'Colonel', 'Brandon', 'been', 'with', 'you', 'lately', '?', '”', 'Elinor', 'had', 'heard', 'enough', ',', 'if', 'not', 'to', 'gratify', 'her', 'vanity', ',', 'and', 'raise', 'her', 'self-importance', ',', 'to', 'agitate', 'her', 'nerves', 'and', 'fill', 'her', 'mind', ';', '—and', 'she', 'was', 'therefore', 'glad', 'to', 'be', 'spared', 'from', 'the', 'necessity', 'of', 'saying', 'much', 'in', 'reply', 'herself', ',', 'and', 'from', 'the', 'danger', 'of', 'hearing', 'any', 'thing', 'more', 'from', 'her', 'brother', ',', 'by', 'the', 'entrance', 'of', 'Mr.', 'Robert', 'Ferrars', '.', 'After', 'a', 'few', 'moments', '’', 'chat', ',', 'John', 'Dashwood', ',', 'recollecting', 'that', 'Fanny', 'was', 'yet', 'uninformed', 'of', 'her', 'sister', '’', 's', 'being', 'there', ',', 'quitted', 'the', 'room', 'in', 'quest', 'of', 'her', ';', 'and', 'Elinor', 'was', 'left', 'to', 'improve', 'her', 'acquaintance', 'with', 'Robert', ',', 'who', ',', 'by', 'the', 'gay', 'unconcern', ',', 'the', 'happy', 'self-complacency', 'of', 'his', 'manner', 'while', 'enjoying', 'so', 'unfair', 'a', 'division', 'of', 'his', 'mother', '’', 's', 'love', 'and', 'liberality', ',', 'to', 'the', 'prejudice', 'of', 'his', 'banished', 'brother', ',', 'earned', 'only', 'by', 'his', 'own', 'dissipated', 'course', 'of', 'life', ',', 'and', 'that', 'brother', '’', 's', 'integrity', ',', 'was', 'confirming', 'her', 'most', 'unfavourable', 'opinion', 'of', 'his', 'head', 'and', 'heart', '.', 'They', 'had', 'scarcely', 'been', 'two', 'minutes', 'by', 'themselves', ',', 'before', 'he', 'began', 'to', 'speak', 'of', 'Edward', ';', 'for', 'he', ',', 'too', ',', 'had', 'heard', 'of', 'the', 'living', ',', 'and', 'was', 'very', 'inquisitive', 'on', 'the', 'subject', '.', 'Elinor', 'repeated', 'the', 'particulars', 'of', 'it', ',', 'as', 'she', 'had', 'given', 'them', 'to', 'John', ';', 'and', 'their', 'effect', 'on', 'Robert', ',', 'though', 'very', 'different', ',', 'was', 'not', 'less', 'striking', 'than', 'it', 'had', 'been', 'on', '_him_', '.', 'He', 'laughed', 'most', 'immoderately', '.', 'The', 'idea', 'of', 'Edward', '’', 's', 'being', 'a', 'clergyman', ',', 'and', 'living', 'in', 'a', 'small', 'parsonage-house', ',', 'diverted', 'him', 'beyond', 'measure', ';', '—and', 'when', 'to', 'that', 'was', 'added', 'the', 'fanciful', 'imagery', 'of', 'Edward', 'reading', 'prayers', 'in', 'a', 'white', 'surplice', ',', 'and', 'publishing', 'the', 'banns', 'of', 'marriage', 'between', 'John', 'Smith', 'and', 'Mary', 'Brown', ',', 'he', 'could', 'conceive', 'nothing', 'more', 'ridiculous', '.', 'Elinor', ',', 'while', 'she', 'waited', 'in', 'silence', 'and', 'immovable', 'gravity', ',', 'the', 'conclusion', 'of', 'such', 'folly', ',', 'could', 'not', 'restrain', 'her', 'eyes', 'from', 'being', 'fixed', 'on', 'him', 'with', 'a', 'look', 'that', 'spoke', 'all', 'the', 'contempt', 'it', 'excited', '.', 'It', 'was', 'a', 'look', ',', 'however', ',', 'very', 'well', 'bestowed', ',', 'for', 'it', 'relieved', 'her', 'own', 'feelings', ',', 'and', 'gave', 'no', 'intelligence', 'to', 'him', '.', 'He', 'was', 'recalled', 'from', 'wit', 'to', 'wisdom', ',', 'not', 'by', 'any', 'reproof', 'of', 'hers', ',', 'but', 'by', 'his', 'own', 'sensibility', '.', '“', 'We', 'may', 'treat', 'it', 'as', 'a', 'joke', ',', '”', 'said', 'he', ',', 'at', 'last', ',', 'recovering', 'from', 'the', 'affected', 'laugh', 'which', 'had', 'considerably', 'lengthened', 'out', 'the', 'genuine', 'gaiety', 'of', 'the', 'moment', ';', '“', 'but', ',', 'upon', 'my', 'soul', ',', 'it', 'is', 'a', 'most', 'serious', 'business', '.', 'Poor', 'Edward', '!', 'he', 'is', 'ruined', 'for', 'ever', '.', 'I', 'am', 'extremely', 'sorry', 'for', 'it', ';', 'for', 'I', 'know', 'him', 'to', 'be', 'a', 'very', 'good-hearted', 'creature', ';', 'as', 'well-meaning', 'a', 'fellow', 'perhaps', ',', 'as', 'any', 'in', 'the', 'world', '.', 'You', 'must', 'not', 'judge', 'of', 'him', ',', 'Miss', 'Dashwood', ',', 'from', '_your_', 'slight', 'acquaintance', '.', 'Poor', 'Edward', '!', 'His', 'manners', 'are', 'certainly', 'not', 'the', 'happiest', 'in', 'nature', '.', 'But', 'we', 'are', 'not', 'all', 'born', ',', 'you', 'know', ',', 'with', 'the', 'same', 'powers', ',', '—the', 'same', 'address', '.', 'Poor', 'fellow', '!', 'to', 'see', 'him', 'in', 'a', 'circle', 'of', 'strangers', '!', 'To', 'be', 'sure', 'it', 'was', 'pitiable', 'enough', ';', 'but', 'upon', 'my', 'soul', ',', 'I', 'believe', 'he', 'has', 'as', 'good', 'a', 'heart', 'as', 'any', 'in', 'the', 'kingdom', ';', 'and', 'I', 'declare', 'and', 'protest', 'to', 'you', 'I', 'never', 'was', 'so', 'shocked', 'in', 'my', 'life', ',', 'as', 'when', 'it', 'all', 'burst', 'forth', '.', 'I', 'could', 'not', 'believe', 'it', '.', 'My', 'mother', 'was', 'the', 'first', 'person', 'who', 'told', 'me', 'of', 'it', ';', 'and', 'I', ',', 'feeling', 'myself', 'called', 'on', 'to', 'act', 'with', 'resolution', ',', 'immediately', 'said', 'to', 'her', ',', '‘', 'My', 'dear', 'madam', ',', 'I', 'do', 'not', 'know', 'what', 'you', 'may', 'intend', 'to', 'do', 'on', 'the', 'occasion', ',', 'but', 'as', 'for', 'myself', ',', 'I', 'must', 'say', ',', 'that', 'if', 'Edward', 'does', 'marry', 'this', 'young', 'woman', ',', '_I_', 'never', 'will', 'see', 'him', 'again.', '’', 'That', 'was', 'what', 'I', 'said', 'immediately', '.', 'I', 'was', 'most', 'uncommonly', 'shocked', ',', 'indeed', '!', 'Poor', 'Edward', '!', 'he', 'has', 'done', 'for', 'himself', 'completely', ',', '—shut', 'himself', 'out', 'for', 'ever', 'from', 'all', 'decent', 'society', '!', 'But', ',', 'as', 'I', 'directly', 'said', 'to', 'my', 'mother', ',', 'I', 'am', 'not', 'in', 'the', 'least', 'surprised', 'at', 'it', ';', 'from', 'his', 'style', 'of', 'education', ',', 'it', 'was', 'always', 'to', 'be', 'expected', '.', 'My', 'poor', 'mother', 'was', 'half', 'frantic.', '”', '“', 'Have', 'you', 'ever', 'seen', 'the', 'lady', '?', '”', '“', 'Yes', ';', 'once', ',', 'while', 'she', 'was', 'staying', 'in', 'this', 'house', ',', 'I', 'happened', 'to', 'drop', 'in', 'for', 'ten', 'minutes', ';', 'and', 'I', 'saw', 'quite', 'enough', 'of', 'her', '.', 'The', 'merest', 'awkward', 'country', 'girl', ',', 'without', 'style', ',', 'or', 'elegance', ',', 'and', 'almost', 'without', 'beauty', '.', 'I', 'remember', 'her', 'perfectly', '.', 'Just', 'the', 'kind', 'of', 'girl', 'I', 'should', 'suppose', 'likely', 'to', 'captivate', 'poor', 'Edward', '.', 'I', 'offered', 'immediately', ',', 'as', 'soon', 'as', 'my', 'mother', 'related', 'the', 'affair', 'to', 'me', ',', 'to', 'talk', 'to', 'him', 'myself', ',', 'and', 'dissuade', 'him', 'from', 'the', 'match', ';', 'but', 'it', 'was', 'too', 'late', '_then_', ',', 'I', 'found', ',', 'to', 'do', 'any', 'thing', ',', 'for', 'unluckily', ',', 'I', 'was', 'not', 'in', 'the', 'way', 'at', 'first', ',', 'and', 'knew', 'nothing', 'of', 'it', 'till', 'after', 'the', 'breach', 'had', 'taken', 'place', ',', 'when', 'it', 'was', 'not', 'for', 'me', ',', 'you', 'know', ',', 'to', 'interfere', '.', 'But', 'had', 'I', 'been', 'informed', 'of', 'it', 'a', 'few', 'hours', 'earlier', ',', 'I', 'think', 'it', 'is', 'most', 'probable', 'that', 'something', 'might', 'have', 'been', 'hit', 'on', '.', 'I', 'certainly', 'should', 'have', 'represented', 'it', 'to', 'Edward', 'in', 'a', 'very', 'strong', 'light', '.', '‘', 'My', 'dear', 'fellow', ',', '’', 'I', 'should', 'have', 'said', ',', '‘', 'consider', 'what', 'you', 'are', 'doing', '.', 'You', 'are', 'making', 'a', 'most', 'disgraceful', 'connection', ',', 'and', 'such', 'a', 'one', 'as', 'your', 'family', 'are', 'unanimous', 'in', 'disapproving.', '’', 'I', 'can', 'not', 'help', 'thinking', ',', 'in', 'short', ',', 'that', 'means', 'might', 'have', 'been', 'found', '.', 'But', 'now', 'it', 'is', 'all', 'too', 'late', '.', 'He', 'must', 'be', 'starved', ',', 'you', 'know', ',', 'that', 'is', 'certain', ';', 'absolutely', 'starved.', '”', 'He', 'had', 'just', 'settled', 'this', 'point', 'with', 'great', 'composure', ',', 'when', 'the', 'entrance', 'of', 'Mrs.', 'John', 'Dashwood', 'put', 'an', 'end', 'to', 'the', 'subject', '.', 'But', 'though', '_she_', 'never', 'spoke', 'of', 'it', 'out', 'of', 'her', 'own', 'family', ',', 'Elinor', 'could', 'see', 'its', 'influence', 'on', 'her', 'mind', ',', 'in', 'the', 'something', 'like', 'confusion', 'of', 'countenance', 'with', 'which', 'she', 'entered', ',', 'and', 'an', 'attempt', 'at', 'cordiality', 'in', 'her', 'behaviour', 'to', 'herself', '.', 'She', 'even', 'proceeded', 'so', 'far', 'as', 'to', 'be', 'concerned', 'to', 'find', 'that', 'Elinor', 'and', 'her', 'sister', 'were', 'so', 'soon', 'to', 'leave', 'town', ',', 'as', 'she', 'had', 'hoped', 'to', 'see', 'more', 'of', 'them', ';', '—an', 'exertion', 'in', 'which', 'her', 'husband', ',', 'who', 'attended', 'her', 'into', 'the', 'room', ',', 'and', 'hung', 'enamoured', 'over', 'her', 'accents', ',', 'seemed', 'to', 'distinguish', 'every', 'thing', 'that', 'was', 'most', 'affectionate', 'and', 'graceful', '.', 'CHAPTER', 'XLII', '.', 'One', 'other', 'short', 'call', 'in', 'Harley', 'Street', ',', 'in', 'which', 'Elinor', 'received', 'her', 'brother', '’', 's', 'congratulations', 'on', 'their', 'travelling', 'so', 'far', 'towards', 'Barton', 'without', 'any', 'expense', ',', 'and', 'on', 'Colonel', 'Brandon', '’', 's', 'being', 'to', 'follow', 'them', 'to', 'Cleveland', 'in', 'a', 'day', 'or', 'two', ',', 'completed', 'the', 'intercourse', 'of', 'the', 'brother', 'and', 'sisters', 'in', 'town', ';', '—and', 'a', 'faint', 'invitation', 'from', 'Fanny', ',', 'to', 'come', 'to', 'Norland', 'whenever', 'it', 'should', 'happen', 'to', 'be', 'in', 'their', 'way', ',', 'which', 'of', 'all', 'things', 'was', 'the', 'most', 'unlikely', 'to', 'occur', ',', 'with', 'a', 'more', 'warm', ',', 'though', 'less', 'public', ',', 'assurance', ',', 'from', 'John', 'to', 'Elinor', ',', 'of', 'the', 'promptitude', 'with', 'which', 'he', 'should', 'come', 'to', 'see', 'her', 'at', 'Delaford', ',', 'was', 'all', 'that', 'foretold', 'any', 'meeting', 'in', 'the', 'country', '.', 'It', 'amused', 'her', 'to', 'observe', 'that', 'all', 'her', 'friends', 'seemed', 'determined', 'to', 'send', 'her', 'to', 'Delaford', ';', '—a', 'place', ',', 'in', 'which', ',', 'of', 'all', 'others', ',', 'she', 'would', 'now', 'least', 'chuse', 'to', 'visit', ',', 'or', 'wish', 'to', 'reside', ';', 'for', 'not', 'only', 'was', 'it', 'considered', 'as', 'her', 'future', 'home', 'by', 'her', 'brother', 'and', 'Mrs.', 'Jennings', ',', 'but', 'even', 'Lucy', ',', 'when', 'they', 'parted', ',', 'gave', 'her', 'a', 'pressing', 'invitation', 'to', 'visit', 'her', 'there', '.', 'Very', 'early', 'in', 'April', ',', 'and', 'tolerably', 'early', 'in', 'the', 'day', ',', 'the', 'two', 'parties', 'from', 'Hanover', 'Square', 'and', 'Berkeley', 'Street', 'set', 'out', 'from', 'their', 'respective', 'homes', ',', 'to', 'meet', ',', 'by', 'appointment', ',', 'on', 'the', 'road', '.', 'For', 'the', 'convenience', 'of', 'Charlotte', 'and', 'her', 'child', ',', 'they', 'were', 'to', 'be', 'more', 'than', 'two', 'days', 'on', 'their', 'journey', ',', 'and', 'Mr.', 'Palmer', ',', 'travelling', 'more', 'expeditiously', 'with', 'Colonel', 'Brandon', ',', 'was', 'to', 'join', 'them', 'at', 'Cleveland', 'soon', 'after', 'their', 'arrival', '.', 'Marianne', ',', 'few', 'as', 'had', 'been', 'her', 'hours', 'of', 'comfort', 'in', 'London', ',', 'and', 'eager', 'as', 'she', 'had', 'long', 'been', 'to', 'quit', 'it', ',', 'could', 'not', ',', 'when', 'it', 'came', 'to', 'the', 'point', ',', 'bid', 'adieu', 'to', 'the', 'house', 'in', 'which', 'she', 'had', 'for', 'the', 'last', 'time', 'enjoyed', 'those', 'hopes', ',', 'and', 'that', 'confidence', ',', 'in', 'Willoughby', ',', 'which', 'were', 'now', 'extinguished', 'for', 'ever', ',', 'without', 'great', 'pain', '.', 'Nor', 'could', 'she', 'leave', 'the', 'place', 'in', 'which', 'Willoughby', 'remained', ',', 'busy', 'in', 'new', 'engagements', ',', 'and', 'new', 'schemes', ',', 'in', 'which', '_she_', 'could', 'have', 'no', 'share', ',', 'without', 'shedding', 'many', 'tears', '.', 'Elinor', '’', 's', 'satisfaction', ',', 'at', 'the', 'moment', 'of', 'removal', ',', 'was', 'more', 'positive', '.', 'She', 'had', 'no', 'such', 'object', 'for', 'her', 'lingering', 'thoughts', 'to', 'fix', 'on', ',', 'she', 'left', 'no', 'creature', 'behind', ',', 'from', 'whom', 'it', 'would', 'give', 'her', 'a', 'moment', '’', 's', 'regret', 'to', 'be', 'divided', 'for', 'ever', ',', 'she', 'was', 'pleased', 'to', 'be', 'free', 'herself', 'from', 'the', 'persecution', 'of', 'Lucy', '’', 's', 'friendship', ',', 'she', 'was', 'grateful', 'for', 'bringing', 'her', 'sister', 'away', 'unseen', 'by', 'Willoughby', 'since', 'his', 'marriage', ',', 'and', 'she', 'looked', 'forward', 'with', 'hope', 'to', 'what', 'a', 'few', 'months', 'of', 'tranquility', 'at', 'Barton', 'might', 'do', 'towards', 'restoring', 'Marianne', '’', 's', 'peace', 'of', 'mind', ',', 'and', 'confirming', 'her', 'own', '.', 'Their', 'journey', 'was', 'safely', 'performed', '.', 'The', 'second', 'day', 'brought', 'them', 'into', 'the', 'cherished', ',', 'or', 'the', 'prohibited', ',', 'county', 'of', 'Somerset', ',', 'for', 'as', 'such', 'was', 'it', 'dwelt', 'on', 'by', 'turns', 'in', 'Marianne', '’', 's', 'imagination', ';', 'and', 'in', 'the', 'forenoon', 'of', 'the', 'third', 'they', 'drove', 'up', 'to', 'Cleveland', '.', 'Cleveland', 'was', 'a', 'spacious', ',', 'modern-built', 'house', ',', 'situated', 'on', 'a', 'sloping', 'lawn', '.', 'It', 'had', 'no', 'park', ',', 'but', 'the', 'pleasure-grounds', 'were', 'tolerably', 'extensive', ';', 'and', 'like', 'every', 'other', 'place', 'of', 'the', 'same', 'degree', 'of', 'importance', ',', 'it', 'had', 'its', 'open', 'shrubbery', ',', 'and', 'closer', 'wood', 'walk', ',', 'a', 'road', 'of', 'smooth', 'gravel', 'winding', 'round', 'a', 'plantation', ',', 'led', 'to', 'the', 'front', ',', 'the', 'lawn', 'was', 'dotted', 'over', 'with', 'timber', ',', 'the', 'house', 'itself', 'was', 'under', 'the', 'guardianship', 'of', 'the', 'fir', ',', 'the', 'mountain-ash', ',', 'and', 'the', 'acacia', ',', 'and', 'a', 'thick', 'screen', 'of', 'them', 'altogether', ',', 'interspersed', 'with', 'tall', 'Lombardy', 'poplars', ',', 'shut', 'out', 'the', 'offices', '.', 'Marianne', 'entered', 'the', 'house', 'with', 'a', 'heart', 'swelling', 'with', 'emotion', 'from', 'the', 'consciousness', 'of', 'being', 'only', 'eighty', 'miles', 'from', 'Barton', ',', 'and', 'not', 'thirty', 'from', 'Combe', 'Magna', ';', 'and', 'before', 'she', 'had', 'been', 'five', 'minutes', 'within', 'its', 'walls', ',', 'while', 'the', 'others', 'were', 'busily', 'helping', 'Charlotte', 'to', 'show', 'her', 'child', 'to', 'the', 'housekeeper', ',', 'she', 'quitted', 'it', 'again', ',', 'stealing', 'away', 'through', 'the', 'winding', 'shrubberies', ',', 'now', 'just', 'beginning', 'to', 'be', 'in', 'beauty', ',', 'to', 'gain', 'a', 'distant', 'eminence', ';', 'where', ',', 'from', 'its', 'Grecian', 'temple', ',', 'her', 'eye', ',', 'wandering', 'over', 'a', 'wide', 'tract', 'of', 'country', 'to', 'the', 'south-east', ',', 'could', 'fondly', 'rest', 'on', 'the', 'farthest', 'ridge', 'of', 'hills', 'in', 'the', 'horizon', ',', 'and', 'fancy', 'that', 'from', 'their', 'summits', 'Combe', 'Magna', 'might', 'be', 'seen', '.', 'In', 'such', 'moments', 'of', 'precious', ',', 'invaluable', 'misery', ',', 'she', 'rejoiced', 'in', 'tears', 'of', 'agony', 'to', 'be', 'at', 'Cleveland', ';', 'and', 'as', 'she', 'returned', 'by', 'a', 'different', 'circuit', 'to', 'the', 'house', ',', 'feeling', 'all', 'the', 'happy', 'privilege', 'of', 'country', 'liberty', ',', 'of', 'wandering', 'from', 'place', 'to', 'place', 'in', 'free', 'and', 'luxurious', 'solitude', ',', 'she', 'resolved', 'to', 'spend', 'almost', 'every', 'hour', 'of', 'every', 'day', 'while', 'she', 'remained', 'with', 'the', 'Palmers', ',', 'in', 'the', 'indulgence', 'of', 'such', 'solitary', 'rambles', '.', 'She', 'returned', 'just', 'in', 'time', 'to', 'join', 'the', 'others', 'as', 'they', 'quitted', 'the', 'house', ',', 'on', 'an', 'excursion', 'through', 'its', 'more', 'immediate', 'premises', ';', 'and', 'the', 'rest', 'of', 'the', 'morning', 'was', 'easily', 'whiled', 'away', ',', 'in', 'lounging', 'round', 'the', 'kitchen', 'garden', ',', 'examining', 'the', 'bloom', 'upon', 'its', 'walls', ',', 'and', 'listening', 'to', 'the', 'gardener', '’', 's', 'lamentations', 'upon', 'blights', ',', 'in', 'dawdling', 'through', 'the', 'green-house', ',', 'where', 'the', 'loss', 'of', 'her', 'favourite', 'plants', ',', 'unwarily', 'exposed', ',', 'and', 'nipped', 'by', 'the', 'lingering', 'frost', ',', 'raised', 'the', 'laughter', 'of', 'Charlotte', ',', '—and', 'in', 'visiting', 'her', 'poultry-yard', ',', 'where', ',', 'in', 'the', 'disappointed', 'hopes', 'of', 'her', 'dairy-maid', ',', 'by', 'hens', 'forsaking', 'their', 'nests', ',', 'or', 'being', 'stolen', 'by', 'a', 'fox', ',', 'or', 'in', 'the', 'rapid', 'decrease', 'of', 'a', 'promising', 'young', 'brood', ',', 'she', 'found', 'fresh', 'sources', 'of', 'merriment', '.', 'The', 'morning', 'was', 'fine', 'and', 'dry', ',', 'and', 'Marianne', ',', 'in', 'her', 'plan', 'of', 'employment', 'abroad', ',', 'had', 'not', 'calculated', 'for', 'any', 'change', 'of', 'weather', 'during', 'their', 'stay', 'at', 'Cleveland', '.', 'With', 'great', 'surprise', 'therefore', ',', 'did', 'she', 'find', 'herself', 'prevented', 'by', 'a', 'settled', 'rain', 'from', 'going', 'out', 'again', 'after', 'dinner', '.', 'She', 'had', 'depended', 'on', 'a', 'twilight', 'walk', 'to', 'the', 'Grecian', 'temple', ',', 'and', 'perhaps', 'all', 'over', 'the', 'grounds', ',', 'and', 'an', 'evening', 'merely', 'cold', 'or', 'damp', 'would', 'not', 'have', 'deterred', 'her', 'from', 'it', ';', 'but', 'a', 'heavy', 'and', 'settled', 'rain', 'even', '_she_', 'could', 'not', 'fancy', 'dry', 'or', 'pleasant', 'weather', 'for', 'walking', '.', 'Their', 'party', 'was', 'small', ',', 'and', 'the', 'hours', 'passed', 'quietly', 'away', '.', 'Mrs.', 'Palmer', 'had', 'her', 'child', ',', 'and', 'Mrs.', 'Jennings', 'her', 'carpet-work', ';', 'they', 'talked', 'of', 'the', 'friends', 'they', 'had', 'left', 'behind', ',', 'arranged', 'Lady', 'Middleton', '’', 's', 'engagements', ',', 'and', 'wondered', 'whether', 'Mr.', 'Palmer', 'and', 'Colonel', 'Brandon', 'would', 'get', 'farther', 'than', 'Reading', 'that', 'night', '.', 'Elinor', ',', 'however', 'little', 'concerned', 'in', 'it', ',', 'joined', 'in', 'their', 'discourse', ';', 'and', 'Marianne', ',', 'who', 'had', 'the', 'knack', 'of', 'finding', 'her', 'way', 'in', 'every', 'house', 'to', 'the', 'library', ',', 'however', 'it', 'might', 'be', 'avoided', 'by', 'the', 'family', 'in', 'general', ',', 'soon', 'procured', 'herself', 'a', 'book', '.', 'Nothing', 'was', 'wanting', 'on', 'Mrs.', 'Palmer', '’', 's', 'side', 'that', 'constant', 'and', 'friendly', 'good', 'humour', 'could', 'do', ',', 'to', 'make', 'them', 'feel', 'themselves', 'welcome', '.', 'The', 'openness', 'and', 'heartiness', 'of', 'her', 'manner', 'more', 'than', 'atoned', 'for', 'that', 'want', 'of', 'recollection', 'and', 'elegance', 'which', 'made', 'her', 'often', 'deficient', 'in', 'the', 'forms', 'of', 'politeness', ';', 'her', 'kindness', ',', 'recommended', 'by', 'so', 'pretty', 'a', 'face', ',', 'was', 'engaging', ';', 'her', 'folly', ',', 'though', 'evident', 'was', 'not', 'disgusting', ',', 'because', 'it', 'was', 'not', 'conceited', ';', 'and', 'Elinor', 'could', 'have', 'forgiven', 'every', 'thing', 'but', 'her', 'laugh', '.', 'The', 'two', 'gentlemen', 'arrived', 'the', 'next', 'day', 'to', 'a', 'very', 'late', 'dinner', ',', 'affording', 'a', 'pleasant', 'enlargement', 'of', 'the', 'party', ',', 'and', 'a', 'very', 'welcome', 'variety', 'to', 'their', 'conversation', ',', 'which', 'a', 'long', 'morning', 'of', 'the', 'same', 'continued', 'rain', 'had', 'reduced', 'very', 'low', '.', 'Elinor', 'had', 'seen', 'so', 'little', 'of', 'Mr.', 'Palmer', ',', 'and', 'in', 'that', 'little', 'had', 'seen', 'so', 'much', 'variety', 'in', 'his', 'address', 'to', 'her', 'sister', 'and', 'herself', ',', 'that', 'she', 'knew', 'not', 'what', 'to', 'expect', 'to', 'find', 'him', 'in', 'his', 'own', 'family', '.', 'She', 'found', 'him', ',', 'however', ',', 'perfectly', 'the', 'gentleman', 'in', 'his', 'behaviour', 'to', 'all', 'his', 'visitors', ',', 'and', 'only', 'occasionally', 'rude', 'to', 'his', 'wife', 'and', 'her', 'mother', ';', 'she', 'found', 'him', 'very', 'capable', 'of', 'being', 'a', 'pleasant', 'companion', ',', 'and', 'only', 'prevented', 'from', 'being', 'so', 'always', ',', 'by', 'too', 'great', 'an', 'aptitude', 'to', 'fancy', 'himself', 'as', 'much', 'superior', 'to', 'people', 'in', 'general', ',', 'as', 'he', 'must', 'feel', 'himself', 'to', 'be', 'to', 'Mrs.', 'Jennings', 'and', 'Charlotte', '.', 'For', 'the', 'rest', 'of', 'his', 'character', 'and', 'habits', ',', 'they', 'were', 'marked', ',', 'as', 'far', 'as', 'Elinor', 'could', 'perceive', ',', 'with', 'no', 'traits', 'at', 'all', 'unusual', 'in', 'his', 'sex', 'and', 'time', 'of', 'life', '.', 'He', 'was', 'nice', 'in', 'his', 'eating', ',', 'uncertain', 'in', 'his', 'hours', ';', 'fond', 'of', 'his', 'child', ',', 'though', 'affecting', 'to', 'slight', 'it', ';', 'and', 'idled', 'away', 'the', 'mornings', 'at', 'billiards', ',', 'which', 'ought', 'to', 'have', 'been', 'devoted', 'to', 'business', '.', 'She', 'liked', 'him', ',', 'however', ',', 'upon', 'the', 'whole', ',', 'much', 'better', 'than', 'she', 'had', 'expected', ',', 'and', 'in', 'her', 'heart', 'was', 'not', 'sorry', 'that', 'she', 'could', 'like', 'him', 'no', 'more', ';', '—not', 'sorry', 'to', 'be', 'driven', 'by', 'the', 'observation', 'of', 'his', 'Epicurism', ',', 'his', 'selfishness', ',', 'and', 'his', 'conceit', ',', 'to', 'rest', 'with', 'complacency', 'on', 'the', 'remembrance', 'of', 'Edward', '’', 's', 'generous', 'temper', ',', 'simple', 'taste', ',', 'and', 'diffident', 'feelings', '.', 'Of', 'Edward', ',', 'or', 'at', 'least', 'of', 'some', 'of', 'his', 'concerns', ',', 'she', 'now', 'received', 'intelligence', 'from', 'Colonel', 'Brandon', ',', 'who', 'had', 'been', 'into', 'Dorsetshire', 'lately', ';', 'and', 'who', ',', 'treating', 'her', 'at', 'once', 'as', 'the', 'disinterested', 'friend', 'of', 'Mr.', 'Ferrars', ',', 'and', 'the', 'kind', 'confidante', 'of', 'himself', ',', 'talked', 'to', 'her', 'a', 'great', 'deal', 'of', 'the', 'parsonage', 'at', 'Delaford', ',', 'described', 'its', 'deficiencies', ',', 'and', 'told', 'her', 'what', 'he', 'meant', 'to', 'do', 'himself', 'towards', 'removing', 'them.—His', 'behaviour', 'to', 'her', 'in', 'this', ',', 'as', 'well', 'as', 'in', 'every', 'other', 'particular', ',', 'his', 'open', 'pleasure', 'in', 'meeting', 'her', 'after', 'an', 'absence', 'of', 'only', 'ten', 'days', ',', 'his', 'readiness', 'to', 'converse', 'with', 'her', ',', 'and', 'his', 'deference', 'for', 'her', 'opinion', ',', 'might', 'very', 'well', 'justify', 'Mrs.', 'Jennings', '’', 's', 'persuasion', 'of', 'his', 'attachment', ',', 'and', 'would', 'have', 'been', 'enough', ',', 'perhaps', ',', 'had', 'not', 'Elinor', 'still', ',', 'as', 'from', 'the', 'first', ',', 'believed', 'Marianne', 'his', 'real', 'favourite', ',', 'to', 'make', 'her', 'suspect', 'it', 'herself', '.', 'But', 'as', 'it', 'was', ',', 'such', 'a', 'notion', 'had', 'scarcely', 'ever', 'entered', 'her', 'head', ',', 'except', 'by', 'Mrs.', 'Jennings', '’', 's', 'suggestion', ';', 'and', 'she', 'could', 'not', 'help', 'believing', 'herself', 'the', 'nicest', 'observer', 'of', 'the', 'two', ';', '—she', 'watched', 'his', 'eyes', ',', 'while', 'Mrs.', 'Jennings', 'thought', 'only', 'of', 'his', 'behaviour', ';', '—and', 'while', 'his', 'looks', 'of', 'anxious', 'solicitude', 'on', 'Marianne', '’', 's', 'feeling', ',', 'in', 'her', 'head', 'and', 'throat', ',', 'the', 'beginning', 'of', 'a', 'heavy', 'cold', ',', 'because', 'unexpressed', 'by', 'words', ',', 'entirely', 'escaped', 'the', 'latter', 'lady', '’', 's', 'observation', ';', '—_she_', 'could', 'discover', 'in', 'them', 'the', 'quick', 'feelings', ',', 'and', 'needless', 'alarm', 'of', 'a', 'lover', '.', 'Two', 'delightful', 'twilight', 'walks', 'on', 'the', 'third', 'and', 'fourth', 'evenings', 'of', 'her', 'being', 'there', ',', 'not', 'merely', 'on', 'the', 'dry', 'gravel', 'of', 'the', 'shrubbery', ',', 'but', 'all', 'over', 'the', 'grounds', ',', 'and', 'especially', 'in', 'the', 'most', 'distant', 'parts', 'of', 'them', ',', 'where', 'there', 'was', 'something', 'more', 'of', 'wildness', 'than', 'in', 'the', 'rest', ',', 'where', 'the', 'trees', 'were', 'the', 'oldest', ',', 'and', 'the', 'grass', 'was', 'the', 'longest', 'and', 'wettest', ',', 'had—assisted', 'by', 'the', 'still', 'greater', 'imprudence', 'of', 'sitting', 'in', 'her', 'wet', 'shoes', 'and', 'stockings—given', 'Marianne', 'a', 'cold', 'so', 'violent', 'as', ',', 'though', 'for', 'a', 'day', 'or', 'two', 'trifled', 'with', 'or', 'denied', ',', 'would', 'force', 'itself', 'by', 'increasing', 'ailments', 'on', 'the', 'concern', 'of', 'every', 'body', ',', 'and', 'the', 'notice', 'of', 'herself', '.', 'Prescriptions', 'poured', 'in', 'from', 'all', 'quarters', ',', 'and', 'as', 'usual', ',', 'were', 'all', 'declined', '.', 'Though', 'heavy', 'and', 'feverish', ',', 'with', 'a', 'pain', 'in', 'her', 'limbs', ',', 'and', 'a', 'cough', ',', 'and', 'a', 'sore', 'throat', ',', 'a', 'good', 'night', '’', 's', 'rest', 'was', 'to', 'cure', 'her', 'entirely', ';', 'and', 'it', 'was', 'with', 'difficulty', 'that', 'Elinor', 'prevailed', 'on', 'her', ',', 'when', 'she', 'went', 'to', 'bed', ',', 'to', 'try', 'one', 'or', 'two', 'of', 'the', 'simplest', 'of', 'the', 'remedies', '.', 'CHAPTER', 'XLIII', '.', 'Marianne', 'got', 'up', 'the', 'next', 'morning', 'at', 'her', 'usual', 'time', ';', 'to', 'every', 'inquiry', 'replied', 'that', 'she', 'was', 'better', ',', 'and', 'tried', 'to', 'prove', 'herself', 'so', ',', 'by', 'engaging', 'in', 'her', 'accustomary', 'employments', '.', 'But', 'a', 'day', 'spent', 'in', 'sitting', 'shivering', 'over', 'the', 'fire', 'with', 'a', 'book', 'in', 'her', 'hand', ',', 'which', 'she', 'was', 'unable', 'to', 'read', ',', 'or', 'in', 'lying', ',', 'weary', 'and', 'languid', ',', 'on', 'a', 'sofa', ',', 'did', 'not', 'speak', 'much', 'in', 'favour', 'of', 'her', 'amendment', ';', 'and', 'when', ',', 'at', 'last', ',', 'she', 'went', 'early', 'to', 'bed', ',', 'more', 'and', 'more', 'indisposed', ',', 'Colonel', 'Brandon', 'was', 'only', 'astonished', 'at', 'her', 'sister', '’', 's', 'composure', ',', 'who', ',', 'though', 'attending', 'and', 'nursing', 'her', 'the', 'whole', 'day', ',', 'against', 'Marianne', '’', 's', 'inclination', ',', 'and', 'forcing', 'proper', 'medicines', 'on', 'her', 'at', 'night', ',', 'trusted', ',', 'like', 'Marianne', ',', 'to', 'the', 'certainty', 'and', 'efficacy', 'of', 'sleep', ',', 'and', 'felt', 'no', 'real', 'alarm', '.', 'A', 'very', 'restless', 'and', 'feverish', 'night', ',', 'however', ',', 'disappointed', 'the', 'expectation', 'of', 'both', ';', 'and', 'when', 'Marianne', ',', 'after', 'persisting', 'in', 'rising', ',', 'confessed', 'herself', 'unable', 'to', 'sit', 'up', ',', 'and', 'returned', 'voluntarily', 'to', 'her', 'bed', ',', 'Elinor', 'was', 'very', 'ready', 'to', 'adopt', 'Mrs.', 'Jennings', '’', 's', 'advice', ',', 'of', 'sending', 'for', 'the', 'Palmers', '’', 'apothecary', '.', 'He', 'came', ',', 'examined', 'his', 'patient', ',', 'and', 'though', 'encouraging', 'Miss', 'Dashwood', 'to', 'expect', 'that', 'a', 'very', 'few', 'days', 'would', 'restore', 'her', 'sister', 'to', 'health', ',', 'yet', ',', 'by', 'pronouncing', 'her', 'disorder', 'to', 'have', 'a', 'putrid', 'tendency', ',', 'and', 'allowing', 'the', 'word', '“', 'infection', '”', 'to', 'pass', 'his', 'lips', ',', 'gave', 'instant', 'alarm', 'to', 'Mrs.', 'Palmer', ',', 'on', 'her', 'baby', '’', 's', 'account', '.', 'Mrs.', 'Jennings', ',', 'who', 'had', 'been', 'inclined', 'from', 'the', 'first', 'to', 'think', 'Marianne', '’', 's', 'complaint', 'more', 'serious', 'than', 'Elinor', ',', 'now', 'looked', 'very', 'grave', 'on', 'Mr.', 'Harris', '’', 's', 'report', ',', 'and', 'confirming', 'Charlotte', '’', 's', 'fears', 'and', 'caution', ',', 'urged', 'the', 'necessity', 'of', 'her', 'immediate', 'removal', 'with', 'her', 'infant', ';', 'and', 'Mr.', 'Palmer', ',', 'though', 'treating', 'their', 'apprehensions', 'as', 'idle', ',', 'found', 'the', 'anxiety', 'and', 'importunity', 'of', 'his', 'wife', 'too', 'great', 'to', 'be', 'withstood', '.', 'Her', 'departure', ',', 'therefore', ',', 'was', 'fixed', 'on', ';', 'and', 'within', 'an', 'hour', 'after', 'Mr.', 'Harris', '’', 's', 'arrival', ',', 'she', 'set', 'off', ',', 'with', 'her', 'little', 'boy', 'and', 'his', 'nurse', ',', 'for', 'the', 'house', 'of', 'a', 'near', 'relation', 'of', 'Mr.', 'Palmer', '’', 's', ',', 'who', 'lived', 'a', 'few', 'miles', 'on', 'the', 'other', 'side', 'of', 'Bath', ';', 'whither', 'her', 'husband', 'promised', ',', 'at', 'her', 'earnest', 'entreaty', ',', 'to', 'join', 'her', 'in', 'a', 'day', 'or', 'two', ';', 'and', 'whither', 'she', 'was', 'almost', 'equally', 'urgent', 'with', 'her', 'mother', 'to', 'accompany', 'her', '.', 'Mrs.', 'Jennings', ',', 'however', ',', 'with', 'a', 'kindness', 'of', 'heart', 'which', 'made', 'Elinor', 'really', 'love', 'her', ',', 'declared', 'her', 'resolution', 'of', 'not', 'stirring', 'from', 'Cleveland', 'as', 'long', 'as', 'Marianne', 'remained', 'ill', ',', 'and', 'of', 'endeavouring', ',', 'by', 'her', 'own', 'attentive', 'care', ',', 'to', 'supply', 'to', 'her', 'the', 'place', 'of', 'the', 'mother', 'she', 'had', 'taken', 'her', 'from', ';', 'and', 'Elinor', 'found', 'her', 'on', 'every', 'occasion', 'a', 'most', 'willing', 'and', 'active', 'helpmate', ',', 'desirous', 'to', 'share', 'in', 'all', 'her', 'fatigues', ',', 'and', 'often', 'by', 'her', 'better', 'experience', 'in', 'nursing', ',', 'of', 'material', 'use', '.', 'Poor', 'Marianne', ',', 'languid', 'and', 'low', 'from', 'the', 'nature', 'of', 'her', 'malady', ',', 'and', 'feeling', 'herself', 'universally', 'ill', ',', 'could', 'no', 'longer', 'hope', 'that', 'tomorrow', 'would', 'find', 'her', 'recovered', ';', 'and', 'the', 'idea', 'of', 'what', 'tomorrow', 'would', 'have', 'produced', ',', 'but', 'for', 'this', 'unlucky', 'illness', ',', 'made', 'every', 'ailment', 'severe', ';', 'for', 'on', 'that', 'day', 'they', 'were', 'to', 'have', 'begun', 'their', 'journey', 'home', ';', 'and', ',', 'attended', 'the', 'whole', 'way', 'by', 'a', 'servant', 'of', 'Mrs.', 'Jennings', ',', 'were', 'to', 'have', 'taken', 'their', 'mother', 'by', 'surprise', 'on', 'the', 'following', 'forenoon', '.', 'The', 'little', 'she', 'said', 'was', 'all', 'in', 'lamentation', 'of', 'this', 'inevitable', 'delay', ';', 'though', 'Elinor', 'tried', 'to', 'raise', 'her', 'spirits', ',', 'and', 'make', 'her', 'believe', ',', 'as', 'she', '_then_', 'really', 'believed', 'herself', ',', 'that', 'it', 'would', 'be', 'a', 'very', 'short', 'one', '.', 'The', 'next', 'day', 'produced', 'little', 'or', 'no', 'alteration', 'in', 'the', 'state', 'of', 'the', 'patient', ';', 'she', 'certainly', 'was', 'not', 'better', ',', 'and', ',', 'except', 'that', 'there', 'was', 'no', 'amendment', ',', 'did', 'not', 'appear', 'worse', '.', 'Their', 'party', 'was', 'now', 'farther', 'reduced', ';', 'for', 'Mr.', 'Palmer', ',', 'though', 'very', 'unwilling', 'to', 'go', 'as', 'well', 'from', 'real', 'humanity', 'and', 'good-nature', ',', 'as', 'from', 'a', 'dislike', 'of', 'appearing', 'to', 'be', 'frightened', 'away', 'by', 'his', 'wife', ',', 'was', 'persuaded', 'at', 'last', 'by', 'Colonel', 'Brandon', 'to', 'perform', 'his', 'promise', 'of', 'following', 'her', ';', 'and', 'while', 'he', 'was', 'preparing', 'to', 'go', ',', 'Colonel', 'Brandon', 'himself', ',', 'with', 'a', 'much', 'greater', 'exertion', ',', 'began', 'to', 'talk', 'of', 'going', 'likewise.—Here', ',', 'however', ',', 'the', 'kindness', 'of', 'Mrs.', 'Jennings', 'interposed', 'most', 'acceptably', ';', 'for', 'to', 'send', 'the', 'Colonel', 'away', 'while', 'his', 'love', 'was', 'in', 'so', 'much', 'uneasiness', 'on', 'her', 'sister', '’', 's', 'account', ',', 'would', 'be', 'to', 'deprive', 'them', 'both', ',', 'she', 'thought', ',', 'of', 'every', 'comfort', ';', 'and', 'therefore', 'telling', 'him', 'at', 'once', 'that', 'his', 'stay', 'at', 'Cleveland', 'was', 'necessary', 'to', 'herself', ',', 'that', 'she', 'should', 'want', 'him', 'to', 'play', 'at', 'piquet', 'of', 'an', 'evening', ',', 'while', 'Miss', 'Dashwood', 'was', 'above', 'with', 'her', 'sister', ',', '&', 'c.', 'she', 'urged', 'him', 'so', 'strongly', 'to', 'remain', ',', 'that', 'he', ',', 'who', 'was', 'gratifying', 'the', 'first', 'wish', 'of', 'his', 'own', 'heart', 'by', 'a', 'compliance', ',', 'could', 'not', 'long', 'even', 'affect', 'to', 'demur', ';', 'especially', 'as', 'Mrs.', 'Jennings', '’', 's', 'entreaty', 'was', 'warmly', 'seconded', 'by', 'Mr.', 'Palmer', ',', 'who', 'seemed', 'to', 'feel', 'a', 'relief', 'to', 'himself', ',', 'in', 'leaving', 'behind', 'him', 'a', 'person', 'so', 'well', 'able', 'to', 'assist', 'or', 'advise', 'Miss', 'Dashwood', 'in', 'any', 'emergence', '.', 'Marianne', 'was', ',', 'of', 'course', ',', 'kept', 'in', 'ignorance', 'of', 'all', 'these', 'arrangements', '.', 'She', 'knew', 'not', 'that', 'she', 'had', 'been', 'the', 'means', 'of', 'sending', 'the', 'owners', 'of', 'Cleveland', 'away', ',', 'in', 'about', 'seven', 'days', 'from', 'the', 'time', 'of', 'their', 'arrival', '.', 'It', 'gave', 'her', 'no', 'surprise', 'that', 'she', 'saw', 'nothing', 'of', 'Mrs.', 'Palmer', ';', 'and', 'as', 'it', 'gave', 'her', 'likewise', 'no', 'concern', ',', 'she', 'never', 'mentioned', 'her', 'name', '.', 'Two', 'days', 'passed', 'away', 'from', 'the', 'time', 'of', 'Mr.', 'Palmer', '’', 's', 'departure', ',', 'and', 'her', 'situation', 'continued', ',', 'with', 'little', 'variation', ',', 'the', 'same', '.', 'Mr.', 'Harris', ',', 'who', 'attended', 'her', 'every', 'day', ',', 'still', 'talked', 'boldly', 'of', 'a', 'speedy', 'recovery', ',', 'and', 'Miss', 'Dashwood', 'was', 'equally', 'sanguine', ';', 'but', 'the', 'expectation', 'of', 'the', 'others', 'was', 'by', 'no', 'means', 'so', 'cheerful', '.', 'Mrs.', 'Jennings', 'had', 'determined', 'very', 'early', 'in', 'the', 'seizure', 'that', 'Marianne', 'would', 'never', 'get', 'over', 'it', ',', 'and', 'Colonel', 'Brandon', ',', 'who', 'was', 'chiefly', 'of', 'use', 'in', 'listening', 'to', 'Mrs.', 'Jennings', '’', 's', 'forebodings', ',', 'was', 'not', 'in', 'a', 'state', 'of', 'mind', 'to', 'resist', 'their', 'influence', '.', 'He', 'tried', 'to', 'reason', 'himself', 'out', 'of', 'fears', ',', 'which', 'the', 'different', 'judgment', 'of', 'the', 'apothecary', 'seemed', 'to', 'render', 'absurd', ';', 'but', 'the', 'many', 'hours', 'of', 'each', 'day', 'in', 'which', 'he', 'was', 'left', 'entirely', 'alone', ',', 'were', 'but', 'too', 'favourable', 'for', 'the', 'admission', 'of', 'every', 'melancholy', 'idea', ',', 'and', 'he', 'could', 'not', 'expel', 'from', 'his', 'mind', 'the', 'persuasion', 'that', 'he', 'should', 'see', 'Marianne', 'no', 'more', '.', 'On', 'the', 'morning', 'of', 'the', 'third', 'day', 'however', ',', 'the', 'gloomy', 'anticipations', 'of', 'both', 'were', 'almost', 'done', 'away', ';', 'for', 'when', 'Mr.', 'Harris', 'arrived', ',', 'he', 'declared', 'his', 'patient', 'materially', 'better', '.', 'Her', 'pulse', 'was', 'much', 'stronger', ',', 'and', 'every', 'symptom', 'more', 'favourable', 'than', 'on', 'the', 'preceding', 'visit', '.', 'Elinor', ',', 'confirmed', 'in', 'every', 'pleasant', 'hope', ',', 'was', 'all', 'cheerfulness', ';', 'rejoicing', 'that', 'in', 'her', 'letters', 'to', 'her', 'mother', ',', 'she', 'had', 'pursued', 'her', 'own', 'judgment', 'rather', 'than', 'her', 'friend', '’', 's', ',', 'in', 'making', 'very', 'light', 'of', 'the', 'indisposition', 'which', 'delayed', 'them', 'at', 'Cleveland', ';', 'and', 'almost', 'fixing', 'on', 'the', 'time', 'when', 'Marianne', 'would', 'be', 'able', 'to', 'travel', '.', 'But', 'the', 'day', 'did', 'not', 'close', 'so', 'auspiciously', 'as', 'it', 'began', '.', 'Towards', 'the', 'evening', 'Marianne', 'became', 'ill', 'again', ',', 'growing', 'more', 'heavy', ',', 'restless', ',', 'and', 'uncomfortable', 'than', 'before', '.', 'Her', 'sister', ',', 'however', ',', 'still', 'sanguine', ',', 'was', 'willing', 'to', 'attribute', 'the', 'change', 'to', 'nothing', 'more', 'than', 'the', 'fatigue', 'of', 'having', 'sat', 'up', 'to', 'have', 'her', 'bed', 'made', ';', 'and', 'carefully', 'administering', 'the', 'cordials', 'prescribed', ',', 'saw', 'her', ',', 'with', 'satisfaction', ',', 'sink', 'at', 'last', 'into', 'a', 'slumber', ',', 'from', 'which', 'she', 'expected', 'the', 'most', 'beneficial', 'effects', '.', 'Her', 'sleep', ',', 'though', 'not', 'so', 'quiet', 'as', 'Elinor', 'wished', 'to', 'see', 'it', ',', 'lasted', 'a', 'considerable', 'time', ';', 'and', 'anxious', 'to', 'observe', 'the', 'result', 'of', 'it', 'herself', ',', 'she', 'resolved', 'to', 'sit', 'with', 'her', 'during', 'the', 'whole', 'of', 'it', '.', 'Mrs.', 'Jennings', ',', 'knowing', 'nothing', 'of', 'any', 'change', 'in', 'the', 'patient', ',', 'went', 'unusually', 'early', 'to', 'bed', ';', 'her', 'maid', ',', 'who', 'was', 'one', 'of', 'the', 'principal', 'nurses', ',', 'was', 'recreating', 'herself', 'in', 'the', 'housekeeper', '’', 's', 'room', ',', 'and', 'Elinor', 'remained', 'alone', 'with', 'Marianne', '.', 'The', 'repose', 'of', 'the', 'latter', 'became', 'more', 'and', 'more', 'disturbed', ';', 'and', 'her', 'sister', ',', 'who', 'watched', ',', 'with', 'unremitting', 'attention', 'her', 'continual', 'change', 'of', 'posture', ',', 'and', 'heard', 'the', 'frequent', 'but', 'inarticulate', 'sounds', 'of', 'complaint', 'which', 'passed', 'her', 'lips', ',', 'was', 'almost', 'wishing', 'to', 'rouse', 'her', 'from', 'so', 'painful', 'a', 'slumber', ',', 'when', 'Marianne', ',', 'suddenly', 'awakened', 'by', 'some', 'accidental', 'noise', 'in', 'the', 'house', ',', 'started', 'hastily', 'up', ',', 'and', ',', 'with', 'feverish', 'wildness', ',', 'cried', 'out', ',', '—', '“', 'Is', 'mama', 'coming', '?', '”', '“', 'Not', 'yet', ',', '”', 'cried', 'the', 'other', ',', 'concealing', 'her', 'terror', ',', 'and', 'assisting', 'Marianne', 'to', 'lie', 'down', 'again', ',', '“', 'but', 'she', 'will', 'be', 'here', ',', 'I', 'hope', ',', 'before', 'it', 'is', 'long', '.', 'It', 'is', 'a', 'great', 'way', ',', 'you', 'know', ',', 'from', 'hence', 'to', 'Barton.', '”', '“', 'But', 'she', 'must', 'not', 'go', 'round', 'by', 'London', ',', '”', 'cried', 'Marianne', ',', 'in', 'the', 'same', 'hurried', 'manner', '.', '“', 'I', 'shall', 'never', 'see', 'her', ',', 'if', 'she', 'goes', 'by', 'London.', '”', 'Elinor', 'perceived', 'with', 'alarm', 'that', 'she', 'was', 'not', 'quite', 'herself', ',', 'and', ',', 'while', 'attempting', 'to', 'soothe', 'her', ',', 'eagerly', 'felt', 'her', 'pulse', '.', 'It', 'was', 'lower', 'and', 'quicker', 'than', 'ever', '!', 'and', 'Marianne', ',', 'still', 'talking', 'wildly', 'of', 'mama', ',', 'her', 'alarm', 'increased', 'so', 'rapidly', ',', 'as', 'to', 'determine', 'her', 'on', 'sending', 'instantly', 'for', 'Mr.', 'Harris', ',', 'and', 'despatching', 'a', 'messenger', 'to', 'Barton', 'for', 'her', 'mother', '.', 'To', 'consult', 'with', 'Colonel', 'Brandon', 'on', 'the', 'best', 'means', 'of', 'effecting', 'the', 'latter', ',', 'was', 'a', 'thought', 'which', 'immediately', 'followed', 'the', 'resolution', 'of', 'its', 'performance', ';', 'and', 'as', 'soon', 'she', 'had', 'rung', 'up', 'the', 'maid', 'to', 'take', 'her', 'place', 'by', 'her', 'sister', ',', 'she', 'hastened', 'down', 'to', 'the', 'drawing-room', ',', 'where', 'she', 'knew', 'he', 'was', 'generally', 'to', 'be', 'found', 'at', 'a', 'much', 'later', 'hour', 'than', 'the', 'present', '.', 'It', 'was', 'no', 'time', 'for', 'hesitation', '.', 'Her', 'fears', 'and', 'her', 'difficulties', 'were', 'immediately', 'before', 'him', '.', 'Her', 'fears', ',', 'he', 'had', 'no', 'courage', ',', 'no', 'confidence', 'to', 'attempt', 'the', 'removal', 'of', ':', '—he', 'listened', 'to', 'them', 'in', 'silent', 'despondence', ';', '—but', 'her', 'difficulties', 'were', 'instantly', 'obviated', ',', 'for', 'with', 'a', 'readiness', 'that', 'seemed', 'to', 'speak', 'the', 'occasion', ',', 'and', 'the', 'service', 'pre-arranged', 'in', 'his', 'mind', ',', 'he', 'offered', 'himself', 'as', 'the', 'messenger', 'who', 'should', 'fetch', 'Mrs.', 'Dashwood', '.', 'Elinor', 'made', 'no', 'resistance', 'that', 'was', 'not', 'easily', 'overcome', '.', 'She', 'thanked', 'him', 'with', 'brief', ',', 'though', 'fervent', 'gratitude', ',', 'and', 'while', 'he', 'went', 'to', 'hurry', 'off', 'his', 'servant', 'with', 'a', 'message', 'to', 'Mr.', 'Harris', ',', 'and', 'an', 'order', 'for', 'post-horses', 'directly', ',', 'she', 'wrote', 'a', 'few', 'lines', 'to', 'her', 'mother', '.', 'The', 'comfort', 'of', 'such', 'a', 'friend', 'at', 'that', 'moment', 'as', 'Colonel', 'Brandon—or', 'such', 'a', 'companion', 'for', 'her', 'mother', ',', '—how', 'gratefully', 'was', 'it', 'felt', '!', '—a', 'companion', 'whose', 'judgment', 'would', 'guide', ',', 'whose', 'attendance', 'must', 'relieve', ',', 'and', 'whose', 'friendship', 'might', 'soothe', 'her', '!', '—as', 'far', 'as', 'the', 'shock', 'of', 'such', 'a', 'summons', '_could_', 'be', 'lessened', 'to', 'her', ',', 'his', 'presence', ',', 'his', 'manners', ',', 'his', 'assistance', ',', 'would', 'lessen', 'it', '.', '_He_', ',', 'meanwhile', ',', 'whatever', 'he', 'might', 'feel', ',', 'acted', 'with', 'all', 'the', 'firmness', 'of', 'a', 'collected', 'mind', ',', 'made', 'every', 'necessary', 'arrangement', 'with', 'the', 'utmost', 'despatch', ',', 'and', 'calculated', 'with', 'exactness', 'the', 'time', 'in', 'which', 'she', 'might', 'look', 'for', 'his', 'return', '.', 'Not', 'a', 'moment', 'was', 'lost', 'in', 'delay', 'of', 'any', 'kind', '.', 'The', 'horses', 'arrived', ',', 'even', 'before', 'they', 'were', 'expected', ',', 'and', 'Colonel', 'Brandon', 'only', 'pressing', 'her', 'hand', 'with', 'a', 'look', 'of', 'solemnity', ',', 'and', 'a', 'few', 'words', 'spoken', 'too', 'low', 'to', 'reach', 'her', 'ear', ',', 'hurried', 'into', 'the', 'carriage', '.', 'It', 'was', 'then', 'about', 'twelve', 'o', '’', 'clock', ',', 'and', 'she', 'returned', 'to', 'her', 'sister', '’', 's', 'apartment', 'to', 'wait', 'for', 'the', 'arrival', 'of', 'the', 'apothecary', ',', 'and', 'to', 'watch', 'by', 'her', 'the', 'rest', 'of', 'the', 'night', '.', 'It', 'was', 'a', 'night', 'of', 'almost', 'equal', 'suffering', 'to', 'both', '.', 'Hour', 'after', 'hour', 'passed', 'away', 'in', 'sleepless', 'pain', 'and', 'delirium', 'on', 'Marianne', '’', 's', 'side', ',', 'and', 'in', 'the', 'most', 'cruel', 'anxiety', 'on', 'Elinor', '’', 's', ',', 'before', 'Mr.', 'Harris', 'appeared', '.', 'Her', 'apprehensions', 'once', 'raised', ',', 'paid', 'by', 'their', 'excess', 'for', 'all', 'her', 'former', 'security', ';', 'and', 'the', 'servant', 'who', 'sat', 'up', 'with', 'her', ',', 'for', 'she', 'would', 'not', 'allow', 'Mrs.', 'Jennings', 'to', 'be', 'called', ',', 'only', 'tortured', 'her', 'more', ',', 'by', 'hints', 'of', 'what', 'her', 'mistress', 'had', 'always', 'thought', '.', 'Marianne', '’', 's', 'ideas', 'were', 'still', ',', 'at', 'intervals', ',', 'fixed', 'incoherently', 'on', 'her', 'mother', ',', 'and', 'whenever', 'she', 'mentioned', 'her', 'name', ',', 'it', 'gave', 'a', 'pang', 'to', 'the', 'heart', 'of', 'poor', 'Elinor', ',', 'who', ',', 'reproaching', 'herself', 'for', 'having', 'trifled', 'with', 'so', 'many', 'days', 'of', 'illness', ',', 'and', 'wretched', 'for', 'some', 'immediate', 'relief', ',', 'fancied', 'that', 'all', 'relief', 'might', 'soon', 'be', 'in', 'vain', ',', 'that', 'every', 'thing', 'had', 'been', 'delayed', 'too', 'long', ',', 'and', 'pictured', 'to', 'herself', 'her', 'suffering', 'mother', 'arriving', 'too', 'late', 'to', 'see', 'this', 'darling', 'child', ',', 'or', 'to', 'see', 'her', 'rational', '.', 'She', 'was', 'on', 'the', 'point', 'of', 'sending', 'again', 'for', 'Mr.', 'Harris', ',', 'or', 'if', '_he_', 'could', 'not', 'come', ',', 'for', 'some', 'other', 'advice', ',', 'when', 'the', 'former—but', 'not', 'till', 'after', 'five', 'o', '’', 'clock—arrived', '.', 'His', 'opinion', ',', 'however', ',', 'made', 'some', 'little', 'amends', 'for', 'his', 'delay', ',', 'for', 'though', 'acknowledging', 'a', 'very', 'unexpected', 'and', 'unpleasant', 'alteration', 'in', 'his', 'patient', ',', 'he', 'would', 'not', 'allow', 'the', 'danger', 'to', 'be', 'material', ',', 'and', 'talked', 'of', 'the', 'relief', 'which', 'a', 'fresh', 'mode', 'of', 'treatment', 'must', 'procure', ',', 'with', 'a', 'confidence', 'which', ',', 'in', 'a', 'lesser', 'degree', ',', 'was', 'communicated', 'to', 'Elinor', '.', 'He', 'promised', 'to', 'call', 'again', 'in', 'the', 'course', 'of', 'three', 'or', 'four', 'hours', ',', 'and', 'left', 'both', 'the', 'patient', 'and', 'her', 'anxious', 'attendant', 'more', 'composed', 'than', 'he', 'had', 'found', 'them', '.', 'With', 'strong', 'concern', ',', 'and', 'with', 'many', 'reproaches', 'for', 'not', 'being', 'called', 'to', 'their', 'aid', ',', 'did', 'Mrs.', 'Jennings', 'hear', 'in', 'the', 'morning', 'of', 'what', 'had', 'passed', '.', 'Her', 'former', 'apprehensions', ',', 'now', 'with', 'greater', 'reason', 'restored', ',', 'left', 'her', 'no', 'doubt', 'of', 'the', 'event', ';', 'and', 'though', 'trying', 'to', 'speak', 'comfort', 'to', 'Elinor', ',', 'her', 'conviction', 'of', 'her', 'sister', '’', 's', 'danger', 'would', 'not', 'allow', 'her', 'to', 'offer', 'the', 'comfort', 'of', 'hope', '.', 'Her', 'heart', 'was', 'really', 'grieved', '.', 'The', 'rapid', 'decay', ',', 'the', 'early', 'death', 'of', 'a', 'girl', 'so', 'young', ',', 'so', 'lovely', 'as', 'Marianne', ',', 'must', 'have', 'struck', 'a', 'less', 'interested', 'person', 'with', 'concern', '.', 'On', 'Mrs.', 'Jennings', '’', 's', 'compassion', 'she', 'had', 'other', 'claims', '.', 'She', 'had', 'been', 'for', 'three', 'months', 'her', 'companion', ',', 'was', 'still', 'under', 'her', 'care', ',', 'and', 'she', 'was', 'known', 'to', 'have', 'been', 'greatly', 'injured', ',', 'and', 'long', 'unhappy', '.', 'The', 'distress', 'of', 'her', 'sister', 'too', ',', 'particularly', 'a', 'favourite', ',', 'was', 'before', 'her', ';', '—and', 'as', 'for', 'their', 'mother', ',', 'when', 'Mrs.', 'Jennings', 'considered', 'that', 'Marianne', 'might', 'probably', 'be', 'to', '_her_', 'what', 'Charlotte', 'was', 'to', 'herself', ',', 'her', 'sympathy', 'in', '_her_', 'sufferings', 'was', 'very', 'sincere', '.', 'Mr.', 'Harris', 'was', 'punctual', 'in', 'his', 'second', 'visit', ';', '—but', 'he', 'came', 'to', 'be', 'disappointed', 'in', 'his', 'hopes', 'of', 'what', 'the', 'last', 'would', 'produce', '.', 'His', 'medicines', 'had', 'failed', ';', '—the', 'fever', 'was', 'unabated', ';', 'and', 'Marianne', 'only', 'more', 'quiet—not', 'more', 'herself—remained', 'in', 'a', 'heavy', 'stupor', '.', 'Elinor', ',', 'catching', 'all', ',', 'and', 'more', 'than', 'all', ',', 'his', 'fears', 'in', 'a', 'moment', ',', 'proposed', 'to', 'call', 'in', 'further', 'advice', '.', 'But', 'he', 'judged', 'it', 'unnecessary', ':', 'he', 'had', 'still', 'something', 'more', 'to', 'try', ',', 'some', 'more', 'fresh', 'application', ',', 'of', 'whose', 'success', 'he', 'was', 'as', 'confident', 'as', 'the', 'last', ',', 'and', 'his', 'visit', 'concluded', 'with', 'encouraging', 'assurances', 'which', 'reached', 'the', 'ear', ',', 'but', 'could', 'not', 'enter', 'the', 'heart', 'of', 'Miss', 'Dashwood', '.', 'She', 'was', 'calm', ',', 'except', 'when', 'she', 'thought', 'of', 'her', 'mother', ';', 'but', 'she', 'was', 'almost', 'hopeless', ';', 'and', 'in', 'this', 'state', 'she', 'continued', 'till', 'noon', ',', 'scarcely', 'stirring', 'from', 'her', 'sister', '’', 's', 'bed', ',', 'her', 'thoughts', 'wandering', 'from', 'one', 'image', 'of', 'grief', ',', 'one', 'suffering', 'friend', 'to', 'another', ',', 'and', 'her', 'spirits', 'oppressed', 'to', 'the', 'utmost', 'by', 'the', 'conversation', 'of', 'Mrs.', 'Jennings', ',', 'who', 'scrupled', 'not', 'to', 'attribute', 'the', 'severity', 'and', 'danger', 'of', 'this', 'attack', 'to', 'the', 'many', 'weeks', 'of', 'previous', 'indisposition', 'which', 'Marianne', '’', 's', 'disappointment', 'had', 'brought', 'on', '.', 'Elinor', 'felt', 'all', 'the', 'reasonableness', 'of', 'the', 'idea', ',', 'and', 'it', 'gave', 'fresh', 'misery', 'to', 'her', 'reflections', '.', 'About', 'noon', ',', 'however', ',', 'she', 'began—but', 'with', 'a', 'caution—a', 'dread', 'of', 'disappointment', 'which', 'for', 'some', 'time', 'kept', 'her', 'silent', ',', 'even', 'to', 'her', 'friend—to', 'fancy', ',', 'to', 'hope', 'she', 'could', 'perceive', 'a', 'slight', 'amendment', 'in', 'her', 'sister', '’', 's', 'pulse', ';', '—she', 'waited', ',', 'watched', ',', 'and', 'examined', 'it', 'again', 'and', 'again', ';', '—and', 'at', 'last', ',', 'with', 'an', 'agitation', 'more', 'difficult', 'to', 'bury', 'under', 'exterior', 'calmness', ',', 'than', 'all', 'her', 'foregoing', 'distress', ',', 'ventured', 'to', 'communicate', 'her', 'hopes', '.', 'Mrs.', 'Jennings', ',', 'though', 'forced', ',', 'on', 'examination', ',', 'to', 'acknowledge', 'a', 'temporary', 'revival', ',', 'tried', 'to', 'keep', 'her', 'young', 'friend', 'from', 'indulging', 'a', 'thought', 'of', 'its', 'continuance', ';', '—and', 'Elinor', ',', 'conning', 'over', 'every', 'injunction', 'of', 'distrust', ',', 'told', 'herself', 'likewise', 'not', 'to', 'hope', '.', 'But', 'it', 'was', 'too', 'late', '.', 'Hope', 'had', 'already', 'entered', ';', 'and', 'feeling', 'all', 'its', 'anxious', 'flutter', ',', 'she', 'bent', 'over', 'her', 'sister', 'to', 'watch—she', 'hardly', 'knew', 'for', 'what', '.', 'Half', 'an', 'hour', 'passed', 'away', ',', 'and', 'the', 'favourable', 'symptom', 'yet', 'blessed', 'her', '.', 'Others', 'even', 'arose', 'to', 'confirm', 'it', '.', 'Her', 'breath', ',', 'her', 'skin', ',', 'her', 'lips', ',', 'all', 'flattered', 'Elinor', 'with', 'signs', 'of', 'amendment', ';', 'and', 'Marianne', 'fixed', 'her', 'eyes', 'on', 'her', 'with', 'a', 'rational', ',', 'though', 'languid', ',', 'gaze', '.', 'Anxiety', 'and', 'hope', 'now', 'oppressed', 'her', 'in', 'equal', 'degrees', ',', 'and', 'left', 'her', 'no', 'moment', 'of', 'tranquillity', 'till', 'the', 'arrival', 'of', 'Mr.', 'Harris', 'at', 'four', 'o', '’', 'clock', ';', '—when', 'his', 'assurances', ',', 'his', 'felicitations', 'on', 'a', 'recovery', 'in', 'her', 'sister', 'even', 'surpassing', 'his', 'expectation', ',', 'gave', 'her', 'confidence', ',', 'comfort', ',', 'and', 'tears', 'of', 'joy', '.', 'Marianne', 'was', 'in', 'every', 'respect', 'materially', 'better', ',', 'and', 'he', 'declared', 'her', 'entirely', 'out', 'of', 'danger', '.', 'Mrs.', 'Jennings', ',', 'perhaps', 'satisfied', 'with', 'the', 'partial', 'justification', 'of', 'her', 'forebodings', 'which', 'had', 'been', 'found', 'in', 'their', 'late', 'alarm', ',', 'allowed', 'herself', 'to', 'trust', 'in', 'his', 'judgment', ',', 'and', 'admitted', ',', 'with', 'unfeigned', 'joy', ',', 'and', 'soon', 'with', 'unequivocal', 'cheerfulness', ',', 'the', 'probability', 'of', 'an', 'entire', 'recovery', '.', 'Elinor', 'could', 'not', 'be', 'cheerful', '.', 'Her', 'joy', 'was', 'of', 'a', 'different', 'kind', ',', 'and', 'led', 'to', 'any', 'thing', 'rather', 'than', 'to', 'gaiety', '.', 'Marianne', 'restored', 'to', 'life', ',', 'health', ',', 'friends', ',', 'and', 'to', 'her', 'doting', 'mother', ',', 'was', 'an', 'idea', 'to', 'fill', 'her', 'heart', 'with', 'sensations', 'of', 'exquisite', 'comfort', ',', 'and', 'expand', 'it', 'in', 'fervent', 'gratitude', ';', '—but', 'it', 'led', 'to', 'no', 'outward', 'demonstrations', 'of', 'joy', ',', 'no', 'words', ',', 'no', 'smiles', '.', 'All', 'within', 'Elinor', '’', 's', 'breast', 'was', 'satisfaction', ',', 'silent', 'and', 'strong', '.', 'She', 'continued', 'by', 'the', 'side', 'of', 'her', 'sister', ',', 'with', 'little', 'intermission', 'the', 'whole', 'afternoon', ',', 'calming', 'every', 'fear', ',', 'satisfying', 'every', 'inquiry', 'of', 'her', 'enfeebled', 'spirits', ',', 'supplying', 'every', 'succour', ',', 'and', 'watching', 'almost', 'every', 'look', 'and', 'every', 'breath', '.', 'The', 'possibility', 'of', 'a', 'relapse', 'would', 'of', 'course', ',', 'in', 'some', 'moments', ',', 'occur', 'to', 'remind', 'her', 'of', 'what', 'anxiety', 'was—but', 'when', 'she', 'saw', ',', 'on', 'her', 'frequent', 'and', 'minute', 'examination', ',', 'that', 'every', 'symptom', 'of', 'recovery', 'continued', ',', 'and', 'saw', 'Marianne', 'at', 'six', 'o', '’', 'clock', 'sink', 'into', 'a', 'quiet', ',', 'steady', ',', 'and', 'to', 'all', 'appearance', 'comfortable', ',', 'sleep', ',', 'she', 'silenced', 'every', 'doubt', '.', 'The', 'time', 'was', 'now', 'drawing', 'on', ',', 'when', 'Colonel', 'Brandon', 'might', 'be', 'expected', 'back', '.', 'At', 'ten', 'o', '’', 'clock', ',', 'she', 'trusted', ',', 'or', 'at', 'least', 'not', 'much', 'later', 'her', 'mother', 'would', 'be', 'relieved', 'from', 'the', 'dreadful', 'suspense', 'in', 'which', 'she', 'must', 'now', 'be', 'travelling', 'towards', 'them', '.', 'The', 'Colonel', ',', 'too', '!', '—perhaps', 'scarcely', 'less', 'an', 'object', 'of', 'pity', '!', '—Oh', '!', '—how', 'slow', 'was', 'the', 'progress', 'of', 'time', 'which', 'yet', 'kept', 'them', 'in', 'ignorance', '!', 'At', 'seven', 'o', '’', 'clock', ',', 'leaving', 'Marianne', 'still', 'sweetly', 'asleep', ',', 'she', 'joined', 'Mrs.', 'Jennings', 'in', 'the', 'drawing-room', 'to', 'tea', '.', 'Of', 'breakfast', 'she', 'had', 'been', 'kept', 'by', 'her', 'fears', ',', 'and', 'of', 'dinner', 'by', 'their', 'sudden', 'reverse', ',', 'from', 'eating', 'much', ';', '—and', 'the', 'present', 'refreshment', ',', 'therefore', ',', 'with', 'such', 'feelings', 'of', 'content', 'as', 'she', 'brought', 'to', 'it', ',', 'was', 'particularly', 'welcome', '.', 'Mrs.', 'Jennings', 'would', 'have', 'persuaded', 'her', ',', 'at', 'its', 'conclusion', ',', 'to', 'take', 'some', 'rest', 'before', 'her', 'mother', '’', 's', 'arrival', ',', 'and', 'allow', '_her_', 'to', 'take', 'her', 'place', 'by', 'Marianne', ';', 'but', 'Elinor', 'had', 'no', 'sense', 'of', 'fatigue', ',', 'no', 'capability', 'of', 'sleep', 'at', 'that', 'moment', 'about', 'her', ',', 'and', 'she', 'was', 'not', 'to', 'be', 'kept', 'away', 'from', 'her', 'sister', 'an', 'unnecessary', 'instant', '.', 'Mrs.', 'Jennings', 'therefore', 'attending', 'her', 'up', 'stairs', 'into', 'the', 'sick', 'chamber', ',', 'to', 'satisfy', 'herself', 'that', 'all', 'continued', 'right', ',', 'left', 'her', 'there', 'again', 'to', 'her', 'charge', 'and', 'her', 'thoughts', ',', 'and', 'retired', 'to', 'her', 'own', 'room', 'to', 'write', 'letters', 'and', 'sleep', '.', 'The', 'night', 'was', 'cold', 'and', 'stormy', '.', 'The', 'wind', 'roared', 'round', 'the', 'house', ',', 'and', 'the', 'rain', 'beat', 'against', 'the', 'windows', ';', 'but', 'Elinor', ',', 'all', 'happiness', 'within', ',', 'regarded', 'it', 'not', '.', 'Marianne', 'slept', 'through', 'every', 'blast', ';', 'and', 'the', 'travellers—they', 'had', 'a', 'rich', 'reward', 'in', 'store', ',', 'for', 'every', 'present', 'inconvenience', '.', 'The', 'clock', 'struck', 'eight', '.', 'Had', 'it', 'been', 'ten', ',', 'Elinor', 'would', 'have', 'been', 'convinced', 'that', 'at', 'that', 'moment', 'she', 'heard', 'a', 'carriage', 'driving', 'up', 'to', 'the', 'house', ';', 'and', 'so', 'strong', 'was', 'the', 'persuasion', 'that', 'she', '_did_', ',', 'in', 'spite', 'of', 'the', '_almost_', 'impossibility', 'of', 'their', 'being', 'already', 'come', ',', 'that', 'she', 'moved', 'into', 'the', 'adjoining', 'dressing-closet', 'and', 'opened', 'a', 'window', 'shutter', ',', 'to', 'be', 'satisfied', 'of', 'the', 'truth', '.', 'She', 'instantly', 'saw', 'that', 'her', 'ears', 'had', 'not', 'deceived', 'her', '.', 'The', 'flaring', 'lamps', 'of', 'a', 'carriage', 'were', 'immediately', 'in', 'view', '.', 'By', 'their', 'uncertain', 'light', 'she', 'thought', 'she', 'could', 'discern', 'it', 'to', 'be', 'drawn', 'by', 'four', 'horses', ';', 'and', 'this', ',', 'while', 'it', 'told', 'the', 'excess', 'of', 'her', 'poor', 'mother', '’', 's', 'alarm', ',', 'gave', 'some', 'explanation', 'to', 'such', 'unexpected', 'rapidity', '.', 'Never', 'in', 'her', 'life', 'had', 'Elinor', 'found', 'it', 'so', 'difficult', 'to', 'be', 'calm', ',', 'as', 'at', 'that', 'moment', '.', 'The', 'knowledge', 'of', 'what', 'her', 'mother', 'must', 'be', 'feeling', 'as', 'the', 'carriage', 'stopt', 'at', 'the', 'door—of', 'her', 'doubt—her', 'dread—perhaps', 'her', 'despair', '!', '—and', 'of', 'what', '_she_', 'had', 'to', 'tell', '!', '—with', 'such', 'knowledge', 'it', 'was', 'impossible', 'to', 'be', 'calm', '.', 'All', 'that', 'remained', 'to', 'be', 'done', 'was', 'to', 'be', 'speedy', ';', 'and', ',', 'therefore', 'staying', 'only', 'till', 'she', 'could', 'leave', 'Mrs.', 'Jennings', '’', 's', 'maid', 'with', 'her', 'sister', ',', 'she', 'hurried', 'down', 'stairs', '.', 'The', 'bustle', 'in', 'the', 'vestibule', ',', 'as', 'she', 'passed', 'along', 'an', 'inner', 'lobby', ',', 'assured', 'her', 'that', 'they', 'were', 'already', 'in', 'the', 'house', '.', 'She', 'rushed', 'to', 'the', 'drawing-room', ',', '—she', 'entered', 'it', ',', '—and', 'saw', 'only', 'Willoughby', '.', 'CHAPTER', 'XLIV', '.', 'Elinor', ',', 'starting', 'back', 'with', 'a', 'look', 'of', 'horror', 'at', 'the', 'sight', 'of', 'him', ',', 'obeyed', 'the', 'first', 'impulse', 'of', 'her', 'heart', 'in', 'turning', 'instantly', 'to', 'quit', 'the', 'room', ',', 'and', 'her', 'hand', 'was', 'already', 'on', 'the', 'lock', ',', 'when', 'its', 'action', 'was', 'suspended', 'by', 'his', 'hastily', 'advancing', ',', 'and', 'saying', ',', 'in', 'a', 'voice', 'rather', 'of', 'command', 'than', 'supplication', ',', '“', 'Miss', 'Dashwood', ',', 'for', 'half', 'an', 'hour—for', 'ten', 'minutes—I', 'entreat', 'you', 'to', 'stay.', '”', '“', 'No', ',', 'sir', ',', '”', 'she', 'replied', 'with', 'firmness', ',', '“', 'I', 'shall', '_not_', 'stay', '.', 'Your', 'business', 'can', 'not', 'be', 'with', '_me_', '.', 'The', 'servants', ',', 'I', 'suppose', ',', 'forgot', 'to', 'tell', 'you', 'that', 'Mr.', 'Palmer', 'was', 'not', 'in', 'the', 'house.', '”', '“', 'Had', 'they', 'told', 'me', ',', '”', 'he', 'cried', 'with', 'vehemence', ',', '“', 'that', 'Mr.', 'Palmer', 'and', 'all', 'his', 'relations', 'were', 'at', 'the', 'devil', ',', 'it', 'would', 'not', 'have', 'turned', 'me', 'from', 'the', 'door', '.', 'My', 'business', 'is', 'with', 'you', ',', 'and', 'only', 'you.', '”', '“', 'With', 'me', '!', '”', '—in', 'the', 'utmost', 'amazement—', '“', 'well', ',', 'sir', ',', '—be', 'quick—and', 'if', 'you', 'can—less', 'violent.', '”', '“', 'Sit', 'down', ',', 'and', 'I', 'will', 'be', 'both.', '”', 'She', 'hesitated', ';', 'she', 'knew', 'not', 'what', 'to', 'do', '.', 'The', 'possibility', 'of', 'Colonel', 'Brandon', '’', 's', 'arriving', 'and', 'finding', 'her', 'there', ',', 'came', 'across', 'her', '.', 'But', 'she', 'had', 'promised', 'to', 'hear', 'him', ',', 'and', 'her', 'curiosity', 'no', 'less', 'than', 'her', 'honor', 'was', 'engaged', '.', 'After', 'a', 'moment', '’', 's', 'recollection', ',', 'therefore', ',', 'concluding', 'that', 'prudence', 'required', 'dispatch', ',', 'and', 'that', 'her', 'acquiescence', 'would', 'best', 'promote', 'it', ',', 'she', 'walked', 'silently', 'towards', 'the', 'table', ',', 'and', 'sat', 'down', '.', 'He', 'took', 'the', 'opposite', 'chair', ',', 'and', 'for', 'half', 'a', 'minute', 'not', 'a', 'word', 'was', 'said', 'by', 'either', '.', '“', 'Pray', 'be', 'quick', ',', 'sir', ',', '”', '—said', 'Elinor', ',', 'impatiently', ';', '—', '“', 'I', 'have', 'no', 'time', 'to', 'spare.', '”', 'He', 'was', 'sitting', 'in', 'an', 'attitude', 'of', 'deep', 'meditation', ',', 'and', 'seemed', 'not', 'to', 'hear', 'her', '.', '“', 'Your', 'sister', ',', '”', 'said', 'he', ',', 'with', 'abruptness', ',', 'a', 'moment', 'afterwards—', '“', 'is', 'out', 'of', 'danger', '.', 'I', 'heard', 'it', 'from', 'the', 'servant', '.', 'God', 'be', 'praised', '!', '—But', 'is', 'it', 'true', '?', 'is', 'it', 'really', 'true', '?', '”', 'Elinor', 'would', 'not', 'speak', '.', 'He', 'repeated', 'the', 'inquiry', 'with', 'yet', 'greater', 'eagerness', '.', '“', 'For', 'God', '’', 's', 'sake', 'tell', 'me', ',', 'is', 'she', 'out', 'of', 'danger', ',', 'or', 'is', 'she', 'not', '?', '”', '“', 'We', 'hope', 'she', 'is.', '”', 'He', 'rose', 'up', ',', 'and', 'walked', 'across', 'the', 'room', '.', '“', 'Had', 'I', 'known', 'as', 'much', 'half', 'an', 'hour', 'ago', ';', '—but', 'since', 'I', '_am_', 'here', ',', '”', 'speaking', 'with', 'a', 'forced', 'vivacity', 'as', 'he', 'returned', 'to', 'his', 'seat', ',', '—', '“', 'what', 'does', 'it', 'signify', '?', 'For', 'once', ',', 'Miss', 'Dashwood—it', 'will', 'be', 'the', 'last', 'time', ',', 'perhaps—let', 'us', 'be', 'cheerful', 'together', '.', 'I', 'am', 'in', 'a', 'fine', 'mood', 'for', 'gaiety', '.', 'Tell', 'me', 'honestly', '”', 'a', 'deeper', 'glow', 'overspreading', 'his', 'cheeks', ',', '“', 'do', 'you', 'think', 'me', 'most', 'a', 'knave', 'or', 'a', 'fool', '?', '”', 'Elinor', 'looked', 'at', 'him', 'with', 'greater', 'astonishment', 'than', 'ever', '.', 'She', 'began', 'to', 'think', 'that', 'he', 'must', 'be', 'in', 'liquor', ';', '—the', 'strangeness', 'of', 'such', 'a', 'visit', ',', 'and', 'of', 'such', 'manners', ',', 'seemed', 'no', 'otherwise', 'intelligible', ';', 'and', 'with', 'this', 'impression', 'she', 'immediately', 'rose', ',', 'saying', ',', '“', 'Mr', '.', 'Willoughby', ',', 'I', 'advise', 'you', 'at', 'present', 'to', 'return', 'to', 'Combe', '.', 'I', 'am', 'not', 'at', 'leisure', 'to', 'remain', 'with', 'you', 'longer', '.', 'Whatever', 'your', 'business', 'may', 'be', 'with', 'me', ',', 'it', 'will', 'be', 'better', 'recollected', 'and', 'explained', 'to-morrow.', '”', '“', 'I', 'understand', 'you', ',', '”', 'he', 'replied', ',', 'with', 'an', 'expressive', 'smile', ',', 'and', 'a', 'voice', 'perfectly', 'calm', ';', '“', 'yes', ',', 'I', 'am', 'very', 'drunk', '.', 'A', 'pint', 'of', 'porter', 'with', 'my', 'cold', 'beef', 'at', 'Marlborough', 'was', 'enough', 'to', 'over-set', 'me.', '”', '“', 'At', 'Marlborough', '!', '”', '—cried', 'Elinor', ',', 'more', 'and', 'more', 'at', 'a', 'loss', 'to', 'understand', 'what', 'he', 'would', 'be', 'at', '.', '“', 'Yes', ',', '—I', 'left', 'London', 'this', 'morning', 'at', 'eight', 'o', '’', 'clock', ',', 'and', 'the', 'only', 'ten', 'minutes', 'I', 'have', 'spent', 'out', 'of', 'my', 'chaise', 'since', 'that', 'time', 'procured', 'me', 'a', 'nuncheon', 'at', 'Marlborough.', '”', 'The', 'steadiness', 'of', 'his', 'manner', ',', 'and', 'the', 'intelligence', 'of', 'his', 'eye', 'as', 'he', 'spoke', ',', 'convincing', 'Elinor', ',', 'that', 'whatever', 'other', 'unpardonable', 'folly', 'might', 'bring', 'him', 'to', 'Cleveland', ',', 'he', 'was', 'not', 'brought', 'there', 'by', 'intoxication', ',', 'she', 'said', ',', 'after', 'a', 'moment', '’', 's', 'recollection', ',', '“', 'Mr', '.', 'Willoughby', ',', 'you', '_ought_', 'to', 'feel', ',', 'and', 'I', 'certainly', '_do_', ',', 'that', 'after', 'what', 'has', 'passed', ',', 'your', 'coming', 'here', 'in', 'this', 'manner', ',', 'and', 'forcing', 'yourself', 'upon', 'my', 'notice', ',', 'requires', 'a', 'very', 'particular', 'excuse', '.', 'What', 'is', 'it', ',', 'that', 'you', 'mean', 'by', 'it', '?', '”', '“', 'I', 'mean', ',', '”', 'said', 'he', ',', 'with', 'serious', 'energy', ',', '“', 'if', 'I', 'can', ',', 'to', 'make', 'you', 'hate', 'me', 'one', 'degree', 'less', 'than', 'you', 'do', '_now_', '.', 'I', 'mean', 'to', 'offer', 'some', 'kind', 'of', 'explanation', ',', 'some', 'kind', 'of', 'apology', ',', 'for', 'the', 'past', ';', 'to', 'open', 'my', 'whole', 'heart', 'to', 'you', ',', 'and', 'by', 'convincing', 'you', ',', 'that', 'though', 'I', 'have', 'been', 'always', 'a', 'blockhead', ',', 'I', 'have', 'not', 'been', 'always', 'a', 'rascal', ',', 'to', 'obtain', 'something', 'like', 'forgiveness', 'from', 'Ma—', 'from', 'your', 'sister.', '”', '“', 'Is', 'this', 'the', 'real', 'reason', 'of', 'your', 'coming', '?', '”', '“', 'Upon', 'my', 'soul', 'it', 'is', ',', '”', '—was', 'his', 'answer', ',', 'with', 'a', 'warmth', 'which', 'brought', 'all', 'the', 'former', 'Willoughby', 'to', 'her', 'remembrance', ',', 'and', 'in', 'spite', 'of', 'herself', 'made', 'her', 'think', 'him', 'sincere', '.', '“', 'If', 'that', 'is', 'all', ',', 'you', 'may', 'be', 'satisfied', 'already', ';', 'for', 'Marianne', '_does_', ',', 'she', 'has', '_long_', 'forgiven', 'you.', '”', '“', 'Has', 'she', '?', '”', 'he', 'cried', ',', 'in', 'the', 'same', 'eager', 'tone', '.', '“', 'Then', 'she', 'has', 'forgiven', 'me', 'before', 'she', 'ought', 'to', 'have', 'done', 'it', '.', 'But', 'she', 'shall', 'forgive', 'me', 'again', ',', 'and', 'on', 'more', 'reasonable', 'grounds', '.', '_Now_', 'will', 'you', 'listen', 'to', 'me', '?', '”', 'Elinor', 'bowed', 'her', 'assent', '.', '“', 'I', 'do', 'not', 'know', ',', '”', 'said', 'he', ',', 'after', 'a', 'pause', 'of', 'expectation', 'on', 'her', 'side', ',', 'and', 'thoughtfulness', 'on', 'his', 'own', ',', '“', 'how', '_you_', 'may', 'have', 'accounted', 'for', 'my', 'behaviour', 'to', 'your', 'sister', ',', 'or', 'what', 'diabolical', 'motive', 'you', 'may', 'have', 'imputed', 'to', 'me', '.', 'Perhaps', 'you', 'will', 'hardly', 'think', 'the', 'better', 'of', 'me', ',', '—it', 'is', 'worth', 'the', 'trial', 'however', ',', 'and', 'you', 'shall', 'hear', 'every', 'thing', '.', 'When', 'I', 'first', 'became', 'intimate', 'in', 'your', 'family', ',', 'I', 'had', 'no', 'other', 'intention', ',', 'no', 'other', 'view', 'in', 'the', 'acquaintance', 'than', 'to', 'pass', 'my', 'time', 'pleasantly', 'while', 'I', 'was', 'obliged', 'to', 'remain', 'in', 'Devonshire', ',', 'more', 'pleasantly', 'than', 'I', 'had', 'ever', 'done', 'before', '.', 'Your', 'sister', '’', 's', 'lovely', 'person', 'and', 'interesting', 'manners', 'could', 'not', 'but', 'please', 'me', ';', 'and', 'her', 'behaviour', 'to', 'me', 'almost', 'from', 'the', 'first', ',', 'was', 'of', 'a', 'kind—it', 'is', 'astonishing', ',', 'when', 'I', 'reflect', 'on', 'what', 'it', 'was', ',', 'and', 'what', '_she_', 'was', ',', 'that', 'my', 'heart', 'should', 'have', 'been', 'so', 'insensible', '!', 'But', 'at', 'first', 'I', 'must', 'confess', ',', 'my', 'vanity', 'only', 'was', 'elevated', 'by', 'it', '.', 'Careless', 'of', 'her', 'happiness', ',', 'thinking', 'only', 'of', 'my', 'own', 'amusement', ',', 'giving', 'way', 'to', 'feelings', 'which', 'I', 'had', 'always', 'been', 'too', 'much', 'in', 'the', 'habit', 'of', 'indulging', ',', 'I', 'endeavoured', ',', 'by', 'every', 'means', 'in', 'my', 'power', ',', 'to', 'make', 'myself', 'pleasing', 'to', 'her', ',', 'without', 'any', 'design', 'of', 'returning', 'her', 'affection.', '”', 'Miss', 'Dashwood', ',', 'at', 'this', 'point', ',', 'turning', 'her', 'eyes', 'on', 'him', 'with', 'the', 'most', 'angry', 'contempt', ',', 'stopped', 'him', ',', 'by', 'saying', ',', '“', 'It', 'is', 'hardly', 'worth', 'while', ',', 'Mr.', 'Willoughby', ',', 'for', 'you', 'to', 'relate', ',', 'or', 'for', 'me', 'to', 'listen', 'any', 'longer', '.', 'Such', 'a', 'beginning', 'as', 'this', 'can', 'not', 'be', 'followed', 'by', 'any', 'thing', '.', 'Do', 'not', 'let', 'me', 'be', 'pained', 'by', 'hearing', 'any', 'thing', 'more', 'on', 'the', 'subject.', '”', '“', 'I', 'insist', 'on', 'you', 'hearing', 'the', 'whole', 'of', 'it', ',', '”', 'he', 'replied', ',', '“', 'My', 'fortune', 'was', 'never', 'large', ',', 'and', 'I', 'had', 'always', 'been', 'expensive', ',', 'always', 'in', 'the', 'habit', 'of', 'associating', 'with', 'people', 'of', 'better', 'income', 'than', 'myself', '.', 'Every', 'year', 'since', 'my', 'coming', 'of', 'age', ',', 'or', 'even', 'before', ',', 'I', 'believe', ',', 'had', 'added', 'to', 'my', 'debts', ';', 'and', 'though', 'the', 'death', 'of', 'my', 'old', 'cousin', ',', 'Mrs.', 'Smith', ',', 'was', 'to', 'set', 'me', 'free', ';', 'yet', 'that', 'event', 'being', 'uncertain', ',', 'and', 'possibly', 'far', 'distant', ',', 'it', 'had', 'been', 'for', 'some', 'time', 'my', 'intention', 'to', 're-establish', 'my', 'circumstances', 'by', 'marrying', 'a', 'woman', 'of', 'fortune', '.', 'To', 'attach', 'myself', 'to', 'your', 'sister', ',', 'therefore', ',', 'was', 'not', 'a', 'thing', 'to', 'be', 'thought', 'of', ';', 'and', 'with', 'a', 'meanness', ',', 'selfishness', ',', 'cruelty', ',', 'which', 'no', 'indignant', ',', 'no', 'contemptuous', 'look', ',', 'even', 'of', 'yours', ',', 'Miss', 'Dashwood', ',', 'can', 'ever', 'reprobate', 'too', 'much', ',', '—I', 'was', 'acting', 'in', 'this', 'manner', ',', 'trying', 'to', 'engage', 'her', 'regard', ',', 'without', 'a', 'thought', 'of', 'returning', 'it', '.', 'But', 'one', 'thing', 'may', 'be', 'said', 'for', 'me', ':', 'even', 'in', 'that', 'horrid', 'state', 'of', 'selfish', 'vanity', ',', 'I', 'did', 'not', 'know', 'the', 'extent', 'of', 'the', 'injury', 'I', 'meditated', ',', 'because', 'I', 'did', 'not', '_then_', 'know', 'what', 'it', 'was', 'to', 'love', '.', 'But', 'have', 'I', 'ever', 'known', 'it', '?', 'Well', 'may', 'it', 'be', 'doubted', ';', 'for', ',', 'had', 'I', 'really', 'loved', ',', 'could', 'I', 'have', 'sacrificed', 'my', 'feelings', 'to', 'vanity', ',', 'to', 'avarice', '?', 'or', ',', 'what', 'is', 'more', ',', 'could', 'I', 'have', 'sacrificed', 'hers', '?', 'But', 'I', 'have', 'done', 'it', '.', 'To', 'avoid', 'a', 'comparative', 'poverty', ',', 'which', 'her', 'affection', 'and', 'her', 'society', 'would', 'have', 'deprived', 'of', 'all', 'its', 'horrors', ',', 'I', 'have', ',', 'by', 'raising', 'myself', 'to', 'affluence', ',', 'lost', 'every', 'thing', 'that', 'could', 'make', 'it', 'a', 'blessing.', '”', '“', 'You', 'did', 'then', ',', '”', 'said', 'Elinor', ',', 'a', 'little', 'softened', ',', '“', 'believe', 'yourself', 'at', 'one', 'time', 'attached', 'to', 'her', '?', '”', '“', 'To', 'have', 'resisted', 'such', 'attractions', ',', 'to', 'have', 'withstood', 'such', 'tenderness', '!', 'Is', 'there', 'a', 'man', 'on', 'earth', 'who', 'could', 'have', 'done', 'it', '?', 'Yes', ',', 'I', 'found', 'myself', ',', 'by', 'insensible', 'degrees', ',', 'sincerely', 'fond', 'of', 'her', ';', 'and', 'the', 'happiest', 'hours', 'of', 'my', 'life', 'were', 'what', 'I', 'spent', 'with', 'her', 'when', 'I', 'felt', 'my', 'intentions', 'were', 'strictly', 'honourable', ',', 'and', 'my', 'feelings', 'blameless', '.', 'Even', '_then_', ',', 'however', ',', 'when', 'fully', 'determined', 'on', 'paying', 'my', 'addresses', 'to', 'her', ',', 'I', 'allowed', 'myself', 'most', 'improperly', 'to', 'put', 'off', ',', 'from', 'day', 'to', 'day', ',', 'the', 'moment', 'of', 'doing', 'it', ',', 'from', 'an', 'unwillingness', 'to', 'enter', 'into', 'an', 'engagement', 'while', 'my', 'circumstances', 'were', 'so', 'greatly', 'embarrassed', '.', 'I', 'will', 'not', 'reason', 'here—nor', 'will', 'I', 'stop', 'for', '_you_', 'to', 'expatiate', 'on', 'the', 'absurdity', ',', 'and', 'the', 'worse', 'than', 'absurdity', ',', 'of', 'scrupling', 'to', 'engage', 'my', 'faith', 'where', 'my', 'honour', 'was', 'already', 'bound', '.', 'The', 'event', 'has', 'proved', ',', 'that', 'I', 'was', 'a', 'cunning', 'fool', ',', 'providing', 'with', 'great', 'circumspection', 'for', 'a', 'possible', 'opportunity', 'of', 'making', 'myself', 'contemptible', 'and', 'wretched', 'for', 'ever', '.', 'At', 'last', ',', 'however', ',', 'my', 'resolution', 'was', 'taken', ',', 'and', 'I', 'had', 'determined', ',', 'as', 'soon', 'as', 'I', 'could', 'engage', 'her', 'alone', ',', 'to', 'justify', 'the', 'attentions', 'I', 'had', 'so', 'invariably', 'paid', 'her', ',', 'and', 'openly', 'assure', 'her', 'of', 'an', 'affection', 'which', 'I', 'had', 'already', 'taken', 'such', 'pains', 'to', 'display', '.', 'But', 'in', 'the', 'interim—in', 'the', 'interim', 'of', 'the', 'very', 'few', 'hours', 'that', 'were', 'to', 'pass', ',', 'before', 'I', 'could', 'have', 'an', 'opportunity', 'of', 'speaking', 'with', 'her', 'in', 'private—a', 'circumstance', 'occurred—an', 'unlucky', 'circumstance', ',', 'to', 'ruin', 'all', 'my', 'resolution', ',', 'and', 'with', 'it', 'all', 'my', 'comfort', '.', 'A', 'discovery', 'took', 'place', ',', '”', '—here', 'he', 'hesitated', 'and', 'looked', 'down', '.', '“', 'Mrs', '.', 'Smith', 'had', 'somehow', 'or', 'other', 'been', 'informed', ',', 'I', 'imagine', 'by', 'some', 'distant', 'relation', ',', 'whose', 'interest', 'it', 'was', 'to', 'deprive', 'me', 'of', 'her', 'favour', ',', 'of', 'an', 'affair', ',', 'a', 'connection—but', 'I', 'need', 'not', 'explain', 'myself', 'farther', ',', '”', 'he', 'added', ',', 'looking', 'at', 'her', 'with', 'an', 'heightened', 'colour', 'and', 'an', 'enquiring', 'eye', ',', '—', '“', 'your', 'particular', 'intimacy—you', 'have', 'probably', 'heard', 'the', 'whole', 'story', 'long', 'ago.', '”', '“', 'I', 'have', ',', '”', 'returned', 'Elinor', ',', 'colouring', 'likewise', ',', 'and', 'hardening', 'her', 'heart', 'anew', 'against', 'any', 'compassion', 'for', 'him', ',', '“', 'I', 'have', 'heard', 'it', 'all', '.', 'And', 'how', 'you', 'will', 'explain', 'away', 'any', 'part', 'of', 'your', 'guilt', 'in', 'that', 'dreadful', 'business', ',', 'I', 'confess', 'is', 'beyond', 'my', 'comprehension.', '”', '“', 'Remember', ',', '”', 'cried', 'Willoughby', ',', '“', 'from', 'whom', 'you', 'received', 'the', 'account', '.', 'Could', 'it', 'be', 'an', 'impartial', 'one', '?', 'I', 'acknowledge', 'that', 'her', 'situation', 'and', 'her', 'character', 'ought', 'to', 'have', 'been', 'respected', 'by', 'me', '.', 'I', 'do', 'not', 'mean', 'to', 'justify', 'myself', ',', 'but', 'at', 'the', 'same', 'time', 'can', 'not', 'leave', 'you', 'to', 'suppose', 'that', 'I', 'have', 'nothing', 'to', 'urge—that', 'because', 'she', 'was', 'injured', 'she', 'was', 'irreproachable', ',', 'and', 'because', '_I_', 'was', 'a', 'libertine', ',', '_she_', 'must', 'be', 'a', 'saint', '.', 'If', 'the', 'violence', 'of', 'her', 'passions', ',', 'the', 'weakness', 'of', 'her', 'understanding—I', 'do', 'not', 'mean', ',', 'however', ',', 'to', 'defend', 'myself', '.', 'Her', 'affection', 'for', 'me', 'deserved', 'better', 'treatment', ',', 'and', 'I', 'often', ',', 'with', 'great', 'self-reproach', ',', 'recall', 'the', 'tenderness', 'which', ',', 'for', 'a', 'very', 'short', 'time', ',', 'had', 'the', 'power', 'of', 'creating', 'any', 'return', '.', 'I', 'wish—I', 'heartily', 'wish', 'it', 'had', 'never', 'been', '.', 'But', 'I', 'have', 'injured', 'more', 'than', 'herself', ';', 'and', 'I', 'have', 'injured', 'one', ',', 'whose', 'affection', 'for', 'me', '(', 'may', 'I', 'say', 'it', '?', ')', 'was', 'scarcely', 'less', 'warm', 'than', 'hers', ';', 'and', 'whose', 'mind—Oh', '!', 'how', 'infinitely', 'superior', '!', '”', '“', 'Your', 'indifference', ',', 'however', ',', 'towards', 'that', 'unfortunate', 'girl—I', 'must', 'say', 'it', ',', 'unpleasant', 'to', 'me', 'as', 'the', 'discussion', 'of', 'such', 'a', 'subject', 'may', 'well', 'be—your', 'indifference', 'is', 'no', 'apology', 'for', 'your', 'cruel', 'neglect', 'of', 'her', '.', 'Do', 'not', 'think', 'yourself', 'excused', 'by', 'any', 'weakness', ',', 'any', 'natural', 'defect', 'of', 'understanding', 'on', 'her', 'side', ',', 'in', 'the', 'wanton', 'cruelty', 'so', 'evident', 'on', 'yours', '.', 'You', 'must', 'have', 'known', ',', 'that', 'while', 'you', 'were', 'enjoying', 'yourself', 'in', 'Devonshire', 'pursuing', 'fresh', 'schemes', ',', 'always', 'gay', ',', 'always', 'happy', ',', 'she', 'was', 'reduced', 'to', 'the', 'extremest', 'indigence.', '”', '“', 'But', ',', 'upon', 'my', 'soul', ',', 'I', 'did', '_not_', 'know', 'it', ',', '”', 'he', 'warmly', 'replied', ';', '“', 'I', 'did', 'not', 'recollect', 'that', 'I', 'had', 'omitted', 'to', 'give', 'her', 'my', 'direction', ';', 'and', 'common', 'sense', 'might', 'have', 'told', 'her', 'how', 'to', 'find', 'it', 'out.', '”', '“', 'Well', ',', 'sir', ',', 'and', 'what', 'said', 'Mrs.', 'Smith', '?', '”', '“', 'She', 'taxed', 'me', 'with', 'the', 'offence', 'at', 'once', ',', 'and', 'my', 'confusion', 'may', 'be', 'guessed', '.', 'The', 'purity', 'of', 'her', 'life', ',', 'the', 'formality', 'of', 'her', 'notions', ',', 'her', 'ignorance', 'of', 'the', 'world—every', 'thing', 'was', 'against', 'me', '.', 'The', 'matter', 'itself', 'I', 'could', 'not', 'deny', ',', 'and', 'vain', 'was', 'every', 'endeavour', 'to', 'soften', 'it', '.', 'She', 'was', 'previously', 'disposed', ',', 'I', 'believe', ',', 'to', 'doubt', 'the', 'morality', 'of', 'my', 'conduct', 'in', 'general', ',', 'and', 'was', 'moreover', 'discontented', 'with', 'the', 'very', 'little', 'attention', ',', 'the', 'very', 'little', 'portion', 'of', 'my', 'time', 'that', 'I', 'had', 'bestowed', 'on', 'her', ',', 'in', 'my', 'present', 'visit', '.', 'In', 'short', ',', 'it', 'ended', 'in', 'a', 'total', 'breach', '.', 'By', 'one', 'measure', 'I', 'might', 'have', 'saved', 'myself', '.', 'In', 'the', 'height', 'of', 'her', 'morality', ',', 'good', 'woman', '!', 'she', 'offered', 'to', 'forgive', 'the', 'past', ',', 'if', 'I', 'would', 'marry', 'Eliza', '.', 'That', 'could', 'not', 'be—and', 'I', 'was', 'formally', 'dismissed', 'from', 'her', 'favour', 'and', 'her', 'house', '.', 'The', 'night', 'following', 'this', 'affair—I', 'was', 'to', 'go', 'the', 'next', 'morning—was', 'spent', 'by', 'me', 'in', 'deliberating', 'on', 'what', 'my', 'future', 'conduct', 'should', 'be', '.', 'The', 'struggle', 'was', 'great—but', 'it', 'ended', 'too', 'soon', '.', 'My', 'affection', 'for', 'Marianne', ',', 'my', 'thorough', 'conviction', 'of', 'her', 'attachment', 'to', 'me—it', 'was', 'all', 'insufficient', 'to', 'outweigh', 'that', 'dread', 'of', 'poverty', ',', 'or', 'get', 'the', 'better', 'of', 'those', 'false', 'ideas', 'of', 'the', 'necessity', 'of', 'riches', ',', 'which', 'I', 'was', 'naturally', 'inclined', 'to', 'feel', ',', 'and', 'expensive', 'society', 'had', 'increased', '.', 'I', 'had', 'reason', 'to', 'believe', 'myself', 'secure', 'of', 'my', 'present', 'wife', ',', 'if', 'I', 'chose', 'to', 'address', 'her', ',', 'and', 'I', 'persuaded', 'myself', 'to', 'think', 'that', 'nothing', 'else', 'in', 'common', 'prudence', 'remained', 'for', 'me', 'to', 'do', '.', 'A', 'heavy', 'scene', 'however', 'awaited', 'me', ',', 'before', 'I', 'could', 'leave', 'Devonshire', ';', '—I', 'was', 'engaged', 'to', 'dine', 'with', 'you', 'on', 'that', 'very', 'day', ';', 'some', 'apology', 'was', 'therefore', 'necessary', 'for', 'my', 'breaking', 'this', 'engagement', '.', 'But', 'whether', 'I', 'should', 'write', 'this', 'apology', ',', 'or', 'deliver', 'it', 'in', 'person', ',', 'was', 'a', 'point', 'of', 'long', 'debate', '.', 'To', 'see', 'Marianne', ',', 'I', 'felt', ',', 'would', 'be', 'dreadful', ',', 'and', 'I', 'even', 'doubted', 'whether', 'I', 'could', 'see', 'her', 'again', ',', 'and', 'keep', 'to', 'my', 'resolution', '.', 'In', 'that', 'point', ',', 'however', ',', 'I', 'undervalued', 'my', 'own', 'magnanimity', ',', 'as', 'the', 'event', 'declared', ';', 'for', 'I', 'went', ',', 'I', 'saw', 'her', ',', 'and', 'saw', 'her', 'miserable', ',', 'and', 'left', 'her', 'miserable—and', 'left', 'her', 'hoping', 'never', 'to', 'see', 'her', 'again.', '”', '“', 'Why', 'did', 'you', 'call', ',', 'Mr.', 'Willoughby', '?', '”', 'said', 'Elinor', ',', 'reproachfully', ';', '“', 'a', 'note', 'would', 'have', 'answered', 'every', 'purpose', '.', 'Why', 'was', 'it', 'necessary', 'to', 'call', '?', '”', '“', 'It', 'was', 'necessary', 'to', 'my', 'own', 'pride', '.', 'I', 'could', 'not', 'bear', 'to', 'leave', 'the', 'country', 'in', 'a', 'manner', 'that', 'might', 'lead', 'you', ',', 'or', 'the', 'rest', 'of', 'the', 'neighbourhood', ',', 'to', 'suspect', 'any', 'part', 'of', 'what', 'had', 'really', 'passed', 'between', 'Mrs.', 'Smith', 'and', 'myself—and', 'I', 'resolved', 'therefore', 'on', 'calling', 'at', 'the', 'cottage', ',', 'in', 'my', 'way', 'to', 'Honiton', '.', 'The', 'sight', 'of', 'your', 'dear', 'sister', ',', 'however', ',', 'was', 'really', 'dreadful', ';', 'and', ',', 'to', 'heighten', 'the', 'matter', ',', 'I', 'found', 'her', 'alone', '.', 'You', 'were', 'all', 'gone', 'I', 'do', 'not', 'know', 'where', '.', 'I', 'had', 'left', 'her', 'only', 'the', 'evening', 'before', ',', 'so', 'fully', ',', 'so', 'firmly', 'resolved', 'within', 'my', 'self', 'on', 'doing', 'right', '!', 'A', 'few', 'hours', 'were', 'to', 'have', 'engaged', 'her', 'to', 'me', 'for', 'ever', ';', 'and', 'I', 'remember', 'how', 'happy', ',', 'how', 'gay', 'were', 'my', 'spirits', ',', 'as', 'I', 'walked', 'from', 'the', 'cottage', 'to', 'Allenham', ',', 'satisfied', 'with', 'myself', ',', 'delighted', 'with', 'every', 'body', '!', 'But', 'in', 'this', ',', 'our', 'last', 'interview', 'of', 'friendship', ',', 'I', 'approached', 'her', 'with', 'a', 'sense', 'of', 'guilt', 'that', 'almost', 'took', 'from', 'me', 'the', 'power', 'of', 'dissembling', '.', 'Her', 'sorrow', ',', 'her', 'disappointment', ',', 'her', 'deep', 'regret', ',', 'when', 'I', 'told', 'her', 'that', 'I', 'was', 'obliged', 'to', 'leave', 'Devonshire', 'so', 'immediately—I', 'never', 'shall', 'forget', 'it—united', 'too', 'with', 'such', 'reliance', ',', 'such', 'confidence', 'in', 'me', '!', '—Oh', ',', 'God', '!', '—what', 'a', 'hard-hearted', 'rascal', 'I', 'was', '!', '”', 'They', 'were', 'both', 'silent', 'for', 'a', 'few', 'moments', '.', 'Elinor', 'first', 'spoke', '.', '“', 'Did', 'you', 'tell', 'her', 'that', 'you', 'should', 'soon', 'return', '?', '”', '“', 'I', 'do', 'not', 'know', 'what', 'I', 'told', 'her', ',', '”', 'he', 'replied', ',', 'impatiently', ';', '“', 'less', 'than', 'was', 'due', 'to', 'the', 'past', ',', 'beyond', 'a', 'doubt', ',', 'and', 'in', 'all', 'likelihood', 'much', 'more', 'than', 'was', 'justified', 'by', 'the', 'future', '.', 'I', 'can', 'not', 'think', 'of', 'it.—It', 'won', '’', 't', 'do.—Then', 'came', 'your', 'dear', 'mother', 'to', 'torture', 'me', 'farther', ',', 'with', 'all', 'her', 'kindness', 'and', 'confidence', '.', 'Thank', 'Heaven', '!', 'it', '_did_', 'torture', 'me', '.', 'I', 'was', 'miserable', '.', 'Miss', 'Dashwood', ',', 'you', 'can', 'not', 'have', 'an', 'idea', 'of', 'the', 'comfort', 'it', 'gives', 'me', 'to', 'look', 'back', 'on', 'my', 'own', 'misery', '.', 'I', 'owe', 'such', 'a', 'grudge', 'to', 'myself', 'for', 'the', 'stupid', ',', 'rascally', 'folly', 'of', 'my', 'own', 'heart', ',', 'that', 'all', 'my', 'past', 'sufferings', 'under', 'it', 'are', 'only', 'triumph', 'and', 'exultation', 'to', 'me', 'now', '.', 'Well', ',', 'I', 'went', ',', 'left', 'all', 'that', 'I', 'loved', ',', 'and', 'went', 'to', 'those', 'to', 'whom', ',', 'at', 'best', ',', 'I', 'was', 'only', 'indifferent', '.', 'My', 'journey', 'to', 'town—travelling', 'with', 'my', 'own', 'horses', ',', 'and', 'therefore', 'so', 'tediously—no', 'creature', 'to', 'speak', 'to—my', 'own', 'reflections', 'so', 'cheerful—when', 'I', 'looked', 'forward', 'every', 'thing', 'so', 'inviting', '!', '—when', 'I', 'looked', 'back', 'at', 'Barton', ',', 'the', 'picture', 'so', 'soothing', '!', '—oh', ',', 'it', 'was', 'a', 'blessed', 'journey', '!', '”', 'He', 'stopped', '.', '“', 'Well', ',', 'sir', ',', '”', 'said', 'Elinor', ',', 'who', ',', 'though', 'pitying', 'him', ',', 'grew', 'impatient', 'for', 'his', 'departure', ',', '“', 'and', 'this', 'is', 'all', '?', '”', '“', 'All', '!', '—no', ':', '—have', 'you', 'forgot', 'what', 'passed', 'in', 'town', '?', 'That', 'infamous', 'letter', '?', 'Did', 'she', 'show', 'it', 'you', '?', '”', '“', 'Yes', ',', 'I', 'saw', 'every', 'note', 'that', 'passed.', '”', '“', 'When', 'the', 'first', 'of', 'hers', 'reached', 'me', '(', 'as', 'it', 'immediately', 'did', ',', 'for', 'I', 'was', 'in', 'town', 'the', 'whole', 'time', ',', ')', 'what', 'I', 'felt', 'is—in', 'the', 'common', 'phrase', ',', 'not', 'to', 'be', 'expressed', ';', 'in', 'a', 'more', 'simple', 'one—perhaps', 'too', 'simple', 'to', 'raise', 'any', 'emotion—my', 'feelings', 'were', 'very', ',', 'very', 'painful.—Every', 'line', ',', 'every', 'word', 'was—in', 'the', 'hackneyed', 'metaphor', 'which', 'their', 'dear', 'writer', ',', 'were', 'she', 'here', ',', 'would', 'forbid—a', 'dagger', 'to', 'my', 'heart', '.', 'To', 'know', 'that', 'Marianne', 'was', 'in', 'town', 'was—in', 'the', 'same', 'language—a', 'thunderbolt.—Thunderbolts', 'and', 'daggers', '!', '—what', 'a', 'reproof', 'would', 'she', 'have', 'given', 'me', '!', '—her', 'taste', ',', 'her', 'opinions—I', 'believe', 'they', 'are', 'better', 'known', 'to', 'me', 'than', 'my', 'own', ',', '—and', 'I', 'am', 'sure', 'they', 'are', 'dearer.', '”', 'Elinor', '’', 's', 'heart', ',', 'which', 'had', 'undergone', 'many', 'changes', 'in', 'the', 'course', 'of', 'this', 'extraordinary', 'conversation', ',', 'was', 'now', 'softened', 'again', ';', '—yet', 'she', 'felt', 'it', 'her', 'duty', 'to', 'check', 'such', 'ideas', 'in', 'her', 'companion', 'as', 'the', 'last', '.', '“', 'This', 'is', 'not', 'right', ',', 'Mr.', 'Willoughby.—Remember', 'that', 'you', 'are', 'married', '.', 'Relate', 'only', 'what', 'in', 'your', 'conscience', 'you', 'think', 'necessary', 'for', 'me', 'to', 'hear.', '”', '“', 'Marianne', '’', 's', 'note', ',', 'by', 'assuring', 'me', 'that', 'I', 'was', 'still', 'as', 'dear', 'to', 'her', 'as', 'in', 'former', 'days', ',', '—that', 'in', 'spite', 'of', 'the', 'many', ',', 'many', 'weeks', 'we', 'had', 'been', 'separated', ',', 'she', 'was', 'as', 'constant', 'in', 'her', 'own', 'feelings', ',', 'and', 'as', 'full', 'of', 'faith', 'in', 'the', 'constancy', 'of', 'mine', 'as', 'ever', ',', '—awakened', 'all', 'my', 'remorse', '.', 'I', 'say', 'awakened', ',', 'because', 'time', 'and', 'London', ',', 'business', 'and', 'dissipation', ',', 'had', 'in', 'some', 'measure', 'quieted', 'it', ',', 'and', 'I', 'had', 'been', 'growing', 'a', 'fine', 'hardened', 'villain', ',', 'fancying', 'myself', 'indifferent', 'to', 'her', ',', 'and', 'chusing', 'to', 'fancy', 'that', 'she', 'too', 'must', 'have', 'become', 'indifferent', 'to', 'me', ';', 'talking', 'to', 'myself', 'of', 'our', 'past', 'attachment', 'as', 'a', 'mere', 'idle', ',', 'trifling', 'business', ',', 'shrugging', 'up', 'my', 'shoulders', 'in', 'proof', 'of', 'its', 'being', 'so', ',', 'and', 'silencing', 'every', 'reproach', ',', 'overcoming', 'every', 'scruple', ',', 'by', 'secretly', 'saying', 'now', 'and', 'then', ',', '‘', 'I', 'shall', 'be', 'heartily', 'glad', 'to', 'hear', 'she', 'is', 'well', 'married.', '’', 'But', 'this', 'note', 'made', 'me', 'know', 'myself', 'better', '.', 'I', 'felt', 'that', 'she', 'was', 'infinitely', 'dearer', 'to', 'me', 'than', 'any', 'other', 'woman', 'in', 'the', 'world', ',', 'and', 'that', 'I', 'was', 'using', 'her', 'infamously', '.', 'But', 'every', 'thing', 'was', 'then', 'just', 'settled', 'between', 'Miss', 'Grey', 'and', 'me', '.', 'To', 'retreat', 'was', 'impossible', '.', 'All', 'that', 'I', 'had', 'to', 'do', ',', 'was', 'to', 'avoid', 'you', 'both', '.', 'I', 'sent', 'no', 'answer', 'to', 'Marianne', ',', 'intending', 'by', 'that', 'to', 'preserve', 'myself', 'from', 'her', 'farther', 'notice', ';', 'and', 'for', 'some', 'time', 'I', 'was', 'even', 'determined', 'not', 'to', 'call', 'in', 'Berkeley', 'Street', ';', '—but', 'at', 'last', ',', 'judging', 'it', 'wiser', 'to', 'affect', 'the', 'air', 'of', 'a', 'cool', ',', 'common', 'acquaintance', 'than', 'anything', 'else', ',', 'I', 'watched', 'you', 'all', 'safely', 'out', 'of', 'the', 'house', 'one', 'morning', ',', 'and', 'left', 'my', 'name.', '”', '“', 'Watched', 'us', 'out', 'of', 'the', 'house', '!', '”', '“', 'Even', 'so', '.', 'You', 'would', 'be', 'surprised', 'to', 'hear', 'how', 'often', 'I', 'watched', 'you', ',', 'how', 'often', 'I', 'was', 'on', 'the', 'point', 'of', 'falling', 'in', 'with', 'you', '.', 'I', 'have', 'entered', 'many', 'a', 'shop', 'to', 'avoid', 'your', 'sight', ',', 'as', 'the', 'carriage', 'drove', 'by', '.', 'Lodging', 'as', 'I', 'did', 'in', 'Bond', 'Street', ',', 'there', 'was', 'hardly', 'a', 'day', 'in', 'which', 'I', 'did', 'not', 'catch', 'a', 'glimpse', 'of', 'one', 'or', 'other', 'of', 'you', ';', 'and', 'nothing', 'but', 'the', 'most', 'constant', 'watchfulness', 'on', 'my', 'side', ',', 'a', 'most', 'invariably', 'prevailing', 'desire', 'to', 'keep', 'out', 'of', 'your', 'sight', ',', 'could', 'have', 'separated', 'us', 'so', 'long', '.', 'I', 'avoided', 'the', 'Middletons', 'as', 'much', 'as', 'possible', ',', 'as', 'well', 'as', 'everybody', 'else', 'who', 'was', 'likely', 'to', 'prove', 'an', 'acquaintance', 'in', 'common', '.', 'Not', 'aware', 'of', 'their', 'being', 'in', 'town', ',', 'however', ',', 'I', 'blundered', 'on', 'Sir', 'John', ',', 'I', 'believe', ',', 'the', 'first', 'day', 'of', 'his', 'coming', ',', 'and', 'the', 'day', 'after', 'I', 'had', 'called', 'at', 'Mrs.', 'Jennings', '’', 's', '.', 'He', 'asked', 'me', 'to', 'a', 'party', ',', 'a', 'dance', 'at', 'his', 'house', 'in', 'the', 'evening', '.', 'Had', 'he', '_not_', 'told', 'me', 'as', 'an', 'inducement', 'that', 'you', 'and', 'your', 'sister', 'were', 'to', 'be', 'there', ',', 'I', 'should', 'have', 'felt', 'it', 'too', 'certain', 'a', 'thing', ',', 'to', 'trust', 'myself', 'near', 'him', '.', 'The', 'next', 'morning', 'brought', 'another', 'short', 'note', 'from', 'Marianne—still', 'affectionate', ',', 'open', ',', 'artless', ',', 'confiding—everything', 'that', 'could', 'make', '_my_', 'conduct', 'most', 'hateful', '.', 'I', 'could', 'not', 'answer', 'it', '.', 'I', 'tried—but', 'could', 'not', 'frame', 'a', 'sentence', '.', 'But', 'I', 'thought', 'of', 'her', ',', 'I', 'believe', ',', 'every', 'moment', 'of', 'the', 'day', '.', 'If', 'you', '_can_', 'pity', 'me', ',', 'Miss', 'Dashwood', ',', 'pity', 'my', 'situation', 'as', 'it', 'was', '_then_', '.', 'With', 'my', 'head', 'and', 'heart', 'full', 'of', 'your', 'sister', ',', 'I', 'was', 'forced', 'to', 'play', 'the', 'happy', 'lover', 'to', 'another', 'woman', '!', 'Those', 'three', 'or', 'four', 'weeks', 'were', 'worse', 'than', 'all', '.', 'Well', ',', 'at', 'last', ',', 'as', 'I', 'need', 'not', 'tell', 'you', ',', 'you', 'were', 'forced', 'on', 'me', ';', 'and', 'what', 'a', 'sweet', 'figure', 'I', 'cut', '!', 'what', 'an', 'evening', 'of', 'agony', 'it', 'was', '!', 'Marianne', ',', 'beautiful', 'as', 'an', 'angel', 'on', 'one', 'side', ',', 'calling', 'me', 'Willoughby', 'in', 'such', 'a', 'tone', '!', 'Oh', ',', 'God', '!', 'holding', 'out', 'her', 'hand', 'to', 'me', ',', 'asking', 'me', 'for', 'an', 'explanation', ',', 'with', 'those', 'bewitching', 'eyes', 'fixed', 'in', 'such', 'speaking', 'solicitude', 'on', 'my', 'face', '!', 'and', 'Sophia', ',', 'jealous', 'as', 'the', 'devil', 'on', 'the', 'other', 'hand', ',', 'looking', 'all', 'that', 'was—Well', ',', 'it', 'does', 'not', 'signify', ';', 'it', 'is', 'over', 'now', '.', 'Such', 'an', 'evening', '!', 'I', 'ran', 'away', 'from', 'you', 'all', 'as', 'soon', 'as', 'I', 'could', ';', 'but', 'not', 'before', 'I', 'had', 'seen', 'Marianne', '’', 's', 'sweet', 'face', 'as', 'white', 'as', 'death', '.', '_That_', 'was', 'the', 'last', ',', 'last', 'look', 'I', 'ever', 'had', 'of', 'her', ';', 'the', 'last', 'manner', 'in', 'which', 'she', 'appeared', 'to', 'me', '.', 'It', 'was', 'a', 'horrid', 'sight', '!', 'yet', 'when', 'I', 'thought', 'of', 'her', 'to-day', 'as', 'really', 'dying', ',', 'it', 'was', 'a', 'kind', 'of', 'comfort', 'to', 'me', 'to', 'imagine', 'that', 'I', 'knew', 'exactly', 'how', 'she', 'would', 'appear', 'to', 'those', ',', 'who', 'saw', 'her', 'last', 'in', 'this', 'world', '.', 'She', 'was', 'before', 'me', ',', 'constantly', 'before', 'me', ',', 'as', 'I', 'travelled', ',', 'in', 'the', 'same', 'look', 'and', 'hue.', '”', 'A', 'short', 'pause', 'of', 'mutual', 'thoughtfulness', 'succeeded', '.', 'Willoughby', 'first', 'rousing', 'himself', ',', 'broke', 'it', 'thus', ':', '“', 'Well', ',', 'let', 'me', 'make', 'haste', 'and', 'be', 'gone', '.', 'Your', 'sister', 'is', 'certainly', 'better', ',', 'certainly', 'out', 'of', 'danger', '?', '”', '“', 'We', 'are', 'assured', 'of', 'it.', '”', '“', 'Your', 'poor', 'mother', ',', 'too', '!', '—doting', 'on', 'Marianne.', '”', '“', 'But', 'the', 'letter', ',', 'Mr.', 'Willoughby', ',', 'your', 'own', 'letter', ';', 'have', 'you', 'any', 'thing', 'to', 'say', 'about', 'that', '?', '”', '“', 'Yes', ',', 'yes', ',', '_that_', 'in', 'particular', '.', 'Your', 'sister', 'wrote', 'to', 'me', 'again', ',', 'you', 'know', ',', 'the', 'very', 'next', 'morning', '.', 'You', 'saw', 'what', 'she', 'said', '.', 'I', 'was', 'breakfasting', 'at', 'the', 'Ellisons', ',', '—and', 'her', 'letter', ',', 'with', 'some', 'others', ',', 'was', 'brought', 'to', 'me', 'there', 'from', 'my', 'lodgings', '.', 'It', 'happened', 'to', 'catch', 'Sophia', '’', 's', 'eye', 'before', 'it', 'caught', 'mine—and', 'its', 'size', ',', 'the', 'elegance', 'of', 'the', 'paper', ',', 'the', 'hand-writing', 'altogether', ',', 'immediately', 'gave', 'her', 'a', 'suspicion', '.', 'Some', 'vague', 'report', 'had', 'reached', 'her', 'before', 'of', 'my', 'attachment', 'to', 'some', 'young', 'lady', 'in', 'Devonshire', ',', 'and', 'what', 'had', 'passed', 'within', 'her', 'observation', 'the', 'preceding', 'evening', 'had', 'marked', 'who', 'the', 'young', 'lady', 'was', ',', 'and', 'made', 'her', 'more', 'jealous', 'than', 'ever', '.', 'Affecting', 'that', 'air', 'of', 'playfulness', ',', 'therefore', ',', 'which', 'is', 'delightful', 'in', 'a', 'woman', 'one', 'loves', ',', 'she', 'opened', 'the', 'letter', 'directly', ',', 'and', 'read', 'its', 'contents', '.', 'She', 'was', 'well', 'paid', 'for', 'her', 'impudence', '.', 'She', 'read', 'what', 'made', 'her', 'wretched', '.', 'Her', 'wretchedness', 'I', 'could', 'have', 'borne', ',', 'but', 'her', 'passion—her', 'malice—At', 'all', 'events', 'it', 'must', 'be', 'appeased', '.', 'And', ',', 'in', 'short—what', 'do', 'you', 'think', 'of', 'my', 'wife', '’', 's', 'style', 'of', 'letter-writing', '?', '—delicate—tender—truly', 'feminine—was', 'it', 'not', '?', '”', '“', 'Your', 'wife', '!', '—The', 'letter', 'was', 'in', 'your', 'own', 'hand-writing.', '”', '“', 'Yes', ',', 'but', 'I', 'had', 'only', 'the', 'credit', 'of', 'servilely', 'copying', 'such', 'sentences', 'as', 'I', 'was', 'ashamed', 'to', 'put', 'my', 'name', 'to', '.', 'The', 'original', 'was', 'all', 'her', 'own—her', 'own', 'happy', 'thoughts', 'and', 'gentle', 'diction', '.', 'But', 'what', 'could', 'I', 'do', '!', '—we', 'were', 'engaged', ',', 'every', 'thing', 'in', 'preparation', ',', 'the', 'day', 'almost', 'fixed—But', 'I', 'am', 'talking', 'like', 'a', 'fool', '.', 'Preparation', '!', 'Day', '!', 'In', 'honest', 'words', ',', 'her', 'money', 'was', 'necessary', 'to', 'me', ',', 'and', 'in', 'a', 'situation', 'like', 'mine', ',', 'any', 'thing', 'was', 'to', 'be', 'done', 'to', 'prevent', 'a', 'rupture', '.', 'And', 'after', 'all', ',', 'what', 'did', 'it', 'signify', 'to', 'my', 'character', 'in', 'the', 'opinion', 'of', 'Marianne', 'and', 'her', 'friends', ',', 'in', 'what', 'language', 'my', 'answer', 'was', 'couched', '?', 'It', 'must', 'have', 'been', 'only', 'to', 'one', 'end', '.', 'My', 'business', 'was', 'to', 'declare', 'myself', 'a', 'scoundrel', ',', 'and', 'whether', 'I', 'did', 'it', 'with', 'a', 'bow', 'or', 'a', 'bluster', 'was', 'of', 'little', 'importance', '.', '‘', 'I', 'am', 'ruined', 'for', 'ever', 'in', 'their', 'opinion', ',', '’', 'said', 'I', 'to', 'myself', ':', '‘', 'I', 'am', 'shut', 'out', 'for', 'ever', 'from', 'their', 'society', ',', 'they', 'already', 'think', 'me', 'an', 'unprincipled', 'fellow', ',', 'this', 'letter', 'will', 'only', 'make', 'them', 'think', 'me', 'a', 'blackguard', 'one.', '’', 'Such', 'were', 'my', 'reasonings', ',', 'as', ',', 'in', 'a', 'sort', 'of', 'desperate', 'carelessness', ',', 'I', 'copied', 'my', 'wife', '’', 's', 'words', ',', 'and', 'parted', 'with', 'the', 'last', 'relics', 'of', 'Marianne', '.', 'Her', 'three', 'notes', ',', '—unluckily', 'they', 'were', 'all', 'in', 'my', 'pocketbook', ',', 'or', 'I', 'should', 'have', 'denied', 'their', 'existence', ',', 'and', 'hoarded', 'them', 'for', 'ever', ',', '—I', 'was', 'forced', 'to', 'put', 'them', 'up', ',', 'and', 'could', 'not', 'even', 'kiss', 'them', '.', 'And', 'the', 'lock', 'of', 'hair—that', 'too', 'I', 'had', 'always', 'carried', 'about', 'me', 'in', 'the', 'same', 'pocket-book', ',', 'which', 'was', 'now', 'searched', 'by', 'Madam', 'with', 'the', 'most', 'ingratiating', 'virulence', ',', '—the', 'dear', 'lock', ',', '—all', ',', 'every', 'memento', 'was', 'torn', 'from', 'me.', '”', '“', 'You', 'are', 'very', 'wrong', ',', 'Mr.', 'Willoughby', ',', 'very', 'blamable', ',', '”', 'said', 'Elinor', ',', 'while', 'her', 'voice', ',', 'in', 'spite', 'of', 'herself', ',', 'betrayed', 'her', 'compassionate', 'emotion', ';', '“', 'you', 'ought', 'not', 'to', 'speak', 'in', 'this', 'way', ',', 'either', 'of', 'Mrs.', 'Willoughby', 'or', 'my', 'sister', '.', 'You', 'had', 'made', 'your', 'own', 'choice', '.', 'It', 'was', 'not', 'forced', 'on', 'you', '.', 'Your', 'wife', 'has', 'a', 'claim', 'to', 'your', 'politeness', ',', 'to', 'your', 'respect', ',', 'at', 'least', '.', 'She', 'must', 'be', 'attached', 'to', 'you', ',', 'or', 'she', 'would', 'not', 'have', 'married', 'you', '.', 'To', 'treat', 'her', 'with', 'unkindness', ',', 'to', 'speak', 'of', 'her', 'slightingly', 'is', 'no', 'atonement', 'to', 'Marianne—nor', 'can', 'I', 'suppose', 'it', 'a', 'relief', 'to', 'your', 'own', 'conscience.', '”', '“', 'Do', 'not', 'talk', 'to', 'me', 'of', 'my', 'wife', ',', '”', 'said', 'he', 'with', 'a', 'heavy', 'sigh', ';', '“', 'she', 'does', 'not', 'deserve', 'your', 'compassion', '.', 'She', 'knew', 'I', 'had', 'no', 'regard', 'for', 'her', 'when', 'we', 'married', '.', 'Well', ',', 'married', 'we', 'were', ',', 'and', 'came', 'down', 'to', 'Combe', 'Magna', 'to', 'be', 'happy', ',', 'and', 'afterwards', 'returned', 'to', 'town', 'to', 'be', 'gay', '.', 'And', 'now', 'do', 'you', 'pity', 'me', ',', 'Miss', 'Dashwood', '?', 'Or', 'have', 'I', 'said', 'all', 'this', 'to', 'no', 'purpose', '?', 'Am', 'I', ',', '—be', 'it', 'only', 'one', 'degree', ',', '—am', 'I', 'less', 'guilty', 'in', 'your', 'opinion', 'than', 'I', 'was', 'before', '?', 'My', 'intentions', 'were', 'not', 'always', 'wrong', '.', 'Have', 'I', 'explained', 'away', 'any', 'part', 'of', 'my', 'guilt', '?', '”', '“', 'Yes', ',', 'you', 'have', 'certainly', 'removed', 'something—a', 'little', '.', 'You', 'have', 'proved', 'yourself', ',', 'on', 'the', 'whole', ',', 'less', 'faulty', 'than', 'I', 'had', 'believed', 'you', '.', 'You', 'have', 'proved', 'your', 'heart', 'less', 'wicked', ',', 'much', 'less', 'wicked', '.', 'But', 'I', 'hardly', 'know—the', 'misery', 'that', 'you', 'have', 'inflicted—I', 'hardly', 'know', 'what', 'could', 'have', 'made', 'it', 'worse.', '”', '“', 'Will', 'you', 'repeat', 'to', 'your', 'sister', 'when', 'she', 'is', 'recovered', ',', 'what', 'I', 'have', 'been', 'telling', 'you', '?', '—Let', 'me', 'be', 'a', 'little', 'lightened', 'too', 'in', 'her', 'opinion', 'as', 'well', 'as', 'in', 'yours', '.', 'You', 'tell', 'me', 'that', 'she', 'has', 'forgiven', 'me', 'already', '.', 'Let', 'me', 'be', 'able', 'to', 'fancy', 'that', 'a', 'better', 'knowledge', 'of', 'my', 'heart', ',', 'and', 'of', 'my', 'present', 'feelings', ',', 'will', 'draw', 'from', 'her', 'a', 'more', 'spontaneous', ',', 'more', 'natural', ',', 'more', 'gentle', ',', 'less', 'dignified', ',', 'forgiveness', '.', 'Tell', 'her', 'of', 'my', 'misery', 'and', 'my', 'penitence—tell', 'her', 'that', 'my', 'heart', 'was', 'never', 'inconstant', 'to', 'her', ',', 'and', 'if', 'you', 'will', ',', 'that', 'at', 'this', 'moment', 'she', 'is', 'dearer', 'to', 'me', 'than', 'ever.', '”', '“', 'I', 'will', 'tell', 'her', 'all', 'that', 'is', 'necessary', 'to', 'what', 'may', 'comparatively', 'be', 'called', ',', 'your', 'justification', '.', 'But', 'you', 'have', 'not', 'explained', 'to', 'me', 'the', 'particular', 'reason', 'of', 'your', 'coming', 'now', ',', 'nor', 'how', 'you', 'heard', 'of', 'her', 'illness.', '”', '“', 'Last', 'night', ',', 'in', 'Drury', 'Lane', 'lobby', ',', 'I', 'ran', 'against', 'Sir', 'John', 'Middleton', ',', 'and', 'when', 'he', 'saw', 'who', 'I', 'was', ',', 'for', 'the', 'first', 'time', 'these', 'two', 'months', ',', 'he', 'spoke', 'to', 'me', '.', 'That', 'he', 'had', 'cut', 'me', 'ever', 'since', 'my', 'marriage', ',', 'I', 'had', 'seen', 'without', 'surprise', 'or', 'resentment', '.', 'Now', ',', 'however', ',', 'his', 'good-natured', ',', 'honest', ',', 'stupid', 'soul', ',', 'full', 'of', 'indignation', 'against', 'me', ',', 'and', 'concern', 'for', 'your', 'sister', ',', 'could', 'not', 'resist', 'the', 'temptation', 'of', 'telling', 'me', 'what', 'he', 'knew', 'ought', 'to', ',', 'though', 'probably', 'he', 'did', 'not', 'think', 'it', '_would_', ',', 'vex', 'me', 'horridly', '.', 'As', 'bluntly', 'as', 'he', 'could', 'speak', 'it', ',', 'therefore', ',', 'he', 'told', 'me', 'that', 'Marianne', 'Dashwood', 'was', 'dying', 'of', 'a', 'putrid', 'fever', 'at', 'Cleveland—a', 'letter', 'that', 'morning', 'received', 'from', 'Mrs.', 'Jennings', 'declared', 'her', 'danger', 'most', 'imminent—the', 'Palmers', 'are', 'all', 'gone', 'off', 'in', 'a', 'fright', ',', '&', 'c.', 'I', 'was', 'too', 'much', 'shocked', 'to', 'be', 'able', 'to', 'pass', 'myself', 'off', 'as', 'insensible', 'even', 'to', 'the', 'undiscerning', 'Sir', 'John', '.', 'His', 'heart', 'was', 'softened', 'in', 'seeing', 'mine', 'suffer', ';', 'and', 'so', 'much', 'of', 'his', 'ill-will', 'was', 'done', 'away', ',', 'that', 'when', 'we', 'parted', ',', 'he', 'almost', 'shook', 'me', 'by', 'the', 'hand', 'while', 'he', 'reminded', 'me', 'of', 'an', 'old', 'promise', 'about', 'a', 'pointer', 'puppy', '.', 'What', 'I', 'felt', 'on', 'hearing', 'that', 'your', 'sister', 'was', 'dying', ',', 'and', 'dying', 'too', ',', 'believing', 'me', 'the', 'greatest', 'villain', 'upon', 'earth', ',', 'scorning', ',', 'hating', 'me', 'in', 'her', 'latest', 'moments—for', 'how', 'could', 'I', 'tell', 'what', 'horrid', 'projects', 'might', 'not', 'have', 'been', 'imputed', '?', '_One_', 'person', 'I', 'was', 'sure', 'would', 'represent', 'me', 'as', 'capable', 'of', 'anything—What', 'I', 'felt', 'was', 'dreadful', '!', 'My', 'resolution', 'was', 'soon', 'made', ',', 'and', 'at', 'eight', 'o', '’', 'clock', 'this', 'morning', 'I', 'was', 'in', 'my', 'carriage', '.', 'Now', 'you', 'know', 'all.', '”', 'Elinor', 'made', 'no', 'answer', '.', 'Her', 'thoughts', 'were', 'silently', 'fixed', 'on', 'the', 'irreparable', 'injury', 'which', 'too', 'early', 'an', 'independence', 'and', 'its', 'consequent', 'habits', 'of', 'idleness', ',', 'dissipation', ',', 'and', 'luxury', ',', 'had', 'made', 'in', 'the', 'mind', ',', 'the', 'character', ',', 'the', 'happiness', ',', 'of', 'a', 'man', 'who', ',', 'to', 'every', 'advantage', 'of', 'person', 'and', 'talents', ',', 'united', 'a', 'disposition', 'naturally', 'open', 'and', 'honest', ',', 'and', 'a', 'feeling', ',', 'affectionate', 'temper', '.', 'The', 'world', 'had', 'made', 'him', 'extravagant', 'and', 'vain—Extravagance', 'and', 'vanity', 'had', 'made', 'him', 'cold-hearted', 'and', 'selfish', '.', 'Vanity', ',', 'while', 'seeking', 'its', 'own', 'guilty', 'triumph', 'at', 'the', 'expense', 'of', 'another', ',', 'had', 'involved', 'him', 'in', 'a', 'real', 'attachment', ',', 'which', 'extravagance', ',', 'or', 'at', 'least', 'its', 'offspring', ',', 'necessity', ',', 'had', 'required', 'to', 'be', 'sacrificed', '.', 'Each', 'faulty', 'propensity', 'in', 'leading', 'him', 'to', 'evil', ',', 'had', 'led', 'him', 'likewise', 'to', 'punishment', '.', 'The', 'attachment', ',', 'from', 'which', 'against', 'honour', ',', 'against', 'feeling', ',', 'against', 'every', 'better', 'interest', 'he', 'had', 'outwardly', 'torn', 'himself', ',', 'now', ',', 'when', 'no', 'longer', 'allowable', ',', 'governed', 'every', 'thought', ';', 'and', 'the', 'connection', ',', 'for', 'the', 'sake', 'of', 'which', 'he', 'had', ',', 'with', 'little', 'scruple', ',', 'left', 'her', 'sister', 'to', 'misery', ',', 'was', 'likely', 'to', 'prove', 'a', 'source', 'of', 'unhappiness', 'to', 'himself', 'of', 'a', 'far', 'more', 'incurable', 'nature', '.', 'From', 'a', 'reverie', 'of', 'this', 'kind', 'she', 'was', 'recalled', 'at', 'the', 'end', 'of', 'some', 'minutes', 'by', 'Willoughby', ',', 'who', ',', 'rousing', 'himself', 'from', 'a', 'reverie', 'at', 'least', 'equally', 'painful', ',', 'started', 'up', 'in', 'preparation', 'for', 'going', ',', 'and', 'said—', '“', 'There', 'is', 'no', 'use', 'in', 'staying', 'here', ';', 'I', 'must', 'be', 'off.', '”', '“', 'Are', 'you', 'going', 'back', 'to', 'town', '?', '”', '“', 'No—to', 'Combe', 'Magna', '.', 'I', 'have', 'business', 'there', ';', 'from', 'thence', 'to', 'town', 'in', 'a', 'day', 'or', 'two', '.', 'Good', 'bye.', '”', 'He', 'held', 'out', 'his', 'hand', '.', 'She', 'could', 'not', 'refuse', 'to', 'give', 'him', 'hers', ';', '—he', 'pressed', 'it', 'with', 'affection', '.', '“', 'And', 'you', '_do_', 'think', 'something', 'better', 'of', 'me', 'than', 'you', 'did', '?', '”', 'said', 'he', ',', 'letting', 'it', 'fall', ',', 'and', 'leaning', 'against', 'the', 'mantel-piece', 'as', 'if', 'forgetting', 'he', 'was', 'to', 'go', '.', 'Elinor', 'assured', 'him', 'that', 'she', 'did', ';', '—that', 'she', 'forgave', ',', 'pitied', ',', 'wished', 'him', 'well—was', 'even', 'interested', 'in', 'his', 'happiness—and', 'added', 'some', 'gentle', 'counsel', 'as', 'to', 'the', 'behaviour', 'most', 'likely', 'to', 'promote', 'it', '.', 'His', 'answer', 'was', 'not', 'very', 'encouraging', '.', '“', 'As', 'to', 'that', ',', '”', 'said', 'he', ',', '“', 'I', 'must', 'rub', 'through', 'the', 'world', 'as', 'well', 'as', 'I', 'can', '.', 'Domestic', 'happiness', 'is', 'out', 'of', 'the', 'question', '.', 'If', ',', 'however', ',', 'I', 'am', 'allowed', 'to', 'think', 'that', 'you', 'and', 'yours', 'feel', 'an', 'interest', 'in', 'my', 'fate', 'and', 'actions', ',', 'it', 'may', 'be', 'the', 'means—it', 'may', 'put', 'me', 'on', 'my', 'guard—at', 'least', ',', 'it', 'may', 'be', 'something', 'to', 'live', 'for', '.', 'Marianne', 'to', 'be', 'sure', 'is', 'lost', 'to', 'me', 'for', 'ever', '.', 'Were', 'I', 'even', 'by', 'any', 'blessed', 'chance', 'at', 'liberty', 'again—', '”', 'Elinor', 'stopped', 'him', 'with', 'a', 'reproof', '.', '“', 'Well', ',', '”', '—he', 'replied—', '“', 'once', 'more', 'good', 'bye', '.', 'I', 'shall', 'now', 'go', 'away', 'and', 'live', 'in', 'dread', 'of', 'one', 'event.', '”', '“', 'What', 'do', 'you', 'mean', '?', '”', '“', 'Your', 'sister', '’', 's', 'marriage.', '”', '“', 'You', 'are', 'very', 'wrong', '.', 'She', 'can', 'never', 'be', 'more', 'lost', 'to', 'you', 'than', 'she', 'is', 'now.', '”', '“', 'But', 'she', 'will', 'be', 'gained', 'by', 'some', 'one', 'else', '.', 'And', 'if', 'that', 'some', 'one', 'should', 'be', 'the', 'very', 'he', 'whom', ',', 'of', 'all', 'others', ',', 'I', 'could', 'least', 'bear—but', 'I', 'will', 'not', 'stay', 'to', 'rob', 'myself', 'of', 'all', 'your', 'compassionate', 'goodwill', ',', 'by', 'showing', 'that', 'where', 'I', 'have', 'most', 'injured', 'I', 'can', 'least', 'forgive', '.', 'Good', 'bye', ',', '—God', 'bless', 'you', '!', '”', 'And', 'with', 'these', 'words', ',', 'he', 'almost', 'ran', 'out', 'of', 'the', 'room', '.', 'CHAPTER', 'XLV', '.', 'Elinor', ',', 'for', 'some', 'time', 'after', 'he', 'left', 'her', ',', 'for', 'some', 'time', 'even', 'after', 'the', 'sound', 'of', 'his', 'carriage', 'had', 'died', 'away', ',', 'remained', 'too', 'much', 'oppressed', 'by', 'a', 'crowd', 'of', 'ideas', ',', 'widely', 'differing', 'in', 'themselves', ',', 'but', 'of', 'which', 'sadness', 'was', 'the', 'general', 'result', ',', 'to', 'think', 'even', 'of', 'her', 'sister', '.', 'Willoughby', ',', 'he', ',', 'whom', 'only', 'half', 'an', 'hour', 'ago', 'she', 'had', 'abhorred', 'as', 'the', 'most', 'worthless', 'of', 'men', ',', 'Willoughby', ',', 'in', 'spite', 'of', 'all', 'his', 'faults', ',', 'excited', 'a', 'degree', 'of', 'commiseration', 'for', 'the', 'sufferings', 'produced', 'by', 'them', ',', 'which', 'made', 'her', 'think', 'of', 'him', 'as', 'now', 'separated', 'for', 'ever', 'from', 'her', 'family', ',', 'with', 'a', 'tenderness', ',', 'a', 'regret', ',', 'rather', 'in', 'proportion', ',', 'as', 'she', 'soon', 'acknowledged', 'within', 'herself—to', 'his', 'wishes', 'than', 'to', 'his', 'merits', '.', 'She', 'felt', 'that', 'his', 'influence', 'over', 'her', 'mind', 'was', 'heightened', 'by', 'circumstances', 'which', 'ought', 'not', 'in', 'reason', 'to', 'have', 'weight', ';', 'by', 'that', 'person', 'of', 'uncommon', 'attraction', ',', 'that', 'open', ',', 'affectionate', ',', 'and', 'lively', 'manner', 'which', 'it', 'was', 'no', 'merit', 'to', 'possess', ';', 'and', 'by', 'that', 'still', 'ardent', 'love', 'for', 'Marianne', ',', 'which', 'it', 'was', 'not', 'even', 'innocent', 'to', 'indulge', '.', 'But', 'she', 'felt', 'that', 'it', 'was', 'so', ',', 'long', ',', 'long', 'before', 'she', 'could', 'feel', 'his', 'influence', 'less', '.', 'When', 'at', 'last', 'she', 'returned', 'to', 'the', 'unconscious', 'Marianne', ',', 'she', 'found', 'her', 'just', 'awaking', ',', 'refreshed', 'by', 'so', 'long', 'and', 'sweet', 'a', 'sleep', 'to', 'the', 'extent', 'of', 'her', 'hopes', '.', 'Elinor', '’', 's', 'heart', 'was', 'full', '.', 'The', 'past', ',', 'the', 'present', ',', 'the', 'future', ',', 'Willoughby', '’', 's', 'visit', ',', 'Marianne', '’', 's', 'safety', ',', 'and', 'her', 'mother', '’', 's', 'expected', 'arrival', ',', 'threw', 'her', 'altogether', 'into', 'an', 'agitation', 'of', 'spirits', 'which', 'kept', 'off', 'every', 'indication', 'of', 'fatigue', ',', 'and', 'made', 'her', 'only', 'fearful', 'of', 'betraying', 'herself', 'to', 'her', 'sister', '.', 'Short', 'was', 'the', 'time', ',', 'however', ',', 'in', 'which', 'that', 'fear', 'could', 'affect', 'her', ',', 'for', 'within', 'half', 'an', 'hour', 'after', 'Willoughby', '’', 's', 'leaving', 'the', 'house', ',', 'she', 'was', 'again', 'called', 'down', 'stairs', 'by', 'the', 'sound', 'of', 'another', 'carriage.—Eager', 'to', 'save', 'her', 'mother', 'from', 'every', 'unnecessary', 'moment', '’', 's', 'horrible', 'suspense', ',', 'she', 'ran', 'immediately', 'into', 'the', 'hall', ',', 'and', 'reached', 'the', 'outward', 'door', 'just', 'in', 'time', 'to', 'receive', 'and', 'support', 'her', 'as', 'she', 'entered', 'it', '.', 'Mrs.', 'Dashwood', ',', 'whose', 'terror', 'as', 'they', 'drew', 'near', 'the', 'house', 'had', 'produced', 'almost', 'the', 'conviction', 'of', 'Marianne', '’', 's', 'being', 'no', 'more', ',', 'had', 'no', 'voice', 'to', 'inquire', 'after', 'her', ',', 'no', 'voice', 'even', 'for', 'Elinor', ';', 'but', '_she_', ',', 'waiting', 'neither', 'for', 'salutation', 'nor', 'inquiry', ',', 'instantly', 'gave', 'the', 'joyful', 'relief', ';', 'and', 'her', 'mother', ',', 'catching', 'it', 'with', 'all', 'her', 'usual', 'warmth', ',', 'was', 'in', 'a', 'moment', 'as', 'much', 'overcome', 'by', 'her', 'happiness', ',', 'as', 'she', 'had', 'been', 'before', 'by', 'her', 'fears', '.', 'She', 'was', 'supported', 'into', 'the', 'drawing-room', 'between', 'her', 'daughter', 'and', 'her', 'friend', ';', 'and', 'there', ',', 'shedding', 'tears', 'of', 'joy', ',', 'though', 'still', 'unable', 'to', 'speak', ',', 'embraced', 'Elinor', 'again', 'and', 'again', ',', 'turning', 'from', 'her', 'at', 'intervals', 'to', 'press', 'Colonel', 'Brandon', '’', 's', 'hand', ',', 'with', 'a', 'look', 'which', 'spoke', 'at', 'once', 'her', 'gratitude', ',', 'and', 'her', 'conviction', 'of', 'his', 'sharing', 'with', 'herself', 'in', 'the', 'bliss', 'of', 'the', 'moment', '.', 'He', 'shared', 'it', ',', 'however', ',', 'in', 'a', 'silence', 'even', 'greater', 'than', 'her', 'own', '.', 'As', 'soon', 'as', 'Mrs.', 'Dashwood', 'had', 'recovered', 'herself', ',', 'to', 'see', 'Marianne', 'was', 'her', 'first', 'desire', ';', 'and', 'in', 'two', 'minutes', 'she', 'was', 'with', 'her', 'beloved', 'child', ',', 'rendered', 'dearer', 'to', 'her', 'than', 'ever', 'by', 'absence', ',', 'unhappiness', ',', 'and', 'danger', '.', 'Elinor', '’', 's', 'delight', ',', 'as', 'she', 'saw', 'what', 'each', 'felt', 'in', 'the', 'meeting', ',', 'was', 'only', 'checked', 'by', 'an', 'apprehension', 'of', 'its', 'robbing', 'Marianne', 'of', 'farther', 'sleep', ':', 'but', 'Mrs.', 'Dashwood', 'could', 'be', 'calm', ',', 'could', 'be', 'even', 'prudent', ',', 'when', 'the', 'life', 'of', 'a', 'child', 'was', 'at', 'stake', ',', 'and', 'Marianne', ',', 'satisfied', 'in', 'knowing', 'her', 'mother', 'was', 'near', 'her', ',', 'and', 'conscious', 'of', 'being', 'too', 'weak', 'for', 'conversation', ',', 'submitted', 'readily', 'to', 'the', 'silence', 'and', 'quiet', 'prescribed', 'by', 'every', 'nurse', 'around', 'her', '.', 'Mrs.', 'Dashwood', '_would_', 'sit', 'up', 'with', 'her', 'all', 'night', ';', 'and', 'Elinor', ',', 'in', 'compliance', 'with', 'her', 'mother', '’', 's', 'entreaty', ',', 'went', 'to', 'bed', '.', 'But', 'the', 'rest', ',', 'which', 'one', 'night', 'entirely', 'sleepless', ',', 'and', 'many', 'hours', 'of', 'the', 'most', 'wearing', 'anxiety', 'seemed', 'to', 'make', 'requisite', ',', 'was', 'kept', 'off', 'by', 'irritation', 'of', 'spirits', '.', 'Willoughby', ',', '“', 'poor', 'Willoughby', ',', '”', 'as', 'she', 'now', 'allowed', 'herself', 'to', 'call', 'him', ',', 'was', 'constantly', 'in', 'her', 'thoughts', ';', 'she', 'would', 'not', 'but', 'have', 'heard', 'his', 'vindication', 'for', 'the', 'world', ',', 'and', 'now', 'blamed', ',', 'now', 'acquitted', 'herself', 'for', 'having', 'judged', 'him', 'so', 'harshly', 'before', '.', 'But', 'her', 'promise', 'of', 'relating', 'it', 'to', 'her', 'sister', 'was', 'invariably', 'painful', '.', 'She', 'dreaded', 'the', 'performance', 'of', 'it', ',', 'dreaded', 'what', 'its', 'effect', 'on', 'Marianne', 'might', 'be', ';', 'doubted', 'whether', 'after', 'such', 'an', 'explanation', 'she', 'could', 'ever', 'be', 'happy', 'with', 'another', ';', 'and', 'for', 'a', 'moment', 'wished', 'Willoughby', 'a', 'widower', '.', 'Then', ',', 'remembering', 'Colonel', 'Brandon', ',', 'reproved', 'herself', ',', 'felt', 'that', 'to', '_his_', 'sufferings', 'and', '_his_', 'constancy', 'far', 'more', 'than', 'to', 'his', 'rival', '’', 's', ',', 'the', 'reward', 'of', 'her', 'sister', 'was', 'due', ',', 'and', 'wished', 'any', 'thing', 'rather', 'than', 'Mrs.', 'Willoughby', '’', 's', 'death', '.', 'The', 'shock', 'of', 'Colonel', 'Brandon', '’', 's', 'errand', 'at', 'Barton', 'had', 'been', 'much', 'softened', 'to', 'Mrs.', 'Dashwood', 'by', 'her', 'own', 'previous', 'alarm', ';', 'for', 'so', 'great', 'was', 'her', 'uneasiness', 'about', 'Marianne', ',', 'that', 'she', 'had', 'already', 'determined', 'to', 'set', 'out', 'for', 'Cleveland', 'on', 'that', 'very', 'day', ',', 'without', 'waiting', 'for', 'any', 'further', 'intelligence', ',', 'and', 'had', 'so', 'far', 'settled', 'her', 'journey', 'before', 'his', 'arrival', ',', 'that', 'the', 'Careys', 'were', 'then', 'expected', 'every', 'moment', 'to', 'fetch', 'Margaret', 'away', ',', 'as', 'her', 'mother', 'was', 'unwilling', 'to', 'take', 'her', 'where', 'there', 'might', 'be', 'infection', '.', 'Marianne', 'continued', 'to', 'mend', 'every', 'day', ',', 'and', 'the', 'brilliant', 'cheerfulness', 'of', 'Mrs.', 'Dashwood', '’', 's', 'looks', 'and', 'spirits', 'proved', 'her', 'to', 'be', ',', 'as', 'she', 'repeatedly', 'declared', 'herself', ',', 'one', 'of', 'the', 'happiest', 'women', 'in', 'the', 'world', '.', 'Elinor', 'could', 'not', 'hear', 'the', 'declaration', ',', 'nor', 'witness', 'its', 'proofs', 'without', 'sometimes', 'wondering', 'whether', 'her', 'mother', 'ever', 'recollected', 'Edward', '.', 'But', 'Mrs.', 'Dashwood', ',', 'trusting', 'to', 'the', 'temperate', 'account', 'of', 'her', 'own', 'disappointment', 'which', 'Elinor', 'had', 'sent', 'her', ',', 'was', 'led', 'away', 'by', 'the', 'exuberance', 'of', 'her', 'joy', 'to', 'think', 'only', 'of', 'what', 'would', 'increase', 'it', '.', 'Marianne', 'was', 'restored', 'to', 'her', 'from', 'a', 'danger', 'in', 'which', ',', 'as', 'she', 'now', 'began', 'to', 'feel', ',', 'her', 'own', 'mistaken', 'judgment', 'in', 'encouraging', 'the', 'unfortunate', 'attachment', 'to', 'Willoughby', ',', 'had', 'contributed', 'to', 'place', 'her', ';', '—and', 'in', 'her', 'recovery', 'she', 'had', 'yet', 'another', 'source', 'of', 'joy', 'unthought', 'of', 'by', 'Elinor', '.', 'It', 'was', 'thus', 'imparted', 'to', 'her', ',', 'as', 'soon', 'as', 'any', 'opportunity', 'of', 'private', 'conference', 'between', 'them', 'occurred', '.', '“', 'At', 'last', 'we', 'are', 'alone', '.', 'My', 'Elinor', ',', 'you', 'do', 'not', 'yet', 'know', 'all', 'my', 'happiness', '.', 'Colonel', 'Brandon', 'loves', 'Marianne', '.', 'He', 'has', 'told', 'me', 'so', 'himself.', '”', 'Her', 'daughter', ',', 'feeling', 'by', 'turns', 'both', 'pleased', 'and', 'pained', ',', 'surprised', 'and', 'not', 'surprised', ',', 'was', 'all', 'silent', 'attention', '.', '“', 'You', 'are', 'never', 'like', 'me', ',', 'dear', 'Elinor', ',', 'or', 'I', 'should', 'wonder', 'at', 'your', 'composure', 'now', '.', 'Had', 'I', 'sat', 'down', 'to', 'wish', 'for', 'any', 'possible', 'good', 'to', 'my', 'family', ',', 'I', 'should', 'have', 'fixed', 'on', 'Colonel', 'Brandon', '’', 's', 'marrying', 'one', 'of', 'you', 'as', 'the', 'object', 'most', 'desirable', '.', 'And', 'I', 'believe', 'Marianne', 'will', 'be', 'the', 'most', 'happy', 'with', 'him', 'of', 'the', 'two.', '”', 'Elinor', 'was', 'half', 'inclined', 'to', 'ask', 'her', 'reason', 'for', 'thinking', 'so', ',', 'because', 'satisfied', 'that', 'none', 'founded', 'on', 'an', 'impartial', 'consideration', 'of', 'their', 'age', ',', 'characters', ',', 'or', 'feelings', ',', 'could', 'be', 'given', ';', '—but', 'her', 'mother', 'must', 'always', 'be', 'carried', 'away', 'by', 'her', 'imagination', 'on', 'any', 'interesting', 'subject', ',', 'and', 'therefore', 'instead', 'of', 'an', 'inquiry', ',', 'she', 'passed', 'it', 'off', 'with', 'a', 'smile', '.', '“', 'He', 'opened', 'his', 'whole', 'heart', 'to', 'me', 'yesterday', 'as', 'we', 'travelled', '.', 'It', 'came', 'out', 'quite', 'unawares', ',', 'quite', 'undesignedly', '.', 'I', ',', 'you', 'may', 'well', 'believe', ',', 'could', 'talk', 'of', 'nothing', 'but', 'my', 'child', ';', '—he', 'could', 'not', 'conceal', 'his', 'distress', ';', 'I', 'saw', 'that', 'it', 'equalled', 'my', 'own', ',', 'and', 'he', 'perhaps', ',', 'thinking', 'that', 'mere', 'friendship', ',', 'as', 'the', 'world', 'now', 'goes', ',', 'would', 'not', 'justify', 'so', 'warm', 'a', 'sympathy—or', 'rather', ',', 'not', 'thinking', 'at', 'all', ',', 'I', 'suppose—giving', 'way', 'to', 'irresistible', 'feelings', ',', 'made', 'me', 'acquainted', 'with', 'his', 'earnest', ',', 'tender', ',', 'constant', ',', 'affection', 'for', 'Marianne', '.', 'He', 'has', 'loved', 'her', ',', 'my', 'Elinor', ',', 'ever', 'since', 'the', 'first', 'moment', 'of', 'seeing', 'her.', '”', 'Here', ',', 'however', ',', 'Elinor', 'perceived', ',', '—not', 'the', 'language', ',', 'not', 'the', 'professions', 'of', 'Colonel', 'Brandon', ',', 'but', 'the', 'natural', 'embellishments', 'of', 'her', 'mother', '’', 's', 'active', 'fancy', ',', 'which', 'fashioned', 'every', 'thing', 'delightful', 'to', 'her', 'as', 'it', 'chose', '.', '“', 'His', 'regard', 'for', 'her', ',', 'infinitely', 'surpassing', 'anything', 'that', 'Willoughby', 'ever', 'felt', 'or', 'feigned', ',', 'as', 'much', 'more', 'warm', ',', 'as', 'more', 'sincere', 'or', 'constant—which', 'ever', 'we', 'are', 'to', 'call', 'it—has', 'subsisted', 'through', 'all', 'the', 'knowledge', 'of', 'dear', 'Marianne', '’', 's', 'unhappy', 'prepossession', 'for', 'that', 'worthless', 'young', 'man', '!', '—and', 'without', 'selfishness—without', 'encouraging', 'a', 'hope', '!', '—could', 'he', 'have', 'seen', 'her', 'happy', 'with', 'another—Such', 'a', 'noble', 'mind', '!', '—such', 'openness', ',', 'such', 'sincerity', '!', '—no', 'one', 'can', 'be', 'deceived', 'in', '_him_.', '”', '“', 'Colonel', 'Brandon', '’', 's', 'character', ',', '”', 'said', 'Elinor', ',', '“', 'as', 'an', 'excellent', 'man', ',', 'is', 'well', 'established.', '”', '“', 'I', 'know', 'it', 'is', ',', '”', '—replied', 'her', 'mother', 'seriously', ',', '“', 'or', 'after', 'such', 'a', 'warning', ',', '_I_', 'should', 'be', 'the', 'last', 'to', 'encourage', 'such', 'affection', ',', 'or', 'even', 'to', 'be', 'pleased', 'by', 'it', '.', 'But', 'his', 'coming', 'for', 'me', 'as', 'he', 'did', ',', 'with', 'such', 'active', ',', 'such', 'ready', 'friendship', ',', 'is', 'enough', 'to', 'prove', 'him', 'one', 'of', 'the', 'worthiest', 'of', 'men.', '”', '“', 'His', 'character', ',', 'however', ',', '”', 'answered', 'Elinor', ',', '“', 'does', 'not', 'rest', 'on', '_one_', 'act', 'of', 'kindness', ',', 'to', 'which', 'his', 'affection', 'for', 'Marianne', ',', 'were', 'humanity', 'out', 'of', 'the', 'case', ',', 'would', 'have', 'prompted', 'him', '.', 'To', 'Mrs.', 'Jennings', ',', 'to', 'the', 'Middletons', ',', 'he', 'has', 'been', 'long', 'and', 'intimately', 'known', ';', 'they', 'equally', 'love', 'and', 'respect', 'him', ';', 'and', 'even', 'my', 'own', 'knowledge', 'of', 'him', ',', 'though', 'lately', 'acquired', ',', 'is', 'very', 'considerable', ';', 'and', 'so', 'highly', 'do', '_I_', 'value', 'and', 'esteem', 'him', ',', 'that', 'if', 'Marianne', 'can', 'be', 'happy', 'with', 'him', ',', 'I', 'shall', 'be', 'as', 'ready', 'as', 'yourself', 'to', 'think', 'our', 'connection', 'the', 'greatest', 'blessing', 'to', 'us', 'in', 'the', 'world', '.', 'What', 'answer', 'did', 'you', 'give', 'him', '?', '—Did', 'you', 'allow', 'him', 'to', 'hope', '?', '”', '“', 'Oh', '!', 'my', 'love', ',', 'I', 'could', 'not', 'then', 'talk', 'of', 'hope', 'to', 'him', 'or', 'to', 'myself', '.', 'Marianne', 'might', 'at', 'that', 'moment', 'be', 'dying', '.', 'But', 'he', 'did', 'not', 'ask', 'for', 'hope', 'or', 'encouragement', '.', 'His', 'was', 'an', 'involuntary', 'confidence', ',', 'an', 'irrepressible', 'effusion', 'to', 'a', 'soothing', 'friend', ',', 'not', 'an', 'application', 'to', 'a', 'parent', '.', 'Yet', 'after', 'a', 'time', 'I', '_did_', 'say', ',', 'for', 'at', 'first', 'I', 'was', 'quite', 'overcome', ',', 'that', 'if', 'she', 'lived', ',', 'as', 'I', 'trusted', 'she', 'might', ',', 'my', 'greatest', 'happiness', 'would', 'lie', 'in', 'promoting', 'their', 'marriage', ';', 'and', 'since', 'our', 'arrival', ',', 'since', 'our', 'delightful', 'security', ',', 'I', 'have', 'repeated', 'it', 'to', 'him', 'more', 'fully', ',', 'have', 'given', 'him', 'every', 'encouragement', 'in', 'my', 'power', '.', 'Time', ',', 'a', 'very', 'little', 'time', ',', 'I', 'tell', 'him', ',', 'will', 'do', 'everything', ';', 'Marianne', '’', 's', 'heart', 'is', 'not', 'to', 'be', 'wasted', 'for', 'ever', 'on', 'such', 'a', 'man', 'as', 'Willoughby', '.', 'His', 'own', 'merits', 'must', 'soon', 'secure', 'it.', '”', '“', 'To', 'judge', 'from', 'the', 'Colonel', '’', 's', 'spirits', ',', 'however', ',', 'you', 'have', 'not', 'yet', 'made', 'him', 'equally', 'sanguine.', '”', '“', 'No', '.', 'He', 'thinks', 'Marianne', '’', 's', 'affection', 'too', 'deeply', 'rooted', 'for', 'any', 'change', 'in', 'it', 'under', 'a', 'great', 'length', 'of', 'time', ',', 'and', 'even', 'supposing', 'her', 'heart', 'again', 'free', ',', 'is', 'too', 'diffident', 'of', 'himself', 'to', 'believe', ',', 'that', 'with', 'such', 'a', 'difference', 'of', 'age', 'and', 'disposition', 'he', 'could', 'ever', 'attach', 'her', '.', 'There', ',', 'however', ',', 'he', 'is', 'quite', 'mistaken', '.', 'His', 'age', 'is', 'only', 'so', 'much', 'beyond', 'hers', 'as', 'to', 'be', 'an', 'advantage', ',', 'as', 'to', 'make', 'his', 'character', 'and', 'principles', 'fixed', ';', 'and', 'his', 'disposition', ',', 'I', 'am', 'well', 'convinced', ',', 'is', 'exactly', 'the', 'very', 'one', 'to', 'make', 'your', 'sister', 'happy', '.', 'And', 'his', 'person', ',', 'his', 'manners', 'too', ',', 'are', 'all', 'in', 'his', 'favour', '.', 'My', 'partiality', 'does', 'not', 'blind', 'me', ';', 'he', 'certainly', 'is', 'not', 'so', 'handsome', 'as', 'Willoughby', ';', 'but', 'at', 'the', 'same', 'time', ',', 'there', 'is', 'something', 'much', 'more', 'pleasing', 'in', 'his', 'countenance', '.', 'There', 'was', 'always', 'a', 'something', ',', 'if', 'you', 'remember', ',', 'in', 'Willoughby', '’', 's', 'eyes', 'at', 'times', ',', 'which', 'I', 'did', 'not', 'like.', '”', 'Elinor', 'could', '_not_', 'remember', 'it', ';', 'but', 'her', 'mother', ',', 'without', 'waiting', 'for', 'her', 'assent', ',', 'continued', ',', '“', 'And', 'his', 'manners', ',', 'the', 'Colonel', '’', 's', 'manners', 'are', 'not', 'only', 'more', 'pleasing', 'to', 'me', 'than', 'Willoughby', '’', 's', 'ever', 'were', ',', 'but', 'they', 'are', 'of', 'a', 'kind', 'I', 'well', 'know', 'to', 'be', 'more', 'solidly', 'attaching', 'to', 'Marianne', '.', 'Their', 'gentleness', ',', 'their', 'genuine', 'attention', 'to', 'other', 'people', ',', 'and', 'their', 'manly', 'unstudied', 'simplicity', 'is', 'much', 'more', 'accordant', 'with', 'her', 'real', 'disposition', ',', 'than', 'the', 'liveliness', ',', 'often', 'artificial', ',', 'and', 'often', 'ill-timed', 'of', 'the', 'other', '.', 'I', 'am', 'very', 'sure', 'myself', ',', 'that', 'had', 'Willoughby', 'turned', 'out', 'as', 'really', 'amiable', ',', 'as', 'he', 'has', 'proved', 'himself', 'the', 'contrary', ',', 'Marianne', 'would', 'yet', 'never', 'have', 'been', 'so', 'happy', 'with', '_him_', 'as', 'she', 'will', 'be', 'with', 'Colonel', 'Brandon.', '”', 'She', 'paused.—Her', 'daughter', 'could', 'not', 'quite', 'agree', 'with', 'her', ',', 'but', 'her', 'dissent', 'was', 'not', 'heard', ',', 'and', 'therefore', 'gave', 'no', 'offence', '.', '“', 'At', 'Delaford', ',', 'she', 'will', 'be', 'within', 'an', 'easy', 'distance', 'of', 'me', ',', '”', 'added', 'Mrs.', 'Dashwood', ',', '“', 'even', 'if', 'I', 'remain', 'at', 'Barton', ';', 'and', 'in', 'all', 'probability', ',', '—for', 'I', 'hear', 'it', 'is', 'a', 'large', 'village', ',', '—indeed', 'there', 'certainly', '_must_', 'be', 'some', 'small', 'house', 'or', 'cottage', 'close', 'by', ',', 'that', 'would', 'suit', 'us', 'quite', 'as', 'well', 'as', 'our', 'present', 'situation.', '”', 'Poor', 'Elinor', '!', '—here', 'was', 'a', 'new', 'scheme', 'for', 'getting', 'her', 'to', 'Delaford', '!', '—but', 'her', 'spirit', 'was', 'stubborn', '.', '“', 'His', 'fortune', 'too', '!', '—for', 'at', 'my', 'time', 'of', 'life', 'you', 'know', ',', 'everybody', 'cares', 'about', '_that', ';', '_—and', 'though', 'I', 'neither', 'know', 'nor', 'desire', 'to', 'know', ',', 'what', 'it', 'really', 'is', ',', 'I', 'am', 'sure', 'it', 'must', 'be', 'a', 'good', 'one.', '”', 'Here', 'they', 'were', 'interrupted', 'by', 'the', 'entrance', 'of', 'a', 'third', 'person', ',', 'and', 'Elinor', 'withdrew', 'to', 'think', 'it', 'all', 'over', 'in', 'private', ',', 'to', 'wish', 'success', 'to', 'her', 'friend', ',', 'and', 'yet', 'in', 'wishing', 'it', ',', 'to', 'feel', 'a', 'pang', 'for', 'Willoughby', '.', 'CHAPTER', 'XLVI', '.', 'Marianne', '’', 's', 'illness', ',', 'though', 'weakening', 'in', 'its', 'kind', ',', 'had', 'not', 'been', 'long', 'enough', 'to', 'make', 'her', 'recovery', 'slow', ';', 'and', 'with', 'youth', ',', 'natural', 'strength', ',', 'and', 'her', 'mother', '’', 's', 'presence', 'in', 'aid', ',', 'it', 'proceeded', 'so', 'smoothly', 'as', 'to', 'enable', 'her', 'to', 'remove', ',', 'within', 'four', 'days', 'after', 'the', 'arrival', 'of', 'the', 'latter', ',', 'into', 'Mrs.', 'Palmer', '’', 's', 'dressing-room', '.', 'When', 'there', ',', 'at', 'her', 'own', 'particular', 'request', ',', 'for', 'she', 'was', 'impatient', 'to', 'pour', 'forth', 'her', 'thanks', 'to', 'him', 'for', 'fetching', 'her', 'mother', ',', 'Colonel', 'Brandon', 'was', 'invited', 'to', 'visit', 'her', '.', 'His', 'emotion', 'on', 'entering', 'the', 'room', ',', 'in', 'seeing', 'her', 'altered', 'looks', ',', 'and', 'in', 'receiving', 'the', 'pale', 'hand', 'which', 'she', 'immediately', 'held', 'out', 'to', 'him', ',', 'was', 'such', ',', 'as', ',', 'in', 'Elinor', '’', 's', 'conjecture', ',', 'must', 'arise', 'from', 'something', 'more', 'than', 'his', 'affection', 'for', 'Marianne', ',', 'or', 'the', 'consciousness', 'of', 'its', 'being', 'known', 'to', 'others', ';', 'and', 'she', 'soon', 'discovered', 'in', 'his', 'melancholy', 'eye', 'and', 'varying', 'complexion', 'as', 'he', 'looked', 'at', 'her', 'sister', ',', 'the', 'probable', 'recurrence', 'of', 'many', 'past', 'scenes', 'of', 'misery', 'to', 'his', 'mind', ',', 'brought', 'back', 'by', 'that', 'resemblance', 'between', 'Marianne', 'and', 'Eliza', 'already', 'acknowledged', ',', 'and', 'now', 'strengthened', 'by', 'the', 'hollow', 'eye', ',', 'the', 'sickly', 'skin', ',', 'the', 'posture', 'of', 'reclining', 'weakness', ',', 'and', 'the', 'warm', 'acknowledgment', 'of', 'peculiar', 'obligation', '.', 'Mrs.', 'Dashwood', ',', 'not', 'less', 'watchful', 'of', 'what', 'passed', 'than', 'her', 'daughter', ',', 'but', 'with', 'a', 'mind', 'very', 'differently', 'influenced', ',', 'and', 'therefore', 'watching', 'to', 'very', 'different', 'effect', ',', 'saw', 'nothing', 'in', 'the', 'Colonel', '’', 's', 'behaviour', 'but', 'what', 'arose', 'from', 'the', 'most', 'simple', 'and', 'self-evident', 'sensations', ',', 'while', 'in', 'the', 'actions', 'and', 'words', 'of', 'Marianne', 'she', 'persuaded', 'herself', 'to', 'think', 'that', 'something', 'more', 'than', 'gratitude', 'already', 'dawned', '.', 'At', 'the', 'end', 'of', 'another', 'day', 'or', 'two', ',', 'Marianne', 'growing', 'visibly', 'stronger', 'every', 'twelve', 'hours', ',', 'Mrs.', 'Dashwood', ',', 'urged', 'equally', 'by', 'her', 'own', 'and', 'her', 'daughter', '’', 's', 'wishes', ',', 'began', 'to', 'talk', 'of', 'removing', 'to', 'Barton', '.', 'On', '_her_', 'measures', 'depended', 'those', 'of', 'her', 'two', 'friends', ';', 'Mrs.', 'Jennings', 'could', 'not', 'quit', 'Cleveland', 'during', 'the', 'Dashwoods', '’', 'stay', ';', 'and', 'Colonel', 'Brandon', 'was', 'soon', 'brought', ',', 'by', 'their', 'united', 'request', ',', 'to', 'consider', 'his', 'own', 'abode', 'there', 'as', 'equally', 'determinate', ',', 'if', 'not', 'equally', 'indispensable', '.', 'At', 'his', 'and', 'Mrs.', 'Jennings', '’', 's', 'united', 'request', 'in', 'return', ',', 'Mrs.', 'Dashwood', 'was', 'prevailed', 'on', 'to', 'accept', 'the', 'use', 'of', 'his', 'carriage', 'on', 'her', 'journey', 'back', ',', 'for', 'the', 'better', 'accommodation', 'of', 'her', 'sick', 'child', ';', 'and', 'the', 'Colonel', ',', 'at', 'the', 'joint', 'invitation', 'of', 'Mrs.', 'Dashwood', 'and', 'Mrs.', 'Jennings', ',', 'whose', 'active', 'good-nature', 'made', 'her', 'friendly', 'and', 'hospitable', 'for', 'other', 'people', 'as', 'well', 'as', 'herself', ',', 'engaged', 'with', 'pleasure', 'to', 'redeem', 'it', 'by', 'a', 'visit', 'at', 'the', 'cottage', ',', 'in', 'the', 'course', 'of', 'a', 'few', 'weeks', '.', 'The', 'day', 'of', 'separation', 'and', 'departure', 'arrived', ';', 'and', 'Marianne', ',', 'after', 'taking', 'so', 'particular', 'and', 'lengthened', 'a', 'leave', 'of', 'Mrs.', 'Jennings', ',', 'one', 'so', 'earnestly', 'grateful', ',', 'so', 'full', 'of', 'respect', 'and', 'kind', 'wishes', 'as', 'seemed', 'due', 'to', 'her', 'own', 'heart', 'from', 'a', 'secret', 'acknowledgment', 'of', 'past', 'inattention', ',', 'and', 'bidding', 'Colonel', 'Brandon', 'farewell', 'with', 'a', 'cordiality', 'of', 'a', 'friend', ',', 'was', 'carefully', 'assisted', 'by', 'him', 'into', 'the', 'carriage', ',', 'of', 'which', 'he', 'seemed', 'anxious', 'that', 'she', 'should', 'engross', 'at', 'least', 'half', '.', 'Mrs.', 'Dashwood', 'and', 'Elinor', 'then', 'followed', ',', 'and', 'the', 'others', 'were', 'left', 'by', 'themselves', ',', 'to', 'talk', 'of', 'the', 'travellers', ',', 'and', 'feel', 'their', 'own', 'dullness', ',', 'till', 'Mrs.', 'Jennings', 'was', 'summoned', 'to', 'her', 'chaise', 'to', 'take', 'comfort', 'in', 'the', 'gossip', 'of', 'her', 'maid', 'for', 'the', 'loss', 'of', 'her', 'two', 'young', 'companions', ';', 'and', 'Colonel', 'Brandon', 'immediately', 'afterwards', 'took', 'his', 'solitary', 'way', 'to', 'Delaford', '.', 'The', 'Dashwoods', 'were', 'two', 'days', 'on', 'the', 'road', ',', 'and', 'Marianne', 'bore', 'her', 'journey', 'on', 'both', ',', 'without', 'essential', 'fatigue', '.', 'Every', 'thing', 'that', 'the', 'most', 'zealous', 'affection', ',', 'the', 'most', 'solicitous', 'care', 'could', 'do', 'to', 'render', 'her', 'comfortable', ',', 'was', 'the', 'office', 'of', 'each', 'watchful', 'companion', ',', 'and', 'each', 'found', 'their', 'reward', 'in', 'her', 'bodily', 'ease', ',', 'and', 'her', 'calmness', 'of', 'spirits', '.', 'To', 'Elinor', ',', 'the', 'observation', 'of', 'the', 'latter', 'was', 'particularly', 'grateful', '.', 'She', ',', 'who', 'had', 'seen', 'her', 'week', 'after', 'week', 'so', 'constantly', 'suffering', ',', 'oppressed', 'by', 'anguish', 'of', 'heart', 'which', 'she', 'had', 'neither', 'courage', 'to', 'speak', 'of', ',', 'nor', 'fortitude', 'to', 'conceal', ',', 'now', 'saw', 'with', 'a', 'joy', ',', 'which', 'no', 'other', 'could', 'equally', 'share', ',', 'an', 'apparent', 'composure', 'of', 'mind', ',', 'which', ',', 'in', 'being', 'the', 'result', 'as', 'she', 'trusted', 'of', 'serious', 'reflection', ',', 'must', 'eventually', 'lead', 'her', 'to', 'contentment', 'and', 'cheerfulness', '.', 'As', 'they', 'approached', 'Barton', ',', 'indeed', ',', 'and', 'entered', 'on', 'scenes', 'of', 'which', 'every', 'field', 'and', 'every', 'tree', 'brought', 'some', 'peculiar', ',', 'some', 'painful', 'recollection', ',', 'she', 'grew', 'silent', 'and', 'thoughtful', ',', 'and', 'turning', 'away', 'her', 'face', 'from', 'their', 'notice', ',', 'sat', 'earnestly', 'gazing', 'through', 'the', 'window', '.', 'But', 'here', ',', 'Elinor', 'could', 'neither', 'wonder', 'nor', 'blame', ';', 'and', 'when', 'she', 'saw', ',', 'as', 'she', 'assisted', 'Marianne', 'from', 'the', 'carriage', ',', 'that', 'she', 'had', 'been', 'crying', ',', 'she', 'saw', 'only', 'an', 'emotion', 'too', 'natural', 'in', 'itself', 'to', 'raise', 'any', 'thing', 'less', 'tender', 'than', 'pity', ',', 'and', 'in', 'its', 'unobtrusiveness', 'entitled', 'to', 'praise', '.', 'In', 'the', 'whole', 'of', 'her', 'subsequent', 'manner', ',', 'she', 'traced', 'the', 'direction', 'of', 'a', 'mind', 'awakened', 'to', 'reasonable', 'exertion', ';', 'for', 'no', 'sooner', 'had', 'they', 'entered', 'their', 'common', 'sitting-room', ',', 'than', 'Marianne', 'turned', 'her', 'eyes', 'around', 'it', 'with', 'a', 'look', 'of', 'resolute', 'firmness', ',', 'as', 'if', 'determined', 'at', 'once', 'to', 'accustom', 'herself', 'to', 'the', 'sight', 'of', 'every', 'object', 'with', 'which', 'the', 'remembrance', 'of', 'Willoughby', 'could', 'be', 'connected.—She', 'said', 'little', ',', 'but', 'every', 'sentence', 'aimed', 'at', 'cheerfulness', ',', 'and', 'though', 'a', 'sigh', 'sometimes', 'escaped', 'her', ',', 'it', 'never', 'passed', 'away', 'without', 'the', 'atonement', 'of', 'a', 'smile', '.', 'After', 'dinner', 'she', 'would', 'try', 'her', 'piano-forte', '.', 'She', 'went', 'to', 'it', ';', 'but', 'the', 'music', 'on', 'which', 'her', 'eye', 'first', 'rested', 'was', 'an', 'opera', ',', 'procured', 'for', 'her', 'by', 'Willoughby', ',', 'containing', 'some', 'of', 'their', 'favourite', 'duets', ',', 'and', 'bearing', 'on', 'its', 'outward', 'leaf', 'her', 'own', 'name', 'in', 'his', 'hand-writing.—That', 'would', 'not', 'do.—She', 'shook', 'her', 'head', ',', 'put', 'the', 'music', 'aside', ',', 'and', 'after', 'running', 'over', 'the', 'keys', 'for', 'a', 'minute', ',', 'complained', 'of', 'feebleness', 'in', 'her', 'fingers', ',', 'and', 'closed', 'the', 'instrument', 'again', ';', 'declaring', 'however', 'with', 'firmness', 'as', 'she', 'did', 'so', ',', 'that', 'she', 'should', 'in', 'future', 'practice', 'much', '.', 'The', 'next', 'morning', 'produced', 'no', 'abatement', 'in', 'these', 'happy', 'symptoms', '.', 'On', 'the', 'contrary', ',', 'with', 'a', 'mind', 'and', 'body', 'alike', 'strengthened', 'by', 'rest', ',', 'she', 'looked', 'and', 'spoke', 'with', 'more', 'genuine', 'spirit', ',', 'anticipating', 'the', 'pleasure', 'of', 'Margaret', '’', 's', 'return', ',', 'and', 'talking', 'of', 'the', 'dear', 'family', 'party', 'which', 'would', 'then', 'be', 'restored', ',', 'of', 'their', 'mutual', 'pursuits', 'and', 'cheerful', 'society', ',', 'as', 'the', 'only', 'happiness', 'worth', 'a', 'wish', '.', '“', 'When', 'the', 'weather', 'is', 'settled', ',', 'and', 'I', 'have', 'recovered', 'my', 'strength', ',', '”', 'said', 'she', ',', '“', 'we', 'will', 'take', 'long', 'walks', 'together', 'every', 'day', '.', 'We', 'will', 'walk', 'to', 'the', 'farm', 'at', 'the', 'edge', 'of', 'the', 'down', ',', 'and', 'see', 'how', 'the', 'children', 'go', 'on', ';', 'we', 'will', 'walk', 'to', 'Sir', 'John', '’', 's', 'new', 'plantations', 'at', 'Barton', 'Cross', ',', 'and', 'the', 'Abbeyland', ';', 'and', 'we', 'will', 'often', 'go', 'to', 'the', 'old', 'ruins', 'of', 'the', 'Priory', ',', 'and', 'try', 'to', 'trace', 'its', 'foundations', 'as', 'far', 'as', 'we', 'are', 'told', 'they', 'once', 'reached', '.', 'I', 'know', 'we', 'shall', 'be', 'happy', '.', 'I', 'know', 'the', 'summer', 'will', 'pass', 'happily', 'away', '.', 'I', 'mean', 'never', 'to', 'be', 'later', 'in', 'rising', 'than', 'six', ',', 'and', 'from', 'that', 'time', 'till', 'dinner', 'I', 'shall', 'divide', 'every', 'moment', 'between', 'music', 'and', 'reading', '.', 'I', 'have', 'formed', 'my', 'plan', ',', 'and', 'am', 'determined', 'to', 'enter', 'on', 'a', 'course', 'of', 'serious', 'study', '.', 'Our', 'own', 'library', 'is', 'too', 'well', 'known', 'to', 'me', ',', 'to', 'be', 'resorted', 'to', 'for', 'any', 'thing', 'beyond', 'mere', 'amusement', '.', 'But', 'there', 'are', 'many', 'works', 'well', 'worth', 'reading', 'at', 'the', 'Park', ';', 'and', 'there', 'are', 'others', 'of', 'more', 'modern', 'production', 'which', 'I', 'know', 'I', 'can', 'borrow', 'of', 'Colonel', 'Brandon', '.', 'By', 'reading', 'only', 'six', 'hours', 'a-day', ',', 'I', 'shall', 'gain', 'in', 'the', 'course', 'of', 'a', 'twelve-month', 'a', 'great', 'deal', 'of', 'instruction', 'which', 'I', 'now', 'feel', 'myself', 'to', 'want.', '”', 'Elinor', 'honoured', 'her', 'for', 'a', 'plan', 'which', 'originated', 'so', 'nobly', 'as', 'this', ';', 'though', 'smiling', 'to', 'see', 'the', 'same', 'eager', 'fancy', 'which', 'had', 'been', 'leading', 'her', 'to', 'the', 'extreme', 'of', 'languid', 'indolence', 'and', 'selfish', 'repining', ',', 'now', 'at', 'work', 'in', 'introducing', 'excess', 'into', 'a', 'scheme', 'of', 'such', 'rational', 'employment', 'and', 'virtuous', 'self-control', '.', 'Her', 'smile', 'however', 'changed', 'to', 'a', 'sigh', 'when', 'she', 'remembered', 'that', 'promise', 'to', 'Willoughby', 'was', 'yet', 'unfulfilled', ',', 'and', 'feared', 'she', 'had', 'that', 'to', 'communicate', 'which', 'might', 'again', 'unsettle', 'the', 'mind', 'of', 'Marianne', ',', 'and', 'ruin', 'at', 'least', 'for', 'a', 'time', 'this', 'fair', 'prospect', 'of', 'busy', 'tranquillity', '.', 'Willing', 'therefore', 'to', 'delay', 'the', 'evil', 'hour', ',', 'she', 'resolved', 'to', 'wait', 'till', 'her', 'sister', '’', 's', 'health', 'were', 'more', 'secure', ',', 'before', 'she', 'appointed', 'it', '.', 'But', 'the', 'resolution', 'was', 'made', 'only', 'to', 'be', 'broken', '.', 'Marianne', 'had', 'been', 'two', 'or', 'three', 'days', 'at', 'home', ',', 'before', 'the', 'weather', 'was', 'fine', 'enough', 'for', 'an', 'invalid', 'like', 'herself', 'to', 'venture', 'out', '.', 'But', 'at', 'last', 'a', 'soft', ',', 'genial', 'morning', 'appeared', ';', 'such', 'as', 'might', 'tempt', 'the', 'daughter', '’', 's', 'wishes', 'and', 'the', 'mother', '’', 's', 'confidence', ';', 'and', 'Marianne', ',', 'leaning', 'on', 'Elinor', '’', 's', 'arm', ',', 'was', 'authorised', 'to', 'walk', 'as', 'long', 'as', 'she', 'could', 'without', 'fatigue', ',', 'in', 'the', 'lane', 'before', 'the', 'house', '.', 'The', 'sisters', 'set', 'out', 'at', 'a', 'pace', ',', 'slow', 'as', 'the', 'feebleness', 'of', 'Marianne', 'in', 'an', 'exercise', 'hitherto', 'untried', 'since', 'her', 'illness', 'required', ';', 'and', 'they', 'had', 'advanced', 'only', 'so', 'far', 'beyond', 'the', 'house', 'as', 'to', 'admit', 'a', 'full', 'view', 'of', 'the', 'hill', ',', 'the', 'important', 'hill', 'behind', ',', 'when', 'pausing', 'with', 'her', 'eyes', 'turned', 'towards', 'it', ',', 'Marianne', 'calmly', 'said', ',', '—', '“', 'There', ',', 'exactly', 'there', ',', '”', '—pointing', 'with', 'one', 'hand', ',', '“', 'on', 'that', 'projecting', 'mound', ',', '—there', 'I', 'fell', ';', 'and', 'there', 'I', 'first', 'saw', 'Willoughby.', '”', 'Her', 'voice', 'sunk', 'with', 'the', 'word', ',', 'but', 'presently', 'reviving', 'she', 'added', ',', '“', 'I', 'am', 'thankful', 'to', 'find', 'that', 'I', 'can', 'look', 'with', 'so', 'little', 'pain', 'on', 'the', 'spot', '!', 'shall', 'we', 'ever', 'talk', 'on', 'that', 'subject', ',', 'Elinor', '?', '”', 'hesitatingly', 'it', 'was', 'said', '.', '“', 'Or', 'will', 'it', 'be', 'wrong', '?', 'I', '_can_', 'talk', 'of', 'it', 'now', ',', 'I', 'hope', ',', 'as', 'I', 'ought', 'to', 'do.', '”', 'Elinor', 'tenderly', 'invited', 'her', 'to', 'be', 'open', '.', '“', 'As', 'for', 'regret', ',', '”', 'said', 'Marianne', ',', '“', 'I', 'have', 'done', 'with', 'that', ',', 'as', 'far', 'as', '_he_', 'is', 'concerned', '.', 'I', 'do', 'not', 'mean', 'to', 'talk', 'to', 'you', 'of', 'what', 'my', 'feelings', 'have', 'been', 'for', 'him', ',', 'but', 'what', 'they', 'are', '_now_', '.', 'At', 'present', ',', 'if', 'I', 'could', 'be', 'satisfied', 'on', 'one', 'point', ',', 'if', 'I', 'could', 'be', 'allowed', 'to', 'think', 'that', 'he', 'was', 'not', '_always_', 'acting', 'a', 'part', ',', 'not', '_always_', 'deceiving', 'me', ';', 'but', 'above', 'all', ',', 'if', 'I', 'could', 'be', 'assured', 'that', 'he', 'never', 'was', 'so', '_very_', 'wicked', 'as', 'my', 'fears', 'have', 'sometimes', 'fancied', 'him', ',', 'since', 'the', 'story', 'of', 'that', 'unfortunate', 'girl—', '”', 'She', 'stopt', '.', 'Elinor', 'joyfully', 'treasured', 'her', 'words', 'as', 'she', 'answered', ',', '“', 'If', 'you', 'could', 'be', 'assured', 'of', 'that', ',', 'you', 'think', 'you', 'should', 'be', 'easy.', '”', '“', 'Yes', '.', 'My', 'peace', 'of', 'mind', 'is', 'doubly', 'involved', 'in', 'it', ';', 'for', 'not', 'only', 'is', 'it', 'horrible', 'to', 'suspect', 'a', 'person', ',', 'who', 'has', 'been', 'what', '_he_', 'has', 'been', 'to', '_me_', ',', 'of', 'such', 'designs', ',', 'but', 'what', 'must', 'it', 'make', 'me', 'appear', 'to', 'myself', '?', 'What', 'in', 'a', 'situation', 'like', 'mine', ',', 'but', 'a', 'most', 'shamefully', 'unguarded', 'affection', 'could', 'expose', 'me', 'to—', '”', '“', 'How', 'then', ',', '”', 'asked', 'her', 'sister', ',', '“', 'would', 'you', 'account', 'for', 'his', 'behaviour', '?', '”', '“', 'I', 'would', 'suppose', 'him', ',', '—Oh', ',', 'how', 'gladly', 'would', 'I', 'suppose', 'him', ',', 'only', 'fickle', ',', 'very', ',', 'very', 'fickle.', '”', 'Elinor', 'said', 'no', 'more', '.', 'She', 'was', 'debating', 'within', 'herself', 'on', 'the', 'eligibility', 'of', 'beginning', 'her', 'story', 'directly', ',', 'or', 'postponing', 'it', 'till', 'Marianne', 'were', 'in', 'stronger', 'health', ';', '—and', 'they', 'crept', 'on', 'for', 'a', 'few', 'minutes', 'in', 'silence', '.', '“', 'I', 'am', 'not', 'wishing', 'him', 'too', 'much', 'good', ',', '”', 'said', 'Marianne', 'at', 'last', 'with', 'a', 'sigh', ',', '“', 'when', 'I', 'wish', 'his', 'secret', 'reflections', 'may', 'be', 'no', 'more', 'unpleasant', 'than', 'my', 'own', '.', 'He', 'will', 'suffer', 'enough', 'in', 'them.', '”', '“', 'Do', 'you', 'compare', 'your', 'conduct', 'with', 'his', '?', '”', '“', 'No', '.', 'I', 'compare', 'it', 'with', 'what', 'it', 'ought', 'to', 'have', 'been', ';', 'I', 'compare', 'it', 'with', 'yours.', '”', '“', 'Our', 'situations', 'have', 'borne', 'little', 'resemblance.', '”', '“', 'They', 'have', 'borne', 'more', 'than', 'our', 'conduct', '.', 'Do', 'not', ',', 'my', 'dearest', 'Elinor', ',', 'let', 'your', 'kindness', 'defend', 'what', 'I', 'know', 'your', 'judgment', 'must', 'censure', '.', 'My', 'illness', 'has', 'made', 'me', 'think', '.', 'It', 'has', 'given', 'me', 'leisure', 'and', 'calmness', 'for', 'serious', 'recollection', '.', 'Long', 'before', 'I', 'was', 'enough', 'recovered', 'to', 'talk', ',', 'I', 'was', 'perfectly', 'able', 'to', 'reflect', '.', 'I', 'considered', 'the', 'past', ':', 'I', 'saw', 'in', 'my', 'own', 'behaviour', ',', 'since', 'the', 'beginning', 'of', 'our', 'acquaintance', 'with', 'him', 'last', 'autumn', ',', 'nothing', 'but', 'a', 'series', 'of', 'imprudence', 'towards', 'myself', ',', 'and', 'want', 'of', 'kindness', 'to', 'others', '.', 'I', 'saw', 'that', 'my', 'own', 'feelings', 'had', 'prepared', 'my', 'sufferings', ',', 'and', 'that', 'my', 'want', 'of', 'fortitude', 'under', 'them', 'had', 'almost', 'led', 'me', 'to', 'the', 'grave', '.', 'My', 'illness', ',', 'I', 'well', 'knew', ',', 'had', 'been', 'entirely', 'brought', 'on', 'by', 'myself', 'by', 'such', 'negligence', 'of', 'my', 'own', 'health', ',', 'as', 'I', 'had', 'felt', 'even', 'at', 'the', 'time', 'to', 'be', 'wrong', '.', 'Had', 'I', 'died', ',', 'it', 'would', 'have', 'been', 'self-destruction', '.', 'I', 'did', 'not', 'know', 'my', 'danger', 'till', 'the', 'danger', 'was', 'removed', ';', 'but', 'with', 'such', 'feelings', 'as', 'these', 'reflections', 'gave', 'me', ',', 'I', 'wonder', 'at', 'my', 'recovery', ',', '—wonder', 'that', 'the', 'very', 'eagerness', 'of', 'my', 'desire', 'to', 'live', ',', 'to', 'have', 'time', 'for', 'atonement', 'to', 'my', 'God', ',', 'and', 'to', 'you', 'all', ',', 'did', 'not', 'kill', 'me', 'at', 'once', '.', 'Had', 'I', 'died', ',', 'in', 'what', 'peculiar', 'misery', 'should', 'I', 'have', 'left', 'you', ',', 'my', 'nurse', ',', 'my', 'friend', ',', 'my', 'sister', '!', 'You', ',', 'who', 'had', 'seen', 'all', 'the', 'fretful', 'selfishness', 'of', 'my', 'latter', 'days', ';', 'who', 'had', 'known', 'all', 'the', 'murmurings', 'of', 'my', 'heart', '!', 'How', 'should', 'I', 'have', 'lived', 'in', '_your_', 'remembrance', '!', 'My', 'mother', 'too', '!', 'How', 'could', 'you', 'have', 'consoled', 'her', '!', 'I', 'can', 'not', 'express', 'my', 'own', 'abhorrence', 'of', 'myself', '.', 'Whenever', 'I', 'looked', 'towards', 'the', 'past', ',', 'I', 'saw', 'some', 'duty', 'neglected', ',', 'or', 'some', 'failing', 'indulged', '.', 'Every', 'body', 'seemed', 'injured', 'by', 'me', '.', 'The', 'kindness', ',', 'the', 'unceasing', 'kindness', 'of', 'Mrs.', 'Jennings', ',', 'I', 'had', 'repaid', 'with', 'ungrateful', 'contempt', '.', 'To', 'the', 'Middletons', ',', 'to', 'the', 'Palmers', ',', 'the', 'Steeles', ',', 'to', 'every', 'common', 'acquaintance', 'even', ',', 'I', 'had', 'been', 'insolent', 'and', 'unjust', ';', 'with', 'a', 'heart', 'hardened', 'against', 'their', 'merits', ',', 'and', 'a', 'temper', 'irritated', 'by', 'their', 'very', 'attention', '.', 'To', 'John', ',', 'to', 'Fanny', ',', 'yes', ',', 'even', 'to', 'them', ',', 'little', 'as', 'they', 'deserve', ',', 'I', 'had', 'given', 'less', 'than', 'their', 'due', '.', 'But', 'you', ',', 'you', 'above', 'all', ',', 'above', 'my', 'mother', ',', 'had', 'been', 'wronged', 'by', 'me', '.', 'I', ',', 'and', 'only', 'I', ',', 'knew', 'your', 'heart', 'and', 'its', 'sorrows', ';', 'yet', 'to', 'what', 'did', 'it', 'influence', 'me', '?', '—not', 'to', 'any', 'compassion', 'that', 'could', 'benefit', 'you', 'or', 'myself.—Your', 'example', 'was', 'before', 'me', ';', 'but', 'to', 'what', 'avail', '?', 'Was', 'I', 'more', 'considerate', 'of', 'you', 'and', 'your', 'comfort', '?', 'Did', 'I', 'imitate', 'your', 'forbearance', ',', 'or', 'lessen', 'your', 'restraints', ',', 'by', 'taking', 'any', 'part', 'in', 'those', 'offices', 'of', 'general', 'complaisance', 'or', 'particular', 'gratitude', 'which', 'you', 'had', 'hitherto', 'been', 'left', 'to', 'discharge', 'alone', '?', 'No', ';', 'not', 'less', 'when', 'I', 'knew', 'you', 'to', 'be', 'unhappy', ',', 'than', 'when', 'I', 'had', 'believed', 'you', 'at', 'ease', ',', 'did', 'I', 'turn', 'away', 'from', 'every', 'exertion', 'of', 'duty', 'or', 'friendship', ';', 'scarcely', 'allowing', 'sorrow', 'to', 'exist', 'but', 'with', 'me', ',', 'regretting', 'only', '_that_', 'heart', 'which', 'had', 'deserted', 'and', 'wronged', 'me', ',', 'and', 'leaving', 'you', ',', 'for', 'whom', 'I', 'professed', 'an', 'unbounded', 'affection', ',', 'to', 'be', 'miserable', 'for', 'my', 'sake.', '”', 'Here', 'ceased', 'the', 'rapid', 'flow', 'of', 'her', 'self-reproving', 'spirit', ';', 'and', 'Elinor', ',', 'impatient', 'to', 'soothe', ',', 'though', 'too', 'honest', 'to', 'flatter', ',', 'gave', 'her', 'instantly', 'that', 'praise', 'and', 'support', 'which', 'her', 'frankness', 'and', 'her', 'contrition', 'so', 'well', 'deserved', '.', 'Marianne', 'pressed', 'her', 'hand', 'and', 'replied', ',', '—', '“', 'You', 'are', 'very', 'good.—The', 'future', 'must', 'be', 'my', 'proof', '.', 'I', 'have', 'laid', 'down', 'my', 'plan', ',', 'and', 'if', 'I', 'am', 'capable', 'of', 'adhering', 'to', 'it—my', 'feelings', 'shall', 'be', 'governed', 'and', 'my', 'temper', 'improved', '.', 'They', 'shall', 'no', 'longer', 'worry', 'others', ',', 'nor', 'torture', 'myself', '.', 'I', 'shall', 'now', 'live', 'solely', 'for', 'my', 'family', '.', 'You', ',', 'my', 'mother', ',', 'and', 'Margaret', ',', 'must', 'henceforth', 'be', 'all', 'the', 'world', 'to', 'me', ';', 'you', 'will', 'share', 'my', 'affections', 'entirely', 'between', 'you', '.', 'From', 'you', ',', 'from', 'my', 'home', ',', 'I', 'shall', 'never', 'again', 'have', 'the', 'smallest', 'incitement', 'to', 'move', ';', 'and', 'if', 'I', 'do', 'mix', 'in', 'other', 'society', ',', 'it', 'will', 'be', 'only', 'to', 'show', 'that', 'my', 'spirit', 'is', 'humbled', ',', 'my', 'heart', 'amended', ',', 'and', 'that', 'I', 'can', 'practise', 'the', 'civilities', ',', 'the', 'lesser', 'duties', 'of', 'life', ',', 'with', 'gentleness', 'and', 'forbearance', '.', 'As', 'for', 'Willoughby—to', 'say', 'that', 'I', 'shall', 'soon', 'or', 'that', 'I', 'shall', 'ever', 'forget', 'him', ',', 'would', 'be', 'idle', '.', 'His', 'remembrance', 'can', 'be', 'overcome', 'by', 'no', 'change', 'of', 'circumstances', 'or', 'opinions', '.', 'But', 'it', 'shall', 'be', 'regulated', ',', 'it', 'shall', 'be', 'checked', 'by', 'religion', ',', 'by', 'reason', ',', 'by', 'constant', 'employment.', '”', 'She', 'paused—and', 'added', 'in', 'a', 'low', 'voice', ',', '“', 'If', 'I', 'could', 'but', 'know', '_his_', 'heart', ',', 'everything', 'would', 'become', 'easy.', '”', 'Elinor', ',', 'who', 'had', 'now', 'been', 'for', 'some', 'time', 'reflecting', 'on', 'the', 'propriety', 'or', 'impropriety', 'of', 'speedily', 'hazarding', 'her', 'narration', ',', 'without', 'feeling', 'at', 'all', 'nearer', 'decision', 'than', 'at', 'first', ',', 'heard', 'this', ';', 'and', 'perceiving', 'that', 'as', 'reflection', 'did', 'nothing', ',', 'resolution', 'must', 'do', 'all', ',', 'soon', 'found', 'herself', 'leading', 'to', 'the', 'fact', '.', 'She', 'managed', 'the', 'recital', ',', 'as', 'she', 'hoped', ',', 'with', 'address', ';', 'prepared', 'her', 'anxious', 'listener', 'with', 'caution', ';', 'related', 'simply', 'and', 'honestly', 'the', 'chief', 'points', 'on', 'which', 'Willoughby', 'grounded', 'his', 'apology', ';', 'did', 'justice', 'to', 'his', 'repentance', ',', 'and', 'softened', 'only', 'his', 'protestations', 'of', 'present', 'regard', '.', 'Marianne', 'said', 'not', 'a', 'word.—She', 'trembled', ',', 'her', 'eyes', 'were', 'fixed', 'on', 'the', 'ground', ',', 'and', 'her', 'lips', 'became', 'whiter', 'than', 'even', 'sickness', 'had', 'left', 'them', '.', 'A', 'thousand', 'inquiries', 'sprung', 'up', 'from', 'her', 'heart', ',', 'but', 'she', 'dared', 'not', 'urge', 'one', '.', 'She', 'caught', 'every', 'syllable', 'with', 'panting', 'eagerness', ';', 'her', 'hand', ',', 'unknowingly', 'to', 'herself', ',', 'closely', 'pressed', 'her', 'sister', '’', 's', ',', 'and', 'tears', 'covered', 'her', 'cheeks', '.', 'Elinor', ',', 'dreading', 'her', 'being', 'tired', ',', 'led', 'her', 'towards', 'home', ';', 'and', 'till', 'they', 'reached', 'the', 'door', 'of', 'the', 'cottage', ',', 'easily', 'conjecturing', 'what', 'her', 'curiosity', 'must', 'be', 'though', 'no', 'question', 'was', 'suffered', 'to', 'speak', 'it', ',', 'talked', 'of', 'nothing', 'but', 'Willoughby', ',', 'and', 'their', 'conversation', 'together', ';', 'and', 'was', 'carefully', 'minute', 'in', 'every', 'particular', 'of', 'speech', 'and', 'look', ',', 'where', 'minuteness', 'could', 'be', 'safely', 'indulged', '.', 'As', 'soon', 'as', 'they', 'entered', 'the', 'house', ',', 'Marianne', 'with', 'a', 'kiss', 'of', 'gratitude', 'and', 'these', 'two', 'words', 'just', 'articulate', 'through', 'her', 'tears', ',', '“', 'Tell', 'mama', ',', '”', 'withdrew', 'from', 'her', 'sister', 'and', 'walked', 'slowly', 'up', 'stairs', '.', 'Elinor', 'would', 'not', 'attempt', 'to', 'disturb', 'a', 'solitude', 'so', 'reasonable', 'as', 'what', 'she', 'now', 'sought', ';', 'and', 'with', 'a', 'mind', 'anxiously', 'pre-arranging', 'its', 'result', ',', 'and', 'a', 'resolution', 'of', 'reviving', 'the', 'subject', 'again', ',', 'should', 'Marianne', 'fail', 'to', 'do', 'it', ',', 'she', 'turned', 'into', 'the', 'parlour', 'to', 'fulfill', 'her', 'parting', 'injunction', '.', 'CHAPTER', 'XLVII', '.', 'Mrs.', 'Dashwood', 'did', 'not', 'hear', 'unmoved', 'the', 'vindication', 'of', 'her', 'former', 'favourite', '.', 'She', 'rejoiced', 'in', 'his', 'being', 'cleared', 'from', 'some', 'part', 'of', 'his', 'imputed', 'guilt', ';', '—she', 'was', 'sorry', 'for', 'him', ';', '—she', 'wished', 'him', 'happy', '.', 'But', 'the', 'feelings', 'of', 'the', 'past', 'could', 'not', 'be', 'recalled.—Nothing', 'could', 'restore', 'him', 'with', 'a', 'faith', 'unbroken—a', 'character', 'unblemished', ',', 'to', 'Marianne', '.', 'Nothing', 'could', 'do', 'away', 'the', 'knowledge', 'of', 'what', 'the', 'latter', 'had', 'suffered', 'through', 'his', 'means', ',', 'nor', 'remove', 'the', 'guilt', 'of', 'his', 'conduct', 'towards', 'Eliza', '.', 'Nothing', 'could', 'replace', 'him', ',', 'therefore', ',', 'in', 'her', 'former', 'esteem', ',', 'nor', 'injure', 'the', 'interests', 'of', 'Colonel', 'Brandon', '.', 'Had', 'Mrs.', 'Dashwood', ',', 'like', 'her', 'daughter', ',', 'heard', 'Willoughby', '’', 's', 'story', 'from', 'himself—had', 'she', 'witnessed', 'his', 'distress', ',', 'and', 'been', 'under', 'the', 'influence', 'of', 'his', 'countenance', 'and', 'his', 'manner', ',', 'it', 'is', 'probable', 'that', 'her', 'compassion', 'would', 'have', 'been', 'greater', '.', 'But', 'it', 'was', 'neither', 'in', 'Elinor', '’', 's', 'power', ',', 'nor', 'in', 'her', 'wish', ',', 'to', 'rouse', 'such', 'feelings', 'in', 'another', ',', 'by', 'her', 'retailed', 'explanation', ',', 'as', 'had', 'at', 'first', 'been', 'called', 'forth', 'in', 'herself', '.', 'Reflection', 'had', 'given', 'calmness', 'to', 'her', 'judgment', ',', 'and', 'sobered', 'her', 'own', 'opinion', 'of', 'Willoughby', '’', 's', 'deserts', ';', '—she', 'wished', ',', 'therefore', ',', 'to', 'declare', 'only', 'the', 'simple', 'truth', ',', 'and', 'lay', 'open', 'such', 'facts', 'as', 'were', 'really', 'due', 'to', 'his', 'character', ',', 'without', 'any', 'embellishment', 'of', 'tenderness', 'to', 'lead', 'the', 'fancy', 'astray', '.', 'In', 'the', 'evening', ',', 'when', 'they', 'were', 'all', 'three', 'together', ',', 'Marianne', 'began', 'voluntarily', 'to', 'speak', 'of', 'him', 'again', ';', '—but', 'that', 'it', 'was', 'not', 'without', 'an', 'effort', ',', 'the', 'restless', ',', 'unquiet', 'thoughtfulness', 'in', 'which', 'she', 'had', 'been', 'for', 'some', 'time', 'previously', 'sitting—her', 'rising', 'colour', ',', 'as', 'she', 'spoke', ',', '—and', 'her', 'unsteady', 'voice', ',', 'plainly', 'showed', '.', '“', 'I', 'wish', 'to', 'assure', 'you', 'both', ',', '”', 'said', 'she', ',', '“', 'that', 'I', 'see', 'every', 'thing—as', 'you', 'can', 'desire', 'me', 'to', 'do.', '”', 'Mrs.', 'Dashwood', 'would', 'have', 'interrupted', 'her', 'instantly', 'with', 'soothing', 'tenderness', ',', 'had', 'not', 'Elinor', ',', 'who', 'really', 'wished', 'to', 'hear', 'her', 'sister', '’', 's', 'unbiased', 'opinion', ',', 'by', 'an', 'eager', 'sign', ',', 'engaged', 'her', 'silence', '.', 'Marianne', 'slowly', 'continued', ',', '—', '“', 'It', 'is', 'a', 'great', 'relief', 'to', 'me—what', 'Elinor', 'told', 'me', 'this', 'morning—I', 'have', 'now', 'heard', 'exactly', 'what', 'I', 'wished', 'to', 'hear.', '”', '—For', 'some', 'moments', 'her', 'voice', 'was', 'lost', ';', 'but', 'recovering', 'herself', ',', 'she', 'added', ',', 'and', 'with', 'greater', 'calmness', 'than', 'before—', '“', 'I', 'am', 'now', 'perfectly', 'satisfied', ',', 'I', 'wish', 'for', 'no', 'change', '.', 'I', 'never', 'could', 'have', 'been', 'happy', 'with', 'him', ',', 'after', 'knowing', ',', 'as', 'sooner', 'or', 'later', 'I', 'must', 'have', 'known', ',', 'all', 'this.—I', 'should', 'have', 'had', 'no', 'confidence', ',', 'no', 'esteem', '.', 'Nothing', 'could', 'have', 'done', 'it', 'away', 'to', 'my', 'feelings.', '”', '“', 'I', 'know', 'it—I', 'know', 'it', ',', '”', 'cried', 'her', 'mother', '.', '“', 'Happy', 'with', 'a', 'man', 'of', 'libertine', 'practices', '!', '—With', 'one', 'who', 'so', 'injured', 'the', 'peace', 'of', 'the', 'dearest', 'of', 'our', 'friends', ',', 'and', 'the', 'best', 'of', 'men', '!', '—No—my', 'Marianne', 'has', 'not', 'a', 'heart', 'to', 'be', 'made', 'happy', 'with', 'such', 'a', 'man', '!', '—Her', 'conscience', ',', 'her', 'sensitive', 'conscience', ',', 'would', 'have', 'felt', 'all', 'that', 'the', 'conscience', 'of', 'her', 'husband', 'ought', 'to', 'have', 'felt.', '”', 'Marianne', 'sighed', ',', 'and', 'repeated', ',', '“', 'I', 'wish', 'for', 'no', 'change.', '”', '“', 'You', 'consider', 'the', 'matter', ',', '”', 'said', 'Elinor', ',', '“', 'exactly', 'as', 'a', 'good', 'mind', 'and', 'a', 'sound', 'understanding', 'must', 'consider', 'it', ';', 'and', 'I', 'dare', 'say', 'you', 'perceive', ',', 'as', 'well', 'as', 'myself', ',', 'not', 'only', 'in', 'this', ',', 'but', 'in', 'many', 'other', 'circumstances', ',', 'reason', 'enough', 'to', 'be', 'convinced', 'that', 'your', 'marriage', 'must', 'have', 'involved', 'you', 'in', 'many', 'certain', 'troubles', 'and', 'disappointments', ',', 'in', 'which', 'you', 'would', 'have', 'been', 'poorly', 'supported', 'by', 'an', 'affection', ',', 'on', 'his', 'side', ',', 'much', 'less', 'certain', '.', 'Had', 'you', 'married', ',', 'you', 'must', 'have', 'been', 'always', 'poor', '.', 'His', 'expensiveness', 'is', 'acknowledged', 'even', 'by', 'himself', ',', 'and', 'his', 'whole', 'conduct', 'declares', 'that', 'self-denial', 'is', 'a', 'word', 'hardly', 'understood', 'by', 'him', '.', 'His', 'demands', 'and', 'your', 'inexperience', 'together', ',', 'on', 'a', 'small', ',', 'very', 'small', 'income', ',', 'must', 'have', 'brought', 'on', 'distresses', 'which', 'would', 'not', 'be', 'the', '_less_', 'grievous', 'to', 'you', ',', 'from', 'having', 'been', 'entirely', 'unknown', 'and', 'unthought', 'of', 'before', '.', '_Your_', 'sense', 'of', 'honour', 'and', 'honesty', 'would', 'have', 'led', 'you', ',', 'I', 'know', ',', 'when', 'aware', 'of', 'your', 'situation', ',', 'to', 'attempt', 'all', 'the', 'economy', 'that', 'would', 'appear', 'to', 'you', 'possible', ':', 'and', ',', 'perhaps', ',', 'as', 'long', 'as', 'your', 'frugality', 'retrenched', 'only', 'on', 'your', 'own', 'comfort', ',', 'you', 'might', 'have', 'been', 'suffered', 'to', 'practice', 'it', ',', 'but', 'beyond', 'that—and', 'how', 'little', 'could', 'the', 'utmost', 'of', 'your', 'single', 'management', 'do', 'to', 'stop', 'the', 'ruin', 'which', 'had', 'begun', 'before', 'your', 'marriage', '?', 'Beyond', '_that_', ',', 'had', 'you', 'endeavoured', ',', 'however', 'reasonably', ',', 'to', 'abridge', '_his_', 'enjoyments', ',', 'is', 'it', 'not', 'to', 'be', 'feared', ',', 'that', 'instead', 'of', 'prevailing', 'on', 'feelings', 'so', 'selfish', 'to', 'consent', 'to', 'it', ',', 'you', 'would', 'have', 'lessened', 'your', 'own', 'influence', 'on', 'his', 'heart', ',', 'and', 'made', 'him', 'regret', 'the', 'connection', 'which', 'had', 'involved', 'him', 'in', 'such', 'difficulties', '?', '”', 'Marianne', '’', 's', 'lips', 'quivered', ',', 'and', 'she', 'repeated', 'the', 'word', '“', 'Selfish', '?', '”', 'in', 'a', 'tone', 'that', 'implied—', '“', 'do', 'you', 'really', 'think', 'him', 'selfish', '?', '”', '“', 'The', 'whole', 'of', 'his', 'behaviour', ',', '”', 'replied', 'Elinor', ',', '“', 'from', 'the', 'beginning', 'to', 'the', 'end', 'of', 'the', 'affair', ',', 'has', 'been', 'grounded', 'on', 'selfishness', '.', 'It', 'was', 'selfishness', 'which', 'first', 'made', 'him', 'sport', 'with', 'your', 'affections', ';', 'which', 'afterwards', ',', 'when', 'his', 'own', 'were', 'engaged', ',', 'made', 'him', 'delay', 'the', 'confession', 'of', 'it', ',', 'and', 'which', 'finally', 'carried', 'him', 'from', 'Barton', '.', 'His', 'own', 'enjoyment', ',', 'or', 'his', 'own', 'ease', ',', 'was', ',', 'in', 'every', 'particular', ',', 'his', 'ruling', 'principle.', '”', '“', 'It', 'is', 'very', 'true', '.', '_My_', 'happiness', 'never', 'was', 'his', 'object.', '”', '“', 'At', 'present', ',', '”', 'continued', 'Elinor', ',', '“', 'he', 'regrets', 'what', 'he', 'has', 'done', '.', 'And', 'why', 'does', 'he', 'regret', 'it', '?', '—Because', 'he', 'finds', 'it', 'has', 'not', 'answered', 'towards', 'himself', '.', 'It', 'has', 'not', 'made', 'him', 'happy', '.', 'His', 'circumstances', 'are', 'now', 'unembarrassed—he', 'suffers', 'from', 'no', 'evil', 'of', 'that', 'kind', ';', 'and', 'he', 'thinks', 'only', 'that', 'he', 'has', 'married', 'a', 'woman', 'of', 'a', 'less', 'amiable', 'temper', 'than', 'yourself', '.', 'But', 'does', 'it', 'follow', 'that', 'had', 'he', 'married', 'you', ',', 'he', 'would', 'have', 'been', 'happy', '?', '—The', 'inconveniences', 'would', 'have', 'been', 'different', '.', 'He', 'would', 'then', 'have', 'suffered', 'under', 'the', 'pecuniary', 'distresses', 'which', ',', 'because', 'they', 'are', 'removed', ',', 'he', 'now', 'reckons', 'as', 'nothing', '.', 'He', 'would', 'have', 'had', 'a', 'wife', 'of', 'whose', 'temper', 'he', 'could', 'make', 'no', 'complaint', ',', 'but', 'he', 'would', 'have', 'been', 'always', 'necessitous—always', 'poor', ';', 'and', 'probably', 'would', 'soon', 'have', 'learned', 'to', 'rank', 'the', 'innumerable', 'comforts', 'of', 'a', 'clear', 'estate', 'and', 'good', 'income', 'as', 'of', 'far', 'more', 'importance', ',', 'even', 'to', 'domestic', 'happiness', ',', 'than', 'the', 'mere', 'temper', 'of', 'a', 'wife.', '”', '“', 'I', 'have', 'not', 'a', 'doubt', 'of', 'it', ',', '”', 'said', 'Marianne', ';', '“', 'and', 'I', 'have', 'nothing', 'to', 'regret—nothing', 'but', 'my', 'own', 'folly.', '”', '“', 'Rather', 'say', 'your', 'mother', '’', 's', 'imprudence', ',', 'my', 'child', ',', '”', 'said', 'Mrs.', 'Dashwood', ';', '“', '_she_', 'must', 'be', 'answerable.', '”', 'Marianne', 'would', 'not', 'let', 'her', 'proceed', ';', '—and', 'Elinor', ',', 'satisfied', 'that', 'each', 'felt', 'their', 'own', 'error', ',', 'wished', 'to', 'avoid', 'any', 'survey', 'of', 'the', 'past', 'that', 'might', 'weaken', 'her', 'sister', '’', 's', 'spirits', ';', 'she', ',', 'therefore', ',', 'pursuing', 'the', 'first', 'subject', ',', 'immediately', 'continued', ',', '“', '_One_', 'observation', 'may', ',', 'I', 'think', ',', 'be', 'fairly', 'drawn', 'from', 'the', 'whole', 'of', 'the', 'story—that', 'all', 'Willoughby', '’', 's', 'difficulties', 'have', 'arisen', 'from', 'the', 'first', 'offence', 'against', 'virtue', ',', 'in', 'his', 'behaviour', 'to', 'Eliza', 'Williams', '.', 'That', 'crime', 'has', 'been', 'the', 'origin', 'of', 'every', 'lesser', 'one', ',', 'and', 'of', 'all', 'his', 'present', 'discontents.', '”', 'Marianne', 'assented', 'most', 'feelingly', 'to', 'the', 'remark', ';', 'and', 'her', 'mother', 'was', 'led', 'by', 'it', 'to', 'an', 'enumeration', 'of', 'Colonel', 'Brandon', '’', 's', 'injuries', 'and', 'merits', ',', 'warm', 'as', 'friendship', 'and', 'design', 'could', 'unitedly', 'dictate', '.', 'Her', 'daughter', 'did', 'not', 'look', ',', 'however', ',', 'as', 'if', 'much', 'of', 'it', 'were', 'heard', 'by', 'her', '.', 'Elinor', ',', 'according', 'to', 'her', 'expectation', ',', 'saw', 'on', 'the', 'two', 'or', 'three', 'following', 'days', ',', 'that', 'Marianne', 'did', 'not', 'continue', 'to', 'gain', 'strength', 'as', 'she', 'had', 'done', ';', 'but', 'while', 'her', 'resolution', 'was', 'unsubdued', ',', 'and', 'she', 'still', 'tried', 'to', 'appear', 'cheerful', 'and', 'easy', ',', 'her', 'sister', 'could', 'safely', 'trust', 'to', 'the', 'effect', 'of', 'time', 'upon', 'her', 'health', '.', 'Margaret', 'returned', ',', 'and', 'the', 'family', 'were', 'again', 'all', 'restored', 'to', 'each', 'other', ',', 'again', 'quietly', 'settled', 'at', 'the', 'cottage', ';', 'and', 'if', 'not', 'pursuing', 'their', 'usual', 'studies', 'with', 'quite', 'so', 'much', 'vigour', 'as', 'when', 'they', 'first', 'came', 'to', 'Barton', ',', 'at', 'least', 'planning', 'a', 'vigorous', 'prosecution', 'of', 'them', 'in', 'future', '.', 'Elinor', 'grew', 'impatient', 'for', 'some', 'tidings', 'of', 'Edward', '.', 'She', 'had', 'heard', 'nothing', 'of', 'him', 'since', 'her', 'leaving', 'London', ',', 'nothing', 'new', 'of', 'his', 'plans', ',', 'nothing', 'certain', 'even', 'of', 'his', 'present', 'abode', '.', 'Some', 'letters', 'had', 'passed', 'between', 'her', 'and', 'her', 'brother', ',', 'in', 'consequence', 'of', 'Marianne', '’', 's', 'illness', ';', 'and', 'in', 'the', 'first', 'of', 'John', '’', 's', ',', 'there', 'had', 'been', 'this', 'sentence', ':', '—', '“', 'We', 'know', 'nothing', 'of', 'our', 'unfortunate', 'Edward', ',', 'and', 'can', 'make', 'no', 'enquiries', 'on', 'so', 'prohibited', 'a', 'subject', ',', 'but', 'conclude', 'him', 'to', 'be', 'still', 'at', 'Oxford', ';', '”', 'which', 'was', 'all', 'the', 'intelligence', 'of', 'Edward', 'afforded', 'her', 'by', 'the', 'correspondence', ',', 'for', 'his', 'name', 'was', 'not', 'even', 'mentioned', 'in', 'any', 'of', 'the', 'succeeding', 'letters', '.', 'She', 'was', 'not', 'doomed', ',', 'however', ',', 'to', 'be', 'long', 'in', 'ignorance', 'of', 'his', 'measures', '.', 'Their', 'man-servant', 'had', 'been', 'sent', 'one', 'morning', 'to', 'Exeter', 'on', 'business', ';', 'and', 'when', ',', 'as', 'he', 'waited', 'at', 'table', ',', 'he', 'had', 'satisfied', 'the', 'inquiries', 'of', 'his', 'mistress', 'as', 'to', 'the', 'event', 'of', 'his', 'errand', ',', 'this', 'was', 'his', 'voluntary', 'communication', ',', '—', '“', 'I', 'suppose', 'you', 'know', ',', 'ma', '’', 'am', ',', 'that', 'Mr.', 'Ferrars', 'is', 'married.', '”', 'Marianne', 'gave', 'a', 'violent', 'start', ',', 'fixed', 'her', 'eyes', 'upon', 'Elinor', ',', 'saw', 'her', 'turning', 'pale', ',', 'and', 'fell', 'back', 'in', 'her', 'chair', 'in', 'hysterics', '.', 'Mrs.', 'Dashwood', ',', 'whose', 'eyes', ',', 'as', 'she', 'answered', 'the', 'servant', '’', 's', 'inquiry', ',', 'had', 'intuitively', 'taken', 'the', 'same', 'direction', ',', 'was', 'shocked', 'to', 'perceive', 'by', 'Elinor', '’', 's', 'countenance', 'how', 'much', 'she', 'really', 'suffered', ',', 'and', 'a', 'moment', 'afterwards', ',', 'alike', 'distressed', 'by', 'Marianne', '’', 's', 'situation', ',', 'knew', 'not', 'on', 'which', 'child', 'to', 'bestow', 'her', 'principal', 'attention', '.', 'The', 'servant', ',', 'who', 'saw', 'only', 'that', 'Miss', 'Marianne', 'was', 'taken', 'ill', ',', 'had', 'sense', 'enough', 'to', 'call', 'one', 'of', 'the', 'maids', ',', 'who', ',', 'with', 'Mrs.', 'Dashwood', '’', 's', 'assistance', ',', 'supported', 'her', 'into', 'the', 'other', 'room', '.', 'By', 'that', 'time', ',', 'Marianne', 'was', 'rather', 'better', ',', 'and', 'her', 'mother', 'leaving', 'her', 'to', 'the', 'care', 'of', 'Margaret', 'and', 'the', 'maid', ',', 'returned', 'to', 'Elinor', ',', 'who', ',', 'though', 'still', 'much', 'disordered', ',', 'had', 'so', 'far', 'recovered', 'the', 'use', 'of', 'her', 'reason', 'and', 'voice', 'as', 'to', 'be', 'just', 'beginning', 'an', 'inquiry', 'of', 'Thomas', ',', 'as', 'to', 'the', 'source', 'of', 'his', 'intelligence', '.', 'Mrs.', 'Dashwood', 'immediately', 'took', 'all', 'that', 'trouble', 'on', 'herself', ';', 'and', 'Elinor', 'had', 'the', 'benefit', 'of', 'the', 'information', 'without', 'the', 'exertion', 'of', 'seeking', 'it', '.', '“', 'Who', 'told', 'you', 'that', 'Mr.', 'Ferrars', 'was', 'married', ',', 'Thomas', '?', '”', '“', 'I', 'see', 'Mr.', 'Ferrars', 'myself', ',', 'ma', '’', 'am', ',', 'this', 'morning', 'in', 'Exeter', ',', 'and', 'his', 'lady', 'too', ',', 'Miss', 'Steele', 'as', 'was', '.', 'They', 'was', 'stopping', 'in', 'a', 'chaise', 'at', 'the', 'door', 'of', 'the', 'New', 'London', 'Inn', ',', 'as', 'I', 'went', 'there', 'with', 'a', 'message', 'from', 'Sally', 'at', 'the', 'Park', 'to', 'her', 'brother', ',', 'who', 'is', 'one', 'of', 'the', 'post-boys', '.', 'I', 'happened', 'to', 'look', 'up', 'as', 'I', 'went', 'by', 'the', 'chaise', ',', 'and', 'so', 'I', 'see', 'directly', 'it', 'was', 'the', 'youngest', 'Miss', 'Steele', ';', 'so', 'I', 'took', 'off', 'my', 'hat', ',', 'and', 'she', 'knew', 'me', 'and', 'called', 'to', 'me', ',', 'and', 'inquired', 'after', 'you', ',', 'ma', '’', 'am', ',', 'and', 'the', 'young', 'ladies', ',', 'especially', 'Miss', 'Marianne', ',', 'and', 'bid', 'me', 'I', 'should', 'give', 'her', 'compliments', 'and', 'Mr.', 'Ferrars', '’', 's', ',', 'their', 'best', 'compliments', 'and', 'service', ',', 'and', 'how', 'sorry', 'they', 'was', 'they', 'had', 'not', 'time', 'to', 'come', 'on', 'and', 'see', 'you', ',', 'but', 'they', 'was', 'in', 'a', 'great', 'hurry', 'to', 'go', 'forwards', ',', 'for', 'they', 'was', 'going', 'further', 'down', 'for', 'a', 'little', 'while', ',', 'but', 'howsever', ',', 'when', 'they', 'come', 'back', ',', 'they', '’', 'd', 'make', 'sure', 'to', 'come', 'and', 'see', 'you.', '”', '“', 'But', 'did', 'she', 'tell', 'you', 'she', 'was', 'married', ',', 'Thomas', '?', '”', '“', 'Yes', ',', 'ma', '’', 'am', '.', 'She', 'smiled', ',', 'and', 'said', 'how', 'she', 'had', 'changed', 'her', 'name', 'since', 'she', 'was', 'in', 'these', 'parts', '.', 'She', 'was', 'always', 'a', 'very', 'affable', 'and', 'free-spoken', 'young', 'lady', ',', 'and', 'very', 'civil', 'behaved', '.', 'So', ',', 'I', 'made', 'free', 'to', 'wish', 'her', 'joy.', '”', '“', 'Was', 'Mr.', 'Ferrars', 'in', 'the', 'carriage', 'with', 'her', '?', '”', '“', 'Yes', ',', 'ma', '’', 'am', ',', 'I', 'just', 'see', 'him', 'leaning', 'back', 'in', 'it', ',', 'but', 'he', 'did', 'not', 'look', 'up', ';', '—he', 'never', 'was', 'a', 'gentleman', 'much', 'for', 'talking.', '”', 'Elinor', '’', 's', 'heart', 'could', 'easily', 'account', 'for', 'his', 'not', 'putting', 'himself', 'forward', ';', 'and', 'Mrs.', 'Dashwood', 'probably', 'found', 'the', 'same', 'explanation', '.', '“', 'Was', 'there', 'no', 'one', 'else', 'in', 'the', 'carriage', '?', '”', '“', 'No', ',', 'ma', '’', 'am', ',', 'only', 'they', 'two.', '”', '“', 'Do', 'you', 'know', 'where', 'they', 'came', 'from', '?', '”', '“', 'They', 'come', 'straight', 'from', 'town', ',', 'as', 'Miss', 'Lucy—Mrs', '.', 'Ferrars', 'told', 'me.', '”', '“', 'And', 'are', 'they', 'going', 'farther', 'westward', '?', '”', '“', 'Yes', ',', 'ma', '’', 'am—but', 'not', 'to', 'bide', 'long', '.', 'They', 'will', 'soon', 'be', 'back', 'again', ',', 'and', 'then', 'they', '’', 'd', 'be', 'sure', 'and', 'call', 'here.', '”', 'Mrs.', 'Dashwood', 'now', 'looked', 'at', 'her', 'daughter', ';', 'but', 'Elinor', 'knew', 'better', 'than', 'to', 'expect', 'them', '.', 'She', 'recognised', 'the', 'whole', 'of', 'Lucy', 'in', 'the', 'message', ',', 'and', 'was', 'very', 'confident', 'that', 'Edward', 'would', 'never', 'come', 'near', 'them', '.', 'She', 'observed', 'in', 'a', 'low', 'voice', ',', 'to', 'her', 'mother', ',', 'that', 'they', 'were', 'probably', 'going', 'down', 'to', 'Mr.', 'Pratt', '’', 's', ',', 'near', 'Plymouth', '.', 'Thomas', '’', 's', 'intelligence', 'seemed', 'over', '.', 'Elinor', 'looked', 'as', 'if', 'she', 'wished', 'to', 'hear', 'more', '.', '“', 'Did', 'you', 'see', 'them', 'off', ',', 'before', 'you', 'came', 'away', '?', '”', '“', 'No', ',', 'ma', '’', 'am—the', 'horses', 'were', 'just', 'coming', 'out', ',', 'but', 'I', 'could', 'not', 'bide', 'any', 'longer', ';', 'I', 'was', 'afraid', 'of', 'being', 'late.', '”', '“', 'Did', 'Mrs.', 'Ferrars', 'look', 'well', '?', '”', '“', 'Yes', ',', 'ma', '’', 'am', ',', 'she', 'said', 'how', 'she', 'was', 'very', 'well', ';', 'and', 'to', 'my', 'mind', 'she', 'was', 'always', 'a', 'very', 'handsome', 'young', 'lady—and', 'she', 'seemed', 'vastly', 'contented.', '”', 'Mrs.', 'Dashwood', 'could', 'think', 'of', 'no', 'other', 'question', ',', 'and', 'Thomas', 'and', 'the', 'tablecloth', ',', 'now', 'alike', 'needless', ',', 'were', 'soon', 'afterwards', 'dismissed', '.', 'Marianne', 'had', 'already', 'sent', 'to', 'say', ',', 'that', 'she', 'should', 'eat', 'nothing', 'more', '.', 'Mrs.', 'Dashwood', '’', 's', 'and', 'Elinor', '’', 's', 'appetites', 'were', 'equally', 'lost', ',', 'and', 'Margaret', 'might', 'think', 'herself', 'very', 'well', 'off', ',', 'that', 'with', 'so', 'much', 'uneasiness', 'as', 'both', 'her', 'sisters', 'had', 'lately', 'experienced', ',', 'so', 'much', 'reason', 'as', 'they', 'had', 'often', 'had', 'to', 'be', 'careless', 'of', 'their', 'meals', ',', 'she', 'had', 'never', 'been', 'obliged', 'to', 'go', 'without', 'her', 'dinner', 'before', '.', 'When', 'the', 'dessert', 'and', 'the', 'wine', 'were', 'arranged', ',', 'and', 'Mrs.', 'Dashwood', 'and', 'Elinor', 'were', 'left', 'by', 'themselves', ',', 'they', 'remained', 'long', 'together', 'in', 'a', 'similarity', 'of', 'thoughtfulness', 'and', 'silence', '.', 'Mrs.', 'Dashwood', 'feared', 'to', 'hazard', 'any', 'remark', ',', 'and', 'ventured', 'not', 'to', 'offer', 'consolation', '.', 'She', 'now', 'found', 'that', 'she', 'had', 'erred', 'in', 'relying', 'on', 'Elinor', '’', 's', 'representation', 'of', 'herself', ';', 'and', 'justly', 'concluded', 'that', 'every', 'thing', 'had', 'been', 'expressly', 'softened', 'at', 'the', 'time', ',', 'to', 'spare', 'her', 'from', 'an', 'increase', 'of', 'unhappiness', ',', 'suffering', 'as', 'she', 'then', 'had', 'suffered', 'for', 'Marianne', '.', 'She', 'found', 'that', 'she', 'had', 'been', 'misled', 'by', 'the', 'careful', ',', 'the', 'considerate', 'attention', 'of', 'her', 'daughter', ',', 'to', 'think', 'the', 'attachment', ',', 'which', 'once', 'she', 'had', 'so', 'well', 'understood', ',', 'much', 'slighter', 'in', 'reality', ',', 'than', 'she', 'had', 'been', 'wont', 'to', 'believe', ',', 'or', 'than', 'it', 'was', 'now', 'proved', 'to', 'be', '.', 'She', 'feared', 'that', 'under', 'this', 'persuasion', 'she', 'had', 'been', 'unjust', ',', 'inattentive', ',', 'nay', ',', 'almost', 'unkind', ',', 'to', 'her', 'Elinor', ';', '—that', 'Marianne', '’', 's', 'affliction', ',', 'because', 'more', 'acknowledged', ',', 'more', 'immediately', 'before', 'her', ',', 'had', 'too', 'much', 'engrossed', 'her', 'tenderness', ',', 'and', 'led', 'her', 'away', 'to', 'forget', 'that', 'in', 'Elinor', 'she', 'might', 'have', 'a', 'daughter', 'suffering', 'almost', 'as', 'much', ',', 'certainly', 'with', 'less', 'self-provocation', ',', 'and', 'greater', 'fortitude', '.', 'CHAPTER', 'XLVIII', '.', 'Elinor', 'now', 'found', 'the', 'difference', 'between', 'the', 'expectation', 'of', 'an', 'unpleasant', 'event', ',', 'however', 'certain', 'the', 'mind', 'may', 'be', 'told', 'to', 'consider', 'it', ',', 'and', 'certainty', 'itself', '.', 'She', 'now', 'found', ',', 'that', 'in', 'spite', 'of', 'herself', ',', 'she', 'had', 'always', 'admitted', 'a', 'hope', ',', 'while', 'Edward', 'remained', 'single', ',', 'that', 'something', 'would', 'occur', 'to', 'prevent', 'his', 'marrying', 'Lucy', ';', 'that', 'some', 'resolution', 'of', 'his', 'own', ',', 'some', 'mediation', 'of', 'friends', ',', 'or', 'some', 'more', 'eligible', 'opportunity', 'of', 'establishment', 'for', 'the', 'lady', ',', 'would', 'arise', 'to', 'assist', 'the', 'happiness', 'of', 'all', '.', 'But', 'he', 'was', 'now', 'married', ';', 'and', 'she', 'condemned', 'her', 'heart', 'for', 'the', 'lurking', 'flattery', ',', 'which', 'so', 'much', 'heightened', 'the', 'pain', 'of', 'the', 'intelligence', '.', 'That', 'he', 'should', 'be', 'married', 'soon', ',', 'before', '(', 'as', 'she', 'imagined', ')', 'he', 'could', 'be', 'in', 'orders', ',', 'and', 'consequently', 'before', 'he', 'could', 'be', 'in', 'possession', 'of', 'the', 'living', ',', 'surprised', 'her', 'a', 'little', 'at', 'first', '.', 'But', 'she', 'soon', 'saw', 'how', 'likely', 'it', 'was', 'that', 'Lucy', ',', 'in', 'her', 'self-provident', 'care', ',', 'in', 'her', 'haste', 'to', 'secure', 'him', ',', 'should', 'overlook', 'every', 'thing', 'but', 'the', 'risk', 'of', 'delay', '.', 'They', 'were', 'married', ',', 'married', 'in', 'town', ',', 'and', 'now', 'hastening', 'down', 'to', 'her', 'uncle', '’', 's', '.', 'What', 'had', 'Edward', 'felt', 'on', 'being', 'within', 'four', 'miles', 'from', 'Barton', ',', 'on', 'seeing', 'her', 'mother', '’', 's', 'servant', ',', 'on', 'hearing', 'Lucy', '’', 's', 'message', '!', 'They', 'would', 'soon', ',', 'she', 'supposed', ',', 'be', 'settled', 'at', 'Delaford.—Delaford', ',', '—that', 'place', 'in', 'which', 'so', 'much', 'conspired', 'to', 'give', 'her', 'an', 'interest', ';', 'which', 'she', 'wished', 'to', 'be', 'acquainted', 'with', ',', 'and', 'yet', 'desired', 'to', 'avoid', '.', 'She', 'saw', 'them', 'in', 'an', 'instant', 'in', 'their', 'parsonage-house', ';', 'saw', 'in', 'Lucy', ',', 'the', 'active', ',', 'contriving', 'manager', ',', 'uniting', 'at', 'once', 'a', 'desire', 'of', 'smart', 'appearance', 'with', 'the', 'utmost', 'frugality', ',', 'and', 'ashamed', 'to', 'be', 'suspected', 'of', 'half', 'her', 'economical', 'practices', ';', '—pursuing', 'her', 'own', 'interest', 'in', 'every', 'thought', ',', 'courting', 'the', 'favour', 'of', 'Colonel', 'Brandon', ',', 'of', 'Mrs.', 'Jennings', ',', 'and', 'of', 'every', 'wealthy', 'friend', '.', 'In', 'Edward—she', 'knew', 'not', 'what', 'she', 'saw', ',', 'nor', 'what', 'she', 'wished', 'to', 'see', ';', '—happy', 'or', 'unhappy', ',', '—nothing', 'pleased', 'her', ';', 'she', 'turned', 'away', 'her', 'head', 'from', 'every', 'sketch', 'of', 'him', '.', 'Elinor', 'flattered', 'herself', 'that', 'some', 'one', 'of', 'their', 'connections', 'in', 'London', 'would', 'write', 'to', 'them', 'to', 'announce', 'the', 'event', ',', 'and', 'give', 'farther', 'particulars', ',', '—but', 'day', 'after', 'day', 'passed', 'off', ',', 'and', 'brought', 'no', 'letter', ',', 'no', 'tidings', '.', 'Though', 'uncertain', 'that', 'any', 'one', 'were', 'to', 'blame', ',', 'she', 'found', 'fault', 'with', 'every', 'absent', 'friend', '.', 'They', 'were', 'all', 'thoughtless', 'or', 'indolent', '.', '“', 'When', 'do', 'you', 'write', 'to', 'Colonel', 'Brandon', ',', 'ma', '’', 'am', '?', '”', 'was', 'an', 'inquiry', 'which', 'sprung', 'from', 'the', 'impatience', 'of', 'her', 'mind', 'to', 'have', 'something', 'going', 'on', '.', '“', 'I', 'wrote', 'to', 'him', ',', 'my', 'love', ',', 'last', 'week', ',', 'and', 'rather', 'expect', 'to', 'see', ',', 'than', 'to', 'hear', 'from', 'him', 'again', '.', 'I', 'earnestly', 'pressed', 'his', 'coming', 'to', 'us', ',', 'and', 'should', 'not', 'be', 'surprised', 'to', 'see', 'him', 'walk', 'in', 'today', 'or', 'tomorrow', ',', 'or', 'any', 'day.', '”', 'This', 'was', 'gaining', 'something', ',', 'something', 'to', 'look', 'forward', 'to', '.', 'Colonel', 'Brandon', '_must_', 'have', 'some', 'information', 'to', 'give', '.', 'Scarcely', 'had', 'she', 'so', 'determined', 'it', ',', 'when', 'the', 'figure', 'of', 'a', 'man', 'on', 'horseback', 'drew', 'her', 'eyes', 'to', 'the', 'window', '.', 'He', 'stopt', 'at', 'their', 'gate', '.', 'It', 'was', 'a', 'gentleman', ',', 'it', 'was', 'Colonel', 'Brandon', 'himself', '.', 'Now', 'she', 'could', 'hear', 'more', ';', 'and', 'she', 'trembled', 'in', 'expectation', 'of', 'it', '.', 'But', 'it', 'was', '_not_', 'Colonel', 'Brandon', ';', 'neither', 'his', 'air', ',', 'nor', 'his', 'height', '.', 'Were', 'it', 'possible', ',', 'she', 'must', 'say', 'it', 'must', 'be', 'Edward', '.', 'She', 'looked', 'again', '.', 'He', 'had', 'just', 'dismounted', ':', 'she', 'could', 'not', 'be', 'mistaken', ',', '—it', '_was_', 'Edward', '.', 'She', 'moved', 'away', 'and', 'sat', 'down', '.', '“', 'He', 'comes', 'from', 'Mr.', 'Pratt', '’', 's', 'purposely', 'to', 'see', 'us', '.', 'I', '_will_', 'be', 'calm', ';', 'I', '_will_', 'be', 'mistress', 'of', 'myself.', '”', 'In', 'a', 'moment', 'she', 'perceived', 'that', 'the', 'others', 'were', 'likewise', 'aware', 'of', 'the', 'mistake', '.', 'She', 'saw', 'her', 'mother', 'and', 'Marianne', 'change', 'colour', ';', 'saw', 'them', 'look', 'at', 'herself', ',', 'and', 'whisper', 'a', 'few', 'sentences', 'to', 'each', 'other', '.', 'She', 'would', 'have', 'given', 'the', 'world', 'to', 'be', 'able', 'to', 'speak—and', 'to', 'make', 'them', 'understand', 'that', 'she', 'hoped', 'no', 'coolness', ',', 'no', 'slight', ',', 'would', 'appear', 'in', 'their', 'behaviour', 'to', 'him', ';', '—but', 'she', 'had', 'no', 'utterance', ',', 'and', 'was', 'obliged', 'to', 'leave', 'all', 'to', 'their', 'own', 'discretion', '.', 'Not', 'a', 'syllable', 'passed', 'aloud', '.', 'They', 'all', 'waited', 'in', 'silence', 'for', 'the', 'appearance', 'of', 'their', 'visitor', '.', 'His', 'footsteps', 'were', 'heard', 'along', 'the', 'gravel', 'path', ';', 'in', 'a', 'moment', 'he', 'was', 'in', 'the', 'passage', ',', 'and', 'in', 'another', 'he', 'was', 'before', 'them', '.', 'His', 'countenance', ',', 'as', 'he', 'entered', 'the', 'room', ',', 'was', 'not', 'too', 'happy', ',', 'even', 'for', 'Elinor', '.', 'His', 'complexion', 'was', 'white', 'with', 'agitation', ',', 'and', 'he', 'looked', 'as', 'if', 'fearful', 'of', 'his', 'reception', ',', 'and', 'conscious', 'that', 'he', 'merited', 'no', 'kind', 'one', '.', 'Mrs.', 'Dashwood', ',', 'however', ',', 'conforming', ',', 'as', 'she', 'trusted', ',', 'to', 'the', 'wishes', 'of', 'that', 'daughter', ',', 'by', 'whom', 'she', 'then', 'meant', 'in', 'the', 'warmth', 'of', 'her', 'heart', 'to', 'be', 'guided', 'in', 'every', 'thing', ',', 'met', 'him', 'with', 'a', 'look', 'of', 'forced', 'complacency', ',', 'gave', 'him', 'her', 'hand', ',', 'and', 'wished', 'him', 'joy', '.', 'He', 'coloured', ',', 'and', 'stammered', 'out', 'an', 'unintelligible', 'reply', '.', 'Elinor', '’', 's', 'lips', 'had', 'moved', 'with', 'her', 'mother', '’', 's', ',', 'and', ',', 'when', 'the', 'moment', 'of', 'action', 'was', 'over', ',', 'she', 'wished', 'that', 'she', 'had', 'shaken', 'hands', 'with', 'him', 'too', '.', 'But', 'it', 'was', 'then', 'too', 'late', ',', 'and', 'with', 'a', 'countenance', 'meaning', 'to', 'be', 'open', ',', 'she', 'sat', 'down', 'again', 'and', 'talked', 'of', 'the', 'weather', '.', 'Marianne', 'had', 'retreated', 'as', 'much', 'as', 'possible', 'out', 'of', 'sight', ',', 'to', 'conceal', 'her', 'distress', ';', 'and', 'Margaret', ',', 'understanding', 'some', 'part', ',', 'but', 'not', 'the', 'whole', 'of', 'the', 'case', ',', 'thought', 'it', 'incumbent', 'on', 'her', 'to', 'be', 'dignified', ',', 'and', 'therefore', 'took', 'a', 'seat', 'as', 'far', 'from', 'him', 'as', 'she', 'could', ',', 'and', 'maintained', 'a', 'strict', 'silence', '.', 'When', 'Elinor', 'had', 'ceased', 'to', 'rejoice', 'in', 'the', 'dryness', 'of', 'the', 'season', ',', 'a', 'very', 'awful', 'pause', 'took', 'place', '.', 'It', 'was', 'put', 'an', 'end', 'to', 'by', 'Mrs.', 'Dashwood', ',', 'who', 'felt', 'obliged', 'to', 'hope', 'that', 'he', 'had', 'left', 'Mrs.', 'Ferrars', 'very', 'well', '.', 'In', 'a', 'hurried', 'manner', ',', 'he', 'replied', 'in', 'the', 'affirmative', '.', 'Another', 'pause', '.', 'Elinor', 'resolving', 'to', 'exert', 'herself', ',', 'though', 'fearing', 'the', 'sound', 'of', 'her', 'own', 'voice', ',', 'now', 'said', ',', '“', 'Is', 'Mrs.', 'Ferrars', 'at', 'Longstaple', '?', '”', '“', 'At', 'Longstaple', '!', '”', 'he', 'replied', ',', 'with', 'an', 'air', 'of', 'surprise', '.', '“', 'No', ',', 'my', 'mother', 'is', 'in', 'town.', '”', '“', 'I', 'meant', ',', '”', 'said', 'Elinor', ',', 'taking', 'up', 'some', 'work', 'from', 'the', 'table', ',', '“', 'to', 'enquire', 'for', 'Mrs.', '_Edward_', 'Ferrars.', '”', 'She', 'dared', 'not', 'look', 'up', ';', '—but', 'her', 'mother', 'and', 'Marianne', 'both', 'turned', 'their', 'eyes', 'on', 'him', '.', 'He', 'coloured', ',', 'seemed', 'perplexed', ',', 'looked', 'doubtingly', ',', 'and', ',', 'after', 'some', 'hesitation', ',', 'said', ',', '—', '“', 'Perhaps', 'you', 'mean—my', 'brother—you', 'mean', 'Mrs.—Mrs', '.', '_Robert_', 'Ferrars.', '”', '“', 'Mrs', '.', 'Robert', 'Ferrars', '!', '”', 'was', 'repeated', 'by', 'Marianne', 'and', 'her', 'mother', 'in', 'an', 'accent', 'of', 'the', 'utmost', 'amazement', ';', 'and', 'though', 'Elinor', 'could', 'not', 'speak', ',', 'even', '_her_', 'eyes', 'were', 'fixed', 'on', 'him', 'with', 'the', 'same', 'impatient', 'wonder', '.', 'He', 'rose', 'from', 'his', 'seat', ',', 'and', 'walked', 'to', 'the', 'window', ',', 'apparently', 'from', 'not', 'knowing', 'what', 'to', 'do', ';', 'took', 'up', 'a', 'pair', 'of', 'scissors', 'that', 'lay', 'there', ',', 'and', 'while', 'spoiling', 'both', 'them', 'and', 'their', 'sheath', 'by', 'cutting', 'the', 'latter', 'to', 'pieces', 'as', 'he', 'spoke', ',', 'said', ',', 'in', 'a', 'hurried', 'voice', ',', '—', '“', 'Perhaps', 'you', 'do', 'not', 'know', ':', 'you', 'may', 'not', 'have', 'heard', 'that', 'my', 'brother', 'is', 'lately', 'married', 'to—to', 'the', 'youngest—to', 'Miss', 'Lucy', 'Steele.', '”', 'His', 'words', 'were', 'echoed', 'with', 'unspeakable', 'astonishment', 'by', 'all', 'but', 'Elinor', ',', 'who', 'sat', 'with', 'her', 'head', 'leaning', 'over', 'her', 'work', ',', 'in', 'a', 'state', 'of', 'such', 'agitation', 'as', 'made', 'her', 'hardly', 'know', 'where', 'she', 'was', '.', '“', 'Yes', ',', '”', 'said', 'he', ',', '“', 'they', 'were', 'married', 'last', 'week', ',', 'and', 'are', 'now', 'at', 'Dawlish.', '”', 'Elinor', 'could', 'sit', 'it', 'no', 'longer', '.', 'She', 'almost', 'ran', 'out', 'of', 'the', 'room', ',', 'and', 'as', 'soon', 'as', 'the', 'door', 'was', 'closed', ',', 'burst', 'into', 'tears', 'of', 'joy', ',', 'which', 'at', 'first', 'she', 'thought', 'would', 'never', 'cease', '.', 'Edward', ',', 'who', 'had', 'till', 'then', 'looked', 'any', 'where', ',', 'rather', 'than', 'at', 'her', ',', 'saw', 'her', 'hurry', 'away', ',', 'and', 'perhaps', 'saw—or', 'even', 'heard', ',', 'her', 'emotion', ';', 'for', 'immediately', 'afterwards', 'he', 'fell', 'into', 'a', 'reverie', ',', 'which', 'no', 'remarks', ',', 'no', 'inquiries', ',', 'no', 'affectionate', 'address', 'of', 'Mrs.', 'Dashwood', 'could', 'penetrate', ',', 'and', 'at', 'last', ',', 'without', 'saying', 'a', 'word', ',', 'quitted', 'the', 'room', ',', 'and', 'walked', 'out', 'towards', 'the', 'village—leaving', 'the', 'others', 'in', 'the', 'greatest', 'astonishment', 'and', 'perplexity', 'on', 'a', 'change', 'in', 'his', 'situation', ',', 'so', 'wonderful', 'and', 'so', 'sudden', ';', '—a', 'perplexity', 'which', 'they', 'had', 'no', 'means', 'of', 'lessening', 'but', 'by', 'their', 'own', 'conjectures', '.', 'CHAPTER', 'XLIX', '.', 'Unaccountable', ',', 'however', ',', 'as', 'the', 'circumstances', 'of', 'his', 'release', 'might', 'appear', 'to', 'the', 'whole', 'family', ',', 'it', 'was', 'certain', 'that', 'Edward', 'was', 'free', ';', 'and', 'to', 'what', 'purpose', 'that', 'freedom', 'would', 'be', 'employed', 'was', 'easily', 'pre-determined', 'by', 'all', ';', '—for', 'after', 'experiencing', 'the', 'blessings', 'of', '_one_', 'imprudent', 'engagement', ',', 'contracted', 'without', 'his', 'mother', '’', 's', 'consent', ',', 'as', 'he', 'had', 'already', 'done', 'for', 'more', 'than', 'four', 'years', ',', 'nothing', 'less', 'could', 'be', 'expected', 'of', 'him', 'in', 'the', 'failure', 'of', '_that_', ',', 'than', 'the', 'immediate', 'contraction', 'of', 'another', '.', 'His', 'errand', 'at', 'Barton', ',', 'in', 'fact', ',', 'was', 'a', 'simple', 'one', '.', 'It', 'was', 'only', 'to', 'ask', 'Elinor', 'to', 'marry', 'him', ';', '—and', 'considering', 'that', 'he', 'was', 'not', 'altogether', 'inexperienced', 'in', 'such', 'a', 'question', ',', 'it', 'might', 'be', 'strange', 'that', 'he', 'should', 'feel', 'so', 'uncomfortable', 'in', 'the', 'present', 'case', 'as', 'he', 'really', 'did', ',', 'so', 'much', 'in', 'need', 'of', 'encouragement', 'and', 'fresh', 'air', '.', 'How', 'soon', 'he', 'had', 'walked', 'himself', 'into', 'the', 'proper', 'resolution', ',', 'however', ',', 'how', 'soon', 'an', 'opportunity', 'of', 'exercising', 'it', 'occurred', ',', 'in', 'what', 'manner', 'he', 'expressed', 'himself', ',', 'and', 'how', 'he', 'was', 'received', ',', 'need', 'not', 'be', 'particularly', 'told', '.', 'This', 'only', 'need', 'be', 'said', ';', '—that', 'when', 'they', 'all', 'sat', 'down', 'to', 'table', 'at', 'four', 'o', '’', 'clock', ',', 'about', 'three', 'hours', 'after', 'his', 'arrival', ',', 'he', 'had', 'secured', 'his', 'lady', ',', 'engaged', 'her', 'mother', '’', 's', 'consent', ',', 'and', 'was', 'not', 'only', 'in', 'the', 'rapturous', 'profession', 'of', 'the', 'lover', ',', 'but', ',', 'in', 'the', 'reality', 'of', 'reason', 'and', 'truth', ',', 'one', 'of', 'the', 'happiest', 'of', 'men', '.', 'His', 'situation', 'indeed', 'was', 'more', 'than', 'commonly', 'joyful', '.', 'He', 'had', 'more', 'than', 'the', 'ordinary', 'triumph', 'of', 'accepted', 'love', 'to', 'swell', 'his', 'heart', ',', 'and', 'raise', 'his', 'spirits', '.', 'He', 'was', 'released', 'without', 'any', 'reproach', 'to', 'himself', ',', 'from', 'an', 'entanglement', 'which', 'had', 'long', 'formed', 'his', 'misery', ',', 'from', 'a', 'woman', 'whom', 'he', 'had', 'long', 'ceased', 'to', 'love', ';', '—and', 'elevated', 'at', 'once', 'to', 'that', 'security', 'with', 'another', ',', 'which', 'he', 'must', 'have', 'thought', 'of', 'almost', 'with', 'despair', ',', 'as', 'soon', 'as', 'he', 'had', 'learnt', 'to', 'consider', 'it', 'with', 'desire', '.', 'He', 'was', 'brought', ',', 'not', 'from', 'doubt', 'or', 'suspense', ',', 'but', 'from', 'misery', 'to', 'happiness', ';', '—and', 'the', 'change', 'was', 'openly', 'spoken', 'in', 'such', 'a', 'genuine', ',', 'flowing', ',', 'grateful', 'cheerfulness', ',', 'as', 'his', 'friends', 'had', 'never', 'witnessed', 'in', 'him', 'before', '.', 'His', 'heart', 'was', 'now', 'open', 'to', 'Elinor', ',', 'all', 'its', 'weaknesses', ',', 'all', 'its', 'errors', 'confessed', ',', 'and', 'his', 'first', 'boyish', 'attachment', 'to', 'Lucy', 'treated', 'with', 'all', 'the', 'philosophic', 'dignity', 'of', 'twenty-four', '.', '“', 'It', 'was', 'a', 'foolish', ',', 'idle', 'inclination', 'on', 'my', 'side', ',', '”', 'said', 'he', ',', '“', 'the', 'consequence', 'of', 'ignorance', 'of', 'the', 'world', ',', 'and', 'want', 'of', 'employment', '.', 'Had', 'my', 'mother', 'given', 'me', 'some', 'active', 'profession', 'when', 'I', 'was', 'removed', 'at', 'eighteen', 'from', 'the', 'care', 'of', 'Mr.', 'Pratt', ',', 'I', 'think', ',', 'nay', ',', 'I', 'am', 'sure', ',', 'it', 'would', 'never', 'have', 'happened', ';', 'for', 'though', 'I', 'left', 'Longstaple', 'with', 'what', 'I', 'thought', ',', 'at', 'the', 'time', ',', 'a', 'most', 'unconquerable', 'preference', 'for', 'his', 'niece', ',', 'yet', 'had', 'I', 'then', 'had', 'any', 'pursuit', ',', 'any', 'object', 'to', 'engage', 'my', 'time', 'and', 'keep', 'me', 'at', 'a', 'distance', 'from', 'her', 'for', 'a', 'few', 'months', ',', 'I', 'should', 'very', 'soon', 'have', 'outgrown', 'the', 'fancied', 'attachment', ',', 'especially', 'by', 'mixing', 'more', 'with', 'the', 'world', ',', 'as', 'in', 'such', 'case', 'I', 'must', 'have', 'done', '.', 'But', 'instead', 'of', 'having', 'any', 'thing', 'to', 'do', ',', 'instead', 'of', 'having', 'any', 'profession', 'chosen', 'for', 'me', ',', 'or', 'being', 'allowed', 'to', 'chuse', 'any', 'myself', ',', 'I', 'returned', 'home', 'to', 'be', 'completely', 'idle', ';', 'and', 'for', 'the', 'first', 'twelvemonth', 'afterwards', 'I', 'had', 'not', 'even', 'the', 'nominal', 'employment', ',', 'which', 'belonging', 'to', 'the', 'university', 'would', 'have', 'given', 'me', ';', 'for', 'I', 'was', 'not', 'entered', 'at', 'Oxford', 'till', 'I', 'was', 'nineteen', '.', 'I', 'had', 'therefore', 'nothing', 'in', 'the', 'world', 'to', 'do', ',', 'but', 'to', 'fancy', 'myself', 'in', 'love', ';', 'and', 'as', 'my', 'mother', 'did', 'not', 'make', 'my', 'home', 'in', 'every', 'respect', 'comfortable', ',', 'as', 'I', 'had', 'no', 'friend', ',', 'no', 'companion', 'in', 'my', 'brother', ',', 'and', 'disliked', 'new', 'acquaintance', ',', 'it', 'was', 'not', 'unnatural', 'for', 'me', 'to', 'be', 'very', 'often', 'at', 'Longstaple', ',', 'where', 'I', 'always', 'felt', 'myself', 'at', 'home', ',', 'and', 'was', 'always', 'sure', 'of', 'a', 'welcome', ';', 'and', 'accordingly', 'I', 'spent', 'the', 'greatest', 'part', 'of', 'my', 'time', 'there', 'from', 'eighteen', 'to', 'nineteen', ':', 'Lucy', 'appeared', 'everything', 'that', 'was', 'amiable', 'and', 'obliging', '.', 'She', 'was', 'pretty', 'too—at', 'least', 'I', 'thought', 'so', '_then', ';', '_', 'and', 'I', 'had', 'seen', 'so', 'little', 'of', 'other', 'women', ',', 'that', 'I', 'could', 'make', 'no', 'comparisons', ',', 'and', 'see', 'no', 'defects', '.', 'Considering', 'everything', ',', 'therefore', ',', 'I', 'hope', ',', 'foolish', 'as', 'our', 'engagement', 'was', ',', 'foolish', 'as', 'it', 'has', 'since', 'in', 'every', 'way', 'been', 'proved', ',', 'it', 'was', 'not', 'at', 'the', 'time', 'an', 'unnatural', 'or', 'an', 'inexcusable', 'piece', 'of', 'folly.', '”', 'The', 'change', 'which', 'a', 'few', 'hours', 'had', 'wrought', 'in', 'the', 'minds', 'and', 'the', 'happiness', 'of', 'the', 'Dashwoods', ',', 'was', 'such—so', 'great—as', 'promised', 'them', 'all', ',', 'the', 'satisfaction', 'of', 'a', 'sleepless', 'night', '.', 'Mrs.', 'Dashwood', ',', 'too', 'happy', 'to', 'be', 'comfortable', ',', 'knew', 'not', 'how', 'to', 'love', 'Edward', ',', 'nor', 'praise', 'Elinor', 'enough', ',', 'how', 'to', 'be', 'enough', 'thankful', 'for', 'his', 'release', 'without', 'wounding', 'his', 'delicacy', ',', 'nor', 'how', 'at', 'once', 'to', 'give', 'them', 'leisure', 'for', 'unrestrained', 'conversation', 'together', ',', 'and', 'yet', 'enjoy', ',', 'as', 'she', 'wished', ',', 'the', 'sight', 'and', 'society', 'of', 'both', '.', 'Marianne', 'could', 'speak', '_her_', 'happiness', 'only', 'by', 'tears', '.', 'Comparisons', 'would', 'occur—regrets', 'would', 'arise', ';', 'and', 'her', 'joy', ',', 'though', 'sincere', 'as', 'her', 'love', 'for', 'her', 'sister', ',', 'was', 'of', 'a', 'kind', 'to', 'give', 'her', 'neither', 'spirits', 'nor', 'language', '.', 'But', 'Elinor—how', 'are', '_her_', 'feelings', 'to', 'be', 'described', '?', 'From', 'the', 'moment', 'of', 'learning', 'that', 'Lucy', 'was', 'married', 'to', 'another', ',', 'that', 'Edward', 'was', 'free', ',', 'to', 'the', 'moment', 'of', 'his', 'justifying', 'the', 'hopes', 'which', 'had', 'so', 'instantly', 'followed', ',', 'she', 'was', 'every', 'thing', 'by', 'turns', 'but', 'tranquil', '.', 'But', 'when', 'the', 'second', 'moment', 'had', 'passed', ',', 'when', 'she', 'found', 'every', 'doubt', ',', 'every', 'solicitude', 'removed', ',', 'compared', 'her', 'situation', 'with', 'what', 'so', 'lately', 'it', 'had', 'been', ',', '—saw', 'him', 'honourably', 'released', 'from', 'his', 'former', 'engagement', ',', '—saw', 'him', 'instantly', 'profiting', 'by', 'the', 'release', ',', 'to', 'address', 'herself', 'and', 'declare', 'an', 'affection', 'as', 'tender', ',', 'as', 'constant', 'as', 'she', 'had', 'ever', 'supposed', 'it', 'to', 'be', ',', '—she', 'was', 'oppressed', ',', 'she', 'was', 'overcome', 'by', 'her', 'own', 'felicity', ';', 'and', 'happily', 'disposed', 'as', 'is', 'the', 'human', 'mind', 'to', 'be', 'easily', 'familiarized', 'with', 'any', 'change', 'for', 'the', 'better', ',', 'it', 'required', 'several', 'hours', 'to', 'give', 'sedateness', 'to', 'her', 'spirits', ',', 'or', 'any', 'degree', 'of', 'tranquillity', 'to', 'her', 'heart', '.', 'Edward', 'was', 'now', 'fixed', 'at', 'the', 'cottage', 'at', 'least', 'for', 'a', 'week', ';', '—for', 'whatever', 'other', 'claims', 'might', 'be', 'made', 'on', 'him', ',', 'it', 'was', 'impossible', 'that', 'less', 'than', 'a', 'week', 'should', 'be', 'given', 'up', 'to', 'the', 'enjoyment', 'of', 'Elinor', '’', 's', 'company', ',', 'or', 'suffice', 'to', 'say', 'half', 'that', 'was', 'to', 'be', 'said', 'of', 'the', 'past', ',', 'the', 'present', ',', 'and', 'the', 'future', ';', '—for', 'though', 'a', 'very', 'few', 'hours', 'spent', 'in', 'the', 'hard', 'labor', 'of', 'incessant', 'talking', 'will', 'despatch', 'more', 'subjects', 'than', 'can', 'really', 'be', 'in', 'common', 'between', 'any', 'two', 'rational', 'creatures', ',', 'yet', 'with', 'lovers', 'it', 'is', 'different', '.', 'Between', '_them_', 'no', 'subject', 'is', 'finished', ',', 'no', 'communication', 'is', 'even', 'made', ',', 'till', 'it', 'has', 'been', 'made', 'at', 'least', 'twenty', 'times', 'over', '.', 'Lucy', '’', 's', 'marriage', ',', 'the', 'unceasing', 'and', 'reasonable', 'wonder', 'among', 'them', 'all', ',', 'formed', 'of', 'course', 'one', 'of', 'the', 'earliest', 'discussions', 'of', 'the', 'lovers', ';', '—and', 'Elinor', '’', 's', 'particular', 'knowledge', 'of', 'each', 'party', 'made', 'it', 'appear', 'to', 'her', 'in', 'every', 'view', ',', 'as', 'one', 'of', 'the', 'most', 'extraordinary', 'and', 'unaccountable', 'circumstances', 'she', 'had', 'ever', 'heard', '.', 'How', 'they', 'could', 'be', 'thrown', 'together', ',', 'and', 'by', 'what', 'attraction', 'Robert', 'could', 'be', 'drawn', 'on', 'to', 'marry', 'a', 'girl', ',', 'of', 'whose', 'beauty', 'she', 'had', 'herself', 'heard', 'him', 'speak', 'without', 'any', 'admiration', ',', '—a', 'girl', 'too', 'already', 'engaged', 'to', 'his', 'brother', ',', 'and', 'on', 'whose', 'account', 'that', 'brother', 'had', 'been', 'thrown', 'off', 'by', 'his', 'family—it', 'was', 'beyond', 'her', 'comprehension', 'to', 'make', 'out', '.', 'To', 'her', 'own', 'heart', 'it', 'was', 'a', 'delightful', 'affair', ',', 'to', 'her', 'imagination', 'it', 'was', 'even', 'a', 'ridiculous', 'one', ',', 'but', 'to', 'her', 'reason', ',', 'her', 'judgment', ',', 'it', 'was', 'completely', 'a', 'puzzle', '.', 'Edward', 'could', 'only', 'attempt', 'an', 'explanation', 'by', 'supposing', ',', 'that', ',', 'perhaps', ',', 'at', 'first', 'accidentally', 'meeting', ',', 'the', 'vanity', 'of', 'the', 'one', 'had', 'been', 'so', 'worked', 'on', 'by', 'the', 'flattery', 'of', 'the', 'other', ',', 'as', 'to', 'lead', 'by', 'degrees', 'to', 'all', 'the', 'rest', '.', 'Elinor', 'remembered', 'what', 'Robert', 'had', 'told', 'her', 'in', 'Harley', 'Street', ',', 'of', 'his', 'opinion', 'of', 'what', 'his', 'own', 'mediation', 'in', 'his', 'brother', '’', 's', 'affairs', 'might', 'have', 'done', ',', 'if', 'applied', 'to', 'in', 'time', '.', 'She', 'repeated', 'it', 'to', 'Edward', '.', '“', '_That_', 'was', 'exactly', 'like', 'Robert', ',', '”', 'was', 'his', 'immediate', 'observation', '.', '“', 'And', '_that_', ',', '”', 'he', 'presently', 'added', ',', '“', 'might', 'perhaps', 'be', 'in', '_his_', 'head', 'when', 'the', 'acquaintance', 'between', 'them', 'first', 'began', '.', 'And', 'Lucy', 'perhaps', 'at', 'first', 'might', 'think', 'only', 'of', 'procuring', 'his', 'good', 'offices', 'in', 'my', 'favour', '.', 'Other', 'designs', 'might', 'afterward', 'arise.', '”', 'How', 'long', 'it', 'had', 'been', 'carrying', 'on', 'between', 'them', ',', 'however', ',', 'he', 'was', 'equally', 'at', 'a', 'loss', 'with', 'herself', 'to', 'make', 'out', ';', 'for', 'at', 'Oxford', ',', 'where', 'he', 'had', 'remained', 'for', 'choice', 'ever', 'since', 'his', 'quitting', 'London', ',', 'he', 'had', 'had', 'no', 'means', 'of', 'hearing', 'of', 'her', 'but', 'from', 'herself', ',', 'and', 'her', 'letters', 'to', 'the', 'very', 'last', 'were', 'neither', 'less', 'frequent', ',', 'nor', 'less', 'affectionate', 'than', 'usual', '.', 'Not', 'the', 'smallest', 'suspicion', ',', 'therefore', ',', 'had', 'ever', 'occurred', 'to', 'prepare', 'him', 'for', 'what', 'followed', ';', '—and', 'when', 'at', 'last', 'it', 'burst', 'on', 'him', 'in', 'a', 'letter', 'from', 'Lucy', 'herself', ',', 'he', 'had', 'been', 'for', 'some', 'time', ',', 'he', 'believed', ',', 'half', 'stupified', 'between', 'the', 'wonder', ',', 'the', 'horror', ',', 'and', 'the', 'joy', 'of', 'such', 'a', 'deliverance', '.', 'He', 'put', 'the', 'letter', 'into', 'Elinor', '’', 's', 'hands', '.', '“', 'DEAR', 'SIR', ',', '“', 'Being', 'very', 'sure', 'I', 'have', 'long', 'lost', 'your', 'affections', ',', 'I', 'have', 'thought', 'myself', 'at', 'liberty', 'to', 'bestow', 'my', 'own', 'on', 'another', ',', 'and', 'have', 'no', 'doubt', 'of', 'being', 'as', 'happy', 'with', 'him', 'as', 'I', 'once', 'used', 'to', 'think', 'I', 'might', 'be', 'with', 'you', ';', 'but', 'I', 'scorn', 'to', 'accept', 'a', 'hand', 'while', 'the', 'heart', 'was', 'another', '’', 's', '.', 'Sincerely', 'wish', 'you', 'happy', 'in', 'your', 'choice', ',', 'and', 'it', 'shall', 'not', 'be', 'my', 'fault', 'if', 'we', 'are', 'not', 'always', 'good', 'friends', ',', 'as', 'our', 'near', 'relationship', 'now', 'makes', 'proper', '.', 'I', 'can', 'safely', 'say', 'I', 'owe', 'you', 'no', 'ill-will', ',', 'and', 'am', 'sure', 'you', 'will', 'be', 'too', 'generous', 'to', 'do', 'us', 'any', 'ill', 'offices', '.', 'Your', 'brother', 'has', 'gained', 'my', 'affections', 'entirely', ',', 'and', 'as', 'we', 'could', 'not', 'live', 'without', 'one', 'another', ',', 'we', 'are', 'just', 'returned', 'from', 'the', 'altar', ',', 'and', 'are', 'now', 'on', 'our', 'way', 'to', 'Dawlish', 'for', 'a', 'few', 'weeks', ',', 'which', 'place', 'your', 'dear', 'brother', 'has', 'great', 'curiosity', 'to', 'see', ',', 'but', 'thought', 'I', 'would', 'first', 'trouble', 'you', 'with', 'these', 'few', 'lines', ',', 'and', 'shall', 'always', 'remain', ',', '“', 'Your', 'sincere', 'well-wisher', ',', 'friend', ',', 'and', 'sister', ',', '“', 'LUCY', 'FERRARS', '.', '“', 'I', 'have', 'burnt', 'all', 'your', 'letters', ',', 'and', 'will', 'return', 'your', 'picture', 'the', 'first', 'opportunity', '.', 'Please', 'to', 'destroy', 'my', 'scrawls—but', 'the', 'ring', 'with', 'my', 'hair', 'you', 'are', 'very', 'welcome', 'to', 'keep.', '”', 'Elinor', 'read', 'and', 'returned', 'it', 'without', 'any', 'comment', '.', '“', 'I', 'will', 'not', 'ask', 'your', 'opinion', 'of', 'it', 'as', 'a', 'composition', ',', '”', 'said', 'Edward.—', '“', 'For', 'worlds', 'would', 'not', 'I', 'have', 'had', 'a', 'letter', 'of', 'hers', 'seen', 'by', '_you_', 'in', 'former', 'days.—In', 'a', 'sister', 'it', 'is', 'bad', 'enough', ',', 'but', 'in', 'a', 'wife', '!', '—how', 'I', 'have', 'blushed', 'over', 'the', 'pages', 'of', 'her', 'writing', '!', '—and', 'I', 'believe', 'I', 'may', 'say', 'that', 'since', 'the', 'first', 'half', 'year', 'of', 'our', 'foolish—business—this', 'is', 'the', 'only', 'letter', 'I', 'ever', 'received', 'from', 'her', ',', 'of', 'which', 'the', 'substance', 'made', 'me', 'any', 'amends', 'for', 'the', 'defect', 'of', 'the', 'style.', '”', '“', 'However', 'it', 'may', 'have', 'come', 'about', ',', '”', 'said', 'Elinor', ',', 'after', 'a', 'pause', ',', '—', '“', 'they', 'are', 'certainly', 'married', '.', 'And', 'your', 'mother', 'has', 'brought', 'on', 'herself', 'a', 'most', 'appropriate', 'punishment', '.', 'The', 'independence', 'she', 'settled', 'on', 'Robert', ',', 'through', 'resentment', 'against', 'you', ',', 'has', 'put', 'it', 'in', 'his', 'power', 'to', 'make', 'his', 'own', 'choice', ';', 'and', 'she', 'has', 'actually', 'been', 'bribing', 'one', 'son', 'with', 'a', 'thousand', 'a-year', ',', 'to', 'do', 'the', 'very', 'deed', 'which', 'she', 'disinherited', 'the', 'other', 'for', 'intending', 'to', 'do', '.', 'She', 'will', 'hardly', 'be', 'less', 'hurt', ',', 'I', 'suppose', ',', 'by', 'Robert', '’', 's', 'marrying', 'Lucy', ',', 'than', 'she', 'would', 'have', 'been', 'by', 'your', 'marrying', 'her.', '”', '“', 'She', 'will', 'be', 'more', 'hurt', 'by', 'it', ',', 'for', 'Robert', 'always', 'was', 'her', 'favourite.—She', 'will', 'be', 'more', 'hurt', 'by', 'it', ',', 'and', 'on', 'the', 'same', 'principle', 'will', 'forgive', 'him', 'much', 'sooner.', '”', 'In', 'what', 'state', 'the', 'affair', 'stood', 'at', 'present', 'between', 'them', ',', 'Edward', 'knew', 'not', ',', 'for', 'no', 'communication', 'with', 'any', 'of', 'his', 'family', 'had', 'yet', 'been', 'attempted', 'by', 'him', '.', 'He', 'had', 'quitted', 'Oxford', 'within', 'four', 'and', 'twenty', 'hours', 'after', 'Lucy', '’', 's', 'letter', 'arrived', ',', 'and', 'with', 'only', 'one', 'object', 'before', 'him', ',', 'the', 'nearest', 'road', 'to', 'Barton', ',', 'had', 'had', 'no', 'leisure', 'to', 'form', 'any', 'scheme', 'of', 'conduct', ',', 'with', 'which', 'that', 'road', 'did', 'not', 'hold', 'the', 'most', 'intimate', 'connection', '.', 'He', 'could', 'do', 'nothing', 'till', 'he', 'were', 'assured', 'of', 'his', 'fate', 'with', 'Miss', 'Dashwood', ';', 'and', 'by', 'his', 'rapidity', 'in', 'seeking', '_that_', 'fate', ',', 'it', 'is', 'to', 'be', 'supposed', ',', 'in', 'spite', 'of', 'the', 'jealousy', 'with', 'which', 'he', 'had', 'once', 'thought', 'of', 'Colonel', 'Brandon', ',', 'in', 'spite', 'of', 'the', 'modesty', 'with', 'which', 'he', 'rated', 'his', 'own', 'deserts', ',', 'and', 'the', 'politeness', 'with', 'which', 'he', 'talked', 'of', 'his', 'doubts', ',', 'he', 'did', 'not', ',', 'upon', 'the', 'whole', ',', 'expect', 'a', 'very', 'cruel', 'reception', '.', 'It', 'was', 'his', 'business', ',', 'however', ',', 'to', 'say', 'that', 'he', '_did_', ',', 'and', 'he', 'said', 'it', 'very', 'prettily', '.', 'What', 'he', 'might', 'say', 'on', 'the', 'subject', 'a', 'twelvemonth', 'after', ',', 'must', 'be', 'referred', 'to', 'the', 'imagination', 'of', 'husbands', 'and', 'wives', '.', 'That', 'Lucy', 'had', 'certainly', 'meant', 'to', 'deceive', ',', 'to', 'go', 'off', 'with', 'a', 'flourish', 'of', 'malice', 'against', 'him', 'in', 'her', 'message', 'by', 'Thomas', ',', 'was', 'perfectly', 'clear', 'to', 'Elinor', ';', 'and', 'Edward', 'himself', ',', 'now', 'thoroughly', 'enlightened', 'on', 'her', 'character', ',', 'had', 'no', 'scruple', 'in', 'believing', 'her', 'capable', 'of', 'the', 'utmost', 'meanness', 'of', 'wanton', 'ill-nature', '.', 'Though', 'his', 'eyes', 'had', 'been', 'long', 'opened', ',', 'even', 'before', 'his', 'acquaintance', 'with', 'Elinor', 'began', ',', 'to', 'her', 'ignorance', 'and', 'a', 'want', 'of', 'liberality', 'in', 'some', 'of', 'her', 'opinions—they', 'had', 'been', 'equally', 'imputed', ',', 'by', 'him', ',', 'to', 'her', 'want', 'of', 'education', ';', 'and', 'till', 'her', 'last', 'letter', 'reached', 'him', ',', 'he', 'had', 'always', 'believed', 'her', 'to', 'be', 'a', 'well-disposed', ',', 'good-hearted', 'girl', ',', 'and', 'thoroughly', 'attached', 'to', 'himself', '.', 'Nothing', 'but', 'such', 'a', 'persuasion', 'could', 'have', 'prevented', 'his', 'putting', 'an', 'end', 'to', 'an', 'engagement', ',', 'which', ',', 'long', 'before', 'the', 'discovery', 'of', 'it', 'laid', 'him', 'open', 'to', 'his', 'mother', '’', 's', 'anger', ',', 'had', 'been', 'a', 'continual', 'source', 'of', 'disquiet', 'and', 'regret', 'to', 'him', '.', '“', 'I', 'thought', 'it', 'my', 'duty', ',', '”', 'said', 'he', ',', '“', 'independent', 'of', 'my', 'feelings', ',', 'to', 'give', 'her', 'the', 'option', 'of', 'continuing', 'the', 'engagement', 'or', 'not', ',', 'when', 'I', 'was', 'renounced', 'by', 'my', 'mother', ',', 'and', 'stood', 'to', 'all', 'appearance', 'without', 'a', 'friend', 'in', 'the', 'world', 'to', 'assist', 'me', '.', 'In', 'such', 'a', 'situation', 'as', 'that', ',', 'where', 'there', 'seemed', 'nothing', 'to', 'tempt', 'the', 'avarice', 'or', 'the', 'vanity', 'of', 'any', 'living', 'creature', ',', 'how', 'could', 'I', 'suppose', ',', 'when', 'she', 'so', 'earnestly', ',', 'so', 'warmly', 'insisted', 'on', 'sharing', 'my', 'fate', ',', 'whatever', 'it', 'might', 'be', ',', 'that', 'any', 'thing', 'but', 'the', 'most', 'disinterested', 'affection', 'was', 'her', 'inducement', '?', 'And', 'even', 'now', ',', 'I', 'can', 'not', 'comprehend', 'on', 'what', 'motive', 'she', 'acted', ',', 'or', 'what', 'fancied', 'advantage', 'it', 'could', 'be', 'to', 'her', ',', 'to', 'be', 'fettered', 'to', 'a', 'man', 'for', 'whom', 'she', 'had', 'not', 'the', 'smallest', 'regard', ',', 'and', 'who', 'had', 'only', 'two', 'thousand', 'pounds', 'in', 'the', 'world', '.', 'She', 'could', 'not', 'foresee', 'that', 'Colonel', 'Brandon', 'would', 'give', 'me', 'a', 'living.', '”', '“', 'No', ';', 'but', 'she', 'might', 'suppose', 'that', 'something', 'would', 'occur', 'in', 'your', 'favour', ';', 'that', 'your', 'own', 'family', 'might', 'in', 'time', 'relent', '.', 'And', 'at', 'any', 'rate', ',', 'she', 'lost', 'nothing', 'by', 'continuing', 'the', 'engagement', ',', 'for', 'she', 'has', 'proved', 'that', 'it', 'fettered', 'neither', 'her', 'inclination', 'nor', 'her', 'actions', '.', 'The', 'connection', 'was', 'certainly', 'a', 'respectable', 'one', ',', 'and', 'probably', 'gained', 'her', 'consideration', 'among', 'her', 'friends', ';', 'and', ',', 'if', 'nothing', 'more', 'advantageous', 'occurred', ',', 'it', 'would', 'be', 'better', 'for', 'her', 'to', 'marry', '_you_', 'than', 'be', 'single.', '”', 'Edward', 'was', ',', 'of', 'course', ',', 'immediately', 'convinced', 'that', 'nothing', 'could', 'have', 'been', 'more', 'natural', 'than', 'Lucy', '’', 's', 'conduct', ',', 'nor', 'more', 'self-evident', 'than', 'the', 'motive', 'of', 'it', '.', 'Elinor', 'scolded', 'him', ',', 'harshly', 'as', 'ladies', 'always', 'scold', 'the', 'imprudence', 'which', 'compliments', 'themselves', ',', 'for', 'having', 'spent', 'so', 'much', 'time', 'with', 'them', 'at', 'Norland', ',', 'when', 'he', 'must', 'have', 'felt', 'his', 'own', 'inconstancy', '.', '“', 'Your', 'behaviour', 'was', 'certainly', 'very', 'wrong', ',', '”', 'said', 'she', ';', '“', 'because—to', 'say', 'nothing', 'of', 'my', 'own', 'conviction', ',', 'our', 'relations', 'were', 'all', 'led', 'away', 'by', 'it', 'to', 'fancy', 'and', 'expect', '_what_', ',', 'as', 'you', 'were', '_then_', 'situated', ',', 'could', 'never', 'be.', '”', 'He', 'could', 'only', 'plead', 'an', 'ignorance', 'of', 'his', 'own', 'heart', ',', 'and', 'a', 'mistaken', 'confidence', 'in', 'the', 'force', 'of', 'his', 'engagement', '.', '“', 'I', 'was', 'simple', 'enough', 'to', 'think', ',', 'that', 'because', 'my', '_faith_', 'was', 'plighted', 'to', 'another', ',', 'there', 'could', 'be', 'no', 'danger', 'in', 'my', 'being', 'with', 'you', ';', 'and', 'that', 'the', 'consciousness', 'of', 'my', 'engagement', 'was', 'to', 'keep', 'my', 'heart', 'as', 'safe', 'and', 'sacred', 'as', 'my', 'honour', '.', 'I', 'felt', 'that', 'I', 'admired', 'you', ',', 'but', 'I', 'told', 'myself', 'it', 'was', 'only', 'friendship', ';', 'and', 'till', 'I', 'began', 'to', 'make', 'comparisons', 'between', 'yourself', 'and', 'Lucy', ',', 'I', 'did', 'not', 'know', 'how', 'far', 'I', 'was', 'got', '.', 'After', 'that', ',', 'I', 'suppose', ',', 'I', '_was_', 'wrong', 'in', 'remaining', 'so', 'much', 'in', 'Sussex', ',', 'and', 'the', 'arguments', 'with', 'which', 'I', 'reconciled', 'myself', 'to', 'the', 'expediency', 'of', 'it', ',', 'were', 'no', 'better', 'than', 'these', ':', '—The', 'danger', 'is', 'my', 'own', ';', 'I', 'am', 'doing', 'no', 'injury', 'to', 'anybody', 'but', 'myself.', '”', 'Elinor', 'smiled', ',', 'and', 'shook', 'her', 'head', '.', 'Edward', 'heard', 'with', 'pleasure', 'of', 'Colonel', 'Brandon', '’', 's', 'being', 'expected', 'at', 'the', 'Cottage', ',', 'as', 'he', 'really', 'wished', 'not', 'only', 'to', 'be', 'better', 'acquainted', 'with', 'him', ',', 'but', 'to', 'have', 'an', 'opportunity', 'of', 'convincing', 'him', 'that', 'he', 'no', 'longer', 'resented', 'his', 'giving', 'him', 'the', 'living', 'of', 'Delaford—', '“', 'Which', ',', 'at', 'present', ',', '”', 'said', 'he', ',', '“', 'after', 'thanks', 'so', 'ungraciously', 'delivered', 'as', 'mine', 'were', 'on', 'the', 'occasion', ',', 'he', 'must', 'think', 'I', 'have', 'never', 'forgiven', 'him', 'for', 'offering.', '”', '_Now_', 'he', 'felt', 'astonished', 'himself', 'that', 'he', 'had', 'never', 'yet', 'been', 'to', 'the', 'place', '.', 'But', 'so', 'little', 'interest', 'had', 'he', 'taken', 'in', 'the', 'matter', ',', 'that', 'he', 'owed', 'all', 'his', 'knowledge', 'of', 'the', 'house', ',', 'garden', ',', 'and', 'glebe', ',', 'extent', 'of', 'the', 'parish', ',', 'condition', 'of', 'the', 'land', ',', 'and', 'rate', 'of', 'the', 'tithes', ',', 'to', 'Elinor', 'herself', ',', 'who', 'had', 'heard', 'so', 'much', 'of', 'it', 'from', 'Colonel', 'Brandon', ',', 'and', 'heard', 'it', 'with', 'so', 'much', 'attention', ',', 'as', 'to', 'be', 'entirely', 'mistress', 'of', 'the', 'subject', '.', 'One', 'question', 'after', 'this', 'only', 'remained', 'undecided', ',', 'between', 'them', ',', 'one', 'difficulty', 'only', 'was', 'to', 'be', 'overcome', '.', 'They', 'were', 'brought', 'together', 'by', 'mutual', 'affection', ',', 'with', 'the', 'warmest', 'approbation', 'of', 'their', 'real', 'friends', ';', 'their', 'intimate', 'knowledge', 'of', 'each', 'other', 'seemed', 'to', 'make', 'their', 'happiness', 'certain—and', 'they', 'only', 'wanted', 'something', 'to', 'live', 'upon', '.', 'Edward', 'had', 'two', 'thousand', 'pounds', ',', 'and', 'Elinor', 'one', ',', 'which', ',', 'with', 'Delaford', 'living', ',', 'was', 'all', 'that', 'they', 'could', 'call', 'their', 'own', ';', 'for', 'it', 'was', 'impossible', 'that', 'Mrs.', 'Dashwood', 'should', 'advance', 'anything', ';', 'and', 'they', 'were', 'neither', 'of', 'them', 'quite', 'enough', 'in', 'love', 'to', 'think', 'that', 'three', 'hundred', 'and', 'fifty', 'pounds', 'a-year', 'would', 'supply', 'them', 'with', 'the', 'comforts', 'of', 'life', '.', 'Edward', 'was', 'not', 'entirely', 'without', 'hopes', 'of', 'some', 'favourable', 'change', 'in', 'his', 'mother', 'towards', 'him', ';', 'and', 'on', '_that_', 'he', 'rested', 'for', 'the', 'residue', 'of', 'their', 'income', '.', 'But', 'Elinor', 'had', 'no', 'such', 'dependence', ';', 'for', 'since', 'Edward', 'would', 'still', 'be', 'unable', 'to', 'marry', 'Miss', 'Morton', ',', 'and', 'his', 'chusing', 'herself', 'had', 'been', 'spoken', 'of', 'in', 'Mrs.', 'Ferrars', '’', 's', 'flattering', 'language', 'as', 'only', 'a', 'lesser', 'evil', 'than', 'his', 'chusing', 'Lucy', 'Steele', ',', 'she', 'feared', 'that', 'Robert', '’', 's', 'offence', 'would', 'serve', 'no', 'other', 'purpose', 'than', 'to', 'enrich', 'Fanny', '.', 'About', 'four', 'days', 'after', 'Edward', '’', 's', 'arrival', 'Colonel', 'Brandon', 'appeared', ',', 'to', 'complete', 'Mrs.', 'Dashwood', '’', 's', 'satisfaction', ',', 'and', 'to', 'give', 'her', 'the', 'dignity', 'of', 'having', ',', 'for', 'the', 'first', 'time', 'since', 'her', 'living', 'at', 'Barton', ',', 'more', 'company', 'with', 'her', 'than', 'her', 'house', 'would', 'hold', '.', 'Edward', 'was', 'allowed', 'to', 'retain', 'the', 'privilege', 'of', 'first', 'comer', ',', 'and', 'Colonel', 'Brandon', 'therefore', 'walked', 'every', 'night', 'to', 'his', 'old', 'quarters', 'at', 'the', 'Park', ';', 'from', 'whence', 'he', 'usually', 'returned', 'in', 'the', 'morning', ',', 'early', 'enough', 'to', 'interrupt', 'the', 'lovers', '’', 'first', 'tête-à-tête', 'before', 'breakfast', '.', 'A', 'three', 'weeks', '’', 'residence', 'at', 'Delaford', ',', 'where', ',', 'in', 'his', 'evening', 'hours', 'at', 'least', ',', 'he', 'had', 'little', 'to', 'do', 'but', 'to', 'calculate', 'the', 'disproportion', 'between', 'thirty-six', 'and', 'seventeen', ',', 'brought', 'him', 'to', 'Barton', 'in', 'a', 'temper', 'of', 'mind', 'which', 'needed', 'all', 'the', 'improvement', 'in', 'Marianne', '’', 's', 'looks', ',', 'all', 'the', 'kindness', 'of', 'her', 'welcome', ',', 'and', 'all', 'the', 'encouragement', 'of', 'her', 'mother', '’', 's', 'language', ',', 'to', 'make', 'it', 'cheerful', '.', 'Among', 'such', 'friends', ',', 'however', ',', 'and', 'such', 'flattery', ',', 'he', 'did', 'revive', '.', 'No', 'rumour', 'of', 'Lucy', '’', 's', 'marriage', 'had', 'yet', 'reached', 'him', ':', '—he', 'knew', 'nothing', 'of', 'what', 'had', 'passed', ';', 'and', 'the', 'first', 'hours', 'of', 'his', 'visit', 'were', 'consequently', 'spent', 'in', 'hearing', 'and', 'in', 'wondering', '.', 'Every', 'thing', 'was', 'explained', 'to', 'him', 'by', 'Mrs.', 'Dashwood', ',', 'and', 'he', 'found', 'fresh', 'reason', 'to', 'rejoice', 'in', 'what', 'he', 'had', 'done', 'for', 'Mr.', 'Ferrars', ',', 'since', 'eventually', 'it', 'promoted', 'the', 'interest', 'of', 'Elinor', '.', 'It', 'would', 'be', 'needless', 'to', 'say', ',', 'that', 'the', 'gentlemen', 'advanced', 'in', 'the', 'good', 'opinion', 'of', 'each', 'other', ',', 'as', 'they', 'advanced', 'in', 'each', 'other', '’', 's', 'acquaintance', ',', 'for', 'it', 'could', 'not', 'be', 'otherwise', '.', 'Their', 'resemblance', 'in', 'good', 'principles', 'and', 'good', 'sense', ',', 'in', 'disposition', 'and', 'manner', 'of', 'thinking', ',', 'would', 'probably', 'have', 'been', 'sufficient', 'to', 'unite', 'them', 'in', 'friendship', ',', 'without', 'any', 'other', 'attraction', ';', 'but', 'their', 'being', 'in', 'love', 'with', 'two', 'sisters', ',', 'and', 'two', 'sisters', 'fond', 'of', 'each', 'other', ',', 'made', 'that', 'mutual', 'regard', 'inevitable', 'and', 'immediate', ',', 'which', 'might', 'otherwise', 'have', 'waited', 'the', 'effect', 'of', 'time', 'and', 'judgment', '.', 'The', 'letters', 'from', 'town', ',', 'which', 'a', 'few', 'days', 'before', 'would', 'have', 'made', 'every', 'nerve', 'in', 'Elinor', '’', 's', 'body', 'thrill', 'with', 'transport', ',', 'now', 'arrived', 'to', 'be', 'read', 'with', 'less', 'emotion', 'than', 'mirth', '.', 'Mrs.', 'Jennings', 'wrote', 'to', 'tell', 'the', 'wonderful', 'tale', ',', 'to', 'vent', 'her', 'honest', 'indignation', 'against', 'the', 'jilting', 'girl', ',', 'and', 'pour', 'forth', 'her', 'compassion', 'towards', 'poor', 'Mr.', 'Edward', ',', 'who', ',', 'she', 'was', 'sure', ',', 'had', 'quite', 'doted', 'upon', 'the', 'worthless', 'hussy', ',', 'and', 'was', 'now', ',', 'by', 'all', 'accounts', ',', 'almost', 'broken-hearted', ',', 'at', 'Oxford', '.', '“', 'I', 'do', 'think', ',', '”', 'she', 'continued', ',', '“', 'nothing', 'was', 'ever', 'carried', 'on', 'so', 'sly', ';', 'for', 'it', 'was', 'but', 'two', 'days', 'before', 'Lucy', 'called', 'and', 'sat', 'a', 'couple', 'of', 'hours', 'with', 'me', '.', 'Not', 'a', 'soul', 'suspected', 'anything', 'of', 'the', 'matter', ',', 'not', 'even', 'Nancy', ',', 'who', ',', 'poor', 'soul', '!', 'came', 'crying', 'to', 'me', 'the', 'day', 'after', ',', 'in', 'a', 'great', 'fright', 'for', 'fear', 'of', 'Mrs.', 'Ferrars', ',', 'as', 'well', 'as', 'not', 'knowing', 'how', 'to', 'get', 'to', 'Plymouth', ';', 'for', 'Lucy', 'it', 'seems', 'borrowed', 'all', 'her', 'money', 'before', 'she', 'went', 'off', 'to', 'be', 'married', ',', 'on', 'purpose', 'we', 'suppose', 'to', 'make', 'a', 'show', 'with', ',', 'and', 'poor', 'Nancy', 'had', 'not', 'seven', 'shillings', 'in', 'the', 'world', ';', 'so', 'I', 'was', 'very', 'glad', 'to', 'give', 'her', 'five', 'guineas', 'to', 'take', 'her', 'down', 'to', 'Exeter', ',', 'where', 'she', 'thinks', 'of', 'staying', 'three', 'or', 'four', 'weeks', 'with', 'Mrs.', 'Burgess', ',', 'in', 'hopes', ',', 'as', 'I', 'tell', 'her', ',', 'to', 'fall', 'in', 'with', 'the', 'Doctor', 'again', '.', 'And', 'I', 'must', 'say', 'that', 'Lucy', '’', 's', 'crossness', 'not', 'to', 'take', 'them', 'along', 'with', 'them', 'in', 'the', 'chaise', 'is', 'worse', 'than', 'all', '.', 'Poor', 'Mr.', 'Edward', '!', 'I', 'can', 'not', 'get', 'him', 'out', 'of', 'my', 'head', ',', 'but', 'you', 'must', 'send', 'for', 'him', 'to', 'Barton', ',', 'and', 'Miss', 'Marianne', 'must', 'try', 'to', 'comfort', 'him.', '”', 'Mr.', 'Dashwood', '’', 's', 'strains', 'were', 'more', 'solemn', '.', 'Mrs.', 'Ferrars', 'was', 'the', 'most', 'unfortunate', 'of', 'women—poor', 'Fanny', 'had', 'suffered', 'agonies', 'of', 'sensibility—and', 'he', 'considered', 'the', 'existence', 'of', 'each', ',', 'under', 'such', 'a', 'blow', ',', 'with', 'grateful', 'wonder', '.', 'Robert', '’', 's', 'offence', 'was', 'unpardonable', ',', 'but', 'Lucy', '’', 's', 'was', 'infinitely', 'worse', '.', 'Neither', 'of', 'them', 'were', 'ever', 'again', 'to', 'be', 'mentioned', 'to', 'Mrs.', 'Ferrars', ';', 'and', 'even', ',', 'if', 'she', 'might', 'hereafter', 'be', 'induced', 'to', 'forgive', 'her', 'son', ',', 'his', 'wife', 'should', 'never', 'be', 'acknowledged', 'as', 'her', 'daughter', ',', 'nor', 'be', 'permitted', 'to', 'appear', 'in', 'her', 'presence', '.', 'The', 'secrecy', 'with', 'which', 'everything', 'had', 'been', 'carried', 'on', 'between', 'them', ',', 'was', 'rationally', 'treated', 'as', 'enormously', 'heightening', 'the', 'crime', ',', 'because', ',', 'had', 'any', 'suspicion', 'of', 'it', 'occurred', 'to', 'the', 'others', ',', 'proper', 'measures', 'would', 'have', 'been', 'taken', 'to', 'prevent', 'the', 'marriage', ';', 'and', 'he', 'called', 'on', 'Elinor', 'to', 'join', 'with', 'him', 'in', 'regretting', 'that', 'Lucy', '’', 's', 'engagement', 'with', 'Edward', 'had', 'not', 'rather', 'been', 'fulfilled', ',', 'than', 'that', 'she', 'should', 'thus', 'be', 'the', 'means', 'of', 'spreading', 'misery', 'farther', 'in', 'the', 'family', '.', 'He', 'thus', 'continued', ':', '—', '“', 'Mrs', '.', 'Ferrars', 'has', 'never', 'yet', 'mentioned', 'Edward', '’', 's', 'name', ',', 'which', 'does', 'not', 'surprise', 'us', ';', 'but', ',', 'to', 'our', 'great', 'astonishment', ',', 'not', 'a', 'line', 'has', 'been', 'received', 'from', 'him', 'on', 'the', 'occasion', '.', 'Perhaps', ',', 'however', ',', 'he', 'is', 'kept', 'silent', 'by', 'his', 'fear', 'of', 'offending', ',', 'and', 'I', 'shall', ',', 'therefore', ',', 'give', 'him', 'a', 'hint', ',', 'by', 'a', 'line', 'to', 'Oxford', ',', 'that', 'his', 'sister', 'and', 'I', 'both', 'think', 'a', 'letter', 'of', 'proper', 'submission', 'from', 'him', ',', 'addressed', 'perhaps', 'to', 'Fanny', ',', 'and', 'by', 'her', 'shown', 'to', 'her', 'mother', ',', 'might', 'not', 'be', 'taken', 'amiss', ';', 'for', 'we', 'all', 'know', 'the', 'tenderness', 'of', 'Mrs.', 'Ferrars', '’', 's', 'heart', ',', 'and', 'that', 'she', 'wishes', 'for', 'nothing', 'so', 'much', 'as', 'to', 'be', 'on', 'good', 'terms', 'with', 'her', 'children.', '”', 'This', 'paragraph', 'was', 'of', 'some', 'importance', 'to', 'the', 'prospects', 'and', 'conduct', 'of', 'Edward', '.', 'It', 'determined', 'him', 'to', 'attempt', 'a', 'reconciliation', ',', 'though', 'not', 'exactly', 'in', 'the', 'manner', 'pointed', 'out', 'by', 'their', 'brother', 'and', 'sister', '.', '“', 'A', 'letter', 'of', 'proper', 'submission', '!', '”', 'repeated', 'he', ';', '“', 'would', 'they', 'have', 'me', 'beg', 'my', 'mother', '’', 's', 'pardon', 'for', 'Robert', '’', 's', 'ingratitude', 'to', '_her_', ',', 'and', 'breach', 'of', 'honour', 'to', '_me', '?', '_', 'I', 'can', 'make', 'no', 'submission', '.', 'I', 'am', 'grown', 'neither', 'humble', 'nor', 'penitent', 'by', 'what', 'has', 'passed', '.', 'I', 'am', 'grown', 'very', 'happy', ';', 'but', 'that', 'would', 'not', 'interest', '.', 'I', 'know', 'of', 'no', 'submission', 'that', '_is_', 'proper', 'for', 'me', 'to', 'make.', '”', '“', 'You', 'may', 'certainly', 'ask', 'to', 'be', 'forgiven', ',', '”', 'said', 'Elinor', ',', '“', 'because', 'you', 'have', 'offended', ';', '—and', 'I', 'should', 'think', 'you', 'might', '_now_', 'venture', 'so', 'far', 'as', 'to', 'profess', 'some', 'concern', 'for', 'having', 'ever', 'formed', 'the', 'engagement', 'which', 'drew', 'on', 'you', 'your', 'mother', '’', 's', 'anger.', '”', 'He', 'agreed', 'that', 'he', 'might', '.', '“', 'And', 'when', 'she', 'has', 'forgiven', 'you', ',', 'perhaps', 'a', 'little', 'humility', 'may', 'be', 'convenient', 'while', 'acknowledging', 'a', 'second', 'engagement', ',', 'almost', 'as', 'imprudent', 'in', '_her_', 'eyes', 'as', 'the', 'first.', '”', 'He', 'had', 'nothing', 'to', 'urge', 'against', 'it', ',', 'but', 'still', 'resisted', 'the', 'idea', 'of', 'a', 'letter', 'of', 'proper', 'submission', ';', 'and', 'therefore', ',', 'to', 'make', 'it', 'easier', 'to', 'him', ',', 'as', 'he', 'declared', 'a', 'much', 'greater', 'willingness', 'to', 'make', 'mean', 'concessions', 'by', 'word', 'of', 'mouth', 'than', 'on', 'paper', ',', 'it', 'was', 'resolved', 'that', ',', 'instead', 'of', 'writing', 'to', 'Fanny', ',', 'he', 'should', 'go', 'to', 'London', ',', 'and', 'personally', 'intreat', 'her', 'good', 'offices', 'in', 'his', 'favour', '.', '“', 'And', 'if', 'they', 'really', '_do_', 'interest', 'themselves', ',', '”', 'said', 'Marianne', ',', 'in', 'her', 'new', 'character', 'of', 'candour', ',', '“', 'in', 'bringing', 'about', 'a', 'reconciliation', ',', 'I', 'shall', 'think', 'that', 'even', 'John', 'and', 'Fanny', 'are', 'not', 'entirely', 'without', 'merit.', '”', 'After', 'a', 'visit', 'on', 'Colonel', 'Brandon', '’', 's', 'side', 'of', 'only', 'three', 'or', 'four', 'days', ',', 'the', 'two', 'gentlemen', 'quitted', 'Barton', 'together', '.', 'They', 'were', 'to', 'go', 'immediately', 'to', 'Delaford', ',', 'that', 'Edward', 'might', 'have', 'some', 'personal', 'knowledge', 'of', 'his', 'future', 'home', ',', 'and', 'assist', 'his', 'patron', 'and', 'friend', 'in', 'deciding', 'on', 'what', 'improvements', 'were', 'needed', 'to', 'it', ';', 'and', 'from', 'thence', ',', 'after', 'staying', 'there', 'a', 'couple', 'of', 'nights', ',', 'he', 'was', 'to', 'proceed', 'on', 'his', 'journey', 'to', 'town', '.', 'CHAPTER', 'L.', 'After', 'a', 'proper', 'resistance', 'on', 'the', 'part', 'of', 'Mrs.', 'Ferrars', ',', 'just', 'so', 'violent', 'and', 'so', 'steady', 'as', 'to', 'preserve', 'her', 'from', 'that', 'reproach', 'which', 'she', 'always', 'seemed', 'fearful', 'of', 'incurring', ',', 'the', 'reproach', 'of', 'being', 'too', 'amiable', ',', 'Edward', 'was', 'admitted', 'to', 'her', 'presence', ',', 'and', 'pronounced', 'to', 'be', 'again', 'her', 'son', '.', 'Her', 'family', 'had', 'of', 'late', 'been', 'exceedingly', 'fluctuating', '.', 'For', 'many', 'years', 'of', 'her', 'life', 'she', 'had', 'had', 'two', 'sons', ';', 'but', 'the', 'crime', 'and', 'annihilation', 'of', 'Edward', 'a', 'few', 'weeks', 'ago', ',', 'had', 'robbed', 'her', 'of', 'one', ';', 'the', 'similar', 'annihilation', 'of', 'Robert', 'had', 'left', 'her', 'for', 'a', 'fortnight', 'without', 'any', ';', 'and', 'now', ',', 'by', 'the', 'resuscitation', 'of', 'Edward', ',', 'she', 'had', 'one', 'again', '.', 'In', 'spite', 'of', 'his', 'being', 'allowed', 'once', 'more', 'to', 'live', ',', 'however', ',', 'he', 'did', 'not', 'feel', 'the', 'continuance', 'of', 'his', 'existence', 'secure', ',', 'till', 'he', 'had', 'revealed', 'his', 'present', 'engagement', ';', 'for', 'the', 'publication', 'of', 'that', 'circumstance', ',', 'he', 'feared', ',', 'might', 'give', 'a', 'sudden', 'turn', 'to', 'his', 'constitution', ',', 'and', 'carry', 'him', 'off', 'as', 'rapidly', 'as', 'before', '.', 'With', 'apprehensive', 'caution', 'therefore', 'it', 'was', 'revealed', ',', 'and', 'he', 'was', 'listened', 'to', 'with', 'unexpected', 'calmness', '.', 'Mrs.', 'Ferrars', 'at', 'first', 'reasonably', 'endeavoured', 'to', 'dissuade', 'him', 'from', 'marrying', 'Miss', 'Dashwood', ',', 'by', 'every', 'argument', 'in', 'her', 'power', ';', '—told', 'him', ',', 'that', 'in', 'Miss', 'Morton', 'he', 'would', 'have', 'a', 'woman', 'of', 'higher', 'rank', 'and', 'larger', 'fortune', ';', '—and', 'enforced', 'the', 'assertion', ',', 'by', 'observing', 'that', 'Miss', 'Morton', 'was', 'the', 'daughter', 'of', 'a', 'nobleman', 'with', 'thirty', 'thousand', 'pounds', ',', 'while', 'Miss', 'Dashwood', 'was', 'only', 'the', 'daughter', 'of', 'a', 'private', 'gentleman', 'with', 'no', 'more', 'than', '_three', ';', '_', 'but', 'when', 'she', 'found', 'that', ',', 'though', 'perfectly', 'admitting', 'the', 'truth', 'of', 'her', 'representation', ',', 'he', 'was', 'by', 'no', 'means', 'inclined', 'to', 'be', 'guided', 'by', 'it', ',', 'she', 'judged', 'it', 'wisest', ',', 'from', 'the', 'experience', 'of', 'the', 'past', ',', 'to', 'submit—and', 'therefore', ',', 'after', 'such', 'an', 'ungracious', 'delay', 'as', 'she', 'owed', 'to', 'her', 'own', 'dignity', ',', 'and', 'as', 'served', 'to', 'prevent', 'every', 'suspicion', 'of', 'good-will', ',', 'she', 'issued', 'her', 'decree', 'of', 'consent', 'to', 'the', 'marriage', 'of', 'Edward', 'and', 'Elinor', '.', 'What', 'she', 'would', 'engage', 'to', 'do', 'towards', 'augmenting', 'their', 'income', 'was', 'next', 'to', 'be', 'considered', ';', 'and', 'here', 'it', 'plainly', 'appeared', ',', 'that', 'though', 'Edward', 'was', 'now', 'her', 'only', 'son', ',', 'he', 'was', 'by', 'no', 'means', 'her', 'eldest', ';', 'for', 'while', 'Robert', 'was', 'inevitably', 'endowed', 'with', 'a', 'thousand', 'pounds', 'a-year', ',', 'not', 'the', 'smallest', 'objection', 'was', 'made', 'against', 'Edward', '’', 's', 'taking', 'orders', 'for', 'the', 'sake', 'of', 'two', 'hundred', 'and', 'fifty', 'at', 'the', 'utmost', ';', 'nor', 'was', 'anything', 'promised', 'either', 'for', 'the', 'present', 'or', 'in', 'future', ',', 'beyond', 'the', 'ten', 'thousand', 'pounds', ',', 'which', 'had', 'been', 'given', 'with', 'Fanny', '.', 'It', 'was', 'as', 'much', ',', 'however', ',', 'as', 'was', 'desired', ',', 'and', 'more', 'than', 'was', 'expected', ',', 'by', 'Edward', 'and', 'Elinor', ';', 'and', 'Mrs.', 'Ferrars', 'herself', ',', 'by', 'her', 'shuffling', 'excuses', ',', 'seemed', 'the', 'only', 'person', 'surprised', 'at', 'her', 'not', 'giving', 'more', '.', 'With', 'an', 'income', 'quite', 'sufficient', 'to', 'their', 'wants', 'thus', 'secured', 'to', 'them', ',', 'they', 'had', 'nothing', 'to', 'wait', 'for', 'after', 'Edward', 'was', 'in', 'possession', 'of', 'the', 'living', ',', 'but', 'the', 'readiness', 'of', 'the', 'house', ',', 'to', 'which', 'Colonel', 'Brandon', ',', 'with', 'an', 'eager', 'desire', 'for', 'the', 'accommodation', 'of', 'Elinor', ',', 'was', 'making', 'considerable', 'improvements', ';', 'and', 'after', 'waiting', 'some', 'time', 'for', 'their', 'completion', ',', 'after', 'experiencing', ',', 'as', 'usual', ',', 'a', 'thousand', 'disappointments', 'and', 'delays', 'from', 'the', 'unaccountable', 'dilatoriness', 'of', 'the', 'workmen', ',', 'Elinor', ',', 'as', 'usual', ',', 'broke', 'through', 'the', 'first', 'positive', 'resolution', 'of', 'not', 'marrying', 'till', 'every', 'thing', 'was', 'ready', ',', 'and', 'the', 'ceremony', 'took', 'place', 'in', 'Barton', 'church', 'early', 'in', 'the', 'autumn', '.', 'The', 'first', 'month', 'after', 'their', 'marriage', 'was', 'spent', 'with', 'their', 'friend', 'at', 'the', 'Mansion-house', ';', 'from', 'whence', 'they', 'could', 'superintend', 'the', 'progress', 'of', 'the', 'Parsonage', ',', 'and', 'direct', 'every', 'thing', 'as', 'they', 'liked', 'on', 'the', 'spot', ';', '—could', 'chuse', 'papers', ',', 'project', 'shrubberies', ',', 'and', 'invent', 'a', 'sweep', '.', 'Mrs.', 'Jennings', '’', 's', 'prophecies', ',', 'though', 'rather', 'jumbled', 'together', ',', 'were', 'chiefly', 'fulfilled', ';', 'for', 'she', 'was', 'able', 'to', 'visit', 'Edward', 'and', 'his', 'wife', 'in', 'their', 'Parsonage', 'by', 'Michaelmas', ',', 'and', 'she', 'found', 'in', 'Elinor', 'and', 'her', 'husband', ',', 'as', 'she', 'really', 'believed', ',', 'one', 'of', 'the', 'happiest', 'couples', 'in', 'the', 'world', '.', 'They', 'had', 'in', 'fact', 'nothing', 'to', 'wish', 'for', ',', 'but', 'the', 'marriage', 'of', 'Colonel', 'Brandon', 'and', 'Marianne', ',', 'and', 'rather', 'better', 'pasturage', 'for', 'their', 'cows', '.', 'They', 'were', 'visited', 'on', 'their', 'first', 'settling', 'by', 'almost', 'all', 'their', 'relations', 'and', 'friends', '.', 'Mrs.', 'Ferrars', 'came', 'to', 'inspect', 'the', 'happiness', 'which', 'she', 'was', 'almost', 'ashamed', 'of', 'having', 'authorised', ';', 'and', 'even', 'the', 'Dashwoods', 'were', 'at', 'the', 'expense', 'of', 'a', 'journey', 'from', 'Sussex', 'to', 'do', 'them', 'honour', '.', '“', 'I', 'will', 'not', 'say', 'that', 'I', 'am', 'disappointed', ',', 'my', 'dear', 'sister', ',', '”', 'said', 'John', ',', 'as', 'they', 'were', 'walking', 'together', 'one', 'morning', 'before', 'the', 'gates', 'of', 'Delaford', 'House', ',', '“', '_that_', 'would', 'be', 'saying', 'too', 'much', ',', 'for', 'certainly', 'you', 'have', 'been', 'one', 'of', 'the', 'most', 'fortunate', 'young', 'women', 'in', 'the', 'world', ',', 'as', 'it', 'is', '.', 'But', ',', 'I', 'confess', ',', 'it', 'would', 'give', 'me', 'great', 'pleasure', 'to', 'call', 'Colonel', 'Brandon', 'brother', '.', 'His', 'property', 'here', ',', 'his', 'place', ',', 'his', 'house', ',', 'every', 'thing', 'is', 'in', 'such', 'respectable', 'and', 'excellent', 'condition', '!', 'And', 'his', 'woods', ',', '—I', 'have', 'not', 'seen', 'such', 'timber', 'any', 'where', 'in', 'Dorsetshire', ',', 'as', 'there', 'is', 'now', 'standing', 'in', 'Delaford', 'Hanger', '!', 'And', 'though', ',', 'perhaps', ',', 'Marianne', 'may', 'not', 'seem', 'exactly', 'the', 'person', 'to', 'attract', 'him', ',', 'yet', 'I', 'think', 'it', 'would', 'altogether', 'be', 'advisable', 'for', 'you', 'to', 'have', 'them', 'now', 'frequently', 'staying', 'with', 'you', ',', 'for', 'as', 'Colonel', 'Brandon', 'seems', 'a', 'great', 'deal', 'at', 'home', ',', 'nobody', 'can', 'tell', 'what', 'may', 'happen', ';', 'for', ',', 'when', 'people', 'are', 'much', 'thrown', 'together', ',', 'and', 'see', 'little', 'of', 'anybody', 'else', ',', '—and', 'it', 'will', 'always', 'be', 'in', 'your', 'power', 'to', 'set', 'her', 'off', 'to', 'advantage', ',', 'and', 'so', 'forth', '.', 'In', 'short', ',', 'you', 'may', 'as', 'well', 'give', 'her', 'a', 'chance', ':', 'you', 'understand', 'me.', '”', 'But', 'though', 'Mrs.', 'Ferrars', '_did_', 'come', 'to', 'see', 'them', ',', 'and', 'always', 'treated', 'them', 'with', 'the', 'make-believe', 'of', 'decent', 'affection', ',', 'they', 'were', 'never', 'insulted', 'by', 'her', 'real', 'favour', 'and', 'preference', '.', '_That_', 'was', 'due', 'to', 'the', 'folly', 'of', 'Robert', ',', 'and', 'the', 'cunning', 'of', 'his', 'wife', ';', 'and', 'it', 'was', 'earned', 'by', 'them', 'before', 'many', 'months', 'had', 'passed', 'away', '.', 'The', 'selfish', 'sagacity', 'of', 'the', 'latter', ',', 'which', 'had', 'at', 'first', 'drawn', 'Robert', 'into', 'the', 'scrape', ',', 'was', 'the', 'principal', 'instrument', 'of', 'his', 'deliverance', 'from', 'it', ';', 'for', 'her', 'respectful', 'humility', ',', 'assiduous', 'attentions', ',', 'and', 'endless', 'flatteries', ',', 'as', 'soon', 'as', 'the', 'smallest', 'opening', 'was', 'given', 'for', 'their', 'exercise', ',', 'reconciled', 'Mrs.', 'Ferrars', 'to', 'his', 'choice', ',', 'and', 're-established', 'him', 'completely', 'in', 'her', 'favour', '.', 'The', 'whole', 'of', 'Lucy', '’', 's', 'behaviour', 'in', 'the', 'affair', ',', 'and', 'the', 'prosperity', 'which', 'crowned', 'it', ',', 'therefore', ',', 'may', 'be', 'held', 'forth', 'as', 'a', 'most', 'encouraging', 'instance', 'of', 'what', 'an', 'earnest', ',', 'an', 'unceasing', 'attention', 'to', 'self-interest', ',', 'however', 'its', 'progress', 'may', 'be', 'apparently', 'obstructed', ',', 'will', 'do', 'in', 'securing', 'every', 'advantage', 'of', 'fortune', ',', 'with', 'no', 'other', 'sacrifice', 'than', 'that', 'of', 'time', 'and', 'conscience', '.', 'When', 'Robert', 'first', 'sought', 'her', 'acquaintance', ',', 'and', 'privately', 'visited', 'her', 'in', 'Bartlett', '’', 's', 'Buildings', ',', 'it', 'was', 'only', 'with', 'the', 'view', 'imputed', 'to', 'him', 'by', 'his', 'brother', '.', 'He', 'merely', 'meant', 'to', 'persuade', 'her', 'to', 'give', 'up', 'the', 'engagement', ';', 'and', 'as', 'there', 'could', 'be', 'nothing', 'to', 'overcome', 'but', 'the', 'affection', 'of', 'both', ',', 'he', 'naturally', 'expected', 'that', 'one', 'or', 'two', 'interviews', 'would', 'settle', 'the', 'matter', '.', 'In', 'that', 'point', ',', 'however', ',', 'and', 'that', 'only', ',', 'he', 'erred', ';', 'for', 'though', 'Lucy', 'soon', 'gave', 'him', 'hopes', 'that', 'his', 'eloquence', 'would', 'convince', 'her', 'in', '_time_', ',', 'another', 'visit', ',', 'another', 'conversation', ',', 'was', 'always', 'wanted', 'to', 'produce', 'this', 'conviction', '.', 'Some', 'doubts', 'always', 'lingered', 'in', 'her', 'mind', 'when', 'they', 'parted', ',', 'which', 'could', 'only', 'be', 'removed', 'by', 'another', 'half', 'hour', '’', 's', 'discourse', 'with', 'himself', '.', 'His', 'attendance', 'was', 'by', 'this', 'means', 'secured', ',', 'and', 'the', 'rest', 'followed', 'in', 'course', '.', 'Instead', 'of', 'talking', 'of', 'Edward', ',', 'they', 'came', 'gradually', 'to', 'talk', 'only', 'of', 'Robert', ',', '—a', 'subject', 'on', 'which', 'he', 'had', 'always', 'more', 'to', 'say', 'than', 'on', 'any', 'other', ',', 'and', 'in', 'which', 'she', 'soon', 'betrayed', 'an', 'interest', 'even', 'equal', 'to', 'his', 'own', ';', 'and', 'in', 'short', ',', 'it', 'became', 'speedily', 'evident', 'to', 'both', ',', 'that', 'he', 'had', 'entirely', 'supplanted', 'his', 'brother', '.', 'He', 'was', 'proud', 'of', 'his', 'conquest', ',', 'proud', 'of', 'tricking', 'Edward', ',', 'and', 'very', 'proud', 'of', 'marrying', 'privately', 'without', 'his', 'mother', '’', 's', 'consent', '.', 'What', 'immediately', 'followed', 'is', 'known', '.', 'They', 'passed', 'some', 'months', 'in', 'great', 'happiness', 'at', 'Dawlish', ';', 'for', 'she', 'had', 'many', 'relations', 'and', 'old', 'acquaintances', 'to', 'cut—and', 'he', 'drew', 'several', 'plans', 'for', 'magnificent', 'cottages', ';', '—and', 'from', 'thence', 'returning', 'to', 'town', ',', 'procured', 'the', 'forgiveness', 'of', 'Mrs.', 'Ferrars', ',', 'by', 'the', 'simple', 'expedient', 'of', 'asking', 'it', ',', 'which', ',', 'at', 'Lucy', '’', 's', 'instigation', ',', 'was', 'adopted', '.', 'The', 'forgiveness', ',', 'at', 'first', ',', 'indeed', ',', 'as', 'was', 'reasonable', ',', 'comprehended', 'only', 'Robert', ';', 'and', 'Lucy', ',', 'who', 'had', 'owed', 'his', 'mother', 'no', 'duty', 'and', 'therefore', 'could', 'have', 'transgressed', 'none', ',', 'still', 'remained', 'some', 'weeks', 'longer', 'unpardoned', '.', 'But', 'perseverance', 'in', 'humility', 'of', 'conduct', 'and', 'messages', ',', 'in', 'self-condemnation', 'for', 'Robert', '’', 's', 'offence', ',', 'and', 'gratitude', 'for', 'the', 'unkindness', 'she', 'was', 'treated', 'with', ',', 'procured', 'her', 'in', 'time', 'the', 'haughty', 'notice', 'which', 'overcame', 'her', 'by', 'its', 'graciousness', ',', 'and', 'led', 'soon', 'afterwards', ',', 'by', 'rapid', 'degrees', ',', 'to', 'the', 'highest', 'state', 'of', 'affection', 'and', 'influence', '.', 'Lucy', 'became', 'as', 'necessary', 'to', 'Mrs.', 'Ferrars', ',', 'as', 'either', 'Robert', 'or', 'Fanny', ';', 'and', 'while', 'Edward', 'was', 'never', 'cordially', 'forgiven', 'for', 'having', 'once', 'intended', 'to', 'marry', 'her', ',', 'and', 'Elinor', ',', 'though', 'superior', 'to', 'her', 'in', 'fortune', 'and', 'birth', ',', 'was', 'spoken', 'of', 'as', 'an', 'intruder', ',', '_she_', 'was', 'in', 'every', 'thing', 'considered', ',', 'and', 'always', 'openly', 'acknowledged', ',', 'to', 'be', 'a', 'favourite', 'child', '.', 'They', 'settled', 'in', 'town', ',', 'received', 'very', 'liberal', 'assistance', 'from', 'Mrs.', 'Ferrars', ',', 'were', 'on', 'the', 'best', 'terms', 'imaginable', 'with', 'the', 'Dashwoods', ';', 'and', 'setting', 'aside', 'the', 'jealousies', 'and', 'ill-will', 'continually', 'subsisting', 'between', 'Fanny', 'and', 'Lucy', ',', 'in', 'which', 'their', 'husbands', 'of', 'course', 'took', 'a', 'part', ',', 'as', 'well', 'as', 'the', 'frequent', 'domestic', 'disagreements', 'between', 'Robert', 'and', 'Lucy', 'themselves', ',', 'nothing', 'could', 'exceed', 'the', 'harmony', 'in', 'which', 'they', 'all', 'lived', 'together', '.', 'What', 'Edward', 'had', 'done', 'to', 'forfeit', 'the', 'right', 'of', 'eldest', 'son', ',', 'might', 'have', 'puzzled', 'many', 'people', 'to', 'find', 'out', ';', 'and', 'what', 'Robert', 'had', 'done', 'to', 'succeed', 'to', 'it', ',', 'might', 'have', 'puzzled', 'them', 'still', 'more', '.', 'It', 'was', 'an', 'arrangement', ',', 'however', ',', 'justified', 'in', 'its', 'effects', ',', 'if', 'not', 'in', 'its', 'cause', ';', 'for', 'nothing', 'ever', 'appeared', 'in', 'Robert', '’', 's', 'style', 'of', 'living', 'or', 'of', 'talking', 'to', 'give', 'a', 'suspicion', 'of', 'his', 'regretting', 'the', 'extent', 'of', 'his', 'income', ',', 'as', 'either', 'leaving', 'his', 'brother', 'too', 'little', ',', 'or', 'bringing', 'himself', 'too', 'much', ';', '—and', 'if', 'Edward', 'might', 'be', 'judged', 'from', 'the', 'ready', 'discharge', 'of', 'his', 'duties', 'in', 'every', 'particular', ',', 'from', 'an', 'increasing', 'attachment', 'to', 'his', 'wife', 'and', 'his', 'home', ',', 'and', 'from', 'the', 'regular', 'cheerfulness', 'of', 'his', 'spirits', ',', 'he', 'might', 'be', 'supposed', 'no', 'less', 'contented', 'with', 'his', 'lot', ',', 'no', 'less', 'free', 'from', 'every', 'wish', 'of', 'an', 'exchange', '.', 'Elinor', '’', 's', 'marriage', 'divided', 'her', 'as', 'little', 'from', 'her', 'family', 'as', 'could', 'well', 'be', 'contrived', ',', 'without', 'rendering', 'the', 'cottage', 'at', 'Barton', 'entirely', 'useless', ',', 'for', 'her', 'mother', 'and', 'sisters', 'spent', 'much', 'more', 'than', 'half', 'their', 'time', 'with', 'her', '.', 'Mrs.', 'Dashwood', 'was', 'acting', 'on', 'motives', 'of', 'policy', 'as', 'well', 'as', 'pleasure', 'in', 'the', 'frequency', 'of', 'her', 'visits', 'at', 'Delaford', ';', 'for', 'her', 'wish', 'of', 'bringing', 'Marianne', 'and', 'Colonel', 'Brandon', 'together', 'was', 'hardly', 'less', 'earnest', ',', 'though', 'rather', 'more', 'liberal', 'than', 'what', 'John', 'had', 'expressed', '.', 'It', 'was', 'now', 'her', 'darling', 'object', '.', 'Precious', 'as', 'was', 'the', 'company', 'of', 'her', 'daughter', 'to', 'her', ',', 'she', 'desired', 'nothing', 'so', 'much', 'as', 'to', 'give', 'up', 'its', 'constant', 'enjoyment', 'to', 'her', 'valued', 'friend', ';', 'and', 'to', 'see', 'Marianne', 'settled', 'at', 'the', 'mansion-house', 'was', 'equally', 'the', 'wish', 'of', 'Edward', 'and', 'Elinor', '.', 'They', 'each', 'felt', 'his', 'sorrows', ',', 'and', 'their', 'own', 'obligations', ',', 'and', 'Marianne', ',', 'by', 'general', 'consent', ',', 'was', 'to', 'be', 'the', 'reward', 'of', 'all', '.', 'With', 'such', 'a', 'confederacy', 'against', 'her—with', 'a', 'knowledge', 'so', 'intimate', 'of', 'his', 'goodness—with', 'a', 'conviction', 'of', 'his', 'fond', 'attachment', 'to', 'herself', ',', 'which', 'at', 'last', ',', 'though', 'long', 'after', 'it', 'was', 'observable', 'to', 'everybody', 'else—burst', 'on', 'her—what', 'could', 'she', 'do', '?', 'Marianne', 'Dashwood', 'was', 'born', 'to', 'an', 'extraordinary', 'fate', '.', 'She', 'was', 'born', 'to', 'discover', 'the', 'falsehood', 'of', 'her', 'own', 'opinions', ',', 'and', 'to', 'counteract', ',', 'by', 'her', 'conduct', ',', 'her', 'most', 'favourite', 'maxims', '.', 'She', 'was', 'born', 'to', 'overcome', 'an', 'affection', 'formed', 'so', 'late', 'in', 'life', 'as', 'at', 'seventeen', ',', 'and', 'with', 'no', 'sentiment', 'superior', 'to', 'strong', 'esteem', 'and', 'lively', 'friendship', ',', 'voluntarily', 'to', 'give', 'her', 'hand', 'to', 'another', '!', '—and', '_that_', 'other', ',', 'a', 'man', 'who', 'had', 'suffered', 'no', 'less', 'than', 'herself', 'under', 'the', 'event', 'of', 'a', 'former', 'attachment', ',', 'whom', ',', 'two', 'years', 'before', ',', 'she', 'had', 'considered', 'too', 'old', 'to', 'be', 'married', ',', '—and', 'who', 'still', 'sought', 'the', 'constitutional', 'safeguard', 'of', 'a', 'flannel', 'waistcoat', '!', 'But', 'so', 'it', 'was', '.', 'Instead', 'of', 'falling', 'a', 'sacrifice', 'to', 'an', 'irresistible', 'passion', ',', 'as', 'once', 'she', 'had', 'fondly', 'flattered', 'herself', 'with', 'expecting', ',', '—instead', 'of', 'remaining', 'even', 'for', 'ever', 'with', 'her', 'mother', ',', 'and', 'finding', 'her', 'only', 'pleasures', 'in', 'retirement', 'and', 'study', ',', 'as', 'afterwards', 'in', 'her', 'more', 'calm', 'and', 'sober', 'judgment', 'she', 'had', 'determined', 'on', ',', '—she', 'found', 'herself', 'at', 'nineteen', ',', 'submitting', 'to', 'new', 'attachments', ',', 'entering', 'on', 'new', 'duties', ',', 'placed', 'in', 'a', 'new', 'home', ',', 'a', 'wife', ',', 'the', 'mistress', 'of', 'a', 'family', ',', 'and', 'the', 'patroness', 'of', 'a', 'village', '.', 'Colonel', 'Brandon', 'was', 'now', 'as', 'happy', ',', 'as', 'all', 'those', 'who', 'best', 'loved', 'him', ',', 'believed', 'he', 'deserved', 'to', 'be', ';', '—in', 'Marianne', 'he', 'was', 'consoled', 'for', 'every', 'past', 'affliction', ';', '—her', 'regard', 'and', 'her', 'society', 'restored', 'his', 'mind', 'to', 'animation', ',', 'and', 'his', 'spirits', 'to', 'cheerfulness', ';', 'and', 'that', 'Marianne', 'found', 'her', 'own', 'happiness', 'in', 'forming', 'his', ',', 'was', 'equally', 'the', 'persuasion', 'and', 'delight', 'of', 'each', 'observing', 'friend', '.', 'Marianne', 'could', 'never', 'love', 'by', 'halves', ';', 'and', 'her', 'whole', 'heart', 'became', ',', 'in', 'time', ',', 'as', 'much', 'devoted', 'to', 'her', 'husband', ',', 'as', 'it', 'had', 'once', 'been', 'to', 'Willoughby', '.', 'Willoughby', 'could', 'not', 'hear', 'of', 'her', 'marriage', 'without', 'a', 'pang', ';', 'and', 'his', 'punishment', 'was', 'soon', 'afterwards', 'complete', 'in', 'the', 'voluntary', 'forgiveness', 'of', 'Mrs.', 'Smith', ',', 'who', ',', 'by', 'stating', 'his', 'marriage', 'with', 'a', 'woman', 'of', 'character', ',', 'as', 'the', 'source', 'of', 'her', 'clemency', ',', 'gave', 'him', 'reason', 'for', 'believing', 'that', 'had', 'he', 'behaved', 'with', 'honour', 'towards', 'Marianne', ',', 'he', 'might', 'at', 'once', 'have', 'been', 'happy', 'and', 'rich', '.', 'That', 'his', 'repentance', 'of', 'misconduct', ',', 'which', 'thus', 'brought', 'its', 'own', 'punishment', ',', 'was', 'sincere', ',', 'need', 'not', 'be', 'doubted', ';', '—nor', 'that', 'he', 'long', 'thought', 'of', 'Colonel', 'Brandon', 'with', 'envy', ',', 'and', 'of', 'Marianne', 'with', 'regret', '.', 'But', 'that', 'he', 'was', 'for', 'ever', 'inconsolable', ',', 'that', 'he', 'fled', 'from', 'society', ',', 'or', 'contracted', 'an', 'habitual', 'gloom', 'of', 'temper', ',', 'or', 'died', 'of', 'a', 'broken', 'heart', ',', 'must', 'not', 'be', 'depended', 'on—for', 'he', 'did', 'neither', '.', 'He', 'lived', 'to', 'exert', ',', 'and', 'frequently', 'to', 'enjoy', 'himself', '.', 'His', 'wife', 'was', 'not', 'always', 'out', 'of', 'humour', ',', 'nor', 'his', 'home', 'always', 'uncomfortable', ';', 'and', 'in', 'his', 'breed', 'of', 'horses', 'and', 'dogs', ',', 'and', 'in', 'sporting', 'of', 'every', 'kind', ',', 'he', 'found', 'no', 'inconsiderable', 'degree', 'of', 'domestic', 'felicity', '.', 'For', 'Marianne', ',', 'however', ',', 'in', 'spite', 'of', 'his', 'incivility', 'in', 'surviving', 'her', 'loss', ',', 'he', 'always', 'retained', 'that', 'decided', 'regard', 'which', 'interested', 'him', 'in', 'every', 'thing', 'that', 'befell', 'her', ',', 'and', 'made', 'her', 'his', 'secret', 'standard', 'of', 'perfection', 'in', 'woman', ';', 'and', 'many', 'a', 'rising', 'beauty', 'would', 'be', 'slighted', 'by', 'him', 'in', 'after-days', 'as', 'bearing', 'no', 'comparison', 'with', 'Mrs.', 'Brandon', '.', 'Mrs.', 'Dashwood', 'was', 'prudent', 'enough', 'to', 'remain', 'at', 'the', 'cottage', ',', 'without', 'attempting', 'a', 'removal', 'to', 'Delaford', ';', 'and', 'fortunately', 'for', 'Sir', 'John', 'and', 'Mrs.', 'Jennings', ',', 'when', 'Marianne', 'was', 'taken', 'from', 'them', ',', 'Margaret', 'had', 'reached', 'an', 'age', 'highly', 'suitable', 'for', 'dancing', ',', 'and', 'not', 'very', 'ineligible', 'for', 'being', 'supposed', 'to', 'have', 'a', 'lover', '.', 'Between', 'Barton', 'and', 'Delaford', ',', 'there', 'was', 'that', 'constant', 'communication', 'which', 'strong', 'family', 'affection', 'would', 'naturally', 'dictate', ';', 'and', 'among', 'the', 'merits', 'and', 'the', 'happiness', 'of', 'Elinor', 'and', 'Marianne', ',', 'let', 'it', 'not', 'be', 'ranked', 'as', 'the', 'least', 'considerable', ',', 'that', 'though', 'sisters', ',', 'and', 'living', 'almost', 'within', 'sight', 'of', 'each', 'other', ',', 'they', 'could', 'live', 'without', 'disagreement', 'between', 'themselves', ',', 'or', 'producing', 'coolness', 'between', 'their', 'husbands', '.', 'THE', 'END', '*', '*', '*', 'END', 'OF', 'THE', 'PROJECT', 'GUTENBERG', 'EBOOK', 'SENSE', 'AND', 'SENSIBILITY', '*', '*', '*', '*', '*', '*', '*', '*', 'This', 'file', 'should', 'be', 'named', '161-0.txt', 'or', '161-0.zip', '*', '*', '*', '*', '*', 'This', 'and', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in', ':', 'https', ':', '//www.gutenberg.org/1/6/161/', 'Updated', 'editions', 'will', 'replace', 'the', 'previous', 'one', '--', 'the', 'old', 'editions', 'will', 'be', 'renamed', '.', 'Creating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'means', 'that', 'no', 'one', 'owns', 'a', 'United', 'States', 'copyright', 'in', 'these', 'works', ',', 'so', 'the', 'Foundation', '(', 'and', 'you', '!', ')', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'United', 'States', 'without', 'permission', 'and', 'without', 'paying', 'copyright', 'royalties', '.', 'Special', 'rules', ',', 'set', 'forth', 'in', 'the', 'General', 'Terms', 'of', 'Use', 'part', 'of', 'this', 'license', ',', 'apply', 'to', 'copying', 'and', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'to', 'protect', 'the', 'PROJECT', 'GUTENBERG-tm', 'concept', 'and', 'trademark', '.', 'Project', 'Gutenberg', 'is', 'a', 'registered', 'trademark', ',', 'and', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'an', 'eBook', ',', 'except', 'by', 'following', 'the', 'terms', 'of', 'the', 'trademark', 'license', ',', 'including', 'paying', 'royalties', 'for', 'use', 'of', 'the', 'Project', 'Gutenberg', 'trademark', '.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this', 'eBook', ',', 'complying', 'with', 'the', 'trademark', 'license', 'is', 'very', 'easy', '.', 'You', 'may', 'use', 'this', 'eBook', 'for', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works', ',', 'reports', ',', 'performances', 'and', 'research', '.', 'Project', 'Gutenberg', 'eBooks', 'may', 'be', 'modified', 'and', 'printed', 'and', 'given', 'away', '--', 'you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'the', 'United', 'States', 'with', 'eBooks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '.', 'Redistribution', 'is', 'subject', 'to', 'the', 'trademark', 'license', ',', 'especially', 'commercial', 'redistribution', '.', 'START', ':', 'FULL', 'LICENSE', 'THE', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE', 'PLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK', 'To', 'protect', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'the', 'free', 'distribution', 'of', 'electronic', 'works', ',', 'by', 'using', 'or', 'distributing', 'this', 'work', '(', 'or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', '``', 'Project', 'Gutenberg', "''", ')', ',', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'Full', 'Project', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at', 'www.gutenberg.org/license', '.', 'Section', '1', '.', 'General', 'Terms', 'of', 'Use', 'and', 'Redistributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', '1.A', '.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm', 'electronic', 'work', ',', 'you', 'indicate', 'that', 'you', 'have', 'read', ',', 'understand', ',', 'agree', 'to', 'and', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'property', '(', 'trademark/copyright', ')', 'agreement', '.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all', 'the', 'terms', 'of', 'this', 'agreement', ',', 'you', 'must', 'cease', 'using', 'and', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your', 'possession', '.', 'If', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement', ',', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'the', 'person', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragraph', '1.E.8', '.', '1.B', '.', '``', 'Project', 'Gutenberg', "''", 'is', 'a', 'registered', 'trademark', '.', 'It', 'may', 'only', 'be', 'used', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'who', 'agree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement', '.', 'There', 'are', 'a', 'few', 'things', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'even', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement', '.', 'See', 'paragraph', '1.C', 'below', '.', 'There', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'this', 'agreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'works', '.', 'See', 'paragraph', '1.E', 'below', '.', '1.C', '.', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(', '``', 'the', 'Foundation', "''", 'or', 'PGLAF', ')', ',', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collection', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', '.', 'Nearly', 'all', 'the', 'individual', 'works', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'United', 'States', '.', 'If', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'the', 'United', 'States', 'and', 'you', 'are', 'located', 'in', 'the', 'United', 'States', ',', 'we', 'do', 'not', 'claim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying', ',', 'distributing', ',', 'performing', ',', 'displaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'as', 'all', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed', '.', 'Of', 'course', ',', 'we', 'hope', 'that', 'you', 'will', 'support', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm', 'works', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'the', 'Project', 'Gutenberg-tm', 'name', 'associated', 'with', 'the', 'work', '.', 'You', 'can', 'easily', 'comply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'the', 'same', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when', 'you', 'share', 'it', 'without', 'charge', 'with', 'others', '.', '1.D', '.', 'The', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'govern', 'what', 'you', 'can', 'do', 'with', 'this', 'work', '.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are', 'in', 'a', 'constant', 'state', 'of', 'change', '.', 'If', 'you', 'are', 'outside', 'the', 'United', 'States', ',', 'check', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'this', 'agreement', 'before', 'downloading', ',', 'copying', ',', 'displaying', ',', 'performing', ',', 'distributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any', 'other', 'Project', 'Gutenberg-tm', 'work', '.', 'The', 'Foundation', 'makes', 'no', 'representations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any', 'country', 'other', 'than', 'the', 'United', 'States', '.', '1.E', '.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg', ':', '1.E.1', '.', 'The', 'following', 'sentence', ',', 'with', 'active', 'links', 'to', ',', 'or', 'other', 'immediate', 'access', 'to', ',', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear', 'prominently', 'whenever', 'any', 'copy', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', '(', 'any', 'work', 'on', 'which', 'the', 'phrase', '``', 'Project', 'Gutenberg', "''", 'appears', ',', 'or', 'with', 'which', 'the', 'phrase', '``', 'Project', 'Gutenberg', "''", 'is', 'associated', ')', 'is', 'accessed', ',', 'displayed', ',', 'performed', ',', 'viewed', ',', 'copied', 'or', 'distributed', ':', 'This', 'eBook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'United', 'States', 'and', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', 'restrictions', 'whatsoever', '.', 'You', 'may', 'copy', 'it', ',', 'give', 'it', 'away', 'or', 're-use', 'it', 'under', 'the', 'terms', 'of', 'the', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org', '.', 'If', 'you', 'are', 'not', 'located', 'in', 'the', 'United', 'States', ',', 'you', 'will', 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', 'are', 'located', 'before', 'using', 'this', 'eBook', '.', '1.E.2', '.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'derived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(', 'does', 'not', 'contain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'the', 'copyright', 'holder', ')', ',', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'in', 'the', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges', '.', 'If', 'you', 'are', 'redistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', '``', 'Project', 'Gutenberg', "''", 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work', ',', 'you', 'must', 'comply', 'either', 'with', 'the', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or', 'obtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'Project', 'Gutenberg-tm', 'trademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9', '.', '1.E.3', '.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', ',', 'your', 'use', 'and', 'distribution', 'must', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'and', 'any', 'additional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder', '.', 'Additional', 'terms', 'will', 'be', 'linked', 'to', 'the', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works', 'posted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'the', 'beginning', 'of', 'this', 'work', '.', '1.E.4', '.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'terms', 'from', 'this', 'work', ',', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'this', 'work', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm', '.', '1.E.5', '.', 'Do', 'not', 'copy', ',', 'display', ',', 'perform', ',', 'distribute', 'or', 'redistribute', 'this', 'electronic', 'work', ',', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work', ',', 'without', 'prominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with', 'active', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'Project', 'Gutenberg-tm', 'License', '.', '1.E.6', '.', 'You', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binary', ',', 'compressed', ',', 'marked', 'up', ',', 'nonproprietary', 'or', 'proprietary', 'form', ',', 'including', 'any', 'word', 'processing', 'or', 'hypertext', 'form', '.', 'However', ',', 'if', 'you', 'provide', 'access', 'to', 'or', 'distribute', 'copies', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', 'in', 'a', 'format', 'other', 'than', '``', 'Plain', 'Vanilla', 'ASCII', "''", 'or', 'other', 'format', 'used', 'in', 'the', 'official', 'version', 'posted', 'on', 'the', 'official', 'Project', 'Gutenberg-tm', 'website', '(', 'www.gutenberg.org', ')', ',', 'you', 'must', ',', 'at', 'no', 'additional', 'cost', ',', 'fee', 'or', 'expense', 'to', 'the', 'user', ',', 'provide', 'a', 'copy', ',', 'a', 'means', 'of', 'exporting', 'a', 'copy', ',', 'or', 'a', 'means', 'of', 'obtaining', 'a', 'copy', 'upon', 'request', ',', 'of', 'the', 'work', 'in', 'its', 'original', '``', 'Plain', 'Vanilla', 'ASCII', "''", 'or', 'other', 'form', '.', 'Any', 'alternate', 'format', 'must', 'include', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1', '.', '1.E.7', '.', 'Do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to', ',', 'viewing', ',', 'displaying', ',', 'performing', ',', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works', 'unless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9', '.', '1.E.8', '.', 'You', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing', 'access', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'provided', 'that', ':', '*', 'You', 'pay', 'a', 'royalty', 'fee', 'of', '20', '%', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from', 'the', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'the', 'method', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes', '.', 'The', 'fee', 'is', 'owed', 'to', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark', ',', 'but', 'he', 'has', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '.', 'Royalty', 'payments', 'must', 'be', 'paid', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(', 'or', 'are', 'legally', 'required', 'to', 'prepare', ')', 'your', 'periodic', 'tax', 'returns', '.', 'Royalty', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'the', 'address', 'specified', 'in', 'Section', '4', ',', '``', 'Information', 'about', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '.', "''", '*', 'You', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies', 'you', 'in', 'writing', '(', 'or', 'by', 'e-mail', ')', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', '.', 'You', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm', 'works', '.', '*', 'You', 'provide', ',', 'in', 'accordance', 'with', 'paragraph', '1.F.3', ',', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy', ',', 'if', 'a', 'defect', 'in', 'the', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '90', 'days', 'of', 'receipt', 'of', 'the', 'work', '.', '*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works', '.', '1.E.9', '.', 'If', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than', 'are', 'set', 'forth', 'in', 'this', 'agreement', ',', 'you', 'must', 'obtain', 'permission', 'in', 'writing', 'from', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', ',', 'the', 'manager', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark', '.', 'Contact', 'the', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below', '.', '1.F', '.', '1.F.1', '.', 'Project', 'Gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerable', 'effort', 'to', 'identify', ',', 'do', 'copyright', 'research', 'on', ',', 'transcribe', 'and', 'proofread', 'works', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'the', 'Project', 'Gutenberg-tm', 'collection', '.', 'Despite', 'these', 'efforts', ',', 'Project', 'Gutenberg-tm', 'electronic', 'works', ',', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored', ',', 'may', 'contain', '``', 'Defects', ',', "''", 'such', 'as', ',', 'but', 'not', 'limited', 'to', ',', 'incomplete', ',', 'inaccurate', 'or', 'corrupt', 'data', ',', 'transcription', 'errors', ',', 'a', 'copyright', 'or', 'other', 'intellectual', 'property', 'infringement', ',', 'a', 'defective', 'or', 'damaged', 'disk', 'or', 'other', 'medium', ',', 'a', 'computer', 'virus', ',', 'or', 'computer', 'codes', 'that', 'damage', 'or', 'can', 'not', 'be', 'read', 'by', 'your', 'equipment', '.', '1.F.2', '.', 'LIMITED', 'WARRANTY', ',', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', 'the', '``', 'Right', 'of', 'Replacement', 'or', 'Refund', "''", 'described', 'in', 'paragraph', '1.F.3', ',', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', ',', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark', ',', 'and', 'any', 'other', 'party', 'distributing', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement', ',', 'disclaim', 'all', 'liability', 'to', 'you', 'for', 'damages', ',', 'costs', 'and', 'expenses', ',', 'including', 'legal', 'fees', '.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE', ',', 'STRICT', 'LIABILITY', ',', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE', 'PROVIDED', 'IN', 'PARAGRAPH', '1.F.3', '.', 'YOU', 'AGREE', 'THAT', 'THE', 'FOUNDATION', ',', 'THE', 'TRADEMARK', 'OWNER', ',', 'AND', 'ANY', 'DISTRIBUTOR', 'UNDER', 'THIS', 'AGREEMENT', 'WILL', 'NOT', 'BE', 'LIABLE', 'TO', 'YOU', 'FOR', 'ACTUAL', ',', 'DIRECT', ',', 'INDIRECT', ',', 'CONSEQUENTIAL', ',', 'PUNITIVE', 'OR', 'INCIDENTAL', 'DAMAGES', 'EVEN', 'IF', 'YOU', 'GIVE', 'NOTICE', 'OF', 'THE', 'POSSIBILITY', 'OF', 'SUCH', 'DAMAGE', '.', '1.F.3', '.', 'LIMITED', 'RIGHT', 'OF', 'REPLACEMENT', 'OR', 'REFUND', '-', 'If', 'you', 'discover', 'a', 'defect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it', ',', 'you', 'can', 'receive', 'a', 'refund', 'of', 'the', 'money', '(', 'if', 'any', ')', 'you', 'paid', 'for', 'it', 'by', 'sending', 'a', 'written', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from', '.', 'If', 'you', 'received', 'the', 'work', 'on', 'a', 'physical', 'medium', ',', 'you', 'must', 'return', 'the', 'medium', 'with', 'your', 'written', 'explanation', '.', 'The', 'person', 'or', 'entity', 'that', 'provided', 'you', 'with', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'in', 'lieu', 'of', 'a', 'refund', '.', 'If', 'you', 'received', 'the', 'work', 'electronically', ',', 'the', 'person', 'or', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'second', 'opportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund', '.', 'If', 'the', 'second', 'copy', 'is', 'also', 'defective', ',', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writing', 'without', 'further', 'opportunities', 'to', 'fix', 'the', 'problem', '.', '1.F.4', '.', 'Except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth', 'in', 'paragraph', '1.F.3', ',', 'this', 'work', 'is', 'provided', 'to', 'you', "'AS-IS", "'", ',', 'WITH', 'NO', 'OTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND', ',', 'EXPRESS', 'OR', 'IMPLIED', ',', 'INCLUDING', 'BUT', 'NOT', 'LIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE', '.', '1.F.5', '.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied', 'warranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of', 'damages', '.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement', 'violates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement', ',', 'the', 'agreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'or', 'limitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law', '.', 'The', 'invalidity', 'or', 'unenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'the', 'remaining', 'provisions', '.', '1.F.6', '.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'Foundation', ',', 'the', 'trademark', 'owner', ',', 'any', 'agent', 'or', 'employee', 'of', 'the', 'Foundation', ',', 'anyone', 'providing', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'accordance', 'with', 'this', 'agreement', ',', 'and', 'any', 'volunteers', 'associated', 'with', 'the', 'production', ',', 'promotion', 'and', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', ',', 'harmless', 'from', 'all', 'liability', ',', 'costs', 'and', 'expenses', ',', 'including', 'legal', 'fees', ',', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of', 'the', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur', ':', '(', 'a', ')', 'distribution', 'of', 'this', 'or', 'any', 'Project', 'Gutenberg-tm', 'work', ',', '(', 'b', ')', 'alteration', ',', 'modification', ',', 'or', 'additions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work', ',', 'and', '(', 'c', ')', 'any', 'Defect', 'you', 'cause', '.', 'Section', '2', '.', 'Information', 'about', 'the', 'Mission', 'of', 'Project', 'Gutenberg-tm', 'Project', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'of', 'electronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'of', 'computers', 'including', 'obsolete', ',', 'old', ',', 'middle-aged', 'and', 'new', 'computers', '.', 'It', 'exists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donations', 'from', 'people', 'in', 'all', 'walks', 'of', 'life', '.', 'Volunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'the', 'assistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', "Gutenberg-tm's", 'goals', 'and', 'ensuring', 'that', 'the', 'Project', 'Gutenberg-tm', 'collection', 'will', 'remain', 'freely', 'available', 'for', 'generations', 'to', 'come', '.', 'In', '2001', ',', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'a', 'secure', 'and', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'and', 'future', 'generations', '.', 'To', 'learn', 'more', 'about', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help', ',', 'see', 'Sections', '3', 'and', '4', 'and', 'the', 'Foundation', 'information', 'page', 'at', 'www.gutenberg.org', 'Section', '3', '.', 'Information', 'about', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'a', 'non-profit', '501', '(', 'c', ')', '(', '3', ')', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'the', 'state', 'of', 'Mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'Internal', 'Revenue', 'Service', '.', 'The', 'Foundation', "'s", 'EIN', 'or', 'federal', 'tax', 'identification', 'number', 'is', '64-6221541', '.', 'Contributions', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'by', 'U.S.', 'federal', 'laws', 'and', 'your', 'state', "'s", 'laws', '.', 'The', 'Foundation', "'s", 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West', ',', 'Salt', 'Lake', 'City', ',', 'UT', '84116', ',', '(', '801', ')', '596-1887', '.', 'Email', 'contact', 'links', 'and', 'up', 'to', 'date', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', 'Foundation', "'s", 'website', 'and', 'official', 'page', 'at', 'www.gutenberg.org/contact', 'Section', '4', '.', 'Information', 'about', 'Donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'Project', 'Gutenberg-tm', 'depends', 'upon', 'and', 'can', 'not', 'survive', 'without', 'widespread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of', 'increasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'be', 'freely', 'distributed', 'in', 'machine-readable', 'form', 'accessible', 'by', 'the', 'widest', 'array', 'of', 'equipment', 'including', 'outdated', 'equipment', '.', 'Many', 'small', 'donations', '(', '$', '1', 'to', '$', '5,000', ')', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt', 'status', 'with', 'the', 'IRS', '.', 'The', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulating', 'charities', 'and', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'the', 'United', 'States', '.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'a', 'considerable', 'effort', ',', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'up', 'with', 'these', 'requirements', '.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations', 'where', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance', '.', 'To', 'SEND', 'DONATIONS', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particular', 'state', 'visit', 'www.gutenberg.org/donate', 'While', 'we', 'can', 'not', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we', 'have', 'not', 'met', 'the', 'solicitation', 'requirements', ',', 'we', 'know', 'of', 'no', 'prohibition', 'against', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who', 'approach', 'us', 'with', 'offers', 'to', 'donate', '.', 'International', 'donations', 'are', 'gratefully', 'accepted', ',', 'but', 'we', 'can', 'not', 'make', 'any', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from', 'outside', 'the', 'United', 'States', '.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff', '.', 'Please', 'check', 'the', 'Project', 'Gutenberg', 'web', 'pages', 'for', 'current', 'donation', 'methods', 'and', 'addresses', '.', 'Donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'other', 'ways', 'including', 'checks', ',', 'online', 'payments', 'and', 'credit', 'card', 'donations', '.', 'To', 'donate', ',', 'please', 'visit', ':', 'www.gutenberg.org/donate', 'Section', '5', '.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'Professor', 'Michael', 'S.', 'Hart', 'was', 'the', 'originator', 'of', 'the', 'Project', 'Gutenberg-tm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be', 'freely', 'shared', 'with', 'anyone', '.', 'For', 'forty', 'years', ',', 'he', 'produced', 'and', 'distributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'a', 'loose', 'network', 'of', 'volunteer', 'support', '.', 'Project', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed', 'editions', ',', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in', 'the', 'U.S.', 'unless', 'a', 'copyright', 'notice', 'is', 'included', '.', 'Thus', ',', 'we', 'do', 'not', 'necessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper', 'edition', '.', 'Most', 'people', 'start', 'at', 'our', 'website', 'which', 'has', 'the', 'main', 'PG', 'search', 'facility', ':', 'www.gutenberg.org', 'This', 'website', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm', ',', 'including', 'how', 'to', 'make', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', ',', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks', ',', 'and', 'how', 'to', 'subscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks', '.']
# nltk pos tag
sense_pos = nltk.pos_tag(sense_tokens_nltk)
sense_pos
[('\ufeffThe', 'NN'),
('Project', 'NNP'),
('Gutenberg', 'NNP'),
('eBook', 'NN'),
('of', 'IN'),
('Sense', 'NNP'),
('and', 'CC'),
('Sensibility', 'NNP'),
(',', ','),
('by', 'IN'),
('Jane', 'NNP'),
('Austen', 'NNP'),
('This', 'DT'),
('eBook', 'NN'),
('is', 'VBZ'),
('for', 'IN'),
('the', 'DT'),
('use', 'NN'),
('of', 'IN'),
('anyone', 'NN'),
('anywhere', 'RB'),
('in', 'IN'),
('the', 'DT'),
('United', 'NNP'),
('States', 'NNPS'),
('and', 'CC'),
('most', 'JJS'),
('other', 'JJ'),
('parts', 'NNS'),
('of', 'IN'),
('the', 'DT'),
('world', 'NN'),
('at', 'IN'),
('no', 'DT'),
('cost', 'NN'),
('and', 'CC'),
('with', 'IN'),
('almost', 'RB'),
('no', 'DT'),
('restrictions', 'NNS'),
('whatsoever', 'RB'),
('.', '.'),
('You', 'PRP'),
('may', 'MD'),
('copy', 'VB'),
('it', 'PRP'),
(',', ','),
('give', 'VB'),
('it', 'PRP'),
('away', 'RB'),
('or', 'CC'),
('re-use', 'VB'),
('it', 'PRP'),
('under', 'IN'),
('the', 'DT'),
('terms', 'NNS'),
('of', 'IN'),
('the', 'DT'),
('Project', 'NNP'),
('Gutenberg', 'NNP'),
('License', 'NNP'),
('included', 'VBD'),
('with', 'IN'),
('this', 'DT'),
('eBook', 'NN'),
('or', 'CC'),
('online', 'NN'),
('at', 'IN'),
('www.gutenberg.org', 'NN'),
('.', '.'),
('If', 'IN'),
('you', 'PRP'),
('are', 'VBP'),
('not', 'RB'),
('located', 'VBN'),
('in', 'IN'),
('the', 'DT'),
('United', 'NNP'),
('States', 'NNPS'),
(',', ','),
('you', 'PRP'),
('will', 'MD'),
('have', 'VB'),
('to', 'TO'),
('check', 'VB'),
('the', 'DT'),
('laws', 'NNS'),
('of', 'IN'),
('the', 'DT'),
('country', 'NN'),
('where', 'WRB'),
('you', 'PRP'),
('are', 'VBP'),
('located', 'VBN'),
('before', 'IN'),
('using', 'VBG'),
('this', 'DT'),
('eBook', 'NN'),
('.', '.'),
('Title', 'NN'),
(':', ':'),
('Sense', 'NN'),
('and', 'CC'),
('Sensibility', 'NNP'),
('Author', 'NNP'),
(':', ':'),
('Jane', 'NNP'),
('Austen', 'NNP'),
('Release', 'NNP'),
('Date', 'NNP'),
(':', ':'),
('September', 'NNP'),
(',', ','),
('1994', 'CD'),
('[', 'NNP'),
('eBook', 'VBD'),
('#', '#'),
('161', 'CD'),
(']', 'JJ'),
('[', 'NN'),
('Most', 'NNP'),
('recently', 'RB'),
('updated', 'VBD'),
(':', ':'),
('March', 'NNP'),
('16', 'CD'),
(',', ','),
('2021', 'CD'),
(']', 'JJ'),
('Language', 'NNP'),
(':', ':'),
('English', 'JJ'),
('Character', 'NNP'),
('set', 'VBD'),
('encoding', 'VBG'),
(':', ':'),
('UTF-8', 'JJ'),
('Special', 'JJ'),
('thanks', 'NNS'),
('are', 'VBP'),
('due', 'JJ'),
('to', 'TO'),
('Sharon', 'NNP'),
('Partridge', 'NNP'),
('for', 'IN'),
('extensive', 'JJ'),
('proofreading', 'NN'),
('and', 'CC'),
('correction', 'NN'),
('of', 'IN'),
('this', 'DT'),
('etext', 'NN'),
('.', '.'),
('*', 'CC'),
('*', 'JJ'),
('*', 'NNP'),
('START', 'NNP'),
('OF', 'IN'),
('THE', 'NNP'),
('PROJECT', 'NNP'),
('GUTENBERG', 'NNP'),
('EBOOK', 'NNP'),
('SENSE', 'NNP'),
('AND', 'NNP'),
('SENSIBILITY', 'NNP'),
('*', 'NNP'),
('*', 'NNP'),
('*', 'NNP'),
('[', 'NNP'),
('Illustration', 'NNP'),
(']', 'NNP'),
('Sense', 'NNP'),
('and', 'CC'),
('Sensibility', 'NNP'),
('by', 'IN'),
('Jane', 'NNP'),
('Austen', 'NNP'),
('(', '('),
('1811', 'CD'),
(')', ')'),
('Contents', 'NNPS'),
('CHAPTER', 'NN'),
('I', 'PRP'),
('CHAPTER', 'NNP'),
('II', 'NNP'),
('CHAPTER', 'NNP'),
('III', 'NNP'),
('CHAPTER', 'NNP'),
('IV', 'NNP'),
('CHAPTER', 'NNP'),
('V', 'NNP'),
('CHAPTER', 'NNP'),
('VI', 'NNP'),
('CHAPTER', 'NNP'),
('VII', 'NNP'),
('CHAPTER', 'NNP'),
('VIII', 'NNP'),
('CHAPTER', 'NNP'),
('IX', 'NNP'),
('CHAPTER', 'NNP'),
('X', 'NNP'),
('CHAPTER', 'NNP'),
('XI', 'NNP'),
('CHAPTER', 'NNP'),
('XII', 'NNP'),
('CHAPTER', 'NNP'),
('XIII', 'NNP'),
('CHAPTER', 'NNP'),
('XIV', 'NNP'),
('CHAPTER', 'NNP'),
('XV', 'NNP'),
('CHAPTER', 'NNP'),
('XVI', 'NNP'),
('CHAPTER', 'NNP'),
('XVII', 'NNP'),
('CHAPTER', 'NNP'),
('XVIII', 'NNP'),
('CHAPTER', 'NNP'),
('XIX', 'NNP'),
('CHAPTER', 'NNP'),
('XX', 'NNP'),
('CHAPTER', 'NNP'),
('XXI', 'NNP'),
('CHAPTER', 'NNP'),
('XXII', 'NNP'),
('CHAPTER', 'NNP'),
('XXIII', 'NNP'),
('CHAPTER', 'NNP'),
('XXIV', 'NNP'),
('CHAPTER', 'NNP'),
('XXV', 'NNP'),
('CHAPTER', 'NNP'),
('XXVI', 'NNP'),
('CHAPTER', 'NNP'),
('XXVII', 'NNP'),
('CHAPTER', 'NNP'),
('XXVIII', 'NNP'),
('CHAPTER', 'NNP'),
('XXIX', 'NNP'),
('CHAPTER', 'NNP'),
('XXX', 'NNP'),
('CHAPTER', 'NNP'),
('XXXI', 'NNP'),
('CHAPTER', 'NNP'),
('XXXII', 'NNP'),
('CHAPTER', 'NNP'),
('XXXIII', 'NNP'),
('CHAPTER', 'NNP'),
('XXXIV', 'NNP'),
('CHAPTER', 'NNP'),
('XXXV', 'NNP'),
('CHAPTER', 'NNP'),
('XXXVI', 'NNP'),
('CHAPTER', 'NNP'),
('XXXVII', 'NNP'),
('CHAPTER', 'NNP'),
('XXXVIII', 'NNP'),
('CHAPTER', 'NNP'),
('XXXIX', 'NNP'),
('CHAPTER', 'NNP'),
('XL', 'NNP'),
('CHAPTER', 'NNP'),
('XLI', 'NNP'),
('CHAPTER', 'NNP'),
('XLII', 'NNP'),
('CHAPTER', 'NNP'),
('XLIII', 'NNP'),
('CHAPTER', 'NNP'),
('XLIV', 'NNP'),
('CHAPTER', 'NNP'),
('XLV', 'NNP'),
('CHAPTER', 'NNP'),
('XLVI', 'NNP'),
('CHAPTER', 'NNP'),
('XLVII', 'NNP'),
('CHAPTER', 'NNP'),
('XLVIII', 'NNP'),
('CHAPTER', 'NNP'),
('XLIX', 'NNP'),
('CHAPTER', 'NNP'),
('L', 'NNP'),
('CHAPTER', 'NNP'),
('I', 'PRP'),
('.', '.'),
('The', 'DT'),
('family', 'NN'),
('of', 'IN'),
('Dashwood', 'NNP'),
('had', 'VBD'),
('long', 'RB'),
('been', 'VBN'),
('settled', 'VBN'),
('in', 'IN'),
('Sussex', 'NNP'),
('.', '.'),
('Their', 'PRP$'),
('estate', 'NN'),
('was', 'VBD'),
('large', 'JJ'),
(',', ','),
('and', 'CC'),
('their', 'PRP$'),
('residence', 'NN'),
('was', 'VBD'),
('at', 'IN'),
('Norland', 'NNP'),
('Park', 'NNP'),
(',', ','),
('in', 'IN'),
('the', 'DT'),
('centre', 'NN'),
('of', 'IN'),
('their', 'PRP$'),
('property', 'NN'),
(',', ','),
('where', 'WRB'),
(',', ','),
('for', 'IN'),
('many', 'JJ'),
('generations', 'NNS'),
(',', ','),
('they', 'PRP'),
('had', 'VBD'),
('lived', 'VBN'),
('in', 'IN'),
('so', 'RB'),
('respectable', 'JJ'),
('a', 'DT'),
('manner', 'NN'),
('as', 'IN'),
('to', 'TO'),
('engage', 'VB'),
('the', 'DT'),
('general', 'JJ'),
('good', 'JJ'),
('opinion', 'NN'),
('of', 'IN'),
('their', 'PRP$'),
('surrounding', 'JJ'),
('acquaintance', 'NN'),
('.', '.'),
('The', 'DT'),
('late', 'JJ'),
('owner', 'NN'),
('of', 'IN'),
('this', 'DT'),
('estate', 'NN'),
('was', 'VBD'),
('a', 'DT'),
('single', 'JJ'),
('man', 'NN'),
(',', ','),
('who', 'WP'),
('lived', 'VBD'),
('to', 'TO'),
('a', 'DT'),
('very', 'RB'),
('advanced', 'JJ'),
('age', 'NN'),
(',', ','),
('and', 'CC'),
('who', 'WP'),
('for', 'IN'),
('many', 'JJ'),
('years', 'NNS'),
('of', 'IN'),
('his', 'PRP$'),
('life', 'NN'),
(',', ','),
('had', 'VBD'),
('a', 'DT'),
('constant', 'JJ'),
('companion', 'NN'),
('and', 'CC'),
('housekeeper', 'NN'),
('in', 'IN'),
('his', 'PRP$'),
('sister', 'NN'),
('.', '.'),
('But', 'CC'),
('her', 'PRP$'),
('death', 'NN'),
(',', ','),
('which', 'WDT'),
('happened', 'VBD'),
('ten', 'CD'),
('years', 'NNS'),
('before', 'IN'),
('his', 'PRP$'),
('own', 'JJ'),
(',', ','),
('produced', 'VBD'),
('a', 'DT'),
('great', 'JJ'),
('alteration', 'NN'),
('in', 'IN'),
('his', 'PRP$'),
('home', 'NN'),
(';', ':'),
('for', 'IN'),
('to', 'TO'),
('supply', 'VB'),
('her', 'PRP$'),
('loss', 'NN'),
(',', ','),
('he', 'PRP'),
('invited', 'VBD'),
('and', 'CC'),
('received', 'VBD'),
('into', 'IN'),
('his', 'PRP$'),
('house', 'NN'),
('the', 'DT'),
('family', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('nephew', 'JJ'),
('Mr.', 'NNP'),
('Henry', 'NNP'),
('Dashwood', 'NNP'),
(',', ','),
('the', 'DT'),
('legal', 'JJ'),
('inheritor', 'NN'),
('of', 'IN'),
('the', 'DT'),
('Norland', 'NNP'),
('estate', 'NN'),
(',', ','),
('and', 'CC'),
('the', 'DT'),
('person', 'NN'),
('to', 'TO'),
('whom', 'WP'),
('he', 'PRP'),
('intended', 'VBD'),
('to', 'TO'),
('bequeath', 'VB'),
('it', 'PRP'),
('.', '.'),
('In', 'IN'),
('the', 'DT'),
('society', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('nephew', 'NN'),
('and', 'CC'),
('niece', 'NN'),
(',', ','),
('and', 'CC'),
('their', 'PRP$'),
('children', 'NNS'),
(',', ','),
('the', 'DT'),
('old', 'JJ'),
('Gentleman', 'NNP'),
('’', 'NNP'),
('s', 'JJ'),
('days', 'NNS'),
('were', 'VBD'),
('comfortably', 'RB'),
('spent', 'VBN'),
('.', '.'),
('His', 'PRP$'),
('attachment', 'NN'),
('to', 'TO'),
('them', 'PRP'),
('all', 'DT'),
('increased', 'VBN'),
('.', '.'),
('The', 'DT'),
('constant', 'JJ'),
('attention', 'NN'),
('of', 'IN'),
('Mr.', 'NNP'),
('and', 'CC'),
('Mrs.', 'NNP'),
('Henry', 'NNP'),
('Dashwood', 'NNP'),
('to', 'TO'),
('his', 'PRP$'),
('wishes', 'NNS'),
(',', ','),
('which', 'WDT'),
('proceeded', 'VBD'),
('not', 'RB'),
('merely', 'RB'),
('from', 'IN'),
('interest', 'NN'),
(',', ','),
('but', 'CC'),
('from', 'IN'),
('goodness', 'NN'),
('of', 'IN'),
('heart', 'NN'),
(',', ','),
('gave', 'VBD'),
('him', 'PRP'),
('every', 'DT'),
('degree', 'NN'),
('of', 'IN'),
('solid', 'JJ'),
('comfort', 'NN'),
('which', 'WDT'),
('his', 'PRP$'),
('age', 'NN'),
('could', 'MD'),
('receive', 'VB'),
(';', ':'),
('and', 'CC'),
('the', 'DT'),
('cheerfulness', 'NN'),
('of', 'IN'),
('the', 'DT'),
('children', 'NNS'),
('added', 'VBD'),
('a', 'DT'),
('relish', 'NN'),
('to', 'TO'),
('his', 'PRP$'),
('existence', 'NN'),
('.', '.'),
('By', 'IN'),
('a', 'DT'),
('former', 'JJ'),
('marriage', 'NN'),
(',', ','),
('Mr.', 'NNP'),
('Henry', 'NNP'),
('Dashwood', 'NNP'),
('had', 'VBD'),
('one', 'CD'),
('son', 'NN'),
(':', ':'),
('by', 'IN'),
('his', 'PRP$'),
('present', 'JJ'),
('lady', 'NN'),
(',', ','),
('three', 'CD'),
('daughters', 'NNS'),
('.', '.'),
('The', 'DT'),
('son', 'NN'),
(',', ','),
('a', 'DT'),
('steady', 'JJ'),
('respectable', 'JJ'),
('young', 'JJ'),
('man', 'NN'),
(',', ','),
('was', 'VBD'),
('amply', 'RB'),
('provided', 'VBN'),
('for', 'IN'),
('by', 'IN'),
('the', 'DT'),
('fortune', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('mother', 'NN'),
(',', ','),
('which', 'WDT'),
('had', 'VBD'),
('been', 'VBN'),
('large', 'JJ'),
(',', ','),
('and', 'CC'),
('half', 'NN'),
('of', 'IN'),
('which', 'WDT'),
('devolved', 'VBD'),
('on', 'IN'),
('him', 'PRP'),
('on', 'IN'),
('his', 'PRP$'),
('coming', 'NN'),
('of', 'IN'),
('age', 'NN'),
('.', '.'),
('By', 'IN'),
('his', 'PRP$'),
('own', 'JJ'),
('marriage', 'NN'),
(',', ','),
('likewise', 'NN'),
(',', ','),
('which', 'WDT'),
('happened', 'VBD'),
('soon', 'RB'),
('afterwards', 'NNS'),
(',', ','),
('he', 'PRP'),
('added', 'VBD'),
('to', 'TO'),
('his', 'PRP$'),
('wealth', 'NN'),
('.', '.'),
('To', 'TO'),
('him', 'PRP'),
('therefore', 'VB'),
('the', 'DT'),
('succession', 'NN'),
('to', 'TO'),
('the', 'DT'),
('Norland', 'NNP'),
('estate', 'NN'),
('was', 'VBD'),
('not', 'RB'),
('so', 'RB'),
('really', 'RB'),
('important', 'JJ'),
('as', 'IN'),
('to', 'TO'),
('his', 'PRP$'),
('sisters', 'NNS'),
(';', ':'),
('for', 'IN'),
('their', 'PRP$'),
('fortune', 'NN'),
(',', ','),
('independent', 'JJ'),
('of', 'IN'),
('what', 'WP'),
('might', 'MD'),
('arise', 'VB'),
('to', 'TO'),
('them', 'PRP'),
('from', 'IN'),
('their', 'PRP$'),
('father', 'NN'),
('’', 'NN'),
('s', 'NN'),
('inheriting', 'VBG'),
('that', 'IN'),
('property', 'NN'),
(',', ','),
('could', 'MD'),
('be', 'VB'),
('but', 'CC'),
('small', 'JJ'),
('.', '.'),
('Their', 'PRP$'),
('mother', 'NN'),
('had', 'VBD'),
('nothing', 'NN'),
(',', ','),
('and', 'CC'),
('their', 'PRP$'),
('father', 'NN'),
('only', 'RB'),
('seven', 'CD'),
('thousand', 'CD'),
('pounds', 'NNS'),
('in', 'IN'),
('his', 'PRP$'),
('own', 'JJ'),
('disposal', 'NN'),
(';', ':'),
('for', 'IN'),
('the', 'DT'),
('remaining', 'VBG'),
('moiety', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('first', 'JJ'),
('wife', 'NN'),
('’', 'NNP'),
('s', 'NN'),
('fortune', 'NN'),
('was', 'VBD'),
('also', 'RB'),
('secured', 'VBN'),
('to', 'TO'),
('her', 'PRP$'),
('child', 'NN'),
(',', ','),
('and', 'CC'),
('he', 'PRP'),
('had', 'VBD'),
('only', 'RB'),
('a', 'DT'),
('life-interest', 'NN'),
('in', 'IN'),
('it', 'PRP'),
('.', '.'),
('The', 'DT'),
('old', 'JJ'),
('gentleman', 'NN'),
('died', 'VBD'),
(':', ':'),
('his', 'PRP$'),
('will', 'MD'),
('was', 'VBD'),
('read', 'VB'),
(',', ','),
('and', 'CC'),
('like', 'IN'),
('almost', 'RB'),
('every', 'DT'),
('other', 'JJ'),
('will', 'MD'),
(',', ','),
('gave', 'VBD'),
('as', 'IN'),
('much', 'JJ'),
('disappointment', 'NN'),
('as', 'IN'),
('pleasure', 'NN'),
('.', '.'),
('He', 'PRP'),
('was', 'VBD'),
('neither', 'RB'),
('so', 'RB'),
('unjust', 'JJ'),
(',', ','),
('nor', 'CC'),
('so', 'RB'),
('ungrateful', 'JJ'),
(',', ','),
('as', 'IN'),
('to', 'TO'),
('leave', 'VB'),
('his', 'PRP$'),
('estate', 'NN'),
('from', 'IN'),
('his', 'PRP$'),
('nephew', 'NN'),
(';', ':'),
('—but', 'CC'),
('he', 'PRP'),
('left', 'VBD'),
('it', 'PRP'),
('to', 'TO'),
('him', 'PRP'),
('on', 'IN'),
('such', 'JJ'),
('terms', 'NNS'),
('as', 'IN'),
('destroyed', 'VBN'),
('half', 'PDT'),
('the', 'DT'),
('value', 'NN'),
('of', 'IN'),
('the', 'DT'),
('bequest', 'JJS'),
('.', '.'),
('Mr.', 'NNP'),
('Dashwood', 'NNP'),
('had', 'VBD'),
('wished', 'VBN'),
('for', 'IN'),
('it', 'PRP'),
('more', 'RBR'),
('for', 'IN'),
('the', 'DT'),
('sake', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('wife', 'NN'),
('and', 'CC'),
('daughters', 'NNS'),
('than', 'IN'),
('for', 'IN'),
('himself', 'PRP'),
('or', 'CC'),
('his', 'PRP$'),
('son', 'NN'),
(';', ':'),
('—but', 'NN'),
('to', 'TO'),
('his', 'PRP$'),
('son', 'NN'),
(',', ','),
('and', 'CC'),
('his', 'PRP$'),
('son', 'NN'),
('’', 'NNP'),
('s', 'NN'),
('son', 'NN'),
(',', ','),
('a', 'DT'),
('child', 'NN'),
('of', 'IN'),
('four', 'CD'),
('years', 'NNS'),
('old', 'JJ'),
(',', ','),
('it', 'PRP'),
('was', 'VBD'),
('secured', 'VBN'),
(',', ','),
('in', 'IN'),
('such', 'PDT'),
('a', 'DT'),
('way', 'NN'),
(',', ','),
('as', 'IN'),
('to', 'TO'),
('leave', 'VB'),
('to', 'TO'),
('himself', 'PRP'),
('no', 'DT'),
('power', 'NN'),
('of', 'IN'),
('providing', 'VBG'),
('for', 'IN'),
('those', 'DT'),
('who', 'WP'),
('were', 'VBD'),
('most', 'RBS'),
('dear', 'JJ'),
('to', 'TO'),
('him', 'PRP'),
(',', ','),
('and', 'CC'),
('who', 'WP'),
('most', 'RBS'),
('needed', 'VBD'),
('a', 'DT'),
('provision', 'NN'),
('by', 'IN'),
('any', 'DT'),
('charge', 'NN'),
('on', 'IN'),
('the', 'DT'),
('estate', 'NN'),
(',', ','),
('or', 'CC'),
('by', 'IN'),
('any', 'DT'),
('sale', 'NN'),
('of', 'IN'),
('its', 'PRP$'),
('valuable', 'JJ'),
('woods', 'NNS'),
('.', '.'),
('The', 'DT'),
('whole', 'NN'),
('was', 'VBD'),
('tied', 'VBN'),
('up', 'RP'),
('for', 'IN'),
('the', 'DT'),
('benefit', 'NN'),
('of', 'IN'),
('this', 'DT'),
('child', 'NN'),
(',', ','),
('who', 'WP'),
(',', ','),
('in', 'IN'),
('occasional', 'JJ'),
('visits', 'NNS'),
('with', 'IN'),
('his', 'PRP$'),
('father', 'NN'),
('and', 'CC'),
('mother', 'NN'),
('at', 'IN'),
('Norland', 'NNP'),
(',', ','),
('had', 'VBD'),
('so', 'RB'),
('far', 'RB'),
('gained', 'VBN'),
('on', 'IN'),
('the', 'DT'),
('affections', 'NNS'),
('of', 'IN'),
('his', 'PRP$'),
('uncle', 'NN'),
(',', ','),
('by', 'IN'),
('such', 'JJ'),
('attractions', 'NNS'),
('as', 'IN'),
('are', 'VBP'),
('by', 'IN'),
('no', 'DT'),
('means', 'NNS'),
('unusual', 'JJ'),
('in', 'IN'),
('children', 'NNS'),
('of', 'IN'),
('two', 'CD'),
('or', 'CC'),
('three', 'CD'),
('years', 'NNS'),
('old', 'JJ'),
(';', ':'),
('an', 'DT'),
('imperfect', 'JJ'),
('articulation', 'NN'),
(',', ','),
('an', 'DT'),
('earnest', 'JJS'),
('desire', 'NN'),
('of', 'IN'),
('having', 'VBG'),
('his', 'PRP$'),
('own', 'JJ'),
('way', 'NN'),
(',', ','),
('many', 'JJ'),
('cunning', 'VBG'),
('tricks', 'NNS'),
(',', ','),
('and', 'CC'),
('a', 'DT'),
('great', 'JJ'),
('deal', 'NN'),
('of', 'IN'),
('noise', 'NN'),
(',', ','),
('as', 'IN'),
('to', 'TO'),
('outweigh', 'VB'),
('all', 'PDT'),
('the', 'DT'),
('value', 'NN'),
('of', 'IN'),
('all', 'PDT'),
('the', 'DT'),
('attention', 'NN'),
('which', 'WDT'),
(',', ','),
('for', 'IN'),
('years', 'NNS'),
(',', ','),
('he', 'PRP'),
('had', 'VBD'),
('received', 'VBN'),
('from', 'IN'),
('his', 'PRP$'),
('niece', 'NN'),
('and', 'CC'),
('her', 'PRP$'),
('daughters', 'NNS'),
('.', '.'),
('He', 'PRP'),
('meant', 'VBD'),
('not', 'RB'),
('to', 'TO'),
('be', 'VB'),
('unkind', 'JJ'),
(',', ','),
('however', 'RB'),
(',', ','),
('and', 'CC'),
(',', ','),
('as', 'IN'),
('a', 'DT'),
('mark', 'NN'),
('of', 'IN'),
('his', 'PRP$'),
('affection', 'NN'),
('for', 'IN'),
('the', 'DT'),
('three', 'CD'),
('girls', 'NNS'),
(',', ','),
('he', 'PRP'),
('left', 'VBD'),
('them', 'PRP'),
('a', 'DT'),
('thousand', 'CD'),
('pounds', 'NNS'),
('a-piece', 'RB'),
('.', '.'),
('Mr.', 'NNP'),
('Dashwood', 'NNP'),
('’', 'NNP'),
('s', 'VBD'),
('disappointment', 'NN'),
('was', 'VBD'),
(',', ','),
('at', 'IN'),
('first', 'JJ'),
(',', ','),
('severe', 'JJ'),
(';', ':'),
('but', 'CC'),
('his', 'PRP$'),
('temper', 'NN'),
('was', 'VBD'),
('cheerful', 'JJ'),
('and', 'CC'),
('sanguine', 'NN'),
(';', ':'),
('and', 'CC'),
('he', 'PRP'),
('might', 'MD'),
('reasonably', 'RB'),
('hope', 'VB'),
('to', 'TO'),
('live', 'VB'),
('many', 'JJ'),
('years', 'NNS'),
(',', ','),
...]
def lemmatize_text_raw(text):
return [nltk.stem.WordNetLemmatizer().lemmatize(word.lower())
for word in nltk.word_tokenize(text)]
# nltk lemmas
nltk_lemmas = lemmatize_text_raw (sense_raw)
nltk_lemmas
['\ufeffthe',
'project',
'gutenberg',
'ebook',
'of',
'sense',
'and',
'sensibility',
',',
'by',
'jane',
'austen',
'this',
'ebook',
'is',
'for',
'the',
'use',
'of',
'anyone',
'anywhere',
'in',
'the',
'united',
'state',
'and',
'most',
'other',
'part',
'of',
'the',
'world',
'at',
'no',
'cost',
'and',
'with',
'almost',
'no',
'restriction',
'whatsoever',
'.',
'you',
'may',
'copy',
'it',
',',
'give',
'it',
'away',
'or',
're-use',
'it',
'under',
'the',
'term',
'of',
'the',
'project',
'gutenberg',
'license',
'included',
'with',
'this',
'ebook',
'or',
'online',
'at',
'www.gutenberg.org',
'.',
'if',
'you',
'are',
'not',
'located',
'in',
'the',
'united',
'state',
',',
'you',
'will',
'have',
'to',
'check',
'the',
'law',
'of',
'the',
'country',
'where',
'you',
'are',
'located',
'before',
'using',
'this',
'ebook',
'.',
'title',
':',
'sense',
'and',
'sensibility',
'author',
':',
'jane',
'austen',
'release',
'date',
':',
'september',
',',
'1994',
'[',
'ebook',
'#',
'161',
']',
'[',
'most',
'recently',
'updated',
':',
'march',
'16',
',',
'2021',
']',
'language',
':',
'english',
'character',
'set',
'encoding',
':',
'utf-8',
'special',
'thanks',
'are',
'due',
'to',
'sharon',
'partridge',
'for',
'extensive',
'proofreading',
'and',
'correction',
'of',
'this',
'etext',
'.',
'*',
'*',
'*',
'start',
'of',
'the',
'project',
'gutenberg',
'ebook',
'sense',
'and',
'sensibility',
'*',
'*',
'*',
'[',
'illustration',
']',
'sense',
'and',
'sensibility',
'by',
'jane',
'austen',
'(',
'1811',
')',
'content',
'chapter',
'i',
'chapter',
'ii',
'chapter',
'iii',
'chapter',
'iv',
'chapter',
'v',
'chapter',
'vi',
'chapter',
'vii',
'chapter',
'viii',
'chapter',
'ix',
'chapter',
'x',
'chapter',
'xi',
'chapter',
'xii',
'chapter',
'xiii',
'chapter',
'xiv',
'chapter',
'xv',
'chapter',
'xvi',
'chapter',
'xvii',
'chapter',
'xviii',
'chapter',
'xix',
'chapter',
'xx',
'chapter',
'xxi',
'chapter',
'xxii',
'chapter',
'xxiii',
'chapter',
'xxiv',
'chapter',
'xxv',
'chapter',
'xxvi',
'chapter',
'xxvii',
'chapter',
'xxviii',
'chapter',
'xxix',
'chapter',
'xxx',
'chapter',
'xxxi',
'chapter',
'xxxii',
'chapter',
'xxxiii',
'chapter',
'xxxiv',
'chapter',
'xxxv',
'chapter',
'xxxvi',
'chapter',
'xxxvii',
'chapter',
'xxxviii',
'chapter',
'xxxix',
'chapter',
'xl',
'chapter',
'xli',
'chapter',
'xlii',
'chapter',
'xliii',
'chapter',
'xliv',
'chapter',
'xlv',
'chapter',
'xlvi',
'chapter',
'xlvii',
'chapter',
'xlviii',
'chapter',
'xlix',
'chapter',
'l',
'chapter',
'i',
'.',
'the',
'family',
'of',
'dashwood',
'had',
'long',
'been',
'settled',
'in',
'sussex',
'.',
'their',
'estate',
'wa',
'large',
',',
'and',
'their',
'residence',
'wa',
'at',
'norland',
'park',
',',
'in',
'the',
'centre',
'of',
'their',
'property',
',',
'where',
',',
'for',
'many',
'generation',
',',
'they',
'had',
'lived',
'in',
'so',
'respectable',
'a',
'manner',
'a',
'to',
'engage',
'the',
'general',
'good',
'opinion',
'of',
'their',
'surrounding',
'acquaintance',
'.',
'the',
'late',
'owner',
'of',
'this',
'estate',
'wa',
'a',
'single',
'man',
',',
'who',
'lived',
'to',
'a',
'very',
'advanced',
'age',
',',
'and',
'who',
'for',
'many',
'year',
'of',
'his',
'life',
',',
'had',
'a',
'constant',
'companion',
'and',
'housekeeper',
'in',
'his',
'sister',
'.',
'but',
'her',
'death',
',',
'which',
'happened',
'ten',
'year',
'before',
'his',
'own',
',',
'produced',
'a',
'great',
'alteration',
'in',
'his',
'home',
';',
'for',
'to',
'supply',
'her',
'loss',
',',
'he',
'invited',
'and',
'received',
'into',
'his',
'house',
'the',
'family',
'of',
'his',
'nephew',
'mr.',
'henry',
'dashwood',
',',
'the',
'legal',
'inheritor',
'of',
'the',
'norland',
'estate',
',',
'and',
'the',
'person',
'to',
'whom',
'he',
'intended',
'to',
'bequeath',
'it',
'.',
'in',
'the',
'society',
'of',
'his',
'nephew',
'and',
'niece',
',',
'and',
'their',
'child',
',',
'the',
'old',
'gentleman',
'’',
's',
'day',
'were',
'comfortably',
'spent',
'.',
'his',
'attachment',
'to',
'them',
'all',
'increased',
'.',
'the',
'constant',
'attention',
'of',
'mr.',
'and',
'mrs.',
'henry',
'dashwood',
'to',
'his',
'wish',
',',
'which',
'proceeded',
'not',
'merely',
'from',
'interest',
',',
'but',
'from',
'goodness',
'of',
'heart',
',',
'gave',
'him',
'every',
'degree',
'of',
'solid',
'comfort',
'which',
'his',
'age',
'could',
'receive',
';',
'and',
'the',
'cheerfulness',
'of',
'the',
'child',
'added',
'a',
'relish',
'to',
'his',
'existence',
'.',
'by',
'a',
'former',
'marriage',
',',
'mr.',
'henry',
'dashwood',
'had',
'one',
'son',
':',
'by',
'his',
'present',
'lady',
',',
'three',
'daughter',
'.',
'the',
'son',
',',
'a',
'steady',
'respectable',
'young',
'man',
',',
'wa',
'amply',
'provided',
'for',
'by',
'the',
'fortune',
'of',
'his',
'mother',
',',
'which',
'had',
'been',
'large',
',',
'and',
'half',
'of',
'which',
'devolved',
'on',
'him',
'on',
'his',
'coming',
'of',
'age',
'.',
'by',
'his',
'own',
'marriage',
',',
'likewise',
',',
'which',
'happened',
'soon',
'afterwards',
',',
'he',
'added',
'to',
'his',
'wealth',
'.',
'to',
'him',
'therefore',
'the',
'succession',
'to',
'the',
'norland',
'estate',
'wa',
'not',
'so',
'really',
'important',
'a',
'to',
'his',
'sister',
';',
'for',
'their',
'fortune',
',',
'independent',
'of',
'what',
'might',
'arise',
'to',
'them',
'from',
'their',
'father',
'’',
's',
'inheriting',
'that',
'property',
',',
'could',
'be',
'but',
'small',
'.',
'their',
'mother',
'had',
'nothing',
',',
'and',
'their',
'father',
'only',
'seven',
'thousand',
'pound',
'in',
'his',
'own',
'disposal',
';',
'for',
'the',
'remaining',
'moiety',
'of',
'his',
'first',
'wife',
'’',
's',
'fortune',
'wa',
'also',
'secured',
'to',
'her',
'child',
',',
'and',
'he',
'had',
'only',
'a',
'life-interest',
'in',
'it',
'.',
'the',
'old',
'gentleman',
'died',
':',
'his',
'will',
'wa',
'read',
',',
'and',
'like',
'almost',
'every',
'other',
'will',
',',
'gave',
'a',
'much',
'disappointment',
'a',
'pleasure',
'.',
'he',
'wa',
'neither',
'so',
'unjust',
',',
'nor',
'so',
'ungrateful',
',',
'a',
'to',
'leave',
'his',
'estate',
'from',
'his',
'nephew',
';',
'—but',
'he',
'left',
'it',
'to',
'him',
'on',
'such',
'term',
'a',
'destroyed',
'half',
'the',
'value',
'of',
'the',
'bequest',
'.',
'mr.',
'dashwood',
'had',
'wished',
'for',
'it',
'more',
'for',
'the',
'sake',
'of',
'his',
'wife',
'and',
'daughter',
'than',
'for',
'himself',
'or',
'his',
'son',
';',
'—but',
'to',
'his',
'son',
',',
'and',
'his',
'son',
'’',
's',
'son',
',',
'a',
'child',
'of',
'four',
'year',
'old',
',',
'it',
'wa',
'secured',
',',
'in',
'such',
'a',
'way',
',',
'a',
'to',
'leave',
'to',
'himself',
'no',
'power',
'of',
'providing',
'for',
'those',
'who',
'were',
'most',
'dear',
'to',
'him',
',',
'and',
'who',
'most',
'needed',
'a',
'provision',
'by',
'any',
'charge',
'on',
'the',
'estate',
',',
'or',
'by',
'any',
'sale',
'of',
'it',
'valuable',
'wood',
'.',
'the',
'whole',
'wa',
'tied',
'up',
'for',
'the',
'benefit',
'of',
'this',
'child',
',',
'who',
',',
'in',
'occasional',
'visit',
'with',
'his',
'father',
'and',
'mother',
'at',
'norland',
',',
'had',
'so',
'far',
'gained',
'on',
'the',
'affection',
'of',
'his',
'uncle',
',',
'by',
'such',
'attraction',
'a',
'are',
'by',
'no',
'mean',
'unusual',
'in',
'child',
'of',
'two',
'or',
'three',
'year',
'old',
';',
'an',
'imperfect',
'articulation',
',',
'an',
'earnest',
'desire',
'of',
'having',
'his',
'own',
'way',
',',
'many',
'cunning',
'trick',
',',
'and',
'a',
'great',
'deal',
'of',
'noise',
',',
'a',
'to',
'outweigh',
'all',
'the',
'value',
'of',
'all',
'the',
'attention',
'which',
',',
'for',
'year',
',',
'he',
'had',
'received',
'from',
'his',
'niece',
'and',
'her',
'daughter',
'.',
'he',
'meant',
'not',
'to',
'be',
'unkind',
',',
'however',
',',
'and',
',',
'a',
'a',
'mark',
'of',
'his',
'affection',
'for',
'the',
'three',
'girl',
',',
'he',
'left',
'them',
'a',
'thousand',
'pound',
'a-piece',
'.',
'mr.',
'dashwood',
'’',
's',
'disappointment',
'wa',
',',
'at',
'first',
',',
'severe',
';',
'but',
'his',
'temper',
'wa',
'cheerful',
'and',
'sanguine',
';',
'and',
'he',
'might',
'reasonably',
'hope',
'to',
'live',
'many',
'year',
',',
...]
import spacy
nlp = spacy.load('en_core_web_sm')
from spacy.tokenizer import Tokenizer
tokenizer = Tokenizer(nlp.vocab)
# spacy tokenizer
from spacy.lang.en import English
nlp = English()
tokenizer = nlp.tokenizer
spacy_raw = gutenberg.raw('austen-sense.txt')
sense_tokens_spacy = tokenizer(sense_raw)
# tokenize and taking out punctuation in spacy
no_punct = re.sub(r'[^\w\s]', '', gutenberg.raw('austen-sense.txt'))
no_punct = tokenizer(no_punct)
print(no_punct)
Sense and Sensibility by Jane Austen 1811
CHAPTER 1
The family of Dashwood had long been settled in Sussex
Their estate was large and their residence was at Norland Park
in the centre of their property where for many generations
they had lived in so respectable a manner as to engage
the general good opinion of their surrounding acquaintance
The late owner of this estate was a single man who lived
to a very advanced age and who for many years of his life
had a constant companion and housekeeper in his sister
But her death which happened ten years before his own
produced a great alteration in his home for to supply
her loss he invited and received into his house the family
of his nephew Mr Henry Dashwood the legal inheritor
of the Norland estate and the person to whom he intended
to bequeath it In the society of his nephew and niece
and their children the old Gentlemans days were
comfortably spent His attachment to them all increased
The constant attention of Mr and Mrs Henry Dashwood
to his wishes which proceeded not merely from interest
but from goodness of heart gave him every degree of solid
comfort which his age could receive and the cheerfulness
of the children added a relish to his existence
By a former marriage Mr Henry Dashwood had one
son by his present lady three daughters The son
a steady respectable young man was amply provided
for by the fortune of his mother which had been large
and half of which devolved on him on his coming of age
By his own marriage likewise which happened soon afterwards
he added to his wealth To him therefore the succession
to the Norland estate was not so really important as to
his sisters for their fortune independent of what might
arise to them from their fathers inheriting that property
could be but small Their mother had nothing and their
father only seven thousand pounds in his own disposal
for the remaining moiety of his first wifes fortune was
also secured to her child and he had only a lifeinterest
in it
The old gentleman died his will was read and
like almost every other will gave as much disappointment
as pleasure He was neither so unjust nor so ungrateful
as to leave his estate from his nephewbut he left it to him
on such terms as destroyed half the value of the bequest
Mr Dashwood had wished for it more for the sake of his
wife and daughters than for himself or his sonbut to
his son and his sons son a child of four years old
it was secured in such a way as to leave to himself
no power of providing for those who were most dear
to him and who most needed a provision by any charge
on the estate or by any sale of its valuable woods
The whole was tied up for the benefit of this child who
in occasional visits with his father and mother at Norland
had so far gained on the affections of his uncle
by such attractions as are by no means unusual in children
of two or three years old an imperfect articulation
an earnest desire of having his own way many cunning tricks
and a great deal of noise as to outweigh all the value
of all the attention which for years he had received
from his niece and her daughters He meant not to
be unkind however and as a mark of his affection
for the three girls he left them a thousand pounds apiece
Mr Dashwoods disappointment was at first severe
but his temper was cheerful and sanguine and he might
reasonably hope to live many years and by living economically
lay by a considerable sum from the produce of an estate
already large and capable of almost immediate improvement
But the fortune which had been so tardy in coming was his
only one twelvemonth He survived his uncle no longer
and ten thousand pounds including the late legacies
was all that remained for his widow and daughters
His son was sent for as soon as his danger was known
and to him Mr Dashwood recommended with all the strength
and urgency which illness could command the interest
of his motherinlaw and sisters
Mr John Dashwood had not the strong feelings of the
rest of the family but he was affected by a recommendation
of such a nature at such a time and he promised to do
every thing in his power to make them comfortable
His father was rendered easy by such an assurance
and Mr John Dashwood had then leisure to consider how
much there might prudently be in his power to do for them
He was not an illdisposed young man unless to
be rather cold hearted and rather selfish is to be
illdisposed but he was in general well respected
for he conducted himself with propriety in the discharge
of his ordinary duties Had he married a more amiable woman
he might have been made still more respectable than he
washe might even have been made amiable himself for he
was very young when he married and very fond of his wife
But Mrs John Dashwood was a strong caricature of himself
more narrowminded and selfish
When he gave his promise to his father he meditated
within himself to increase the fortunes of his sisters
by the present of a thousand pounds apiece He then
really thought himself equal to it The prospect of four
thousand ayear in addition to his present income
besides the remaining half of his own mothers fortune
warmed his heart and made him feel capable of generosity
Yes he would give them three thousand pounds it would
be liberal and handsome It would be enough to make
them completely easy Three thousand pounds he could
spare so considerable a sum with little inconvenience
He thought of it all day long and for many days successively
and he did not repent
No sooner was his fathers funeral over than Mrs John
Dashwood without sending any notice of her intention to her
motherinlaw arrived with her child and their attendants
No one could dispute her right to come the house was
her husbands from the moment of his fathers decease
but the indelicacy of her conduct was so much the greater
and to a woman in Mrs Dashwoods situation with only
common feelings must have been highly unpleasing
but in HER mind there was a sense of honor so keen
a generosity so romantic that any offence of the kind
by whomsoever given or received was to her a source
of immoveable disgust Mrs John Dashwood had never
been a favourite with any of her husbands family
but she had had no opportunity till the present
of shewing them with how little attention to the comfort
of other people she could act when occasion required it
So acutely did Mrs Dashwood feel this ungracious
behaviour and so earnestly did she despise her
daughterinlaw for it that on the arrival of the latter
she would have quitted the house for ever had not the
entreaty of her eldest girl induced her first to reflect
on the propriety of going and her own tender love for all
her three children determined her afterwards to stay
and for their sakes avoid a breach with their brother
Elinor this eldest daughter whose advice was
so effectual possessed a strength of understanding
and coolness of judgment which qualified her
though only nineteen to be the counsellor of her mother
and enabled her frequently to counteract to the advantage
of them all that eagerness of mind in Mrs Dashwood
which must generally have led to imprudence She had
an excellent hearther disposition was affectionate
and her feelings were strong but she knew how to govern
them it was a knowledge which her mother had yet to learn
and which one of her sisters had resolved never to be taught
Mariannes abilities were in many respects
quite equal to Elinors She was sensible and clever
but eager in everything her sorrows her joys could have
no moderation She was generous amiable interesting she
was everything but prudent The resemblance between
her and her mother was strikingly great
Elinor saw with concern the excess of her
sisters sensibility but by Mrs Dashwood it was valued
and cherished They encouraged each other now in the
violence of their affliction The agony of grief
which overpowered them at first was voluntarily renewed
was sought for was created again and again They gave
themselves up wholly to their sorrow seeking increase
of wretchedness in every reflection that could afford it
and resolved against ever admitting consolation
in future Elinor too was deeply afflicted but still
she could struggle she could exert herself She could
consult with her brother could receive her sisterinlaw
on her arrival and treat her with proper attention
and could strive to rouse her mother to similar exertion
and encourage her to similar forbearance
Margaret the other sister was a goodhumored
welldisposed girl but as she had already imbibed
a good deal of Mariannes romance without having
much of her sense she did not at thirteen bid fair
to equal her sisters at a more advanced period of life
CHAPTER 2
Mrs John Dashwood now installed herself mistress
of Norland and her mother and sistersinlaw were degraded
to the condition of visitors As such however they were
treated by her with quiet civility and by her husband
with as much kindness as he could feel towards anybody
beyond himself his wife and their child He really
pressed them with some earnestness to consider Norland
as their home and as no plan appeared so eligible
to Mrs Dashwood as remaining there till she could
accommodate herself with a house in the neighbourhood
his invitation was accepted
A continuance in a place where everything reminded
her of former delight was exactly what suited her mind
In seasons of cheerfulness no temper could be more cheerful
than hers or possess in a greater degree that sanguine
expectation of happiness which is happiness itself
But in sorrow she must be equally carried away by her fancy
and as far beyond consolation as in pleasure she was
beyond alloy
Mrs John Dashwood did not at all approve of what her
husband intended to do for his sisters To take three
thousand pounds from the fortune of their dear little boy
would be impoverishing him to the most dreadful degree
She begged him to think again on the subject How could
he answer it to himself to rob his child and his only
child too of so large a sum And what possible claim
could the Miss Dashwoods who were related to him only by
half blood which she considered as no relationship at all
have on his generosity to so large an amount It was very
well known that no affection was ever supposed to exist
between the children of any man by different marriages
and why was he to ruin himself and their poor little Harry
by giving away all his money to his half sisters
It was my fathers last request to me replied
her husband that I should assist his widow and daughters
He did not know what he was talking of I dare say
ten to one but he was lightheaded at the time
Had he been in his right senses he could not have thought
of such a thing as begging you to give away half your
fortune from your own child
He did not stipulate for any particular sum
my dear Fanny he only requested me in general terms
to assist them and make their situation more comfortable
than it was in his power to do Perhaps it would
have been as well if he had left it wholly to myself
He could hardly suppose I should neglect them
But as he required the promise I could not do less
than give it at least I thought so at the time
The promise therefore was given and must be performed
Something must be done for them whenever they leave Norland
and settle in a new home
Well then LET something be done for them
but THAT something need not be three thousand pounds
Consider she added that when the money is once
parted with it never can return Your sisters will marry
and it will be gone for ever If indeed it could
be restored to our poor little boy
Why to be sure said her husband very gravely
that would make great difference The time may come when
Harry will regret that so large a sum was parted with
If he should have a numerous family for instance it would
be a very convenient addition
To be sure it would
Perhaps then it would be better for all parties
if the sum were diminished one halfFive hundred pounds
would be a prodigious increase to their fortunes
Oh beyond anything great What brother on earth
would do half so much for his sisters even if REALLY
his sisters And as it isonly half bloodBut you
have such a generous spirit
I would not wish to do any thing mean he replied
One had rather on such occasions do too much than
too little No one at least can think I have not
done enough for them even themselves they can hardly
expect more
There is no knowing what THEY may expect
said the lady but we are not to think of their
expectations the question is what you can afford to do
Certainlyand I think I may afford to give them five
hundred pounds apiece As it is without any addition
of mine they will each have about three thousand pounds
on their mothers deatha very comfortable fortune
for any young woman
To be sure it is and indeed it strikes me that
they can want no addition at all They will have ten
thousand pounds divided amongst them If they marry
they will be sure of doing well and if they do not
they may all live very comfortably together on the interest
of ten thousand pounds
That is very true and therefore I do not know whether
upon the whole it would not be more advisable to do
something for their mother while she lives rather than
for themsomething of the annuity kind I meanMy sisters
would feel the good effects of it as well as herself
A hundred a year would make them all perfectly comfortable
His wife hesitated a little however in giving
her consent to this plan
To be sure said she it is better than parting with
fifteen hundred pounds at once But then if Mrs Dashwood
should live fifteen years we shall be completely taken in
Fifteen years my dear Fanny her life cannot
be worth half that purchase
Certainly not but if you observe people always
live for ever when there is an annuity to be paid them
and she is very stout and healthy and hardly forty
An annuity is a very serious business it comes over
and over every year and there is no getting rid
of it You are not aware of what you are doing
I have known a great deal of the trouble of annuities
for my mother was clogged with the payment of three
to old superannuated servants by my fathers will
and it is amazing how disagreeable she found it
Twice every year these annuities were to be paid and then
there was the trouble of getting it to them and then one
of them was said to have died and afterwards it turned
out to be no such thing My mother was quite sick of it
Her income was not her own she said with such perpetual
claims on it and it was the more unkind in my father
because otherwise the money would have been entirely at
my mothers disposal without any restriction whatever
It has given me such an abhorrence of annuities that I am
sure I would not pin myself down to the payment of one for
all the world
It is certainly an unpleasant thing replied Mr Dashwood
to have those kind of yearly drains on ones income
Ones fortune as your mother justly says is NOT ones own
To be tied down to the regular payment of such a sum
on every rent day is by no means desirable it takes away
ones independence
Undoubtedly and after all you have no thanks for it
They think themselves secure you do no more than what
is expected and it raises no gratitude at all If I were you
whatever I did should be done at my own discretion entirely
I would not bind myself to allow them any thing yearly
It may be very inconvenient some years to spare a hundred
or even fifty pounds from our own expenses
I believe you are right my love it will be better
that there should by no annuity in the case whatever I
may give them occasionally will be of far greater assistance
than a yearly allowance because they would only enlarge
their style of living if they felt sure of a larger income
and would not be sixpence the richer for it at the end
of the year It will certainly be much the best way
A present of fifty pounds now and then will prevent
their ever being distressed for money and will I think
be amply discharging my promise to my father
To be sure it will Indeed to say the truth
I am convinced within myself that your father had no idea
of your giving them any money at all The assistance
he thought of I dare say was only such as might be
reasonably expected of you for instance such as looking
out for a comfortable small house for them helping them
to move their things and sending them presents of fish
and game and so forth whenever they are in season
Ill lay my life that he meant nothing farther indeed
it would be very strange and unreasonable if he did
Do but consider my dear Mr Dashwood how excessively
comfortable your motherinlaw and her daughters may live
on the interest of seven thousand pounds besides the
thousand pounds belonging to each of the girls which brings
them in fifty pounds a year apiece and of course
they will pay their mother for their board out of it
Altogether they will have five hundred ayear amongst them
and what on earth can four women want for more than
thatThey will live so cheap Their housekeeping will
be nothing at all They will have no carriage no horses
and hardly any servants they will keep no company
and can have no expenses of any kind Only conceive
how comfortable they will be Five hundred a year I am
sure I cannot imagine how they will spend half of it
and as to your giving them more it is quite absurd to think
of it They will be much more able to give YOU something
Upon my word said Mr Dashwood I believe you
are perfectly right My father certainly could mean
nothing more by his request to me than what you say
I clearly understand it now and I will strictly fulfil
my engagement by such acts of assistance and kindness
to them as you have described When my mother removes
into another house my services shall be readily given
to accommodate her as far as I can Some little present
of furniture too may be acceptable then
Certainly returned Mrs John Dashwood But however
ONE thing must be considered When your father and mother
moved to Norland though the furniture of Stanhill
was sold all the china plate and linen was saved
and is now left to your mother Her house will therefore
be almost completely fitted up as soon as she takes it
That is a material consideration undoubtedly
A valuable legacy indeed And yet some of the plate would
have been a very pleasant addition to our own stock here
Yes and the set of breakfast china is twice
as handsome as what belongs to this house A great
deal too handsome in my opinion for any place THEY
can ever afford to live in But however so it is
Your father thought only of THEM And I must say this
that you owe no particular gratitude to him nor attention
to his wishes for we very well know that if he could
he would have left almost everything in the world to THEM
This argument was irresistible It gave to his
intentions whatever of decision was wanting before and he
finally resolved that it would be absolutely unnecessary
if not highly indecorous to do more for the widow
and children of his father than such kind of neighbourly
acts as his own wife pointed out
CHAPTER 3
Mrs Dashwood remained at Norland several months
not from any disinclination to move when the sight of every
well known spot ceased to raise the violent emotion which it
produced for a while for when her spirits began to revive
and her mind became capable of some other exertion than that
of heightening its affliction by melancholy remembrances
she was impatient to be gone and indefatigable in her inquiries
for a suitable dwelling in the neighbourhood of Norland
for to remove far from that beloved spot was impossible
But she could hear of no situation that at once answered
her notions of comfort and ease and suited the prudence
of her eldest daughter whose steadier judgment rejected
several houses as too large for their income which her
mother would have approved
Mrs Dashwood had been informed by her husband of the
solemn promise on the part of his son in their favour
which gave comfort to his last earthly reflections
She doubted the sincerity of this assurance no more than he
had doubted it himself and she thought of it for her daughters
sake with satisfaction though as for herself she was
persuaded that a much smaller provision than 7000L would
support her in affluence For their brothers sake too
for the sake of his own heart she rejoiced and she
reproached herself for being unjust to his merit before
in believing him incapable of generosity His attentive
behaviour to herself and his sisters convinced her that
their welfare was dear to him and for a long time
she firmly relied on the liberality of his intentions
The contempt which she had very early in their acquaintance
felt for her daughterinlaw was very much increased
by the farther knowledge of her character which half
a years residence in her family afforded and perhaps
in spite of every consideration of politeness or maternal
affection on the side of the former the two ladies might
have found it impossible to have lived together so long
had not a particular circumstance occurred to give
still greater eligibility according to the opinions
of Mrs Dashwood to her daughters continuance at Norland
This circumstance was a growing attachment between
her eldest girl and the brother of Mrs John Dashwood
a gentlemanlike and pleasing young man who was introduced
to their acquaintance soon after his sisters establishment
at Norland and who had since spent the greatest part
of his time there
Some mothers might have encouraged the intimacy from
motives of interest for Edward Ferrars was the eldest son
of a man who had died very rich and some might have repressed
it from motives of prudence for except a trifling sum
the whole of his fortune depended on the will of his mother
But Mrs Dashwood was alike uninfluenced by either consideration
It was enough for her that he appeared to be amiable
that he loved her daughter and that Elinor returned
the partiality It was contrary to every doctrine of
hers that difference of fortune should keep any couple
asunder who were attracted by resemblance of disposition
and that Elinors merit should not be acknowledged
by every one who knew her was to her comprehension impossible
Edward Ferrars was not recommended to their good
opinion by any peculiar graces of person or address
He was not handsome and his manners required intimacy
to make them pleasing He was too diffident to do justice
to himself but when his natural shyness was overcome
his behaviour gave every indication of an open
affectionate heart His understanding was good
and his education had given it solid improvement
But he was neither fitted by abilities nor disposition
to answer the wishes of his mother and sister who longed
to see him distinguishedasthey hardly knew what
They wanted him to make a fine figure in the world in some
manner or other His mother wished to interest him in
political concerns to get him into parliament or to see
him connected with some of the great men of the day
Mrs John Dashwood wished it likewise but in the mean while
till one of these superior blessings could be attained it would
have quieted her ambition to see him driving a barouche
But Edward had no turn for great men or barouches
All his wishes centered in domestic comfort and the quiet
of private life Fortunately he had a younger brother
who was more promising
Edward had been staying several weeks in the house
before he engaged much of Mrs Dashwoods attention
for she was at that time in such affliction as rendered
her careless of surrounding objects She saw only that he
was quiet and unobtrusive and she liked him for it
He did not disturb the wretchedness of her mind by
illtimed conversation She was first called to observe
and approve him farther by a reflection which Elinor
chanced one day to make on the difference between him
and his sister It was a contrast which recommended him
most forcibly to her mother
It is enough said she to say that he is unlike
Fanny is enough It implies everything amiable
I love him already
I think you will like him said Elinor when you
know more of him
Like him replied her mother with a smile
I feel no sentiment of approbation inferior to love
You may esteem him
I have never yet known what it was to separate
esteem and love
Mrs Dashwood now took pains to get acquainted with him
Her manners were attaching and soon banished his reserve
She speedily comprehended all his merits the persuasion
of his regard for Elinor perhaps assisted her penetration
but she really felt assured of his worth and even that
quietness of manner which militated against all her
established ideas of what a young mans address ought to be
was no longer uninteresting when she knew his heart to be
warm and his temper affectionate
No sooner did she perceive any symptom of love
in his behaviour to Elinor than she considered their
serious attachment as certain and looked forward
to their marriage as rapidly approaching
In a few months my dear Marianne said she
Elinor will in all probability be settled for life
We shall miss her but SHE will be happy
Oh Mamma how shall we do without her
My love it will be scarcely a separation
We shall live within a few miles of each other and shall
meet every day of our lives You will gain a brother
a real affectionate brother I have the highest opinion
in the world of Edwards heart But you look grave
Marianne do you disapprove your sisters choice
Perhaps said Marianne I may consider it
with some surprise Edward is very amiable and I love
him tenderly But yethe is not the kind of young
manthere is something wantinghis figure is not striking
it has none of that grace which I should expect
in the man who could seriously attach my sister
His eyes want all that spirit that fire which at once
announce virtue and intelligence And besides all this
I am afraid Mamma he has no real taste Music seems
scarcely to attract him and though he admires Elinors
drawings very much it is not the admiration of a person
who can understand their worth It is evident in spite of
his frequent attention to her while she draws that in fact
he knows nothing of the matter He admires as a lover
not as a connoisseur To satisfy me those characters
must be united I could not be happy with a man whose
taste did not in every point coincide with my own
He must enter into all my feelings the same books
the same music must charm us both Oh mama how spiritless
how tame was Edwards manner in reading to us last night
I felt for my sister most severely Yet she bore it
with so much composure she seemed scarcely to notice it
I could hardly keep my seat To hear those beautiful lines
which have frequently almost driven me wild pronounced
with such impenetrable calmness such dreadful indifference
He would certainly have done more justice to
simple and elegant prose I thought so at the time
but you WOULD give him Cowper
Nay Mamma if he is not to be animated by Cowper
but we must allow for difference of taste Elinor has
not my feelings and therefore she may overlook it and
be happy with him But it would have broke MY heart
had I loved him to hear him read with so little sensibility
Mama the more I know of the world the more am I convinced
that I shall never see a man whom I can really love
I require so much He must have all Edwards virtues
and his person and manners must ornament his goodness
with every possible charm
Remember my love that you are not seventeen
It is yet too early in life to despair of such a happiness
Why should you be less fortunate than your mother In
one circumstance only my Marianne may your destiny be
different from hers
CHAPTER 4
What a pity it is Elinor said Marianne
that Edward should have no taste for drawing
No taste for drawing replied Elinor why should
you think so He does not draw himself indeed but he has
great pleasure in seeing the performances of other people
and I assure you he is by no means deficient in natural taste
though he has not had opportunities of improving it
Had he ever been in the way of learning I think he would
have drawn very well He distrusts his own judgment
in such matters so much that he is always unwilling
to give his opinion on any picture but he has an innate
propriety and simplicity of taste which in general
direct him perfectly right
Marianne was afraid of offending and said no more
on the subject but the kind of approbation which Elinor
described as excited in him by the drawings of other
people was very far from that rapturous delight which
in her opinion could alone be called taste Yet though
smiling within herself at the mistake she honoured
her sister for that blind partiality to Edward which produced it
I hope Marianne continued Elinor you do not
consider him as deficient in general taste Indeed I think
I may say that you cannot for your behaviour to him
is perfectly cordial and if THAT were your opinion
I am sure you could never be civil to him
Marianne hardly knew what to say She would
not wound the feelings of her sister on any account
and yet to say what she did not believe was impossible
At length she replied
Do not be offended Elinor if my praise of him
is not in every thing equal to your sense of his merits
I have not had so many opportunities of estimating the minuter
propensities of his mind his inclinations and tastes
as you have but I have the highest opinion in the world
of his goodness and sense I think him every thing that is
worthy and amiable
I am sure replied Elinor with a smile
that his dearest friends could not be dissatisfied
with such commendation as that I do not perceive
how you could express yourself more warmly
Marianne was rejoiced to find her sister so easily pleased
Of his sense and his goodness continued Elinor
no one can I think be in doubt who has seen him
often enough to engage him in unreserved conversation
The excellence of his understanding and his principles
can be concealed only by that shyness which too often
keeps him silent You know enough of him to do justice
to his solid worth But of his minuter propensities
as you call them you have from peculiar circumstances
been kept more ignorant than myself He and I have
been at times thrown a good deal together while you
have been wholly engrossed on the most affectionate
principle by my mother I have seen a great deal of him
have studied his sentiments and heard his opinion on
subjects of literature and taste and upon the whole
I venture to pronounce that his mind is wellinformed
enjoyment of books exceedingly great his imagination lively
his observation just and correct and his taste delicate
and pure His abilities in every respect improve
as much upon acquaintance as his manners and person
At first sight his address is certainly not striking
and his person can hardly be called handsome till the
expression of his eyes which are uncommonly good
and the general sweetness of his countenance is perceived
At present I know him so well that I think him
really handsome or at least almost so What say you
Marianne
I shall very soon think him handsome Elinor if I
do not now When you tell me to love him as a brother
I shall no more see imperfection in his face than I now do
in his heart
Elinor started at this declaration and was sorry for
the warmth she had been betrayed into in speaking of him
She felt that Edward stood very high in her opinion
She believed the regard to be mutual but she required
greater certainty of it to make Mariannes conviction
of their attachment agreeable to her She knew that
what Marianne and her mother conjectured one moment
they believed the nextthat with them to wish was to hope
and to hope was to expect She tried to explain the real
state of the case to her sister
I do not attempt to deny said she that I think
very highly of himthat I greatly esteem that I like him
Marianne here burst forth with indignation
Esteem him Like him Coldhearted Elinor Oh
worse than coldhearted Ashamed of being otherwise
Use those words again and I will leave the room this moment
Elinor could not help laughing Excuse me
said she and be assured that I meant no offence to you
by speaking in so quiet a way of my own feelings
Believe them to be stronger than I have declared
believe them in short to be such as his merit and the
suspicionthe hope of his affection for me may warrant
without imprudence or folly But farther than this you must
not believe I am by no means assured of his regard for me
There are moments when the extent of it seems doubtful
and till his sentiments are fully known you cannot wonder
at my wishing to avoid any encouragement of my own partiality
by believing or calling it more than it is In my heart
I feel littlescarcely any doubt of his preference
But there are other points to be considered besides
his inclination He is very far from being independent
What his mother really is we cannot know but from Fannys
occasional mention of her conduct and opinions we have
never been disposed to think her amiable and I am very
much mistaken if Edward is not himself aware that there
would be many difficulties in his way if he were to wish
to marry a woman who had not either a great fortune or
high rank
Marianne was astonished to find how much the imagination
of her mother and herself had outstripped the truth
And you really are not engaged to him said she
Yet it certainly soon will happen But two advantages
will proceed from this delay I shall not lose you so soon
and Edward will have greater opportunity of improving
that natural taste for your favourite pursuit which must
be so indispensably necessary to your future felicity
Oh if he should be so far stimulated by your genius as to
learn to draw himself how delightful it would be
Elinor had given her real opinion to her sister
She could not consider her partiality for Edward
in so prosperous a state as Marianne had believed it
There was at times a want of spirits about him which
if it did not denote indifference spoke of something almost
as unpromising A doubt of her regard supposing him
to feel it need not give him more than inquietude
It would not be likely to produce that dejection of mind
which frequently attended him A more reasonable cause
might be found in the dependent situation which forbade
the indulgence of his affection She knew that his mother
neither behaved to him so as to make his home comfortable
at present nor to give him any assurance that he might form
a home for himself without strictly attending to her views
for his aggrandizement With such a knowledge as this
it was impossible for Elinor to feel easy on the subject
She was far from depending on that result of his preference
of her which her mother and sister still considered
as certain Nay the longer they were together the more
doubtful seemed the nature of his regard and sometimes
for a few painful minutes she believed it to be no more
than friendship
But whatever might really be its limits it was enough
when perceived by his sister to make her uneasy
and at the same time which was still more common
to make her uncivil She took the first opportunity of
affronting her motherinlaw on the occasion talking to
her so expressively of her brothers great expectations
of Mrs Ferrarss resolution that both her sons should
marry well and of the danger attending any young woman
who attempted to DRAW HIM IN that Mrs Dashwood could
neither pretend to be unconscious nor endeavor to be calm
She gave her an answer which marked her contempt
and instantly left the room resolving that whatever might
be the inconvenience or expense of so sudden a removal
her beloved Elinor should not be exposed another week
to such insinuations
In this state of her spirits a letter was delivered
to her from the post which contained a proposal
particularly well timed It was the offer of a small house
on very easy terms belonging to a relation of her own
a gentleman of consequence and property in Devonshire
The letter was from this gentleman himself and written
in the true spirit of friendly accommodation
He understood that she was in need of a dwelling
and though the house he now offered her was merely a cottage
he assured her that everything should be done to it which
she might think necessary if the situation pleased her
He earnestly pressed her after giving the particulars
of the house and garden to come with her daughters to
Barton Park the place of his own residence from whence
she might judge herself whether Barton Cottage for the
houses were in the same parish could by any alteration
be made comfortable to her He seemed really anxious to
accommodate them and the whole of his letter was written
in so friendly a style as could not fail of giving pleasure
to his cousin more especially at a moment when she was
suffering under the cold and unfeeling behaviour of her
nearer connections She needed no time for deliberation
or inquiry Her resolution was formed as she read
The situation of Barton in a county so far distant from
Sussex as Devonshire which but a few hours before
would have been a sufficient objection to outweigh every
possible advantage belonging to the place was now its
first recommendation To quit the neighbourhood of Norland
was no longer an evil it was an object of desire
it was a blessing in comparison of the misery of continuing
her daughterinlaws guest and to remove for ever
from that beloved place would be less painful than to
inhabit or visit it while such a woman was its mistress
She instantly wrote Sir John Middleton her acknowledgment
of his kindness and her acceptance of his proposal
and then hastened to shew both letters to her daughters
that she might be secure of their approbation before her
answer were sent
Elinor had always thought it would be more prudent
for them to settle at some distance from Norland
than immediately amongst their present acquaintance
On THAT head therefore it was not for her to oppose
her mothers intention of removing into Devonshire
The house too as described by Sir John was on so
simple a scale and the rent so uncommonly moderate
as to leave her no right of objection on either point
and therefore though it was not a plan which brought
any charm to her fancy though it was a removal from
the vicinity of Norland beyond her wishes she made
no attempt to dissuade her mother from sending a letter
of acquiescence
CHAPTER 5
No sooner was her answer dispatched than Mrs Dashwood
indulged herself in the pleasure of announcing to her
soninlaw and his wife that she was provided with a house
and should incommode them no longer than till every thing were
ready for her inhabiting it They heard her with surprise
Mrs John Dashwood said nothing but her husband civilly
hoped that she would not be settled far from Norland
She had great satisfaction in replying that she was going
into DevonshireEdward turned hastily towards her
on hearing this and in a voice of surprise and concern
which required no explanation to her repeated
Devonshire Are you indeed going there So far from hence
And to what part of it She explained the situation
It was within four miles northward of Exeter
It is but a cottage she continued but I hope
to see many of my friends in it A room or two can
easily be added and if my friends find no difficulty
in travelling so far to see me I am sure I will find
none in accommodating them
She concluded with a very kind invitation to
Mr and Mrs John Dashwood to visit her at Barton
and to Edward she gave one with still greater affection
Though her late conversation with her daughterinlaw had
made her resolve on remaining at Norland no longer than
was unavoidable it had not produced the smallest effect
on her in that point to which it principally tended
To separate Edward and Elinor was as far from being her
object as ever and she wished to show Mrs John Dashwood
by this pointed invitation to her brother how totally she
disregarded her disapprobation of the match
Mr John Dashwood told his mother again and again
how exceedingly sorry he was that she had taken a house at
such a distance from Norland as to prevent his being of any
service to her in removing her furniture He really felt
conscientiously vexed on the occasion for the very exertion
to which he had limited the performance of his promise to
his father was by this arrangement rendered impracticable
The furniture was all sent around by water It chiefly
consisted of household linen plate china and books
with a handsome pianoforte of Mariannes Mrs John
Dashwood saw the packages depart with a sigh she could
not help feeling it hard that as Mrs Dashwoods income
would be so trifling in comparison with their own
she should have any handsome article of furniture
Mrs Dashwood took the house for a twelvemonth it was
ready furnished and she might have immediate possession
No difficulty arose on either side in the agreement and she
waited only for the disposal of her effects at Norland
and to determine her future household before she set
off for the west and this as she was exceedingly rapid
in the performance of everything that interested her
was soon doneThe horses which were left her by her husband
had been sold soon after his death and an opportunity
now offering of disposing of her carriage she agreed
to sell that likewise at the earnest advice of her
eldest daughter For the comfort of her children had she
consulted only her own wishes she would have kept it
but the discretion of Elinor prevailed HER wisdom
too limited the number of their servants to three
two maids and a man with whom they were speedily provided
from amongst those who had formed their establishment
at Norland
The man and one of the maids were sent off immediately
into Devonshire to prepare the house for their mistresss
arrival for as Lady Middleton was entirely unknown
to Mrs Dashwood she preferred going directly to the
cottage to being a visitor at Barton Park and she relied
so undoubtingly on Sir Johns description of the house
as to feel no curiosity to examine it herself till she
entered it as her own Her eagerness to be gone from Norland
was preserved from diminution by the evident satisfaction
of her daughterinlaw in the prospect of her removal
a satisfaction which was but feebly attempted to be concealed
under a cold invitation to her to defer her departure
Now was the time when her soninlaws promise to his
father might with particular propriety be fulfilled
Since he had neglected to do it on first coming to
the estate their quitting his house might be looked
on as the most suitable period for its accomplishment
But Mrs Dashwood began shortly to give over every
hope of the kind and to be convinced from the general
drift of his discourse that his assistance extended no
farther than their maintenance for six months at Norland
He so frequently talked of the increasing expenses
of housekeeping and of the perpetual demands upon his purse
which a man of any consequence in the world was beyond
calculation exposed to that he seemed rather to stand
in need of more money himself than to have any design of
giving money away
In a very few weeks from the day which brought Sir
John Middletons first letter to Norland every thing was
so far settled in their future abode as to enable
Mrs Dashwood and her daughters to begin their journey
Many were the tears shed by them in their last
adieus to a place so much beloved Dear dear Norland
said Marianne as she wandered alone before the house
on the last evening of their being there when shall I cease
to regret youwhen learn to feel a home elsewhereOh
happy house could you know what I suffer in now viewing
you from this spot from whence perhaps I may view
you no moreAnd you ye wellknown treesbut you
will continue the sameNo leaf will decay because we
are removed nor any branch become motionless although we
can observe you no longerNo you will continue the same
unconscious of the pleasure or the regret you occasion
and insensible of any change in those who walk under your
shadeBut who will remain to enjoy you
CHAPTER 6
The first part of their journey was performed in too
melancholy a disposition to be otherwise than tedious
and unpleasant But as they drew towards the end of it
their interest in the appearance of a country which they
were to inhabit overcame their dejection and a view of
Barton Valley as they entered it gave them cheerfulness
It was a pleasant fertile spot well wooded and rich
in pasture After winding along it for more than a mile
they reached their own house A small green court was
the whole of its demesne in front and a neat wicket gate
admitted them into it
As a house Barton Cottage though small was comfortable
and compact but as a cottage it was defective for the
building was regular the roof was tiled the window
shutters were not painted green nor were the walls covered
with honeysuckles A narrow passage led directly through
the house into the garden behind On each side of the
entrance was a sitting room about sixteen feet square
and beyond them were the offices and the stairs
Four bedrooms and two garrets formed the rest of the house
It had not been built many years and was in good repair
In comparison of Norland it was poor and small indeedbut
the tears which recollection called forth as they entered
the house were soon dried away They were cheered
by the joy of the servants on their arrival and each
for the sake of the others resolved to appear happy
It was very early in September the season was fine
and from first seeing the place under the advantage
of good weather they received an impression in its
favour which was of material service in recommending
it to their lasting approbation
The situation of the house was good High hills rose
immediately behind and at no great distance on each side
some of which were open downs the others cultivated and woody
The village of Barton was chiefly on one of these hills
and formed a pleasant view from the cottage windows
The prospect in front was more extensive it commanded the
whole of the valley and reached into the country beyond
The hills which surrounded the cottage terminated
the valley in that direction under another name
and in another course it branched out again between two
of the steepest of them
With the size and furniture of the house Mrs Dashwood
was upon the whole well satisfied for though her former
style of life rendered many additions to the latter
indispensable yet to add and improve was a delight to her
and she had at this time ready money enough to supply all
that was wanted of greater elegance to the apartments
As for the house itself to be sure said she it is
too small for our family but we will make ourselves
tolerably comfortable for the present as it is too late
in the year for improvements Perhaps in the spring
if I have plenty of money as I dare say I shall we may
think about building These parlors are both too small
for such parties of our friends as I hope to see often
collected here and I have some thoughts of throwing the
passage into one of them with perhaps a part of the other
and so leave the remainder of that other for an entrance
this with a new drawing room which may be easily added
and a bedchamber and garret above will make it a very snug
little cottage I could wish the stairs were handsome
But one must not expect every thing though I suppose it
would be no difficult matter to widen them I shall see
how much I am beforehand with the world in the spring
and we will plan our improvements accordingly
In the mean time till all these alterations could
be made from the savings of an income of five hundred
ayear by a woman who never saved in her life they were
wise enough to be contented with the house as it was
and each of them was busy in arranging their particular
concerns and endeavoring by placing around them books
and other possessions to form themselves a home
Mariannes pianoforte was unpacked and properly disposed of
and Elinors drawings were affixed to the walls of their
sitting room
In such employments as these they were interrupted
soon after breakfast the next day by the entrance of
their landlord who called to welcome them to Barton
and to offer them every accommodation from his own house
and garden in which theirs might at present be deficient
Sir John Middleton was a good looking man about forty
He had formerly visited at Stanhill but it was too long
for his young cousins to remember him His countenance
was thoroughly goodhumoured and his manners were
as friendly as the style of his letter Their arrival
seemed to afford him real satisfaction and their comfort
to be an object of real solicitude to him He said much
of his earnest desire of their living in the most sociable
terms with his family and pressed them so cordially
to dine at Barton Park every day till they were better
settled at home that though his entreaties were carried
to a point of perseverance beyond civility they could
not give offence His kindness was not confined to words
for within an hour after he left them a large basket
full of garden stuff and fruit arrived from the park
which was followed before the end of the day by a present
of game He insisted moreover on conveying all their
letters to and from the post for them and would not be
denied the satisfaction of sending them his newspaper
every day
Lady Middleton had sent a very civil message by him
denoting her intention of waiting on Mrs Dashwood as soon as
she could be assured that her visit would be no inconvenience
and as this message was answered by an invitation
equally polite her ladyship was introduced to them the next day
They were of course very anxious to see a person on
whom so much of their comfort at Barton must depend and the
elegance of her appearance was favourable to their wishes
Lady Middleton was not more than six or seven and twenty
her face was handsome her figure tall and striking
and her address graceful Her manners had all the elegance
which her husbands wanted But they would have been
improved by some share of his frankness and warmth
and her visit was long enough to detract something from
their first admiration by shewing that though perfectly
wellbred she was reserved cold and had nothing to say
for herself beyond the most commonplace inquiry or remark
Conversation however was not wanted for Sir John
was very chatty and Lady Middleton had taken the wise
precaution of bringing with her their eldest child a fine
little boy about six years old by which means there was
one subject always to be recurred to by the ladies in case
of extremity for they had to enquire his name and age
admire his beauty and ask him questions which his mother
answered for him while he hung about her and held
down his head to the great surprise of her ladyship
who wondered at his being so shy before company as he
could make noise enough at home On every formal visit
a child ought to be of the party by way of provision
for discourse In the present case it took up ten minutes
to determine whether the boy were most like his father
or mother and in what particular he resembled either
for of course every body differed and every body was
astonished at the opinion of the others
An opportunity was soon to be given to the Dashwoods
of debating on the rest of the children as Sir John
would not leave the house without securing their promise
of dining at the park the next day
CHAPTER 7
Barton Park was about half a mile from the cottage
The ladies had passed near it in their way along the valley
but it was screened from their view at home by the
projection of a hill The house was large and handsome
and the Middletons lived in a style of equal hospitality
and elegance The former was for Sir Johns gratification
the latter for that of his lady They were scarcely
ever without some friends staying with them in the house
and they kept more company of every kind than any other
family in the neighbourhood It was necessary to the
happiness of both for however dissimilar in temper
and outward behaviour they strongly resembled each other
in that total want of talent and taste which confined
their employments unconnected with such as society produced
within a very narrow compass Sir John was a sportsman
Lady Middleton a mother He hunted and shot and she
humoured her children and these were their only resources
Lady Middleton had the advantage of being able to spoil her
children all the year round while Sir Johns independent
employments were in existence only half the time
Continual engagements at home and abroad however
supplied all the deficiencies of nature and education
supported the good spirits of Sir John and gave exercise
to the good breeding of his wife
Lady Middleton piqued herself upon the elegance
of her table and of all her domestic arrangements
and from this kind of vanity was her greatest enjoyment
in any of their parties But Sir Johns satisfaction
in society was much more real he delighted in collecting
about him more young people than his house would hold
and the noisier they were the better was he pleased
He was a blessing to all the juvenile part of the neighbourhood
for in summer he was for ever forming parties to eat cold
ham and chicken out of doors and in winter his private
balls were numerous enough for any young lady who was not
suffering under the unsatiable appetite of fifteen
The arrival of a new family in the country was always
a matter of joy to him and in every point of view he was
charmed with the inhabitants he had now procured for his
cottage at Barton The Miss Dashwoods were young pretty
and unaffected It was enough to secure his good opinion
for to be unaffected was all that a pretty girl could
want to make her mind as captivating as her person
The friendliness of his disposition made him happy in
accommodating those whose situation might be considered
in comparison with the past as unfortunate In showing
kindness to his cousins therefore he had the real satisfaction
of a good heart and in settling a family of females only
in his cottage he had all the satisfaction of a sportsman
for a sportsman though he esteems only those of his sex who
are sportsmen likewise is not often desirous of encouraging
their taste by admitting them to a residence within his own
manor
Mrs Dashwood and her daughters were met at the door
of the house by Sir John who welcomed them to Barton
Park with unaffected sincerity and as he attended them
to the drawing room repeated to the young ladies the concern
which the same subject had drawn from him the day before
at being unable to get any smart young men to meet them
They would see he said only one gentleman there
besides himself a particular friend who was staying at
the park but who was neither very young nor very gay
He hoped they would all excuse the smallness of the party
and could assure them it should never happen so again
He had been to several families that morning in hopes
of procuring some addition to their number but it
was moonlight and every body was full of engagements
Luckily Lady Middletons mother had arrived at Barton
within the last hour and as she was a very cheerful
agreeable woman he hoped the young ladies would not find
it so very dull as they might imagine The young ladies
as well as their mother were perfectly satisfied with
having two entire strangers of the party and wished for
no more
Mrs Jennings Lady Middletons mother was a
goodhumoured merry fat elderly woman who talked a
great deal seemed very happy and rather vulgar She was full
of jokes and laughter and before dinner was over had said
many witty things on the subject of lovers and husbands
hoped they had not left their hearts behind them in Sussex
and pretended to see them blush whether they did or not
Marianne was vexed at it for her sisters sake and turned
her eyes towards Elinor to see how she bore these attacks
with an earnestness which gave Elinor far more pain than
could arise from such commonplace raillery as Mrs Jenningss
Colonel Brandon the friend of Sir John seemed no
more adapted by resemblance of manner to be his friend
than Lady Middleton was to be his wife or Mrs Jennings
to be Lady Middletons mother He was silent and grave
His appearance however was not unpleasing in spite
of his being in the opinion of Marianne and Margaret
an absolute old bachelor for he was on the wrong side
of five and thirty but though his face was not handsome
his countenance was sensible and his address was
particularly gentlemanlike
There was nothing in any of the party which could
recommend them as companions to the Dashwoods but the cold
insipidity of Lady Middleton was so particularly repulsive
that in comparison of it the gravity of Colonel Brandon
and even the boisterous mirth of Sir John and his
motherinlaw was interesting Lady Middleton seemed
to be roused to enjoyment only by the entrance of her
four noisy children after dinner who pulled her about
tore her clothes and put an end to every kind of discourse
except what related to themselves
In the evening as Marianne was discovered to be musical
she was invited to play The instrument was unlocked
every body prepared to be charmed and Marianne
who sang very well at their request went through the
chief of the songs which Lady Middleton had brought into
the family on her marriage and which perhaps had lain
ever since in the same position on the pianoforte
for her ladyship had celebrated that event by giving
up music although by her mothers account she had
played extremely well and by her own was very fond of it
Mariannes performance was highly applauded
Sir John was loud in his admiration at the end of every song
and as loud in his conversation with the others while every
song lasted Lady Middleton frequently called him to order
wondered how any ones attention could be diverted from music
for a moment and asked Marianne to sing a particular song
which Marianne had just finished Colonel Brandon alone
of all the party heard her without being in raptures
He paid her only the compliment of attention and she felt
a respect for him on the occasion which the others had
reasonably forfeited by their shameless want of taste
His pleasure in music though it amounted not to that
ecstatic delight which alone could sympathize with her own
was estimable when contrasted against the horrible
insensibility of the others and she was reasonable enough
to allow that a man of five and thirty might well have
outlived all acuteness of feeling and every exquisite
power of enjoyment She was perfectly disposed to make
every allowance for the colonels advanced state of life
which humanity required
CHAPTER 8
Mrs Jennings was a widow with an ample jointure
She had only two daughters both of whom she had lived
to see respectably married and she had now therefore
nothing to do but to marry all the rest of the world
In the promotion of this object she was zealously active
as far as her ability reached and missed no opportunity
of projecting weddings among all the young people
of her acquaintance She was remarkably quick in the
discovery of attachments and had enjoyed the advantage
of raising the blushes and the vanity of many a young
lady by insinuations of her power over such a young man
and this kind of discernment enabled her soon after her
arrival at Barton decisively to pronounce that Colonel
Brandon was very much in love with Marianne Dashwood
She rather suspected it to be so on the very first
evening of their being together from his listening
so attentively while she sang to them and when the visit
was returned by the Middletons dining at the cottage
the fact was ascertained by his listening to her again
It must be so She was perfectly convinced of it
It would be an excellent match for HE was rich and SHE
was handsome Mrs Jennings had been anxious to see
Colonel Brandon well married ever since her connection
with Sir John first brought him to her knowledge
and she was always anxious to get a good husband for every
pretty girl
The immediate advantage to herself was by no means
inconsiderable for it supplied her with endless jokes
against them both At the park she laughed at the colonel
and in the cottage at Marianne To the former her
raillery was probably as far as it regarded only himself
perfectly indifferent but to the latter it was at
first incomprehensible and when its object was understood
she hardly knew whether most to laugh at its absurdity
or censure its impertinence for she considered it as an
unfeeling reflection on the colonels advanced years
and on his forlorn condition as an old bachelor
Mrs Dashwood who could not think a man five years
younger than herself so exceedingly ancient as he appeared
to the youthful fancy of her daughter ventured to clear
Mrs Jennings from the probability of wishing to throw
ridicule on his age
But at least Mamma you cannot deny the absurdity
of the accusation though you may not think it intentionally
illnatured Colonel Brandon is certainly younger than
Mrs Jennings but he is old enough to be MY father
and if he were ever animated enough to be in love
must have long outlived every sensation of the kind
It is too ridiculous When is a man to be safe from such wit
if age and infirmity will not protect him
Infirmity said Elinor do you call Colonel Brandon
infirm I can easily suppose that his age may appear much
greater to you than to my mother but you can hardly
deceive yourself as to his having the use of his limbs
Did not you hear him complain of the rheumatism
and is not that the commonest infirmity of declining life
My dearest child said her mother laughing
at this rate you must be in continual terror of MY decay
and it must seem to you a miracle that my life has been
extended to the advanced age of forty
Mamma you are not doing me justice I know very well
that Colonel Brandon is not old enough to make his friends
yet apprehensive of losing him in the course of nature
He may live twenty years longer But thirtyfive has
nothing to do with matrimony
Perhaps said Elinor thirtyfive and seventeen had
better not have any thing to do with matrimony together
But if there should by any chance happen to be a woman
who is single at seven and twenty I should not think
Colonel Brandons being thirtyfive any objection to his
marrying HER
A woman of seven and twenty said Marianne
after pausing a moment can never hope to feel or inspire
affection again and if her home be uncomfortable
or her fortune small I can suppose that she might
bring herself to submit to the offices of a nurse
for the sake of the provision and security of a wife
In his marrying such a woman therefore there would be
nothing unsuitable It would be a compact of convenience
and the world would be satisfied In my eyes it would
be no marriage at all but that would be nothing
To me it would seem only a commercial exchange in which
each wished to be benefited at the expense of the other
It would be impossible I know replied Elinor
to convince you that a woman of seven and twenty could
feel for a man of thirtyfive anything near enough
to love to make him a desirable companion to her
But I must object to your dooming Colonel Brandon and
his wife to the constant confinement of a sick chamber
merely because he chanced to complain yesterday a
very cold damp day of a slight rheumatic feel in one
of his shoulders
But he talked of flannel waistcoats said Marianne
and with me a flannel waistcoat is invariably connected
with aches cramps rheumatisms and every species of
ailment that can afflict the old and the feeble
Had he been only in a violent fever you would not
have despised him half so much Confess Marianne is not
there something interesting to you in the flushed cheek
hollow eye and quick pulse of a fever
Soon after this upon Elinors leaving the room
Mamma said Marianne I have an alarm on the subject
of illness which I cannot conceal from you I am sure
Edward Ferrars is not well We have now been here almost
a fortnight and yet he does not come Nothing but real
indisposition could occasion this extraordinary delay
What else can detain him at Norland
Had you any idea of his coming so soon
said Mrs Dashwood I had none On the contrary
if I have felt any anxiety at all on the subject it has
been in recollecting that he sometimes showed a want
of pleasure and readiness in accepting my invitation
when I talked of his coming to Barton Does Elinor
expect him already
I have never mentioned it to her but of course
she must
I rather think you are mistaken for when I
was talking to her yesterday of getting a new grate
for the spare bedchamber she observed that there
was no immediate hurry for it as it was not likely
that the room would be wanted for some time
How strange this is what can be the meaning of it
But the whole of their behaviour to each other has been
unaccountable How cold how composed were their last
adieus How languid their conversation the last evening
of their being together In Edwards farewell there was no
distinction between Elinor and me it was the good wishes
of an affectionate brother to both Twice did I leave
them purposely together in the course of the last morning
and each time did he most unaccountably follow me out
of the room And Elinor in quitting Norland and Edward
cried not as I did Even now her selfcommand is invariable
When is she dejected or melancholy When does she try
to avoid society or appear restless and dissatisfied
in it
CHAPTER 9
The Dashwoods were now settled at Barton with tolerable
comfort to themselves The house and the garden with all
the objects surrounding them were now become familiar
and the ordinary pursuits which had given to Norland
half its charms were engaged in again with far greater
enjoyment than Norland had been able to afford since the
loss of their father Sir John Middleton who called
on them every day for the first fortnight and who was
not in the habit of seeing much occupation at home
could not conceal his amazement on finding them always employed
Their visitors except those from Barton Park
were not many for in spite of Sir Johns urgent entreaties
that they would mix more in the neighbourhood and repeated
assurances of his carriage being always at their service
the independence of Mrs Dashwoods spirit overcame the
wish of society for her children and she was resolute
in declining to visit any family beyond the distance
of a walk There were but few who could be so classed
and it was not all of them that were attainable
About a mile and a half from the cottage along the narrow
winding valley of Allenham which issued from that of Barton
as formerly described the girls had in one of their
earliest walks discovered an ancient respectable looking
mansion which by reminding them a little of Norland
interested their imagination and made them wish to be
better acquainted with it But they learnt on enquiry
that its possessor an elderly lady of very good character
was unfortunately too infirm to mix with the world
and never stirred from home
The whole country about them abounded in beautiful walks
The high downs which invited them from almost every window
of the cottage to seek the exquisite enjoyment of air
on their summits were a happy alternative when the dirt
of the valleys beneath shut up their superior beauties
and towards one of these hills did Marianne and Margaret
one memorable morning direct their steps attracted by the
partial sunshine of a showery sky and unable longer to bear
the confinement which the settled rain of the two preceding
days had occasioned The weather was not tempting enough
to draw the two others from their pencil and their book
in spite of Mariannes declaration that the day would
be lastingly fair and that every threatening cloud would
be drawn off from their hills and the two girls set off
together
They gaily ascended the downs rejoicing in their own
penetration at every glimpse of blue sky and when they
caught in their faces the animating gales of a high
southwesterly wind they pitied the fears which had prevented
their mother and Elinor from sharing such delightful sensations
Is there a felicity in the world said Marianne
superior to thisMargaret we will walk here at least
two hours
Margaret agreed and they pursued their way against
the wind resisting it with laughing delight for about
twenty minutes longer when suddenly the clouds united over
their heads and a driving rain set full in their face
Chagrined and surprised they were obliged though unwillingly
to turn back for no shelter was nearer than their own house
One consolation however remained for them to which the
exigence of the moment gave more than usual propriety
it was that of running with all possible speed down the steep
side of the hill which led immediately to their garden gate
They set off Marianne had at first the advantage
but a false step brought her suddenly to the ground
and Margaret unable to stop herself to assist her
was involuntarily hurried along and reached the bottom
in safety
A gentleman carrying a gun with two pointers
playing round him was passing up the hill and within
a few yards of Marianne when her accident happened
He put down his gun and ran to her assistance She had
raised herself from the ground but her foot had been
twisted in her fall and she was scarcely able to stand
The gentleman offered his services and perceiving that her
modesty declined what her situation rendered necessary
took her up in his arms without farther delay and carried
her down the hill Then passing through the garden
the gate of which had been left open by Margaret he bore her
directly into the house whither Margaret was just arrived
and quitted not his hold till he had seated her in a chair
in the parlour
Elinor and her mother rose up in amazement at
their entrance and while the eyes of both were fixed
on him with an evident wonder and a secret admiration
which equally sprung from his appearance he apologized
for his intrusion by relating its cause in a manner
so frank and so graceful that his person which was
uncommonly handsome received additional charms from his voice
and expression Had he been even old ugly and vulgar
the gratitude and kindness of Mrs Dashwood would
have been secured by any act of attention to her child
but the influence of youth beauty and elegance
gave an interest to the action which came home to her feelings
She thanked him again and again and with a sweetness
of address which always attended her invited him to
be seated But this he declined as he was dirty and wet
Mrs Dashwood then begged to know to whom she was obliged
His name he replied was Willoughby and his present
home was at Allenham from whence he hoped she would
allow him the honour of calling tomorrow to enquire
after Miss Dashwood The honour was readily granted
and he then departed to make himself still more interesting
in the midst of a heavy rain
His manly beauty and more than common gracefulness
were instantly the theme of general admiration
and the laugh which his gallantry raised against Marianne
received particular spirit from his exterior attractions
Marianne herself had seen less of his person that the rest
for the confusion which crimsoned over her face on his
lifting her up had robbed her of the power of regarding
him after their entering the house But she had seen
enough of him to join in all the admiration of the others
and with an energy which always adorned her praise
His person and air were equal to what her fancy had ever
drawn for the hero of a favourite story and in his carrying
her into the house with so little previous formality there
was a rapidity of thought which particularly recommended
the action to her Every circumstance belonging to him
was interesting His name was good his residence was in
their favourite village and she soon found out that of all
manly dresses a shootingjacket was the most becoming
Her imagination was busy her reflections were pleasant
and the pain of a sprained ankle was disregarded
Sir John called on them as soon as the next interval
of fair weather that morning allowed him to get out
of doors and Mariannes accident being related to him
he was eagerly asked whether he knew any gentleman
of the name of Willoughby at Allenham
Willoughby cried Sir John what is HE
in the country That is good news however I will
ride over tomorrow and ask him to dinner on Thursday
You know him then said Mrs Dashwood
Know him to be sure I do Why he is down here
every year
And what sort of a young man is he
As good a kind of fellow as ever lived I assure you
A very decent shot and there is not a bolder rider
in England
And is that all you can say for him cried Marianne
indignantly But what are his manners on more intimate
acquaintance What his pursuits his talents and genius
Sir John was rather puzzled
Upon my soul said he I do not know much about him
as to all THAT But he is a pleasant good humoured fellow
and has got the nicest little black bitch of a pointer
I ever saw Was she out with him today
But Marianne could no more satisfy him as to the
colour of Mr Willoughbys pointer than he could
describe to her the shades of his mind
But who is he said Elinor Where does he come
from Has he a house at Allenham
On this point Sir John could give more certain intelligence
and he told them that Mr Willoughby had no property
of his own in the country that he resided there only
while he was visiting the old lady at Allenham Court
to whom he was related and whose possessions he was
to inherit adding Yes yes he is very well worth
catching I can tell you Miss Dashwood he has a pretty
little estate of his own in Somersetshire besides
and if I were you I would not give him up to my
younger sister in spite of all this tumbling down hills
Miss Marianne must not expect to have all the men to herself
Brandon will be jealous if she does not take care
I do not believe said Mrs Dashwood with a
good humoured smile that Mr Willoughby will be incommoded
by the attempts of either of MY daughters towards what
you call CATCHING him It is not an employment to which
they have been brought up Men are very safe with us
let them be ever so rich I am glad to find however
from what you say that he is a respectable young man
and one whose acquaintance will not be ineligible
He is as good a sort of fellow I believe
as ever lived repeated Sir John I remember
last Christmas at a little hop at the park he danced
from eight oclock till four without once sitting down
Did he indeed cried Marianne with sparkling eyes
and with elegance with spirit
Yes and he was up again at eight to ride to covert
That is what I like that is what a young man ought
to be Whatever be his pursuits his eagerness in them
should know no moderation and leave him no sense of fatigue
Aye aye I see how it will be said Sir John I see
how it will be You will be setting your cap at him now
and never think of poor Brandon
That is an expression Sir John said Marianne
warmly which I particularly dislike I abhor every
commonplace phrase by which wit is intended and setting
ones cap at a man or making a conquest are the most
odious of all Their tendency is gross and illiberal
and if their construction could ever be deemed clever
time has long ago destroyed all its ingenuity
Sir John did not much understand this reproof
but he laughed as heartily as if he did and then replied
Ay you will make conquests enough I dare say
one way or other Poor Brandon he is quite smitten already
and he is very well worth setting your cap at I can
tell you in spite of all this tumbling about and spraining
of ankles
CHAPTER 10
Mariannes preserver as Margaret with more elegance
than precision styled Willoughby called at the cottage
early the next morning to make his personal enquiries
He was received by Mrs Dashwood with more than politeness
with a kindness which Sir Johns account of him and her own
gratitude prompted and every thing that passed during
the visit tended to assure him of the sense elegance
mutual affection and domestic comfort of the family
to whom accident had now introduced him Of their
personal charms he had not required a second interview
to be convinced
Miss Dashwood had a delicate complexion
regular features and a remarkably pretty figure
Marianne was still handsomer Her form though not so
correct as her sisters in having the advantage of height
was more striking and her face was so lovely that when
in the common cant of praise she was called a beautiful girl
truth was less violently outraged than usually happens
Her skin was very brown but from its transparency
her complexion was uncommonly brilliant her features
were all good her smile was sweet and attractive
and in her eyes which were very dark there was a life
a spirit an eagerness which could hardily be seen
without delight From Willoughby their expression was at
first held back by the embarrassment which the remembrance
of his assistance created But when this passed away
when her spirits became collected when she saw that to the
perfect goodbreeding of the gentleman he united frankness
and vivacity and above all when she heard him declare
that of music and dancing he was passionately fond
she gave him such a look of approbation as secured the
largest share of his discourse to herself for the rest
of his stay
It was only necessary to mention any favourite
amusement to engage her to talk She could not be
silent when such points were introduced and she
had neither shyness nor reserve in their discussion
They speedily discovered that their enjoyment of dancing
and music was mutual and that it arose from a general
conformity of judgment in all that related to either
Encouraged by this to a further examination of his opinions
she proceeded to question him on the subject of books
her favourite authors were brought forward and dwelt
upon with so rapturous a delight that any young man of
five and twenty must have been insensible indeed not to
become an immediate convert to the excellence of such works
however disregarded before Their taste was strikingly alike
The same books the same passages were idolized by each
or if any difference appeared any objection arose
it lasted no longer than till the force of her arguments
and the brightness of her eyes could be displayed
He acquiesced in all her decisions caught all her enthusiasm
and long before his visit concluded they conversed
with the familiarity of a longestablished acquaintance
Well Marianne said Elinor as soon as he had left them
for ONE morning I think you have done pretty well
You have already ascertained Mr Willoughbys opinion in
almost every matter of importance You know what he thinks
of Cowper and Scott you are certain of his estimating
their beauties as he ought and you have received every
assurance of his admiring Pope no more than is proper
But how is your acquaintance to be long supported under such
extraordinary despatch of every subject for discourse
You will soon have exhausted each favourite topic
Another meeting will suffice to explain his sentiments
on picturesque beauty and second marriages and then
you can have nothing farther to ask
Elinor cried Marianne is this fair is this
just are my ideas so scanty But I see what you mean
I have been too much at my ease too happy too frank
I have erred against every commonplace notion of decorum
I have been open and sincere where I ought to have
been reserved spiritless dull and deceitfulhad
I talked only of the weather and the roads and had I
spoken only once in ten minutes this reproach would have
been spared
My love said her mother you must not be offended
with Elinorshe was only in jest I should scold
her myself if she were capable of wishing to check
the delight of your conversation with our new friend
Marianne was softened in a moment
Willoughby on his side gave every proof of his
pleasure in their acquaintance which an evident wish
of improving it could offer He came to them every day
To enquire after Marianne was at first his excuse but the
encouragement of his reception to which every day gave
greater kindness made such an excuse unnecessary before it
had ceased to be possible by Mariannes perfect recovery
She was confined for some days to the house but never had
any confinement been less irksome Willoughby was a young
man of good abilities quick imagination lively spirits
and open affectionate manners He was exactly formed
to engage Mariannes heart for with all this he joined
not only a captivating person but a natural ardour
of mind which was now roused and increased by the example
of her own and which recommended him to her affection
beyond every thing else
His society became gradually her most exquisite enjoyment
They read they talked they sang together his musical
talents were considerable and he read with all the
sensibility and spirit which Edward had unfortunately wanted
In Mrs Dashwoods estimation he was as faultless
as in Mariannes and Elinor saw nothing to censure in him
but a propensity in which he strongly resembled and peculiarly
delighted her sister of saying too much what he thought on
every occasion without attention to persons or circumstances
In hastily forming and giving his opinion of other people
in sacrificing general politeness to the enjoyment
of undivided attention where his heart was engaged
and in slighting too easily the forms of worldly propriety
he displayed a want of caution which Elinor could not approve
in spite of all that he and Marianne could say in its support
Marianne began now to perceive that the desperation
which had seized her at sixteen and a half of ever
seeing a man who could satisfy her ideas of perfection
had been rash and unjustifiable Willoughby was all
that her fancy had delineated in that unhappy hour
and in every brighter period as capable of attaching her
and his behaviour declared his wishes to be in that respect
as earnest as his abilities were strong
Her mother too in whose mind not one speculative
thought of their marriage had been raised by his prospect
of riches was led before the end of a week to hope and
expect it and secretly to congratulate herself on having
gained two such sonsinlaw as Edward and Willoughby
Colonel Brandons partiality for Marianne which had
so early been discovered by his friends now first became
perceptible to Elinor when it ceased to be noticed
by them Their attention and wit were drawn off to his
more fortunate rival and the raillery which the other
had incurred before any partiality arose was removed
when his feelings began really to call for the ridicule
so justly annexed to sensibility Elinor was obliged
though unwillingly to believe that the sentiments which
Mrs Jennings had assigned him for her own satisfaction
were now actually excited by her sister and that however
a general resemblance of disposition between the parties
might forward the affection of Mr Willoughby an equally
striking opposition of character was no hindrance to the
regard of Colonel Brandon She saw it with concern
for what could a silent man of five and thirty hope
when opposed to a very lively one of five and twenty and as
she could not even wish him successful she heartily wished
him indifferent She liked himin spite of his gravity
and reserve she beheld in him an object of interest
His manners though serious were mild and his reserve
appeared rather the result of some oppression of spirits
than of any natural gloominess of temper Sir John
had dropped hints of past injuries and disappointments
which justified her belief of his being an unfortunate man
and she regarded him with respect and compassion
Perhaps she pitied and esteemed him the more
because he was slighted by Willoughby and Marianne
who prejudiced against him for being neither lively
nor young seemed resolved to undervalue his merits
Brandon is just the kind of man said Willoughby
one day when they were talking of him together
whom every body speaks well of and nobody cares about
whom all are delighted to see and nobody remembers
to talk to
That is exactly what I think of him cried Marianne
Do not boast of it however said Elinor for it
is injustice in both of you He is highly esteemed
by all the family at the park and I never see him myself
without taking pains to converse with him
That he is patronised by YOU replied Willoughby
is certainly in his favour but as for the esteem
of the others it is a reproach in itself Who would
submit to the indignity of being approved by such a woman
as Lady Middleton and Mrs Jennings that could command
the indifference of any body else
But perhaps the abuse of such people as yourself
and Marianne will make amends for the regard of Lady
Middleton and her mother If their praise is censure
your censure may be praise for they are not more undiscerning
than you are prejudiced and unjust
In defence of your protege you can even be saucy
My protege as you call him is a sensible man
and sense will always have attractions for me
Yes Marianne even in a man between thirty and forty
He has seen a great deal of the world has been abroad
has read and has a thinking mind I have found him
capable of giving me much information on various subjects
and he has always answered my inquiries with readiness of
goodbreeding and good nature
That is to say cried Marianne contemptuously
he has told you that in the East Indies the climate is hot
and the mosquitoes are troublesome
He WOULD have told me so I doubt not had I made
any such inquiries but they happened to be points
on which I had been previously informed
Perhaps said Willoughby his observations may
have extended to the existence of nabobs gold mohrs
and palanquins
I may venture to say that HIS observations
have stretched much further than your candour
But why should you dislike him
I do not dislike him I consider him on the contrary
as a very respectable man who has every bodys good word
and nobodys notice who has more money than he can spend
more time than he knows how to employ and two new coats
every year
Add to which cried Marianne that he has
neither genius taste nor spirit That his understanding
has no brilliancy his feelings no ardour and his voice
no expression
You decide on his imperfections so much in the mass
replied Elinor and so much on the strength of your
own imagination that the commendation I am able to give
of him is comparatively cold and insipid I can only
pronounce him to be a sensible man wellbred wellinformed
of gentle address and I believe possessing an amiable heart
Miss Dashwood cried Willoughby you are now using
me unkindly You are endeavouring to disarm me by reason
and to convince me against my will But it will not do
You shall find me as stubborn as you can be artful I have
three unanswerable reasons for disliking Colonel Brandon
he threatened me with rain when I wanted it to be fine
he has found fault with the hanging of my curricle
and I cannot persuade him to buy my brown mare If it
will be any satisfaction to you however to be told
that I believe his character to be in other respects
irreproachable I am ready to confess it And in return
for an acknowledgment which must give me some pain
you cannot deny me the privilege of disliking him as much
as ever
CHAPTER 11
Little had Mrs Dashwood or her daughters imagined
when they first came into Devonshire that so many
engagements would arise to occupy their time as shortly
presented themselves or that they should have such frequent
invitations and such constant visitors as to leave them little
leisure for serious employment Yet such was the case
When Marianne was recovered the schemes of amusement at home
and abroad which Sir John had been previously forming
were put into execution The private balls at the park
then began and parties on the water were made and
accomplished as often as a showery October would allow
In every meeting of the kind Willoughby was included
and the ease and familiarity which naturally attended
these parties were exactly calculated to give increasing
intimacy to his acquaintance with the Dashwoods to afford
him opportunity of witnessing the excellencies of Marianne
of marking his animated admiration of her and of receiving
in her behaviour to himself the most pointed assurance
of her affection
Elinor could not be surprised at their attachment
She only wished that it were less openly shewn and once
or twice did venture to suggest the propriety of some
selfcommand to Marianne But Marianne abhorred all
concealment where no real disgrace could attend unreserve
and to aim at the restraint of sentiments which were not
in themselves illaudable appeared to her not merely
an unnecessary effort but a disgraceful subjection
of reason to commonplace and mistaken notions
Willoughby thought the same and their behaviour at
all times was an illustration of their opinions
When he was present she had no eyes for any one else
Every thing he did was right Every thing he said was clever
If their evenings at the park were concluded with cards
he cheated himself and all the rest of the party to get
her a good hand If dancing formed the amusement
of the night they were partners for half the time
and when obliged to separate for a couple of dances
were careful to stand together and scarcely spoke a word
to any body else Such conduct made them of course
most exceedingly laughed at but ridicule could not shame
and seemed hardly to provoke them
Mrs Dashwood entered into all their feelings with
a warmth which left her no inclination for checking this
excessive display of them To her it was but the natural
consequence of a strong affection in a young and ardent mind
This was the season of happiness to Marianne
Her heart was devoted to Willoughby and the fond attachment
to Norland which she brought with her from Sussex
was more likely to be softened than she had thought it
possible before by the charms which his society bestowed
on her present home
Elinors happiness was not so great Her heart was not
so much at ease nor her satisfaction in their amusements
so pure They afforded her no companion that could make
amends for what she had left behind nor that could teach
her to think of Norland with less regret than ever
Neither Lady Middleton nor Mrs Jennings could supply
to her the conversation she missed although the latter
was an everlasting talker and from the first had regarded
her with a kindness which ensured her a large share of
her discourse She had already repeated her own history
to Elinor three or four times and had Elinors memory been
equal to her means of improvement she might have known
very early in their acquaintance all the particulars of
Mr Jennings last illness and what he said to his wife
a few minutes before he died Lady Middleton was more
agreeable than her mother only in being more silent
Elinor needed little observation to perceive that her
reserve was a mere calmness of manner with which sense
had nothing to do Towards her husband and mother she
was the same as to them and intimacy was therefore
neither to be looked for nor desired She had nothing
to say one day that she had not said the day before
Her insipidity was invariable for even her spirits were
always the same and though she did not oppose the parties
arranged by her husband provided every thing were conducted
in style and her two eldest children attended her
she never appeared to receive more enjoyment from them
than she might have experienced in sitting at home
and so little did her presence add to the pleasure
of the others by any share in their conversation
that they were sometimes only reminded of her being
amongst them by her solicitude about her troublesome boys
In Colonel Brandon alone of all her new acquaintance
did Elinor find a person who could in any degree claim the
respect of abilities excite the interest of friendship
or give pleasure as a companion Willoughby was out
of the question Her admiration and regard even her
sisterly regard was all his own but he was a lover
his attentions were wholly Mariannes and a far less
agreeable man might have been more generally pleasing
Colonel Brandon unfortunately for himself had no such
encouragement to think only of Marianne and in conversing
with Elinor he found the greatest consolation for the
indifference of her sister
Elinors compassion for him increased as she had reason
to suspect that the misery of disappointed love had already
been known to him This suspicion was given by some words
which accidently dropped from him one evening at the park
when they were sitting down together by mutual consent
while the others were dancing His eyes were fixed
on Marianne and after a silence of some minutes
he said with a faint smile Your sister I understand
does not approve of second attachments
No replied Elinor her opinions are all romantic
Or rather as I believe she considers them
impossible to exist
I believe she does But how she contrives it
without reflecting on the character of her own father
who had himself two wives I know not A few years
however will settle her opinions on the reasonable basis
of common sense and observation and then they may be
more easy to define and to justify than they now are
by any body but herself
This will probably be the case he replied
and yet there is something so amiable in the prejudices
of a young mind that one is sorry to see them give way
to the reception of more general opinions
I cannot agree with you there said Elinor
There are inconveniences attending such feelings
as Mariannes which all the charms of enthusiasm and
ignorance of the world cannot atone for Her systems have
all the unfortunate tendency of setting propriety at nought
and a better acquaintance with the world is what I look
forward to as her greatest possible advantage
After a short pause he resumed the conversation
by saying
Does your sister make no distinction in her objections
against a second attachment or is it equally criminal
in every body Are those who have been disappointed
in their first choice whether from the inconstancy
of its object or the perverseness of circumstances
to be equally indifferent during the rest of their lives
Upon my word I am not acquainted with the minutiae
of her principles I only know that I never yet heard her
admit any instance of a second attachments being pardonable
This said he cannot hold but a change
a total change of sentimentsNo no do not desire it
for when the romantic refinements of a young mind
are obliged to give way how frequently are they
succeeded by such opinions as are but too common and too
dangerous I speak from experience I once knew a lady
who in temper and mind greatly resembled your sister
who thought and judged like her but who from an inforced
changefrom a series of unfortunate circumstances
Here he stopt suddenly appeared to think that he had said
too much and by his countenance gave rise to conjectures
which might not otherwise have entered Elinors head
The lady would probably have passed without suspicion
had he not convinced Miss Dashwood that what concerned
her ought not to escape his lips As it was
it required but a slight effort of fancy to connect his
emotion with the tender recollection of past regard
Elinor attempted no more But Marianne in her place
would not have done so little The whole story would
have been speedily formed under her active imagination
and every thing established in the most melancholy order
of disastrous love
CHAPTER 12
As Elinor and Marianne were walking together the
next morning the latter communicated a piece of news
to her sister which in spite of all that she knew
before of Mariannes imprudence and want of thought
surprised her by its extravagant testimony of both
Marianne told her with the greatest delight that
Willoughby had given her a horse one that he had bred
himself on his estate in Somersetshire and which was
exactly calculated to carry a woman Without considering
that it was not in her mothers plan to keep any horse
that if she were to alter her resolution in favour of
this gift she must buy another for the servant and
keep a servant to ride it and after all build a stable
to receive them she had accepted the present without
hesitation and told her sister of it in raptures
He intends to send his groom into Somersetshire
immediately for it she added and when it arrives we
will ride every day You shall share its use with me
Imagine to yourself my dear Elinor the delight of a gallop
on some of these downs
Most unwilling was she to awaken from such a dream of
felicity to comprehend all the unhappy truths which attended
the affair and for some time she refused to submit to them
As to an additional servant the expense would be a trifle
Mamma she was sure would never object to it and any horse
would do for HIM he might always get one at the park
as to a stable the merest shed would be sufficient
Elinor then ventured to doubt the propriety of her receiving
such a present from a man so little or at least so lately
known to her This was too much
You are mistaken Elinor said she warmly
in supposing I know very little of Willoughby
I have not known him long indeed but I am much better
acquainted with him than I am with any other creature
in the world except yourself and mama It is not
time or opportunity that is to determine intimacy
it is disposition alone Seven years would be insufficient
to make some people acquainted with each other and seven
days are more than enough for others I should hold
myself guilty of greater impropriety in accepting a horse
from my brother than from Willoughby Of John I know
very little though we have lived together for years
but of Willoughby my judgment has long been formed
Elinor thought it wisest to touch that point no more
She knew her sisters temper Opposition on so tender a
subject would only attach her the more to her own opinion
But by an appeal to her affection for her mother
by representing the inconveniences which that indulgent
mother must draw on herself if as would probably be
the case she consented to this increase of establishment
Marianne was shortly subdued and she promised not to
tempt her mother to such imprudent kindness by mentioning
the offer and to tell Willoughby when she saw him next
that it must be declined
She was faithful to her word and when Willoughby
called at the cottage the same day Elinor heard her
express her disappointment to him in a low voice on
being obliged to forego the acceptance of his present
The reasons for this alteration were at the same time related
and they were such as to make further entreaty on his
side impossible His concern however was very apparent
and after expressing it with earnestness he added
in the same low voiceBut Marianne the horse is
still yours though you cannot use it now I shall keep
it only till you can claim it When you leave Barton
to form your own establishment in a more lasting home
Queen Mab shall receive you
This was all overheard by Miss Dashwood and in the
whole of the sentence in his manner of pronouncing it
and in his addressing her sister by her Christian name alone
she instantly saw an intimacy so decided a meaning
so direct as marked a perfect agreement between them
From that moment she doubted not of their being engaged
to each other and the belief of it created no other surprise
than that she or any of their friends should be left
by tempers so frank to discover it by accident
Margaret related something to her the next day
which placed this matter in a still clearer light
Willoughby had spent the preceding evening with them
and Margaret by being left some time in the parlour
with only him and Marianne had had opportunity
for observations which with a most important face
she communicated to her eldest sister when they were
next by themselves
Oh Elinor she cried I have such a secret to
tell you about Marianne I am sure she will be married
to Mr Willoughby very soon
You have said so replied Elinor almost every
day since they first met on Highchurch Down and they
had not known each other a week I believe before you
were certain that Marianne wore his picture round her neck
but it turned out to be only the miniature of our great uncle
But indeed this is quite another thing I am sure
they will be married very soon for he has got a lock
of her hair
Take care Margaret It may be only the hair
of some great uncle of HIS
But indeed Elinor it is Mariannes I am almost
sure it is for I saw him cut it off Last night
after tea when you and mama went out of the room
they were whispering and talking together as fast as
could be and he seemed to be begging something of her
and presently he took up her scissors and cut off a long
lock of her hair for it was all tumbled down her back
and he kissed it and folded it up in a piece of white paper
and put it into his pocketbook
For such particulars stated on such authority
Elinor could not withhold her credit nor was she disposed
to it for the circumstance was in perfect unison with
what she had heard and seen herself
Margarets sagacity was not always displayed in a
way so satisfactory to her sister When Mrs Jennings
attacked her one evening at the park to give the name
of the young man who was Elinors particular favourite
which had been long a matter of great curiosity to her
Margaret answered by looking at her sister and saying
I must not tell may I Elinor
This of course made every body laugh and Elinor
tried to laugh too But the effort was painful
She was convinced that Margaret had fixed on a person
whose name she could not bear with composure to become
a standing joke with Mrs Jennings
Marianne felt for her most sincerely but she did
more harm than good to the cause by turning very red
and saying in an angry manner to Margaret
Remember that whatever your conjectures may be
you have no right to repeat them
I never had any conjectures about it replied Margaret
it was you who told me of it yourself
This increased the mirth of the company and Margaret
was eagerly pressed to say something more
Oh pray Miss Margaret let us know all about it
said Mrs Jennings What is the gentlemans name
I must not tell maam But I know very well what it is
and I know where he is too
Yes yes we can guess where he is at his own house
at Norland to be sure He is the curate of the parish
I dare say
No THAT he is not He is of no profession at all
Margaret said Marianne with great warmth
you know that all this is an invention of your own
and that there is no such person in existence
Well then he is lately dead Marianne for I
am sure there was such a man once and his name begins
with an F
Most grateful did Elinor feel to Lady Middleton
for observing at this moment that it rained very hard
though she believed the interruption to proceed less from
any attention to her than from her ladyships great dislike
of all such inelegant subjects of raillery as delighted
her husband and mother The idea however started by her
was immediately pursued by Colonel Brandon who was
on every occasion mindful of the feelings of others
and much was said on the subject of rain by both of them
Willoughby opened the pianoforte and asked Marianne
to sit down to it and thus amidst the various endeavours
of different people to quit the topic it fell to the ground
But not so easily did Elinor recover from the alarm into
which it had thrown her
A party was formed this evening for going on the
following day to see a very fine place about twelve miles
from Barton belonging to a brotherinlaw of Colonel Brandon
without whose interest it could not be seen as the proprietor
who was then abroad had left strict orders on that head
The grounds were declared to be highly beautiful
and Sir John who was particularly warm in their praise
might be allowed to be a tolerable judge for he had
formed parties to visit them at least twice every summer
for the last ten years They contained a noble piece
of water a sail on which was to a form a great part of
the mornings amusement cold provisions were to be taken
open carriages only to be employed and every thing
conducted in the usual style of a complete party of pleasure
To some few of the company it appeared rather
a bold undertaking considering the time of year
and that it had rained every day for the last fortnight
and Mrs Dashwood who had already a cold was persuaded
by Elinor to stay at home
CHAPTER 13
Their intended excursion to Whitwell turned out
very different from what Elinor had expected She was
prepared to be wet through fatigued and frightened
but the event was still more unfortunate for they did
not go at all
By ten oclock the whole party was assembled at
the park where they were to breakfast The morning
was rather favourable though it had rained all night
as the clouds were then dispersing across the sky
and the sun frequently appeared They were all in high
spirits and good humour eager to be happy and determined
to submit to the greatest inconveniences and hardships
rather than be otherwise
While they were at breakfast the letters were brought in
Among the rest there was one for Colonel Brandonhe
took it looked at the direction changed colour
and immediately left the room
What is the matter with Brandon said Sir John
Nobody could tell
I hope he has had no bad news said Lady Middleton
It must be something extraordinary that could make Colonel
Brandon leave my breakfast table so suddenly
In about five minutes he returned
No bad news Colonel I hope said Mrs Jennings
as soon as he entered the room
None at all maam I thank you
Was it from Avignon I hope it is not to say
that your sister is worse
No maam It came from town and is merely
a letter of business
But how came the hand to discompose you so much
if it was only a letter of business Come come
this wont do Colonel so let us hear the truth of it
My dear madam said Lady Middleton recollect what
you are saying
Perhaps it is to tell you that your cousin Fanny
is married said Mrs Jennings without attending
to her daughters reproof
No indeed it is not
Well then I know who it is from Colonel And I
hope she is well
Whom do you mean maam said he colouring a little
Oh you know who I mean
I am particularly sorry maam said he
addressing Lady Middleton that I should receive this
letter today for it is on business which requires
my immediate attendance in town
In town cried Mrs Jennings What can you
have to do in town at this time of year
My own loss is great be continued in being obliged
to leave so agreeable a party but I am the more concerned
as I fear my presence is necessary to gain your admittance
at Whitwell
What a blow upon them all was this
But if you write a note to the housekeeper Mr Brandon
said Marianne eagerly will it not be sufficient
He shook his head
We must go said Sir JohnIt shall not be put
off when we are so near it You cannot go to town till
tomorrow Brandon that is all
I wish it could be so easily settled But it
is not in my power to delay my journey for one day
If you would but let us know what your business is
said Mrs Jennings we might see whether it could be put
off or not
You would not be six hours later said Willoughby
if you were to defer your journey till our return
I cannot afford to lose ONE hour
Elinor then heard Willoughby say in a low voice to Marianne
There are some people who cannot bear a party of pleasure
Brandon is one of them He was afraid of catching cold
I dare say and invented this trick for getting out of it
I would lay fifty guineas the letter was of his own writing
I have no doubt of it replied Marianne
There is no persuading you to change your mind
Brandon I know of old said Sir John when once you
are determined on anything But however I hope you
will think better of it Consider here are the two Miss
Careys come over from Newton the three Miss Dashwoods
walked up from the cottage and Mr Willoughby got up
two hours before his usual time on purpose to go to Whitwell
Colonel Brandon again repeated his sorrow at being
the cause of disappointing the party but at the same
time declared it to be unavoidable
Well then when will you come back again
I hope we shall see you at Barton added her ladyship
as soon as you can conveniently leave town and we must
put off the party to Whitwell till you return
You are very obliging But it is so uncertain
when I may have it in my power to return that I dare
not engage for it at all
Oh he must and shall come back cried Sir John
If he is not here by the end of the week I shall go
after him
Ay so do Sir John cried Mrs Jennings and then
perhaps you may find out what his business is
I do not want to pry into other mens concerns
I suppose it is something he is ashamed of
Colonel Brandons horses were announced
You do not go to town on horseback do you
added Sir John
No Only to Honiton I shall then go post
Well as you are resolved to go I wish you
a good journey But you had better change your mind
I assure you it is not in my power
He then took leave of the whole party
Is there no chance of my seeing you and your sisters
in town this winter Miss Dashwood
I am afraid none at all
Then I must bid you farewell for a longer time
than I should wish to do
To Marianne he merely bowed and said nothing
Come Colonel said Mrs Jennings before you go
do let us know what you are going about
He wished her a good morning and attended by Sir John
left the room
The complaints and lamentations which politeness
had hitherto restrained now burst forth universally
and they all agreed again and again how provoking it was
to be so disappointed
I can guess what his business is however
said Mrs Jennings exultingly
Can you maam said almost every body
Yes it is about Miss Williams I am sure
And who is Miss Williams asked Marianne
What do not you know who Miss Williams is I am
sure you must have heard of her before She is a relation
of the Colonels my dear a very near relation We will
not say how near for fear of shocking the young ladies
Then lowering her voice a little she said to Elinor
She is his natural daughter
Indeed
Oh yes and as like him as she can stare
I dare say the Colonel will leave her all his fortune
When Sir John returned he joined most heartily
in the general regret on so unfortunate an event
concluding however by observing that as they were
all got together they must do something by way of
being happy and after some consultation it was agreed
that although happiness could only be enjoyed at Whitwell
they might procure a tolerable composure of mind by driving
about the country The carriages were then ordered
Willoughbys was first and Marianne never looked
happier than when she got into it He drove through
the park very fast and they were soon out of sight
and nothing more of them was seen till their return
which did not happen till after the return of all the rest
They both seemed delighted with their drive but said
only in general terms that they had kept in the lanes
while the others went on the downs
It was settled that there should be a dance in the evening
and that every body should be extremely merry all day long
Some more of the Careys came to dinner and they had the
pleasure of sitting down nearly twenty to table which Sir
John observed with great contentment Willoughby took
his usual place between the two elder Miss Dashwoods
Mrs Jennings sat on Elinors right hand and they had not
been long seated before she leant behind her and Willoughby
and said to Marianne loud enough for them both to hear
I have found you out in spite of all your tricks
I know where you spent the morning
Marianne coloured and replied very hastily
Where pray
Did not you know said Willoughby that we had
been out in my curricle
Yes yes Mr Impudence I know that very well
and I was determined to find out WHERE you had been to
I hope you like your house Miss Marianne It is a very
large one I know and when I come to see you I hope you
will have newfurnished it for it wanted it very much
when I was there six years ago
Marianne turned away in great confusion
Mrs Jennings laughed heartily and Elinor found that in her
resolution to know where they had been she had actually
made her own woman enquire of Mr Willoughbys groom
and that she had by that method been informed that they
had gone to Allenham and spent a considerable time there
in walking about the garden and going all over the house
Elinor could hardly believe this to be true
as it seemed very unlikely that Willoughby should propose
or Marianne consent to enter the house while Mrs Smith was
in it with whom Marianne had not the smallest acquaintance
As soon as they left the diningroom Elinor enquired
of her about it and great was her surprise when she
found that every circumstance related by Mrs Jennings
was perfectly true Marianne was quite angry with her
for doubting it
Why should you imagine Elinor that we did not
go there or that we did not see the house Is not it
what you have often wished to do yourself
Yes Marianne but I would not go while Mrs Smith
was there and with no other companion than Mr Willoughby
Mr Willoughby however is the only person who can
have a right to shew that house and as he went in an open
carriage it was impossible to have any other companion
I never spent a pleasanter morning in my life
I am afraid replied Elinor that the pleasantness
of an employment does not always evince its propriety
On the contrary nothing can be a stronger proof
of it Elinor for if there had been any real impropriety
in what I did I should have been sensible of it at
the time for we always know when we are acting wrong
and with such a conviction I could have had no pleasure
But my dear Marianne as it has already exposed you
to some very impertinent remarks do you not now begin
to doubt the discretion of your own conduct
If the impertinent remarks of Mrs Jennings are
to be the proof of impropriety in conduct we are all
offending every moment of our lives I value not her
censure any more than I should do her commendation
I am not sensible of having done anything wrong in walking
over Mrs Smiths grounds or in seeing her house
They will one day be Mr Willoughbys and
If they were one day to be your own Marianne
you would not be justified in what you have done
She blushed at this hint but it was even visibly
gratifying to her and after a ten minutes interval of
earnest thought she came to her sister again and said
with great good humour Perhaps Elinor it WAS rather
illjudged in me to go to Allenham but Mr Willoughby wanted
particularly to shew me the place and it is a charming house
I assure youThere is one remarkably pretty sitting room
up stairs of a nice comfortable size for constant use
and with modern furniture it would be delightful
It is a corner room and has windows on two sides
On one side you look across the bowlinggreen behind
the house to a beautiful hanging wood and on the other you
have a view of the church and village and beyond them
of those fine bold hills that we have so often admired
I did not see it to advantage for nothing could be
more forlorn than the furniturebut if it were newly
fitted upa couple of hundred pounds Willoughby says
would make it one of the pleasantest summerrooms
in England
Could Elinor have listened to her without interruption
from the others she would have described every room
in the house with equal delight
CHAPTER 14
The sudden termination of Colonel Brandons visit
at the park with his steadiness in concealing its cause
filled the mind and raised the wonder of Mrs Jennings
for two or three days she was a great wonderer as every
one must be who takes a very lively interest in all the
comings and goings of all their acquaintance She wondered
with little intermission what could be the reason of it
was sure there must be some bad news and thought over
every kind of distress that could have befallen him
with a fixed determination that he should not escape
them all
Something very melancholy must be the matter
I am sure said she I could see it in his face
Poor man I am afraid his circumstances may be bad
The estate at Delaford was never reckoned more than two thousand
a year and his brother left everything sadly involved
I do think he must have been sent for about money matters
for what else can it be I wonder whether it is so
I would give anything to know the truth of it Perhaps it
is about Miss Williams and by the bye I dare say it is
because he looked so conscious when I mentioned her
May be she is ill in town nothing in the world more likely
for I have a notion she is always rather sickly
I would lay any wager it is about Miss Williams
It is not so very likely he should be distressed in
his circumstances NOW for he is a very prudent man
and to be sure must have cleared the estate by this time
I wonder what it can be May be his sister is worse
at Avignon and has sent for him over His setting off
in such a hurry seems very like it Well I wish him out
of all his trouble with all my heart and a good wife into
the bargain
So wondered so talked Mrs Jennings Her opinion
varying with every fresh conjecture and all seeming
equally probable as they arose Elinor though she felt
really interested in the welfare of Colonel Brandon
could not bestow all the wonder on his going so suddenly
away which Mrs Jennings was desirous of her feeling
for besides that the circumstance did not in her opinion
justify such lasting amazement or variety of speculation
her wonder was otherwise disposed of It was engrossed
by the extraordinary silence of her sister and Willoughby
on the subject which they must know to be peculiarly
interesting to them all As this silence continued
every day made it appear more strange and more incompatible
with the disposition of both Why they should not openly
acknowledge to her mother and herself what their constant
behaviour to each other declared to have taken place
Elinor could not imagine
She could easily conceive that marriage might not
be immediately in their power for though Willoughby
was independent there was no reason to believe him rich
His estate had been rated by Sir John at about six or seven
hundred a year but he lived at an expense to which that income
could hardly be equal and he had himself often complained
of his poverty But for this strange kind of secrecy
maintained by them relative to their engagement which
in fact concealed nothing at all she could not account
and it was so wholly contradictory to their general
opinions and practice that a doubt sometimes entered
her mind of their being really engaged and this doubt
was enough to prevent her making any inquiry of Marianne
Nothing could be more expressive of attachment
to them all than Willoughbys behaviour To Marianne
it had all the distinguishing tenderness which a lovers
heart could give and to the rest of the family it was the
affectionate attention of a son and a brother The cottage
seemed to be considered and loved by him as his home
many more of his hours were spent there than at Allenham
and if no general engagement collected them at the park
the exercise which called him out in the morning was
almost certain of ending there where the rest of the day
was spent by himself at the side of Marianne and by his
favourite pointer at her feet
One evening in particular about a week after
Colonel Brandon left the country his heart seemed
more than usually open to every feeling of attachment
to the objects around him and on Mrs Dashwoods
happening to mention her design of improving the cottage
in the spring he warmly opposed every alteration
of a place which affection had established as perfect with him
What he exclaimedImprove this dear cottage
No THAT I will never consent to Not a stone must
be added to its walls not an inch to its size
if my feelings are regarded
Do not be alarmed said Miss Dashwood
nothing of the kind will be done for my mother
will never have money enough to attempt it
I am heartily glad of it he cried May she
always be poor if she can employ her riches no better
Thank you Willoughby But you may be assured that I
would not sacrifice one sentiment of local attachment
of yours or of any one whom I loved for all the improvements
in the world Depend upon it that whatever unemployed
sum may remain when I make up my accounts in the spring
I would even rather lay it uselessly by than dispose
of it in a manner so painful to you But are you really
so attached to this place as to see no defect in it
I am said he To me it is faultless Nay more
I consider it as the only form of building in which happiness
is attainable and were I rich enough I would instantly pull
Combe down and build it up again in the exact plan of this
cottage
With dark narrow stairs and a kitchen that smokes
I suppose said Elinor
Yes cried he in the same eager tone with all
and every thing belonging to itin no one convenience
or INconvenience about it should the least variation
be perceptible Then and then only under such a roof I
might perhaps be as happy at Combe as I have been at Barton
I flatter myself replied Elinor that even under
the disadvantage of better rooms and a broader staircase
you will hereafter find your own house as faultless as you
now do this
There certainly are circumstances said Willoughby
which might greatly endear it to me but this place will
always have one claim of my affection which no other can
possibly share
Mrs Dashwood looked with pleasure at Marianne
whose fine eyes were fixed so expressively on Willoughby
as plainly denoted how well she understood him
How often did I wish added he when I was at
Allenham this time twelvemonth that Barton cottage were
inhabited I never passed within view of it without admiring
its situation and grieving that no one should live in it
How little did I then think that the very first news
I should hear from Mrs Smith when I next came into
the country would be that Barton cottage was taken and I
felt an immediate satisfaction and interest in the event
which nothing but a kind of prescience of what happiness I
should experience from it can account for Must it not have
been so Marianne speaking to her in a lowered voice
Then continuing his former tone he said And yet this
house you would spoil Mrs Dashwood You would rob it
of its simplicity by imaginary improvement and this dear
parlour in which our acquaintance first began and in which
so many happy hours have been since spent by us together
you would degrade to the condition of a common entrance
and every body would be eager to pass through the room
which has hitherto contained within itself more real
accommodation and comfort than any other apartment of
the handsomest dimensions in the world could possibly afford
Mrs Dashwood again assured him that no alteration
of the kind should be attempted
You are a good woman he warmly replied
Your promise makes me easy Extend it a little farther
and it will make me happy Tell me that not only your
house will remain the same but that I shall ever find
you and yours as unchanged as your dwelling and that you
will always consider me with the kindness which has made
everything belonging to you so dear to me
The promise was readily given and Willoughbys
behaviour during the whole of the evening declared
at once his affection and happiness
Shall we see you tomorrow to dinner said Mrs Dashwood
when he was leaving them I do not ask you to come in
the morning for we must walk to the park to call on Lady
Middleton
He engaged to be with them by four oclock
CHAPTER 15
Mrs Dashwoods visit to Lady Middleton took place
the next day and two of her daughters went with her
but Marianne excused herself from being of the party
under some trifling pretext of employment and her mother
who concluded that a promise had been made by Willoughby
the night before of calling on her while they were absent
was perfectly satisfied with her remaining at home
On their return from the park they found Willoughbys
curricle and servant in waiting at the cottage
and Mrs Dashwood was convinced that her conjecture
had been just So far it was all as she had foreseen
but on entering the house she beheld what no foresight
had taught her to expect They were no sooner in the
passage than Marianne came hastily out of the parlour
apparently in violent affliction with her handkerchief
at her eyes and without noticing them ran up stairs
Surprised and alarmed they proceeded directly into the room
she had just quitted where they found only Willoughby
who was leaning against the mantelpiece with his back
towards them He turned round on their coming in
and his countenance shewed that he strongly partook
of the emotion which overpowered Marianne
Is anything the matter with her cried Mrs Dashwood
as she enteredis she ill
I hope not he replied trying to look cheerful
and with a forced smile presently added It is I who may
rather expect to be illfor I am now suffering under a
very heavy disappointment
Disappointment
Yes for I am unable to keep my engagement with you
Mrs Smith has this morning exercised the privilege
of riches upon a poor dependent cousin by sending me on
business to London I have just received my dispatches
and taken my farewell of Allenham and by way of exhilaration
I am now come to take my farewell of you
To Londonand are you going this morning
Almost this moment
This is very unfortunate But Mrs Smith must
be obligedand her business will not detain you from
us long I hope
He coloured as he replied You are very kind but I
have no idea of returning into Devonshire immediately
My visits to Mrs Smith are never repeated within
the twelvemonth
And is Mrs Smith your only friend Is Allenham the only
house in the neighbourhood to which you will be welcome
For shame Willoughby can you wait for an invitation here
His colour increased and with his eyes fixed
on the ground he only replied You are too good
Mrs Dashwood looked at Elinor with surprise
Elinor felt equal amazement For a few moments every one
was silent Mrs Dashwood first spoke
I have only to add my dear Willoughby that at
Barton cottage you will always be welcome for I will not
press you to return here immediately because you only
can judge how far THAT might be pleasing to Mrs Smith
and on this head I shall be no more disposed to question
your judgment than to doubt your inclination
My engagements at present replied Willoughby
confusedly are of such a naturethatI dare not flatter
myself
He stopt Mrs Dashwood was too much astonished
to speak and another pause succeeded This was broken
by Willoughby who said with a faint smile It is folly
to linger in this manner I will not torment myself
any longer by remaining among friends whose society
it is impossible for me now to enjoy
He then hastily took leave of them all and left
the room They saw him step into his carriage
and in a minute it was out of sight
Mrs Dashwood felt too much for speech and instantly
quitted the parlour to give way in solitude to the concern
and alarm which this sudden departure occasioned
Elinors uneasiness was at least equal to her mothers
She thought of what had just passed with anxiety and distrust
Willoughbys behaviour in taking leave of them his
embarrassment
and affectation of cheerfulness and above all his
unwillingness
to accept her mothers invitation a backwardness so unlike a
lover
so unlike himself greatly disturbed her One moment she feared
that no serious design had ever been formed on his side and the
next that some unfortunate quarrel had taken place between him
and
her sisterthe distress in which Marianne had quitted the room
was such as a serious quarrel could most reasonably account for
though when she considered what Mariannes love for him was
a quarrel seemed almost impossible
But whatever might be the particulars of their separation
her sisters affliction was indubitable and she thought
with the tenderest compassion of that violent sorrow
which Marianne was in all probability not merely giving
way to as a relief but feeding and encouraging as a duty
In about half an hour her mother returned and though
her eyes were red her countenance was not uncheerful
Our dear Willoughby is now some miles from Barton Elinor
said she as she sat down to work and with how heavy a heart
does he travel
It is all very strange So suddenly to be gone It
seems but the work of a moment And last night he was
with us so happy so cheerful so affectionate And now
after only ten minutes noticeGone too without intending
to returnSomething more than what be owned to us must
have happened He did not speak he did not behave
like himself YOU must have seen the difference as well as I
What can it be Can they have quarrelled Why else should he
have shewn such unwillingness to accept your invitation here
It was not inclination that he wanted Elinor I could
plainly see THAT He had not the power of accepting it
I have thought it all over I assure you and I can
perfectly account for every thing that at first seemed
strange to me as well as to you
Can you indeed
Yes I have explained it to myself in the most
satisfactory waybut you Elinor who love to doubt
where you canit will not satisfy YOU I know but you
shall not talk ME out of my trust in it I am persuaded
that Mrs Smith suspects his regard for Marianne
disapproves of it perhaps because she has other views
for him and on that account is eager to get him away
and that the business which she sends him off to transact
is invented as an excuse to dismiss him This is what I
believe to have happened He is moreover aware that she
DOES disapprove the connection he dares not therefore
at present confess to her his engagement with Marianne
and he feels himself obliged from his dependent situation
to give into her schemes and absent himself from
Devonshire for a while You will tell me I know
that this may or may NOT have happened but I will listen
to no cavil unless you can point out any other method
of understanding the affair as satisfactory at this
And now Elinor what have you to say
Nothing for you have anticipated my answer
Then you would have told me that it might or might not
have happened Oh Elinor how incomprehensible are your
feelings You had rather take evil upon credit than good
You had rather look out for misery for Marianne and guilt
for poor Willoughby than an apology for the latter
You are resolved to think him blameable because he took
leave of us with less affection than his usual behaviour
has shewn And is no allowance to be made for inadvertence
or for spirits depressed by recent disappointment Are
no probabilities to be accepted merely because they
are not certainties Is nothing due to the man whom we
have all such reason to love and no reason in the world
to think ill of To the possibility of motives unanswerable
in themselves though unavoidably secret for a while And
after all what is it you suspect him of
I can hardly tell myself But suspicion of
something unpleasant is the inevitable consequence
of such an alteration as we just witnessed in him
There is great truth however in what you have now urged
of the allowances which ought to be made for him and it
is my wish to be candid in my judgment of every body
Willoughby may undoubtedly have very sufficient
reasons for his conduct and I will hope that he has
But it would have been more like Willoughby to acknowledge
them at once Secrecy may be advisable but still I
cannot help wondering at its being practiced by him
Do not blame him however for departing from
his character where the deviation is necessary
But you really do admit the justice of what I have said
in his defenceI am happyand he is acquitted
Not entirely It may be proper to conceal their
engagement if they ARE engaged from Mrs Smith
and if that is the case it must be highly expedient
for Willoughby to be but little in Devonshire at present
But this is no excuse for their concealing it from us
Concealing it from us my dear child do you accuse
Willoughby and Marianne of concealment This is strange
indeed when your eyes have been reproaching them every day
for incautiousness
I want no proof of their affection said Elinor
but of their engagement I do
I am perfectly satisfied of both
Yet not a syllable has been said to you on the
subject by either of them
I have not wanted syllables where actions have
spoken so plainly Has not his behaviour to Marianne
and to all of us for at least the last fortnight
declared that he loved and considered her as his future wife
and that he felt for us the attachment of the nearest
relation Have we not perfectly understood each other
Has not my consent been daily asked by his looks his manner
his attentive and affectionate respect My Elinor
is it possible to doubt their engagement How could
such a thought occur to you How is it to be supposed
that Willoughby persuaded as he must be of your
sisters love should leave her and leave her perhaps
for months without telling her of his affectionthat
they should part without a mutual exchange of confidence
I confess replied Elinor that every circumstance
except ONE is in favour of their engagement
but that ONE is the total silence of both on the subject
and with me it almost outweighs every other
How strange this is You must think wretchedly indeed
of Willoughby if after all that has openly passed between them
you can doubt the nature of the terms on which they are together
Has he been acting a part in his behaviour to your sister
all this time Do you suppose him really indifferent to her
No I cannot think that He must and does love her
I am sure
But with a strange kind of tenderness if he can
leave her with such indifference such carelessness
of the future as you attribute to him
You must remember my dear mother that I have never
considered this matter as certain I have had my doubts
I confess but they are fainter than they were and they
may soon be entirely done away If we find they correspond
every fear of mine will be removed
A mighty concession indeed If you were to see
them at the altar you would suppose they were going to
be married Ungracious girl But I require no such proof
Nothing in my opinion has ever passed to justify doubt
no secrecy has been attempted all has been uniformly open
and unreserved You cannot doubt your sisters wishes
It must be Willoughby therefore whom you suspect But why
Is he not a man of honour and feeling Has there been any
inconsistency on his side to create alarm can he be deceitful
I hope not I believe not cried Elinor
I love Willoughby sincerely love him and suspicion of his
integrity cannot be more painful to yourself than to me
It has been involuntary and I will not encourage it
I was startled I confess by the alteration in his
manners this morninghe did not speak like himself
and did not return your kindness with any cordiality
But all this may be explained by such a situation of his
affairs as you have supposed He had just parted from
my sister had seen her leave him in the greatest affliction
and if he felt obliged from a fear of offending Mrs Smith
to resist the temptation of returning here soon and yet
aware that by declining your invitation by saying
that he was going away for some time he should seem
to act an ungenerous a suspicious part by our family
be might well be embarrassed and disturbed In such a case
a plain and open avowal of his difficulties would have been
more to his honour I think as well as more consistent
with his general characterbut I will not raise objections
against any ones conduct on so illiberal a foundation
as a difference in judgment from myself or a deviation from
what I may think right and consistent
You speak very properly Willoughby certainly does
not deserve to be suspected Though WE have not known
him long he is no stranger in this part of the world
and who has ever spoken to his disadvantage Had he been
in a situation to act independently and marry immediately
it might have been odd that he should leave us without
acknowledging everything to me at once but this is not the case
It is an engagement in some respects not prosperously begun
for their marriage must be at a very uncertain distance
and even secrecy as far as it can be observed may now
be very advisable
They were interrupted by the entrance of Margaret
and Elinor was then at liberty to think over the representations
of her mother to acknowledge the probability of many
and hope for the justice of all
They saw nothing of Marianne till dinner time
when she entered the room and took her place at the table
without saying a word Her eyes were red and swollen
and it seemed as if her tears were even then restrained
with difficulty She avoided the looks of them all
could neither eat nor speak and after some time on her
mothers silently pressing her hand with tender compassion
her small degree of fortitude was quite overcome she burst
into tears and left the room
This violent oppression of spirits continued the
whole evening She was without any power because she
was without any desire of command over herself
The slightest mention of anything relative to Willoughby
overpowered her in an instant and though her family
were most anxiously attentive to her comfort it was
impossible for them if they spoke at all to keep clear
of every subject which her feelings connected with him
CHAPTER 16
Marianne would have thought herself very inexcusable
had she been able to sleep at all the first night
after parting from Willoughby She would have been
ashamed to look her family in the face the next morning
had she not risen from her bed in more need of repose
than when she lay down in it But the feelings which
made such composure a disgrace left her in no danger
of incurring it She was awake the whole night and she
wept the greatest part of it She got up with a headache
was unable to talk and unwilling to take any nourishment
giving pain every moment to her mother and sisters
and forbidding all attempt at consolation from either
Her sensibility was potent enough
When breakfast was over she walked out by herself
and wandered about the village of Allenham indulging the
recollection of past enjoyment and crying over the present
reverse for the chief of the morning
The evening passed off in the equal indulgence of feeling
She played over every favourite song that she had been used
to play to Willoughby every air in which their voices
had been oftenest joined and sat at the instrument gazing
on every line of music that he had written out for her
till her heart was so heavy that no farther sadness
could be gained and this nourishment of grief was every
day applied She spent whole hours at the pianoforte
alternately singing and crying her voice often totally
suspended by her tears In books too as well as in music
she courted the misery which a contrast between the past
and present was certain of giving She read nothing
but what they had been used to read together
Such violence of affliction indeed could not be supported
for ever it sunk within a few days into a calmer melancholy
but these employments to which she daily recurred
her solitary walks and silent meditations still produced
occasional effusions of sorrow as lively as ever
No letter from Willoughby came and none seemed expected
by Marianne Her mother was surprised and Elinor again
became uneasy But Mrs Dashwood could find explanations
whenever she wanted them which at least satisfied herself
Remember Elinor said she how very often Sir John
fetches our letters himself from the post and carries them
to it We have already agreed that secrecy may be necessary
and we must acknowledge that it could not be maintained if
their correspondence were to pass through Sir Johns hands
Elinor could not deny the truth of this and she tried
to find in it a motive sufficient for their silence
But there was one method so direct so simple and in
her opinion so eligible of knowing the real state
of the affair and of instantly removing all mystery
that she could not help suggesting it to her mother
Why do you not ask Marianne at once said she
whether she is or she is not engaged to Willoughby From you
her mother and so kind so indulgent a mother the question
could not give offence It would be the natural result
of your affection for her She used to be all unreserve
and to you more especially
I would not ask such a question for the world
Supposing it possible that they are not engaged
what distress would not such an enquiry inflict At any
rate it would be most ungenerous I should never deserve
her confidence again after forcing from her a confession
of what is meant at present to be unacknowledged to any one
I know Mariannes heart I know that she dearly loves me
and that I shall not be the last to whom the affair is made
known
when circumstances make the revealment of it eligible
I would not attempt to force the confidence of any one
of a child much less because a sense of duty would prevent
the denial which her wishes might direct
Elinor thought this generosity overstrained
considering her sisters youth and urged the matter farther
but in vain common sense common care common prudence
were all sunk in Mrs Dashwoods romantic delicacy
It was several days before Willoughbys name
was mentioned before Marianne by any of her family
Sir John and Mrs Jennings indeed were not so nice
their witticisms added pain to many a painful hour
but one evening Mrs Dashwood accidentally taking up a
volume of Shakespeare exclaimed
We have never finished Hamlet Marianne our dear
Willoughby went away before we could get through it
We will put it by that when he comes againBut it may
be months perhaps before THAT happens
Months cried Marianne with strong surprise
Nonor many weeks
Mrs Dashwood was sorry for what she had said
but it gave Elinor pleasure as it produced a reply
from Marianne so expressive of confidence in Willoughby
and knowledge of his intentions
One morning about a week after his leaving the country
Marianne was prevailed on to join her sisters in their
usual walk instead of wandering away by herself
Hitherto she had carefully avoided every companion in
her rambles If her sisters intended to walk on the downs
she directly stole away towards the lanes if they talked
of the valley she was as speedy in climbing the hills
and could never be found when the others set off
But at length she was secured by the exertions of Elinor
who greatly disapproved such continual seclusion They walked
along the road through the valley and chiefly in silence
for Mariannes MIND could not be controlled and Elinor
satisfied with gaining one point would not then attempt more
Beyond the entrance of the valley where the country
though still rich was less wild and more open a long
stretch of the road which they had travelled on first coming
to Barton lay before them and on reaching that point
they stopped to look around them and examine a prospect
which formed the distance of their view from the cottage
from a spot which they had never happened to reach in any
of their walks before
Amongst the objects in the scene they soon discovered
an animated one it was a man on horseback riding towards them
In a few minutes they could distinguish him to be a gentleman
and in a moment afterwards Marianne rapturously exclaimed
It is he it is indeedI know it isand was
hastening to meet him when Elinor cried out
Indeed Marianne I think you are mistaken It is
not Willoughby The person is not tall enough for him
and has not his air
He has he has cried Marianne I am sure he has
His air his coat his horse I knew how soon he would come
She walked eagerly on as she spoke and Elinor
to screen Marianne from particularity as she felt almost
certain of its not being Willoughby quickened her
pace and kept up with her They were soon within
thirty yards of the gentleman Marianne looked again
her heart sunk within her and abruptly turning round
she was hurrying back when the voices of both her sisters
were raised to detain her a third almost as well known
as Willoughbys joined them in begging her to stop
and she turned round with surprise to see and welcome
Edward Ferrars
He was the only person in the world who could
at that moment be forgiven for not being Willoughby
the only one who could have gained a smile from her
but she dispersed her tears to smile on HIM and in her
sisters happiness forgot for a time her own disappointment
He dismounted and giving his horse to his servant
walked back with them to Barton whither he was purposely
coming to visit them
He was welcomed by them all with great cordiality
but especially by Marianne who showed more warmth of
regard in her reception of him than even Elinor herself
To Marianne indeed the meeting between Edward and her sister
was but a continuation of that unaccountable coldness which she
had often observed at Norland in their mutual behaviour
On Edwards side more particularly there was a deficiency
of all that a lover ought to look and say on such an occasion
He was confused seemed scarcely sensible of pleasure
in seeing them looked neither rapturous nor gay
said little but what was forced from him by questions
and distinguished Elinor by no mark of affection
Marianne saw and listened with increasing surprise
She began almost to feel a dislike of Edward and it ended
as every feeling must end with her by carrying back her
thoughts to Willoughby whose manners formed a contrast
sufficiently striking to those of his brother elect
After a short silence which succeeded the first
surprise and enquiries of meeting Marianne asked
Edward if he came directly from London No he had
been in Devonshire a fortnight
A fortnight she repeated surprised at his being
so long in the same county with Elinor without seeing
her before
He looked rather distressed as he added that he
had been staying with some friends near Plymouth
Have you been lately in Sussex said Elinor
I was at Norland about a month ago
And how does dear dear Norland look cried Marianne
Dear dear Norland said Elinor probably looks
much as it always does at this time of the year
The woods and walks thickly covered with dead leaves
Oh cried Marianne with what transporting sensation
have I formerly seen them fall How have I delighted
as I walked to see them driven in showers about me
by the wind What feelings have they the season the air
altogether inspired Now there is no one to regard them
They are seen only as a nuisance swept hastily off
and driven as much as possible from the sight
It is not every one said Elinor who has your
passion for dead leaves
No my feelings are not often shared not often
understood But SOMETIMES they areAs she said this
she sunk into a reverie for a few momentsbut rousing
herself again Now Edward said she calling his attention
to the prospect here is Barton valley Look up to it
and be tranquil if you can Look at those hills
Did you ever see their equals To the left is Barton park
amongst those woods and plantations You may see the end
of the house And there beneath that farthest hill
which rises with such grandeur is our cottage
It is a beautiful country he replied but these
bottoms must be dirty in winter
How can you think of dirt with such objects before you
Because replied he smiling among the rest of the
objects before me I see a very dirty lane
How strange said Marianne to herself as she walked on
Have you an agreeable neighbourhood here Are the
Middletons pleasant people
No not all answered Marianne we could not
be more unfortunately situated
Marianne cried her sister how can you say so How can
you be so unjust They are a very respectable family Mr
Ferrars
and towards us have behaved in the friendliest manner Have you
forgot Marianne how many pleasant days we have owed to them
No said Marianne in a low voice nor how many
painful moments
Elinor took no notice of this and directing
her attention to their visitor endeavoured to support
something like discourse with him by talking of their
present residence its conveniences c extorting from him
occasional questions and remarks His coldness and reserve
mortified her severely she was vexed and half angry
but resolving to regulate her behaviour to him by the past
rather than the present she avoided every appearance
of resentment or displeasure and treated him as she
thought he ought to be treated from the family connection
CHAPTER 17
Mrs Dashwood was surprised only for a moment at
seeing him for his coming to Barton was in her opinion
of all things the most natural Her joy and expression
of regard long outlived her wonder He received the kindest
welcome from her and shyness coldness reserve could not
stand against such a reception They had begun to fail him
before he entered the house and they were quite overcome
by the captivating manners of Mrs Dashwood Indeed a man
could not very well be in love with either of her daughters
without extending the passion to her and Elinor had the
satisfaction of seeing him soon become more like himself
His affections seemed to reanimate towards them all
and his interest in their welfare again became perceptible
He was not in spirits however he praised their house
admired its prospect was attentive and kind but still
he was not in spirits The whole family perceived it
and Mrs Dashwood attributing it to some want of liberality
in his mother sat down to table indignant against all
selfish parents
What are Mrs Ferrarss views for you at present Edward
said she when dinner was over and they had drawn round
the fire are you still to be a great orator in spite of
yourself
No I hope my mother is now convinced that I have
no more talents than inclination for a public life
But how is your fame to be established for famous you
must be to satisfy all your family and with no inclination
for expense no affection for strangers no profession
and no assurance you may find it a difficult matter
I shall not attempt it I have no wish to be
distinguished and have every reason to hope I never shall
Thank Heaven I cannot be forced into genius and eloquence
You have no ambition I well know Your wishes
are all moderate
As moderate as those of the rest of the world
I believe I wish as well as every body else to be
perfectly happy but like every body else it must be
in my own way Greatness will not make me so
Strange that it would cried Marianne What have
wealth or grandeur to do with happiness
Grandeur has but little said Elinor but wealth
has much to do with it
Elinor for shame said Marianne money can only
give happiness where there is nothing else to give it
Beyond a competence it can afford no real satisfaction
as far as mere self is concerned
Perhaps said Elinor smiling we may come
to the same point YOUR competence and MY wealth
are very much alike I dare say and without them
as the world goes now we shall both agree that every
kind of external comfort must be wanting Your ideas
are only more noble than mine Come what is your competence
About eighteen hundred or two thousand a year
not more than THAT
Elinor laughed TWO thousand a year ONE is my
wealth I guessed how it would end
And yet two thousand ayear is a very moderate income
said Marianne A family cannot well be maintained on
a smaller I am sure I am not extravagant in my demands
A proper establishment of servants a carriage perhaps two
and hunters cannot be supported on less
Elinor smiled again to hear her sister describing
so accurately their future expenses at Combe Magna
Hunters repeated Edwardbut why must you have
hunters Every body does not hunt
Marianne coloured as she replied But most people do
I wish said Margaret striking out a novel thought
that somebody would give us all a large fortune apiece
Oh that they would cried Marianne her eyes
sparkling with animation and her cheeks glowing
with the delight of such imaginary happiness
We are all unanimous in that wish I suppose
said Elinor in spite of the insufficiency of wealth
Oh dear cried Margaret how happy I should be
I wonder what I should do with it
Marianne looked as if she had no doubt on that point
I should be puzzled to spend so large a fortune myself
said Mrs Dashwood if my children were all to be rich
my help
You must begin your improvements on this house
observed Elinor and your difficulties will soon vanish
What magnificent orders would travel from this family
to London said Edward in such an event What a happy
day for booksellers musicsellers and printshops You
Miss Dashwood would give a general commission for every
new print of merit to be sent youand as for Marianne
I know her greatness of soul there would not be music enough
in London to content her And booksThomson Cowper
Scottshe would buy them all over and over again she
would buy up every copy I believe to prevent their
falling into unworthy hands and she would have every
book that tells her how to admire an old twisted tree
Should not you Marianne Forgive me if I am very saucy
But I was willing to shew you that I had not forgot our
old disputes
I love to be reminded of the past Edwardwhether it
be melancholy or gay I love to recall itand you
will never offend me by talking of former times
You are very right in supposing how my money would be
spentsome of it at leastmy loose cash would certainly
be employed in improving my collection of music and books
And the bulk of your fortune would be laid out
in annuities on the authors or their heirs
No Edward I should have something else to do
with it
Perhaps then you would bestow it as a reward on that
person who wrote the ablest defence of your favourite maxim
that no one can ever be in love more than once in their
lifeyour opinion on that point is unchanged I presume
Undoubtedly At my time of life opinions are tolerably fixed
It is not likely that I should now see or hear any thing to
change them
Marianne is as steadfast as ever you see said Elinor
she is not at all altered
She is only grown a little more grave than she was
Nay Edward said Marianne you need not reproach me
You are not very gay yourself
Why should you think so replied he with a sigh
But gaiety never was a part of MY character
Nor do I think it a part of Mariannes said Elinor
I should hardly call her a lively girlshe is very earnest
very eager in all she doessometimes talks a great deal
and always with animationbut she is not often really merry
I believe you are right he replied and yet I
have always set her down as a lively girl
I have frequently detected myself in such kind of mistakes
said Elinor in a total misapprehension of character in some
point or other fancying people so much more gay or grave
or ingenious or stupid than they really are and I can
hardly tell why or in what the deception originated
Sometimes one is guided by what they say of themselves
and very frequently by what other people say of them
without giving oneself time to deliberate and judge
But I thought it was right Elinor said Marianne
to be guided wholly by the opinion of other people
I thought our judgments were given us merely to be subservient
to those of neighbours This has always been your doctrine
I am sure
No Marianne never My doctrine has never aimed
at the subjection of the understanding All I have
ever attempted to influence has been the behaviour
You must not confound my meaning I am guilty I confess
of having often wished you to treat our acquaintance
in general with greater attention but when have I advised
you to adopt their sentiments or to conform to their
judgment in serious matters
You have not been able to bring your sister over to your
plan of general civility said Edward to Elinor Do you gain
no ground
Quite the contrary replied Elinor
looking expressively at Marianne
My judgment he returned is all on your side
of the question but I am afraid my practice is much
more on your sisters I never wish to offend but I
am so foolishly shy that I often seem negligent
when I am only kept back by my natural awkwardness
I have frequently thought that I must have been intended
by nature to be fond of low company I am so little at
my ease among strangers of gentility
Marianne has not shyness to excuse any inattention
of hers said Elinor
She knows her own worth too well for false shame
replied Edward Shyness is only the effect of a sense
of inferiority in some way or other If I could persuade
myself that my manners were perfectly easy and graceful
I should not be shy
But you would still be reserved said Marianne
and that is worse
Edward startedReserved Am I reserved Marianne
Yes very
I do not understand you replied he colouring
Reservedhow in what manner What am I to tell you
What can you suppose
Elinor looked surprised at his emotion but trying
to laugh off the subject she said to him Do not you
know my sister well enough to understand what she means
Do not you know she calls every one reserved who does not
talk as fast and admire what she admires as rapturously
as herself
Edward made no answer His gravity and thoughtfulness
returned on him in their fullest extentand he sat
for some time silent and dull
CHAPTER 18
Elinor saw with great uneasiness the low spirits
of her friend His visit afforded her but a very
partial satisfaction while his own enjoyment in it
appeared so imperfect It was evident that he was unhappy
she wished it were equally evident that he still
distinguished her by the same affection which once
she had felt no doubt of inspiring but hitherto the
continuance of his preference seemed very uncertain
and the reservedness of his manner towards her contradicted
one moment what a more animated look had intimated the preceding
one
He joined her and Marianne in the breakfastroom
the next morning before the others were down and Marianne
who was always eager to promote their happiness as far
as she could soon left them to themselves But before she
was half way upstairs she heard the parlour door open and
turning round was astonished to see Edward himself come out
I am going into the village to see my horses
said be as you are not yet ready for breakfast I shall
be back again presently
Edward returned to them with fresh admiration
of the surrounding country in his walk to the village
he had seen many parts of the valley to advantage
and the village itself in a much higher situation than
the cottage afforded a general view of the whole which had
exceedingly pleased him This was a subject which ensured
Mariannes attention and she was beginning to describe
her own admiration of these scenes and to question him more
minutely on the objects that had particularly struck him
when Edward interrupted her by saying You must not
enquire too far Marianneremember I have no knowledge
in the picturesque and I shall offend you by my ignorance
and want of taste if we come to particulars I shall call
hills steep which ought to be bold surfaces strange
and uncouth which ought to be irregular and rugged
and distant objects out of sight which ought only to be
indistinct through the soft medium of a hazy atmosphere
You must be satisfied with such admiration as I can
honestly give I call it a very fine countrythe
hills are steep the woods seem full of fine timber
and the valley looks comfortable and snugwith rich
meadows and several neat farm houses scattered here
and there It exactly answers my idea of a fine country
because it unites beauty with utilityand I dare say it
is a picturesque one too because you admire it I can
easily believe it to be full of rocks and promontories
grey moss and brush wood but these are all lost on me
I know nothing of the picturesque
I am afraid it is but too true said Marianne
but why should you boast of it
I suspect said Elinor that to avoid one kind
of affectation Edward here falls into another Because he
believes many people pretend to more admiration of the beauties
of nature than they really feel and is disgusted with
such pretensions he affects greater indifference and less
discrimination in viewing them himself than he possesses
He is fastidious and will have an affectation of his own
It is very true said Marianne that admiration
of landscape scenery is become a mere jargon
Every body pretends to feel and tries to describe with
the taste and elegance of him who first defined what
picturesque beauty was I detest jargon of every kind
and sometimes I have kept my feelings to myself
because I could find no language to describe them
in but what was worn and hackneyed out of all sense and meaning
I am convinced said Edward that you really feel
all the delight in a fine prospect which you profess
to feel But in return your sister must allow me
to feel no more than I profess I like a fine prospect
but not on picturesque principles I do not like crooked
twisted blasted trees I admire them much more if they
are tall straight and flourishing I do not like ruined
tattered cottages I am not fond of nettles or thistles
or heath blossoms I have more pleasure in a snug
farmhouse than a watchtowerand a troop of tidy
happy villages please me better than the finest banditti
in the world
Marianne looked with amazement at Edward
with compassion at her sister Elinor only laughed
The subject was continued no farther and Marianne
remained thoughtfully silent till a new object suddenly
engaged her attention She was sitting by Edward and
in taking his tea from Mrs Dashwood his hand passed
so directly before her as to make a ring with a plait
of hair in the centre very conspicuous on one of his fingers
I never saw you wear a ring before Edward she cried
Is that Fannys hair I remember her promising to give
you some But I should have thought her hair had been darker
Marianne spoke inconsiderately what she really felt
but when she saw how much she had pained Edward her own
vexation at her want of thought could not be surpassed
by his He coloured very deeply and giving a momentary
glance at Elinor replied Yes it is my sisters hair
The setting always casts a different shade on it
you know
Elinor had met his eye and looked conscious likewise
That the hair was her own she instantaneously felt as
well satisfied as Marianne the only difference in their
conclusions was that what Marianne considered as a free
gift from her sister Elinor was conscious must have been
procured by some theft or contrivance unknown to herself
She was not in a humour however to regard it as an affront
and affecting to take no notice of what passed
by instantly talking of something else she internally
resolved henceforward to catch every opportunity of eyeing
the hair and of satisfying herself beyond all doubt
that it was exactly the shade of her own
Edwards embarrassment lasted some time and it
ended in an absence of mind still more settled
He was particularly grave the whole morning
Marianne severely censured herself for what she had said
but her own forgiveness might have been more speedy
had she known how little offence it had given her sister
Before the middle of the day they were visited by Sir
John and Mrs Jennings who having heard of the arrival
of a gentleman at the cottage came to take a survey
of the guest With the assistance of his motherinlaw
Sir John was not long in discovering that the name of
Ferrars began with an F and this prepared a future mine
of raillery against the devoted Elinor which nothing but
the newness of their acquaintance with Edward could have
prevented from being immediately sprung But as it was
she only learned from some very significant looks how far
their penetration founded on Margarets instructions extended
Sir John never came to the Dashwoods without either
inviting them to dine at the park the next day or to drink
tea with them that evening On the present occasion
for the better entertainment of their visitor towards
whose amusement he felt himself bound to contribute
he wished to engage them for both
You MUST drink tea with us to night said he
for we shall be quite aloneand tomorrow you must
absolutely dine with us for we shall be a large party
Mrs Jennings enforced the necessity And who knows
but you may raise a dance said she And that will
tempt YOU Miss Marianne
A dance cried Marianne Impossible Who is to dance
Who why yourselves and the Careys and Whitakers
to be sureWhat you thought nobody could dance
because a certain person that shall be nameless is gone
I wish with all my soul cried Sir John
that Willoughby were among us again
This and Mariannes blushing gave new suspicions
to Edward And who is Willoughby said he in a low voice
to Miss Dashwood by whom he was sitting
She gave him a brief reply Mariannes countenance
was more communicative Edward saw enough to comprehend
not only the meaning of others but such of Mariannes
expressions as had puzzled him before and when their
visitors left them he went immediately round her and said
in a whisper I have been guessing Shall I tell you
my guess
What do you mean
Shall I tell you
Certainly
Well then I guess that Mr Willoughby hunts
Marianne was surprised and confused yet she could
not help smiling at the quiet archness of his manner
and after a moments silence said
Oh Edward How can youBut the time will come
I hopeI am sure you will like him
I do not doubt it replied he rather astonished
at her earnestness and warmth for had he not imagined it
to be a joke for the good of her acquaintance in general
founded only on a something or a nothing between Mr Willoughby
and herself he would not have ventured to mention it
CHAPTER 19
Edward remained a week at the cottage he was earnestly
pressed by Mrs Dashwood to stay longer but as if he
were bent only on selfmortification he seemed resolved
to be gone when his enjoyment among his friends was at
the height His spirits during the last two or three days
though still very unequal were greatly improvedhe grew
more and more partial to the house and environsnever
spoke of going away without a sighdeclared his time
to be wholly disengagedeven doubted to what place he
should go when he left thembut still go he must
Never had any week passed so quicklyhe could hardly
believe it to be gone He said so repeatedly other things
he said too which marked the turn of his feelings and gave
the lie to his actions He had no pleasure at Norland
he detested being in town but either to Norland or London
he must go He valued their kindness beyond any thing
and his greatest happiness was in being with them
Yet he must leave them at the end of a week in spite
of their wishes and his own and without any restraint
on his time
Elinor placed all that was astonishing in this
way of acting to his mothers account and it was
happy for her that he had a mother whose character
was so imperfectly known to her as to be the general
excuse for every thing strange on the part of her son
Disappointed however and vexed as she was and sometimes
displeased with his uncertain behaviour to herself
she was very well disposed on the whole to regard his actions
with all the candid allowances and generous qualifications
which had been rather more painfully extorted from her
for Willoughbys service by her mother His want of spirits
of openness and of consistency were most usually
attributed to his want of independence and his better
knowledge of Mrs Ferrarss disposition and designs
The shortness of his visit the steadiness of his purpose
in leaving them originated in the same fettered inclination
the same inevitable necessity of temporizing with his mother
The old wellestablished grievance of duty against will
parent against child was the cause of all She would have
been glad to know when these difficulties were to cease
this opposition was to yieldwhen Mrs Ferrars would
be reformed and her son be at liberty to be happy
But from such vain wishes she was forced to turn for comfort
to the renewal of her confidence in Edwards affection
to the remembrance of every mark of regard in look or word
which fell from him while at Barton and above all
to that flattering proof of it which he constantly wore
round his finger
I think Edward said Mrs Dashwood as they were
at breakfast the last morning you would be a happier man
if you had any profession to engage your time and give
an interest to your plans and actions Some inconvenience
to your friends indeed might result from ityou
would not be able to give them so much of your time
But with a smile you would be materially benefited
in one particular at leastyou would know where to go
when you left them
I do assure you he replied that I have long
thought on this point as you think now It has been
and is and probably will always be a heavy misfortune
to me that I have had no necessary business to engage me
no profession to give me employment or afford me any
thing like independence But unfortunately my own nicety
and the nicety of my friends have made me what I am
an idle helpless being We never could agree in our
choice of a profession I always preferred the church
as I still do But that was not smart enough for my family
They recommended the army That was a great deal
too smart for me The law was allowed to be genteel
enough many young men who had chambers in the Temple
made a very good appearance in the first circles
and drove about town in very knowing gigs But I had
no inclination for the law even in this less abstruse
study of it which my family approved As for the navy
it had fashion on its side but I was too old when the
subject was first started to enter itand at length
as there was no necessity for my having any profession
at all as I might be as dashing and expensive without
a red coat on my back as with one idleness was pronounced
on the whole to be most advantageous and honourable
and a young man of eighteen is not in general so earnestly
bent on being busy as to resist the solicitations of his
friends to do nothing I was therefore entered at Oxford
and have been properly idle ever since
The consequence of which I suppose will be
said Mrs Dashwood since leisure has not promoted
your own happiness that your sons will be brought up
to as many pursuits employments professions and trades
as Columellas
They will be brought up said he in a serious accent
to be as unlike myself as is possible In feeling
in action in condition in every thing
Come come this is all an effusion of immediate
want of spirits Edward You are in a melancholy humour
and fancy that any one unlike yourself must be happy
But remember that the pain of parting from friends
will be felt by every body at times whatever be their
education or state Know your own happiness You want
nothing but patienceor give it a more fascinating name
call it hope Your mother will secure to you in time
that independence you are so anxious for it is her duty
and it will it must ere long become her happiness to
prevent your whole youth from being wasted in discontent
How much may not a few months do
I think replied Edward that I may defy many
months to produce any good to me
This desponding turn of mind though it could not
be communicated to Mrs Dashwood gave additional pain
to them all in the parting which shortly took place
and left an uncomfortable impression on Elinors
feelings especially which required some trouble and time
to subdue But as it was her determination to subdue it
and to prevent herself from appearing to suffer more than
what all her family suffered on his going away she did
not adopt the method so judiciously employed by Marianne
on a similar occasion to augment and fix her sorrow
by seeking silence solitude and idleness Their means
were as different as their objects and equally suited
to the advancement of each
Elinor sat down to her drawingtable as soon as he
was out of the house busily employed herself the whole day
neither sought nor avoided the mention of his name
appeared to interest herself almost as much as ever in the
general concerns of the family and if by this conduct
she did not lessen her own grief it was at least prevented
from unnecessary increase and her mother and sisters
were spared much solicitude on her account
Such behaviour as this so exactly the reverse
of her own appeared no more meritorious to Marianne
than her own had seemed faulty to her The business
of selfcommand she settled very easilywith strong
affections it was impossible with calm ones it could
have no merit That her sisters affections WERE calm
she dared not deny though she blushed to acknowledge it
and of the strength of her own she gave a very striking proof
by still loving and respecting that sister in spite
of this mortifying conviction
Without shutting herself up from her family
or leaving the house in determined solitude to avoid them
or lying awake the whole night to indulge meditation
Elinor found every day afforded her leisure enough
to think of Edward and of Edwards behaviour in every
possible variety which the different state of her spirits
at different times could producewith tenderness
pity approbation censure and doubt There were moments
in abundance when if not by the absence of her mother
and sisters at least by the nature of their employments
conversation was forbidden among them and every effect
of solitude was produced Her mind was inevitably
at liberty her thoughts could not be chained elsewhere
and the past and the future on a subject so interesting
must be before her must force her attention and engross
her memory her reflection and her fancy
From a reverie of this kind as she sat at her
drawingtable she was roused one morning soon after
Edwards leaving them by the arrival of company
She happened to be quite alone The closing of the
little gate at the entrance of the green court in front
of the house drew her eyes to the window and she saw
a large party walking up to the door Amongst them
were Sir John and Lady Middleton and Mrs Jennings
but there were two others a gentleman and lady who were
quite unknown to her She was sitting near the window
and as soon as Sir John perceived her he left the rest
of the party to the ceremony of knocking at the door
and stepping across the turf obliged her to open the
casement to speak to him though the space was so short
between the door and the window as to make it hardly
possible to speak at one without being heard at the other
Well said he we have brought you some strangers
How do you like them
Hush they will hear you
Never mind if they do It is only the Palmers
Charlotte is very pretty I can tell you You may see her
if you look this way
As Elinor was certain of seeing her in a couple
of minutes without taking that liberty she begged
to be excused
Where is Marianne Has she run away because we
are come I see her instrument is open
She is walking I believe
They were now joined by Mrs Jennings who had not
patience enough to wait till the door was opened before
she told HER story She came hallooing to the window
How do you do my dear How does Mrs Dashwood do
And where are your sisters What all alone you
will be glad of a little company to sit with you
I have brought my other son and daughter to see you
Only think of their coming so suddenly I thought I heard
a carriage last night while we were drinking our tea
but it never entered my head that it could be them
I thought of nothing but whether it might not be Colonel
Brandon come back again so I said to Sir John I do think
I hear a carriage perhaps it is Colonel Brandon come
back again
Elinor was obliged to turn from her in the middle
of her story to receive the rest of the party Lady
Middleton introduced the two strangers Mrs Dashwood
and Margaret came down stairs at the same time and they
all sat down to look at one another while Mrs Jennings
continued her story as she walked through the passage
into the parlour attended by Sir John
Mrs Palmer was several years younger than Lady
Middleton and totally unlike her in every respect
She was short and plump had a very pretty face
and the finest expression of good humour in it that could
possibly be Her manners were by no means so elegant
as her sisters but they were much more prepossessing
She came in with a smile smiled all the time of her visit
except when she laughed and smiled when she went away
Her husband was a grave looking young man of five or six
and twenty with an air of more fashion and sense than
his wife but of less willingness to please or be pleased
He entered the room with a look of selfconsequence
slightly bowed to the ladies without speaking a word
and after briefly surveying them and their apartments
took up a newspaper from the table and continued to read it
as long as he staid
Mrs Palmer on the contrary who was strongly endowed
by nature with a turn for being uniformly civil and happy
was hardly seated before her admiration of the parlour
and every thing in it burst forth
Well what a delightful room this is I never
saw anything so charming Only think Mamma how it
is improved since I was here last I always thought it
such a sweet place maam turning to Mrs Dashwood
but you have made it so charming Only look sister
how delightful every thing is How I should like such
a house for myself Should not you Mr Palmer
Mr Palmer made her no answer and did not even raise
his eyes from the newspaper
Mr Palmer does not hear me said she laughing
he never does sometimes It is so ridiculous
This was quite a new idea to Mrs Dashwood she had
never been used to find wit in the inattention of any one
and could not help looking with surprise at them both
Mrs Jennings in the meantime talked on as loud
as she could and continued her account of their surprise
the evening before on seeing their friends without
ceasing till every thing was told Mrs Palmer laughed
heartily at the recollection of their astonishment
and every body agreed two or three times over that it
had been quite an agreeable surprise
You may believe how glad we all were to see them
added Mrs Jennings leaning forward towards Elinor
and speaking in a low voice as if she meant to be heard
by no one else though they were seated on different sides
of the room but however I cant help wishing they had
not travelled quite so fast nor made such a long journey
of it for they came all round by London upon account
of some business for you know nodding significantly and
pointing to her daughter it was wrong in her situation
I wanted her to stay at home and rest this morning
but she would come with us she longed so much to see
you all
Mrs Palmer laughed and said it would not do her
any harm
She expects to be confined in February
continued Mrs Jennings
Lady Middleton could no longer endure such a conversation
and therefore exerted herself to ask Mr Palmer if there
was any news in the paper
No none at all he replied and read on
Here comes Marianne cried Sir John Now Palmer
you shall see a monstrous pretty girl
He immediately went into the passage opened the front door
and ushered her in himself Mrs Jennings asked her
as soon as she appeared if she had not been to Allenham
and Mrs Palmer laughed so heartily at the question
as to show she understood it Mr Palmer looked up
on her entering the room stared at her some minutes
and then returned to his newspaper Mrs Palmers eye
was now caught by the drawings which hung round the room
She got up to examine them
Oh dear how beautiful these are Well how delightful
Do but look mama how sweet I declare they are quite charming
I could look at them for ever And then sitting down again
she very soon forgot that there were any such things in the room
When Lady Middleton rose to go away Mr Palmer
rose also laid down the newspaper stretched himself
and looked at them all around
My love have you been asleep said his wife laughing
He made her no answer and only observed after again
examining the room that it was very low pitched
and that the ceiling was crooked He then made his bow
and departed with the rest
Sir John had been very urgent with them all to
spend the next day at the park Mrs Dashwood who did
not chuse to dine with them oftener than they dined
at the cottage absolutely refused on her own account
her daughters might do as they pleased But they had no
curiosity to see how Mr and Mrs Palmer ate their dinner
and no expectation of pleasure from them in any other way
They attempted therefore likewise to excuse themselves
the weather was uncertain and not likely to be good
But Sir John would not be satisfiedthe carriage should
be sent for them and they must come Lady Middleton too
though she did not press their mother pressed them
Mrs Jennings and Mrs Palmer joined their entreaties all
seemed equally anxious to avoid a family party and the young
ladies were obliged to yield
Why should they ask us said Marianne as soon as they
were gone The rent of this cottage is said to be low
but we have it on very hard terms if we are to dine
at the park whenever any one is staying either with them
or with us
They mean no less to be civil and kind to us now
said Elinor by these frequent invitations than by
those which we received from them a few weeks ago
The alteration is not in them if their parties are grown
tedious and dull We must look for the change elsewhere
CHAPTER 20
As the Miss Dashwoods entered the drawingroom of the park
the next day at one door Mrs Palmer came running in at
the other looking as good humoured and merry as before
She took them all most affectionately by the hand
and expressed great delight in seeing them again
I am so glad to see you said she seating herself
between Elinor and Marianne for it is so bad a day I was
afraid you might not come which would be a shocking thing
as we go away again tomorrow We must go for the Westons
come to us next week you know It was quite a sudden thing
our coming at all and I knew nothing of it till the carriage
was coming to the door and then Mr Palmer asked me if I
would go with him to Barton He is so droll He never
tells me any thing I am so sorry we cannot stay longer
however we shall meet again in town very soon I hope
They were obliged to put an end to such an expectation
Not go to town cried Mrs Palmer with a laugh
I shall be quite disappointed if you do not I could
get the nicest house in world for you next door to ours
in Hanoversquare You must come indeed I am sure
I shall be very happy to chaperon you at any time till
I am confined if Mrs Dashwood should not like to go
into public
They thanked her but were obliged to resist all
her entreaties
Oh my love cried Mrs Palmer to her husband
who just then entered the roomyou must help me to
persuade the Miss Dashwoods to go to town this winter
Her love made no answer and after slightly bowing
to the ladies began complaining of the weather
How horrid all this is said he Such weather
makes every thing and every body disgusting Dullness
is as much produced within doors as without by rain
It makes one detest all ones acquaintance What the
devil does Sir John mean by not having a billiard room
in his house How few people know what comfort is Sir
John is as stupid as the weather
The rest of the company soon dropt in
I am afraid Miss Marianne said Sir John you have
not been able to take your usual walk to Allenham today
Marianne looked very grave and said nothing
Oh dont be so sly before us said Mrs Palmer
for we know all about it I assure you and I admire your
taste very much for I think he is extremely handsome
We do not live a great way from him in the country you know
Not above ten miles I dare say
Much nearer thirty said her husband
Ah well there is not much difference
I never was at his house but they say it is a sweet
pretty place
As vile a spot as I ever saw in my life
said Mr Palmer
Marianne remained perfectly silent though her
countenance betrayed her interest in what was said
Is it very ugly continued Mrs Palmerthen it
must be some other place that is so pretty I suppose
When they were seated in the dining room Sir John
observed with regret that they were only eight all together
My dear said he to his lady it is very provoking
that we should be so few Why did not you ask the Gilberts
to come to us today
Did not I tell you Sir John when you spoke to me
about it before that it could not be done They dined
with us last
You and I Sir John said Mrs Jennings
should not stand upon such ceremony
Then you would be very illbred cried Mr Palmer
My love you contradict every body said his wife
with her usual laugh Do you know that you are quite rude
I did not know I contradicted any body in calling
your mother illbred
Ay you may abuse me as you please said the goodnatured
old lady you have taken Charlotte off my hands and cannot
give her back again So there I have the whip hand of you
Charlotte laughed heartily to think that her
husband could not get rid of her and exultingly said
she did not care how cross he was to her as they must
live together It was impossible for any one to be more
thoroughly goodnatured or more determined to be happy
than Mrs Palmer The studied indifference insolence
and discontent of her husband gave her no pain
and when he scolded or abused her she was highly diverted
Mr Palmer is so droll said she in a whisper
to Elinor He is always out of humour
Elinor was not inclined after a little observation
to give him credit for being so genuinely and unaffectedly
illnatured or illbred as he wished to appear
His temper might perhaps be a little soured by finding
like many others of his sex that through some unaccountable
bias in favour of beauty he was the husband of a very silly
womanbut she knew that this kind of blunder was too
common for any sensible man to be lastingly hurt by it
It was rather a wish of distinction she believed
which produced his contemptuous treatment of every body
and his general abuse of every thing before him
It was the desire of appearing superior to other people
The motive was too common to be wondered at but the means
however they might succeed by establishing his superiority
in illbreeding were not likely to attach any one to him
except his wife
Oh my dear Miss Dashwood said Mrs Palmer soon afterwards
I have got such a favour to ask of you and your sister
Will you come and spend some time at Cleveland this
Christmas Now pray doand come while the Westons are
with us You cannot think how happy I shall be It will
be quite delightfulMy love applying to her husband
dont you long to have the Miss Dashwoods come to Cleveland
Certainly he replied with a sneerI came
into Devonshire with no other view
There nowsaid his lady you see Mr Palmer
expects you so you cannot refuse to come
They both eagerly and resolutely declined her invitation
But indeed you must and shall come I am sure you
will like it of all things The Westons will be with us
and it will be quite delightful You cannot think
what a sweet place Cleveland is and we are so gay now
for Mr Palmer is always going about the country canvassing
against the election and so many people came to dine
with us that I never saw before it is quite charming But
poor fellow it is very fatiguing to him for he is forced
to make every body like him
Elinor could hardly keep her countenance as she
assented to the hardship of such an obligation
How charming it will be said Charlotte when he
is in Parliamentwont it How I shall laugh It will
be so ridiculous to see all his letters directed to him
with an MPBut do you know he says he will never frank
for me He declares he wont Dont you Mr Palmer
Mr Palmer took no notice of her
He cannot bear writing you know she continued
he says it is quite shocking
No said he I never said any thing so irrational
Dont palm all your abuses of languages upon me
There now you see how droll he is This is always
the way with him Sometimes he wont speak to me for half
a day together and then he comes out with something
so drollall about any thing in the world
She surprised Elinor very much as they returned
into the drawingroom by asking her whether she did
not like Mr Palmer excessively
Certainly said Elinor he seems very agreeable
WellI am so glad you do I thought you would
he is so pleasant and Mr Palmer is excessively pleased
with you and your sisters I can tell you and you cant
think how disappointed he will be if you dont come
to ClevelandI cant imagine why you should object
to it
Elinor was again obliged to decline her invitation
and by changing the subject put a stop to her entreaties
She thought it probable that as they lived in the
same county Mrs Palmer might be able to give some
more particular account of Willoughbys general
character than could be gathered from the Middletons
partial acquaintance with him and she was eager to gain
from any one such a confirmation of his merits as might
remove the possibility of fear from Marianne She began
by inquiring if they saw much of Mr Willoughby at Cleveland
and whether they were intimately acquainted with him
Oh dear yes I know him extremely well
replied Mrs PalmerNot that I ever spoke
to him indeed but I have seen him for ever in town
Somehow or other I never happened to be staying at Barton
while he was at Allenham Mama saw him here once before
but I was with my uncle at Weymouth However I dare say
we should have seen a great deal of him in Somersetshire
if it had not happened very unluckily that we should never
have been in the country together He is very little
at Combe I believe but if he were ever so much there
I do not think Mr Palmer would visit him for he is
in the opposition you know and besides it is such a
way off I know why you inquire about him very well
your sister is to marry him I am monstrous glad of it
for then I shall have her for a neighbour you know
Upon my word replied Elinor you know much
more of the matter than I do if you have any reason
to expect such a match
Dont pretend to deny it because you know it is
what every body talks of I assure you I heard of it
in my way through town
My dear Mrs Palmer
Upon my honour I didI met Colonel Brandon
Monday morning in Bondstreet just before we left town
and he told me of it directly
You surprise me very much Colonel Brandon tell
you of it Surely you must be mistaken To give such
intelligence to a person who could not be interested in it
even if it were true is not what I should expect Colonel
Brandon to do
But I do assure you it was so for all that
and I will tell you how it happened When we met him
he turned back and walked with us and so we began talking
of my brother and sister and one thing and another
and I said to him So Colonel there is a new family
come to Barton cottage I hear and mama sends me word
they are very pretty and that one of them is going to be
married to Mr Willoughby of Combe Magna Is it true
pray for of course you must know as you have been in
Devonshire so lately
And what did the Colonel say
Ohhe did not say much but he looked as if he
knew it to be true so from that moment I set it down
as certain It will be quite delightful I declare
When is it to take place
Mr Brandon was very well I hope
Oh yes quite well and so full of your praises
he did nothing but say fine things of you
I am flattered by his commendation He seems
an excellent man and I think him uncommonly pleasing
So do IHe is such a charming man that it
is quite a pity he should be so grave and so dull
Mamma says HE was in love with your sister too
I assure you it was a great compliment if he was for he
hardly ever falls in love with any body
Is Mr Willoughby much known in your part
of Somersetshire said Elinor
Oh yes extremely well that is I do not believe
many people are acquainted with him because Combe Magna
is so far off but they all think him extremely agreeable
I assure you Nobody is more liked than Mr Willoughby
wherever he goes and so you may tell your sister
She is a monstrous lucky girl to get him upon my honour
not but that he is much more lucky in getting her
because she is so very handsome and agreeable that nothing
can be good enough for her However I dont think
her hardly at all handsomer than you I assure you
for I think you both excessively pretty and so does
Mr Palmer too I am sure though we could not get him
to own it last night
Mrs Palmers information respecting Willoughby
was not very material but any testimony in his favour
however small was pleasing to her
I am so glad we are got acquainted at last
continued CharlotteAnd now I hope we shall always be
great friends You cant think how much I longed to see you
It is so delightful that you should live at the cottage
Nothing can be like it to be sure And I am so glad
your sister is going to be well married I hope you will
be a great deal at Combe Magna It is a sweet place
by all accounts
You have been long acquainted with Colonel Brandon
have not you
Yes a great while ever since my sister married
He was a particular friend of Sir Johns I believe
she added in a low voice he would have been very
glad to have had me if he could Sir John and Lady
Middleton wished it very much But mama did not think
the match good enough for me otherwise Sir John would
have mentioned it to the Colonel and we should have been
married immediately
Did not Colonel Brandon know of Sir Johns proposal
to your mother before it was made Had he never owned
his affection to yourself
Oh no but if mama had not objected to it
I dare say he would have liked it of all things
He had not seen me then above twice for it was before
I left school However I am much happier as I am
Mr Palmer is the kind of man I like
CHAPTER 21
The Palmers returned to Cleveland the next day
and the two families at Barton were again left to entertain
each other But this did not last long Elinor had hardly
got their last visitors out of her head had hardly done
wondering at Charlottes being so happy without a cause
at Mr Palmers acting so simply with good abilities
and at the strange unsuitableness which often existed between
husband and wife before Sir Johns and Mrs Jenningss
active zeal in the cause of society procured her some
other new acquaintance to see and observe
In a mornings excursion to Exeter they had met with
two young ladies whom Mrs Jennings had the satisfaction
of discovering to be her relations and this was enough
for Sir John to invite them directly to the park
as soon as their present engagements at Exeter were over
Their engagements at Exeter instantly gave way before
such an invitation and Lady Middleton was thrown into
no little alarm on the return of Sir John by hearing
that she was very soon to receive a visit from two girls
whom she had never seen in her life and of whose elegance
whose tolerable gentility even she could have no proof
for the assurances of her husband and mother on that subject
went for nothing at all Their being her relations too
made it so much the worse and Mrs Jenningss attempts
at consolation were therefore unfortunately founded
when she advised her daughter not to care about their being
so fashionable because they were all cousins and must put
up with one another As it was impossible however now to
prevent their coming Lady Middleton resigned herself to the
idea of it with all the philosophy of a wellbred woman
contenting herself with merely giving her husband a gentle
reprimand on the subject five or six times every day
The young ladies arrived their appearance was by
no means ungenteel or unfashionable Their dress was
very smart their manners very civil they were delighted
with the house and in raptures with the furniture
and they happened to be so doatingly fond of children
that Lady Middletons good opinion was engaged in their
favour before they had been an hour at the Park
She declared them to be very agreeable girls indeed
which for her ladyship was enthusiastic admiration
Sir Johns confidence in his own judgment rose with this
animated praise and he set off directly for the cottage
to tell the Miss Dashwoods of the Miss Steeles arrival
and to assure them of their being the sweetest girls
in the world From such commendation as this however
there was not much to be learned Elinor well knew
that the sweetest girls in the world were to be met
with in every part of England under every possible
variation of form face temper and understanding
Sir John wanted the whole family to walk to the Park directly
and look at his guests Benevolent philanthropic man It
was painful to him even to keep a third cousin to himself
Do come now said hepray comeyou must comeI
declare you shall comeYou cant think how you will
like them Lucy is monstrous pretty and so good humoured
and agreeable The children are all hanging about her already
as if she was an old acquaintance And they both long
to see you of all things for they have heard at Exeter
that you are the most beautiful creatures in the world
and I have told them it is all very true and a great
deal more You will be delighted with them I am sure
They have brought the whole coach full of playthings
for the children How can you be so cross as not to come
Why they are your cousins you know after a fashion
YOU are my cousins and they are my wifes so you must
be related
But Sir John could not prevail He could only obtain
a promise of their calling at the Park within a day or two
and then left them in amazement at their indifference
to walk home and boast anew of their attractions to the
Miss Steeles as he had been already boasting of the Miss
Steeles to them
When their promised visit to the Park and consequent
introduction to these young ladies took place they found
in the appearance of the eldest who was nearly thirty
with a very plain and not a sensible face nothing to admire
but in the other who was not more than two or three
and twenty they acknowledged considerable beauty her
features were pretty and she had a sharp quick eye
and a smartness of air which though it did not give
actual elegance or grace gave distinction to her person
Their manners were particularly civil and Elinor soon
allowed them credit for some kind of sense when she
saw with what constant and judicious attention they
were making themselves agreeable to Lady Middleton
With her children they were in continual raptures
extolling their beauty courting their notice and humouring
their whims and such of their time as could be spared from
the importunate demands which this politeness made on it
was spent in admiration of whatever her ladyship was doing
if she happened to be doing any thing or in taking patterns
of some elegant new dress in which her appearance
the day before had thrown them into unceasing delight
Fortunately for those who pay their court through
such foibles a fond mother though in pursuit of praise
for her children the most rapacious of human beings
is likewise the most credulous her demands are exorbitant
but she will swallow any thing and the excessive
affection and endurance of the Miss Steeles towards
her offspring were viewed therefore by Lady Middleton
without the smallest surprise or distrust She saw with
maternal complacency all the impertinent encroachments
and mischievous tricks to which her cousins submitted
She saw their sashes untied their hair pulled about
their ears their workbags searched and their knives
and scissors stolen away and felt no doubt of its being
a reciprocal enjoyment It suggested no other surprise
than that Elinor and Marianne should sit so composedly by
without claiming a share in what was passing
John is in such spirits today said she on his
taking Miss Steeless pocket handkerchief and throwing
it out of windowHe is full of monkey tricks
And soon afterwards on the second boys violently
pinching one of the same ladys fingers she fondly observed
How playful William is
And here is my sweet little Annamaria she added
tenderly caressing a little girl of three years old
who had not made a noise for the last two minutes
And she is always so gentle and quietNever was there
such a quiet little thing
But unfortunately in bestowing these embraces
a pin in her ladyships head dress slightly scratching
the childs neck produced from this pattern of gentleness
such violent screams as could hardly be outdone by any
creature professedly noisy The mothers consternation
was excessive but it could not surpass the alarm of the
Miss Steeles and every thing was done by all three
in so critical an emergency which affection could suggest
as likely to assuage the agonies of the little sufferer
She was seated in her mothers lap covered with kisses
her wound bathed with lavenderwater by one of the
Miss Steeles who was on her knees to attend her
and her mouth stuffed with sugar plums by the other
With such a reward for her tears the child was too wise
to cease crying She still screamed and sobbed lustily
kicked her two brothers for offering to touch her and all
their united soothings were ineffectual till Lady Middleton
luckily remembering that in a scene of similar distress
last week some apricot marmalade had been successfully
applied for a bruised temple the same remedy was eagerly
proposed for this unfortunate scratch and a slight
intermission of screams in the young lady on hearing it
gave them reason to hope that it would not be rejected
She was carried out of the room therefore in her
mothers arms in quest of this medicine and as the
two boys chose to follow though earnestly entreated
by their mother to stay behind the four young ladies
were left in a quietness which the room had not known for
many hours
Poor little creatures said Miss Steele as soon
as they were gone It might have been a very sad accident
Yet I hardly know how cried Marianne unless it
had been under totally different circumstances
But this is the usual way of heightening alarm where there
is nothing to be alarmed at in reality
What a sweet woman Lady Middleton is said Lucy Steele
Marianne was silent it was impossible for her to say
what she did not feel however trivial the occasion
and upon Elinor therefore the whole task of telling lies
when politeness required it always fell She did her
best when thus called on by speaking of Lady Middleton
with more warmth than she felt though with far less than
Miss Lucy
And Sir John too cried the elder sister
what a charming man he is
Here too Miss Dashwoods commendation being only
simple and just came in without any eclat She merely
observed that he was perfectly good humoured and friendly
And what a charming little family they have I
never saw such fine children in my lifeI declare I
quite doat upon them already and indeed I am always
distractedly fond of children
I should guess so said Elinor with a smile
from what I have witnessed this morning
I have a notion said Lucy you think the little
Middletons rather too much indulged perhaps they may be the
outside of enough but it is so natural in Lady Middleton
and for my part I love to see children full of life
and spirits I cannot bear them if they are tame and quiet
I confess replied Elinor that while I am at
Barton Park I never think of tame and quiet children
with any abhorrence
A short pause succeeded this speech which was first
broken by Miss Steele who seemed very much disposed
for conversation and who now said rather abruptly
And how do you like Devonshire Miss Dashwood I suppose
you were very sorry to leave Sussex
In some surprise at the familiarity of this question
or at least of the manner in which it was spoken
Elinor replied that she was
Norland is a prodigious beautiful place is not it
added Miss Steele
We have heard Sir John admire it excessively
said Lucy who seemed to think some apology necessary
for the freedom of her sister
I think every one MUST admire it replied Elinor
who ever saw the place though it is not to be supposed
that any one can estimate its beauties as we do
And had you a great many smart beaux there I
suppose you have not so many in this part of the world
for my part I think they are a vast addition always
But why should you think said Lucy looking ashamed
of her sister that there are not as many genteel young
men in Devonshire as Sussex
Nay my dear Im sure I dont pretend to say that there
ant Im sure theres a vast many smart beaux in Exeter
but you know how could I tell what smart beaux there
might be about Norland and I was only afraid the Miss
Dashwoods might find it dull at Barton if they had not
so many as they used to have But perhaps you young ladies
may not care about the beaux and had as lief be without
them as with them For my part I think they are vastly
agreeable provided they dress smart and behave civil
But I cant bear to see them dirty and nasty Now theres
Mr Rose at Exeter a prodigious smart young man
quite a beau clerk to Mr Simpson you know and yet if you
do but meet him of a morning he is not fit to be seen
I suppose your brother was quite a beau Miss Dashwood
before he married as he was so rich
Upon my word replied Elinor I cannot tell you
for I do not perfectly comprehend the meaning of the word
But this I can say that if he ever was a beau before
he married he is one still for there is not the smallest
alteration in him
Oh dear one never thinks of married mens being
beauxthey have something else to do
Lord Anne cried her sister you can talk of
nothing but beauxyou will make Miss Dashwood believe you
think of nothing else And then to turn the discourse
she began admiring the house and the furniture
This specimen of the Miss Steeles was enough
The vulgar freedom and folly of the eldest left
her no recommendation and as Elinor was not blinded
by the beauty or the shrewd look of the youngest
to her want of real elegance and artlessness she left
the house without any wish of knowing them better
Not so the Miss SteelesThey came from Exeter well
provided with admiration for the use of Sir John Middleton
his family and all his relations and no niggardly
proportion was now dealt out to his fair cousins whom they
declared to be the most beautiful elegant accomplished
and agreeable girls they had ever beheld and with whom
they were particularly anxious to be better acquainted
And to be better acquainted therefore Elinor soon found
was their inevitable lot for as Sir John was entirely
on the side of the Miss Steeles their party would be
too strong for opposition and that kind of intimacy
must be submitted to which consists of sitting an hour
or two together in the same room almost every day
Sir John could do no more but he did not know that any
more was required to be together was in his opinion
to be intimate and while his continual schemes for their
meeting were effectual he had not a doubt of their being
established friends
To do him justice he did every thing in his power
to promote their unreserve by making the Miss Steeles
acquainted with whatever he knew or supposed of his cousins
situations in the most delicate particularsand Elinor
had not seen them more than twice before the eldest of
them wished her joy on her sisters having been so lucky
as to make a conquest of a very smart beau since she
came to Barton
Twill be a fine thing to have her married so young
to be sure said she and I hear he is quite a beau
and prodigious handsome And I hope you may have as good
luck yourself soonbut perhaps you may have a friend
in the corner already
Elinor could not suppose that Sir John would be more
nice in proclaiming his suspicions of her regard for Edward
than he had been with respect to Marianne indeed it was
rather his favourite joke of the two as being somewhat
newer and more conjectural and since Edwards visit
they had never dined together without his drinking to her
best affections with so much significancy and so many nods
and winks as to excite general attention The letter F
had been likewise invariably brought forward and found
productive of such countless jokes that its character
as the wittiest letter in the alphabet had been long
established with Elinor
The Miss Steeles as she expected had now all the
benefit of these jokes and in the eldest of them they
raised a curiosity to know the name of the gentleman
alluded to which though often impertinently expressed
was perfectly of a piece with her general inquisitiveness
into the concerns of their family But Sir John did not
sport long with the curiosity which he delighted to raise
for he had at least as much pleasure in telling the name
as Miss Steele had in hearing it
His name is Ferrars said he in a very audible whisper
but pray do not tell it for its a great secret
Ferrars repeated Miss Steele Mr Ferrars is
the happy man is he What your sisterinlaws brother
Miss Dashwood a very agreeable young man to be sure
I know him very well
How can you say so Anne cried Lucy who generally
made an amendment to all her sisters assertions
Though we have seen him once or twice at my uncles it
is rather too much to pretend to know him very well
Elinor heard all this with attention and surprise
And who was this uncle Where did he live How came
they acquainted She wished very much to have the subject
continued though she did not chuse to join in it herself
but nothing more of it was said and for the first time
in her life she thought Mrs Jennings deficient either
in curiosity after petty information or in a disposition
to communicate it The manner in which Miss Steele had
spoken of Edward increased her curiosity for it struck
her as being rather illnatured and suggested the suspicion
of that ladys knowing or fancying herself to know something
to his disadvantageBut her curiosity was unavailing
for no farther notice was taken of Mr Ferrarss name by
Miss Steele when alluded to or even openly mentioned by Sir
John
CHAPTER 22
Marianne who had never much toleration for any
thing like impertinence vulgarity inferiority of parts
or even difference of taste from herself was at
this time particularly illdisposed from the state
of her spirits to be pleased with the Miss Steeles
or to encourage their advances and to the invariable
coldness of her behaviour towards them which checked every
endeavour at intimacy on their side Elinor principally
attributed that preference of herself which soon became
evident in the manners of both but especially of Lucy
who missed no opportunity of engaging her in conversation
or of striving to improve their acquaintance by an easy
and frank communication of her sentiments
Lucy was naturally clever her remarks were often
just and amusing and as a companion for half an hour
Elinor frequently found her agreeable but her powers
had received no aid from education she was ignorant
and illiterate and her deficiency of all mental improvement
her want of information in the most common particulars
could not be concealed from Miss Dashwood in spite of her
constant endeavour to appear to advantage Elinor saw
and pitied her for the neglect of abilities which education
might have rendered so respectable but she saw with less
tenderness of feeling the thorough want of delicacy
of rectitude and integrity of mind which her attentions
her assiduities her flatteries at the Park betrayed
and she could have no lasting satisfaction in the company
of a person who joined insincerity with ignorance
whose want of instruction prevented their meeting
in conversation on terms of equality and whose conduct
toward others made every shew of attention and deference
towards herself perfectly valueless
You will think my question an odd one I dare say
said Lucy to her one day as they were walking together
from the park to the cottagebut pray are you
personally acquainted with your sisterinlaws mother
Mrs Ferrars
Elinor DID think the question a very odd one
and her countenance expressed it as she answered that she
had never seen Mrs Ferrars
Indeed replied Lucy I wonder at that for I
thought you must have seen her at Norland sometimes
Then perhaps you cannot tell me what sort of a woman
she is
No returned Elinor cautious of giving her real
opinion of Edwards mother and not very desirous
of satisfying what seemed impertinent curiosity
I know nothing of her
I am sure you think me very strange for enquiring
about her in such a way said Lucy eyeing Elinor attentively
as she spoke but perhaps there may be reasonsI wish
I might venture but however I hope you will do me the justice
of believing that I do not mean to be impertinent
Elinor made her a civil reply and they walked on
for a few minutes in silence It was broken by Lucy
who renewed the subject again by saying with some
hesitation
I cannot bear to have you think me impertinently curious
I am sure I would rather do any thing in the world than be
thought so by a person whose good opinion is so well worth
having as yours And I am sure I should not have the smallest
fear of trusting YOU indeed I should be very glad of your
advice how to manage in such and uncomfortable situation
as I am but however there is no occasion to trouble YOU
I am sorry you do not happen to know Mrs Ferrars
I am sorry I do NOT said Elinor in great astonishment
if it could be of any use to YOU to know my opinion of her
But really I never understood that you were at all connected
with that family and therefore I am a little surprised
I confess at so serious an inquiry into her character
I dare say you are and I am sure I do not at all
wonder at it But if I dared tell you all you would not be
so much surprised Mrs Ferrars is certainly nothing to me
at presentbut the time MAY comehow soon it will come
must depend upon herselfwhen we may be very intimately
connected
She looked down as she said this amiably bashful
with only one side glance at her companion to observe its
effect on her
Good heavens cried Elinor what do you mean
Are you acquainted with Mr Robert Ferrars Can you be
And she did not feel much delighted with the idea of such
a sisterinlaw
No replied Lucy not to Mr ROBERT FerrarsI
never saw him in my life but fixing her eyes upon Elinor
to his eldest brother
What felt Elinor at that moment Astonishment
that would have been as painful as it was strong had not
an immediate disbelief of the assertion attended it
She turned towards Lucy in silent amazement unable to divine
the reason or object of such a declaration and though
her complexion varied she stood firm in incredulity
and felt in no danger of an hysterical fit or a swoon
You may well be surprised continued Lucy
for to be sure you could have had no idea of it before
for I dare say he never dropped the smallest hint of it
to you or any of your family because it was always meant
to be a great secret and I am sure has been faithfully
kept so by me to this hour Not a soul of all my relations
know of it but Anne and I never should have mentioned
it to you if I had not felt the greatest dependence
in the world upon your secrecy and I really thought my
behaviour in asking so many questions about Mrs Ferrars
must seem so odd that it ought to be explained
And I do not think Mr Ferrars can be displeased
when he knows I have trusted you because I know he has
the highest opinion in the world of all your family
and looks upon yourself and the other Miss Dashwoods quite
as his own sistersShe paused
Elinor for a few moments remained silent
Her astonishment at what she heard was at first too
great for words but at length forcing herself to speak
and to speak cautiously she said with calmness of manner
which tolerably well concealed her surprise and solicitude
May I ask if your engagement is of long standing
We have been engaged these four years
Four years
Yes
Elinor though greatly shocked still felt unable
to believe it
I did not know said she that you were even
acquainted till the other day
Our acquaintance however is of many years date
He was under my uncles care you know a considerable while
Your uncle
Yes Mr Pratt Did you never hear him talk
of Mr Pratt
I think I have replied Elinor with an exertion
of spirits which increased with her increase of emotion
He was four years with my uncle who lives at Longstaple
near Plymouth It was there our acquaintance begun
for my sister and me was often staying with my uncle
and it was there our engagement was formed though not till
a year after he had quitted as a pupil but he was almost
always with us afterwards I was very unwilling to enter
into it as you may imagine without the knowledge and
approbation of his mother but I was too young and loved
him too well to be so prudent as I ought to have been
Though you do not know him so well as me Miss Dashwood
you must have seen enough of him to be sensible he is
very capable of making a woman sincerely attached to him
Certainly answered Elinor without knowing what
she said but after a moments reflection she added
with revived security of Edwards honour and love
and her companions falsehoodEngaged to Mr Edward
FerrarsI confess myself so totally surprised at
what you tell me that reallyI beg your pardon
but surely there must be some mistake of person or name
We cannot mean the same Mr Ferrars
We can mean no other cried Lucy smiling Mr Edward
Ferrars the eldest son of Mrs Ferrars of Park Street
and brother of your sisterinlaw Mrs John Dashwood
is the person I mean you must allow that I am not likely
to be deceived as to the name of the man on who all my happiness
depends
It is strange replied Elinor in a most painful perplexity
that I should never have heard him even mention your name
No considering our situation it was not strange
Our first care has been to keep the matter secret
You knew nothing of me or my family and therefore
there could be no OCCASION for ever mentioning my name
to you and as he was always particularly afraid of his
sisters suspecting any thing THAT was reason enough
for his not mentioning it
She was silentElinors security sunk but her
selfcommand did not sink with it
Four years you have been engaged said she
with a firm voice
Yes and heaven knows how much longer we may have
to wait Poor Edward It puts him quite out of heart
Then taking a small miniature from her pocket she added
To prevent the possibility of mistake be so good as to look
at this face It does not do him justice to be sure
but yet I think you cannot be deceived as to the person
it was drew forI have had it above these three years
She put it into her hands as she spoke and when Elinor
saw the painting whatever other doubts her fear of a
too hasty decision or her wish of detecting falsehood
might suffer to linger in her mind she could have none of
its being Edwards face She returned it almost instantly
acknowledging the likeness
I have never been able continued Lucy to give
him my picture in return which I am very much vexed at
for he has been always so anxious to get it But I am
determined to set for it the very first opportunity
You are quite in the right replied Elinor calmly
They then proceeded a few paces in silence Lucy spoke first
I am sure said she I have no doubt in the world
of your faithfully keeping this secret because you must
know of what importance it is to us not to have it reach
his mother for she would never approve of it I dare say
I shall have no fortune and I fancy she is an exceeding
proud woman
I certainly did not seek your confidence said Elinor
but you do me no more than justice in imagining that I
may be depended on Your secret is safe with me
but pardon me if I express some surprise at so unnecessary
a communication You must at least have felt that my
being acquainted with it could not add to its safety
As she said this she looked earnestly at Lucy
hoping to discover something in her countenance perhaps the
falsehood of the greatest part of what she had been saying
but Lucys countenance suffered no change
I was afraid you would think I was taking a great
liberty with you said she in telling you all this
I have not known you long to be sure personally at least
but I have known you and all your family by description
a great while and as soon as I saw you I felt almost as if
you was an old acquaintance Besides in the present case
I really thought some explanation was due to you after my
making such particular inquiries about Edwards mother
and I am so unfortunate that I have not a creature whose
advice I can ask Anne is the only person that knows of it
and she has no judgment at all indeed she does me a great
deal more harm than good for I am in constant fear of her
betraying me She does not know how to hold her tongue
as you must perceive and I am sure I was in the greatest
fright in the world tother day when Edwards name was
mentioned by Sir John lest she should out with it all
You cant think how much I go through in my mind from
it altogether I only wonder that I am alive after what
I have suffered for Edwards sake these last four years
Every thing in such suspense and uncertainty and seeing
him so seldomwe can hardly meet above twice ayear
I am sure I wonder my heart is not quite broke
Here she took out her handkerchief but Elinor did
not feel very compassionate
Sometimes continued Lucy after wiping her eyes
I think whether it would not be better for us both
to break off the matter entirely As she said this
she looked directly at her companion But then
at other times I have not resolution enough for it
I cannot bear the thoughts of making him so miserable
as I know the very mention of such a thing would do
And on my own account tooso dear as he is to meI dont
think I could be equal to it What would you advise
me to do in such a case Miss Dashwood What would you
do yourself
Pardon me replied Elinor startled by the question
but I can give you no advice under such circumstances
Your own judgment must direct you
To be sure continued Lucy after a few minutes
silence on both sides his mother must provide for him
sometime or other but poor Edward is so cast down by it
Did you not think him dreadful lowspirited when he was at
Barton He was so miserable when he left us at Longstaple
to go to you that I was afraid you would think him quite ill
Did he come from your uncles then when he visited us
Oh yes he had been staying a fortnight with us
Did you think he came directly from town
No replied Elinor most feelingly sensible of
every fresh circumstance in favour of Lucys veracity
I remember he told us that he had been staying
a fortnight with some friends near Plymouth
She remembered too her own surprise at the time
at his mentioning nothing farther of those friends
at his total silence with respect even to their names
Did not you think him sadly out of spirits
repeated Lucy
We did indeed particularly so when he first arrived
I begged him to exert himself for fear you
should suspect what was the matter but it made him
so melancholy not being able to stay more than a
fortnight with us and seeing me so much affected
Poor fellowI am afraid it is just the same with him now
for he writes in wretched spirits I heard from him just
before I left Exeter taking a letter from her pocket
and carelessly showing the direction to Elinor
You know his hand I dare say a charming one it is
but that is not written so well as usualHe was tired
I dare say for he had just filled the sheet to me as full
as possible
Elinor saw that it WAS his hand and she could doubt
no longer This picture she had allowed herself to believe
might have been accidentally obtained it might not have
been Edwards gift but a correspondence between them
by letter could subsist only under a positive engagement
could be authorised by nothing else for a few moments she
was almost overcomeher heart sunk within her and she could
hardly stand but exertion was indispensably necessary
and she struggled so resolutely against the oppression
of her feelings that her success was speedy and for
the time complete
Writing to each other said Lucy returning the
letter into her pocket is the only comfort we have
in such long separations Yes I have one other comfort
in his picture but poor Edward has not even THAT
If he had but my picture he says he should be easy
I gave him a lock of my hair set in a ring when he was at
Longstaple last and that was some comfort to him he said
but not equal to a picture Perhaps you might notice
the ring when you saw him
I did said Elinor with a composure of voice
under which was concealed an emotion and distress beyond
any thing she had ever felt before She was mortified
shocked confounded
Fortunately for her they had now reached the cottage
and the conversation could be continued no farther
After sitting with them a few minutes the Miss Steeles
returned to the Park and Elinor was then at liberty
to think and be wretched
At this point in the first and second editions Volume 1 ends
CHAPTER 23
However small Elinors general dependence on
Lucys veracity might be it was impossible for her
on serious reflection to suspect it in the present case
where no temptation could be answerable to the folly
of inventing a falsehood of such a description What Lucy
had asserted to be true therefore Elinor could not
dared not longer doubt supported as it was too on every
side by such probabilities and proofs and contradicted
by nothing but her own wishes Their opportunity of
acquaintance in the house of Mr Pratt was a foundation
for the rest at once indisputable and alarming and Edwards
visit near Plymouth his melancholy state of mind
his dissatisfaction at his own prospects his uncertain
behaviour towards herself the intimate knowledge of the
Miss Steeles as to Norland and their family connections
which had often surprised her the picture the letter
the ring formed altogether such a body of evidence
as overcame every fear of condemning him unfairly
and established as a fact which no partiality could
set aside his illtreatment of herselfHer resentment
of such behaviour her indignation at having been its dupe
for a short time made her feel only for herself
but other ideas other considerations soon arose
Had Edward been intentionally deceiving her Had he feigned
a regard for her which he did not feel Was his engagement
to Lucy an engagement of the heart No whatever it might
once have been she could not believe it such at present
His affection was all her own She could not be deceived
in that Her mother sisters Fanny all had been
conscious of his regard for her at Norland it was not
an illusion of her own vanity He certainly loved her
What a softener of the heart was this persuasion How much
could it not tempt her to forgive He had been blamable
highly blamable in remaining at Norland after he first
felt her influence over him to be more than it ought
to be In that he could not be defended but if he
had injured her how much more had he injured himself
if her case were pitiable his was hopeless
His imprudence had made her miserable for a while but it
seemed to have deprived himself of all chance of ever
being otherwise She might in time regain tranquillity
but HE what had he to look forward to Could he
ever be tolerably happy with Lucy Steele could he
were his affection for herself out of the question
with his integrity his delicacy and wellinformed mind
be satisfied with a wife like herilliterate artful
and selfish
The youthful infatuation of nineteen would naturally
blind him to every thing but her beauty and good nature
but the four succeeding yearsyears which if rationally
spent give such improvement to the understanding must
have opened his eyes to her defects of education
while the same period of time spent on her side
in inferior society and more frivolous pursuits
had perhaps robbed her of that simplicity which might
once have given an interesting character to her beauty
If in the supposition of his seeking to marry herself
his difficulties from his mother had seemed great
how much greater were they now likely to be when
the object of his engagement was undoubtedly inferior
in connections and probably inferior in fortune to herself
These difficulties indeed with a heart so alienated
from Lucy might not press very hard upon his patience
but melancholy was the state of the person by whom the
expectation of family opposition and unkindness could
be felt as a relief
As these considerations occurred to her in painful
succession she wept for him more than for herself
Supported by the conviction of having done nothing to
merit her present unhappiness and consoled by the belief
that Edward had done nothing to forfeit her esteem
she thought she could even now under the first smart
of the heavy blow command herself enough to guard every
suspicion of the truth from her mother and sisters
And so well was she able to answer her own expectations
that when she joined them at dinner only two hours
after she had first suffered the extinction of all her
dearest hopes no one would have supposed from the
appearance of the sisters that Elinor was mourning
in secret over obstacles which must divide her for ever
from the object of her love and that Marianne was
internally dwelling on the perfections of a man of whose
whole heart she felt thoroughly possessed and whom she
expected to see in every carriage which drove near their house
The necessity of concealing from her mother and
Marianne what had been entrusted in confidence to herself
though it obliged her to unceasing exertion was no
aggravation of Elinors distress On the contrary
it was a relief to her to be spared the communication
of what would give such affliction to them and to be
saved likewise from hearing that condemnation of Edward
which would probably flow from the excess of their partial
affection for herself and which was more than she felt
equal to support
From their counsel or their conversation she knew
she could receive no assistance their tenderness and
sorrow must add to her distress while her selfcommand
would neither receive encouragement from their example
nor from their praise She was stronger alone
and her own good sense so well supported her that her
firmness was as unshaken her appearance of cheerfulness
as invariable as with regrets so poignant and so fresh
it was possible for them to be
Much as she had suffered from her first conversation
with Lucy on the subject she soon felt an earnest wish
of renewing it and this for more reasons than one
She wanted to hear many particulars of their engagement
repeated again she wanted more clearly to understand
what Lucy really felt for Edward whether there were any
sincerity in her declaration of tender regard for him
and she particularly wanted to convince Lucy by her
readiness to enter on the matter again and her calmness
in conversing on it that she was no otherwise interested
in it than as a friend which she very much feared
her involuntary agitation in their morning discourse
must have left at least doubtful That Lucy was disposed
to be jealous of her appeared very probable it was plain
that Edward had always spoken highly in her praise
not merely from Lucys assertion but from her venturing
to trust her on so short a personal acquaintance
with a secret so confessedly and evidently important
And even Sir Johns joking intelligence must have had
some weight But indeed while Elinor remained so well
assured within herself of being really beloved by Edward
it required no other consideration of probabilities
to make it natural that Lucy should be jealous
and that she was so her very confidence was a proof
What other reason for the disclosure of the affair could
there be but that Elinor might be informed by it of Lucys
superior claims on Edward and be taught to avoid him
in future She had little difficulty in understanding thus
much of her rivals intentions and while she was firmly
resolved to act by her as every principle of honour and
honesty directed to combat her own affection for Edward
and to see him as little as possible she could not deny
herself the comfort of endeavouring to convince Lucy
that her heart was unwounded And as she could now have
nothing more painful to hear on the subject than had already
been told she did not mistrust her own ability of going
through a repetition of particulars with composure
But it was not immediately that an opportunity
of doing so could be commanded though Lucy was as well
disposed as herself to take advantage of any that occurred
for the weather was not often fine enough to allow
of their joining in a walk where they might most easily
separate themselves from the others and though they
met at least every other evening either at the park
or cottage and chiefly at the former they could
not be supposed to meet for the sake of conversation
Such a thought would never enter either Sir John or Lady
Middletons head and therefore very little leisure
was ever given for a general chat and none at all for
particular discourse They met for the sake of eating
drinking and laughing together playing at cards
or consequences or any other game that was sufficiently noisy
One or two meetings of this kind had taken place
without affording Elinor any chance of engaging Lucy
in private when Sir John called at the cottage one morning
to beg in the name of charity that they would all
dine with Lady Middleton that day as he was obliged
to attend the club at Exeter and she would otherwise be
quite alone except her mother and the two Miss Steeles
Elinor who foresaw a fairer opening for the point she
had in view in such a party as this was likely to be
more at liberty among themselves under the tranquil
and wellbred direction of Lady Middleton than when
her husband united them together in one noisy purpose
immediately accepted the invitation Margaret with her
mothers permission was equally compliant and Marianne
though always unwilling to join any of their parties
was persuaded by her mother who could not bear to have her
seclude herself from any chance of amusement to go likewise
The young ladies went and Lady Middleton was happily
preserved from the frightful solitude which had threatened her
The insipidity of the meeting was exactly such as Elinor
had expected it produced not one novelty of thought
or expression and nothing could be less interesting
than the whole of their discourse both in the dining
parlour and drawing room to the latter the children
accompanied them and while they remained there she was
too well convinced of the impossibility of engaging Lucys
attention to attempt it They quitted it only with the
removal of the teathings The cardtable was then placed
and Elinor began to wonder at herself for having ever
entertained a hope of finding time for conversation
at the park They all rose up in preparation for a round game
I am glad said Lady Middleton to Lucy
you are not going to finish poor little Annamarias
basket this evening for I am sure it must hurt your
eyes to work filigree by candlelight And we will make
the dear little love some amends for her disappointment
tomorrow and then I hope she will not much mind it
This hint was enough Lucy recollected herself instantly
and replied Indeed you are very much mistaken
Lady Middleton I am only waiting to know whether you can
make your party without me or I should have been at my
filigree already I would not disappoint the little angel
for all the world and if you want me at the cardtable now
I am resolved to finish the basket after supper
You are very good I hope it wont hurt your eyes
will you ring the bell for some working candles
My poor little girl would be sadly disappointed I know
if the basket was not finished tomorrow for though I
told her it certainly would not I am sure she depends
upon having it done
Lucy directly drew her work table near her
and reseated herself with an alacrity and cheerfulness
which seemed to infer that she could taste no greater
delight than in making a filigree basket for a spoilt child
Lady Middleton proposed a rubber of Casino to the others
No one made any objection but Marianne who with her usual
inattention to the forms of general civility exclaimed
Your Ladyship will have the goodness to excuse MEyou
know I detest cards I shall go to the pianoforte
I have not touched it since it was tuned And without
farther ceremony she turned away and walked to the instrument
Lady Middleton looked as if she thanked heaven
that SHE had never made so rude a speech
Marianne can never keep long from that instrument
you know maam said Elinor endeavouring to smooth
away the offence and I do not much wonder at it for it
is the very best toned pianoforte I ever heard
The remaining five were now to draw their cards
Perhaps continued Elinor if I should happen
to cut out I may be of some use to Miss Lucy Steele
in rolling her papers for her and there is so much still
to be done to the basket that it must be impossible
I think for her labour singly to finish it this evening
I should like the work exceedingly if she would allow
me a share in it
Indeed I shall be very much obliged to you
for your help cried Lucy for I find there is more
to be done to it than I thought there was and it would
be a shocking thing to disappoint dear Annamaria after all
Oh that would be terrible indeed said Miss Steele
Dear little soul how I do love her
You are very kind said Lady Middleton to Elinor
and as you really like the work perhaps you will be
as well pleased not to cut in till another rubber
or will you take your chance now
Elinor joyfully profited by the first of these proposals
and thus by a little of that address which Marianne
could never condescend to practise gained her own end
and pleased Lady Middleton at the same time Lucy made room
for her with ready attention and the two fair rivals were
thus seated side by side at the same table and with the
utmost harmony engaged in forwarding the same work
The pianoforte at which Marianne wrapped up in her own
music and her own thoughts had by this time forgotten
that any body was in the room besides herself was luckily
so near them that Miss Dashwood now judged she might safely
under the shelter of its noise introduce the interesting
subject without any risk of being heard at the cardtable
CHAPTER 24
In a firm though cautious tone Elinor thus began
I should be undeserving of the confidence you have
honoured me with if I felt no desire for its continuance
or no farther curiosity on its subject I will
not apologize therefore for bringing it forward again
Thank you cried Lucy warmly for breaking
the ice you have set my heart at ease by it for I was
somehow or other afraid I had offended you by what I
told you that Monday
Offended me How could you suppose so Believe me
and Elinor spoke it with the truest sincerity
nothing could be farther from my intention than to give
you such an idea Could you have a motive for the trust
that was not honourable and flattering to me
And yet I do assure you replied Lucy her little
sharp eyes full of meaning there seemed to me to be
a coldness and displeasure in your manner that made me
quite uncomfortable I felt sure that you was angry with me
and have been quarrelling with myself ever since for having
took such a liberty as to trouble you with my affairs
But I am very glad to find it was only my own fancy
and that you really do not blame me If you knew what a
consolation it was to me to relieve my heart speaking to you
of what I am always thinking of every moment of my life
your compassion would make you overlook every thing else
I am sure
Indeed I can easily believe that it was a very great
relief to you to acknowledge your situation to me and be
assured that you shall never have reason to repent it
Your case is a very unfortunate one you seem to me to
be surrounded with difficulties and you will have need
of all your mutual affection to support you under them
Mr Ferrars I believe is entirely dependent on his mother
He has only two thousand pounds of his own it would
be madness to marry upon that though for my own part
I could give up every prospect of more without a sigh
I have been always used to a very small income and could
struggle with any poverty for him but I love him too well
to be the selfish means of robbing him perhaps of all that
his mother might give him if he married to please her
We must wait it may be for many years With almost every
other man in the world it would be an alarming prospect
but Edwards affection and constancy nothing can deprive me of
I know
That conviction must be every thing to you
and he is undoubtedly supported by the same trust in yours
If the strength of your reciprocal attachment had failed
as between many people and under many circumstances
it naturally would during a four years engagement
your situation would have been pitiable indeed
Lucy here looked up but Elinor was careful
in guarding her countenance from every expression
that could give her words a suspicious tendency
Edwards love for me said Lucy has been pretty
well put to the test by our long very long absence
since we were first engaged and it has stood the trial
so well that I should be unpardonable to doubt it now
I can safely say that he has never gave me one moments
alarm on that account from the first
Elinor hardly knew whether to smile or sigh
at this assertion
Lucy went on I am rather of a jealous temper too
by nature and from our different situations in life
from his being so much more in the world than me and our
continual separation I was enough inclined for suspicion
to have found out the truth in an instant if there had been
the slightest alteration in his behaviour to me when we met
or any lowness of spirits that I could not account for
or if he had talked more of one lady than another
or seemed in any respect less happy at Longstaple than he
used to be I do not mean to say that I am particularly
observant or quicksighted in general but in such a case
I am sure I could not be deceived
All this thought Elinor is very pretty
but it can impose upon neither of us
But what said she after a short silence
are your views or have you none but that of waiting for
Mrs Ferrarss death which is a melancholy and shocking
extremityIs her son determined to submit to this
and to all the tediousness of the many years of suspense
in which it may involve you rather than run the risk
of her displeasure for a while by owning the truth
If we could be certain that it would be only
for a while But Mrs Ferrars is a very headstrong
proud woman and in her first fit of anger upon hearing
it would very likely secure every thing to Robert
and the idea of that for Edwards sake frightens away
all my inclination for hasty measures
And for your own sake too or you are carrying
your disinterestedness beyond reason
Lucy looked at Elinor again and was silent
Do you know Mr Robert Ferrars asked Elinor
Not at allI never saw him but I fancy he
is very unlike his brothersilly and a great coxcomb
A great coxcomb repeated Miss Steele whose ear had
caught those words by a sudden pause in Mariannes music
Oh they are talking of their favourite beaux I dare say
No sister cried Lucy you are mistaken there our
favourite beaux are NOT great coxcombs
I can answer for it that Miss Dashwoods is not
said Mrs Jennings laughing heartily for he is one
of the modestest prettiest behaved young men I ever saw
but as for Lucy she is such a sly little creature
there is no finding out who SHE likes
Oh cried Miss Steele looking significantly round
at them I dare say Lucys beau is quite as modest
and pretty behaved as Miss Dashwoods
Elinor blushed in spite of herself Lucy bit her lip
and looked angrily at her sister A mutual silence took
place for some time Lucy first put an end to it by saying
in a lower tone though Marianne was then giving them
the powerful protection of a very magnificent concerto
I will honestly tell you of one scheme which has
lately come into my head for bringing matters to bear
indeed I am bound to let you into the secret for you
are a party concerned I dare say you have seen enough
of Edward to know that he would prefer the church to every
other profession now my plan is that he should take
orders as soon as he can and then through your interest
which I am sure you would be kind enough to use out of
friendship for him and I hope out of some regard to me
your brother might be persuaded to give him Norland living
which I understand is a very good one and the present
incumbent not likely to live a great while That would
be enough for us to marry upon and we might trust to time
and chance for the rest
I should always be happy replied Elinor to show
any mark of my esteem and friendship for Mr Ferrars
but do you not perceive that my interest on such an
occasion would be perfectly unnecessary He is brother
to Mrs John DashwoodTHAT must be recommendation enough
to her husband
But Mrs John Dashwood would not much approve
of Edwards going into orders
Then I rather suspect that my interest would
do very little
They were again silent for many minutes At length
Lucy exclaimed with a deep sigh
I believe it would be the wisest way to put an end
to the business at once by dissolving the engagement
We seem so beset with difficulties on every side
that though it would make us miserable for a time
we should be happier perhaps in the end But you will
not give me your advice Miss Dashwood
No answered Elinor with a smile which concealed
very agitated feelings on such a subject I certainly
will not You know very well that my opinion would have
no weight with you unless it were on the side of your wishes
Indeed you wrong me replied Lucy with great
solemnity I know nobody of whose judgment I think
so highly as I do of yours and I do really believe
that if you was to say to me I advise you by all means
to put an end to your engagement with Edward Ferrars
it will be more for the happiness of both of you
I should resolve upon doing it immediately
Elinor blushed for the insincerity of Edwards
future wife and replied This compliment would effectually
frighten me from giving any opinion on the subject
had I formed one It raises my influence much too high
the power of dividing two people so tenderly attached
is too much for an indifferent person
Tis because you are an indifferent person said Lucy
with some pique and laying a particular stress on those words
that your judgment might justly have such weight with me
If you could be supposed to be biased in any respect
by your own feelings your opinion would not be worth having
Elinor thought it wisest to make no answer to this
lest they might provoke each other to an unsuitable increase
of ease and unreserve and was even partly determined
never to mention the subject again Another pause
therefore of many minutes duration succeeded this speech
and Lucy was still the first to end it
Shall you be in town this winter Miss Dashwood
said she with all her accustomary complacency
Certainly not
I am sorry for that returned the other
while her eyes brightened at the information
it would have gave me such pleasure to meet you there
But I dare say you will go for all that To be sure
your brother and sister will ask you to come to them
It will not be in my power to accept their invitation
if they do
How unlucky that is I had quite depended upon
meeting you there Anne and me are to go the latter end
of January to some relations who have been wanting us to
visit them these several years But I only go for the sake
of seeing Edward He will be there in February otherwise
London would have no charms for me I have not spirits for it
Elinor was soon called to the cardtable by the
conclusion of the first rubber and the confidential
discourse of the two ladies was therefore at an end
to which both of them submitted without any reluctance
for nothing had been said on either side to make them
dislike each other less than they had done before
and Elinor sat down to the card table with the melancholy
persuasion that Edward was not only without affection
for the person who was to be his wife but that he had
not even the chance of being tolerably happy in marriage
which sincere affection on HER side would have given
for selfinterest alone could induce a woman to keep a man
to an engagement of which she seemed so thoroughly aware
that he was weary
From this time the subject was never revived by Elinor
and when entered on by Lucy who seldom missed an opportunity
of introducing it and was particularly careful to inform
her confidante of her happiness whenever she received a letter
from Edward it was treated by the former with calmness
and caution and dismissed as soon as civility would allow
for she felt such conversations to be an indulgence which
Lucy did not deserve and which were dangerous to herself
The visit of the Miss Steeles at Barton Park was
lengthened far beyond what the first invitation implied
Their favour increased they could not be spared
Sir John would not hear of their going and in spite
of their numerous and long arranged engagements in Exeter
in spite of the absolute necessity of returning to fulfill
them immediately which was in full force at the end
of every week they were prevailed on to stay nearly two
months at the park and to assist in the due celebration
of that festival which requires a more than ordinary
share of private balls and large dinners to proclaim
its importance
CHAPTER 25
Though Mrs Jennings was in the habit of spending a large
portion of the year at the houses of her children and friends
she was not without a settled habitation of her own
Since the death of her husband who had traded with success
in a less elegant part of the town she had resided every
winter in a house in one of the streets near Portman Square
Towards this home she began on the approach of January
to turn her thoughts and thither she one day abruptly
and very unexpectedly by them asked the elder Misses
Dashwood to accompany her Elinor without observing
the varying complexion of her sister and the animated look
which spoke no indifference to the plan immediately gave
a grateful but absolute denial for both in which she
believed herself to be speaking their united inclinations
The reason alleged was their determined resolution
of not leaving their mother at that time of the year
Mrs Jennings received the refusal with some surprise
and repeated her invitation immediately
Oh Lord I am sure your mother can spare you
very well and I DO beg you will favour me with
your company for Ive quite set my heart upon it
Dont fancy that you will be any inconvenience to me
for I shant put myself at all out of my way for you
It will only be sending Betty by the coach and I
hope I can afford THAT We three shall be able to go
very well in my chaise and when we are in town
if you do not like to go wherever I do well and good
you may always go with one of my daughters I am sure
your mother will not object to it for I have had such
good luck in getting my own children off my hands that she
will think me a very fit person to have the charge of you
and if I dont get one of you at least well married
before I have done with you it shall not be my fault
I shall speak a good word for you to all the young men
you may depend upon it
I have a notion said Sir John that Miss Marianne
would not object to such a scheme if her elder sister
would come into it It is very hard indeed that she
should not have a little pleasure because Miss Dashwood
does not wish it So I would advise you two to set off
for town when you are tired of Barton without saying
a word to Miss Dashwood about it
Nay cried Mrs Jennings I am sure I shall be
monstrous glad of Miss Mariannes company whether Miss
Dashwood will go or not only the more the merrier say I
and I thought it would be more comfortable for them to
be together because if they got tired of me they might talk
to one another and laugh at my old ways behind my back
But one or the other if not both of them I must have
Lord bless me how do you think I can live poking by myself
I who have been always used till this winter to have
Charlotte with me Come Miss Marianne let us strike
hands upon the bargain and if Miss Dashwood will change
her mind by and bye why so much the better
I thank you maam sincerely thank you said Marianne
with warmth your invitation has insured my gratitude for ever
and it would give me such happiness yes almost the greatest
happiness I am capable of to be able to accept it
But my mother my dearest kindest motherI feel the
justice of what Elinor has urged and if she were to be
made less happy less comfortable by our absenceOh no
nothing should tempt me to leave her It should not
must not be a struggle
Mrs Jennings repeated her assurance that Mrs Dashwood
could spare them perfectly well and Elinor who now
understood her sister and saw to what indifference to
almost every thing else she was carried by her eagerness
to be with Willoughby again made no farther direct
opposition to the plan and merely referred it to her
mothers decision from whom however she scarcely expected
to receive any support in her endeavour to prevent a visit
which she could not approve of for Marianne and which
on her own account she had particular reasons to avoid
Whatever Marianne was desirous of her mother would be eager
to promoteshe could not expect to influence the latter
to cautiousness of conduct in an affair respecting which she
had never been able to inspire her with distrust and she
dared not explain the motive of her own disinclination
for going to London That Marianne fastidious as she was
thoroughly acquainted with Mrs Jennings manners
and invariably disgusted by them should overlook every
inconvenience of that kind should disregard whatever
must be most wounding to her irritable feelings in her
pursuit of one object was such a proof so strong
so full of the importance of that object to her as Elinor
in spite of all that had passed was not prepared to witness
On being informed of the invitation Mrs Dashwood
persuaded that such an excursion would be productive
of much amusement to both her daughters and perceiving
through all her affectionate attention to herself
how much the heart of Marianne was in it would not hear
of their declining the offer upon HER account insisted on
their both accepting it directly and then began to foresee
with her usual cheerfulness a variety of advantages that
would accrue to them all from this separation
I am delighted with the plan she cried
it is exactly what I could wish Margaret and I shall
be as much benefited by it as yourselves When you
and the Middletons are gone we shall go on so quietly
and happily together with our books and our music You
will find Margaret so improved when you come back again
I have a little plan of alteration for your bedrooms too
which may now be performed without any inconvenience
to any one It is very right that you SHOULD go to town
I would have every young woman of your condition in life
acquainted with the manners and amusements of London
You will be under the care of a motherly good sort
of woman of whose kindness to you I can have no doubt
And in all probability you will see your brother
and whatever may be his faults or the faults of his wife
when I consider whose son he is I cannot bear to have you so
wholly estranged from each other
Though with your usual anxiety for our happiness
said Elinor you have been obviating every impediment
to the present scheme which occurred to you there is
still one objection which in my opinion cannot be so
easily removed
Mariannes countenance sunk
And what said Mrs Dashwood is my dear prudent
Elinor going to suggest What formidable obstacle is she
now to bring forward Do let me hear a word about the
expense of it
My objection is this though I think very well of
Mrs Jenningss heart she is not a woman whose society
can afford us pleasure or whose protection will give
us consequence
That is very true replied her mother but of
her society separately from that of other people
you will scarcely have any thing at all and you will
almost always appear in public with Lady Middleton
If Elinor is frightened away by her dislike of
Mrs Jennings said Marianne at least it need not prevent
MY accepting her invitation I have no such scruples
and I am sure I could put up with every unpleasantness
of that kind with very little effort
Elinor could not help smiling at this display of
indifference towards the manners of a person to whom she
had often had difficulty in persuading Marianne to behave
with tolerable politeness and resolved within herself
that if her sister persisted in going she would
go likewise as she did not think it proper that Marianne
should be left to the sole guidance of her own judgment
or that Mrs Jennings should be abandoned to the mercy
of Marianne for all the comfort of her domestic hours
To this determination she was the more easily reconciled
by recollecting that Edward Ferrars by Lucys account
was not to be in town before February and that
their visit without any unreasonable abridgement
might be previously finished
I will have you BOTH go said Mrs Dashwood
these objections are nonsensical You will have much
pleasure in being in London and especially in being together
and if Elinor would ever condescend to anticipate enjoyment
she would foresee it there from a variety of sources
she would perhaps expect some from improving her
acquaintance with her sisterinlaws family
Elinor had often wished for an opportunity of
attempting to weaken her mothers dependence on the
attachment of Edward and herself that the shock might
be less when the whole truth were revealed and now
on this attack though almost hopeless of success
she forced herself to begin her design by saying
as calmly as she could I like Edward Ferrars very much
and shall always be glad to see him but as to the rest
of the family it is a matter of perfect indifference
to me whether I am ever known to them or not
Mrs Dashwood smiled and said nothing
Marianne lifted up her eyes in astonishment and Elinor
conjectured that she might as well have held her tongue
After very little farther discourse it was finally
settled that the invitation should be fully accepted
Mrs Jennings received the information with a great
deal of joy and many assurances of kindness and care
nor was it a matter of pleasure merely to her Sir John
was delighted for to a man whose prevailing anxiety
was the dread of being alone the acquisition of two
to the number of inhabitants in London was something
Even Lady Middleton took the trouble of being delighted
which was putting herself rather out of her way
and as for the Miss Steeles especially Lucy they had
never been so happy in their lives as this intelligence
made them
Elinor submitted to the arrangement which counteracted
her wishes with less reluctance than she had expected
to feel With regard to herself it was now a matter
of unconcern whether she went to town or not and when
she saw her mother so thoroughly pleased with the plan
and her sister exhilarated by it in look voice and manner
restored to all her usual animation and elevated to more
than her usual gaiety she could not be dissatisfied
with the cause and would hardly allow herself to distrust
the consequence
Mariannes joy was almost a degree beyond happiness
so great was the perturbation of her spirits and her
impatience to be gone Her unwillingness to quit her
mother was her only restorative to calmness and at the
moment of parting her grief on that score was excessive
Her mothers affliction was hardly less and Elinor
was the only one of the three who seemed to consider
the separation as any thing short of eternal
Their departure took place in the first week in January
The Middletons were to follow in about a week The Miss
Steeles kept their station at the park and were to quit
it only with the rest of the family
CHAPTER 26
Elinor could not find herself in the carriage with Mrs Jennings
and beginning a journey to London under her protection
and as her guest without wondering at her own situation
so short had their acquaintance with that lady been
so wholly unsuited were they in age and disposition
and so many had been her objections against such a measure
only a few days before But these objections had all
with that happy ardour of youth which Marianne and her mother
equally shared been overcome or overlooked and Elinor
in spite of every occasional doubt of Willoughbys constancy
could not witness the rapture of delightful expectation
which filled the whole soul and beamed in the eyes
of Marianne without feeling how blank was her own prospect
how cheerless her own state of mind in the comparison
and how gladly she would engage in the solicitude of
Mariannes situation to have the same animating object
in view the same possibility of hope A short a very
short time however must now decide what Willoughbys
intentions were in all probability he was already in town
Mariannes eagerness to be gone declared her dependence
on finding him there and Elinor was resolved not only upon
gaining every new light as to his character which her
own observation or the intelligence of others could give her
but likewise upon watching his behaviour to her sister
with such zealous attention as to ascertain what he was
and what he meant before many meetings had taken place
Should the result of her observations be unfavourable
she was determined at all events to open the eyes
of her sister should it be otherwise her exertions
would be of a different natureshe must then learn
to avoid every selfish comparison and banish every regret
which might lessen her satisfaction in the happiness of Marianne
They were three days on their journey and Mariannes
behaviour as they travelled was a happy specimen of what
future complaisance and companionableness to Mrs Jennings
might be expected to be She sat in silence almost all
the way wrapt in her own meditations and scarcely ever
voluntarily speaking except when any object of picturesque
beauty within their view drew from her an exclamation
of delight exclusively addressed to her sister To atone
for this conduct therefore Elinor took immediate possession
of the post of civility which she had assigned herself
behaved with the greatest attention to Mrs Jennings
talked with her laughed with her and listened to her
whenever she could and Mrs Jennings on her side
treated them both with all possible kindness was solicitous
on every occasion for their ease and enjoyment and only
disturbed that she could not make them choose their own
dinners at the inn nor extort a confession of their
preferring salmon to cod or boiled fowls to veal cutlets
They reached town by three oclock the third day glad to
be released after such a journey from the confinement
of a carriage and ready to enjoy all the luxury of a good fire
The house was handsome and handsomely fitted up
and the young ladies were immediately put in possession
of a very comfortable apartment It had formerly
been Charlottes and over the mantelpiece still hung
a landscape in coloured silks of her performance
in proof of her having spent seven years at a great school
in town to some effect
As dinner was not to be ready in less than two
hours from their arrival Elinor determined to employ
the interval in writing to her mother and sat down for
that purpose In a few moments Marianne did the same
I am writing home Marianne said Elinor had not you
better defer your letter for a day or two
I am NOT going to write to my mother
replied Marianne hastily and as if wishing to avoid
any farther inquiry Elinor said no more it immediately
struck her that she must then be writing to Willoughby
and the conclusion which as instantly followed was
that however mysteriously they might wish to conduct
the affair they must be engaged This conviction
though not entirely satisfactory gave her pleasure
and she continued her letter with greater alacrity
Mariannes was finished in a very few minutes
in length it could be no more than a note it was then
folded up sealed and directed with eager rapidity
Elinor thought she could distinguish a large W in
the direction and no sooner was it complete than Marianne
ringing the bell requested the footman who answered it
to get that letter conveyed for her to the twopenny post
This decided the matter at once
Her spirits still continued very high but there
was a flutter in them which prevented their giving much
pleasure to her sister and this agitation increased as
the evening drew on She could scarcely eat any dinner
and when they afterwards returned to the drawing room
seemed anxiously listening to the sound of every carriage
It was a great satisfaction to Elinor that Mrs Jennings
by being much engaged in her own room could see little
of what was passing The tea things were brought in
and already had Marianne been disappointed more than once
by a rap at a neighbouring door when a loud one was suddenly
heard which could not be mistaken for one at any other house
Elinor felt secure of its announcing Willoughbys approach
and Marianne starting up moved towards the door
Every thing was silent this could not be borne many seconds
she opened the door advanced a few steps towards the stairs
and after listening half a minute returned into the room
in all the agitation which a conviction of having heard
him would naturally produce in the ecstasy of her
feelings at that instant she could not help exclaiming
Oh Elinor it is Willoughby indeed it is and seemed
almost ready to throw herself into his arms when Colonel
Brandon appeared
It was too great a shock to be borne with calmness
and she immediately left the room Elinor was disappointed too
but at the same time her regard for Colonel Brandon ensured
his welcome with her and she felt particularly hurt that
a man so partial to her sister should perceive that she
experienced nothing but grief and disappointment in seeing him
She instantly saw that it was not unnoticed by him
that he even observed Marianne as she quitted the room
with such astonishment and concern as hardly left him
the recollection of what civility demanded towards herself
Is your sister ill said he
Elinor answered in some distress that she was
and then talked of headaches low spirits and over fatigues
and of every thing to which she could decently attribute
her sisters behaviour
He heard her with the most earnest attention
but seeming to recollect himself said no more on the subject
and began directly to speak of his pleasure at seeing them
in London making the usual inquiries about their journey
and the friends they had left behind
In this calm kind of way with very little interest
on either side they continued to talk both of them out
of spirits and the thoughts of both engaged elsewhere
Elinor wished very much to ask whether Willoughby were
then in town but she was afraid of giving him pain
by any enquiry after his rival and at length by way
of saying something she asked if he had been in London
ever since she had seen him last Yes he replied
with some embarrassment almost ever since I have been
once or twice at Delaford for a few days but it has never
been in my power to return to Barton
This and the manner in which it was said
immediately brought back to her remembrance all the
circumstances of his quitting that place with the
uneasiness and suspicions they had caused to Mrs Jennings
and she was fearful that her question had implied
much more curiosity on the subject than she had ever felt
Mrs Jennings soon came in Oh Colonel said she
with her usual noisy cheerfulness I am monstrous glad
to see yousorry I could not come beforebeg your
pardon but I have been forced to look about me a little
and settle my matters for it is a long while since I
have been at home and you know one has always a world
of little odd things to do after one has been away for
any time and then I have had Cartwright to settle with
Lord I have been as busy as a bee ever since dinner
But pray Colonel how came you to conjure out that I should
be in town today
I had the pleasure of hearing it at Mr Palmers
where I have been dining
Oh you did well and how do they all do at their
house How does Charlotte do I warrant you she is a fine
size by this time
Mrs Palmer appeared quite well and I am commissioned
to tell you that you will certainly see her tomorrow
Ay to be sure I thought as much Well Colonel
I have brought two young ladies with me you seethat is
you see but one of them now but there is another somewhere
Your friend Miss Marianne toowhich you will not be
sorry to hear I do not know what you and Mr Willoughby
will do between you about her Ay it is a fine thing
to be young and handsome Well I was young once but I
never was very handsomeworse luck for me However I got
a very good husband and I dont know what the greatest
beauty can do more Ah poor man he has been dead
these eight years and better But Colonel where have
you been to since we parted And how does your business
go on Come come lets have no secrets among friends
He replied with his accustomary mildness to all
her inquiries but without satisfying her in any
Elinor now began to make the tea and Marianne was
obliged to appear again
After her entrance Colonel Brandon became
more thoughtful and silent than he had been before
and Mrs Jennings could not prevail on him to stay long
No other visitor appeared that evening and the ladies
were unanimous in agreeing to go early to bed
Marianne rose the next morning with recovered spirits
and happy looks The disappointment of the evening before
seemed forgotten in the expectation of what was to happen
that day They had not long finished their breakfast before
Mrs Palmers barouche stopped at the door and in a few
minutes she came laughing into the room so delighted
to see them all that it was hard to say whether she
received most pleasure from meeting her mother or the Miss
Dashwoods again So surprised at their coming to town
though it was what she had rather expected all along
so angry at their accepting her mothers invitation
after having declined her own though at the same time
she would never have forgiven them if they had not come
Mr Palmer will be so happy to see you
said she What do you think he said when he heard
of your coming with Mamma I forget what it was now
but it was something so droll
After an hour or two spent in what her mother called
comfortable chat or in other words in every variety of inquiry
concerning all their acquaintance on Mrs Jenningss side
and in laughter without cause on Mrs Palmers it was
proposed by the latter that they should all accompany
her to some shops where she had business that morning
to which Mrs Jennings and Elinor readily consented
as having likewise some purchases to make themselves
and Marianne though declining it at first was induced
to go likewise
Wherever they went she was evidently always on
the watch In Bond Street especially where much of
their business lay her eyes were in constant inquiry
and in whatever shop the party were engaged her mind was
equally abstracted from every thing actually before them
from all that interested and occupied the others
Restless and dissatisfied every where her sister could
never obtain her opinion of any article of purchase
however it might equally concern them both she received
no pleasure from anything was only impatient to be at
home again and could with difficulty govern her vexation
at the tediousness of Mrs Palmer whose eye was caught
by every thing pretty expensive or new who was wild
to buy all could determine on none and dawdled away her
time in rapture and indecision
It was late in the morning before they returned home
and no sooner had they entered the house than Marianne flew
eagerly up stairs and when Elinor followed she found
her turning from the table with a sorrowful countenance
which declared that no Willoughby had been there
Has no letter been left here for me since we went out
said she to the footman who then entered with the parcels
She was answered in the negative Are you quite sure
of it she replied Are you certain that no servant
no porter has left any letter or note
The man replied that none had
How very odd said she in a low and disappointed
voice as she turned away to the window
How odd indeed repeated Elinor within herself
regarding her sister with uneasiness If she had not
known him to be in town she would not have written to him
as she did she would have written to Combe Magna
and if he is in town how odd that he should neither
come nor write Oh my dear mother you must be wrong
in permitting an engagement between a daughter so young
a man so little known to be carried on in so doubtful
so mysterious a manner I long to inquire and how will MY
interference be borne
She determined after some consideration that if
appearances continued many days longer as unpleasant as they
now were she would represent in the strongest manner
to her mother the necessity of some serious enquiry into the
affair
Mrs Palmer and two elderly ladies of Mrs Jenningss
intimate acquaintance whom she had met and invited
in the morning dined with them The former left them
soon after tea to fulfill her evening engagements
and Elinor was obliged to assist in making a whist table
for the others Marianne was of no use on these occasions
as she would never learn the game but though her time
was therefore at her own disposal the evening was by no
means more productive of pleasure to her than to Elinor
for it was spent in all the anxiety of expectation and the
pain of disappointment She sometimes endeavoured for a
few minutes to read but the book was soon thrown aside
and she returned to the more interesting employment
of walking backwards and forwards across the room
pausing for a moment whenever she came to the window
in hopes of distinguishing the longexpected rap
CHAPTER 27
If this open weather holds much longer said Mrs Jennings
when they met at breakfast the following morning
Sir John will not like leaving Barton next week
tis a sad thing for sportsmen to lose a days pleasure
Poor souls I always pity them when they do they seem
to take it so much to heart
That is true cried Marianne in a cheerful voice
and walking to the window as she spoke to examine the day
I had not thought of that This weather will keep many
sportsmen in the country
It was a lucky recollection all her good spirits were
restored by it It is charming weather for THEM indeed
she continued as she sat down to the breakfast table
with a happy countenance How much they must enjoy
it But with a little return of anxiety it cannot
be expected to last long At this time of the year
and after such a series of rain we shall certainly
have very little more of it Frosts will soon set in
and in all probability with severity In another day
or two perhaps this extreme mildness can hardly last
longernay perhaps it may freeze tonight
At any rate said Elinor wishing to prevent
Mrs Jennings from seeing her sisters thoughts as clearly
as she did I dare say we shall have Sir John and Lady
Middleton in town by the end of next week
Ay my dear Ill warrant you we do Mary always
has her own way
And now silently conjectured Elinor she will
write to Combe by this days post
But if she DID the letter was written and sent away
with a privacy which eluded all her watchfulness to ascertain
the fact Whatever the truth of it might be and far
as Elinor was from feeling thorough contentment about it
yet while she saw Marianne in spirits she could not be
very uncomfortable herself And Marianne was in spirits
happy in the mildness of the weather and still happier
in her expectation of a frost
The morning was chiefly spent in leaving cards at
the houses of Mrs Jenningss acquaintance to inform
them of her being in town and Marianne was all the time
busy in observing the direction of the wind watching the
variations of the sky and imagining an alteration in the air
Dont you find it colder than it was in the morning
Elinor There seems to me a very decided difference
I can hardly keep my hands warm even in my muff It was
not so yesterday I think The clouds seem parting too
the sun will be out in a moment and we shall have a
clear afternoon
Elinor was alternately diverted and pained
but Marianne persevered and saw every night in the
brightness of the fire and every morning in the appearance
of the atmosphere the certain symptoms of approaching frost
The Miss Dashwoods had no greater reason to be
dissatisfied with Mrs Jenningss style of living and set
of acquaintance than with her behaviour to themselves
which was invariably kind Every thing in her household
arrangements was conducted on the most liberal plan
and excepting a few old city friends whom to Lady
Middletons regret she had never dropped she visited
no one to whom an introduction could at all discompose
the feelings of her young companions Pleased to find
herself more comfortably situated in that particular than
she had expected Elinor was very willing to compound
for the want of much real enjoyment from any of their
evening parties which whether at home or abroad
formed only for cards could have little to amuse her
Colonel Brandon who had a general invitation
to the house was with them almost every day he came
to look at Marianne and talk to Elinor who often derived
more satisfaction from conversing with him than from any
other daily occurrence but who saw at the same time
with much concern his continued regard for her sister
She feared it was a strengthening regard It grieved her
to see the earnestness with which he often watched Marianne
and his spirits were certainly worse than when at Barton
About a week after their arrival it became
certain that Willoughby was also arrived His card
was on the table when they came in from the mornings drive
Good God cried Marianne he has been here while
we were out Elinor rejoiced to be assured of his
being in London now ventured to say Depend upon it
he will call again tomorrow But Marianne seemed
hardly to hear her and on Mrs Jennings entrance
escaped with the precious card
This event while it raised the spirits of Elinor
restored to those of her sister all and more than all
their former agitation From this moment her mind was
never quiet the expectation of seeing him every hour
of the day made her unfit for any thing She insisted
on being left behind the next morning when the others
went out
Elinors thoughts were full of what might be passing
in Berkeley Street during their absence but a moments
glance at her sister when they returned was enough to
inform her that Willoughby had paid no second visit there
A note was just then brought in and laid on the table
For me cried Marianne stepping hastily forward
No maam for my mistress
But Marianne not convinced took it instantly up
It is indeed for Mrs Jennings how provoking
You are expecting a letter then said Elinor
unable to be longer silent
Yes a littlenot much
After a short pause You have no confidence
in me Marianne
Nay Elinor this reproach from YOUyou who have
confidence in no one
Me returned Elinor in some confusion indeed
Marianne I have nothing to tell
Nor I answered Marianne with energy our situations
then are alike We have neither of us any thing to tell
you because you do not communicate and I because
I conceal nothing
Elinor distressed by this charge of reserve in herself
which she was not at liberty to do away knew not how
under such circumstances to press for greater openness
in Marianne
Mrs Jennings soon appeared and the note being
given her she read it aloud It was from Lady Middleton
announcing their arrival in Conduit Street the night before
and requesting the company of her mother and cousins
the following evening Business on Sir Johns part
and a violent cold on her own prevented their calling
in Berkeley Street The invitation was accepted
but when the hour of appointment drew near necessary as
it was in common civility to Mrs Jennings that they
should both attend her on such a visit Elinor had some
difficulty in persuading her sister to go for still
she had seen nothing of Willoughby and therefore was
not more indisposed for amusement abroad than unwilling
to run the risk of his calling again in her absence
Elinor found when the evening was over
that disposition is not materially altered by a change
of abode for although scarcely settled in town
Sir John had contrived to collect around him nearly twenty
young people and to amuse them with a ball This was
an affair however of which Lady Middleton did not approve
In the country an unpremeditated dance was very allowable
but in London where the reputation of elegance was more
important and less easily attained it was risking too much
for the gratification of a few girls to have it known that
Lady Middleton had given a small dance of eight or nine couple
with two violins and a mere sideboard collation
Mr and Mrs Palmer were of the party from the former
whom they had not seen before since their arrival in town
as he was careful to avoid the appearance of any attention
to his motherinlaw and therefore never came near her
they received no mark of recognition on their entrance
He looked at them slightly without seeming to know
who they were and merely nodded to Mrs Jennings from
the other side of the room Marianne gave one glance
round the apartment as she entered it was enoughHE
was not thereand she sat down equally illdisposed
to receive or communicate pleasure After they had been
assembled about an hour Mr Palmer sauntered towards
the Miss Dashwoods to express his surprise on seeing them
in town though Colonel Brandon had been first informed
of their arrival at his house and he had himself said
something very droll on hearing that they were to come
I thought you were both in Devonshire said he
Did you replied Elinor
When do you go back again
I do not know And thus ended their discourse
Never had Marianne been so unwilling to dance
in her life as she was that evening and never so much
fatigued by the exercise She complained of it
as they returned to Berkeley Street
Aye aye said Mrs Jennings we know the reason
of all that very well if a certain person who shall
be nameless had been there you would not have been a
bit tired and to say the truth it was not very pretty
of him not to give you the meeting when he was invited
Invited cried Marianne
So my daughter Middleton told me for it seems Sir
John met him somewhere in the street this morning
Marianne said no more but looked exceedingly hurt
Impatient in this situation to be doing something
that might lead to her sisters relief Elinor resolved
to write the next morning to her mother and hoped
by awakening her fears for the health of Marianne
to procure those inquiries which had been so long delayed
and she was still more eagerly bent on this measure
by perceiving after breakfast on the morrow that Marianne
was again writing to Willoughby for she could not suppose
it to be to any other person
About the middle of the day Mrs Jennings went out by
herself on business and Elinor began her letter directly
while Marianne too restless for employment too anxious
for conversation walked from one window to the other
or sat down by the fire in melancholy meditation
Elinor was very earnest in her application to her mother
relating all that had passed her suspicions of
Willoughbys inconstancy urging her by every plea
of duty and affection to demand from Marianne an account
of her real situation with respect to him
Her letter was scarcely finished when a rap
foretold a visitor and Colonel Brandon was announced
Marianne who had seen him from the window and who hated
company of any kind left the room before he entered it
He looked more than usually grave and though expressing
satisfaction at finding Miss Dashwood alone as if he
had somewhat in particular to tell her sat for some
time without saying a word Elinor persuaded that he
had some communication to make in which her sister
was concerned impatiently expected its opening
It was not the first time of her feeling the same kind
of conviction for more than once before beginning with
the observation of your sister looks unwell today
or your sister seems out of spirits he had appeared
on the point either of disclosing or of inquiring
something particular about her After a pause of several
minutes their silence was broken by his asking her
in a voice of some agitation when he was to congratulate
her on the acquisition of a brother Elinor was not
prepared for such a question and having no answer ready
was obliged to adopt the simple and common expedient
of asking what he meant He tried to smile as he replied
your sisters engagement to Mr Willoughby is very generally
known
It cannot be generally known returned Elinor
for her own family do not know it
He looked surprised and said I beg your pardon
I am afraid my inquiry has been impertinent but I had not
supposed any secrecy intended as they openly correspond
and their marriage is universally talked of
How can that be By whom can you have heard
it mentioned
By manyby some of whom you know nothing by others
with whom you are most intimate Mrs Jennings Mrs Palmer
and the Middletons But still I might not have believed it
for where the mind is perhaps rather unwilling to
be convinced it will always find something to support
its doubts if I had not when the servant let me in today
accidentally seen a letter in his hand directed to
Mr Willoughby in your sisters writing I came to inquire
but I was convinced before I could ask the question
Is every thing finally settled Is it impossible to
But I have no right and I could have no chance of succeeding
Excuse me Miss Dashwood I believe I have been wrong
in saying so much but I hardly know what to do and on
your prudence I have the strongest dependence Tell me
that it is all absolutely resolved on that any attempt
that in short concealment if concealment be possible
is all that remains
These words which conveyed to Elinor a direct avowal
of his love for her sister affected her very much
She was not immediately able to say anything and even
when her spirits were recovered she debated for a short
time on the answer it would be most proper to give
The real state of things between Willoughby and her sister
was so little known to herself that in endeavouring
to explain it she might be as liable to say too much
as too little Yet as she was convinced that Mariannes
affection for Willoughby could leave no hope of Colonel
Brandons success whatever the event of that affection
might be and at the same time wished to shield her conduct
from censure she thought it most prudent and kind
after some consideration to say more than she really knew
or believed She acknowledged therefore that though
she had never been informed by themselves of the terms
on which they stood with each other of their mutual
affection she had no doubt and of their correspondence
she was not astonished to hear
He listened to her with silent attention and on
her ceasing to speak rose directly from his seat
and after saying in a voice of emotion to your sister
I wish all imaginable happiness to Willoughby that he
may endeavour to deserve hertook leave and went away
Elinor derived no comfortable feelings from this
conversation to lessen the uneasiness of her mind on
other points she was left on the contrary with a
melancholy impression of Colonel Brandons unhappiness
and was prevented even from wishing it removed
by her anxiety for the very event that must confirm it
CHAPTER 28
Nothing occurred during the next three or four days
to make Elinor regret what she had done in applying
to her mother for Willoughby neither came nor wrote
They were engaged about the end of that time to attend
Lady Middleton to a party from which Mrs Jennings was
kept away by the indisposition of her youngest daughter
and for this party Marianne wholly dispirited
careless of her appearance and seeming equally indifferent
whether she went or staid prepared without one look
of hope or one expression of pleasure She sat by the
drawingroom fire after tea till the moment of Lady
Middletons arrival without once stirring from her seat
or altering her attitude lost in her own thoughts
and insensible of her sisters presence and when at
last they were told that Lady Middleton waited for them
at the door she started as if she had forgotten that
any one was expected
They arrived in due time at the place of destination
and as soon as the string of carriages before them
would allow alighted ascended the stairs heard their
names announced from one landingplace to another in an
audible voice and entered a room splendidly lit up
quite full of company and insufferably hot When they had
paid their tribute of politeness by curtsying to the lady
of the house they were permitted to mingle in the crowd
and take their share of the heat and inconvenience to
which their arrival must necessarily add After some time
spent in saying little or doing less Lady Middleton sat
down to Cassino and as Marianne was not in spirits for
moving about she and Elinor luckily succeeding to chairs
placed themselves at no great distance from the table
They had not remained in this manner long before Elinor
perceived Willoughby standing within a few yards
of them in earnest conversation with a very fashionable
looking young woman She soon caught his eye and he
immediately bowed but without attempting to speak to her
or to approach Marianne though he could not but see her
and then continued his discourse with the same lady
Elinor turned involuntarily to Marianne to see whether
it could be unobserved by her At that moment she first
perceived him and her whole countenance glowing with
sudden delight she would have moved towards him instantly
had not her sister caught hold of her
Good heavens she exclaimed he is therehe
is thereOh why does he not look at me why cannot
I speak to him
Pray pray be composed cried Elinor and do
not betray what you feel to every body present
Perhaps he has not observed you yet
This however was more than she could believe herself
and to be composed at such a moment was not only beyond
the reach of Marianne it was beyond her wish She sat
in an agony of impatience which affected every feature
At last he turned round again and regarded them both
she started up and pronouncing his name in a tone
of affection held out her hand to him He approached
and addressing himself rather to Elinor than Marianne
as if wishing to avoid her eye and determined not to
observe her attitude inquired in a hurried manner after
Mrs Dashwood and asked how long they had been in town
Elinor was robbed of all presence of mind by such an address
and was unable to say a word But the feelings of her sister
were instantly expressed Her face was crimsoned over
and she exclaimed in a voice of the greatest emotion
Good God Willoughby what is the meaning of this
Have you not received my letters Will you not shake
hands with me
He could not then avoid it but her touch seemed
painful to him and he held her hand only for a moment
During all this time he was evidently struggling for composure
Elinor watched his countenance and saw its expression
becoming more tranquil After a moments pause he spoke
with calmness
I did myself the honour of calling in Berkeley
Street last Tuesday and very much regretted that I was
not fortunate enough to find yourselves and Mrs Jennings
at home My card was not lost I hope
But have you not received my notes cried Marianne
in the wildest anxiety Here is some mistake I am
suresome dreadful mistake What can be the meaning
of it Tell me Willoughby for heavens sake tell me
what is the matter
He made no reply his complexion changed and all his
embarrassment returned but as if on catching the eye
of the young lady with whom he had been previously talking
he felt the necessity of instant exertion he recovered
himself again and after saying Yes I had the pleasure
of receiving the information of your arrival in town
which you were so good as to send me turned hastily away
with a slight bow and joined his friend
Marianne now looking dreadfully white and unable
to stand sunk into her chair and Elinor expecting every
moment to see her faint tried to screen her from the
observation of others while reviving her with lavender water
Go to him Elinor she cried as soon as she
could speak and force him to come to me Tell him
I must see him againmust speak to him instantly
I cannot restI shall not have a moments peace till this
is explainedsome dreadful misapprehension or other
Oh go to him this moment
How can that be done No my dearest Marianne
you must wait This is not the place for explanations
Wait only till tomorrow
With difficulty however could she prevent her
from following him herself and to persuade her to check
her agitation to wait at least with the appearance
of composure till she might speak to him with more privacy
and more effect was impossible for Marianne continued
incessantly to give way in a low voice to the misery
of her feelings by exclamations of wretchedness
In a short time Elinor saw Willoughby quit the room by the
door towards the staircase and telling Marianne that he
was gone urged the impossibility of speaking to him again
that evening as a fresh argument for her to be calm
She instantly begged her sister would entreat Lady
Middleton to take them home as she was too miserable
to stay a minute longer
Lady Middleton though in the middle of a rubber
on being informed that Marianne was unwell was too
polite to object for a moment to her wish of going away
and making over her cards to a friend they departed
as soon the carriage could be found Scarcely a word
was spoken during their return to Berkeley Street
Marianne was in a silent agony too much oppressed even
for tears but as Mrs Jennings was luckily not come home
they could go directly to their own room where hartshorn
restored her a little to herself She was soon undressed
and in bed and as she seemed desirous of being alone
her sister then left her and while she waited the return
of Mrs Jennings had leisure enough for thinking over
the past
That some kind of engagement had subsisted
between Willoughby and Marianne she could not doubt
and that Willoughby was weary of it seemed equally clear
for however Marianne might still feed her own wishes
SHE could not attribute such behaviour to mistake
or misapprehension of any kind Nothing but a thorough
change of sentiment could account for it Her indignation
would have been still stronger than it was had she
not witnessed that embarrassment which seemed to speak
a consciousness of his own misconduct and prevented
her from believing him so unprincipled as to have been
sporting with the affections of her sister from the first
without any design that would bear investigation
Absence might have weakened his regard and convenience
might have determined him to overcome it but that such
a regard had formerly existed she could not bring herself
to doubt
As for Marianne on the pangs which so unhappy a meeting
must already have given her and on those still more
severe which might await her in its probable consequence
she could not reflect without the deepest concern
Her own situation gained in the comparison for while she
could ESTEEM Edward as much as ever however they might be
divided in future her mind might be always supported
But every circumstance that could embitter such an evil
seemed uniting to heighten the misery of Marianne
in a final separation from Willoughbyin an immediate
and irreconcilable rupture with him
CHAPTER 29
Before the housemaid had lit their fire the next day
or the sun gained any power over a cold gloomy morning
in January Marianne only half dressed was kneeling
against one of the windowseats for the sake of all
the little light she could command from it and writing
as fast as a continual flow of tears would permit her
In this situation Elinor roused from sleep by her agitation
and sobs first perceived her and after observing her
for a few moments with silent anxiety said in a tone
of the most considerate gentleness
Marianne may I ask
No Elinor she replied ask nothing you will
soon know all
The sort of desperate calmness with which this was said
lasted no longer than while she spoke and was immediately
followed by a return of the same excessive affliction
It was some minutes before she could go on with her letter
and the frequent bursts of grief which still obliged her
at intervals to withhold her pen were proofs enough of her
feeling how more than probable it was that she was writing
for the last time to Willoughby
Elinor paid her every quiet and unobtrusive attention
in her power and she would have tried to sooth and
tranquilize her still more had not Marianne entreated her
with all the eagerness of the most nervous irritability
not to speak to her for the world In such circumstances
it was better for both that they should not be long together
and the restless state of Mariannes mind not only prevented
her from remaining in the room a moment after she was dressed
but requiring at once solitude and continual change of place
made her wander about the house till breakfast time avoiding
the sight of every body
At breakfast she neither ate nor attempted to eat
any thing and Elinors attention was then all employed
not in urging her not in pitying her nor in appearing
to regard her but in endeavouring to engage Mrs Jennings
notice entirely to herself
As this was a favourite meal with Mrs Jennings
it lasted a considerable time and they were just setting
themselves after it round the common working table when a
letter was delivered to Marianne which she eagerly caught
from the servant and turning of a deathlike paleness
instantly ran out of the room Elinor who saw as plainly
by this as if she had seen the direction that it must
come from Willoughby felt immediately such a sickness
at heart as made her hardly able to hold up her head
and sat in such a general tremour as made her fear it
impossible to escape Mrs Jennings notice That good lady
however saw only that Marianne had received a letter
from Willoughby which appeared to her a very good joke
and which she treated accordingly by hoping with a laugh
that she would find it to her liking Of Elinors distress
she was too busily employed in measuring lengths of worsted
for her rug to see any thing at all and calmly continuing
her talk as soon as Marianne disappeared she said
Upon my word I never saw a young woman so
desperately in love in my life MY girls were nothing
to her and yet they used to be foolish enough but as
for Miss Marianne she is quite an altered creature
I hope from the bottom of my heart he wont keep her
waiting much longer for it is quite grievous to see her
look so ill and forlorn Pray when are they to be married
Elinor though never less disposed to speak than at
that moment obliged herself to answer such an attack
as this and therefore trying to smile replied And have
you really Maam talked yourself into a persuasion
of my sisters being engaged to Mr Willoughby I thought
it had been only a joke but so serious a question seems
to imply more and I must beg therefore that you will not
deceive yourself any longer I do assure you that nothing
would surprise me more than to hear of their being going
to be married
For shame for shame Miss Dashwood how can you
talk so Dont we all know that it must be a match that
they were over head and ears in love with each other from
the first moment they met Did not I see them together
in Devonshire every day and all day long and did not I
know that your sister came to town with me on purpose
to buy wedding clothes Come come this wont do
Because you are so sly about it yourself you think nobody
else has any senses but it is no such thing I can tell you
for it has been known all over town this ever so long
I tell every body of it and so does Charlotte
Indeed Maam said Elinor very seriously
you are mistaken Indeed you are doing a very unkind thing
in spreading the report and you will find that you have
though you will not believe me now
Mrs Jennings laughed again but Elinor had not
spirits to say more and eager at all events to know
what Willoughby had written hurried away to their room
where on opening the door she saw Marianne stretched on
the bed almost choked by grief one letter in her hand
and two or three others laying by her Elinor drew near
but without saying a word and seating herself on the bed
took her hand kissed her affectionately several times
and then gave way to a burst of tears which at first
was scarcely less violent than Mariannes The latter
though unable to speak seemed to feel all the tenderness
of this behaviour and after some time thus spent in
joint affliction she put all the letters into Elinors hands
and then covering her face with her handkerchief
almost screamed with agony Elinor who knew that such grief
shocking as it was to witness it must have its course
watched by her till this excess of suffering had somewhat
spent itself and then turning eagerly to Willoughbys letter
read as follows
Bond Street January
MY DEAR MADAM
I have just had the honour of receiving your
letter for which I beg to return my sincere
acknowledgments I am much concerned to find there
was anything in my behaviour last night that did
not meet your approbation and though I am quite at
a loss to discover in what point I could be so
unfortunate as to offend you I entreat your
forgiveness of what I can assure you to have been
perfectly unintentional I shall never reflect on
my former acquaintance with your family in Devonshire
without the most grateful pleasure and flatter
myself it will not be broken by any mistake or
misapprehension of my actions My esteem for your
whole family is very sincere but if I have been so
unfortunate as to give rise to a belief of more than
I felt or meant to express I shall reproach myself
for not having been more guarded in my professions
of that esteem That I should ever have meant more
you will allow to be impossible when you understand
that my affections have been long engaged elsewhere
and it will not be many weeks I believe before
this engagement is fulfilled It is with great
regret that I obey your commands in returning the
letters with which I have been honoured from you
and the lock of hair which you so obligingly bestowed
on me
I am dear Madam
Your most obedient
humble servant
JOHN WILLOUGHBY
With what indignation such a letter as this must
be read by Miss Dashwood may be imagined Though aware
before she began it that it must bring a confession
of his inconstancy and confirm their separation for ever
she was not aware that such language could be suffered
to announce it nor could she have supposed Willoughby
capable of departing so far from the appearance of every
honourable and delicate feelingso far from the common
decorum of a gentleman as to send a letter so impudently
cruel a letter which instead of bringing with his desire
of a release any professions of regret acknowledged no
breach of faith denied all peculiar affection whatever
a letter of which every line was an insult and which
proclaimed its writer to be deep in hardened villainy
She paused over it for some time with indignant
astonishment then read it again and again but every
perusal only served to increase her abhorrence of the man
and so bitter were her feelings against him that she
dared not trust herself to speak lest she might wound
Marianne still deeper by treating their disengagement
not as a loss to her of any possible good but as an
escape from the worst and most irremediable of all
evils a connection for life with an unprincipled man
as a deliverance the most real a blessing the most important
In her earnest meditations on the contents of the letter
on the depravity of that mind which could dictate it
and probably on the very different mind of a very different
person who had no other connection whatever with the affair
than what her heart gave him with every thing that passed
Elinor forgot the immediate distress of her sister
forgot that she had three letters on her lap yet unread
and so entirely forgot how long she had been in the room
that when on hearing a carriage drive up to the door
she went to the window to see who could be coming so
unreasonably early she was all astonishment to perceive
Mrs Jenningss chariot which she knew had not been
ordered till one Determined not to quit Marianne
though hopeless of contributing at present to her ease
she hurried away to excuse herself from attending
Mrs Jennings on account of her sister being indisposed
Mrs Jennings with a thoroughly goodhumoured concern
for its cause admitted the excuse most readily and Elinor
after seeing her safe off returned to Marianne whom she
found attempting to rise from the bed and whom she reached
just in time to prevent her from falling on the floor
faint and giddy from a long want of proper rest and food
for it was many days since she had any appetite and many
nights since she had really slept and now when her
mind was no longer supported by the fever of suspense
the consequence of all this was felt in an aching head
a weakened stomach and a general nervous faintness
A glass of wine which Elinor procured for her directly
made her more comfortable and she was at last able to express
some sense of her kindness by saying
Poor Elinor how unhappy I make you
I only wish replied her sister there were
any thing I COULD do which might be of comfort to you
This as every thing else would have been
was too much for Marianne who could only exclaim
in the anguish of her heart Oh Elinor I am miserable
indeed before her voice was entirely lost in sobs
Elinor could no longer witness this torrent
of unresisted grief in silence
Exert yourself dear Marianne she cried
if you would not kill yourself and all who love you
Think of your mother think of her misery while YOU suffer
for her sake you must exert yourself
I cannot I cannot cried Marianne leave me
leave me if I distress you leave me hate me forget me
but do not torture me so Oh how easy for those
who have no sorrow of their own to talk of exertion Happy
happy Elinor YOU cannot have an idea of what I suffer
Do you call ME happy Marianne Ah if you knewAnd
can you believe me to be so while I see you so wretched
Forgive me forgive me throwing her arms round
her sisters neck I know you feel for me I know what
a heart you have but yet you areyou must be happy
Edward loves youwhat oh what can do away such happiness
as that
Many many circumstances said Elinor solemnly
No no no cried Marianne wildly he loves you
and only you You CAN have no grief
I can have no pleasure while I see you in this state
And you will never see me otherwise Mine is
a misery which nothing can do away
You must not talk so Marianne Have you no
comforts no friends Is your loss such as leaves
no opening for consolation Much as you suffer now
think of what you would have suffered if the discovery
of his character had been delayed to a later period
if your engagement had been carried on for months and months
as it might have been before he chose to put an end to it
Every additional day of unhappy confidence on your side
would have made the blow more dreadful
Engagement cried Marianne there has been
no engagement
No engagement
No he is not so unworthy as you believe him
He has broken no faith with me
But he told you that he loved you
Yesnonever absolutely It was every day implied
but never professedly declared Sometimes I thought it
had beenbut it never was
Yet you wrote to him
Yescould that be wrong after all that had passed
But I cannot talk
Elinor said no more and turning again to the three
letters which now raised a much stronger curiosity
than before directly ran over the contents of all
The first which was what her sister had sent him
on their arrival in town was to this effect
Berkeley Street January
How surprised you will be Willoughby on
receiving this and I think you will feel something
more than surprise when you know that I am in town
An opportunity of coming hither though with Mrs
Jennings was a temptation we could not resist
I wish you may receive this in time to come here
tonight but I will not depend on it At any rate
I shall expect you tomorrow For the present adieu
MD
Her second note which had been written on the morning
after the dance at the Middletons was in these words
I cannot express my disappointment in having
missed you the day before yesterday nor my astonishment
at not having received any answer to a note which
I sent you above a week ago I have been expecting
to hear from you and still more to see you every
hour of the day Pray call again as soon as possible
and explain the reason of my having expected this
in vain You had better come earlier another time
because we are generally out by one We were last
night at Lady Middletons where there was a dance
I have been told that you were asked to be of the
party But could it be so You must be very much
altered indeed since we parted if that could be
the case and you not there But I will not suppose
this possible and I hope very soon to receive your
personal assurance of its being otherwise
MD
The contents of her last note to him were these
What am I to imagine Willoughby by your
behaviour last night Again I demand an explanation
of it I was prepared to meet you with the pleasure
which our separation naturally produced with the
familiarity which our intimacy at Barton appeared
to me to justify I was repulsed indeed I have
passed a wretched night in endeavouring to excuse
a conduct which can scarcely be called less than
insulting but though I have not yet been able to
form any reasonable apology for your behaviour
I am perfectly ready to hear your justification of
it You have perhaps been misinformed or purposely
deceived in something concerning me which may have
lowered me in your opinion Tell me what it is
explain the grounds on which you acted and I shall
be satisfied in being able to satisfy you It
would grieve me indeed to be obliged to think ill
of you but if I am to do it if I am to learn that
you are not what we have hitherto believed you that
your regard for us all was insincere that your
behaviour to me was intended only to deceive let
it be told as soon as possible My feelings are at
present in a state of dreadful indecision I wish
to acquit you but certainty on either side will be
ease to what I now suffer If your sentiments are
no longer what they were you will return my notes
and the lock of my hair which is in your possession
MD
That such letters so full of affection and confidence
could have been so answered Elinor for Willoughbys sake
would have been unwilling to believe But her condemnation
of him did not blind her to the impropriety of their
having been written at all and she was silently grieving
over the imprudence which had hazarded such unsolicited
proofs of tenderness not warranted by anything preceding
and most severely condemned by the event when Marianne
perceiving that she had finished the letters observed to
her that they contained nothing but what any one would
have written in the same situation
I felt myself she added to be as solemnly
engaged to him as if the strictest legal covenant
had bound us to each other
I can believe it said Elinor but unfortunately
he did not feel the same
He DID feel the same Elinorfor weeks and weeks he
felt it I know he did Whatever may have changed him now and
nothing but the blackest art employed against me can have done
it I was once as dear to him as my own soul could wish
This lock of hair which now he can so readily give up
was begged of me with the most earnest supplication
Had you seen his look his manner had you heard his voice
at that moment Have you forgot the last evening of our
being together at Barton The morning that we parted
too When he told me that it might be many weeks before
we met againhis distresscan I ever forget his distress
For a moment or two she could say no more
but when this emotion had passed away she added
in a firmer tone
Elinor I have been cruelly used but not by Willoughby
Dearest Marianne who but himself By whom can he
have been instigated
By all the world rather than by his own heart
I could rather believe every creature of my acquaintance
leagued together to ruin me in his opinion than believe
his nature capable of such cruelty This woman of whom he
writeswhoever she beor any one in short but your own
dear self mama and Edward may have been so barbarous
to bely me Beyond you three is there a creature
in the world whom I would not rather suspect of evil
than Willoughby whose heart I know so well
Elinor would not contend and only replied
Whoever may have been so detestably your enemy let them
be cheated of their malignant triumph my dear sister
by seeing how nobly the consciousness of your own
innocence and good intentions supports your spirits
It is a reasonable and laudable pride which resists
such malevolence
No no cried Marianne misery such as mine has
no pride I care not who knows that I am wretched
The triumph of seeing me so may be open to all the world
Elinor Elinor they who suffer little may be proud and
independent as they likemay resist insult or return
mortificationbut I cannot I must feelI must be
wretchedand they are welcome to enjoy the consciousness
of it that can
But for my mothers sake and mine
I would do more than for my own But to appear
happy when I am so miserableOh who can require it
Again they were both silent Elinor was employed
in walking thoughtfully from the fire to the window
from the window to the fire without knowing that she
received warmth from one or discerning objects through
the other and Marianne seated at the foot of the bed
with her head leaning against one of its posts
again took up Willoughbys letter and after shuddering
over every sentence exclaimed
It is too much Oh Willoughby Willoughby could this
be yours Cruel cruelnothing can acquit you Elinor
nothing can Whatever he might have heard against me
ought he not to have suspended his belief ought he not to
have told me of it to have given me the power of clearing
myself The lock of hair repeating it from the letter
which you so obligingly bestowed on meThat is unpardonable
Willoughby where was your heart when you wrote those words
Oh barbarously insolentElinor can he be justified
No Marianne in no possible way
And yet this womanwho knows what her art may
have beenhow long it may have been premeditated
and how deeply contrived by herWho is sheWho can
she beWhom did I ever hear him talk of as young and
attractive among his female acquaintanceOh no one
no onehe talked to me only of myself
Another pause ensued Marianne was greatly agitated
and it ended thus
Elinor I must go home I must go and comfort mama
Can not we be gone tomorrow
Tomorrow Marianne
Yes why should I stay here I came only for
Willoughbys sakeand now who cares for me Who regards me
It would be impossible to go tomorrow We owe
Mrs Jennings much more than civility and civility of
the commonest kind must prevent such a hasty removal as that
Well then another day or two perhaps but I cannot
stay here long I cannot stay to endure the questions
and remarks of all these people The Middletons and
Palmershow am I to bear their pity The pity of such
a woman as Lady Middleton Oh what would HE say to that
Elinor advised her to lie down again and for a
moment she did so but no attitude could give her ease
and in restless pain of mind and body she moved from one
posture to another till growing more and more hysterical
her sister could with difficulty keep her on the bed at all
and for some time was fearful of being constrained to call
for assistance Some lavender drops however which she
was at length persuaded to take were of use and from
that time till Mrs Jennings returned she continued
on the bed quiet and motionless
CHAPTER 30
Mrs Jennings came immediately to their room on her return
and without waiting to have her request of admittance answered
opened the door and walked in with a look of real concern
How do you do my dearsaid she in a voice of great
compassion to Marianne who turned away her face without
attempting to answer
How is she Miss DashwoodPoor thing she looks very bad
No wonder Ay it is but too true He is to be married
very soona goodfornothing fellow I have no patience
with him Mrs Taylor told me of it half an hour ago
and she was told it by a particular friend of Miss
Grey herself else I am sure I should not have believed it
and I was almost ready to sink as it was Well said I
all I can say is that if this be true he has used
a young lady of my acquaintance abominably ill and I
wish with all my soul his wife may plague his heart out
And so I shall always say my dear you may depend on it
I have no notion of mens going on in this way and if ever
I meet him again I will give him such a dressing as he
has not had this many a day But there is one comfort
my dear Miss Marianne he is not the only young man
in the world worth having and with your pretty face
you will never want admirers Well poor thing I wont
disturb her any longer for she had better have her cry
out at once and have done with The Parrys and Sandersons
luckily are coming tonight you know and that will amuse her
She then went away walking on tiptoe out of the room
as if she supposed her young friends affliction could
be increased by noise
Marianne to the surprise of her sister
determined on dining with them Elinor even advised
her against it But no she would go down she could
bear it very well and the bustle about her would
be less Elinor pleased to have her governed for a
moment by such a motive though believing it hardly
possible that she could sit out the dinner said no more
and adjusting her dress for her as well as she could
while Marianne still remained on the bed was ready
to assist her into the dining room as soon as they were
summoned to it
When there though looking most wretchedly
she ate more and was calmer than her sister had expected
Had she tried to speak or had she been conscious of half
Mrs Jenningss wellmeant but illjudged attentions
to her this calmness could not have been maintained
but not a syllable escaped her lips and the abstraction
of her thoughts preserved her in ignorance of every thing
that was passing before her
Elinor who did justice to Mrs Jenningss kindness
though its effusions were often distressing and sometimes
almost ridiculous made her those acknowledgments
and returned her those civilities which her sister could
not make or return for herself Their good friend saw
that Marianne was unhappy and felt that every thing
was due to her which might make her at all less so
She treated her therefore with all the indulgent fondness
of a parent towards a favourite child on the last day of
its holidays Marianne was to have the best place by the fire
was to be tempted to eat by every delicacy in the house
and to be amused by the relation of all the news of the day
Had not Elinor in the sad countenance of her sister
seen a check to all mirth she could have been entertained
by Mrs Jenningss endeavours to cure a disappointment in love
by a variety of sweetmeats and olives and a good fire
As soon however as the consciousness of all this was
forced by continual repetition on Marianne she could
stay no longer With a hasty exclamation of Misery
and a sign to her sister not to follow her she directly got
up and hurried out of the room
Poor soul cried Mrs Jennings as soon as she was gone
how it grieves me to see her And I declare if she is
not gone away without finishing her wine And the dried
cherries too Lord nothing seems to do her any good
I am sure if I knew of any thing she would like I would
send all over the town for it Well it is the oddest
thing to me that a man should use such a pretty girl
so ill But when there is plenty of money on one side
and next to none on the other Lord bless you they care
no more about such things
The lady thenMiss Grey I think you called her
is very rich
Fifty thousand pounds my dear Did you ever see
her a smart stylish girl they say but not handsome
I remember her aunt very well Biddy Henshawe she married
a very wealthy man But the family are all rich together
Fifty thousand pounds and by all accounts it wont come
before its wanted for they say he is all to pieces
No wonder dashing about with his curricle and hunters
Well it dont signify talking but when a young man
be who he will comes and makes love to a pretty girl
and promises marriage he has no business to fly off
from his word only because he grows poor and a richer
girl is ready to have him Why dont he in such a case
sell his horses let his house turn off his servants
and make a thorough reform at once I warrant you
Miss Marianne would have been ready to wait till matters
came round But that wont do nowadays nothing in the
way of pleasure can ever be given up by the young men of
this age
Do you know what kind of a girl Miss Grey is
Is she said to be amiable
I never heard any harm of her indeed I hardly ever
heard her mentioned except that Mrs Taylor did say
this morning that one day Miss Walker hinted to her
that she believed Mr and Mrs Ellison would not be sorry
to have Miss Grey married for she and Mrs Ellison could
never agree
And who are the Ellisons
Her guardians my dear But now she is of age
and may choose for herself and a pretty choice she has
madeWhat now after pausing a momentyour poor sister
is gone to her own room I suppose to moan by herself
Is there nothing one can get to comfort her Poor dear
it seems quite cruel to let her be alone Well byandby we
shall have a few friends and that will amuse her a little
What shall we play at She hates whist I know but is there
no round game she cares for
Dear maam this kindness is quite unnecessary
Marianne I dare say will not leave her room again
this evening I shall persuade her if I can to go
early to bed for I am sure she wants rest
Aye I believe that will be best for her Let her name
her own supper and go to bed Lord no wonder she has
been looking so bad and so cast down this last week or two
for this matter I suppose has been hanging over her head as
long as that And so the letter that came today finished it
Poor soul I am sure if I had had a notion of it
I would not have joked her about it for all my money
But then you know how should I guess such a thing I made
sure of its being nothing but a common love letter and
you know young people like to be laughed at about them Lord
how concerned Sir John and my daughters will be when they
hear it If I had my senses about me I might have called
in Conduit Street in my way home and told them of it
But I shall see them tomorrow
It would be unnecessary I am sure for you to caution
Mrs Palmer and Sir John against ever naming Mr Willoughby
or making the slightest allusion to what has passed
before my sister Their own goodnature must point out
to them the real cruelty of appearing to know any thing
about it when she is present and the less that may ever
be said to myself on the subject the more my feelings
will be spared as you my dear madam will easily believe
Oh Lord yes that I do indeed It must be terrible
for you to hear it talked of and as for your sister
I am sure I would not mention a word about it to her
for the world You saw I did not all dinner time
No more would Sir John nor my daughters for they are
all very thoughtful and considerate especially if I
give them a hint as I certainly will For my part
I think the less that is said about such things the better
the sooner tis blown over and forgot And what does
talking ever do you know
In this affair it can only do harm more so
perhaps than in many cases of a similar kind for it
has been attended by circumstances which for the sake
of every one concerned in it make it unfit to become
the public conversation I must do THIS justice to
Mr Willoughbyhe has broken no positive engagement
with my sister
Law my dear Dont pretend to defend him
No positive engagement indeed after taking her all
over Allenham House and fixing on the very rooms they
were to live in hereafter
Elinor for her sisters sake could not press the
subject farther and she hoped it was not required of her
for Willoughbys since though Marianne might lose much
he could gain very little by the enforcement of the real truth
After a short silence on both sides Mrs Jennings
with all her natural hilarity burst forth again
Well my dear tis a true saying about an illwind
for it will be all the better for Colonel Brandon
He will have her at last aye that he will Mind me
now if they ant married by Midsummer Lord how hell
chuckle over this news I hope he will come tonight
It will be all to one a better match for your sister
Two thousand a year without debt or drawbackexcept
the little lovechild indeed aye I had forgot her
but she may be prenticed out at a small cost and then
what does it signify Delaford is a nice place I can
tell you exactly what I call a nice old fashioned place
full of comforts and conveniences quite shut in with great
garden walls that are covered with the best fruittrees
in the country and such a mulberry tree in one corner
Lord how Charlotte and I did stuff the only time we
were there Then there is a dovecote some delightful
stewponds and a very pretty canal and every thing
in short that one could wish for and moreover it is
close to the church and only a quarter of a mile from
the turnpikeroad so tis never dull for if you only
go and sit up in an old yew arbour behind the house
you may see all the carriages that pass along
Oh tis a nice place A butcher hard by in the village
and the parsonagehouse within a stones throw
To my fancy a thousand times prettier than Barton Park
where they are forced to send three miles for their meat
and have not a neighbour nearer than your mother
Well I shall spirit up the Colonel as soon as I can
One shoulder of mutton you know drives another down
If we CAN but put Willoughby out of her head
Ay if we can do THAT Maam said Elinor
we shall do very well with or without Colonel Brandon
And then rising she went away to join Marianne
whom she found as she expected in her own room leaning
in silent misery over the small remains of a fire
which till Elinors entrance had been her only light
You had better leave me was all the notice
that her sister received from her
I will leave you said Elinor if you will go
to bed But this from the momentary perverseness
of impatient suffering she at first refused to do
Her sisters earnest though gentle persuasion however
soon softened her to compliance and Elinor saw her
lay her aching head on the pillow and as she hoped
in a way to get some quiet rest before she left her
In the drawingroom whither she then repaired
she was soon joined by Mrs Jennings with a wineglass
full of something in her hand
My dear said she entering I have just recollected
that I have some of the finest old Constantia wine in the
house that ever was tasted so I have brought a glass of it
for your sister My poor husband how fond he was of it
Whenever he had a touch of his old colicky gout he said
it did him more good than any thing else in the world
Do take it to your sister
Dear Maam replied Elinor smiling at the difference
of the complaints for which it was recommended how good
you are But I have just left Marianne in bed and I hope
almost asleep and as I think nothing will be of so much
service to her as rest if you will give me leave
I will drink the wine myself
Mrs Jennings though regretting that she had not been
five minutes earlier was satisfied with the compromise
and Elinor as she swallowed the chief of it reflected
that though its effects on a colicky gout were at present
of little importance to her its healing powers
on a disappointed heart might be as reasonably tried
on herself as on her sister
Colonel Brandon came in while the party were at tea
and by his manner of looking round the room for Marianne
Elinor immediately fancied that he neither expected
nor wished to see her there and in short that he
was already aware of what occasioned her absence
Mrs Jennings was not struck by the same thought
for soon after his entrance she walked across the room
to the teatable where Elinor presided and whispered
The Colonel looks as grave as ever you see He knows
nothing of it do tell him my dear
He shortly afterwards drew a chair close to hers
and with a look which perfectly assured her of his
good information inquired after her sister
Marianne is not well said she She has been
indisposed all day and we have persuaded her to go to bed
Perhaps then he hesitatingly replied what I
heard this morning may bethere may be more truth in it
than I could believe possible at first
What did you hear
That a gentleman whom I had reason to thinkin short
that a man whom I KNEW to be engagedbut how shall I
tell you If you know it already as surely you must
I may be spared
You mean answered Elinor with forced calmness
Mr Willoughbys marriage with Miss Grey Yes we DO
know it all This seems to have been a day of general
elucidation for this very morning first unfolded it to us
Mr Willoughby is unfathomable Where did you hear it
In a stationers shop in Pall Mall where I
had business Two ladies were waiting for their carriage
and one of them was giving the other an account of the
intended match in a voice so little attempting concealment
that it was impossible for me not to hear all The name
of Willoughby John Willoughby frequently repeated
first caught my attention and what followed was a positive
assertion that every thing was now finally settled
respecting his marriage with Miss Greyit was no longer
to be a secretit would take place even within a few weeks
with many particulars of preparations and other matters
One thing especially I remember because it served
to identify the man still moreas soon as the ceremony
was over they were to go to Combe Magna his seat
in Somersetshire My astonishmentbut it would be
impossible to describe what I felt The communicative
lady I learnt on inquiry for I stayed in the shop
till they were gone was a Mrs Ellison and that as I
have been since informed is the name of Miss Greys guardian
It is But have you likewise heard that Miss Grey
has fifty thousand pounds In that if in any thing
we may find an explanation
It may be so but Willoughby is capableat least
I thinkhe stopped a moment then added in a voice
which seemed to distrust itself And your sister
how did she
Her sufferings have been very severe I have
only to hope that they may be proportionately short
It has been it is a most cruel affliction Till yesterday
I believe she never doubted his regard and even now
perhapsbut I am almost convinced that he never was
really attached to her He has been very deceitful and
in some points there seems a hardness of heart about him
Ah said Colonel Brandon there is indeed But
your sister does notI think you said soshe does
not consider quite as you do
You know her disposition and may believe how eagerly
she would still justify him if she could
He made no answer and soon afterwards by the removal
of the teathings and the arrangement of the card parties
the subject was necessarily dropped Mrs Jennings who had
watched them with pleasure while they were talking and who
expected to see the effect of Miss Dashwoods communication
in such an instantaneous gaiety on Colonel Brandons side
as might have become a man in the bloom of youth of hope
and happiness saw him with amazement remain the whole
evening more serious and thoughtful than usual
CHAPTER 31
From a night of more sleep than she had expected
Marianne awoke the next morning to the same consciousness
of misery in which she had closed her eyes
Elinor encouraged her as much as possible to talk
of what she felt and before breakfast was ready they had
gone through the subject again and again and with the same
steady conviction and affectionate counsel on Elinors side
the same impetuous feelings and varying opinions on
Mariannes as before Sometimes she could believe
Willoughby to be as unfortunate and as innocent as herself
and at others lost every consolation in the impossibility
of acquitting him At one moment she was absolutely
indifferent to the observation of all the world at another
she would seclude herself from it for ever and at a third
could resist it with energy In one thing however
she was uniform when it came to the point in avoiding
where it was possible the presence of Mrs Jennings
and in a determined silence when obliged to endure it
Her heart was hardened against the belief of Mrs Jenningss
entering into her sorrows with any compassion
No no no it cannot be she cried
she cannot feel Her kindness is not sympathy
her goodnature is not tenderness All that she wants
is gossip and she only likes me now because I supply it
Elinor had not needed this to be assured of the injustice
to which her sister was often led in her opinion of others
by the irritable refinement of her own mind and the too
great importance placed by her on the delicacies of a
strong sensibility and the graces of a polished manner
Like half the rest of the world if more than half there
be that are clever and good Marianne with excellent
abilities and an excellent disposition was neither
reasonable nor candid She expected from other people
the same opinions and feelings as her own and she judged
of their motives by the immediate effect of their actions
on herself Thus a circumstance occurred while the
sisters were together in their own room after breakfast
which sunk the heart of Mrs Jennings still lower
in her estimation because through her own weakness
it chanced to prove a source of fresh pain to herself
though Mrs Jennings was governed in it by an impulse
of the utmost goodwill
With a letter in her outstretched hand and countenance
gaily smiling from the persuasion of bringing comfort
she entered their room saying
Now my dear I bring you something that I am sure
will do you good
Marianne heard enough In one moment her imagination
placed before her a letter from Willoughby full of tenderness
and contrition explanatory of all that had passed satisfactory
convincing and instantly followed by Willoughby himself
rushing eagerly into the room to inforce at her feet
by the eloquence of his eyes the assurances of his letter
The work of one moment was destroyed by the next
The hand writing of her mother never till then unwelcome
was before her and in the acuteness of the disappointment
which followed such an ecstasy of more than hope
she felt as if till that instant she had never suffered
The cruelty of Mrs Jennings no language within
her reach in her moments of happiest eloquence
could have expressed and now she could reproach her
only by the tears which streamed from her eyes with
passionate violencea reproach however so entirely
lost on its object that after many expressions of pity
she withdrew still referring her to the letter of comfort
But the letter when she was calm enough to read it
brought little comfort Willoughby filled every page
Her mother still confident of their engagement and relying
as warmly as ever on his constancy had only been roused
by Elinors application to intreat from Marianne greater
openness towards them both and this with such tenderness
towards her such affection for Willoughby and such
a conviction of their future happiness in each other
that she wept with agony through the whole of it
All her impatience to be at home again now returned
her mother was dearer to her than ever dearer through
the very excess of her mistaken confidence in Willoughby
and she was wildly urgent to be gone Elinor unable herself
to determine whether it were better for Marianne to be
in London or at Barton offered no counsel of her own
except of patience till their mothers wishes could be known
and at length she obtained her sisters consent to wait
for that knowledge
Mrs Jennings left them earlier than usual for she
could not be easy till the Middletons and Palmers were able
to grieve as much as herself and positively refusing
Elinors offered attendance went out alone for the rest
of the morning Elinor with a very heavy heart aware of
the pain she was going to communicate and perceiving
by Mariannes letter how ill she had succeeded in laying
any foundation for it then sat down to write her mother
an account of what had passed and entreat her directions
for the future while Marianne who came into the drawingroom
on Mrs Jenningss going away remained fixed at the table
where Elinor wrote watching the advancement of her pen
grieving over her for the hardship of such a task
and grieving still more fondly over its effect on her mother
In this manner they had continued about a quarter
of an hour when Marianne whose nerves could not then
bear any sudden noise was startled by a rap at the door
Who can this be cried Elinor So early too I
thought we HAD been safe
Marianne moved to the window
It is Colonel Brandon said she with vexation
We are never safe from HIM
He will not come in as Mrs Jennings is from home
I will not trust to THAT retreating to her own room
A man who has nothing to do with his own time has no
conscience in his intrusion on that of others
The event proved her conjecture right though it
was founded on injustice and error for Colonel Brandon
DID come in and Elinor who was convinced that
solicitude for Marianne brought him thither and who saw
THAT solicitude in his disturbed and melancholy look
and in his anxious though brief inquiry after her
could not forgive her sister for esteeming him so lightly
I met Mrs Jennings in Bond Street said he
after the first salutation and she encouraged me
to come on and I was the more easily encouraged
because I thought it probable that I might find you alone
which I was very desirous of doing My objectmy
wishmy sole wish in desiring itI hope I believe
it isis to be a means of giving comfortno I must
not say comfortnot present comfortbut conviction
lasting conviction to your sisters mind My regard for her
for yourself for your motherwill you allow me to prove it
by relating some circumstances which nothing but a VERY
sincere regardnothing but an earnest desire of being
usefulI think I am justifiedthough where so many hours
have been spent in convincing myself that I am right
is there not some reason to fear I may be wrong
He stopped
I understand you said Elinor You have something
to tell me of Mr Willoughby that will open his character
farther Your telling it will be the greatest act of friendship
that can be shewn Marianne MY gratitude will be insured
immediately by any information tending to that end and HERS
must be gained by it in time Pray pray let me hear it
You shall and to be brief when I quitted Barton
last Octoberbut this will give you no ideaI must go
farther back You will find me a very awkward narrator
Miss Dashwood I hardly know where to begin A short
account of myself I believe will be necessary and it
SHALL be a short one On such a subject sighing heavily
can I have little temptation to be diffuse
He stopt a moment for recollection and then
with another sigh went on
You have probably entirely forgotten a conversation
it is not to be supposed that it could make any impression
on youa conversation between us one evening at Barton
Parkit was the evening of a dancein which I alluded
to a lady I had once known as resembling in some measure
your sister Marianne
Indeed answered Elinor I have NOT forgotten it
He looked pleased by this remembrance and added
If I am not deceived by the uncertainty the partiality
of tender recollection there is a very strong resemblance
between them as well in mind as person The same warmth
of heart the same eagerness of fancy and spirits
This lady was one of my nearest relations an orphan from
her infancy and under the guardianship of my father
Our ages were nearly the same and from our earliest years
we were playfellows and friends I cannot remember the
time when I did not love Eliza and my affection for her
as we grew up was such as perhaps judging from my
present forlorn and cheerless gravity you might think me
incapable of having ever felt Hers for me was I believe
fervent as the attachment of your sister to Mr Willoughby
and it was though from a different cause no less unfortunate
At seventeen she was lost to me for ever She was
marriedmarried against her inclination to my brother
Her fortune was large and our family estate much encumbered
And this I fear is all that can be said for the
conduct of one who was at once her uncle and guardian
My brother did not deserve her he did not even love her
I had hoped that her regard for me would support her
under any difficulty and for some time it did but at
last the misery of her situation for she experienced
great unkindness overcame all her resolution and though
she had promised me that nothingbut how blindly I
relate I have never told you how this was brought on
We were within a few hours of eloping together for Scotland
The treachery or the folly of my cousins maid betrayed us
I was banished to the house of a relation far distant
and she was allowed no liberty no society no amusement
till my fathers point was gained I had depended on her
fortitude too far and the blow was a severe one
but had her marriage been happy so young as I then was
a few months must have reconciled me to it or at least
I should not have now to lament it This however
was not the case My brother had no regard for her
his pleasures were not what they ought to have been
and from the first he treated her unkindly The consequence
of this upon a mind so young so lively so inexperienced
as Mrs Brandons was but too natural She resigned
herself at first to all the misery of her situation
and happy had it been if she had not lived to overcome those
regrets which the remembrance of me occasioned But can we
wonder that with such a husband to provoke inconstancy
and without a friend to advise or restrain her for
my father lived only a few months after their marriage
and I was with my regiment in the East Indies she
should fall Had I remained in England perhapsbut I
meant to promote the happiness of both by removing
from her for years and for that purpose had procured
my exchange The shock which her marriage had given me
he continued in a voice of great agitation was of
trifling weightwas nothing to what I felt when I heard
about two years afterwards of her divorce It was
THAT which threw this gloomeven now the recollection
of what I suffered
He could say no more and rising hastily walked for a few
minutes about the room Elinor affected by his relation
and still more by his distress could not speak He saw
her concern and coming to her took her hand pressed it
and kissed it with grateful respect A few minutes more
of silent exertion enabled him to proceed with composure
It was nearly three years after this unhappy
period before I returned to England My first care
when I DID arrive was of course to seek for her
but the search was as fruitless as it was melancholy
I could not trace her beyond her first seducer and there
was every reason to fear that she had removed from him
only to sink deeper in a life of sin Her legal allowance
was not adequate to her fortune nor sufficient for her
comfortable maintenance and I learnt from my brother that
the power of receiving it had been made over some months
before to another person He imagined and calmly could he
imagine it that her extravagance and consequent distress
had obliged her to dispose of it for some immediate relief
At last however and after I had been six months in England
I DID find her Regard for a former servant of my own
who had since fallen into misfortune carried me to visit
him in a spunginghouse where he was confined for debt
and there the same house under a similar confinement
was my unfortunate sister So alteredso fadedworn
down by acute suffering of every kind hardly could I
believe the melancholy and sickly figure before me
to be the remains of the lovely blooming healthful girl
on whom I had once doted What I endured in so beholding
herbut I have no right to wound your feelings by attempting
to describe itI have pained you too much already
That she was to all appearance in the last stage
of a consumption wasyes in such a situation it was
my greatest comfort Life could do nothing for her
beyond giving time for a better preparation for death
and that was given I saw her placed in comfortable lodgings
and under proper attendants I visited her every day
during the rest of her short life I was with her in her
last moments
Again he stopped to recover himself and Elinor
spoke her feelings in an exclamation of tender concern
at the fate of his unfortunate friend
Your sister I hope cannot be offended said he
by the resemblance I have fancied between her and my
poor disgraced relation Their fates their fortunes
cannot be the same and had the natural sweet
disposition of the one been guarded by a firmer mind
or a happier marriage she might have been all that you
will live to see the other be But to what does all this
lead I seem to have been distressing you for nothing
Ah Miss Dashwooda subject such as thisuntouched
for fourteen yearsit is dangerous to handle it at all
I WILL be more collectedmore concise She left to my care
her only child a little girl the offspring of her first
guilty connection who was then about three years old
She loved the child and had always kept it with her
It was a valued a precious trust to me and gladly
would I have discharged it in the strictest sense
by watching over her education myself had the nature
of our situations allowed it but I had no family no home
and my little Eliza was therefore placed at school
I saw her there whenever I could and after the death of my
brother which happened about five years ago and which
left to me the possession of the family property she
visited me at Delaford I called her a distant relation
but I am well aware that I have in general been suspected
of a much nearer connection with her It is now three
years ago she had just reached her fourteenth year
that I removed her from school to place her under the care
of a very respectable woman residing in Dorsetshire
who had the charge of four or five other girls of about
the same time of life and for two years I had every reason
to be pleased with her situation But last February
almost a twelvemonth back she suddenly disappeared
I had allowed her imprudently as it has since turned
out at her earnest desire to go to Bath with one of
her young friends who was attending her father there
for his health I knew him to be a very good sort of man
and I thought well of his daughterbetter than she deserved
for with a most obstinate and illjudged secrecy
she would tell nothing would give no clue though she
certainly knew all He her father a wellmeaning
but not a quicksighted man could really I believe
give no information for he had been generally confined
to the house while the girls were ranging over the town
and making what acquaintance they chose and he tried
to convince me as thoroughly as he was convinced himself
of his daughters being entirely unconcerned in the business
In short I could learn nothing but that she was gone
all the rest for eight long months was left to conjecture
What I thought what I feared may be imagined and what I
suffered too
Good heavens cried Elinor could it becould
Willoughby
The first news that reached me of her he continued
came in a letter from herself last October
It was forwarded to me from Delaford and I received it
on the very morning of our intended party to Whitwell
and this was the reason of my leaving Barton so suddenly
which I am sure must at the time have appeared strange
to every body and which I believe gave offence to some
Little did Mr Willoughby imagine I suppose when his
looks censured me for incivility in breaking up the party
that I was called away to the relief of one whom he
had made poor and miserable but HAD he known it
what would it have availed Would he have been less
gay or less happy in the smiles of your sister No
he had already done that which no man who CAN feel
for another would do He had left the girl whose
youth and innocence he had seduced in a situation of
the utmost distress with no creditable home no help
no friends ignorant of his address He had left her
promising to return he neither returned nor wrote
nor relieved her
This is beyond every thing exclaimed Elinor
His character is now before you expensive dissipated
and worse than both Knowing all this as I have now
known it many weeks guess what I must have felt on seeing
your sister as fond of him as ever and on being assured
that she was to marry him guess what I must have felt
for all your sakes When I came to you last week and
found you alone I came determined to know the truth
though irresolute what to do when it WAS known
My behaviour must have seemed strange to you then
but now you will comprehend it To suffer you all to be
so deceived to see your sisterbut what could I do
I had no hope of interfering with success and sometimes
I thought your sisters influence might yet reclaim him
But now after such dishonorable usage who can tell what
were his designs on her Whatever they may have been
however she may now and hereafter doubtless WILL
turn with gratitude towards her own condition when she
compares it with that of my poor Eliza when she considers
the wretched and hopeless situation of this poor girl
and pictures her to herself with an affection for him so strong
still as strong as her own and with a mind tormented
by selfreproach which must attend her through life
Surely this comparison must have its use with her
She will feel her own sufferings to be nothing They
proceed from no misconduct and can bring no disgrace
On the contrary every friend must be made still more
her friend by them Concern for her unhappiness
and respect for her fortitude under it must strengthen
every attachment Use your own discretion however
in communicating to her what I have told you You must
know best what will be its effect but had I not seriously
and from my heart believed it might be of service
might lessen her regrets I would not have suffered
myself to trouble you with this account of my family
afflictions with a recital which may seem to have been
intended to raise myself at the expense of others
Elinors thanks followed this speech with grateful
earnestness attended too with the assurance of her
expecting material advantage to Marianne from the
communication of what had passed
I have been more pained said she by her
endeavors to acquit him than by all the rest for it
irritates her mind more than the most perfect conviction
of his unworthiness can do Now though at first she
will suffer much I am sure she will soon become easier
Have you she continued after a short silence
ever seen Mr Willoughby since you left him at Barton
Yes he replied gravely once I have One meeting
was unavoidable
Elinor startled by his manner looked at him anxiously
saying
What have you met him to
I could meet him no other way Eliza had confessed
to me though most reluctantly the name of her lover
and when he returned to town which was within a fortnight
after myself we met by appointment he to defend
I to punish his conduct We returned unwounded
and the meeting therefore never got abroad
Elinor sighed over the fancied necessity of this
but to a man and a soldier she presumed not to censure it
Such said Colonel Brandon after a pause
has been the unhappy resemblance between the fate of mother
and daughter and so imperfectly have I discharged my trust
Is she still in town
No as soon as she recovered from her lyingin
for I found her near her delivery I removed her and her
child into the country and there she remains
Recollecting soon afterwards that he was probably
dividing Elinor from her sister he put an end to his visit
receiving from her again the same grateful acknowledgments
and leaving her full of compassion and esteem for him
CHAPTER 32
When the particulars of this conversation were repeated
by Miss Dashwood to her sister as they very soon were
the effect on her was not entirely such as the former
had hoped to see Not that Marianne appeared to distrust
the truth of any part of it for she listened to it all
with the most steady and submissive attention made neither
objection nor remark attempted no vindication of Willoughby
and seemed to shew by her tears that she felt it to
be impossible But though this behaviour assured Elinor
that the conviction of this guilt WAS carried home to
her mind though she saw with satisfaction the effect of it
in her no longer avoiding Colonel Brandon when he called
in her speaking to him even voluntarily speaking
with a kind of compassionate respect and though she
saw her spirits less violently irritated than before
she did not see her less wretched Her mind did become
settled but it was settled in a gloomy dejection
She felt the loss of Willoughbys character yet more heavily
than she had felt the loss of his heart his seduction and
desertion of Miss Williams the misery of that poor girl
and the doubt of what his designs might ONCE have been
on herself preyed altogether so much on her spirits
that she could not bring herself to speak of what she felt
even to Elinor and brooding over her sorrows in silence
gave more pain to her sister than could have been communicated
by the most open and most frequent confession of them
To give the feelings or the language of Mrs Dashwood
on receiving and answering Elinors letter would be only
to give a repetition of what her daughters had already felt
and said of a disappointment hardly less painful than
Mariannes and an indignation even greater than Elinors
Long letters from her quickly succeeding each other
arrived to tell all that she suffered and thought
to express her anxious solicitude for Marianne and entreat
she would bear up with fortitude under this misfortune
Bad indeed must the nature of Mariannes affliction be
when her mother could talk of fortitude mortifying
and humiliating must be the origin of those regrets
which SHE could wish her not to indulge
Against the interest of her own individual comfort
Mrs Dashwood had determined that it would be better for
Marianne to be any where at that time than at Barton
where every thing within her view would be bringing back
the past in the strongest and most afflicting manner
by constantly placing Willoughby before her such as
she had always seen him there She recommended it to
her daughters therefore by all means not to shorten their
visit to Mrs Jennings the length of which though never
exactly fixed had been expected by all to comprise at least
five or six weeks A variety of occupations of objects
and of company which could not be procured at Barton
would be inevitable there and might yet she hoped
cheat Marianne at times into some interest beyond herself
and even into some amusement much as the ideas of both
might now be spurned by her
From all danger of seeing Willoughby again
her mother considered her to be at least equally safe
in town as in the country since his acquaintance must
now be dropped by all who called themselves her friends
Design could never bring them in each others way
negligence could never leave them exposed to a surprise
and chance had less in its favour in the crowd of London
than even in the retirement of Barton where it might
force him before her while paying that visit at Allenham
on his marriage which Mrs Dashwood from foreseeing at
first as a probable event had brought herself to expect
as a certain one
She had yet another reason for wishing her children
to remain where they were a letter from her soninlaw
had told her that he and his wife were to be in town
before the middle of February and she judged it right
that they should sometimes see their brother
Marianne had promised to be guided by her mothers opinion
and she submitted to it therefore without opposition
though it proved perfectly different from what she wished
and expected though she felt it to be entirely wrong
formed on mistaken grounds and that by requiring her
longer continuance in London it deprived her of the only
possible alleviation of her wretchedness the personal
sympathy of her mother and doomed her to such society and
such scenes as must prevent her ever knowing a moments rest
But it was a matter of great consolation to her
that what brought evil to herself would bring good to
her sister and Elinor on the other hand suspecting that
it would not be in her power to avoid Edward entirely
comforted herself by thinking that though their longer
stay would therefore militate against her own happiness
it would be better for Marianne than an immediate return
into Devonshire
Her carefulness in guarding her sister from ever
hearing Willoughbys name mentioned was not thrown away
Marianne though without knowing it herself reaped all
its advantage for neither Mrs Jennings nor Sir John
nor even Mrs Palmer herself ever spoke of him before her
Elinor wished that the same forbearance could have extended
towards herself but that was impossible and she was
obliged to listen day after day to the indignation of them all
Sir John could not have thought it possible
A man of whom he had always had such reason to think well
Such a goodnatured fellow He did not believe there was a
bolder rider in England It was an unaccountable business
He wished him at the devil with all his heart He would
not speak another word to him meet him where he might
for all the world No not if it were to be by the side
of Barton covert and they were kept watching for two
hours together Such a scoundrel of a fellow such
a deceitful dog It was only the last time they met
that he had offered him one of Follys puppies and this
was the end of it
Mrs Palmer in her way was equally angry
She was determined to drop his acquaintance immediately
and she was very thankful that she had never been acquainted
with him at all She wished with all her heart Combe
Magna was not so near Cleveland but it did not signify
for it was a great deal too far off to visit she hated
him so much that she was resolved never to mention
his name again and she should tell everybody she saw
how goodfornothing he was
The rest of Mrs Palmers sympathy was shewn in procuring
all the particulars in her power of the approaching marriage
and communicating them to Elinor She could soon tell
at what coachmakers the new carriage was building
by what painter Mr Willoughbys portrait was drawn
and at what warehouse Miss Greys clothes might be seen
The calm and polite unconcern of Lady Middleton
on the occasion was a happy relief to Elinors spirits
oppressed as they often were by the clamorous kindness
of the others It was a great comfort to her to be sure
of exciting no interest in ONE person at least among their
circle of friends a great comfort to know that there
was ONE who would meet her without feeling any curiosity
after particulars or any anxiety for her sisters health
Every qualification is raised at times by the
circumstances of the moment to more than its real value
and she was sometimes worried down by officious condolence
to rate goodbreeding as more indispensable to comfort
than goodnature
Lady Middleton expressed her sense of the affair
about once every day or twice if the subject occurred
very often by saying It is very shocking indeed
and by the means of this continual though gentle vent
was able not only to see the Miss Dashwoods from the
first without the smallest emotion but very soon
to see them without recollecting a word of the matter
and having thus supported the dignity of her own sex
and spoken her decided censure of what was wrong
in the other she thought herself at liberty to attend
to the interest of her own assemblies and therefore
determined though rather against the opinion of Sir John
that as Mrs Willoughby would at once be a woman of elegance
and fortune to leave her card with her as soon as she married
Colonel Brandons delicate unobtrusive enquiries
were never unwelcome to Miss Dashwood He had abundantly
earned the privilege of intimate discussion of her
sisters disappointment by the friendly zeal with
which he had endeavoured to soften it and they always
conversed with confidence His chief reward for the
painful exertion of disclosing past sorrows and present
humiliations was given in the pitying eye with which
Marianne sometimes observed him and the gentleness
of her voice whenever though it did not often happen
she was obliged or could oblige herself to speak to him
THESE assured him that his exertion had produced an
increase of goodwill towards himself and THESE gave
Elinor hopes of its being farther augmented hereafter
but Mrs Jennings who knew nothing of all this who knew
only that the Colonel continued as grave as ever and that
she could neither prevail on him to make the offer himself
nor commission her to make it for him began at the
end of two days to think that instead of Midsummer
they would not be married till Michaelmas and by the
end of a week that it would not be a match at all
The good understanding between the Colonel and Miss
Dashwood seemed rather to declare that the honours
of the mulberrytree the canal and the yew arbour
would all be made over to HER and Mrs Jennings had
for some time ceased to think at all of Mrs Ferrars
Early in February within a fortnight from the
receipt of Willoughbys letter Elinor had the painful
office of informing her sister that he was married
She had taken care to have the intelligence conveyed
to herself as soon as it was known that the ceremony
was over as she was desirous that Marianne should not
receive the first notice of it from the public papers
which she saw her eagerly examining every morning
She received the news with resolute composure
made no observation on it and at first shed no tears
but after a short time they would burst out and for the
rest of the day she was in a state hardly less pitiable
than when she first learnt to expect the event
The Willoughbys left town as soon as they were married
and Elinor now hoped as there could be no danger
of her seeing either of them to prevail on her sister
who had never yet left the house since the blow first fell
to go out again by degrees as she had done before
About this time the two Miss Steeles lately arrived
at their cousins house in Bartletts Buildings
Holburn presented themselves again before their more
grand relations in Conduit and Berkeley Streets
and were welcomed by them all with great cordiality
Elinor only was sorry to see them Their presence
always gave her pain and she hardly knew how to make
a very gracious return to the overpowering delight of Lucy
in finding her STILL in town
I should have been quite disappointed if I had not
found you here STILL said she repeatedly with a strong
emphasis on the word But I always thought I SHOULD
I was almost sure you would not leave London yet awhile
though you TOLD me you know at Barton that you should
not stay above a MONTH But I thought at the time
that you would most likely change your mind when it came
to the point It would have been such a great pity
to have went away before your brother and sister came
And now to be sure you will be in no hurry to be gone
I am amazingly glad you did not keep to YOUR WORD
Elinor perfectly understood her and was forced
to use all her selfcommand to make it appear that she
did NOT
Well my dear said Mrs Jennings and how did
you travel
Not in the stage I assure you replied Miss Steele
with quick exultation we came post all the way and had
a very smart beau to attend us Dr Davies was coming
to town and so we thought wed join him in a postchaise
and he behaved very genteelly and paid ten or twelve
shillings more than we did
Oh oh cried Mrs Jennings very pretty
indeed and the Doctor is a single man I warrant you
There now said Miss Steele affectedly simpering
everybody laughs at me so about the Doctor and I
cannot think why My cousins say they are sure I have
made a conquest but for my part I declare I never think
about him from one hours end to another Lord here
comes your beau Nancy my cousin said tother day
when she saw him crossing the street to the house
My beau indeed said II cannot think who you mean
The Doctor is no beau of mine
Aye aye that is very pretty talkingbut it wont do
the Doctor is the man I see
No indeed replied her cousin with affected earnestness
and I beg you will contradict it if you ever hear it talked
of
Mrs Jennings directly gave her the gratifying
assurance that she certainly would NOT and Miss Steele
was made completely happy
I suppose you will go and stay with your brother
and sister Miss Dashwood when they come to town
said Lucy returning after a cessation of hostile hints
to the charge
No I do not think we shall
Oh yes I dare say you will
Elinor would not humour her by farther opposition
What a charming thing it is that Mrs Dashwood can
spare you both for so long a time together
Long a time indeed interposed Mrs Jennings
Why their visit is but just begun
Lucy was silenced
I am sorry we cannot see your sister Miss Dashwood
said Miss Steele I am sorry she is not well
for Marianne had left the room on their arrival
You are very good My sister will be equally
sorry to miss the pleasure of seeing you but she has
been very much plagued lately with nervous headaches
which make her unfit for company or conversation
Oh dear that is a great pity but such old
friends as Lucy and meI think she might see US
and I am sure we would not speak a word
Elinor with great civility declined the proposal
Her sister was perhaps laid down upon the bed or in her
dressing gown and therefore not able to come to them
Oh if thats all cried Miss Steele we can
just as well go and see HER
Elinor began to find this impertinence too much for
her temper but she was saved the trouble of checking it
by Lucys sharp reprimand which now as on many occasions
though it did not give much sweetness to the manners
of one sister was of advantage in governing those of
the other
CHAPTER 33
After some opposition Marianne yielded to her
sisters entreaties and consented to go out with her
and Mrs Jennings one morning for half an hour She
expressly conditioned however for paying no visits
and would do no more than accompany them to Grays in
Sackville Street where Elinor was carrying on a negotiation
for the exchange of a few oldfashioned jewels of her mother
When they stopped at the door Mrs Jennings recollected
that there was a lady at the other end of the street
on whom she ought to call and as she had no business
at Grays it was resolved that while her young friends
transacted theirs she should pay her visit and
return for them
On ascending the stairs the Miss Dashwoods found
so many people before them in the room that there was
not a person at liberty to tend to their orders and they
were obliged to wait All that could be done was to sit
down at that end of the counter which seemed to promise the
quickest succession one gentleman only was standing there
and it is probable that Elinor was not without hope
of exciting his politeness to a quicker despatch
But the correctness of his eye and the delicacy
of his taste proved to be beyond his politeness
He was giving orders for a toothpickcase for himself
and till its size shape and ornaments were determined
all of which after examining and debating for a quarter
of an hour over every toothpickcase in the shop
were finally arranged by his own inventive fancy he had
no leisure to bestow any other attention on the two ladies
than what was comprised in three or four very broad stares
a kind of notice which served to imprint on Elinor
the remembrance of a person and face of strong
natural sterling insignificance though adorned in
the first style of fashion
Marianne was spared from the troublesome feelings
of contempt and resentment on this impertinent examination
of their features and on the puppyism of his manner
in deciding on all the different horrors of the different
toothpickcases presented to his inspection by remaining
unconscious of it all for she was as well able to collect
her thoughts within herself and be as ignorant of what was
passing around her in Mr Grays shop as in her own bedroom
At last the affair was decided The ivory
the gold and the pearls all received their appointment
and the gentleman having named the last day on which his
existence could be continued without the possession of the
toothpickcase drew on his gloves with leisurely care
and bestowing another glance on the Miss Dashwoods but such
a one as seemed rather to demand than express admiration
walked off with a happy air of real conceit and affected
indifference
Elinor lost no time in bringing her business forward
was on the point of concluding it when another gentleman
presented himself at her side She turned her eyes towards
his face and found him with some surprise to be her brother
Their affection and pleasure in meeting was just enough
to make a very creditable appearance in Mr Grays shop
John Dashwood was really far from being sorry to see
his sisters again it rather gave them satisfaction
and his inquiries after their mother were respectful
and attentive
Elinor found that he and Fanny had been in town
two days
I wished very much to call upon you yesterday
said he but it was impossible for we were obliged
to take Harry to see the wild beasts at Exeter Exchange
and we spent the rest of the day with Mrs Ferrars
Harry was vastly pleased THIS morning I had fully intended
to call on you if I could possibly find a spare half hour
but one has always so much to do on first coming to town
I am come here to bespeak Fanny a seal But tomorrow I
think I shall certainly be able to call in Berkeley Street
and be introduced to your friend Mrs Jennings
I understand she is a woman of very good fortune
And the Middletons too you must introduce me to THEM
As my motherinlaws relations I shall be happy to show
them every respect They are excellent neighbours to you in
the country I understand
Excellent indeed Their attention to our comfort
their friendliness in every particular is more than I
can express
I am extremely glad to hear it upon my word
extremely glad indeed But so it ought to be they are
people of large fortune they are related to you and
every civility and accommodation that can serve to make
your situation pleasant might be reasonably expected
And so you are most comfortably settled in your little cottage
and want for nothing Edward brought us a most charming
account of the place the most complete thing of its kind
he said that ever was and you all seemed to enjoy it beyond
any thing It was a great satisfaction to us to hear it
I assure you
Elinor did feel a little ashamed of her brother
and was not sorry to be spared the necessity of answering him
by the arrival of Mrs Jenningss servant who came to tell
her that his mistress waited for them at the door
Mr Dashwood attended them down stairs was introduced
to Mrs Jennings at the door of her carriage and repeating
his hope of being able to call on them the next day
took leave
His visit was duly paid He came with a pretence at
an apology from their sisterinlaw for not coming too
but she was so much engaged with her mother that really
she had no leisure for going any where Mrs Jennings
however assured him directly that she should not stand
upon ceremony for they were all cousins or something
like it and she should certainly wait on Mrs John
Dashwood very soon and bring her sisters to see her
His manners to THEM though calm were perfectly kind
to Mrs Jennings most attentively civil and on Colonel
Brandons coming in soon after himself he eyed him with a
curiosity which seemed to say that he only wanted to know
him to be rich to be equally civil to HIM
After staying with them half an hour he asked
Elinor to walk with him to Conduit Street and introduce
him to Sir John and Lady Middleton The weather was
remarkably fine and she readily consented As soon
as they were out of the house his enquiries began
Who is Colonel Brandon Is he a man of fortune
Yes he has very good property in Dorsetshire
I am glad of it He seems a most gentlemanlike man
and I think Elinor I may congratulate you on the prospect
of a very respectable establishment in life
Me brother what do you mean
He likes you I observed him narrowly and am
convinced of it What is the amount of his fortune
I believe about two thousand a year
Two thousand ayear and then working himself
up to a pitch of enthusiastic generosity he added
Elinor I wish with all my heart it were TWICE as much
for your sake
Indeed I believe you replied Elinor but I am
very sure that Colonel Brandon has not the smallest wish
of marrying ME
You are mistaken Elinor you are very much mistaken
A very little trouble on your side secures him
Perhaps just at present he may be undecided the smallness
of your fortune may make him hang back his friends
may all advise him against it But some of those little
attentions and encouragements which ladies can so easily
give will fix him in spite of himself And there can be
no reason why you should not try for him It is not to be
supposed that any prior attachment on your sidein short
you know as to an attachment of that kind it is quite
out of the question the objections are insurmountable
you have too much sense not to see all that Colonel Brandon
must be the man and no civility shall be wanting on
my part to make him pleased with you and your family
It is a match that must give universal satisfaction
In short it is a kind of thing thatlowering his voice
to an important whisperwill be exceedingly welcome
to ALL PARTIES Recollecting himself however he added
That is I mean to sayyour friends are all truly
anxious to see you well settled Fanny particularly
for she has your interest very much at heart I assure you
And her mother too Mrs Ferrars a very goodnatured woman
I am sure it would give her great pleasure she said as much
the other day
Elinor would not vouchsafe any answer
It would be something remarkable now he continued
something droll if Fanny should have a brother and I
a sister settling at the same time And yet it is not
very unlikely
Is Mr Edward Ferrars said Elinor with resolution
going to be married
It is not actually settled but there is such
a thing in agitation He has a most excellent mother
Mrs Ferrars with the utmost liberality will come forward
and settle on him a thousand a year if the match
takes place The lady is the Hon Miss Morton only daughter
of the late Lord Morton with thirty thousand pounds
A very desirable connection on both sides and I have not
a doubt of its taking place in time A thousand ayear
is a great deal for a mother to give away to make over
for ever but Mrs Ferrars has a noble spirit To give
you another instance of her liberalityThe other day
as soon as we came to town aware that money could
not be very plenty with us just now she put banknotes
into Fannys hands to the amount of two hundred pounds
And extremely acceptable it is for we must live at a great
expense while we are here
He paused for her assent and compassion and she
forced herself to say
Your expenses both in town and country must certainly
be considerable but your income is a large one
Not so large I dare say as many people suppose
I do not mean to complain however it is undoubtedly
a comfortable one and I hope will in time be better
The enclosure of Norland Common now carrying on
is a most serious drain And then I have made a little
purchase within this half year East Kingham Farm
you must remember the place where old Gibson used to live
The land was so very desirable for me in every respect
so immediately adjoining my own property that I felt it
my duty to buy it I could not have answered it to my
conscience to let it fall into any other hands A man must
pay for his convenience and it HAS cost me a vast deal
of money
More than you think it really and intrinsically worth
Why I hope not that I might have sold it again
the next day for more than I gave but with regard to the
purchasemoney I might have been very unfortunate indeed
for the stocks were at that time so low that if I had not
happened to have the necessary sum in my bankers hands
I must have sold out to very great loss
Elinor could only smile
Other great and inevitable expenses too we have
had on first coming to Norland Our respected father
as you well know bequeathed all the Stanhill effects
that remained at Norland and very valuable they were
to your mother Far be it from me to repine at his
doing so he had an undoubted right to dispose of his
own property as he chose but in consequence of it
we have been obliged to make large purchases of linen
china c to supply the place of what was taken away
You may guess after all these expenses how very far we
must be from being rich and how acceptable Mrs Ferrarss
kindness is
Certainly said Elinor and assisted by her liberality
I hope you may yet live to be in easy circumstances
Another year or two may do much towards it
he gravely replied but however there is still a great
deal to be done There is not a stone laid of Fannys
greenhouse and nothing but the plan of the flowergarden
marked out
Where is the greenhouse to be
Upon the knoll behind the house The old
walnut trees are all come down to make room for it
It will be a very fine object from many parts of the park
and the flowergarden will slope down just before it
and be exceedingly pretty We have cleared away all the old
thorns that grew in patches over the brow
Elinor kept her concern and her censure to herself
and was very thankful that Marianne was not present
to share the provocation
Having now said enough to make his poverty clear
and to do away the necessity of buying a pair of earrings
for each of his sisters in his next visit at Grays
his thoughts took a cheerfuller turn and he began to
congratulate Elinor on having such a friend as Mrs Jennings
She seems a most valuable woman indeedHer house
her style of living all bespeak an exceeding good income
and it is an acquaintance that has not only been
of great use to you hitherto but in the end may prove
materially advantageousHer inviting you to town is
certainly a vast thing in your favour and indeed it
speaks altogether so great a regard for you that in all
probability when she dies you will not be forgotten
She must have a great deal to leave
Nothing at all I should rather suppose for she has
only her jointure which will descend to her children
But it is not to be imagined that she lives up to
her income Few people of common prudence will do THAT
and whatever she saves she will be able to dispose of
And do you not think it more likely that she
should leave it to her daughters than to us
Her daughters are both exceedingly well married
and therefore I cannot perceive the necessity of her
remembering them farther Whereas in my opinion by her
taking so much notice of you and treating you in this
kind of way she has given you a sort of claim on her
future consideration which a conscientious woman would
not disregard Nothing can be kinder than her behaviour
and she can hardly do all this without being aware
of the expectation it raises
But she raises none in those most concerned
Indeed brother your anxiety for our welfare and prosperity
carries you too far
Why to be sure said he seeming to recollect himself
people have little have very little in their power
But my dear Elinor what is the matter with Marianne
she looks very unwell has lost her colour and is grown
quite thin Is she ill
She is not well she has had a nervous complaint
on her for several weeks
I am sorry for that At her time of life
any thing of an illness destroys the bloom for ever
Hers has been a very short one She was as handsome a girl
last September as I ever saw and as likely to attract
the man There was something in her style of beauty
to please them particularly I remember Fanny used to say
that she would marry sooner and better than you did
not but what she is exceedingly fond of YOU but so it
happened to strike her She will be mistaken however
I question whether Marianne NOW will marry a man worth
more than five or six hundred ayear at the utmost
and I am very much deceived if YOU do not do better
Dorsetshire I know very little of Dorsetshire but my dear
Elinor I shall be exceedingly glad to know more of it
and I think I can answer for your having Fanny and myself
among the earliest and best pleased of your visitors
Elinor tried very seriously to convince him that
there was no likelihood of her marrying Colonel Brandon
but it was an expectation of too much pleasure to himself
to be relinquished and he was really resolved on seeking
an intimacy with that gentleman and promoting the marriage
by every possible attention He had just compunction
enough for having done nothing for his sisters himself
to be exceedingly anxious that everybody else should
do a great deal and an offer from Colonel Brandon
or a legacy from Mrs Jennings was the easiest means
of atoning for his own neglect
They were lucky enough to find Lady Middleton
at home and Sir John came in before their visit ended
Abundance of civilities passed on all sides Sir John
was ready to like anybody and though Mr Dashwood did
not seem to know much about horses he soon set him
down as a very goodnatured fellow while Lady Middleton
saw enough of fashion in his appearance to think his
acquaintance worth having and Mr Dashwood went away
delighted with both
I shall have a charming account to carry
to Fanny said he as he walked back with his sister
Lady Middleton is really a most elegant woman Such
a woman as I am sure Fanny will be glad to know
And Mrs Jennings too an exceedingly wellbehaved woman
though not so elegant as her daughter Your sister need
not have any scruple even of visiting HER which to say
the truth has been a little the case and very naturally
for we only knew that Mrs Jennings was the widow of a man
who had got all his money in a low way and Fanny and
Mrs Ferrars were both strongly prepossessed that neither
she nor her daughters were such kind of women as Fanny
would like to associate with But now I can carry her
a most satisfactory account of both
CHAPTER 34
Mrs John Dashwood had so much confidence in her
husbands judgment that she waited the very next day
both on Mrs Jennings and her daughter and her
confidence was rewarded by finding even the former
even the woman with whom her sisters were staying
by no means unworthy her notice and as for Lady Middleton
she found her one of the most charming women in the world
Lady Middleton was equally pleased with Mrs Dashwood
There was a kind of cold hearted selfishness on both sides
which mutually attracted them and they sympathised
with each other in an insipid propriety of demeanor
and a general want of understanding
The same manners however which recommended Mrs John
Dashwood to the good opinion of Lady Middleton did not suit
the fancy of Mrs Jennings and to HER she appeared nothing
more than a little proudlooking woman of uncordial address
who met her husbands sisters without any affection
and almost without having anything to say to them
for of the quarter of an hour bestowed on Berkeley Street
she sat at least seven minutes and a half in silence
Elinor wanted very much to know though she did
not chuse to ask whether Edward was then in town
but nothing would have induced Fanny voluntarily
to mention his name before her till able to tell her
that his marriage with Miss Morton was resolved on
or till her husbands expectations on Colonel Brandon
were answered because she believed them still so very
much attached to each other that they could not be too
sedulously divided in word and deed on every occasion
The intelligence however which SHE would not give
soon flowed from another quarter Lucy came very shortly
to claim Elinors compassion on being unable to see Edward
though he had arrived in town with Mr and Mrs Dashwood
He dared not come to Bartletts Buildings for fear
of detection and though their mutual impatience to meet
was not to be told they could do nothing at present
but write
Edward assured them himself of his being in town
within a very short time by twice calling in Berkeley Street
Twice was his card found on the table when they returned
from their mornings engagements Elinor was pleased
that he had called and still more pleased that she had
missed him
The Dashwoods were so prodigiously delighted
with the Middletons that though not much in the habit
of giving anything they determined to give them
a dinner and soon after their acquaintance began
invited them to dine in Harley Street where they had
taken a very good house for three months Their sisters
and Mrs Jennings were invited likewise and John Dashwood
was careful to secure Colonel Brandon who always glad
to be where the Miss Dashwoods were received his eager
civilities with some surprise but much more pleasure
They were to meet Mrs Ferrars but Elinor could not learn
whether her sons were to be of the party The expectation
of seeing HER however was enough to make her interested
in the engagement for though she could now meet Edwards
mother without that strong anxiety which had once promised
to attend such an introduction though she could now see
her with perfect indifference as to her opinion of herself
her desire of being in company with Mrs Ferrars
her curiosity to know what she was like was as lively as ever
The interest with which she thus anticipated the
party was soon afterwards increased more powerfully
than pleasantly by her hearing that the Miss Steeles
were also to be at it
So well had they recommended themselves to Lady Middleton
so agreeable had their assiduities made them to her
that though Lucy was certainly not so elegant and her
sister not even genteel she was as ready as Sir John
to ask them to spend a week or two in Conduit Street
and it happened to be particularly convenient to the Miss
Steeles as soon as the Dashwoods invitation was known
that their visit should begin a few days before the party
took place
Their claims to the notice of Mrs John Dashwood
as the nieces of the gentleman who for many years had
had the care of her brother might not have done much
however towards procuring them seats at her table
but as Lady Middletons guests they must be welcome and Lucy
who had long wanted to be personally known to the family
to have a nearer view of their characters and her own
difficulties and to have an opportunity of endeavouring
to please them had seldom been happier in her life
than she was on receiving Mrs John Dashwoods card
On Elinor its effect was very different She began
immediately to determine that Edward who lived with
his mother must be asked as his mother was to a party
given by his sister and to see him for the first time
after all that passed in the company of Lucyshe hardly
knew how she could bear it
These apprehensions perhaps were not founded
entirely on reason and certainly not at all on truth
They were relieved however not by her own recollection
but by the good will of Lucy who believed herself to be
inflicting a severe disappointment when she told her
that Edward certainly would not be in Harley Street on Tuesday
and even hoped to be carrying the pain still farther
by persuading her that he was kept away by the extreme
affection for herself which he could not conceal when they
were together
The important Tuesday came that was to introduce
the two young ladies to this formidable motherinlaw
Pity me dear Miss Dashwood said Lucy as they
walked up the stairs togetherfor the Middletons arrived
so directly after Mrs Jennings that they all followed
the servant at the same timeThere is nobody here but
you that can feel for meI declare I can hardly stand
Good graciousIn a moment I shall see the person that all
my happiness depends onthat is to be my mother
Elinor could have given her immediate relief
by suggesting the possibility of its being Miss Mortons mother
rather than her own whom they were about to behold
but instead of doing that she assured her and with
great sincerity that she did pity herto the utter
amazement of Lucy who though really uncomfortable herself
hoped at least to be an object of irrepressible envy to Elinor
Mrs Ferrars was a little thin woman upright
even to formality in her figure and serious
even to sourness in her aspect Her complexion was sallow
and her features small without beauty and naturally
without expression but a lucky contraction of the brow
had rescued her countenance from the disgrace of insipidity
by giving it the strong characters of pride and ill nature
She was not a woman of many words for unlike people
in general she proportioned them to the number of
her ideas and of the few syllables that did escape her
not one fell to the share of Miss Dashwood whom she eyed
with the spirited determination of disliking her at all events
Elinor could not NOW be made unhappy by this behaviour
A few months ago it would have hurt her exceedingly but it
was not in Mrs Ferrars power to distress her by it now
and the difference of her manners to the Miss Steeles
a difference which seemed purposely made to humble her more
only amused her She could not but smile to see the graciousness
of both mother and daughter towards the very person
for Lucy was particularly distinguishedwhom of all others
had they known as much as she did they would have been most
anxious to mortify while she herself who had comparatively
no power to wound them sat pointedly slighted by both
But while she smiled at a graciousness so misapplied
she could not reflect on the meanspirited folly from
which it sprung nor observe the studied attentions
with which the Miss Steeles courted its continuance
without thoroughly despising them all four
Lucy was all exultation on being so honorably
distinguished and Miss Steele wanted only to be teazed
about Dr Davies to be perfectly happy
The dinner was a grand one the servants were numerous
and every thing bespoke the Mistresss inclination
for show and the Masters ability to support it
In spite of the improvements and additions which were
making to the Norland estate and in spite of its owner
having once been within some thousand pounds of being
obliged to sell out at a loss nothing gave any symptom
of that indigence which he had tried to infer from it
no poverty of any kind except of conversation appeared
but there the deficiency was considerable John Dashwood
had not much to say for himself that was worth hearing
and his wife had still less But there was no peculiar
disgrace in this for it was very much the case with
the chief of their visitors who almost all laboured
under one or other of these disqualifications for being
agreeableWant of sense either natural or improvedwant
of elegancewant of spiritsor want of temper
When the ladies withdrew to the drawingroom
after dinner this poverty was particularly evident
for the gentlemen HAD supplied the discourse with some
varietythe variety of politics inclosing land
and breaking horsesbut then it was all over and one
subject only engaged the ladies till coffee came in
which was the comparative heights of Harry Dashwood
and Lady Middletons second son William who were nearly
of the same age
Had both the children been there the affair might
have been determined too easily by measuring them at once
but as Harry only was present it was all conjectural
assertion on both sides and every body had a right to
be equally positive in their opinion and to repeat it
over and over again as often as they liked
The parties stood thus
The two mothers though each really convinced that
her own son was the tallest politely decided in favour
of the other
The two grandmothers with not less partiality
but more sincerity were equally earnest in support
of their own descendant
Lucy who was hardly less anxious to please one parent
than the other thought the boys were both remarkably tall
for their age and could not conceive that there could
be the smallest difference in the world between them
and Miss Steele with yet greater address gave it
as fast as she could in favour of each
Elinor having once delivered her opinion on
Williams side by which she offended Mrs Ferrars and
Fanny still more did not see the necessity of enforcing
it by any farther assertion and Marianne when called
on for hers offended them all by declaring that she
had no opinion to give as she had never thought about it
Before her removing from Norland Elinor had painted
a very pretty pair of screens for her sisterinlaw
which being now just mounted and brought home
ornamented her present drawing room and these screens
catching the eye of John Dashwood on his following
the other gentlemen into the room were officiously
handed by him to Colonel Brandon for his admiration
These are done by my eldest sister said he and you
as a man of taste will I dare say be pleased with them
I do not know whether you have ever happened to see any
of her performances before but she is in general reckoned
to draw extremely well
The Colonel though disclaiming all pretensions
to connoisseurship warmly admired the screens as he
would have done any thing painted by Miss Dashwood
and on the curiosity of the others being of course excited
they were handed round for general inspection
Mrs Ferrars not aware of their being Elinors work
particularly requested to look at them and after they had
received gratifying testimony of Lady Middletonss approbation
Fanny presented them to her mother considerately informing
her at the same time that they were done by Miss Dashwood
Humsaid Mrs Ferrarsvery prettyand without
regarding them at all returned them to her daughter
Perhaps Fanny thought for a moment that her mother
had been quite rude enoughfor colouring a little
she immediately said
They are very pretty maamant they But then again
the dread of having been too civil too encouraging herself
probably came over her for she presently added
Do you not think they are something in Miss
Mortons style of painting MaamShe DOES paint most
delightfullyHow beautifully her last landscape is done
Beautifully indeed But SHE does every thing well
Marianne could not bear thisShe was already
greatly displeased with Mrs Ferrars and such illtimed
praise of another at Elinors expense though she
had not any notion of what was principally meant by it
provoked her immediately to say with warmth
This is admiration of a very particular kind
what is Miss Morton to uswho knows or who cares
for herit is Elinor of whom WE think and speak
And so saying she took the screens out of her
sisterinlaws hands to admire them herself as they
ought to be admired
Mrs Ferrars looked exceedingly angry and drawing
herself up more stiffly than ever pronounced in retort
this bitter philippic Miss Morton is Lord Mortons daughter
Fanny looked very angry too and her husband was
all in a fright at his sisters audacity Elinor was
much more hurt by Mariannes warmth than she had been
by what produced it but Colonel Brandons eyes as they
were fixed on Marianne declared that he noticed only
what was amiable in it the affectionate heart which could
not bear to see a sister slighted in the smallest point
Mariannes feelings did not stop here The cold
insolence of Mrs Ferrarss general behaviour to her sister
seemed to her to foretell such difficulties and distresses
to Elinor as her own wounded heart taught her to think
of with horror and urged by a strong impulse of
affectionate sensibility she moved after a moment
to her sisters chair and putting one arm round her neck
and one cheek close to hers said in a low but eager
voice
Dear dear Elinor dont mind them Dont let them
make YOU unhappy
She could say no more her spirits were quite overcome
and hiding her face on Elinors shoulder she burst
into tears Every bodys attention was called and almost
every body was concernedColonel Brandon rose up and went
to them without knowing what he didMrs Jennings
with a very intelligent Ah poor dear immediately gave
her her salts and Sir John felt so desperately enraged
against the author of this nervous distress that he
instantly changed his seat to one close by Lucy Steele
and gave her in a whisper a brief account of the whole
shocking affair
In a few minutes however Marianne was recovered
enough to put an end to the bustle and sit down among
the rest though her spirits retained the impression
of what had passed the whole evening
Poor Marianne said her brother to Colonel Brandon
in a low voice as soon as he could secure his attention
She has not such good health as her sistershe is very
nervousshe has not Elinors constitutionand one must
allow that there is something very trying to a young woman
who HAS BEEN a beauty in the loss of her personal attractions
You would not think it perhaps but Marianne WAS remarkably
handsome a few months ago quite as handsome as Elinor
Now you see it is all gone
CHAPTER 35
Elinors curiosity to see Mrs Ferrars was satisfied
She had found in her every thing that could tend to make
a farther connection between the families undesirable
She had seen enough of her pride her meanness and her
determined prejudice against herself to comprehend all
the difficulties that must have perplexed the engagement
and retarded the marriage of Edward and herself had he been
otherwise freeand she had seen almost enough to be thankful
for her OWN sake that one greater obstacle preserved her
from suffering under any other of Mrs Ferrarss creation
preserved her from all dependence upon her caprice or any
solicitude for her good opinion Or at least if she did not
bring herself quite to rejoice in Edwards being fettered
to Lucy she determined that had Lucy been more amiable
she OUGHT to have rejoiced
She wondered that Lucys spirits could be so very much
elevated by the civility of Mrs Ferrarsthat her interest
and her vanity should so very much blind her as to make
the attention which seemed only paid her because she was
NOT ELINOR appear a compliment to herselfor to allow
her to derive encouragement from a preference only given her
because her real situation was unknown But that it was so
had not only been declared by Lucys eyes at the time
but was declared over again the next morning more openly
for at her particular desire Lady Middleton set her down
in Berkeley Street on the chance of seeing Elinor alone
to tell her how happy she was
The chance proved a lucky one for a message from
Mrs Palmer soon after she arrived carried Mrs Jennings away
My dear friend cried Lucy as soon as they were
by themselves I come to talk to you of my happiness
Could anything be so flattering as Mrs Ferrarss way
of treating me yesterday So exceeding affable as she
wasYou know how I dreaded the thoughts of seeing her
but the very moment I was introduced there was such an
affability in her behaviour as really should seem to say
she had quite took a fancy to me Now was not it so
You saw it all and was not you quite struck with it
She was certainly very civil to you
CivilDid you see nothing but only civility
I saw a vast deal more Such kindness as fell to the share
of nobody but meNo pride no hauteur and your sister
just the sameall sweetness and affability
Elinor wished to talk of something else but Lucy still
pressed her to own that she had reason for her happiness
and Elinor was obliged to go on
Undoubtedly if they had known your engagement
said she nothing could be more flattering than their
treatment of youbut as that was not the case
I guessed you would say soreplied Lucy
quicklybut there was no reason in the world why
Mrs Ferrars should seem to like me if she did not
and her liking me is every thing You shant talk me
out of my satisfaction I am sure it will all end well
and there will be no difficulties at all to what I
used to think Mrs Ferrars is a charming woman
and so is your sister They are both delightful women
indeedI wonder I should never hear you say how agreeable
Mrs Dashwood was
To this Elinor had no answer to make and did not
attempt any
Are you ill Miss Dashwoodyou seem lowyou
dont speaksure you ant well
I never was in better health
I am glad of it with all my heart but really you did
not look it I should be sorry to have YOU ill you that have
been the greatest comfort to me in the worldHeaven
knows what I should have done without your friendship
Elinor tried to make a civil answer though doubting
her own success But it seemed to satisfy Lucy for she
directly replied
Indeed I am perfectly convinced of your regard
for me and next to Edwards love it is the greatest
comfort I havePoor EdwardBut now there is one
good thing we shall be able to meet and meet pretty often
for Lady Middletons delighted with Mrs Dashwood
so we shall be a good deal in Harley Street I dare say
and Edward spends half his time with his sisterbesides
Lady Middleton and Mrs Ferrars will visit now
and Mrs Ferrars and your sister were both so good to say
more than once they should always be glad to see me
They are such charming womenI am sure if ever you
tell your sister what I think of her you cannot speak
too high
But Elinor would not give her any encouragement
to hope that she SHOULD tell her sister Lucy continued
I am sure I should have seen it in a moment
if Mrs Ferrars had took a dislike to me If she had only
made me a formal courtesy for instance without saying
a word and never after had took any notice of me
and never looked at me in a pleasant wayyou know
what I meanif I had been treated in that forbidding
sort of way I should have gave it all up in despair
I could not have stood it For where she DOES dislike
I know it is most violent
Elinor was prevented from making any reply to this
civil triumph by the doors being thrown open the servants
announcing Mr Ferrars and Edwards immediately walking in
It was a very awkward moment and the countenance of each
shewed that it was so They all looked exceedingly foolish
and Edward seemed to have as great an inclination to walk
out of the room again as to advance farther into it
The very circumstance in its unpleasantest form
which they would each have been most anxious to avoid
had fallen on themThey were not only all three together
but were together without the relief of any other person
The ladies recovered themselves first It was not Lucys
business to put herself forward and the appearance of
secrecy must still be kept up She could therefore only
LOOK her tenderness and after slightly addressing him
said no more
But Elinor had more to do and so anxious was she
for his sake and her own to do it well that she
forced herself after a moments recollection
to welcome him with a look and manner that were almost easy
and almost open and another struggle another effort still
improved them She would not allow the presence of Lucy
nor the consciousness of some injustice towards herself
to deter her from saying that she was happy to see him
and that she had very much regretted being from home
when he called before in Berkeley Street She would
not be frightened from paying him those attentions which
as a friend and almost a relation were his due by the
observant eyes of Lucy though she soon perceived them
to be narrowly watching her
Her manners gave some reassurance to Edward and he
had courage enough to sit down but his embarrassment still
exceeded that of the ladies in a proportion which the case
rendered reasonable though his sex might make it rare
for his heart had not the indifference of Lucys nor
could his conscience have quite the ease of Elinors
Lucy with a demure and settled air seemed determined
to make no contribution to the comfort of the others
and would not say a word and almost every thing that WAS
said proceeded from Elinor who was obliged to volunteer
all the information about her mothers health their coming
to town c which Edward ought to have inquired about
but never did
Her exertions did not stop here for she soon
afterwards felt herself so heroically disposed as
to determine under pretence of fetching Marianne
to leave the others by themselves and she really did it
and THAT in the handsomest manner for she loitered away
several minutes on the landingplace with the most
highminded fortitude before she went to her sister
When that was once done however it was time for the raptures
of Edward to cease for Mariannes joy hurried her into
the drawingroom immediately Her pleasure in seeing him
was like every other of her feelings strong in itself
and strongly spoken She met him with a hand that would
be taken and a voice that expressed the affection of a sister
Dear Edward she cried this is a moment of great
happinessThis would almost make amends for every thing
Edward tried to return her kindness as it deserved
but before such witnesses he dared not say half what he
really felt Again they all sat down and for a moment
or two all were silent while Marianne was looking with the
most speaking tenderness sometimes at Edward and sometimes
at Elinor regretting only that their delight in each
other should be checked by Lucys unwelcome presence
Edward was the first to speak and it was to notice
Mariannes altered looks and express his fear of her
not finding London agree with her
Oh dont think of me she replied with spirited
earnestness though her eyes were filled with tears
as she spoke dont think of MY health Elinor is well
you see That must be enough for us both
This remark was not calculated to make Edward or
Elinor more easy nor to conciliate the good will of Lucy
who looked up at Marianne with no very benignant expression
Do you like London said Edward willing to say
any thing that might introduce another subject
Not at all I expected much pleasure in it
but I have found none The sight of you Edward is the
only comfort it has afforded and thank Heaven you
are what you always were
She pausedno one spoke
I think Elinor she presently added we must
employ Edward to take care of us in our return to Barton
In a week or two I suppose we shall be going and I trust
Edward will not be very unwilling to accept the charge
Poor Edward muttered something but what it was
nobody knew not even himself But Marianne who saw
his agitation and could easily trace it to whatever
cause best pleased herself was perfectly satisfied
and soon talked of something else
We spent such a day Edward in Harley Street
yesterday So dull so wretchedly dullBut I have much
to say to you on that head which cannot be said now
And with this admirable discretion did she defer
the assurance of her finding their mutual relatives more
disagreeable than ever and of her being particularly
disgusted with his mother till they were more in private
But why were you not there EdwardWhy did you
not come
I was engaged elsewhere
Engaged But what was that when such friends
were to be met
Perhaps Miss Marianne cried Lucy eager to take
some revenge on her you think young men never stand
upon engagements if they have no mind to keep them
little as well as great
Elinor was very angry but Marianne seemed entirely
insensible of the sting for she calmly replied
Not so indeed for seriously speaking I am very
sure that conscience only kept Edward from Harley Street
And I really believe he HAS the most delicate conscience
in the world the most scrupulous in performing
every engagement however minute and however it
may make against his interest or pleasure He is the
most fearful of giving pain of wounding expectation
and the most incapable of being selfish of any body
I ever saw Edward it is so and I will say it
What are you never to hear yourself praisedThen you
must be no friend of mine for those who will accept
of my love and esteem must submit to my open commendation
The nature of her commendation in the present case
however happened to be particularly illsuited to the
feelings of two thirds of her auditors and was so very
unexhilarating to Edward that he very soon got up to go away
Going so soon said Marianne my dear Edward
this must not be
And drawing him a little aside she whispered
her persuasion that Lucy could not stay much longer
But even this encouragement failed for he would go
and Lucy who would have outstaid him had his visit lasted
two hours soon afterwards went away
What can bring her here so often said Marianne
on her leaving them Could not she see that we wanted
her gonehow teazing to Edward
Why sowe were all his friends and Lucy has been
the longest known to him of any It is but natural
that he should like to see her as well as ourselves
Marianne looked at her steadily and said You know
Elinor that this is a kind of talking which I cannot bear
If you only hope to have your assertion contradicted
as I must suppose to be the case you ought to recollect
that I am the last person in the world to do it
I cannot descend to be tricked out of assurances that are
not really wanted
She then left the room and Elinor dared not follow
her to say more for bound as she was by her promise
of secrecy to Lucy she could give no information that
would convince Marianne and painful as the consequences
of her still continuing in an error might be she was
obliged to submit to it All that she could hope was
that Edward would not often expose her or himself to the
distress of hearing Mariannes mistaken warmth nor to the
repetition of any other part of the pain that had attended
their recent meetingand this she had every reason to expect
CHAPTER 36
Within a few days after this meeting the newspapers
announced to the world that the lady of Thomas Palmer
Esq was safely delivered of a son and heir a very
interesting and satisfactory paragraph at least to all
those intimate connections who knew it before
This event highly important to Mrs Jenningss happiness
produced a temporary alteration in the disposal of her time
and influenced in a like degree the engagements
of her young friends for as she wished to be as much
as possible with Charlotte she went thither every morning
as soon as she was dressed and did not return till late
in the evening and the Miss Dashwoods at the particular
request of the Middletons spent the whole of every day
in every day in Conduit Street For their own comfort
they would much rather have remained at least all
the morning in Mrs Jenningss house but it was not
a thing to be urged against the wishes of everybody
Their hours were therefore made over to Lady Middleton
and the two Miss Steeles by whom their company in fact
was as little valued as it was professedly sought
They had too much sense to be desirable companions
to the former and by the latter they were considered with
a jealous eye as intruding on THEIR ground and sharing
the kindness which they wanted to monopolize Though nothing
could be more polite than Lady Middletons behaviour to
Elinor and Marianne she did not really like them at all
Because they neither flattered herself nor her children
she could not believe them goodnatured and because they
were fond of reading she fancied them satirical perhaps
without exactly knowing what it was to be satirical
but THAT did not signify It was censure in common use
and easily given
Their presence was a restraint both on her and on Lucy
It checked the idleness of one and the business of the other
Lady Middleton was ashamed of doing nothing before them
and the flattery which Lucy was proud to think of
and administer at other times she feared they would despise
her for offering Miss Steele was the least discomposed
of the three by their presence and it was in their power
to reconcile her to it entirely Would either of them
only have given her a full and minute account of the whole
affair between Marianne and Mr Willoughby she would
have thought herself amply rewarded for the sacrifice
of the best place by the fire after dinner which their
arrival occasioned But this conciliation was not granted
for though she often threw out expressions of pity for her
sister to Elinor and more than once dropt a reflection
on the inconstancy of beaux before Marianne no effect
was produced but a look of indifference from the former
or of disgust in the latter An effort even yet lighter
might have made her their friend Would they only have
laughed at her about the Doctor But so little were they
anymore than the others inclined to oblige her
that if Sir John dined from home she might spend a whole
day without hearing any other raillery on the subject
than what she was kind enough to bestow on herself
All these jealousies and discontents however were so
totally unsuspected by Mrs Jennings that she thought
it a delightful thing for the girls to be together
and generally congratulated her young friends every night
on having escaped the company of a stupid old woman so long
She joined them sometimes at Sir Johns sometimes
at her own house but wherever it was she always came
in excellent spirits full of delight and importance
attributing Charlottes well doing to her own care and ready
to give so exact so minute a detail of her situation
as only Miss Steele had curiosity enough to desire
One thing DID disturb her and of that she made her
daily complaint Mr Palmer maintained the common
but unfatherly opinion among his sex of all infants being alike
and though she could plainly perceive at different times
the most striking resemblance between this baby and every
one of his relations on both sides there was no convincing
his father of it no persuading him to believe that it
was not exactly like every other baby of the same age
nor could he even be brought to acknowledge the simple
proposition of its being the finest child in the world
I come now to the relation of a misfortune
which about this time befell Mrs John Dashwood
It so happened that while her two sisters with
Mrs Jennings were first calling on her in Harley Street
another of her acquaintance had dropt ina circumstance
in itself not apparently likely to produce evil to her
But while the imaginations of other people will carry
them away to form wrong judgments of our conduct
and to decide on it by slight appearances ones happiness
must in some measure be always at the mercy of chance
In the present instance this lastarrived lady allowed
her fancy to so far outrun truth and probability
that on merely hearing the name of the Miss Dashwoods
and understanding them to be Mr Dashwoods sisters
she immediately concluded them to be staying in Harley Street
and this misconstruction produced within a day
or two afterwards cards of invitation for them
as well as for their brother and sister to a small
musical party at her house The consequence of which was
that Mrs John Dashwood was obliged to submit not only
to the exceedingly great inconvenience of sending her
carriage for the Miss Dashwoods but what was still worse
must be subject to all the unpleasantness of appearing
to treat them with attention and who could tell that they
might not expect to go out with her a second time The power
of disappointing them it was true must always be hers
But that was not enough for when people are determined
on a mode of conduct which they know to be wrong they feel
injured by the expectation of any thing better from them
Marianne had now been brought by degrees so much
into the habit of going out every day that it was become
a matter of indifference to her whether she went or not
and she prepared quietly and mechanically for every
evenings engagement though without expecting the smallest
amusement from any and very often without knowing
till the last moment where it was to take her
To her dress and appearance she was grown so perfectly
indifferent as not to bestow half the consideration on it
during the whole of her toilet which it received from
Miss Steele in the first five minutes of their being
together when it was finished Nothing escaped HER minute
observation and general curiosity she saw every thing
and asked every thing was never easy till she knew the price
of every part of Mariannes dress could have guessed the
number of her gowns altogether with better judgment than
Marianne herself and was not without hopes of finding out
before they parted how much her washing cost per week
and how much she had every year to spend upon herself
The impertinence of these kind of scrutinies moreover
was generally concluded with a compliment which
though meant as its douceur was considered by Marianne
as the greatest impertinence of all for after undergoing
an examination into the value and make of her gown
the colour of her shoes and the arrangement of her hair
she was almost sure of being told that upon her word
she looked vastly smart and she dared to say she would
make a great many conquests
With such encouragement as this was she dismissed
on the present occasion to her brothers carriage
which they were ready to enter five minutes after it
stopped at the door a punctuality not very agreeable
to their sisterinlaw who had preceded them to the house
of her acquaintance and was there hoping for some delay
on their part that might inconvenience either herself
or her coachman
The events of this evening were not very remarkable
The party like other musical parties comprehended a
great many people who had real taste for the performance
and a great many more who had none at all and the performers
themselves were as usual in their own estimation
and that of their immediate friends the first private
performers in England
As Elinor was neither musical nor affecting to be so
she made no scruple of turning her eyes from the grand
pianoforte whenever it suited her and unrestrained even
by the presence of a harp and violoncello would fix
them at pleasure on any other object in the room In one
of these excursive glances she perceived among a group
of young men the very he who had given them a lecture
on toothpickcases at Grays She perceived him soon
afterwards looking at herself and speaking familiarly
to her brother and had just determined to find out his
name from the latter when they both came towards her
and Mr Dashwood introduced him to her as Mr Robert Ferrars
He addressed her with easy civility and twisted
his head into a bow which assured her as plainly as
words could have done that he was exactly the coxcomb
she had heard him described to be by Lucy Happy had
it been for her if her regard for Edward had depended
less on his own merit than on the merit of his nearest
relations For then his brothers bow must have given
the finishing stroke to what the illhumour of his mother
and sister would have begun But while she wondered
at the difference of the two young men she did not find
that the emptiness of conceit of the one put her out
of all charity with the modesty and worth of the other
Why they WERE different Robert exclaimed to her himself
in the course of a quarter of an hours conversation
for talking of his brother and lamenting the extreme
GAUCHERIE which he really believed kept him from mixing
in proper society he candidly and generously attributed it
much less to any natural deficiency than to the misfortune
of a private education while he himself though probably
without any particular any material superiority
by nature merely from the advantage of a public school
was as well fitted to mix in the world as any other man
Upon my soul he added I believe it is nothing more
and so I often tell my mother when she is grieving
about it My dear Madam I always say to her you must
make yourself easy The evil is now irremediable
and it has been entirely your own doing Why would
you be persuaded by my uncle Sir Robert against your
own judgment to place Edward under private tuition
at the most critical time of his life If you had only sent
him to Westminster as well as myself instead of sending
him to Mr Pratts all this would have been prevented
This is the way in which I always consider the matter
and my mother is perfectly convinced of her error
Elinor would not oppose his opinion because
whatever might be her general estimation of the advantage
of a public school she could not think of Edwards
abode in Mr Pratts family with any satisfaction
You reside in Devonshire I thinkwas his
next observation in a cottage near Dawlish
Elinor set him right as to its situation
and it seemed rather surprising to him that anybody
could live in Devonshire without living near Dawlish
He bestowed his hearty approbation however on their
species of house
For my own part said he I am excessively fond
of a cottage there is always so much comfort so much
elegance about them And I protest if I had any money
to spare I should buy a little land and build one myself
within a short distance of London where I might drive
myself down at any time and collect a few friends
about me and be happy I advise every body who is going
to build to build a cottage My friend Lord Courtland
came to me the other day on purpose to ask my advice
and laid before me three different plans of Bonomis
I was to decide on the best of them My dear Courtland
said I immediately throwing them all into the fire do not
adopt either of them but by all means build a cottage
And that I fancy will be the end of it
Some people imagine that there can be no accommodations
no space in a cottage but this is all a mistake
I was last month at my friend Elliotts near Dartford
Lady Elliott wished to give a dance But how can it
be done said she my dear Ferrars do tell me how it
is to be managed There is not a room in this cottage
that will hold ten couple and where can the supper be
I immediately saw that there could be no difficulty in it
so I said My dear Lady Elliott do not be uneasy
The dining parlour will admit eighteen couple with ease
cardtables may be placed in the drawingroom the library
may be open for tea and other refreshments and let the
supper be set out in the saloon Lady Elliott was delighted
with the thought We measured the diningroom and found
it would hold exactly eighteen couple and the affair
was arranged precisely after my plan So that in fact
you see if people do but know how to set about it
every comfort may be as well enjoyed in a cottage
as in the most spacious dwelling
Elinor agreed to it all for she did not think
he deserved the compliment of rational opposition
As John Dashwood had no more pleasure in music than his
eldest sister his mind was equally at liberty to fix on
any thing else and a thought struck him during the evening
which he communicated to his wife for her approbation
when they got home The consideration of Mrs Dennisons
mistake
in supposing his sisters their guests had suggested the
propriety of their being really invited to become such
while Mrs Jennings engagements kept her from home
The expense would be nothing the inconvenience not more
and it was altogether an attention which the delicacy
of his conscience pointed out to be requisite to its
complete enfranchisement from his promise to his father
Fanny was startled at the proposal
I do not see how it can be done said she
without affronting Lady Middleton for they spend every day
with her otherwise I should be exceedingly glad to do it
You know I am always ready to pay them any attention
in my power as my taking them out this evening shews
But they are Lady Middletons visitors How can I ask them
away from her
Her husband but with great humility did not see
the force of her objection They had already spent a week
in this manner in Conduit Street and Lady Middleton
could not be displeased at their giving the same number
of days to such near relations
Fanny paused a moment and then with fresh vigor said
My love I would ask them with all my heart if it
was in my power But I had just settled within myself
to ask the Miss Steeles to spend a few days with us
They are very well behaved good kind of girls and I think
the attention is due to them as their uncle did so very
well by Edward We can ask your sisters some other year
you know but the Miss Steeles may not be in town any more
I am sure you will like them indeed you DO like them
you know very much already and so does my mother and they
are such favourites with Harry
Mr Dashwood was convinced He saw the necessity
of inviting the Miss Steeles immediately and his conscience
was pacified by the resolution of inviting his sisters
another year at the same time however slyly suspecting
that another year would make the invitation needless
by bringing Elinor to town as Colonel Brandons wife
and Marianne as THEIR visitor
Fanny rejoicing in her escape and proud of the ready
wit that had procured it wrote the next morning to Lucy
to request her company and her sisters for some days
in Harley Street as soon as Lady Middleton could spare them
This was enough to make Lucy really and reasonably happy
Mrs Dashwood seemed actually working for her herself
cherishing all her hopes and promoting all her views
Such an opportunity of being with Edward and his family was
above all things the most material to her interest
and such an invitation the most gratifying to her
feelings It was an advantage that could not be too
gratefully acknowledged nor too speedily made use of
and the visit to Lady Middleton which had not before had
any precise limits was instantly discovered to have been
always meant to end in two days time
When the note was shown to Elinor as it was within ten
minutes after its arrival it gave her for the first time
some share in the expectations of Lucy for such a mark
of uncommon kindness vouchsafed on so short an acquaintance
seemed to declare that the goodwill towards her arose
from something more than merely malice against herself
and might be brought by time and address to do
every thing that Lucy wished Her flattery had already
subdued the pride of Lady Middleton and made an entry
into the close heart of Mrs John Dashwood and these
were effects that laid open the probability of greater
The Miss Steeles removed to Harley Street and all
that reached Elinor of their influence there strengthened
her expectation of the event Sir John who called on
them more than once brought home such accounts of the
favour they were in as must be universally striking
Mrs Dashwood had never been so much pleased with any
young women in her life as she was with them had given
each of them a needle book made by some emigrant
called Lucy by her Christian name and did not know
whether she should ever be able to part with them
At this point in the first and second edtions Volume II ended
CHAPTER 37
Mrs Palmer was so well at the end of a fortnight
that her mother felt it no longer necessary to give up
the whole of her time to her and contenting herself with
visiting her once or twice a day returned from that period
to her own home and her own habits in which she found
the Miss Dashwoods very ready to resume their former share
About the third or fourth morning after their
being thus resettled in Berkeley Street Mrs Jennings
on returning from her ordinary visit to Mrs Palmer
entered the drawingroom where Elinor was sitting
by herself with an air of such hurrying importance
as prepared her to hear something wonderful and giving her
time only to form that idea began directly to justify it
by saying
Lord my dear Miss Dashwood have you heard the news
No maam What is it
Something so strange But you shall hear it all
When I got to Mr Palmers I found Charlotte quite
in a fuss about the child She was sure it was very
illit cried and fretted and was all over pimples
So I looked at it directly and Lord my dear
says I it is nothing in the world but the red gum
and nurse said just the same But Charlotte she would
not be satisfied so Mr Donavan was sent for and luckily
he happened to just come in from Harley Street so he
stepped over directly and as soon as ever he saw the child
be said just as we did that it was nothing in the world
but the red gum and then Charlotte was easy And so
just as he was going away again it came into my head
I am sure I do not know how I happened to think of it
but it came into my head to ask him if there was any news
So upon that he smirked and simpered and looked grave
and seemed to know something or other and at last he
said in a whisper For fear any unpleasant report
should reach the young ladies under your care as to their
sisters indisposition I think it advisable to say
that I believe there is no great reason for alarm I hope
Mrs Dashwood will do very well
What is Fanny ill
That is exactly what I said my dear Lord says I
is Mrs Dashwood ill So then it all came out and the
long and the short of the matter by all I can learn
seems to be this Mr Edward Ferrars the very young
man I used to joke with you about but however as it
turns out I am monstrous glad there was never any thing
in it Mr Edward Ferrars it seems has been engaged
above this twelvemonth to my cousin LucyTheres for you
my dearAnd not a creature knowing a syllable of the matter
except NancyCould you have believed such a thing possible
There is no great wonder in their liking one another
but that matters should be brought so forward between them
and nobody suspect itTHAT is strangeI never happened
to see them together or I am sure I should have found it
out directly Well and so this was kept a great secret
for fear of Mrs Ferrars and neither she nor your
brother or sister suspected a word of the matter
till this very morning poor Nancy who you know is a
wellmeaning creature but no conjurer popt it all out
Lord thinks she to herself they are all so fond
of Lucy to be sure they will make no difficulty about it
and so away she went to your sister who was sitting all
alone at her carpetwork little suspecting what was to
comefor she had just been saying to your brother only five
minutes before that she thought to make a match between
Edward and some Lords daughter or other I forget who
So you may think what a blow it was to all her vanity
and pride She fell into violent hysterics immediately
with such screams as reached your brothers ears
as he was sitting in his own dressingroom down stairs
thinking about writing a letter to his steward in the country
So up he flew directly and a terrible scene took place
for Lucy was come to them by that time little dreaming
what was going on Poor soul I pity HER And I must say
I think she was used very hardly for your sister scolded
like any fury and soon drove her into a fainting fit
Nancy she fell upon her knees and cried bitterly
and your brother he walked about the room and said
he did not know what to do Mrs Dashwood declared
they should not stay a minute longer in the house
and your brother was forced to go down upon HIS knees too
to persuade her to let them stay till they had packed
up their clothes THEN she fell into hysterics again
and he was so frightened that he would send for Mr Donavan
and Mr Donavan found the house in all this uproar
The carriage was at the door ready to take my poor
cousins away and they were just stepping in as he
came off poor Lucy in such a condition he says
she could hardly walk and Nancy she was almost as bad
I declare I have no patience with your sister and I hope
with all my heart it will be a match in spite of her
Lord what a taking poor Mr Edward will be in when he
hears of it To have his love used so scornfully for
they say he is monstrous fond of her as well he may
I should not wonder if he was to be in the greatest
passionand Mr Donavan thinks just the same He and I
had a great deal of talk about it and the best of all is
that he is gone back again to Harley Street that he may
be within call when Mrs Ferrars is told of it for she
was sent for as soon as ever my cousins left the house
for your sister was sure SHE would be in hysterics too
and so she may for what I care I have no pity for
either of them I have no notion of peoples making
such a todo about money and greatness There is no
reason on earth why Mr Edward and Lucy should not marry
for I am sure Mrs Ferrars may afford to do very well
by her son and though Lucy has next to nothing herself
she knows better than any body how to make the most
of every thing I dare say if Mrs Ferrars would only
allow him five hundred ayear she would make as good
an appearance with it as any body else would with eight
Lord how snug they might live in such another cottage
as yoursor a little biggerwith two maids and two men
and I believe I could help them to a housemaid for my
Betty has a sister out of place that would fit them
exactly
Here Mrs Jennings ceased and as Elinor had had
time enough to collect her thoughts she was able
to give such an answer and make such observations
as the subject might naturally be supposed to produce
Happy to find that she was not suspected of any extraordinary
interest in it that Mrs Jennings as she had of late
often hoped might be the case had ceased to imagine her
at all attached to Edward and happy above all the rest
in the absence of Marianne she felt very well able
to speak of the affair without embarrassment and to
give her judgment as she believed with impartiality
on the conduct of every one concerned in it
She could hardly determine what her own expectation
of its event really was though she earnestly tried
to drive away the notion of its being possible to end
otherwise at last than in the marriage of Edward and Lucy
What Mrs Ferrars would say and do though there could
not be a doubt of its nature she was anxious to hear
and still more anxious to know how Edward would
conduct himself For HIM she felt much compassion
for Lucy very littleand it cost her some pains to procure
that littlefor the rest of the party none at all
As Mrs Jennings could talk on no other subject
Elinor soon saw the necessity of preparing Marianne for
its discussion No time was to be lost in undeceiving her
in making her acquainted with the real truth and in
endeavouring to bring her to hear it talked of by others
without betraying that she felt any uneasiness for her sister
or any resentment against Edward
Elinors office was a painful oneShe was going
to remove what she really believed to be her sisters
chief consolationto give such particulars of Edward as she
feared would ruin him for ever in her good opinionand
to make Marianne by a resemblance in their situations
which to HER fancy would seem strong feel all her own
disappointment over again But unwelcome as such a task
must be it was necessary to be done and Elinor therefore
hastened to perform it
She was very far from wishing to dwell on her own
feelings or to represent herself as suffering much
any otherwise than as the selfcommand she had practised
since her first knowledge of Edwards engagement might
suggest a hint of what was practicable to Marianne
Her narration was clear and simple and though it could
not be given without emotion it was not accompanied
by violent agitation nor impetuous griefTHAT belonged
rather to the hearer for Marianne listened with horror
and cried excessively Elinor was to be the comforter
of others in her own distresses no less than in theirs
and all the comfort that could be given by assurances
of her own composure of mind and a very earnest
vindication of Edward from every charge but of imprudence
was readily offered
But Marianne for some time would give credit to neither
Edward seemed a second Willoughby and acknowledging
as Elinor did that she HAD loved him most sincerely
could she feel less than herself As for Lucy Steele
she considered her so totally unamiable so absolutely
incapable of attaching a sensible man that she could
not be persuaded at first to believe and afterwards
to pardon any former affection of Edward for her
She would not even admit it to have been natural
and Elinor left her to be convinced that it was so
by that which only could convince her a better knowledge
of mankind
Her first communication had reached no farther than
to state the fact of the engagement and the length of time
it had existedMariannes feelings had then broken in
and put an end to all regularity of detail and for some
time all that could be done was to soothe her distress
lessen her alarms and combat her resentment The first
question on her side which led to farther particulars
was
How long has this been known to you Elinor has
he written to you
I have known it these four months When Lucy
first came to Barton Park last November she told me
in confidence of her engagement
At these words Mariannes eyes expressed the astonishment
which her lips could not utter After a pause of wonder
she exclaimed
Four monthsHave you known of this four months
Elinor confirmed it
Whatwhile attending me in all my misery has this
been on your heartAnd I have reproached you for being
happy
It was not fit that you should then know how much
I was the reverse
Four monthscried Marianne againSo calm
so cheerfulhow have you been supported
By feeling that I was doing my dutyMy promise to
Lucy obliged me to be secret I owed it to her therefore
to avoid giving any hint of the truth and I owed it to my
family and friends not to create in them a solicitude about me
which it could not be in my power to satisfy
Marianne seemed much struck
I have very often wished to undeceive yourself and my
mother added Elinor and once or twice I have attempted it
but without betraying my trust I never could have convinced
you
Four monthsand yet you loved him
Yes But I did not love only himand while the comfort
of others was dear to me I was glad to spare them from knowing
how much I felt Now I can think and speak of it with
little emotion I would not have you suffer on my account
for I assure you I no longer suffer materially myself
I have many things to support me I am not conscious of having
provoked the disappointment by any imprudence of my own
I have borne it as much as possible without spreading
it farther I acquit Edward of essential misconduct
I wish him very happy and I am so sure of his always
doing his duty that though now he may harbour some regret
in the end he must become so Lucy does not want sense
and that is the foundation on which every thing good may
be builtAnd after all Marianne after all that is
bewitching in the idea of a single and constant attachment
and all that can be said of ones happiness depending
entirely on any particular person it is not meantit
is not fitit is not possible that it should be so
Edward will marry Lucy he will marry a woman superior
in person and understanding to half her sex and time
and habit will teach him to forget that he ever thought
another superior to HER
If such is your way of thinking said Marianne
if the loss of what is most valued is so easily
to be made up by something else your resolution
your selfcommand are perhaps a little less to be
wondered atThey are brought more within my comprehension
I understand youYou do not suppose that I have ever
felt muchFor four months Marianne I have had all this
hanging on my mind without being at liberty to speak
of it to a single creature knowing that it would make
you and my mother most unhappy whenever it were explained
to you yet unable to prepare you for it in the least
It was told meit was in a manner forced on me by the
very person herself whose prior engagement ruined all
my prospects and told me as I thought with triumph
This persons suspicions therefore I have had to oppose
by endeavouring to appear indifferent where I have been most
deeply interestedand it has not been only onceI have
had her hopes and exultation to listen to again and again
I have known myself to be divided from Edward for ever
without hearing one circumstance that could make me less
desire the connectionNothing has proved him unworthy
nor has anything declared him indifferent to me
I have had to contend against the unkindness of his sister
and the insolence of his mother and have suffered the
punishment of an attachment without enjoying its advantages
And all this has been going on at a time when as you
know too well it has not been my only unhappiness
If you can think me capable of ever feelingsurely you
may suppose that I have suffered NOW The composure
of mind with which I have brought myself at present
to consider the matter the consolation that I have been
willing to admit have been the effect of constant and
painful exertionthey did not spring up of themselves
they did not occur to relieve my spirits at first
No MarianneTHEN if I had not been bound to silence
perhaps nothing could have kept me entirelynot even what I
owed to my dearest friendsfrom openly shewing that I was
VERY unhappy
Marianne was quite subdued
Oh Elinor she cried you have made me hate
myself for everHow barbarous have I been to you
you who have been my only comfort who have borne with me
in all my misery who have seemed to be only suffering
for meIs this my gratitudeIs this the only return I
can make youBecause your merit cries out upon myself
I have been trying to do it away
The tenderest caresses followed this confession
In such a frame of mind as she was now in Elinor had
no difficulty in obtaining from her whatever promise
she required and at her request Marianne engaged
never to speak of the affair to any one with the least
appearance of bitternessto meet Lucy without betraying
the smallest increase of dislike to herand even to see
Edward himself if chance should bring them together
without any diminution of her usual cordiality
These were great concessionsbut where Marianne felt
that she had injured no reparation could be too much
for her to make
She performed her promise of being discreet
to admirationShe attended to all that Mrs Jennings
had to say upon the subject with an unchanging complexion
dissented from her in nothing and was heard three
times to say Yes maamShe listened to her praise
of Lucy with only moving from one chair to another
and when Mrs Jennings talked of Edwards affection
it cost her only a spasm in her throatSuch advances
towards heroism in her sister made Elinor feel equal
to any thing herself
The next morning brought a farther trial of it
in a visit from their brother who came with a most serious
aspect to talk over the dreadful affair and bring them
news of his wife
You have heard I suppose said he with great solemnity
as soon as he was seated of the very shocking discovery
that took place under our roof yesterday
They all looked their assent it seemed too awful
a moment for speech
Your sister he continued has suffered dreadfully
Mrs Ferrars tooin short it has been a scene of such
complicated distressbut I will hope that the storm may
be weathered without our being any of us quite overcome
Poor Fanny she was in hysterics all yesterday
But I would not alarm you too much Donavan says there
is nothing materially to be apprehended her constitution
is a good one and her resolution equal to any thing
She has borne it all with the fortitude of an angel
She says she never shall think well of anybody again
and one cannot wonder at it after being so deceived
meeting with such ingratitude where so much kindness
had been shewn so much confidence had been placed It
was quite out of the benevolence of her heart that she
had asked these young women to her house merely because
she thought they deserved some attention were harmless
wellbehaved girls and would be pleasant companions
for otherwise we both wished very much to have invited you
and Marianne to be with us while your kind friend there
was attending her daughter And now to be so rewarded
I wish with all my heart says poor Fanny in her
affectionate way that we had asked your sisters instead
of them
Here he stopped to be thanked which being done
he went on
What poor Mrs Ferrars suffered when first Fanny
broke it to her is not to be described While she with
the truest affection had been planning a most eligible
connection for him was it to be supposed that he could
be all the time secretly engaged to another personsuch
a suspicion could never have entered her head If she
suspected ANY prepossession elsewhere it could not be
in THAT quarter THERE to be sure said she I might
have thought myself safe She was quite in an agony
We consulted together however as to what should be done
and at last she determined to send for Edward
He came But I am sorry to relate what ensued
All that Mrs Ferrars could say to make him put an end
to the engagement assisted too as you may well suppose
by my arguments and Fannys entreaties was of
no avail Duty affection every thing was disregarded
I never thought Edward so stubborn so unfeeling before
His mother explained to him her liberal designs in case
of his marrying Miss Morton told him she would settle on
him the Norfolk estate which clear of landtax brings
in a good thousand ayear offered even when matters
grew desperate to make it twelve hundred and in opposition
to this if he still persisted in this low connection
represented to him the certain penury that must attend
the match His own two thousand pounds she protested
should be his all she would never see him again and so far
would she be from affording him the smallest assistance
that if he were to enter into any profession with a view
of better support she would do all in her power to prevent
him advancing in it
Here Marianne in an ecstasy of indignation
clapped her hands together and cried Gracious God
can this be possible
Well may you wonder Marianne replied her brother
at the obstinacy which could resist such arguments as these
Your exclamation is very natural
Marianne was going to retort but she remembered
her promises and forbore
All this however he continued was urged in vain
Edward said very little but what he did say was in
the most determined manner Nothing should prevail on
him to give up his engagement He would stand to it
cost him what it might
Then cried Mrs Jennings with blunt sincerity
no longer able to be silent he has acted like an honest
man I beg your pardon Mr Dashwood but if he had
done otherwise I should have thought him a rascal
I have some little concern in the business as well
as yourself for Lucy Steele is my cousin and I believe
there is not a better kind of girl in the world nor one
who more deserves a good husband
John Dashwood was greatly astonished but his nature
was calm not open to provocation and he never wished
to offend anybody especially anybody of good fortune
He therefore replied without any resentment
I would by no means speak disrespectfully of any
relation of yours madam Miss Lucy Steele is I dare say
a very deserving young woman but in the present case
you know the connection must be impossible
And to have entered into a secret engagement with a
young man under her uncles care the son of a woman
especially of such very large fortune as Mrs Ferrars
is perhaps altogether a little extraordinary In short
I do not mean to reflect upon the behaviour of any person
whom you have a regard for Mrs Jennings We all wish
her extremely happy and Mrs Ferrarss conduct throughout
the whole has been such as every conscientious good mother
in like circumstances would adopt It has been dignified
and liberal Edward has drawn his own lot and I fear
it will be a bad one
Marianne sighed out her similar apprehension
and Elinors heart wrung for the feelings of Edward
while braving his mothers threats for a woman who could
not reward him
Well sir said Mrs Jennings and how did it end
I am sorry to say maam in a most unhappy rupture
Edward is dismissed for ever from his mothers notice
He left her house yesterday but where he is gone or whether
he is still in town I do not know for WE of course can
make no inquiry
Poor young manand what is to become of him
What indeed maam It is a melancholy consideration
Born to the prospect of such affluence I cannot conceive
a situation more deplorable The interest of two thousand
poundshow can a man live on itand when to that is added
the recollection that he might but for his own folly
within three months have been in the receipt of two
thousand five hundred ayear for Miss Morton has
thirty thousand pounds I cannot picture to myself
a more wretched condition We must all feel for him
and the more so because it is totally out of our power
to assist him
Poor young man cried Mrs Jennings I am sure
he should be very welcome to bed and board at my house
and so I would tell him if I could see him It is not fit
that he should be living about at his own charge now
at lodgings and taverns
Elinors heart thanked her for such kindness towards Edward
though she could not forbear smiling at the form of it
If he would only have done as well by himself
said John Dashwood as all his friends were disposed to do
by him he might now have been in his proper situation
and would have wanted for nothing But as it is it must
be out of anybodys power to assist him And there is one
thing more preparing against him which must be worse than
allhis mother has determined with a very natural kind
of spirit to settle THAT estate upon Robert immediately
which might have been Edwards on proper conditions
I left her this morning with her lawyer talking over
the business
Well said Mrs Jennings that is HER revenge
Everybody has a way of their own But I dont think mine
would be to make one son independent because another had
plagued me
Marianne got up and walked about the room
Can anything be more galling to the spirit of a man
continued John than to see his younger brother in
possession of an estate which might have been his own
Poor Edward I feel for him sincerely
A few minutes more spent in the same kind of effusion
concluded his visit and with repeated assurances to his
sisters that he really believed there was no material
danger in Fannys indisposition and that they need
not therefore be very uneasy about it he went away
leaving the three ladies unanimous in their sentiments
on the present occasion as far at least as it regarded
Mrs Ferrarss conduct the Dashwoods and Edwards
Mariannes indignation burst forth as soon as he
quitted the room and as her vehemence made reserve
impossible in Elinor and unnecessary in Mrs Jennings
they all joined in a very spirited critique upon the party
CHAPTER 38
Mrs Jennings was very warm in her praise of Edwards
conduct but only Elinor and Marianne understood its
true merit THEY only knew how little he had had to tempt
him to be disobedient and how small was the consolation
beyond the consciousness of doing right that could
remain to him in the loss of friends and fortune
Elinor gloried in his integrity and Marianne forgave all
his offences in compassion for his punishment But though
confidence between them was by this public discovery
restored to its proper state it was not a subject on
which either of them were fond of dwelling when alone
Elinor avoided it upon principle as tending to fix still
more upon her thoughts by the too warm too positive
assurances of Marianne that belief of Edwards continued
affection for herself which she rather wished to do away
and Mariannes courage soon failed her in trying
to converse upon a topic which always left her more
dissatisfied with herself than ever by the comparison
it necessarily produced between Elinors conduct and her own
She felt all the force of that comparison but not
as her sister had hoped to urge her to exertion now
she felt it with all the pain of continual selfreproach
regretted most bitterly that she had never exerted
herself before but it brought only the torture of penitence
without the hope of amendment Her mind was so much weakened
that she still fancied present exertion impossible
and therefore it only dispirited her more
Nothing new was heard by them for a day or two afterwards
of affairs in Harley Street or Bartletts Buildings
But though so much of the matter was known to them already
that Mrs Jennings might have had enough to do in spreading
that knowledge farther without seeking after more
she had resolved from the first to pay a visit of comfort
and inquiry to her cousins as soon as she could
and nothing but the hindrance of more visitors than usual
had prevented her going to them within that time
The third day succeeding their knowledge of the
particulars was so fine so beautiful a Sunday as to draw
many to Kensington Gardens though it was only the second
week in March Mrs Jennings and Elinor were of the number
but Marianne who knew that the Willoughbys were again
in town and had a constant dread of meeting them
chose rather to stay at home than venture into so public
a place
An intimate acquaintance of Mrs Jennings joined
them soon after they entered the Gardens and Elinor was
not sorry that by her continuing with them and engaging
all Mrs Jenningss conversation she was herself left
to quiet reflection She saw nothing of the Willoughbys
nothing of Edward and for some time nothing of anybody
who could by any chance whether grave or gay be interesting
to her But at last she found herself with some surprise
accosted by Miss Steele who though looking rather shy
expressed great satisfaction in meeting them and on receiving
encouragement from the particular kindness of Mrs Jennings
left her own party for a short time to join theirs
Mrs Jennings immediately whispered to Elinor
Get it all out of her my dear She will tell you
any thing if you ask You see I cannot leave Mrs Clarke
It was lucky however for Mrs Jenningss curiosity
and Elinors too that she would tell any thing WITHOUT
being asked for nothing would otherwise have been learnt
I am so glad to meet you said Miss Steele
taking her familiarly by the armfor I wanted to see you
of all things in the world And then lowering her voice
I suppose Mrs Jennings has heard all about it
Is she angry
Not at all I believe with you
That is a good thing And Lady Middleton is SHE angry
I cannot suppose it possible that she should
I am monstrous glad of it Good gracious I have
had such a time of it I never saw Lucy in such a rage
in my life She vowed at first she would never trim me
up a new bonnet nor do any thing else for me again
so long as she lived but now she is quite come to
and we are as good friends as ever Look she made me
this bow to my hat and put in the feather last night
There now YOU are going to laugh at me too But why
should not I wear pink ribbons I do not care if it IS
the Doctors favourite colour I am sure for my part
I should never have known he DID like it better than
any other colour if he had not happened to say so
My cousins have been so plaguing me I declare sometimes
I do not know which way to look before them
She had wandered away to a subject on which Elinor
had nothing to say and therefore soon judged it expedient
to find her way back again to the first
Well but Miss Dashwood speaking triumphantly
people may say what they chuse about Mr Ferrarss
declaring he would not have Lucy for it is no such thing
I can tell you and it is quite a shame for such illnatured
reports to be spread abroad Whatever Lucy might think
about it herself you know it was no business of other
people to set it down for certain
I never heard any thing of the kind hinted at before
I assure you said Elinor
Oh did not you But it WAS said I know very well
and by more than one for Miss Godby told Miss Sparks
that nobody in their senses could expect Mr Ferrars
to give up a woman like Miss Morton with thirty thousand
pounds to her fortune for Lucy Steele that had
nothing at all and I had it from Miss Sparks myself
And besides that my cousin Richard said himself
that when it came to the point he was afraid Mr Ferrars
would be off and when Edward did not come near us
for three days I could not tell what to think myself
and I believe in my heart Lucy gave it up all for lost
for we came away from your brothers Wednesday
and we saw nothing of him not all Thursday Friday
and Saturday and did not know what was become of him
Once Lucy thought to write to him but then her spirits
rose against that However this morning he came just
as we came home from church and then it all came out
how he had been sent for Wednesday to Harley Street
and been talked to by his mother and all of them
and how he had declared before them all that he loved
nobody but Lucy and nobody but Lucy would he have
And how he had been so worried by what passed
that as soon as he had went away from his mothers house
he had got upon his horse and rid into the country
some where or other and how he had stayed about at an inn
all Thursday and Friday on purpose to get the better
of it And after thinking it all over and over again
he said it seemed to him as if now he had no fortune
and no nothing at all it would be quite unkind to keep
her on to the engagement because it must be for her loss
for he had nothing but two thousand pounds and no hope
of any thing else and if he was to go into orders
as he had some thoughts he could get nothing but a curacy
and how was they to live upon thatHe could not bear
to think of her doing no better and so he begged
if she had the least mind for it to put an end to the
matter directly and leave him shift for himself
I heard him say all this as plain as could possibly be
And it was entirely for HER sake and upon HER account
that he said a word about being off and not upon his own
I will take my oath he never dropt a syllable of being
tired of her or of wishing to marry Miss Morton or any
thing like it But to be sure Lucy would not give
ear to such kind of talking so she told him directly
with a great deal about sweet and love you know
and all thatOh la one cant repeat such kind of things
you knowshe told him directly she had not the least
mind in the world to be off for she could live with him
upon a trifle and how little so ever he might have
she should be very glad to have it all you know
or something of the kind So then he was monstrous happy
and talked on some time about what they should do
and they agreed he should take orders directly
and they must wait to be married till he got a living
And just then I could not hear any more for my cousin
called from below to tell me Mrs Richardson was come in
her coach and would take one of us to Kensington Gardens
so I was forced to go into the room and interrupt them
to ask Lucy if she would like to go but she did not
care to leave Edward so I just run up stairs and put
on a pair of silk stockings and came off with the Richardsons
I do not understand what you mean by interrupting them
said Elinor you were all in the same room together
were not you
No indeed not us La Miss Dashwood do you
think people make love when any body else is by Oh
for shameTo be sure you must know better than that
Laughing affectedlyNo no they were shut up in the
drawingroom together and all I heard was only by listening
at the door
How cried Elinor have you been repeating to me
what you only learnt yourself by listening at the door
I am sorry I did not know it before for I certainly
would not have suffered you to give me particulars of a
conversation which you ought not to have known yourself
How could you behave so unfairly by your sister
Oh la there is nothing in THAT I only stood at
the door and heard what I could And I am sure Lucy would
have done just the same by me for a year or two back
when Martha Sharpe and I had so many secrets together
she never made any bones of hiding in a closet or behind
a chimneyboard on purpose to hear what we said
Elinor tried to talk of something else but Miss
Steele could not be kept beyond a couple of minutes
from what was uppermost in her mind
Edward talks of going to Oxford soon said she
but now he is lodging at No Pall Mall What an
illnatured woman his mother is ant she And your
brother and sister were not very kind However
I shant say anything against them to YOU and to be sure
they did send us home in their own chariot which
was more than I looked for And for my part I was all
in a fright for fear your sister should ask us for the
huswifes she had gave us a day or two before but however
nothing was said about them and I took care to keep mine
out of sight Edward have got some business at Oxford
he says so he must go there for a time and after THAT
as soon as he can light upon a Bishop he will be ordained
I wonder what curacy he will getGood gracious
giggling as she spoke Id lay my life I know what
my cousins will say when they hear of it They will
tell me I should write to the Doctor to get Edward
the curacy of his new living I know they will but I am
sure I would not do such a thing for all the world
La I shall say directly I wonder how you could think
of such a thing I write to the Doctor indeed
Well said Elinor it is a comfort to be prepared
against the worst You have got your answer ready
Miss Steele was going to reply on the same subject
but the approach of her own party made another more necessary
Oh la here come the Richardsons I had a vast deal
more to say to you but I must not stay away from them not
any longer I assure you they are very genteel people
He makes a monstrous deal of money and they keep their
own coach I have not time to speak to Mrs Jennings about
it myself but pray tell her I am quite happy to hear she
is not in anger against us and Lady Middleton the same
and if anything should happen to take you and your
sister away and Mrs Jennings should want company
I am sure we should be very glad to come and stay with her
for as long a time as she likes I suppose Lady Middleton
wont ask us any more this bout Goodby I am sorry
Miss Marianne was not here Remember me kindly to her
La if you have not got your spotted muslin onI wonder
you was not afraid of its being torn
Such was her parting concern for after this she had
time only to pay her farewell compliments to Mrs Jennings
before her company was claimed by Mrs Richardson
and Elinor was left in possession of knowledge which
might feed her powers of reflection some time though she
had learnt very little more than what had been already
foreseen and foreplanned in her own mind Edwards marriage
with Lucy was as firmly determined on and the time
of its taking place remained as absolutely uncertain
as she had concluded it would beevery thing depended
exactly after her expectation on his getting that preferment
of which at present there seemed not the smallest chance
As soon as they returned to the carriage
Mrs Jennings was eager for information but as Elinor
wished to spread as little as possible intelligence
that had in the first place been so unfairly obtained
she confined herself to the brief repetition of such
simple particulars as she felt assured that Lucy
for the sake of her own consequence would choose
to have known The continuance of their engagement
and the means that were able to be taken for promoting
its end was all her communication and this produced
from Mrs Jennings the following natural remark
Wait for his having a livingay we all know how
THAT will endthey will wait a twelvemonth and finding
no good comes of it will set down upon a curacy of fifty
pounds ayear with the interest of his two thousand pounds
and what little matter Mr Steele and Mr Pratt can
give herThen they will have a child every year and
Lord help em how poor they will beI must see
what I can give them towards furnishing their house
Two maids and two men indeedas I talked of tother
dayNo no they must get a stout girl of all works
Bettys sister would never do for them NOW
The next morning brought Elinor a letter by the
twopenny post from Lucy herself It was as follows
Bartletts Building March
I hope my dear Miss Dashwood will excuse the
liberty I take of writing to her but I know your
friendship for me will make you pleased to hear such
a good account of myself and my dear Edward after
all the troubles we have went through lately
therefore will make no more apologies but proceed
to say that thank God though we have suffered
dreadfully we are both quite well now and as happy
as we must always be in one anothers love We have
had great trials and great persecutions but
however at the same time gratefully acknowledge
many friends yourself not the least among them
whose great kindness I shall always thankfully
remember as will Edward too who I have told of
it I am sure you will be glad to hear as likewise
dear Mrs Jennings I spent two happy hours with
him yesterday afternoon he would not hear of our
parting though earnestly did I as I thought my
duty required urge him to it for prudence sake
and would have parted for ever on the spot would
he consent to it but he said it should never be
he did not regard his mothers anger while he could
have my affections our prospects are not very
bright to be sure but we must wait and hope for
the best he will be ordained shortly and should
it ever be in your power to recommend him to any
body that has a living to bestow am very sure you
will not forget us and dear Mrs Jennings too
trust she will speak a good word for us to Sir John
or Mr Palmer or any friend that may be able to
assist usPoor Anne was much to blame for what
she did but she did it for the best so I say
nothing hope Mrs Jennings wont think it too much
trouble to give us a call should she come this way
any morning twould be a great kindness and my
cousins would be proud to know herMy paper reminds
me to conclude and begging to be most gratefully
and respectfully remembered to her and to Sir John
and Lady Middleton and the dear children when you
chance to see them and love to Miss Marianne
I am c
As soon as Elinor had finished it she performed
what she concluded to be its writers real design
by placing it in the hands of Mrs Jennings who read it
aloud with many comments of satisfaction and praise
Very well indeedhow prettily she writesaye
that was quite proper to let him be off if he would
That was just like LucyPoor soul I wish I COULD get
him a living with all my heartShe calls me dear
Mrs Jennings you see She is a goodhearted girl
as ever livedVery well upon my word That sentence
is very prettily turned Yes yes I will go and see her
sure enough How attentive she is to think of every
bodyThank you my dear for shewing it me It is
as pretty a letter as ever I saw and does Lucys head
and heart great credit
CHAPTER 39
The Miss Dashwoods had now been rather more than
two months in town and Mariannes impatience to be gone
increased every day She sighed for the air the liberty
the quiet of the country and fancied that if any place
could give her ease Barton must do it Elinor was hardly
less anxious than herself for their removal and only so much
less bent on its being effected immediately as that she
was conscious of the difficulties of so long a journey
which Marianne could not be brought to acknowledge
She began however seriously to turn her thoughts towards
its accomplishment and had already mentioned their wishes
to their kind hostess who resisted them with all the
eloquence of her goodwill when a plan was suggested
which though detaining them from home yet a few weeks
longer appeared to Elinor altogether much more eligible
than any other The Palmers were to remove to Cleveland
about the end of March for the Easter holidays
and Mrs Jennings with both her friends received a very
warm invitation from Charlotte to go with them This would
not in itself have been sufficient for the delicacy of
Miss Dashwoodbut it was inforced with so much real
politeness by Mr Palmer himself as joined to the very
great amendment of his manners towards them since her
sister had been known to be unhappy induced her to accept
it with pleasure
When she told Marianne what she had done however
her first reply was not very auspicious
Clevelandshe cried with great agitation
No I cannot go to Cleveland
You forget said Elinor gently that its situation
is notthat it is not in the neighbourhood of
But it is in SomersetshireI cannot go
into SomersetshireThere where I looked forward
to goingNo Elinor you cannot expect me to go there
Elinor would not argue upon the propriety of overcoming
such feelingsshe only endeavoured to counteract them by
working on othersrepresented it therefore as a measure
which would fix the time of her returning to that dear mother
whom she so much wished to see in a more eligible
more comfortable manner than any other plan could do
and perhaps without any greater delay From Cleveland
which was within a few miles of Bristol the distance to
Barton was not beyond one day though a long days journey
and their mothers servant might easily come there to attend
them down and as there could be no occasion of their
staying above a week at Cleveland they might now be at
home in little more than three weeks time As Mariannes
affection for her mother was sincere it must triumph
with little difficulty over the imaginary evils she had started
Mrs Jennings was so far from being weary of her guest
that she pressed them very earnestly to return with her again
from Cleveland Elinor was grateful for the attention
but it could not alter her design and their mothers
concurrence being readily gained every thing relative
to their return was arranged as far as it could be
and Marianne found some relief in drawing up a statement
of the hours that were yet to divide her from Barton
Ah Colonel I do not know what you and I shall
do without the Miss Dashwoodswas Mrs Jenningss
address to him when he first called on her after their
leaving her was settledfor they are quite resolved
upon going home from the Palmersand how forlorn we
shall be when I come backLord we shall sit and gape
at one another as dull as two cats
Perhaps Mrs Jennings was in hopes by this vigorous
sketch of their future ennui to provoke him to make
that offer which might give himself an escape from it
and if so she had soon afterwards good reason to think
her object gained for on Elinors moving to the window
to take more expeditiously the dimensions of a print
which she was going to copy for her friend he followed
her to it with a look of particular meaning and conversed
with her there for several minutes The effect of his
discourse on the lady too could not escape her observation
for though she was too honorable to listen and had even
changed her seat on purpose that she might NOT hear
to one close by the piano forte on which Marianne
was playing she could not keep herself from seeing
that Elinor changed colour attended with agitation
and was too intent on what he said to pursue her employment
Still farther in confirmation of her hopes in the interval
of Mariannes turning from one lesson to another
some words of the Colonels inevitably reached her ear
in which he seemed to be apologising for the badness
of his house This set the matter beyond a doubt
She wondered indeed at his thinking it necessary
to do so but supposed it to be the proper etiquette
What Elinor said in reply she could not distinguish
but judged from the motion of her lips that she did
not think THAT any material objectionand Mrs Jennings
commended her in her heart for being so honest
They then talked on for a few minutes longer without her
catching a syllable when another lucky stop in Mariannes
performance brought her these words in the Colonels calm voice
I am afraid it cannot take place very soon
Astonished and shocked at so unloverlike a speech
she was almost ready to cry out Lord what should
hinder itbut checking her desire confined herself
to this silent ejaculation
This is very strangesure he need not wait to be older
This delay on the Colonels side however did not
seem to offend or mortify his fair companion in the least
for on their breaking up the conference soon afterwards
and moving different ways Mrs Jennings very plainly heard
Elinor say and with a voice which shewed her to feel what she said
I shall always think myself very much obliged to you
Mrs Jennings was delighted with her gratitude
and only wondered that after hearing such a sentence
the Colonel should be able to take leave of them as he
immediately did with the utmost sangfroid and go away
without making her any replyShe had not thought her old
friend could have made so indifferent a suitor
What had really passed between them was to this effect
I have heard said he with great compassion
of the injustice your friend Mr Ferrars has suffered
from his family for if I understand the matter right
he has been entirely cast off by them for persevering
in his engagement with a very deserving young woman
Have I been rightly informedIs it so
Elinor told him that it was
The cruelty the impolitic crueltyhe replied
with great feelingof dividing or attempting to divide
two young people long attached to each other is terrible
Mrs Ferrars does not know what she may be doingwhat
she may drive her son to I have seen Mr Ferrars two
or three times in Harley Street and am much pleased
with him He is not a young man with whom one can
be intimately acquainted in a short time but I have
seen enough of him to wish him well for his own sake
and as a friend of yours I wish it still more
I understand that he intends to take orders Will you
be so good as to tell him that the living of Delaford
now just vacant as I am informed by this days post
is his if he think it worth his acceptancebut THAT
perhaps so unfortunately circumstanced as he is now
it may be nonsense to appear to doubt I only wish it
were more valuable It is a rectory but a small one
the late incumbent I believe did not make more than
200 L per annum and though it is certainly capable
of improvement I fear not to such an amount as
to afford him a very comfortable income Such as it is
however my pleasure in presenting him to it
will be very great Pray assure him of it
Elinors astonishment at this commission could
hardly have been greater had the Colonel been really
making her an offer of his hand The preferment
which only two days before she had considered as hopeless
for Edward was already provided to enable him to marry
and SHE of all people in the world was fixed on to
bestow itHer emotion was such as Mrs Jennings had
attributed to a very different causebut whatever minor
feelings less pure less pleasing might have a share
in that emotion her esteem for the general benevolence
and her gratitude for the particular friendship
which together prompted Colonel Brandon to this act
were strongly felt and warmly expressed She thanked him
for it with all her heart spoke of Edwards principles and
disposition with that praise which she knew them to deserve
and promised to undertake the commission with pleasure
if it were really his wish to put off so agreeable an office
to another But at the same time she could not help
thinking that no one could so well perform it as himself
It was an office in short from which unwilling to give
Edward the pain of receiving an obligation from HER
she would have been very glad to be spared herself
but Colonel Brandon on motives of equal delicacy
declining it likewise still seemed so desirous of its being
given through her means that she would not on any account
make farther opposition Edward she believed was still in
town
and fortunately she had heard his address from Miss Steele
She could undertake therefore to inform him of it
in the course of the day After this had been settled
Colonel Brandon began to talk of his own advantage
in securing so respectable and agreeable a neighbour
and THEN it was that he mentioned with regret that the
house was small and indifferentan evil which Elinor
as Mrs Jennings had supposed her to do made very light of
at least as far as regarded its size
The smallness of the house said she
I cannot imagine any inconvenience to them
for it will be in proportion to their family and income
By which the Colonel was surprised to find that SHE
was considering Mr Ferrarss marriage as the certain
consequence of the presentation for he did not suppose it
possible that Delaford living could supply such an income
as anybody in his style of life would venture to settle on
and he said so
This little rectory CAN do no more than make Mr Ferrars
comfortable as a bachelor it cannot enable him to marry
I am sorry to say that my patronage ends with this
and my interest is hardly more extensive If however
by an unforeseen chance it should be in my power to serve
him farther I must think very differently of him
from what I now do if I am not as ready to be useful
to him then as I sincerely wish I could be at present
What I am now doing indeed seems nothing at all
since it can advance him so little towards what must
be his principal his only object of happiness
His marriage must still be a distant goodat least
I am afraid it cannot take place very soon
Such was the sentence which when misunderstood
so justly offended the delicate feelings of Mrs Jennings
but after this narration of what really passed between
Colonel Brandon and Elinor while they stood at the window
the gratitude expressed by the latter on their parting may
perhaps appear in general not less reasonably excited
nor less properly worded than if it had arisen from
an offer of marriage
CHAPTER 40
Well Miss Dashwood said Mrs Jennings
sagaciously smiling as soon as the gentleman had withdrawn
I do not ask you what the Colonel has been saying to you
for though upon my honour I TRIED to keep out of hearing
I could not help catching enough to understand his business
And I assure you I never was better pleased in my life
and I wish you joy of it with all my heart
Thank you maam said Elinor It is a matter
of great joy to me and I feel the goodness of Colonel
Brandon most sensibly There are not many men who would
act as he has done Few people who have so compassionate
a heart I never was more astonished in my life
Lord my dear you are very modest I ant the least
astonished at it in the world for I have often thought
of late there was nothing more likely to happen
You judged from your knowledge of the Colonels
general benevolence but at least you could not foresee
that the opportunity would so very soon occur
Opportunity repeated Mrs JenningsOh as to that
when a man has once made up his mind to such a thing
somehow or other he will soon find an opportunity
Well my dear I wish you joy of it again and again
and if ever there was a happy couple in the world I think
I shall soon know where to look for them
You mean to go to Delaford after them I suppose
said Elinor with a faint smile
Aye my dear that I do indeed And as to the house
being a bad one I do not know what the Colonel would be at
for it is as good a one as ever I saw
He spoke of its being out of repair
Well and whose fault is that why dont he repair it
who should do it but himself
They were interrupted by the servants coming in to
announce the carriage being at the door and Mrs Jennings
immediately preparing to go said
Well my dear I must be gone before I have had half
my talk out But however we may have it all over in
the evening for we shall be quite alone I do not ask
you to go with me for I dare say your mind is too full
of the matter to care for company and besides you must
long to tell your sister all about it
Marianne had left the room before the conversation began
Certainly maam I shall tell Marianne of it
but I shall not mention it at present to any body else
Oh very well said Mrs Jennings rather disappointed
Then you would not have me tell it to Lucy for I think
of going as far as Holborn today
No maam not even Lucy if you please
One days delay will not be very material and till I
have written to Mr Ferrars I think it ought not to be
mentioned to any body else I shall do THAT directly
It is of importance that no time should be lost with him
for he will of course have much to do relative to
his ordination
This speech at first puzzled Mrs Jennings exceedingly
Why Mr Ferrars was to have been written to about it
in such a hurry she could not immediately comprehend
A few moments reflection however produced a very happy idea
and she exclaimed
Oh hoI understand you Mr Ferrars is to be
the man Well so much the better for him Ay to be sure
he must be ordained in readiness and I am very glad
to find things are so forward between you But my dear
is not this rather out of character Should not the Colonel
write himselfsure he is the proper person
Elinor did not quite understand the beginning of
Mrs Jenningss speech neither did she think it worth
inquiring into and therefore only replied to its conclusion
Colonel Brandon is so delicate a man that he rather
wished any one to announce his intentions to Mr Ferrars
than himself
And so YOU are forced to do it Well THAT is an odd
kind of delicacy However I will not disturb you seeing
her preparing to write You know your own concerns best
So goodby my dear I have not heard of any thing to
please me so well since Charlotte was brought to bed
And away she went but returning again in a moment
I have just been thinking of Bettys sister my dear
I should be very glad to get her so good a mistress
But whether she would do for a ladys maid I am sure I
cant tell She is an excellent housemaid and works
very well at her needle However you will think of all
that at your leisure
Certainly maam replied Elinor not hearing
much of what she said and more anxious to be alone
than to be mistress of the subject
How she should beginhow she should express
herself in her note to Edward was now all her concern
The particular circumstances between them made
a difficulty of that which to any other person would
have been the easiest thing in the world but she
equally feared to say too much or too little and sat
deliberating over her paper with the pen in her band
till broken in on by the entrance of Edward himself
He had met Mrs Jennings at the door in her way to
the carriage as he came to leave his farewell card and she
after apologising for not returning herself had obliged
him to enter by saying that Miss Dashwood was above
and wanted to speak with him on very particular business
Elinor had just been congratulating herself
in the midst of her perplexity that however difficult it
might be to express herself properly by letter it was
at least preferable to giving the information by word
of mouth when her visitor entered to force her upon this
greatest exertion of all Her astonishment and confusion
were very great on his so sudden appearance She had
not seen him before since his engagement became public
and therefore not since his knowing her to be acquainted
with it which with the consciousness of what she
had been thinking of and what she had to tell him
made her feel particularly uncomfortable for some minutes
He too was much distressed and they sat down together
in a most promising state of embarrassmentWhether he
had asked her pardon for his intrusion on first coming
into the room he could not recollect but determining
to be on the safe side he made his apology in form
as soon as he could say any thing after taking a chair
Mrs Jennings told me said he that you wished
to speak with me at least I understood her soor I
certainly should not have intruded on you in such a manner
though at the same time I should have been extremely
sorry to leave London without seeing you and your sister
especially as it will most likely be some timeit
is not probable that I should soon have the pleasure
of meeting you again I go to Oxford tomorrow
You would not have gone however said Elinor
recovering herself and determined to get over what she
so much dreaded as soon as possible without receiving
our good wishes even if we had not been able to give them
in person Mrs Jennings was quite right in what she said
I have something of consequence to inform you of
which I was on the point of communicating by paper
I am charged with a most agreeable office breathing
rather faster than usual as she spoke Colonel Brandon
who was here only ten minutes ago has desired me to say
that understanding you mean to take orders he has
great pleasure in offering you the living of Delaford
now just vacant and only wishes it were more valuable
Allow me to congratulate you on having so respectable
and welljudging a friend and to join in his wish that
the livingit is about two hundred ayearwere much
more considerable and such as might better enable you
toas might be more than a temporary accommodation to
yourselfsuch in short as might establish all your views
of happiness
What Edward felt as he could not say it himself
it cannot be expected that any one else should say for him
He LOOKED all the astonishment which such unexpected
such unthoughtof information could not fail of exciting
but he said only these two words
Colonel Brandon
Yes continued Elinor gathering more resolution
as some of the worst was over Colonel Brandon means
it as a testimony of his concern for what has lately
passedfor the cruel situation in which the unjustifiable
conduct of your family has placed youa concern
which I am sure Marianne myself and all your friends
must share and likewise as a proof of his high esteem
for your general character and his particular approbation
of your behaviour on the present occasion
Colonel Brandon give ME a livingCan it be possible
The unkindness of your own relations has made you
astonished to find friendship any where
No replied be with sudden consciousness not to
find it in YOU for I cannot be ignorant that to you
to your goodness I owe it allI feel itI would express
it if I couldbut as you well know I am no orator
You are very much mistaken I do assure you
that you owe it entirely at least almost entirely
to your own merit and Colonel Brandons discernment
of it I have had no hand in it I did not even know
till I understood his design that the living was vacant
nor had it ever occurred to me that he might have
had such a living in his gift As a friend of mine
of my family he may perhapsindeed I know he HAS
still greater pleasure in bestowing it but upon my word
you owe nothing to my solicitation
Truth obliged her to acknowledge some small share
in the action but she was at the same time so unwilling
to appear as the benefactress of Edward that she acknowledged
it with hesitation which probably contributed to fix
that suspicion in his mind which had recently entered it
For a short time he sat deep in thought after Elinor had ceased
to speakat last and as if it were rather an effort he said
Colonel Brandon seems a man of great worth and respectability
I have always heard him spoken of as such and your brother
I know esteems him highly He is undoubtedly a sensible man
and in his manners perfectly the gentleman
Indeed replied Elinor I believe that you will find him
on farther acquaintance all that you have heard him to be
and as you will be such very near neighbours for I understand
the parsonage is almost close to the mansionhouse
it is particularly important that he SHOULD be all this
Edward made no answer but when she had turned
away her head gave her a look so serious so earnest
so uncheerful as seemed to say that he might hereafter wish
the distance between the parsonage and the mansionhouse
much greater
Colonel Brandon I think lodges in St James Street
said he soon afterwards rising from his chair
Elinor told him the number of the house
I must hurry away then to give him those thanks
which you will not allow me to give YOU to assure him
that he has made me a veryan exceedingly happy man
Elinor did not offer to detain him and they parted
with a very earnest assurance on HER side of her unceasing
good wishes for his happiness in every change of situation
that might befall him on HIS with rather an attempt to
return the same good will than the power of expressing it
When I see him again said Elinor to herself
as the door shut him out I shall see him the husband
of Lucy
And with this pleasing anticipation she sat down
to reconsider the past recall the words and endeavour
to comprehend all the feelings of Edward and of course
to reflect on her own with discontent
When Mrs Jennings came home though she returned
from seeing people whom she had never seen before
and of whom therefore she must have a great deal to say
her mind was so much more occupied by the important secret
in her possession than by anything else that she
reverted to it again as soon as Elinor appeared
Well my dear she cried I sent you up to the
young man Did not I do rightAnd I suppose you had
no great difficultyYou did not find him very unwilling
to accept your proposal
No maam THAT was not very likely
Well and how soon will he be readyFor it seems
all to depend upon that
Really said Elinor I know so little of these kind
of forms that I can hardly even conjecture as to the time
or the preparation necessary but I suppose two or three
months will complete his ordination
Two or three months cried Mrs Jennings Lord my dear
how calmly you talk of it and can the Colonel wait two
or three months Lord bless meI am sure it would put ME
quite out of patienceAnd though one would be very glad
to do a kindness by poor Mr Ferrars I do think it is
not worth while to wait two or three months for him
Sure somebody else might be found that would do as well
somebody that is in orders already
My dear maam said Elinor what can you be thinking of
Why Colonel Brandons only object is to be of use to Mr Ferrars
Lord bless you my dearSure you do not mean to persuade
me that the Colonel only marries you for the sake of giving
ten guineas to Mr Ferrars
The deception could not continue after this
and an explanation immediately took place by which both
gained considerable amusement for the moment without any
material loss of happiness to either for Mrs Jennings
only exchanged one form of delight for another and still
without forfeiting her expectation of the first
Aye aye the parsonage is but a small one said she
after the first ebullition of surprise and satisfaction
was over and very likely MAY be out of repair but to hear
a man apologising as I thought for a house that to my
knowledge has five sitting rooms on the groundfloor and I
think the housekeeper told me could make up fifteen beds
and to you too that had been used to live in Barton cottage
It seems quite ridiculous But my dear we must
touch up the Colonel to do some thing to the parsonage
and make it comfortable for them before Lucy goes to it
But Colonel Brandon does not seem to have any idea
of the livings being enough to allow them to marry
The Colonel is a ninny my dear because he has two
thousand ayear himself he thinks that nobody else can marry
on less Take my word for it that if I am alive I shall
be paying a visit at Delaford Parsonage before Michaelmas
and I am sure I shant go if Lucy ant there
Elinor was quite of her opinion as to the probability
of their not waiting for any thing more
CHAPTER 41
Edward having carried his thanks to Colonel Brandon
proceeded with his happiness to Lucy and such was the
excess of it by the time he reached Bartletts Buildings
that she was able to assure Mrs Jennings who called
on her again the next day with her congratulations
that she had never seen him in such spirits before
in her life
Her own happiness and her own spirits were at
least very certain and she joined Mrs Jennings most
heartily in her expectation of their being all comfortably
together in Delaford Parsonage before Michaelmas
So far was she at the same time from any backwardness
to give Elinor that credit which Edward WOULD give her
that she spoke of her friendship for them both with the most
grateful warmth was ready to own all their obligation
to her and openly declared that no exertion for their
good on Miss Dashwoods part either present or future
would ever surprise her for she believed her capable of
doing any thing in the world for those she really valued
As for Colonel Brandon she was not only ready to worship
him as a saint but was moreover truly anxious that
he should be treated as one in all worldly concerns
anxious that his tithes should be raised to the utmost
and scarcely resolved to avail herself at Delaford
as far as she possibly could of his servants his carriage
his cows and his poultry
It was now above a week since John Dashwood had
called in Berkeley Street and as since that time no notice
had been taken by them of his wifes indisposition
beyond one verbal enquiry Elinor began to feel it
necessary to pay her a visitThis was an obligation
however which not only opposed her own inclination
but which had not the assistance of any encouragement
from her companions Marianne not contented with
absolutely refusing to go herself was very urgent
to prevent her sisters going at all and Mrs Jennings
though her carriage was always at Elinors service
so very much disliked Mrs John Dashwood that not even her
curiosity to see how she looked after the late discovery
nor her strong desire to affront her by taking Edwards part
could overcome her unwillingness to be in her company again
The consequence was that Elinor set out by herself
to pay a visit for which no one could really have
less inclination and to run the risk of a teteatete
with a woman whom neither of the others had so much
reason to dislike
Mrs Dashwood was denied but before the carriage could
turn from the house her husband accidentally came out
He expressed great pleasure in meeting Elinor told her
that he had been just going to call in Berkeley Street
and assuring her that Fanny would be very glad to see her
invited her to come in
They walked up stairs in to the drawingroomNobody was there
Fanny is in her own room I suppose said heI
will go to her presently for I am sure she will not
have the least objection in the world to seeing YOU
Very far from it indeed NOW especially there
cannot bebut however you and Marianne were always
great favouritesWhy would not Marianne come
Elinor made what excuse she could for her
I am not sorry to see you alone he replied
for I have a good deal to say to you This living
of Colonel Brandonscan it be truehas he really given
it to EdwardI heard it yesterday by chance and was
coming to you on purpose to enquire farther about it
It is perfectly trueColonel Brandon has given
the living of Delaford to Edward
ReallyWell this is very astonishingno
relationshipno connection between themand now
that livings fetch such a pricewhat was the value of this
About two hundred a year
Very welland for the next presentation to a living
of that valuesupposing the late incumbent to have
been old and sickly and likely to vacate it soonhe
might have got I dare sayfourteen hundred pounds
And how came he not to have settled that matter before this
persons deathNOW indeed it would be too late to sell it
but a man of Colonel Brandons senseI wonder he should
be so improvident in a point of such common such natural
concernWell I am convinced that there is a vast deal
of inconsistency in almost every human character I suppose
howeveron recollectionthat the case may probably be THIS
Edward is only to hold the living till the person to whom
the Colonel has really sold the presentation is old enough
to take itAye aye that is the fact depend upon it
Elinor contradicted it however very positively
and by relating that she had herself been employed
in conveying the offer from Colonel Brandon to Edward
and therefore must understand the terms on which it
was given obliged him to submit to her authority
It is truly astonishinghe cried after hearing
what she saidwhat could be the Colonels motive
A very simple oneto be of use to Mr Ferrars
Well well whatever Colonel Brandon may be
Edward is a very lucky manYou will not mention the matter
to Fanny however for though I have broke it to her
and she bears it vastly wellshe will not like to hear
it much talked of
Elinor had some difficulty here to refrain from observing
that she thought Fanny might have borne with composure
an acquisition of wealth to her brother by which neither
she nor her child could be possibly impoverished
Mrs Ferrars added he lowering his voice to the
tone becoming so important a subject knows nothing
about it at present and I believe it will be best to
keep it entirely concealed from her as long as may be
When the marriage takes place I fear she must hear
of it all
But why should such precaution be usedThough
it is not to be supposed that Mrs Ferrars can have
the smallest satisfaction in knowing that her son has
money enough to live uponfor THAT must be quite
out of the question yet why upon her late behaviour
is she supposed to feel at allShe has done with her
son she cast him off for ever and has made all those
over whom she had any influence cast him off likewise
Surely after doing so she cannot be imagined liable
to any impression of sorrow or of joy on his account
she cannot be interested in any thing that befalls him
She would not be so weak as to throw away the comfort
of a child and yet retain the anxiety of a parent
Ah Elinor said John your reasoning is very good
but it is founded on ignorance of human nature
When Edwards unhappy match takes place depend upon it
his mother will feel as much as if she had never discarded him
and therefore every circumstance that may accelerate that
dreadful event must be concealed from her as much as possible
Mrs Ferrars can never forget that Edward is her son
You surprise me I should think it must nearly
have escaped her memory by THIS time
You wrong her exceedingly Mrs Ferrars is one
of the most affectionate mothers in the world
Elinor was silent
We think NOWsaid Mr Dashwood after a short pause
of ROBERTS marrying Miss Morton
Elinor smiling at the grave and decisive importance
of her brothers tone calmly replied
The lady I suppose has no choice in the affair
Choicehow do you mean
I only mean that I suppose from your manner
of speaking it must be the same to Miss Morton whether
she marry Edward or Robert
Certainly there can be no difference for Robert
will now to all intents and purposes be considered
as the eldest sonand as to any thing else they are
both very agreeable young men I do not know that one
is superior to the other
Elinor said no more and John was also for a short
time silentHis reflections ended thus
Of ONE thing my dear sister kindly taking her hand
and speaking in an awful whisperI may assure you
and I WILL do it because I know it must gratify you
I have good reason to thinkindeed I have it from the
best authority or I should not repeat it for otherwise
it would be very wrong to say any thing about itbut
I have it from the very best authoritynot that I ever
precisely heard Mrs Ferrars say it herselfbut her
daughter DID and I have it from herThat in short
whatever objections there might be against a certaina
certain connectionyou understand meit would have been
far preferable to her it would not have given her half
the vexation that THIS does I was exceedingly pleased
to hear that Mrs Ferrars considered it in that light
a very gratifying circumstance you know to us all
It would have been beyond comparison she said the least
evil of the two and she would be glad to compound NOW
for nothing worse But however all that is quite out
of the questionnot to be thought of or mentioned
as to any attachment you knowit never could beall
that is gone by But I thought I would just tell you
of this because I knew how much it must please you
Not that you have any reason to regret my dear Elinor There
is no doubt of your doing exceedingly wellquite as well
or better perhaps all things considered Has Colonel
Brandon been with you lately
Elinor had heard enough if not to gratify her vanity
and raise her selfimportance to agitate her nerves
and fill her mindand she was therefore glad to be
spared from the necessity of saying much in reply herself
and from the danger of hearing any thing more from
her brother by the entrance of Mr Robert Ferrars
After a few moments chat John Dashwood recollecting that
Fanny was yet uninformed of her sisters being there
quitted the room in quest of her and Elinor was left
to improve her acquaintance with Robert who by the
gay unconcern the happy selfcomplacency of his manner
while enjoying so unfair a division of his mothers love
and liberality to the prejudice of his banished brother
earned only by his own dissipated course of life and that
brothers integrity was confirming her most unfavourable
opinion of his head and heart
They had scarcely been two minutes by themselves
before he began to speak of Edward for he too had heard
of the living and was very inquisitive on the subject
Elinor repeated the particulars of it as she had given them
to John and their effect on Robert though very different
was not less striking than it had been on HIM He laughed
most immoderately The idea of Edwards being a clergyman
and living in a small parsonagehouse diverted him
beyond measureand when to that was added the fanciful
imagery of Edward reading prayers in a white surplice
and publishing the banns of marriage between John Smith and
Mary Brown he could conceive nothing more ridiculous
Elinor while she waited in silence and immovable
gravity the conclusion of such folly could not restrain
her eyes from being fixed on him with a look that spoke
all the contempt it excited It was a look however
very well bestowed for it relieved her own feelings and gave
no intelligence to him He was recalled from wit to wisdom
not by any reproof of hers but by his own sensibility
We may treat it as a joke said he at last
recovering from the affected laugh which had considerably
lengthened out the genuine gaiety of the momentbut upon
my soul it is a most serious business Poor Edward
he is ruined for ever I am extremely sorry for it
for I know him to be a very goodhearted creature as
wellmeaning a fellow perhaps as any in the world
You must not judge of him Miss Dashwood from YOUR
slight acquaintancePoor EdwardHis manners are certainly
not the happiest in natureBut we are not all born
you know with the same powersthe same address
Poor fellowto see him in a circle of strangers
to be sure it was pitiable enoughbut upon my soul
I believe he has as good a heart as any in the kingdom
and I declare and protest to you I never was so shocked in my
life as when it all burst forth I could not believe it
My mother was the first person who told me of it
and I feeling myself called on to act with resolution
immediately said to her My dear madam I do not know
what you may intend to do on the occasion but as for myself
I must say that if Edward does marry this young woman
I never will see him again That was what I said immediately
I was most uncommonly shocked indeedPoor Edwardhe has
done for himself completelyshut himself out for ever from
all decent societybut as I directly said to my mother
I am not in the least surprised at it from his style
of education it was always to be expected My poor mother
was half frantic
Have you ever seen the lady
Yes once while she was staying in this house
I happened to drop in for ten minutes and I saw
quite enough of her The merest awkward country girl
without style or elegance and almost without beauty
I remember her perfectly Just the kind of girl I
should suppose likely to captivate poor Edward
I offered immediately as soon as my mother related
the affair to me to talk to him myself and dissuade
him from the match but it was too late THEN I found
to do any thing for unluckily I was not in the way
at first and knew nothing of it till after the breach
had taken place when it was not for me you know
to interfere But had I been informed of it a few
hours earlierI think it is most probablethat something
might have been hit on I certainly should have represented
it to Edward in a very strong light My dear fellow
I should have said consider what you are doing
You are making a most disgraceful connection and such a one
as your family are unanimous in disapproving I cannot
help thinking in short that means might have been found
But now it is all too late He must be starved you know
that is certain absolutely starved
He had just settled this point with great composure
when the entrance of Mrs John Dashwood put an end to the
subject
But though SHE never spoke of it out of her own family
Elinor could see its influence on her mind in the something
like confusion of countenance with which she entered
and an attempt at cordiality in her behaviour to herself
She even proceeded so far as to be concerned to find
that Elinor and her sister were so soon to leave town
as she had hoped to see more of theman exertion
in which her husband who attended her into the room
and hung enamoured over her accents seemed to distinguish
every thing that was most affectionate and graceful
CHAPTER 42
One other short call in Harley Street in which Elinor
received her brothers congratulations on their travelling
so far towards Barton without any expense and on Colonel
Brandons being to follow them to Cleveland in a day or two
completed the intercourse of the brother and sisters
in townand a faint invitation from Fanny to come
to Norland whenever it should happen to be in their way
which of all things was the most unlikely to occur
with a more warm though less public assurance from John
to Elinor of the promptitude with which he should come
to see her at Delaford was all that foretold any meeting
in the country
It amused her to observe that all her friends seemed
determined to send her to Delaforda place in which
of all others she would now least chuse to visit
or wish to reside for not only was it considered as
her future home by her brother and Mrs Jennings but even Lucy
when they parted gave her a pressing invitation to visit her there
Very early in April and tolerably early in the day
the two parties from Hanover Square and Berkeley Street set
out from their respective homes to meet by appointment
on the road For the convenience of Charlotte and her child
they were to be more than two days on their journey
and Mr Palmer travelling more expeditiously with Colonel Brandon
was to join them at Cleveland soon after their arrival
Marianne few as had been her hours of comfort
in London and eager as she had long been to quit it
could not when it came to the point bid adieu to
the house in which she had for the last time enjoyed
those hopes and that confidence in Willoughby
which were now extinguished for ever without great pain
Nor could she leave the place in which Willoughby remained
busy in new engagements and new schemes in which SHE
could have no share without shedding many tears
Elinors satisfaction at the moment of removal
was more positive She had no such object for her lingering
thoughts to fix on she left no creature behind from whom
it would give her a moments regret to be divided for ever
she was pleased to be free herself from the persecution
of Lucys friendship she was grateful for bringing
her sister away unseen by Willoughby since his marriage
and she looked forward with hope to what a few months
of tranquility at Barton might do towards restoring
Mariannes peace of mind and confirming her own
Their journey was safely performed The second
day brought them into the cherished or the prohibited
county of Somerset for as such was it dwelt on by turns
in Mariannes imagination and in the forenoon of the third
they drove up to Cleveland
Cleveland was a spacious modernbuilt house
situated on a sloping lawn It had no park but the
pleasuregrounds were tolerably extensive and like
every other place of the same degree of importance
it had its open shrubbery and closer wood walk
a road of smooth gravel winding round a plantation
led to the front the lawn was dotted over with timber
the house itself was under the guardianship of the fir
the mountainash and the acacia and a thick screen of
them altogether interspersed with tall Lombardy poplars
shut out the offices
Marianne entered the house with a heart swelling
with emotion from the consciousness of being only eighty
miles from Barton and not thirty from Combe Magna
and before she had been five minutes within its walls
while the others were busily helping Charlotte to show
her child to the housekeeper she quitted it again
stealing away through the winding shrubberies now just
beginning to be in beauty to gain a distant eminence
where from its Grecian temple her eye wandering over
a wide tract of country to the southeast could fondly
rest on the farthest ridge of hills in the horizon
and fancy that from their summits Combe Magna might be seen
In such moments of precious invaluable misery
she rejoiced in tears of agony to be at Cleveland
and as she returned by a different circuit to the house
feeling all the happy privilege of country liberty
of wandering from place to place in free and luxurious solitude
she resolved to spend almost every hour of every day
while she remained with the Palmers in the indulgence of
such solitary rambles
She returned just in time to join the others
as they quitted the house on an excursion through its
more immediate premises and the rest of the morning was
easily whiled away in lounging round the kitchen garden
examining the bloom upon its walls and listening to the
gardeners lamentations upon blights in dawdling through
the greenhouse where the loss of her favourite plants
unwarily exposed and nipped by the lingering frost
raised the laughter of Charlotteand in visiting her
poultryyard where in the disappointed hopes of her
dairymaid by hens forsaking their nests or being
stolen by a fox or in the rapid decrease of a promising
young brood she found fresh sources of merriment
The morning was fine and dry and Marianne
in her plan of employment abroad had not calculated
for any change of weather during their stay at Cleveland
With great surprise therefore did she find herself prevented
by a settled rain from going out again after dinner
She had depended on a twilight walk to the Grecian temple
and perhaps all over the grounds and an evening merely
cold or damp would not have deterred her from it
but a heavy and settled rain even SHE could not fancy dry
or pleasant weather for walking
Their party was small and the hours passed quietly away
Mrs Palmer had her child and Mrs Jennings her carpetwork
they talked of the friends they had left behind
arranged Lady Middletons engagements and wondered
whether Mr Palmer and Colonel Brandon would get farther
than Reading that night Elinor however little concerned
in it joined in their discourse and Marianne who had
the knack of finding her way in every house to the library
however it might be avoided by the family in general
soon procured herself a book
Nothing was wanting on Mrs Palmers side that constant
and friendly good humour could do to make them feel
themselves welcome The openness and heartiness of her
manner more than atoned for that want of recollection
and elegance which made her often deficient in the forms
of politeness her kindness recommended by so pretty
a face was engaging her folly though evident
was not disgusting because it was not conceited
and Elinor could have forgiven every thing but her laugh
The two gentlemen arrived the next day to a very
late dinner affording a pleasant enlargement of the party
and a very welcome variety to their conversation which a
long morning of the same continued rain had reduced very low
Elinor had seen so little of Mr Palmer and in that
little had seen so much variety in his address to her
sister and herself that she knew not what to expect
to find him in his own family She found him however
perfectly the gentleman in his behaviour to all his visitors
and only occasionally rude to his wife and her mother
she found him very capable of being a pleasant companion
and only prevented from being so always by too great
an aptitude to fancy himself as much superior to people
in general as he must feel himself to be to Mrs Jennings
and Charlotte For the rest of his character and habits
they were marked as far as Elinor could perceive
with no traits at all unusual in his sex and time of life
He was nice in his eating uncertain in his hours
fond of his child though affecting to slight it
and idled away the mornings at billiards which ought
to have been devoted to business She liked him however
upon the whole much better than she had expected and in
her heart was not sorry that she could like him no more
not sorry to be driven by the observation of his Epicurism
his selfishness and his conceit to rest with complacency
on the remembrance of Edwards generous temper simple taste
and diffident feelings
Of Edward or at least of some of his concerns
she now received intelligence from Colonel Brandon
who had been into Dorsetshire lately and who
treating her at once as the disinterested friend
of Mr Ferrars and the kind of confidant of himself
talked to her a great deal of the parsonage at Delaford
described its deficiencies and told her what he meant
to do himself towards removing themHis behaviour
to her in this as well as in every other particular
his open pleasure in meeting her after an absence
of only ten days his readiness to converse with her
and his deference for her opinion might very well
justify Mrs Jenningss persuasion of his attachment
and would have been enough perhaps had not Elinor still
as from the first believed Marianne his real favourite
to make her suspect it herself But as it was
such a notion had scarcely ever entered her head
except by Mrs Jenningss suggestion and she could
not help believing herself the nicest observer of the
twoshe watched his eyes while Mrs Jennings thought
only of his behaviourand while his looks of anxious
solicitude on Mariannes feeling in her head and throat
the beginning of a heavy cold because unexpressed by words
entirely escaped the latter ladys observationSHE could
discover in them the quick feelings and needless alarm
of a lover
Two delighful twilight walks on the third and fourth
evenings of her being there not merely on the dry gravel
of the shrubbery but all over the grounds and especially
in the most distant parts of them where there was something
more of wildness than in the rest where the trees were
the oldest and the grass was the longest and wettest
hadassisted by the still greater imprudence of sitting
in her wet shoes and stockingsgiven Marianne a cold
so violent as though for a day or two trifled with
or denied would force itself by increasing ailments on
the concern of every body and the notice of herself
Prescriptions poured in from all quarters and as usual
were all declined Though heavy and feverish with a pain
in her limbs and a cough and a sore throat a good nights
rest was to cure her entirely and it was with difficulty
that Elinor prevailed on her when she went to bed
to try one or two of the simplest of the remedies
CHAPTER 43
Marianne got up the next morning at her usual time
to every inquiry replied that she was better and tried to
prove herself so by engaging in her accustomary employments
But a day spent in sitting shivering over the fire
with a book in her hand which she was unable to read
or in lying weary and languid on a sofa did not speak
much in favour of her amendment and when at last
she went early to bed more and more indisposed Colonel
Brandon was only astonished at her sisters composure
who though attending and nursing her the whole day
against Marianne inclination and forcing proper medicines
on her at night trusted like Marianne to the certainty
and efficacy of sleep and felt no real alarm
A very restless and feverish night however
disappointed the expectation of both and when Marianne
after persisting in rising confessed herself unable
to sit up and returned voluntarily to her bed
Elinor was very ready to adopt Mrs Jenningss advice
of sending for the Palmers apothecary
He came examined his patient and though encouraging
Miss Dashwood to expect that a very few days would restore
her sister to health yet by pronouncing her disorder
to have a putrid tendency and allowing the word infection
to pass his lips gave instant alarm to Mrs Palmer
on her babys account Mrs Jennings who had been inclined
from the first to think Mariannes complaint more serious
than Elinor now looked very grave on Mr Harriss report
and confirming Charlottes fears and caution urged the
necessity of her immediate removal with her infant
and Mr Palmer though treating their apprehensions as idle
found the anxiety and importunity of his wife too great
to be withstood Her departure therefore was fixed on
and within an hour after Mr Harriss arrival she set off
with her little boy and his nurse for the house of a
near relation of Mr Palmers who lived a few miles
on the other side of Bath whither her husband promised
at her earnest entreaty to join her in a day or two
and whither she was almost equally urgent with her
mother to accompany her Mrs Jennings however with a
kindness of heart which made Elinor really love her
declared her resolution of not stirring from Cleveland
as long as Marianne remained ill and of endeavouring
by her own attentive care to supply to her the place
of the mother she had taken her from and Elinor found her
on every occasion a most willing and active helpmate
desirous to share in all her fatigues and often by her
better experience in nursing of material use
Poor Marianne languid and low from the nature
of her malady and feeling herself universally ill
could no longer hope that tomorrow would find her recovered
and the idea of what tomorrow would have produced
but for this unlucky illness made every ailment severe
for on that day they were to have begun their journey home
and attended the whole way by a servant of Mrs Jennings
were to have taken their mother by surprise on the
following forenoon The little she said was all in
lamentation of this inevitable delay though Elinor tried
to raise her spirits and make her believe as she THEN
really believed herself that it would be a very short one
The next day produced little or no alteration in the
state of the patient she certainly was not better and
except that there was no amendment did not appear worse
Their party was now farther reduced for Mr Palmer
though very unwilling to go as well from real humanity
and goodnature as from a dislike of appearing to be
frightened away by his wife was persuaded at last
by Colonel Brandon to perform his promise of following her
and while he was preparing to go Colonel Brandon himself
with a much greater exertion began to talk of going
likewiseHere however the kindness of Mrs Jennings
interposed most acceptably for to send the Colonel away
while his love was in so much uneasiness on her sisters
account would be to deprive them both she thought
of every comfort and therefore telling him at once
that his stay at Cleveland was necessary to herself
that she should want him to play at piquet of an evening
while Miss Dashwood was above with her sister c she
urged him so strongly to remain that he who was gratifying
the first wish of his own heart by a compliance could not
long even affect to demur especially as Mrs Jenningss
entreaty was warmly seconded by Mr Palmer who seemed
to feel a relief to himself in leaving behind him a person
so well able to assist or advise Miss Dashwood in any emergence
Marianne was of course kept in ignorance of all
these arrangements She knew not that she had been
the means of sending the owners of Cleveland away
in about seven days from the time of their arrival
It gave her no surprise that she saw nothing
of Mrs Palmer and as it gave her likewise no concern
she never mentioned her name
Two days passed away from the time of Mr Palmers departure
and her situation continued with little variation
the same Mr Harris who attended her every day
still talked boldly of a speedy recovery and Miss Dashwood
was equally sanguine but the expectation of the others
was by no means so cheerful Mrs Jennings had determined
very early in the seizure that Marianne would never
get over it and Colonel Brandon who was chiefly
of use in listening to Mrs Jenningss forebodings
was not in a state of mind to resist their influence
He tried to reason himself out of fears which the different
judgment of the apothecary seemed to render absurd
but the many hours of each day in which he was left
entirely alone were but too favourable for the admission
of every melancholy idea and he could not expel from
his mind the persuasion that he should see Marianne no more
On the morning of the third day however the gloomy
anticipations of both were almost done away for when
Mr Harris arrived he declared his patient materially better
Her pulse was much stronger and every symptom more favourable
than on the preceding visit Elinor confirmed in every
pleasant hope was all cheerfulness rejoicing that
in her letters to her mother she had pursued her own
judgment rather than her friends in making very light
of the indisposition which delayed them at Cleveland
and almost fixing on the time when Marianne would be
able to travel
But the day did not close so auspiciously as it began
Towards the evening Marianne became ill again growing
more heavy restless and uncomfortable than before
Her sister however still sanguine was willing to
attribute the change to nothing more than the fatigue
of having sat up to have her bed made and carefully
administering the cordials prescribed saw her with
satisfaction sink at last into a slumber from which
she expected the most beneficial effects Her sleep
though not so quiet as Elinor wished to see it
lasted a considerable time and anxious to observe
the result of it herself she resolved to sit with her
during the whole of it Mrs Jennings knowing nothing
of any change in the patient went unusually early to bed
her maid who was one of the principal nurses was recreating
herself in the housekeepers room and Elinor remained
alone with Marianne
The repose of the latter became more and more disturbed
and her sister who watched with unremitting attention
her continual change of posture and heard the frequent
but inarticulate sounds of complaint which passed her lips
was almost wishing to rouse her from so painful a slumber
when Marianne suddenly awakened by some accidental noise
in the house started hastily up and with feverish wildness
cried out
Is mama coming
Not yet cried the other concealing her terror
and assisting Marianne to lie down again but she will
be here I hope before it is long It is a great way
you know from hence to Barton
But she must not go round by London cried Marianne
in the same hurried manner I shall never see her
if she goes by London
Elinor perceived with alarm that she was not
quite herself and while attempting to soothe her
eagerly felt her pulse It was lower and quicker than ever
and Marianne still talking wildly of mama her alarm
increased so rapidly as to determine her on sending
instantly for Mr Harris and despatching a messenger
to Barton for her mother To consult with Colonel Brandon
on the best means of effecting the latter was a thought
which immediately followed the resolution of its performance
and as soon she had rung up the maid to take her place
by her sister she hastened down to the drawingroom
where she knew he was generally to be found at a much
later hour than the present
It was no time for hesitation Her fears and her
difficulties were immediately before him Her fears
he had no courage no confidence to attempt the removal of
he listened to them in silent despondencebut her
difficulties were instantly obviated for with a readiness
that seemed to speak the occasion and the service
prearranged in his mind he offered himself as the
messenger who should fetch Mrs Dashwood Elinor made no
resistance that was not easily overcome She thanked him
with brief though fervent gratitude and while he went
to hurry off his servant with a message to Mr Harris and
an order for posthorses directly she wrote a few lines
to her mother
The comfort of such a friend at that moment as Colonel
Brandonor such a companion for her motherhow gratefully
was it felta companion whose judgment would guide
whose attendance must relieve and whose friendship might
soothe heras far as the shock of such a summons COULD
be lessened to her his presence his manners his assistance
would lessen it
HE meanwhile whatever he might feel acted with all
the firmness of a collected mind made every necessary
arrangement with the utmost despatch and calculated
with exactness the time in which she might look for
his return Not a moment was lost in delay of any kind
The horses arrived even before they were expected
and Colonel Brandon only pressing her hand with a look
of solemnity and a few words spoken too low to reach her ear
hurried into the carriage It was then about twelve
oclock and she returned to her sisters apartment to wait
for the arrival of the apothecary and to watch by her
the rest of the night It was a night of almost equal
suffering to both Hour after hour passed away in sleepless
pain and delirium on Mariannes side and in the most
cruel anxiety on Elinors before Mr Harris appeared
Her apprehensions once raised paid by their excess for all
her former security and the servant who sat up with her
for she would not allow Mrs Jennings to be called
only tortured her more by hints of what her mistress
had always thought
Mariannes ideas were still at intervals
fixed incoherently on her mother and whenever she
mentioned her name it gave a pang to the heart of
poor Elinor who reproaching herself for having trifled
with so many days of illness and wretched for some
immediate relief fancied that all relief might soon
be in vain that every thing had been delayed too long
and pictured to herself her suffering mother arriving
too late to see this darling child or to see her rational
She was on the point of sending again for Mr Harris
or if HE could not come for some other advice
when the formerbut not till after five oclockarrived
His opinion however made some little amends for his delay
for though acknowledging a very unexpected and unpleasant
alteration in his patient he would not allow the danger
to be material and talked of the relief which a fresh
mode of treatment must procure with a confidence which
in a lesser degree was communicated to Elinor He promised
to call again in the course of three or four hours
and left both the patient and her anxious attendant more
composed than he had found them
With strong concern and with many reproaches for not
being called to their aid did Mrs Jennings hear in the
morning of what had passed Her former apprehensions
now with greater reason restored left her no doubt of
the event and though trying to speak comfort to Elinor
her conviction of her sisters danger would not allow her
to offer the comfort of hope Her heart was really grieved
The rapid decay the early death of a girl so young
so lovely as Marianne must have struck a less interested
person with concern On Mrs Jenningss compassion
she had other claims She had been for three months
her companion was still under her care and she was
known to have been greatly injured and long unhappy
The distress of her sister too particularly a favourite
was before herand as for their mother when Mrs Jennings
considered that Marianne might probably be to HER what
Charlotte was to herself her sympathy in HER sufferings
was very sincere
Mr Harris was punctual in his second visit
but he came to be disappointed in his hopes of what the
last would produce His medicines had failedthe fever
was unabated and Marianne only more quietnot more
herselfremained in a heavy stupor Elinor catching all
and more than all his fears in a moment proposed to call
in further advice But he judged it unnecessary he had
still something more to try some more fresh application
of whose success he was as confident as the last and his
visit concluded with encouraging assurances which reached
the ear but could not enter the heart of Miss Dashwood
She was calm except when she thought of her mother
but she was almost hopeless and in this state she continued
till noon scarcely stirring from her sisters bed
her thoughts wandering from one image of grief
one suffering friend to another and her spirits oppressed
to the utmost by the conversation of Mrs Jennings
who scrupled not to attribute the severity and danger
of this attack to the many weeks of previous indisposition
which Mariannes disappointment had brought on
Elinor felt all the reasonableness of the idea and it
gave fresh misery to her reflections
About noon however she beganbut with a cautiona
dread of disappointment which for some time kept her silent
even to her friendto fancy to hope she could perceive
a slight amendment in her sisters pulseshe waited
watched and examined it again and againand at last
with an agitation more difficult to bury under exterior calmness
than all her foregoing distress ventured to communicate
her hopes Mrs Jennings though forced on examination
to acknowledge a temporary revival tried to keep her
young friend from indulging a thought of its continuance
and Elinor conning over every injunction of distrust
told herself likewise not to hope But it was too late
Hope had already entered and feeling all its anxious flutter
she bent over her sister to watchshe hardly knew for what
Half an hour passed away and the favourable symptom
yet blessed her Others even arose to confirm it
Her breath her skin her lips all flattered Elinor
with signs of amendment and Marianne fixed her eyes on
her with a rational though languid gaze Anxiety and
hope now oppressed her in equal degrees and left her no
moment of tranquillity till the arrival of Mr Harris at
four oclockwhen his assurances his felicitations on
a recovery in her sister even surpassing his expectation
gave her confidence comfort and tears of joy
Marianne was in every respect materially better
and he declared her entirely out of danger Mrs Jennings
perhaps satisfied with the partial justification of her
forebodings which had been found in their late alarm
allowed herself to trust in his judgment and admitted
with unfeigned joy and soon with unequivocal cheerfulness
the probability of an entire recovery
Elinor could not be cheerful Her joy was of a
different kind and led to any thing rather than to gaiety
Marianne restored to life health friends and to her
doting mother was an idea to fill her heart with sensations
of exquisite comfort and expand it in fervent gratitude
but it lead to no outward demonstrations of joy no words
no smiles All within Elinors breast was satisfaction
silent and strong
She continued by the side of her sister with little
intermission the whole afternoon calming every fear
satisfying every inquiry of her enfeebled spirits
supplying every succour and watching almost every look and
every breath The possibility of a relapse would of course
in some moments occur to remind her of what anxiety was
but when she saw on her frequent and minute examination
that every symptom of recovery continued and saw Marianne
at six oclock sink into a quiet steady and to all
appearance comfortable sleep she silenced every doubt
The time was now drawing on when Colonel Brandon
might be expected back At ten oclock she trusted
or at least not much later her mother would be relieved
from the dreadful suspense in which she must now be
travelling towards them The Colonel tooperhaps scarcely
less an object of pityOhhow slow was the progress
of time which yet kept them in ignorance
At seven oclock leaving Marianne still sweetly asleep
she joined Mrs Jennings in the drawingroom to tea
Of breakfast she had been kept by her fears and of
dinner by their sudden reverse from eating much
and the present refreshment therefore with such feelings
of content as she brought to it was particularly welcome
Mrs Jennings would have persuaded her at its conclusion
to take some rest before her mothers arrival and allow HER to
take her place by Marianne but Elinor had no sense of fatigue
no capability of sleep at that moment about her and she was
not to be kept away from her sister an unnecessary instant
Mrs Jennings therefore attending her up stairs into the
sick chamber to satisfy herself that all continued right
left her there again to her charge and her thoughts
and retired to her own room to write letters and sleep
The night was cold and stormy The wind roared
round the house and the rain beat against the windows
but Elinor all happiness within regarded it not
Marianne slept through every blast and the travellers
they had a rich reward in store for every present inconvenience
The clock struck eight Had it been ten
Elinor would have been convinced that at that moment
she heard a carriage driving up to the house
and so strong was the persuasion that she DID in spite
of the ALMOST impossibility of their being already come
that she moved into the adjoining dressingcloset and
opened a window shutter to be satisfied of the truth
She instantly saw that her ears had not deceived her
The flaring lamps of a carriage were immediately in view
By their uncertain light she thought she could discern it
to be drawn by four horses and this while it told the
excess of her poor mothers alarm gave some explanation
to such unexpected rapidity
Never in her life had Elinor found it so difficult
to be calm as at that moment The knowledge of what her
mother must be feeling as the carriage stopt at the door
of her doubther dreadperhaps her despairand
of what SHE had to tellwith such knowledge it was
impossible to be calm All that remained to be done
was to be speedy and therefore staying only till
she could leave Mrs Jenningss maid with her sister
she hurried down stairs
The bustle in the vestibule as she passed along
an inner lobby assured her that they were already
in the house She rushed to the drawingroomshe
entered itand saw only Willoughby
CHAPTER 44
Elinor starting back with a look of horror at
the sight of him obeyed the first impulse of her heart
in turning instantly to quit the room and her hand
was already on the lock when its action was suspended
by his hastily advancing and saying in a voice rather
of command than supplication
Miss Dashwood for half an hourfor ten minutes
I entreat you to stay
No sir she replied with firmness I shall NOT stay
Your business cannot be with ME The servants I suppose
forgot to tell you that Mr Palmer was not in the house
Had they told me he cried with vehemence
that Mr Palmer and all his relations were at the devil
it would not have turned me from the door My business
is with you and only you
With mein the utmost amazementwell sir
be quickand if you canless violent
Sit down and I will be both
She hesitated she knew not what to do The possibility
of Colonel Brandons arriving and finding her there
came across her But she had promised to hear him
and her curiosity no less than her honor was engaged
After a moments recollection therefore concluding that
prudence required dispatch and that her acquiescence would
best promote it she walked silently towards the table
and sat down He took the opposite chair and for half
a minute not a word was said by either
Pray be quick sirsaid Elinor impatiently
I have no time to spare
He was sitting in an attitude of deep meditation
and seemed not to hear her
Your sister said he with abruptness a moment
afterwardsis out of danger I heard it from the servant
God be praisedBut is it true is it really true
Elinor would not speak He repeated the inquiry with
yet greater eagerness
For Gods sake tell me is she out of danger or is she not
We hope she is
He rose up and walked across the room
Had I known as much half an hour agoBut
since I AM herespeaking with a forced vivacity as he
returned to his seatwhat does it signifyFor once
Miss Dashwoodit will be the last time perhapslet us
be cheerful togetherI am in a fine mood for gaiety
Tell me honestlya deeper glow overspreading his cheeks
do you think me most a knave or a fool
Elinor looked at him with greater astonishment than ever
She began to think that be must be in liquorthe
strangeness of such a visit and of such manners
seemed no otherwise intelligible and with this impression
she immediately rose saying
Mr Willoughby I advise you at present to return
to CombeI am not at leisure to remain with you longer
Whatever your business may be with me will it be better
recollected and explained tomorrow
I understand you he replied with an expressive smile
and a voice perfectly calm yes I am very drunk
A pint of porter with my cold beef at Marlborough was
enough to overset me
At Marlboroughcried Elinor more and more at
a loss to understand what he would be at
YesI left London this morning at eight oclock
and the only ten minutes I have spent out of my chaise
since that time procured me a nuncheon at Marlborough
The steadiness of his manner and the intelligence
of his eye as he spoke convincing Elinor that whatever
other unpardonable folly might bring him to Cleveland
he was not brought there by intoxication she said
after a moments recollection
Mr Willoughby you OUGHT to feel and I certainly
DOthat after what has passedyour coming here in
this manner and forcing yourself upon my notice
requires a very particular excuseWhat is it
that you mean by it
I meansaid he with serious energyif I can
to make you hate me one degree less than you do NOW
I mean to offer some kind of explanation some kind
of apology for the past to open my whole heart to you
and by convincing you that though I have been always
a blockhead I have not been always a rascal to obtain
something like forgiveness from Mafrom your sister
Is this the real reason of your coming
Upon my soul it iswas his answer with a warmth
which brought all the former Willoughby to her remembrance
and in spite of herself made her think him sincere
If that is all you may be satisfied already
for Marianne DOESshe has LONG forgiven you
Has shehe cried in the same eager tone
Then she has forgiven me before she ought to have done it
But she shall forgive me again and on more reasonable
groundsNOW will you listen to me
Elinor bowed her assent
I do not know said he after a pause of expectation
on her side and thoughtfulness on his ownhow YOU
may have accounted for my behaviour to your sister
or what diabolical motive you may have imputed to me
Perhaps you will hardly think the better of meit is
worth the trial however and you shall hear every thing
When I first became intimate in your family I had no
other intention no other view in the acquaintance
than to pass my time pleasantly while I was obliged to remain
in Devonshire more pleasantly than I had ever done before
Your sisters lovely person and interesting manners
could not but please me and her behaviour to me almost
from the first was of a kindIt is astonishing
when I reflect on what it was and what SHE was that my
heart should have been so insensible But at first
I must confess my vanity only was elevated by it
Careless of her happiness thinking only of my own amusement
giving way to feelings which I had always been too much
in the habit of indulging I endeavoured by every means
in my power to make myself pleasing to her without any
design of returning her affection
Miss Dashwood at this point turning her eyes on him
with the most angry contempt stopped him by saying
It is hardly worth while Mr Willoughby
for you to relate or for me to listen any longer
Such a beginning as this cannot be followed by any thing
Do not let me be pained by hearing any thing more on
the subject
I insist on you hearing the whole of it he replied
My fortune was never large and I had always been expensive
always in the habit of associating with people of better
income than myself Every year since my coming of age
or even before I believe had added to my debts and though
the death of my old cousin Mrs Smith was to set me free
yet that event being uncertain and possibly far distant
it had been for some time my intention to reestablish my
circumstances by marrying a woman of fortune To attach
myself to your sister therefore was not a thing to be
thought ofand with a meanness selfishness cruelty
which no indignant no contemptuous look even of yours
Miss Dashwood can ever reprobate too muchI was acting
in this manner trying to engage her regard without a
thought of returning itBut one thing may be said
for me even in that horrid state of selfish vanity
I did not know the extent of the injury I meditated
because I did not THEN know what it was to love
But have I ever known itWell may it be doubted for had I
really loved could I have sacrificed my feelings to vanity
to avariceor what is more could I have sacrificed hers
But I have done it To avoid a comparative poverty
which her affection and her society would have deprived
of all its horrors I have by raising myself to affluence
lost every thing that could make it a blessing
You did then said Elinor a little softened
believe yourself at one time attached to her
To have resisted such attractions to have withstood
such tendernessIs there a man on earth who could have
done itYes I found myself by insensible degrees
sincerely fond of her and the happiest hours of my life
were what I spent with her when I felt my intentions
were strictly honourable and my feelings blameless
Even THEN however when fully determined on paying
my addresses to her I allowed myself most improperly
to put off from day to day the moment of doing it
from an unwillingness to enter into an engagement
while my circumstances were so greatly embarrassed
I will not reason herenor will I stop for YOU to expatiate
on the absurdity and the worse than absurdity of scrupling
to engage my faith where my honour was already bound
The event has proved that I was a cunning fool
providing with great circumspection for a possible
opportunity of making myself contemptible and wretched
for ever At last however my resolution was taken
and I had determined as soon as I could engage her alone
to justify the attentions I had so invariably paid her
and openly assure her of an affection which I had already
taken such pains to display But in the interimin the
interim of the very few hours that were to pass before I
could have an opportunity of speaking with her in private
a circumstance occurredan unlucky circumstance to ruin
all my resolution and with it all my comfort A discovery
took placehere he hesitated and looked downMrs Smith
had somehow or other been informed I imagine by some
distant relation whose interest it was to deprive me of
her favour of an affair a connectionbut I need not
explain myself farther he added looking at her with an
heightened colour and an enquiring eyeyour particular
intimacyyou have probably heard the whole story long ago
I have returned Elinor colouring likewise
and hardening her heart anew against any compassion for him
I have heard it all And how you will explain away any
part of your guilt in that dreadful business I confess
is beyond my comprehension
Remember cried Willoughby from whom you received
the account Could it be an impartial one I acknowledge
that her situation and her character ought to have been
respected by me I do not mean to justify myself but at
the same time cannot leave you to suppose that I have nothing
to urgethat because she was injured she was irreproachable
and because I was a libertine SHE must be a saint
If the violence of her passions the weakness of her
understandingI do not mean however to defend myself
Her affection for me deserved better treatment and I often
with great selfreproach recall the tenderness which
for a very short time had the power of creating any return
I wishI heartily wish it had never been But I have injured
more than herself and I have injured one whose affection
for memay I say it was scarcely less warm than hers
and whose mindOh how infinitely superior
Your indifference however towards that unfortunate
girlI must say it unpleasant to me as the discussion
of such a subject may well beyour indifference is no
apology for your cruel neglect of her Do not think yourself
excused by any weakness any natural defect of understanding
on her side in the wanton cruelty so evident on yours
You must have known that while you were enjoying yourself
in Devonshire pursuing fresh schemes always gay
always happy she was reduced to the extremest indigence
But upon my soul I did NOT know it he warmly
replied I did not recollect that I had omitted to give
her my direction and common sense might have told her
how to find it out
Well sir and what said Mrs Smith
She taxed me with the offence at once and my confusion
may be guessed The purity of her life the formality
of her notions her ignorance of the worldevery thing
was against me The matter itself I could not deny
and vain was every endeavour to soften it She was
previously disposed I believe to doubt the morality of my
conduct in general and was moreover discontented with
the very little attention the very little portion of my
time that I had bestowed on her in my present visit
In short it ended in a total breach By one measure I
might have saved myself In the height of her morality
good woman she offered to forgive the past if I would
marry Eliza That could not beand I was formally
dismissed from her favour and her house The night
following this affairI was to go the next morning
was spent by me in deliberating on what my future conduct
should be The struggle was greatbut it ended too soon
My affection for Marianne my thorough conviction of her
attachment to meit was all insufficient to outweigh
that dread of poverty or get the better of those false
ideas of the necessity of riches which I was naturally
inclined to feel and expensive society had increased
I had reason to believe myself secure of my present wife
if I chose to address her and I persuaded myself to think
that nothing else in common prudence remained for me to do
A heavy scene however awaited me before I could leave
DevonshireI was engaged to dine with you on that very day
some apology was therefore necessary for my breaking
this engagement But whether I should write this apology
or deliver it in person was a point of long debate
To see Marianne I felt would be dreadful and I even doubted
whether I could see her again and keep to my resolution
In that point however I undervalued my own magnanimity
as the event declared for I went I saw her and saw
her miserable and left her miserableand left her hoping
never to see her again
Why did you call Mr Willoughby said Elinor
reproachfully a note would have answered every purpose
Why was it necessary to call
It was necessary to my own pride I could not bear
to leave the country in a manner that might lead you
or the rest of the neighbourhood to suspect any part
of what had really passed between Mrs Smith and myself
and I resolved therefore on calling at the cottage
in my way to Honiton The sight of your dear sister
however was really dreadful and to heighten the matter
I found her alone You were all gone I do not know where
I had left her only the evening before so fully
so firmly resolved within my self on doing right
A few hours were to have engaged her to me for ever
and I remember how happy how gay were my spirits as I
walked from the cottage to Allenham satisfied with myself
delighted with every body But in this our last interview
of friendship I approached her with a sense of guilt
that almost took from me the power of dissembling
Her sorrow her disappointment her deep regret when I told
her that I was obliged to leave Devonshire so immediatelyI
never shall forget itunited too with such reliance
such confidence in meOh Godwhat a hardhearted
rascal I was
They were both silent for a few moments
Elinor first spoke
Did you tell her that you should soon return
I do not know what I told her he replied impatiently
less than was due to the past beyond a doubt and in all
likelihood much more than was justified by the future
I cannot think of itIt wont doThen came your dear mother
to torture me farther with all her kindness and confidence
Thank Heaven it DID torture me I was miserable
Miss Dashwood you cannot have an idea of the comfort it
gives me to look back on my own misery I owe such a grudge
to myself for the stupid rascally folly of my own heart
that all my past sufferings under it are only triumph and
exultation to me now Well I went left all that I loved
and went to those to whom at best I was only indifferent
My journey to towntravelling with my own horses
and therefore so tediouslyno creature to speak tomy
own reflections so cheerfulwhen I looked forward
every thing so invitingwhen I looked back at Barton
the picture so soothingoh it was a blessed journey
He stopped
Well sir said Elinor who though pitying him
grew impatient for his departure and this is all
Ahnohave you forgot what passed in town
That infamous letterDid she shew it you
Yes I saw every note that passed
When the first of hers reached me as it immediately did
for I was in town the whole time what I felt is
in the common phrase not to be expressed in a more
simple oneperhaps too simple to raise any emotion
my feelings were very very painfulEvery line every word
wasin the hackneyed metaphor which their dear writer
were she here would forbida dagger to my heart
To know that Marianne was in town wasin the same language
a thunderboltThunderbolts and daggerswhat a reproof
would she have given meher taste her opinionsI believe
they are better known to me than my ownand I am sure
they are dearer
Elinors heart which had undergone many changes
in the course of this extraordinary conversation
was now softened againyet she felt it her duty to check
such ideas in her companion as the last
This is not right Mr WilloughbyRemember that
you are married Relate only what in your conscience
you think necessary for me to hear
Mariannes note by assuring me that I was still
as dear to her as in former days that in spite of the many
many weeks we had been separated she was as constant
in her own feelings and as full of faith in the constancy
of mine as ever awakened all my remorse I say awakened
because time and London business and dissipation
had in some measure quieted it and I had been growing
a fine hardened villain fancying myself indifferent to her
and chusing to fancy that she too must have become
indifferent to me talking to myself of our past attachment
as a mere idle trifling business shrugging up my shoulders
in proof of its being so and silencing every reproach
overcoming every scruple by secretly saying now and then
I shall be heartily glad to hear she is well married
But this note made me know myself better I felt that
she was infinitely dearer to me than any other woman
in the world and that I was using her infamously
But every thing was then just settled between Miss Grey
and me To retreat was impossible All that I had to do
was to avoid you both I sent no answer to Marianne
intending by that to preserve myself from her farther notice
and for some time I was even determined not to call in
Berkeley Streetbut at last judging it wiser to affect
the air of a cool common acquaintance than anything else
I watched you all safely out of the house one morning
and left my name
Watched us out of the house
Even so You would be surprised to hear how often
I watched you how often I was on the point of falling
in with you I have entered many a shop to avoid your sight
as the carriage drove by Lodging as I did in Bond Street
there was hardly a day in which I did not catch a glimpse
of one or other of you and nothing but the most constant
watchfulness on my side a most invariably prevailing
desire to keep out of your sight could have separated us
so long I avoided the Middletons as much as possible
as well as everybody else who was likely to prove
an acquaintance in common Not aware of their being
in town however I blundered on Sir John I believe
the first day of his coming and the day after I had called
at Mrs Jenningss He asked me to a party a dance at his
house in the eveningHad he NOT told me as an inducement
that you and your sister were to be there I should have
felt it too certain a thing to trust myself near him
The next morning brought another short note from Marianne
still affectionate open artless confidingeverything
that could make MY conduct most hateful I could not
answer it I triedbut could not frame a sentence
But I thought of her I believe every moment of the day
If you CAN pity me Miss Dashwood pity my situation as it
was THEN With my head and heart full of your sister
I was forced to play the happy lover to another womanThose
three or four weeks were worse than all Well at last
as I need not tell you you were forced on me and what a
sweet figure I cutwhat an evening of agony it was
Marianne beautiful as an angel on one side calling me
Willoughby in such a toneOh Godholding out her hand
to me asking me for an explanation with those bewitching
eyes fixed in such speaking solicitude on my faceand
Sophia jealous as the devil on the other hand looking
all that wasWell it does not signify it is over now
Such an eveningI ran away from you all as soon as I could
but not before I had seen Mariannes sweet face as white
as deathTHAT was the last last look I ever had of her
the last manner in which she appeared to me It was a horrid
sightyet when I thought of her today as really dying
it was a kind of comfort to me to imagine that I knew
exactly how she would appear to those who saw her last
in this world She was before me constantly before me
as I travelled in the same look and hue
A short pause of mutual thoughtfulness succeeded
Willoughby first rousing himself broke it thus
Well let me make haste and be gone Your sister
is certainly better certainly out of danger
We are assured of it
Your poor mother toodoting on Marianne
But the letter Mr Willoughby your own letter
have you any thing to say about that
Yes yes THAT in particular Your sister
wrote to me again you know the very next morning
You saw what she said I was breakfasting at the
Ellisonsand her letter with some others was brought
to me there from my lodgings It happened to catch
Sophias eye before it caught mineand its size
the elegance of the paper the handwriting altogether
immediately gave her a suspicion Some vague report had
reached her before of my attachment to some young lady
in Devonshire and what had passed within her observation
the preceding evening had marked who the young lady was
and made her more jealous than ever Affecting that air
of playfulness therefore which is delightful in a woman
one loves she opened the letter directly and read
its contents She was well paid for her impudence
She read what made her wretched Her wretchedness I could
have borne but her passionher maliceAt all events it
must be appeased And in shortwhat do you think of my
wifes style of letterwritingdelicatetender
truly femininewas it not
Your wifeThe letter was in your own handwriting
Yes but I had only the credit of servilely copying
such sentences as I was ashamed to put my name to
The original was all her ownher own happy thoughts
and gentle diction But what could I dowe were engaged
every thing in preparation the day almost fixedBut I am
talking like a fool PreparationdayIn honest words
her money was necessary to me and in a situation like
mine any thing was to be done to prevent a rupture
And after all what did it signify to my character
in the opinion of Marianne and her friends in what language
my answer was couchedIt must have been only to one end
My business was to declare myself a scoundrel and whether
I did it with a bow or a bluster was of little importance
I am ruined for ever in their opinion said I to
myselfI am shut out for ever from their society
they already think me an unprincipled fellow this letter
will only make them think me a blackguard one Such were
my reasonings as in a sort of desperate carelessness
I copied my wifes words and parted with the last relics
of Marianne Her three notesunluckily they were all
in my pocketbook or I should have denied their existence
and hoarded them for everI was forced to put them up
and could not even kiss them And the lock of hairthat too
I had always carried about me in the same pocketbook
which was now searched by Madam with the most ingratiating
virulencethe dear lockall every memento was torn from me
You are very wrong Mr Willoughby very blamable
said Elinor while her voice in spite of herself
betrayed her compassionate emotion you ought not to speak
in this way either of Mrs Willoughby or my sister
You had made your own choice It was not forced on you
Your wife has a claim to your politeness to your respect
at least She must be attached to you or she would not
have married you To treat her with unkindness to speak
of her slightingly is no atonement to Mariannenor can I
suppose it a relief to your own conscience
Do not talk to me of my wife said he with a heavy sigh
She does not deserve your compassionShe knew I had no
regard for her when we marriedWell married we were
and came down to Combe Magna to be happy and afterwards
returned to town to be gayAnd now do you pity me
Miss Dashwoodor have I said all this to no purpose
Am Ibe it only one degreeam I less guilty in your opinion
than I was beforeMy intentions were not always wrong
Have I explained away any part of my guilt
Yes you have certainly removed somethinga little
You have proved yourself on the whole less faulty than
I had believed you You have proved your heart less wicked
much less wicked But I hardly knowthe misery that
you have inflictedI hardly know what could have made
it worse
Will you repeat to your sister when she is recovered
what I have been telling youLet me be a little lightened
too in her opinion as well as in yours You tell me that
she has forgiven me already Let me be able to fancy that
a better knowledge of my heart and of my present feelings
will draw from her a more spontaneous more natural more
gentle less dignified forgiveness Tell her of my misery
and my penitencetell her that my heart was never inconstant
to her and if you will that at this moment she is dearer
to me than ever
I will tell her all that is necessary to what may
comparatively be called your justification But you have
not explained to me the particular reason of your coming now
nor how you heard of her illness
Last night in Drury Lane lobby I ran against Sir
John Middleton and when he saw who I wasfor the first
time these two monthshe spoke to meThat he had cut
me ever since my marriage I had seen without surprise
or resentment Now however his goodnatured honest
stupid soul full of indignation against me and concern
for your sister could not resist the temptation of telling
me what he knew ought tothough probably he did not
think it WOULDvex me horridly As bluntly as he could
speak it therefore he told me that Marianne Dashwood
was dying of a putrid fever at Clevelanda letter that
morning received from Mrs Jennings declared her danger
most imminentthe Palmers are all gone off in a fright
cI was too much shocked to be able to pass myself
off as insensible even to the undiscerning Sir John
His heart was softened in seeing mine suffer and so much
of his illwill was done away that when we parted
he almost shook me by the hand while he reminded me of an
old promise about a pointer puppy What I felt on hearing
that your sister was dyingand dying too believing me
the greatest villain upon earth scorning hating me
in her latest momentsfor how could I tell what horrid
projects might not have been imputed ONE person I
was sure would represent me as capable of any thing
What I felt was dreadfulMy resolution was soon made
and at eight oclock this morning I was in my carriage
Now you know all
Elinor made no answer Her thoughts were silently fixed
on the irreparable injury which too early an independence
and its consequent habits of idleness dissipation and luxury
had made in the mind the character the happiness
of a man who to every advantage of person and talents
united a disposition naturally open and honest and a
feeling affectionate temper The world had made him
extravagant and vainExtravagance and vanity had made him
coldhearted and selfish Vanity while seeking its own
guilty triumph at the expense of another had involved
him in a real attachment which extravagance or at least
its offspring necessity had required to be sacrificed
Each faulty propensity in leading him to evil had led
him likewise to punishment The attachment from which
against honour against feeling against every better interest
he had outwardly torn himself now when no longer allowable
governed every thought and the connection for the sake
of which he had with little scruple left her sister
to misery was likely to prove a source of unhappiness
to himself of a far more incurable nature From a reverie
of this kind she was recalled at the end of some minutes
by Willoughby who rousing himself from a reverie at least
equally painful started up in preparation for going and said
There is no use in staying here I must be off
Are you going back to town
Noto Combe Magna I have business there
from thence to town in a day or two Good bye
He held out his hand She could not refuse to give
him hersshe pressed it with affection
And you DO think something better of me than
you didsaid he letting it fall and leaning against
the mantelpiece as if forgetting he was to go
Elinor assured him that she didthat she forgave
pitied wished him wellwas even interested in his
happinessand added some gentle counsel as to the behaviour
most likely to promote it His answer was not very encouraging
As to that said he I must rub through the world
as well as I can Domestic happiness is out of the question
If however I am allowed to think that you and yours feel
an interest in my fate and actions it may be the meansit
may put me on my guardat least it may be something to
live for Marianne to be sure is lost to me for ever
Were I even by any blessed chance at liberty again
Elinor stopped him with a reproof
Wellhe repliedonce more good bye I shall
now go away and live in dread of one event
What do you mean
Your sisters marriage
You are very wrong She can never be more lost
to you than she is now
But she will be gained by some one else And if
that some one should be the very he whom of all others
I could least bearbut I will not stay to rob myself
of all your compassionate goodwill by shewing
that where I have most injured I can least forgive
Good byeGod bless you
And with these words he almost ran out of the room
CHAPTER 45
Elinor for some time after he left her for some time
even after the sound of his carriage had died away remained
too much oppressed by a crowd of ideas widely differing in
themselves but of which sadness was the general result
to think even of her sister
Willoughby he whom only half an hour ago she had
abhorred as the most worthless of men Willoughby in spite
of all his faults excited a degree of commiseration
for the sufferings produced by them which made her
think of him as now separated for ever from her family
with a tenderness a regret rather in proportion as she
soon acknowledged within herselfto his wishes than to
his merits She felt that his influence over her mind
was heightened by circumstances which ought not in reason
to have weight by that person of uncommon attraction
that open affectionate and lively manner which it
was no merit to possess and by that still ardent love
for Marianne which it was not even innocent to indulge
But she felt that it was so long long before she could
feel his influence less
When at last she returned to the unconscious Marianne
she found her just awaking refreshed by so long and sweet
a sleep to the extent of her hopes Elinors heart was full
The past the present the future Willoughbys visit
Mariannes safety and her mothers expected arrival
threw her altogether into an agitation of spirits
which kept off every indication of fatigue and made
her only fearful of betraying herself to her sister
Short was the time however in which that fear could
affect her for within half an hour after Willoughbys
leaving the house she was again called down stairs
by the sound of another carriageEager to save her
mother from every unnecessary moments horrible suspense
she ran immediately into the hall and reached the outward
door just in time to receive and support her as she entered it
Mrs Dashwood whose terror as they drew near the
house had produced almost the conviction of Mariannes
being no more had no voice to inquire after her
no voice even for Elinor but SHE waiting neither for
salutation nor inquiry instantly gave the joyful relief
and her mother catching it with all her usual warmth
was in a moment as much overcome by her happiness as she
had been before by her fears She was supported into
the drawingroom between her daughter and her friend
and there shedding tears of joy though still unable
to speak embraced Elinor again and again turning from her
at intervals to press Colonel Brandons hand with a look
which spoke at once her gratitude and her conviction
of his sharing with herself in the bliss of the moment
He shared it however in a silence even greater than her own
As soon as Mrs Dashwood had recovered herself
to see Marianne was her first desire and in two minutes she
was with her beloved child rendered dearer to her than ever
by absence unhappiness and danger Elinors delight
as she saw what each felt in the meeting was only checked
by an apprehension of its robbing Marianne of farther sleep
but Mrs Dashwood could be calm could be even prudent
when the life of a child was at stake and Marianne
satisfied in knowing her mother was near her and conscious
of being too weak for conversation submitted readily to the
silence and quiet prescribed by every nurse around her
Mrs Dashwood WOULD sit up with her all night and Elinor
in compliance with her mothers entreaty went to bed
But the rest which one night entirely sleepless
and many hours of the most wearing anxiety seemed to
make requisite was kept off by irritation of spirits
Willoughby poor Willoughby as she now allowed
herself to call him was constantly in her thoughts she
would not but have heard his vindication for the world
and now blamed now acquitted herself for having judged him
so harshly before But her promise of relating it to her
sister was invariably painful She dreaded the performance
of it dreaded what its effect on Marianne might be
doubted whether after such an explanation she could ever
be happy with another and for a moment wished Willoughby
a widower Then remembering Colonel Brandon reproved herself
felt that to HIS sufferings and his constancy far more
than to his rivals the reward of her sister was due
and wished any thing rather than Mrs Willoughbys death
The shock of Colonel Brandons errand at Barton had been
much softened to Mrs Dashwood by her own previous alarm
for so great was her uneasiness about Marianne that she
had already determined to set out for Cleveland on that
very day without waiting for any further intelligence
and had so far settled her journey before his arrival
that the Careys were then expected every moment to fetch
Margaret away as her mother was unwilling to take her
where there might be infection
Marianne continued to mend every day and the brilliant
cheerfulness of Mrs Dashwoods looks and spirits proved
her to be as she repeatedly declared herself one of
the happiest women in the world Elinor could not hear
the declaration nor witness its proofs without sometimes
wondering whether her mother ever recollected Edward
But Mrs Dashwood trusting to the temperate account
of her own disappointment which Elinor had sent her
was led away by the exuberance of her joy to think only
of what would increase it Marianne was restored to her
from a danger in which as she now began to feel
her own mistaken judgment in encouraging the unfortunate
attachment to Willoughby had contributed to place her
and in her recovery she had yet another source of joy
unthought of by Elinor It was thus imparted to her
as soon as any opportunity of private conference
between them occurred
At last we are alone My Elinor you do not yet
know all my happiness Colonel Brandon loves Marianne
He has told me so himself
Her daughter feeling by turns both pleased and pained
surprised and not surprised was all silent attention
You are never like me dear Elinor or I should
wonder at your composure now Had I sat down to wish
for any possible good to my family I should have fixed
on Colonel Brandons marrying one of you as the object
most desirable And I believe Marianne will be the most
happy with him of the two
Elinor was half inclined to ask her reason for thinking so
because satisfied that none founded on an impartial
consideration of their age characters or feelings
could be givenbut her mother must always be carried
away by her imagination on any interesting subject
and therefore instead of an inquiry she passed it off with a
smile
He opened his whole heart to me yesterday as we travelled
It came out quite unawares quite undesignedly I you may
well believe could talk of nothing but my childhe could
not conceal his distress I saw that it equalled my own
and he perhaps thinking that mere friendship as the world
now goes would not justify so warm a sympathyor rather
not thinking at all I supposegiving way to irresistible
feelings made me acquainted with his earnest tender constant
affection for Marianne He has loved her my Elinor ever since
the first moment of seeing her
Here however Elinor perceivednot the language
not the professions of Colonel Brandon but the natural
embellishments of her mothers active fancy which fashioned
every thing delightful to her as it chose
His regard for her infinitely surpassing anything
that Willoughby ever felt or feigned as much more warm
as more sincere or constantwhich ever we are to call it
has subsisted through all the knowledge of dear Mariannes
unhappy prepossession for that worthless young manand
without selfishnesswithout encouraging a hopecould
he have seen her happy with anotherSuch a noble mind
such openness such sincerityno one can be deceived
in HIM
Colonel Brandons character said Elinor
as an excellent man is well established
I know it isreplied her mother seriously or
after such a warning I should be the last to encourage
such affection or even to be pleased by it But his coming
for me as he did with such active such ready friendship
is enough to prove him one of the worthiest of men
His character however answered Elinor does not rest
on ONE act of kindness to which his affection for Marianne
were humanity out of the case would have prompted him
To Mrs Jennings to the Middletons he has been long
and intimately known they equally love and respect him
and even my own knowledge of him though lately acquired
is very considerable and so highly do I value and esteem him
that if Marianne can be happy with him I shall be as ready
as yourself to think our connection the greatest blessing
to us in the world What answer did you give himDid you
allow him to hope
Oh my love I could not then talk of hope to him
or to myself Marianne might at that moment be dying
But he did not ask for hope or encouragement His was
an involuntary confidence an irrepressible effusion
to a soothing friendnot an application to a parent
Yet after a time I DID say for at first I was quite
overcomethat if she lived as I trusted she might
my greatest happiness would lie in promoting their marriage
and since our arrival since our delightful security
I have repeated it to him more fully have given him every
encouragement in my power Time a very little time
I tell him will do everythingMariannes heart is
not to be wasted for ever on such a man as Willoughby
His own merits must soon secure it
To judge from the Colonels spirits however
you have not yet made him equally sanguine
NoHe thinks Mariannes affection too deeply
rooted for any change in it under a great length of time
and even supposing her heart again free is too diffident
of himself to believe that with such a difference of age
and disposition he could ever attach her There however
he is quite mistaken His age is only so much beyond
hers as to be an advantage as to make his character and
principles fixedand his disposition I am well convinced
is exactly the very one to make your sister happy
And his person his manners too are all in his favour
My partiality does not blind me he certainly is not
so handsome as Willoughbybut at the same time
there is something much more pleasing in his countenance
There was always a somethingif you rememberin Willoughbys
eyes at times which I did not like
Elinor could NOT remember itbut her mother
without waiting for her assent continued
And his manners the Colonels manners are not only
more pleasing to me than Willoughbys ever were but they
are of a kind I well know to be more solidly attaching
to Marianne Their gentleness their genuine attention
to other people and their manly unstudied simplicity
is much more accordant with her real disposition than
the livelinessoften artificial and often illtimed
of the other I am very sure myself that had Willoughby
turned out as really amiable as he has proved himself
the contrary Marianne would yet never have been so happy
with HIM as she will be with Colonel Brandon
She pausedHer daughter could not quite agree
with her but her dissent was not heard and therefore
gave no offence
At Delaford she will be within an easy distance of me
added Mrs Dashwood even if I remain at Barton and in all
probabilityfor I hear it is a large villageindeed there
certainly MUST be some small house or cottage close by
that would suit us quite as well as our present situation
Poor Elinorhere was a new scheme for getting
her to Delafordbut her spirit was stubborn
His fortune toofor at my time of life you know
everybody cares about THATand though I neither know
nor desire to know what it really is I am sure it must be
a good one
Here they were interrupted by the entrance of a
third person and Elinor withdrew to think it all over
in private to wish success to her friend and yet
in wishing it to feel a pang for Willoughby
CHAPTER 46
Mariannes illness though weakening in its kind
had not been long enough to make her recovery slow
and with youth natural strength and her mothers presence
in aid it proceeded so smoothly as to enable her to remove
within four days after the arrival of the latter
into Mrs Palmers dressingroom When there at her own
particular request for she was impatient to pour forth
her thanks to him for fetching her mother Colonel Brandon
was invited to visit her
His emotion on entering the room in seeing her altered
looks and in receiving the pale hand which she immediately
held out to him was such as in Elinors conjecture
must arise from something more than his affection for Marianne
or the consciousness of its being known to others
and she soon discovered in his melancholy eye and varying
complexion as he looked at her sister the probable
recurrence of many past scenes of misery to his mind
brought back by that resemblance between Marianne and Eliza
already acknowledged and now strengthened by the hollow eye
the sickly skin the posture of reclining weakness
and the warm acknowledgment of peculiar obligation
Mrs Dashwood not less watchful of what passed than
her daughter but with a mind very differently influenced
and therefore watching to very different effect
saw nothing in the Colonels behaviour but what arose
from the most simple and selfevident sensations while in
the actions and words of Marianne she persuaded herself
to think that something more than gratitude already dawned
At the end of another day or two Marianne growing
visibly stronger every twelve hours Mrs Dashwood
urged equally by her own and her daughters wishes
began to talk of removing to Barton On HER measures
depended those of her two friends Mrs Jennings could
not quit Cleveland during the Dashwoods stay and Colonel
Brandon was soon brought by their united request
to consider his own abode there as equally determinate
if not equally indispensable At his and Mrs Jenningss
united request in return Mrs Dashwood was prevailed
on to accept the use of his carriage on her journey back
for the better accommodation of her sick child and the Colonel
at the joint invitation of Mrs Dashwood and Mrs Jennings
whose active goodnature made her friendly and hospitable
for other people as well as herself engaged with pleasure
to redeem it by a visit at the cottage in the course
of a few weeks
The day of separation and departure arrived
and Marianne after taking so particular and lengthened
a leave of Mrs Jennings one so earnestly grateful so full
of respect and kind wishes as seemed due to her own heart
from a secret acknowledgment of past inattention and bidding
Colonel Brandon farewell with a cordiality of a friend
was carefully assisted by him into the carriage of which he
seemed anxious that she should engross at least half
Mrs Dashwood and Elinor then followed and the others
were left by themselves to talk of the travellers
and feel their own dullness till Mrs Jennings was summoned
to her chaise to take comfort in the gossip of her maid
for the loss of her two young companions and Colonel Brandon
immediately afterwards took his solitary way to Delaford
The Dashwoods were two days on the road and Marianne
bore her journey on both without essential fatigue
Every thing that the most zealous affection the most
solicitous care could do to render her comfortable
was the office of each watchful companion and each
found their reward in her bodily ease and her calmness
of spirits To Elinor the observation of the latter
was particularly grateful She who had seen her week
after week so constantly suffering oppressed by anguish
of heart which she had neither courage to speak of
nor fortitude to conceal now saw with a joy which no other
could equally share an apparent composure of mind which
in being the result as she trusted of serious reflection
must eventually lead her to contentment and cheerfulness
As they approached Barton indeed and entered
on scenes of which every field and every tree brought
some peculiar some painful recollection she grew silent
and thoughtful and turning away her face from their notice
sat earnestly gazing through the window But here
Elinor could neither wonder nor blame and when she saw
as she assisted Marianne from the carriage that she
had been crying she saw only an emotion too natural
in itself to raise any thing less tender than pity
and in its unobtrusiveness entitled to praise In the
whole of her subsequent manner she traced the direction
of a mind awakened to reasonable exertion for no sooner
had they entered their common sittingroom than Marianne
turned her eyes around it with a look of resolute firmness
as if determined at once to accustom herself to the sight
of every object with which the remembrance of Willoughby could
be connectedShe said little but every sentence aimed
at cheerfulness and though a sigh sometimes escaped her
it never passed away without the atonement of a smile
After dinner she would try her pianoforte She went to it
but the music on which her eye first rested was an opera
procured for her by Willoughby containing some of their
favourite duets and bearing on its outward leaf her own name
in his handwritingThat would not doShe shook her head
put the music aside and after running over the keys
for a minute complained of feebleness in her fingers
and closed the instrument again declaring however with firmness
as she did so that she should in future practice much
The next morning produced no abatement in these
happy symptoms On the contrary with a mind and body
alike strengthened by rest she looked and spoke with
more genuine spirit anticipating the pleasure of
Margarets return and talking of the dear family party
which would then be restored of their mutual pursuits
and cheerful society as the only happiness worth a wish
When the weather is settled and I have recovered
my strength said she we will take long walks together
every day We will walk to the farm at the edge of the down
and see how the children go on we will walk to Sir Johns
new plantations at Barton Cross and the Abbeyland
and we will often go the old ruins of the Priory
and try to trace its foundations as far as we are told
they once reached I know we shall be happy I know
the summer will pass happily away I mean never to be
later in rising than six and from that time till dinner
I shall divide every moment between music and reading
I have formed my plan and am determined to enter on a course
of serious study Our own library is too well known to me
to be resorted to for any thing beyond mere amusement
But there are many works well worth reading at the Park
and there are others of more modern production which I
know I can borrow of Colonel Brandon By reading only six
hours aday I shall gain in the course of a twelvemonth
a great deal of instruction which I now feel myself to want
Elinor honoured her for a plan which originated
so nobly as this though smiling to see the same eager
fancy which had been leading her to the extreme of languid
indolence and selfish repining now at work in introducing
excess into a scheme of such rational employment and virtuous
selfcontrol Her smile however changed to a sigh when she
remembered that promise to Willoughby was yet unfulfilled
and feared she had that to communicate which might again
unsettle the mind of Marianne and ruin at least for a time
this fair prospect of busy tranquillity Willing therefore
to delay the evil hour she resolved to wait till her
sisters health were more secure before she appointed it
But the resolution was made only to be broken
Marianne had been two or three days at home before
the weather was fine enough for an invalid like herself
to venture out But at last a soft genial morning appeared
such as might tempt the daughters wishes and the
mothers confidence and Marianne leaning on Elinors arm
was authorised to walk as long as she could without fatigue
in the lane before the house
The sisters set out at a pace slow as the feebleness
of Marianne in an exercise hitherto untried since her
illness requiredand they had advanced only so far
beyond the house as to admit a full view of the hill
the important hill behind when pausing with her eyes
turned towards it Marianne calmly said
There exactly therepointing with one hand
on that projecting moundthere I fell and there
I first saw Willoughby
Her voice sunk with the word but presently reviving she added
I am thankful to find that I can look with so little pain
on the spotshall we ever talk on that subject Elinor
hesitatingly it was saidOr will it be wrongI can talk
of it now I hope as I ought to do
Elinor tenderly invited her to be open
As for regret said Marianne I have done with that
as far as HE is concerned I do not mean to talk to you
of what my feelings have been for him but what they
are NOWAt present if I could be satisfied on one point
if I could be allowed to think that he was not ALWAYS
acting a part not ALWAYS deceiving mebut above all
if I could be assured that he never was so VERY wicked
as my fears have sometimes fancied him since the story
of that unfortunate girl
She stopt Elinor joyfully treasured her words
as she answered
If you could be assured of that you think you
should be easy
Yes My peace of mind is doubly involved in it
for not only is it horrible to suspect a person who has
been what HE has been to ME of such designsbut what must
it make me appear to myselfWhat in a situation like mine
but a most shamefully unguarded affection could expose
me to
How then asked her sister would you account
for his behaviour
I would suppose himOh how gladly would I suppose him
only fickle very very fickle
Elinor said no more She was debating within herself
on the eligibility of beginning her story directly
or postponing it till Marianne were in stronger health
and they crept on for a few minutes in silence
I am not wishing him too much good said Marianne
at last with a sigh when I wish his secret reflections
may be no more unpleasant than my own He will suffer
enough in them
Do you compare your conduct with his
No I compare it with what it ought to have been
I compare it with yours
Our situations have borne little resemblance
They have borne more than our conductDo not
my dearest Elinor let your kindness defend what I know
your judgment must censure My illness has made me think
It has given me leisure and calmness for serious recollection
Long before I was enough recovered to talk I was perfectly
able to reflect I considered the past I saw in my
own behaviour since the beginning of our acquaintance
with him last autumn nothing but a series of imprudence
towards myself and want of kindness to others
I saw that my own feelings had prepared my sufferings
and that my want of fortitude under them had almost led
me to the grave My illness I well knew had been
entirely brought on by myself by such negligence of my
own health as I had felt even at the time to be wrong
Had I diedit would have been selfdestruction I
did not know my danger till the danger was removed
but with such feelings as these reflections gave me
I wonder at my recoverywonder that the very eagerness
of my desire to live to have time for atonement to my God
and to you all did not kill me at once Had I died
in what peculiar misery should I have left you my nurse
my friend my sisterYou who had seen all the fretful
selfishness of my latter days who had known all the
murmurings of my heartHow should I have lived in YOUR
remembranceMy mother too How could you have consoled
herI cannot express my own abhorrence of myself
Whenever I looked towards the past I saw some duty neglected
or some failing indulged Every body seemed injured by me
The kindness the unceasing kindness of Mrs Jennings
I had repaid with ungrateful contempt To the Middletons
to the Palmers the Steeles to every common acquaintance even
I had been insolent and unjust with a heart hardened
against their merits and a temper irritated by their
very attentionTo John to Fannyyes even to them
little as they deserve I had given less than their due
But youyou above all above my mother had been wronged
by me I and only I knew your heart and its sorrows
yet to what did it influence menot to any compassion
that could benefit you or myselfYour example was
before me but to what availWas I more considerate
of you and your comfort Did I imitate your forbearance
or lessen your restraints by taking any part in those
offices of general complaisance or particular gratitude
which you had hitherto been left to discharge aloneNo
not less when I knew you to be unhappy than when I
had believed you at ease did I turn away from every
exertion of duty or friendship scarcely allowing sorrow
to exist but with me regretting only THAT heart
which had deserted and wronged me and leaving you
for or I professed an unbounded affection to be miserable
for my sake
Here ceased the rapid flow of her selfreproving spirit
and Elinor impatient to soothe though too honest
to flatter gave her instantly that praise and support
which her frankness and her contrition so well deserved
Marianne pressed her hand and replied
You are very goodThe future must be my proof
I have laid down my plan and if I am capable of adhering
to itmy feelings shall be governed and my temper improved
They shall no longer worry others nor torture myself
I shall now live solely for my family You my mother
and Margaret must henceforth be all the world to me
you will share my affections entirely between you
From you from my home I shall never again have the smallest
incitement to move and if I do mix in other society
it will be only to shew that my spirit is humbled
my heart amended and that I can practise the civilities
the lesser duties of life with gentleness and forbearance
As for Willoughbyto say that I shall soon or that I shall
ever forget him would be idle His remembrance can be overcome
by no change of circumstances or opinions But it shall
be regulated it shall be checked by religion by reason
by constant employment
She pausedand added in a low voice If I could
but know HIS heart everything would become easy
Elinor who had now been for some time reflecting
on the propriety or impropriety of speedily hazarding
her narration without feeling at all nearer decision than
at first heard this and perceiving that as reflection
did nothing resolution must do all soon found herself
leading to the fact
She managed the recital as she hoped with address
prepared her anxious listener with caution related simply
and honestly the chief points on which Willoughby
grounded his apology did justice to his repentance
and softened only his protestations of present regard
Marianne said not a wordShe trembled her eyes
were fixed on the ground and her lips became whiter
than even sickness had left them A thousand inquiries
sprung up from her heart but she dared not urge one
She caught every syllable with panting eagerness her hand
unknowingly to herself closely pressed her sisters and
tears covered her cheeks
Elinor dreading her being tired led her towards home
and till they reached the door of the cottage
easily conjecturing what her curiosity must be
though no question was suffered to speak it talked of
nothing but Willoughby and their conversation together
and was carefully minute in every particular of speech
and look where minuteness could be safely indulged
As soon as they entered the house Marianne with a kiss
of gratitude and these two words just articulate through
her tears Tell mama withdrew from her sister and
walked slowly up stairs Elinor would not attempt
to disturb a solitude so reasonable as what she now sought
and with a mind anxiously prearranging its result
and a resolution of reviving the subject again
should Marianne fail to do it she turned into the parlour
to fulfill her parting injunction
CHAPTER 47
Mrs Dashwood did not hear unmoved the vindication
of her former favourite She rejoiced in his being
cleared from some part of his imputed guiltshe was
sorry for himshe wished him happy But the feelings
of the past could not be recalledNothing could restore
him with a faith unbrokena character unblemished
to Marianne Nothing could do away the knowledge
of what the latter had suffered through his means
nor remove the guilt of his conduct towards Eliza
Nothing could replace him therefore in her former esteem
nor injure the interests of Colonel Brandon
Had Mrs Dashwood like her daughter heard Willoughbys
story from himselfhad she witnessed his distress
and been under the influence of his countenance and his
manner it is probable that her compassion would have
been greater But it was neither in Elinors power
nor in her wish to rouse such feelings in another by her
retailed explanation as had at first been called forth
in herself Reflection had given calmness to her judgment
and sobered her own opinion of Willoughbys deserts
she wished therefore to declare only the simple truth
and lay open such facts as were really due to his character
without any embellishment of tenderness to lead the
fancy astray
In the evening when they were all three together
Marianne began voluntarily to speak of him again
but that it was not without an effort the restless
unquiet thoughtfulness in which she had been for some time
previously sittingher rising colour as she spoke
and her unsteady voice plainly shewed
I wish to assure you both said she that I see
every thingas you can desire me to do
Mrs Dashwood would have interrupted her instantly
with soothing tenderness had not Elinor who really wished
to hear her sisters unbiased opinion by an eager sign
engaged her silence Marianne slowly continued
It is a great relief to mewhat Elinor told
me this morningI have now heard exactly what I
wished to hearFor some moments her voice was lost
but recovering herself she added and with greater
calmness than beforeI am now perfectly satisfied
I wish for no change I never could have been happy
with him after knowing as sooner or later I must
have known all thisI should have had no confidence
no esteem Nothing could have done it away to my feelings
I know itI know it cried her mother
Happy with a man of libertine practicesWith one
who so injured the peace of the dearest of our friends
and the best of menNomy Marianne has not a heart
to be made happy with such a manHer conscience her
sensitive conscience would have felt all that the
conscience of her husband ought to have felt
Marianne sighed and repeated I wish for no change
You consider the matter said Elinor exactly as
a good mind and a sound understanding must consider it
and I dare say you perceive as well as myself not only
in this but in many other circumstances reason enough
to be convinced that your marriage must have involved you
in many certain troubles and disappointments in which
you would have been poorly supported by an affection
on his side much less certain Had you married
you must have been always poor His expensiveness is
acknowledged even by himself and his whole conduct declares
that selfdenial is a word hardly understood by him
His demands and your inexperience together on a small
very small income must have brought on distresses which
would not be the LESS grievous to you from having been
entirely unknown and unthought of before YOUR sense
of honour and honesty would have led you I know
when aware of your situation to attempt all the economy
that would appear to you possible and perhaps as long
as your frugality retrenched only on your own comfort
you might have been suffered to practice it but beyond that
and how little could the utmost of your single management
do to stop the ruin which had begun before your marriage
Beyond THAT had you endeavoured however reasonably
to abridge HIS enjoyments is it not to be feared that instead
of prevailing on feelings so selfish to consent to it
you would have lessened your own influence on his heart
and made him regret the connection which had involved him
in such difficulties
Mariannes lips quivered and she repeated the word
Selfish in a tone that implieddo you really think
him selfish
The whole of his behaviour replied Elinor
from the beginning to the end of the affair has been
grounded on selfishness It was selfishness which first
made him sport with your affections which afterwards
when his own were engaged made him delay the confession
of it and which finally carried him from Barton
His own enjoyment or his own ease was in every particular
his ruling principle
It is very true MY happiness never was his object
At present continued Elinor he regrets what he
has done And why does he regret itBecause he finds
it has not answered towards himself It has not made
him happy His circumstances are now unembarrassedhe
suffers from no evil of that kind and he thinks only
that he has married a woman of a less amiable temper
than yourself But does it follow that had he married you
he would have been happyThe inconveniences would have
been different He would then have suffered under the
pecuniary distresses which because they are removed
he now reckons as nothing He would have had a wife
of whose temper he could make no complaint but he would
have been always necessitousalways poor and probably
would soon have learned to rank the innumerable comforts
of a clear estate and good income as of far more importance
even to domestic happiness than the mere temper of a wife
I have not a doubt of it said Marianne and I
have nothing to regretnothing but my own folly
Rather say your mothers imprudence my child
said Mrs Dashwood SHE must be answerable
Marianne would not let her proceedand Elinor
satisfied that each felt their own error wished to avoid
any survey of the past that might weaken her sisters
spirits she therefore pursuing the first subject
immediately continued
One observation may I think be fairly drawn from
the whole of the storythat all Willoughbys difficulties
have arisen from the first offence against virtue in his
behaviour to Eliza Williams That crime has been the origin
of every lesser one and of all his present discontents
Marianne assented most feelingly to the remark
and her mother was led by it to an enumeration of Colonel
Brandons injuries and merits warm as friendship
and design could unitedly dictate Her daughter did
not look however as if much of it were heard by her
Elinor according to her expectation saw on the two
or three following days that Marianne did not continue
to gain strength as she had done but while her resolution
was unsubdued and she still tried to appear cheerful
and easy her sister could safely trust to the effect
of time upon her health
Margaret returned and the family were again all
restored to each other again quietly settled at the cottage
and if not pursuing their usual studies with quite
so much vigour as when they first came to Barton
at least planning a vigorous prosecution of them in future
Elinor grew impatient for some tidings of Edward
She had heard nothing of him since her leaving London
nothing new of his plans nothing certain even of his
present abode Some letters had passed between her
and her brother in consequence of Mariannes illness
and in the first of Johns there had been this sentence
We know nothing of our unfortunate Edward and can make no
enquiries on so prohibited a subject but conclude him
to be still at Oxford which was all the intelligence
of Edward afforded her by the correspondence for his name
was not even mentioned in any of the succeeding letters
She was not doomed however to be long in ignorance of
his measures
Their manservant had been sent one morning to Exeter
on business and when as he waited at table he had
satisfied the inquiries of his mistress as to the event
of his errand this was his voluntary communication
I suppose you know maam that Mr Ferrars is married
Marianne gave a violent start fixed her eyes
upon Elinor saw her turning pale and fell back in her
chair in hysterics Mrs Dashwood whose eyes as she
answered the servants inquiry had intuitively taken
the same direction was shocked to perceive by Elinors
countenance how much she really suffered and a moment
afterwards alike distressed by Mariannes situation
knew not on which child to bestow her principal attention
The servant who saw only that Miss Marianne was
taken ill had sense enough to call one of the maids
who with Mrs Dashwoods assistance supported her into
the other room By that time Marianne was rather better
and her mother leaving her to the care of Margaret
and the maid returned to Elinor who though still
much disordered had so far recovered the use of her reason
and voice as to be just beginning an inquiry of Thomas
as to the source of his intelligence Mrs Dashwood
immediately took all that trouble on herself and Elinor
had the benefit of the information without the exertion
of seeking it
Who told you that Mr Ferrars was married Thomas
I see Mr Ferrars myself maam this morning
in Exeter and his lady too Miss Steele as was They was
stopping in a chaise at the door of the New London Inn
as I went there with a message from Sally at the Park
to her brother who is one of the postboys I happened
to look up as I went by the chaise and so I see directly
it was the youngest Miss Steele so I took off my hat
and she knew me and called to me and inquired after you
maam and the young ladies especially Miss Marianne
and bid me I should give her compliments and Mr Ferrarss
their best compliments and service and how sorry they
was they had not time to come on and see you but they was
in a great hurry to go forwards for they was going further
down for a little while but howsever when they come back
theyd make sure to come and see you
But did she tell you she was married Thomas
Yes maam She smiled and said how she
had changed her name since she was in these parts
She was always a very affable and freespoken young lady
and very civil behaved So I made free to wish her joy
Was Mr Ferrars in the carriage with her
Yes maam I just see him leaning back in it
but he did not look uphe never was a gentleman much
for talking
Elinors heart could easily account for his not
putting himself forward and Mrs Dashwood probably
found the same explanation
Was there no one else in the carriage
No maam only they two
Do you know where they came from
They come straight from town as Miss Lucy
Mrs Ferrars told me
And are they going farther westward
Yes maambut not to bide long They will soon
be back again and then theyd be sure and call here
Mrs Dashwood now looked at her daughter
but Elinor knew better than to expect them
She recognised the whole of Lucy in the message and was
very confident that Edward would never come near them
She observed in a low voice to her mother that they
were probably going down to Mr Pratts near Plymouth
Thomass intelligence seemed over Elinor looked
as if she wished to hear more
Did you see them off before you came away
No maamthe horses were just coming out but I
could not bide any longer I was afraid of being late
Did Mrs Ferrars look well
Yes maam she said how she was very well
and to my mind she was always a very handsome young
ladyand she seemed vastly contented
Mrs Dashwood could think of no other question
and Thomas and the tablecloth now alike needless
were soon afterwards dismissed Marianne had already sent
to say that she should eat nothing more Mrs Dashwoods
and Elinors appetites were equally lost and Margaret
might think herself very well off that with so much
uneasiness as both her sisters had lately experienced
so much reason as they had often had to be careless
of their meals she had never been obliged to go without
her dinner before
When the dessert and the wine were arranged
and Mrs Dashwood and Elinor were left by themselves
they remained long together in a similarity of thoughtfulness
and silence Mrs Dashwood feared to hazard any remark
and ventured not to offer consolation She now found
that she had erred in relying on Elinors representation
of herself and justly concluded that every thing
had been expressly softened at the time to spare her
from an increase of unhappiness suffering as she then
had suffered for Marianne She found that she had been
misled by the careful the considerate attention of
her daughter to think the attachment which once she
had so well understood much slighter in reality than
she had been wont to believe or than it was now proved
to be She feared that under this persuasion she had
been unjust inattentive nay almost unkind to her Elinor
that Mariannes affliction because more acknowledged
more immediately before her had too much engrossed
her tenderness and led her away to forget that in Elinor
she might have a daughter suffering almost as much
certainly with less selfprovocation and greater fortitude
CHAPTER 48
Elinor now found the difference between the expectation
of an unpleasant event however certain the mind may be told
to consider it and certainty itself She now found that
in spite of herself she had always admitted a hope
while Edward remained single that something would occur
to prevent his marrying Lucy that some resolution of
his own some mediation of friends or some more eligible
opportunity of establishment for the lady would arise
to assist the happiness of all But he was now married
and she condemned her heart for the lurking flattery
which so much heightened the pain of the intelligence
That he should be married soon before as she imagined
he could be in orders and consequently before he could
be in possession of the living surprised her a little
at first But she soon saw how likely it was that Lucy
in her selfprovident care in her haste to secure him
should overlook every thing but the risk of delay
They were married married in town and now hastening
down to her uncles What had Edward felt on being within
four miles from Barton on seeing her mothers servant
on hearing Lucys message
They would soon she supposed be settled at
DelafordDelafordthat place in which so much
conspired to give her an interest which she wished
to be acquainted with and yet desired to avoid
She saw them in an instant in their parsonagehouse saw
in Lucy the active contriving manager uniting at once
a desire of smart appearance with the utmost frugality
and ashamed to be suspected of half her economical practices
pursuing her own interest in every thought courting the
favour of Colonel Brandon of Mrs Jennings and of every
wealthy friend In Edwardshe knew not what she saw
nor what she wished to seehappy or unhappynothing
pleased her she turned away her head from every sketch of him
Elinor flattered herself that some one of their
connections in London would write to them to announce
the event and give farther particularsbut day after
day passed off and brought no letter no tidings
Though uncertain that any one were to blame she found
fault with every absent friend They were all thoughtless
or indolent
When do you write to Colonel Brandon maam
was an inquiry which sprung from the impatience
of her mind to have something going on
I wrote to him my love last week and rather
expect to see than to hear from him again I earnestly
pressed his coming to us and should not be surprised
to see him walk in today or tomorrow or any day
This was gaining something something to look forward to
Colonel Brandon must have some information to give
Scarcely had she so determined it when the figure
of a man on horseback drew her eyes to the window
He stopt at their gate It was a gentleman it
was Colonel Brandon himself Now she could hear more
and she trembled in expectation of it Butit was
NOT Colonel Brandonneither his airnor his height
Were it possible she must say it must be Edward
She looked again He had just dismountedshe could not be
mistakenit WAS Edward She moved away and sat down
He comes from Mr Pratts purposely to see us I WILL be
calm I WILL be mistress of myself
In a moment she perceived that the others were likewise
aware of the mistake She saw her mother and Marianne
change colour saw them look at herself and whisper
a few sentences to each other She would have given
the world to be able to speakand to make them understand
that she hoped no coolness no slight would appear
in their behaviour to himbut she had no utterance
and was obliged to leave all to their own discretion
Not a syllable passed aloud They all waited
in silence for the appearance of their visitor
His footsteps were heard along the gravel path in a moment
he was in the passage and in another he was before them
His countenance as he entered the room was not
too happy even for Elinor His complexion was white
with agitation and he looked as if fearful of his
reception and conscious that he merited no kind one
Mrs Dashwood however conforming as she trusted
to the wishes of that daughter by whom she then meant
in the warmth of her heart to be guided in every thing
met with a look of forced complacency gave him her hand
and wished him joy
He coloured and stammered out an unintelligible reply
Elinors lips had moved with her mothers and when the
moment of action was over she wished that she had shaken
hands with him too But it was then too late and with a
countenance meaning to be open she sat down again
and talked of the weather
Marianne had retreated as much as possible
out of sight to conceal her distress and Margaret
understanding some part but not the whole of the case
thought it incumbent on her to be dignified and therefore
took a seat as far from him as she could and maintained
a strict silence
When Elinor had ceased to rejoice in the dryness
of the season a very awful pause took place It was put
an end to by Mrs Dashwood who felt obliged to hope that he
had left Mrs Ferrars very well In a hurried manner
he replied in the affirmative
Another pause
Elinor resolving to exert herself though fearing
the sound of her own voice now said
Is Mrs Ferrars at Longstaple
At Longstaple he replied with an air of surprise
No my mother is in town
I meant said Elinor taking up some work from
the table to inquire for Mrs EDWARD Ferrars
She dared not look upbut her mother and Marianne both
turned their eyes on him He coloured seemed perplexed
looked doubtingly and after some hesitation said
Perhaps you meanmy brotheryou mean MrsMrs
ROBERT Ferrars
Mrs Robert Ferrarswas repeated by Marianne and her
mother in an accent of the utmost amazementand though
Elinor could not speak even HER eyes were fixed on him
with the same impatient wonder He rose from his seat
and walked to the window apparently from not knowing
what to do took up a pair of scissors that lay there
and while spoiling both them and their sheath by cutting
the latter to pieces as he spoke said in a hurried voice
Perhaps you do not knowyou may not have heard
that my brother is lately married toto the youngestto
Miss Lucy Steele
His words were echoed with unspeakable astonishment
by all but Elinor who sat with her head leaning over
her work in a state of such agitation as made her hardly
know where she was
Yes said he they were married last week
and are now at Dawlish
Elinor could sit it no longer She almost ran
out of the room and as soon as the door was closed
burst into tears of joy which at first she thought would
never cease Edward who had till then looked any where
rather than at her saw her hurry away and perhaps saw
or even heard her emotion for immediately afterwards
he fell into a reverie which no remarks no inquiries
no affectionate address of Mrs Dashwood could penetrate
and at last without saying a word quitted the room
and walked out towards the villageleaving the others
in the greatest astonishment and perplexity on a change
in his situation so wonderful and so suddena perplexity
which they had no means of lessening but by their
own conjectures
CHAPTER 49
Unaccountable however as the circumstances of his
release might appear to the whole family it was certain
that Edward was free and to what purpose that freedom would
be employed was easily predetermined by allfor after
experiencing the blessings of ONE imprudent engagement
contracted without his mothers consent as he had already
done for more than four years nothing less could be expected
of him in the failure of THAT than the immediate contraction
of another
His errand at Barton in fact was a simple one
It was only to ask Elinor to marry himand considering
that he was not altogether inexperienced in such a question
it might be strange that he should feel so uncomfortable
in the present case as he really did so much in need of
encouragement and fresh air
How soon he had walked himself into the proper
resolution however how soon an opportunity of exercising
it occurred in what manner he expressed himself
and how he was received need not be particularly told
This only need be saidthat when they all sat down to
table at four oclock about three hours after his arrival
he had secured his lady engaged her mothers consent
and was not only in the rapturous profession of
the lover but in the reality of reason and truth
one of the happiest of men His situation indeed was
more than commonly joyful He had more than the ordinary
triumph of accepted love to swell his heart and raise
his spirits He was released without any reproach
to himself from an entanglement which had long formed
his misery from a woman whom he had long ceased to love
and elevated at once to that security with another
which he must have thought of almost with despair
as soon as he had learnt to consider it with desire
He was brought not from doubt or suspense but from
misery to happinessand the change was openly spoken
in such a genuine flowing grateful cheerfulness
as his friends had never witnessed in him before
His heart was now open to Elinor all its weaknesses
all its errors confessed and his first boyish attachment
to Lucy treated with all the philosophic dignity of twentyfour
It was a foolish idle inclination on my side
said he the consequence of ignorance of the world
and want of employment Had my brother given me
some active profession when I was removed at eighteen
from the care of Mr Pratt I thinknay I am sure
it would never have happened for though I left Longstaple
with what I thought at the time a most unconquerable
preference for his niece yet had I then had any pursuit
any object to engage my time and keep me at a distance
from her for a few months I should very soon have
outgrown the fancied attachment especially by mixing
more with the world as in such case I must have done
But instead of having any thing to do instead of having any
profession chosen for me or being allowed to chuse any myself
I returned home to be completely idle and for the first
twelvemonth afterwards I had not even the nominal employment
which belonging to the university would have given me
for I was not entered at Oxford till I was nineteen
I had therefore nothing in the world to do but to fancy
myself in love and as my mother did not make my home
in every respect comfortable as I had no friend
no companion in my brother and disliked new acquaintance
it was not unnatural for me to be very often at Longstaple
where I always felt myself at home and was always sure
of a welcome and accordingly I spent the greatest part
of my time there from eighteen to nineteen Lucy appeared
everything that was amiable and obliging She was pretty
tooat least I thought so THEN and I had seen so little
of other women that I could make no comparisons and see
no defects Considering everything therefore I hope
foolish as our engagement was foolish as it has since
in every way been proved it was not at the time an unnatural
or an inexcusable piece of folly
The change which a few hours had wrought in the minds
and the happiness of the Dashwoods was suchso greatas
promised them all the satisfaction of a sleepless night
Mrs Dashwood too happy to be comfortable knew not how
to love Edward nor praise Elinor enough how to be enough
thankful for his release without wounding his delicacy
nor how at once to give them leisure for unrestrained
conversation together and yet enjoy as she wished
the sight and society of both
Marianne could speak HER happiness only by tears
Comparisons would occurregrets would ariseand her joy
though sincere as her love for her sister was of a kind to
give her neither spirits nor language
But Elinorhow are HER feelings to be describedFrom
the moment of learning that Lucy was married to another
that Edward was free to the moment of his justifying
the hopes which had so instantly followed she was every
thing by turns but tranquil But when the second moment
had passed when she found every doubt every solicitude
removed compared her situation with what so lately it
had beensaw him honourably released from his former
engagement saw him instantly profiting by the release
to address herself and declare an affection as tender
as constant as she had ever supposed it to beshe
was oppressed she was overcome by her own felicity
and happily disposed as is the human mind to be easily
familiarized with any change for the better it required
several hours to give sedateness to her spirits or any
degree of tranquillity to her heart
Edward was now fixed at the cottage at least for
a weekfor whatever other claims might be made on him
it was impossible that less than a week should be given
up to the enjoyment of Elinors company or suffice
to say half that was to be said of the past the present
and the futurefor though a very few hours spent in
the hard labor of incessant talking will despatch more
subjects than can really be in common between any two
rational creatures yet with lovers it is different
Between THEM no subject is finished no communication
is even made till it has been made at least twenty
times over
Lucys marriage the unceasing and reasonable wonder
among them all formed of course one of the earliest
discussions of the loversand Elinors particular knowledge
of each party made it appear to her in every view as one
of the most extraordinary and unaccountable circumstances
she had ever heard How they could be thrown together
and by what attraction Robert could be drawn on to marry
a girl of whose beauty she had herself heard him speak
without any admirationa girl too already engaged
to his brother and on whose account that brother had been
thrown off by his familyit was beyond her comprehension
to make out To her own heart it was a delightful affair
to her imagination it was even a ridiculous one but
to her reason her judgment it was completely a puzzle
Edward could only attempt an explanation by supposing
that perhaps at first accidentally meeting the vanity
of the one had been so worked on by the flattery
of the other as to lead by degrees to all the rest
Elinor remembered what Robert had told her in Harley Street
of his opinion of what his own mediation in his brothers
affairs might have done if applied to in time
She repeated it to Edward
THAT was exactly like Robertwas his immediate
observationAnd THAT he presently added might
perhaps be in HIS head when the acquaintance between
them first began And Lucy perhaps at first might
think only of procuring his good offices in my favour
Other designs might afterward arise
How long it had been carrying on between them
however he was equally at a loss with herself to make out
for at Oxford where he had remained for choice ever since
his quitting London he had had no means of hearing of her
but from herself and her letters to the very last were
neither less frequent nor less affectionate than usual
Not the smallest suspicion therefore had ever occurred
to prepare him for what followedand when at last it
burst on him in a letter from Lucy herself he had been
for some time he believed half stupified between
the wonder the horror and the joy of such a deliverance
He put the letter into Elinors hands
DEAR SIR
Being very sure I have long lost your affections
I have thought myself at liberty to bestow my own
on another and have no doubt of being as happy with
him as I once used to think I might be with you
but I scorn to accept a hand while the heart was
anothers Sincerely wish you happy in your choice
and it shall not be my fault if we are not always
good friends as our near relationship now makes
proper I can safely say I owe you no illwill
and am sure you will be too generous to do us any
ill offices Your brother has gained my affections
entirely and as we could not live without one
another we are just returned from the altar and
are now on our way to Dawlish for a few weeks which
place your dear brother has great curiosity to see
but thought I would first trouble you with these
few lines and shall always remain
Your sincere wellwisher friend and sister
LUCY FERRARS
I have burnt all your letters and will return
your picture the first opportunity Please to destroy
my scrawlsbut the ring with my hair you are very
welcome to keep
Elinor read and returned it without any comment
I will not ask your opinion of it as a composition
said EdwardFor worlds would not I have had a letter
of hers seen by YOU in former daysIn a sister it
is bad enough but in a wifehow I have blushed over
the pages of her writingand I believe I may say that
since the first half year of our foolishbusinessthis
is the only letter I ever received from her of which
the substance made me any amends for the defect of the style
However it may have come about said Elinor
after a pausethey are certainly married And your mother
has brought on herself a most appropriate punishment
The independence she settled on Robert through resentment
against you has put it in his power to make his own choice
and she has actually been bribing one son with a thousand
ayear to do the very deed which she disinherited the
other for intending to do She will hardly be less hurt
I suppose by Roberts marrying Lucy than she would have
been by your marrying her
She will be more hurt by it for Robert always
was her favouriteShe will be more hurt by it
and on the same principle will forgive him much sooner
In what state the affair stood at present between them
Edward knew not for no communication with any of his family
had yet been attempted by him He had quitted Oxford
within four and twenty hours after Lucys letter arrived
and with only one object before him the nearest road
to Barton had had no leisure to form any scheme of conduct
with which that road did not hold the most intimate connection
He could do nothing till he were assured of his fate with
Miss Dashwood and by his rapidity in seeking THAT fate
it is to be supposed in spite of the jealousy with
which he had once thought of Colonel Brandon in spite
of the modesty with which he rated his own deserts
and the politeness with which he talked of his doubts
he did not upon the whole expect a very cruel reception
It was his business however to say that he DID and he
said it very prettily What he might say on the subject
a twelvemonth after must be referred to the imagination
of husbands and wives
That Lucy had certainly meant to deceive to go off
with a flourish of malice against him in her message
by Thomas was perfectly clear to Elinor and Edward himself
now thoroughly enlightened on her character had no
scruple in believing her capable of the utmost meanness
of wanton illnature Though his eyes had been long opened
even before his acquaintance with Elinor began to her
ignorance and a want of liberality in some of her opinions
they had been equally imputed by him to her want
of education and till her last letter reached him
he had always believed her to be a welldisposed
goodhearted girl and thoroughly attached to himself
Nothing but such a persuasion could have prevented
his putting an end to an engagement which long before
the discovery of it laid him open to his mothers anger
had been a continual source of disquiet and regret to him
I thought it my duty said he independent of my feelings
to give her the option of continuing the engagement or not
when I was renounced by my mother and stood to all
appearance without a friend in the world to assist me
In such a situation as that where there seemed nothing
to tempt the avarice or the vanity of any living creature
how could I suppose when she so earnestly so warmly insisted
on sharing my fate whatever it might be that any thing
but the most disinterested affection was her inducement
And even now I cannot comprehend on what motive she acted
or what fancied advantage it could be to her to be
fettered to a man for whom she had not the smallest regard
and who had only two thousand pounds in the world
She could not foresee that Colonel Brandon would give me a
living
No but she might suppose that something would occur
in your favour that your own family might in time relent
And at any rate she lost nothing by continuing the engagement
for she has proved that it fettered neither her inclination
nor her actions The connection was certainly a
respectable one and probably gained her consideration among
her friends and if nothing more advantageous occurred
it would be better for her to marry YOU than be single
Edward was of course immediately convinced that
nothing could have been more natural than Lucys conduct
nor more selfevident than the motive of it
Elinor scolded him harshly as ladies always scold
the imprudence which compliments themselves for having
spent so much time with them at Norland when he must
have felt his own inconstancy
Your behaviour was certainly very wrong said she
becauseto say nothing of my own conviction our relations
were all led away by it to fancy and expect WHAT as you
were THEN situated could never be
He could only plead an ignorance of his own heart
and a mistaken confidence in the force of his engagement
I was simple enough to think that because my FAITH
was plighted to another there could be no danger in my being
with you and that the consciousness of my engagement was
to keep my heart as safe and sacred as my honour I felt
that I admired you but I told myself it was only friendship
and till I began to make comparisons between yourself
and Lucy I did not know how far I was got After that
I suppose I WAS wrong in remaining so much in Sussex
and the arguments with which I reconciled myself to the
expediency of it were no better than theseThe danger
is my own I am doing no injury to anybody but myself
Elinor smiled and shook her head
Edward heard with pleasure of Colonel Brandons
being expected at the Cottage as he really wished
not only to be better acquainted with him but to have an
opportunity of convincing him that he no longer resented
his giving him the living of DelafordWhich at present
said he after thanks so ungraciously delivered as mine
were on the occasion he must think I have never forgiven
him for offering
NOW he felt astonished himself that he had never yet
been to the place But so little interest had be taken
in the matter that he owed all his knowledge of the house
garden and glebe extent of the parish condition of
the land and rate of the tithes to Elinor herself
who had heard so much of it from Colonel Brandon
and heard it with so much attention as to be entirely
mistress of the subject
One question after this only remained undecided
between them one difficulty only was to be overcome
They were brought together by mutual affection
with the warmest approbation of their real friends
their intimate knowledge of each other seemed to make
their happiness certainand they only wanted something
to live upon Edward had two thousand pounds and Elinor
one which with Delaford living was all that they could
call their own for it was impossible that Mrs Dashwood
should advance anything and they were neither of them
quite enough in love to think that three hundred and fifty
pounds ayear would supply them with the comforts of life
Edward was not entirely without hopes of some
favourable change in his mother towards him and on THAT
he rested for the residue of their income But Elinor
had no such dependence for since Edward would still
be unable to marry Miss Morton and his chusing herself
had been spoken of in Mrs Ferrarss flattering language
as only a lesser evil than his chusing Lucy Steele
she feared that Roberts offence would serve no other
purpose than to enrich Fanny
About four days after Edwards arrival Colonel
Brandon appeared to complete Mrs Dashwoods satisfaction
and to give her the dignity of having for the first time
since her living at Barton more company with her than
her house would hold Edward was allowed to retain the
privilege of first comer and Colonel Brandon therefore
walked every night to his old quarters at the Park
from whence he usually returned in the morning early enough
to interrupt the lovers first teteatete before breakfast
A three weeks residence at Delaford where
in his evening hours at least he had little to do
but to calculate the disproportion between thirtysix
and seventeen brought him to Barton in a temper of mind
which needed all the improvement in Mariannes looks
all the kindness of her welcome and all the encouragement
of her mothers language to make it cheerful
Among such friends however and such flattery he did revive
No rumour of Lucys marriage had yet reached himhe knew
nothing of what had passed and the first hours of his
visit were consequently spent in hearing and in wondering
Every thing was explained to him by Mrs Dashwood
and he found fresh reason to rejoice in what he had done
for Mr Ferrars since eventually it promoted the interest
of Elinor
It would be needless to say that the gentlemen advanced
in the good opinion of each other as they advanced in each
others acquaintance for it could not be otherwise
Their resemblance in good principles and good sense
in disposition and manner of thinking would probably
have been sufficient to unite them in friendship
without any other attraction but their being in love
with two sisters and two sisters fond of each other
made that mutual regard inevitable and immediate
which might otherwise have waited the effect of time
and judgment
The letters from town which a few days before would
have made every nerve in Elinors body thrill with transport
now arrived to be read with less emotion that mirth
Mrs Jennings wrote to tell the wonderful tale to vent her
honest indignation against the jilting girl and pour forth
her compassion towards poor Mr Edward who she was sure
had quite doted upon the worthless hussy and was now
by all accounts almost brokenhearted at Oxford
I do think she continued nothing was ever carried
on so sly for it was but two days before Lucy called
and sat a couple of hours with me Not a soul suspected
anything of the matter not even Nancy who poor soul
came crying to me the day after in a great fright
for fear of Mrs Ferrars as well as not knowing how to
get to Plymouth for Lucy it seems borrowed all her
money before she went off to be married on purpose
we suppose to make a show with and poor Nancy had not
seven shillings in the worldso I was very glad to give
her five guineas to take her down to Exeter where she
thinks of staying three or four weeks with Mrs Burgess
in hopes as I tell her to fall in with the Doctor again
And I must say that Lucys crossness not to take them
along with them in the chaise is worse than all
Poor Mr Edward I cannot get him out of my head but you
must send for him to Barton and Miss Marianne must try to
comfort him
Mr Dashwoods strains were more solemn
Mrs Ferrars was the most unfortunate of womenpoor
Fanny had suffered agonies of sensibilityand he
considered the existence of each under such a blow
with grateful wonder Roberts offence was unpardonable
but Lucys was infinitely worse Neither of them were
ever again to be mentioned to Mrs Ferrars and even
if she might hereafter be induced to forgive her son
his wife should never be acknowledged as her daughter
nor be permitted to appear in her presence The secrecy
with which everything had been carried on between them
was rationally treated as enormously heightening
the crime because had any suspicion of it occurred
to the others proper measures would have been taken
to prevent the marriage and he called on Elinor to join
with him in regretting that Lucys engagement with Edward
had not rather been fulfilled than that she should thus
be the means of spreading misery farther in the family
He thus continued
Mrs Ferrars has never yet mentioned Edwards name
which does not surprise us but to our great astonishment
not a line has been received from him on the occasion
Perhaps however he is kept silent by his fear of offending
and I shall therefore give him a hint by a line
to Oxford that his sister and I both think a letter
of proper submission from him addressed perhaps to Fanny
and by her shewn to her mother might not be taken amiss
for we all know the tenderness of Mrs Ferrarss heart
and that she wishes for nothing so much as to be on good terms
with her children
This paragraph was of some importance to the
prospects and conduct of Edward It determined him
to attempt a reconciliation though not exactly
in the manner pointed out by their brother and sister
A letter of proper submission repeated he
would they have me beg my mothers pardon for Roberts
ingratitude to HER and breach of honour to MEI can
make no submissionI am grown neither humble nor
penitent by what has passedI am grown very happy
but that would not interestI know of no submission
that IS proper for me to make
You may certainly ask to be forgiven said Elinor
because you have offendedand I should think you
might NOW venture so far as to profess some concern
for having ever formed the engagement which drew on you
your mothers anger
He agreed that he might
And when she has forgiven you perhaps a little humility
may be convenient while acknowledging a second engagement
almost as imprudent in HER eyes as the first
He had nothing to urge against it but still
resisted the idea of a letter of proper submission
and therefore to make it easier to him as he declared
a much greater willingness to make mean concessions
by word of mouth than on paper it was resolved that
instead of writing to Fanny he should go to London
and personally intreat her good offices in his favour
And if they really DO interest themselves said Marianne
in her new character of candour in bringing about
a reconciliation I shall think that even John and Fanny
are not entirely without merit
After a visit on Colonel Brandons side of only three
or four days the two gentlemen quitted Barton together
They were to go immediately to Delaford that Edward
might have some personal knowledge of his future home
and assist his patron and friend in deciding on what
improvements were needed to it and from thence
after staying there a couple of nights he was to proceed
on his journey to town
CHAPTER 50
After a proper resistance on the part of Mrs Ferrars
just so violent and so steady as to preserve her from that
reproach which she always seemed fearful of incurring
the reproach of being too amiable Edward was admitted
to her presence and pronounced to be again her son
Her family had of late been exceedingly fluctuating
For many years of her life she had had two sons
but the crime and annihilation of Edward a few weeks ago
had robbed her of one the similar annihilation of Robert
had left her for a fortnight without any and now
by the resuscitation of Edward she had one again
In spite of his being allowed once more to live
however he did not feel the continuance of his existence
secure till he had revealed his present engagement
for the publication of that circumstance he feared
might give a sudden turn to his constitution and carry
him off as rapidly as before With apprehensive caution
therefore it was revealed and he was listened to with
unexpected calmness Mrs Ferrars at first reasonably
endeavoured to dissuade him from marrying Miss Dashwood
by every argument in her powertold him that in Miss Morton
he would have a woman of higher rank and larger fortune
and enforced the assertion by observing that Miss Morton
was the daughter of a nobleman with thirty thousand pounds
while Miss Dashwood was only the daughter of a private
gentleman with no more than THREE but when she found that
though perfectly admitting the truth of her representation
he was by no means inclined to be guided by it
she judged it wisest from the experience of the past
to submitand therefore after such an ungracious delay
as she owed to her own dignity and as served to prevent
every suspicion of goodwill she issued her decree
of consent to the marriage of Edward and Elinor
What she would engage to do towards augmenting
their income was next to be considered and here it
plainly appeared that though Edward was now her only son
he was by no means her eldest for while Robert was
inevitably endowed with a thousand pounds ayear
not the smallest objection was made against Edwards taking
orders for the sake of two hundred and fifty at the utmost
nor was anything promised either for the present or in future
beyond the ten thousand pounds which had been given with Fanny
It was as much however as was desired
and more than was expected by Edward and Elinor
and Mrs Ferrars herself by her shuffling excuses
seemed the only person surprised at her not giving more
With an income quite sufficient to their wants
thus secured to them they had nothing to wait for
after Edward was in possession of the living but the
readiness of the house to which Colonel Brandon
with an eager desire for the accommodation of Elinor
was making considerable improvements and after waiting
some time for their completion after experiencing
as usual a thousand disappointments and delays
from the unaccountable dilatoriness of the workmen Elinor
as usual broke through the first positive resolution
of not marrying till every thing was ready and the
ceremony took place in Barton church early in the autumn
The first month after their marriage was spent
with their friend at the Mansionhouse from whence
they could superintend the progress of the Parsonage
and direct every thing as they liked on the spot
could chuse papers project shrubberies and invent a sweep
Mrs Jenningss prophecies though rather jumbled together
were chiefly fulfilled for she was able to visit Edward
and his wife in their Parsonage by Michaelmas and she
found in Elinor and her husband as she really believed
one of the happiest couples in the world They had
in fact nothing to wish for but the marriage of Colonel
Brandon and Marianne and rather better pasturage for
their cows
They were visited on their first settling by almost
all their relations and friends Mrs Ferrars came
to inspect the happiness which she was almost ashamed
of having authorised and even the Dashwoods were at
the expense of a journey from Sussex to do them honour
I will not say that I am disappointed my dear sister
said John as they were walking together one morning before
the gates of Delaford House THAT would be saying too much
for certainly you have been one of the most fortunate young
women in the world as it is But I confess it would
give me great pleasure to call Colonel Brandon brother
His property here his place his house every thing is in
such respectable and excellent conditionand his woodsI
have not seen such timber any where in Dorsetshire as there
is now standing in Delaford HangerAnd though perhaps
Marianne may not seem exactly the person to attract him
yet I think it would altogether be advisable for you to
have them now frequently staying with you for as Colonel
Brandon seems a great deal at home nobody can tell what
may happenfor when people are much thrown together
and see little of anybody elseand it will always be
in your power to set her off to advantage and so forth
in short you may as well give her a chanceYou understand
me
But though Mrs Ferrars DID come to see them and always
treated them with the makebelieve of decent affection
they were never insulted by her real favour and preference
THAT was due to the folly of Robert and the cunning
of his wife and it was earned by them before many months
had passed away The selfish sagacity of the latter
which had at first drawn Robert into the scrape
was the principal instrument of his deliverance from it
for her respectful humility assiduous attentions
and endless flatteries as soon as the smallest opening
was given for their exercise reconciled Mrs Ferrars
to his choice and reestablished him completely in
her favour
The whole of Lucys behaviour in the affair
and the prosperity which crowned it therefore may be held
forth as a most encouraging instance of what an earnest
an unceasing attention to selfinterest however its progress
may be apparently obstructed will do in securing every
advantage of fortune with no other sacrifice than that of time
and conscience When Robert first sought her acquaintance
and privately visited her in Bartletts Buildings
it was only with the view imputed to him by his brother
He merely meant to persuade her to give up the engagement
and as there could be nothing to overcome but the affection
of both he naturally expected that one or two interviews
would settle the matter In that point however
and that only he erredfor though Lucy soon gave him
hopes that his eloquence would convince her in TIME
another visit another conversation was always wanted
to produce this conviction Some doubts always lingered
in her mind when they parted which could only be
removed by another half hours discourse with himself
His attendance was by this means secured and the rest
followed in course Instead of talking of Edward
they came gradually to talk only of Roberta subject
on which he had always more to say than on any other
and in which she soon betrayed an interest even equal
to his own and in short it became speedily evident
to both that he had entirely supplanted his brother
He was proud of his conquest proud of tricking Edward
and very proud of marrying privately without his
mothers consent What immediately followed is known
They passed some months in great happiness at Dawlish
for she had many relations and old acquaintances to
cutand he drew several plans for magnificent cottages
and from thence returning to town procured the forgiveness
of Mrs Ferrars by the simple expedient of asking it
which at Lucys instigation was adopted The forgiveness
at first indeed as was reasonable comprehended only Robert
and Lucy who had owed his mother no duty and therefore
could have transgressed none still remained some weeks
longer unpardoned But perseverance in humility of conduct
and messages in selfcondemnation for Roberts offence
and gratitude for the unkindness she was treated with
procured her in time the haughty notice which overcame
her by its graciousness and led soon afterwards by rapid
degrees to the highest state of affection and influence
Lucy became as necessary to Mrs Ferrars as either Robert
or Fanny and while Edward was never cordially forgiven
for having once intended to marry her and Elinor
though superior to her in fortune and birth was spoken
of as an intruder SHE was in every thing considered
and always openly acknowledged to be a favourite child
They settled in town received very liberal assistance
from Mrs Ferrars were on the best terms imaginable
with the Dashwoods and setting aside the jealousies
and illwill continually subsisting between Fanny and Lucy
in which their husbands of course took a part as well
as the frequent domestic disagreements between Robert and
Lucy themselves nothing could exceed the harmony in which
they all lived together
What Edward had done to forfeit the right of eldest
son might have puzzled many people to find out and what
Robert had done to succeed to it might have puzzled them
still more It was an arrangement however justified in
its effects if not in its cause for nothing ever
appeared in Roberts style of living or of talking to give
a suspicion of his regretting the extent of his income
as either leaving his brother too little or bringing
himself too muchand if Edward might be judged from
the ready discharge of his duties in every particular
from an increasing attachment to his wife and his home
and from the regular cheerfulness of his spirits
he might be supposed no less contented with his lot
no less free from every wish of an exchange
Elinors marriage divided her as little from her
family as could well be contrived without rendering
the cottage at Barton entirely useless for her mother
and sisters spent much more than half their time with her
Mrs Dashwood was acting on motives of policy as well
as pleasure in the frequency of her visits at Delaford
for her wish of bringing Marianne and Colonel Brandon together
was hardly less earnest though rather more liberal than
what John had expressed It was now her darling object
Precious as was the company of her daughter to her
she desired nothing so much as to give up its constant
enjoyment to her valued friend and to see Marianne settled at
the mansionhouse was equally the wish of Edward and Elinor
They each felt his sorrows and their own obligations
and Marianne by general consent was to be the reward
of all
With such a confederacy against herwith a knowledge
so intimate of his goodnesswith a conviction of his fond
attachment to herself which at last though long after it
was observable to everybody elseburst on herwhat could she
do
Marianne Dashwood was born to an extraordinary fate
She was born to discover the falsehood of her own opinions
and to counteract by her conduct her most favourite maxims
She was born to overcome an affection formed so late
in life as at seventeen and with no sentiment
superior to strong esteem and lively friendship
voluntarily to give her hand to anotherand THAT other
a man who had suffered no less than herself under the
event of a former attachment whom two years before
she had considered too old to be marriedand who still
sought the constitutional safeguard of a flannel waistcoat
But so it was Instead of falling a sacrifice
to an irresistible passion as once she had fondly
flattered herself with expectinginstead of remaining
even for ever with her mother and finding her only
pleasures in retirement and study as afterwards in her
more calm and sober judgment she had determined on
she found herself at nineteen submitting to new attachments
entering on new duties placed in a new home a wife
the mistress of a family and the patroness of a village
Colonel Brandon was now as happy as all those who best
loved him believed he deserved to bein Marianne he
was consoled for every past afflictionher regard and her
society restored his mind to animation and his spirits
to cheerfulness and that Marianne found her own happiness
in forming his was equally the persuasion and delight
of each observing friend Marianne could never love
by halves and her whole heart became in time as much
devoted to her husband as it had once been to Willoughby
Willoughby could not hear of her marriage without
a pang and his punishment was soon afterwards complete
in the voluntary forgiveness of Mrs Smith who by stating
his marriage with a woman of character as the source
of her clemency gave him reason for believing that had he
behaved with honour towards Marianne he might at once have
been happy and rich That his repentance of misconduct
which thus brought its own punishment was sincere
need not be doubtednor that he long thought of Colonel
Brandon with envy and of Marianne with regret But that
he was for ever inconsolable that he fled from society
or contracted an habitual gloom of temper or died of a
broken heart must not be depended onfor he did neither
He lived to exert and frequently to enjoy himself
His wife was not always out of humour nor his home
always uncomfortable and in his breed of horses and dogs
and in sporting of every kind he found no inconsiderable
degree of domestic felicity
For Marianne howeverin spite of his incivility
in surviving her losshe always retained that decided
regard which interested him in every thing that befell her
and made her his secret standard of perfection in woman
and many a rising beauty would be slighted by him in
afterdays as bearing no comparison with Mrs Brandon
Mrs Dashwood was prudent enough to remain at the cottage
without attempting a removal to Delaford and fortunately for
Sir John and Mrs Jennings when Marianne was taken from them
Margaret had reached an age highly suitable for dancing
and not very ineligible for being supposed to have a lover
Between Barton and Delaford there was that constant
communication which strong family affection would
naturally dictateand among the merits and the happiness
of Elinor and Marianne let it not be ranked as the least
considerable that though sisters and living almost within
sight of each other they could live without disagreement
between themselves or producing coolness between their husbands
THE END
# spacy tags with no punct
import re
import spacy
nlp = spacy.load("en_core_web_sm")
tags_no_punct = re.sub(r'[^\w\s]', '', spacy_raw)
doc = nlp(tags_no_punct)
spacy_sense_pos = [(token.text, token.pos_) for token in doc]
print(spacy_sense_pos)
[('Sense', 'NOUN'), ('and', 'CCONJ'), ('Sensibility', 'PROPN'), ('by', 'ADP'), ('Jane', 'PROPN'), ('Austen', 'PROPN'), ('1811', 'NUM'), ('\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('1', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('family', 'NOUN'), ('of', 'ADP'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('long', 'ADV'), ('been', 'AUX'), ('settled', 'VERB'), ('in', 'ADP'), ('Sussex', 'PROPN'), ('\n', 'SPACE'), ('Their', 'PRON'), ('estate', 'NOUN'), ('was', 'AUX'), ('large', 'ADJ'), ('and', 'CCONJ'), ('their', 'PRON'), ('residence', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('Norland', 'PROPN'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('centre', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('property', 'NOUN'), ('where', 'SCONJ'), ('for', 'ADP'), ('many', 'ADJ'), ('generations', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('had', 'AUX'), ('lived', 'VERB'), ('in', 'ADP'), ('so', 'ADV'), ('respectable', 'ADJ'), ('a', 'DET'), ('manner', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('engage', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('general', 'ADJ'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('surrounding', 'VERB'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('late', 'ADJ'), ('owner', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('estate', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('single', 'ADJ'), ('man', 'NOUN'), ('who', 'PRON'), ('lived', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('advanced', 'ADJ'), ('age', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('for', 'ADP'), ('many', 'ADJ'), ('years', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('had', 'VERB'), ('a', 'DET'), ('constant', 'ADJ'), ('companion', 'NOUN'), ('and', 'CCONJ'), ('housekeeper', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('her', 'PRON'), ('death', 'NOUN'), ('which', 'PRON'), ('happened', 'VERB'), ('ten', 'NUM'), ('years', 'NOUN'), ('before', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('produced', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('alteration', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('home', 'NOUN'), ('for', 'ADP'), ('to', 'PART'), ('supply', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('loss', 'NOUN'), ('he', 'PRON'), ('invited', 'VERB'), ('and', 'CCONJ'), ('received', 'VERB'), ('into', 'ADP'), ('his', 'PRON'), ('house', 'NOUN'), ('the', 'DET'), ('family', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('nephew', 'NOUN'), ('Mr', 'PROPN'), ('Henry', 'PROPN'), ('Dashwood', 'PROPN'), ('the', 'DET'), ('legal', 'ADJ'), ('inheritor', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('Norland', 'PROPN'), ('estate', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('person', 'NOUN'), ('to', 'PART'), ('whom', 'PRON'), ('he', 'PRON'), ('intended', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('bequeath', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('society', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('nephew', 'NOUN'), ('and', 'CCONJ'), ('niece', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('their', 'PRON'), ('children', 'NOUN'), ('the', 'DET'), ('old', 'ADJ'), ('Gentlemans', 'PROPN'), ('days', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('comfortably', 'ADV'), ('spent', 'VERB'), (' ', 'SPACE'), ('His', 'PRON'), ('attachment', 'NOUN'), ('to', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('increased', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('constant', 'ADJ'), ('attention', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Henry', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('wishes', 'NOUN'), ('which', 'PRON'), ('proceeded', 'VERB'), ('not', 'PART'), ('merely', 'ADV'), ('from', 'ADP'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('from', 'ADP'), ('goodness', 'NOUN'), ('of', 'ADP'), ('heart', 'NOUN'), ('gave', 'VERB'), ('him', 'PRON'), ('every', 'DET'), ('degree', 'NOUN'), ('of', 'ADP'), ('solid', 'ADJ'), ('\n', 'SPACE'), ('comfort', 'NOUN'), ('which', 'PRON'), ('his', 'PRON'), ('age', 'NOUN'), ('could', 'AUX'), ('receive', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('children', 'NOUN'), ('added', 'VERB'), ('a', 'DET'), ('relish', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('existence', 'NOUN'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('a', 'DET'), ('former', 'ADJ'), ('marriage', 'NOUN'), ('Mr', 'PROPN'), ('Henry', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'VERB'), ('one', 'NUM'), ('\n', 'SPACE'), ('son', 'NOUN'), ('by', 'ADP'), ('his', 'PRON'), ('present', 'ADJ'), ('lady', 'NOUN'), ('three', 'NUM'), ('daughters', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('son', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('steady', 'ADJ'), ('respectable', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('was', 'AUX'), ('amply', 'ADV'), ('provided', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('fortune', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('large', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('half', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('devolved', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('on', 'ADP'), ('his', 'PRON'), ('coming', 'NOUN'), ('of', 'ADP'), ('age', 'NOUN'), ('\n', 'SPACE'), ('By', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('marriage', 'NOUN'), ('likewise', 'ADV'), ('which', 'PRON'), ('happened', 'VERB'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('added', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('wealth', 'NOUN'), (' ', 'SPACE'), ('To', 'ADP'), ('him', 'PRON'), ('therefore', 'ADV'), ('the', 'DET'), ('succession', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('Norland', 'PROPN'), ('estate', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('really', 'ADV'), ('important', 'ADJ'), ('as', 'ADP'), ('to', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('sisters', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('fortune', 'NOUN'), ('independent', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('arise', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('from', 'ADP'), ('their', 'PRON'), ('fathers', 'NOUN'), ('inheriting', 'VERB'), ('that', 'PRON'), ('property', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('but', 'CCONJ'), ('small', 'ADJ'), (' ', 'SPACE'), ('Their', 'PRON'), ('mother', 'NOUN'), ('had', 'VERB'), ('nothing', 'PRON'), ('and', 'CCONJ'), ('their', 'PRON'), ('\n', 'SPACE'), ('father', 'NOUN'), ('only', 'ADV'), ('seven', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('disposal', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('remaining', 'VERB'), ('moiety', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('first', 'ADJ'), ('wifes', 'NOUN'), ('fortune', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('also', 'ADV'), ('secured', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('child', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('only', 'ADV'), ('a', 'DET'), ('lifeinterest', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('The', 'DET'), ('old', 'ADJ'), ('gentleman', 'NOUN'), ('died', 'VERB'), ('his', 'PRON'), ('will', 'NOUN'), ('was', 'AUX'), ('read', 'VERB'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('like', 'INTJ'), ('almost', 'ADV'), ('every', 'PRON'), ('other', 'ADJ'), ('will', 'AUX'), ('gave', 'VERB'), ('as', 'ADV'), ('much', 'ADJ'), ('disappointment', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('pleasure', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('neither', 'ADV'), ('so', 'ADV'), ('unjust', 'ADJ'), ('nor', 'CCONJ'), ('so', 'ADV'), ('ungrateful', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('to', 'PART'), ('leave', 'VERB'), ('his', 'PRON'), ('estate', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('nephewbut', 'NOUN'), ('he', 'PRON'), ('left', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('such', 'ADJ'), ('terms', 'NOUN'), ('as', 'SCONJ'), ('destroyed', 'VERB'), ('half', 'DET'), ('the', 'DET'), ('value', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('bequest', 'NOUN'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('wished', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), ('more', 'ADV'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('daughters', 'NOUN'), ('than', 'ADP'), ('for', 'ADP'), ('himself', 'PRON'), ('or', 'CCONJ'), ('his', 'PRON'), ('sonbut', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('son', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('sons', 'NOUN'), ('son', 'NOUN'), ('a', 'DET'), ('child', 'NOUN'), ('of', 'ADP'), ('four', 'NUM'), ('years', 'NOUN'), ('old', 'ADJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('secured', 'VERB'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('way', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('leave', 'VERB'), ('to', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('no', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('providing', 'VERB'), ('for', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('were', 'AUX'), ('most', 'ADV'), ('dear', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('who', 'PRON'), ('most', 'ADV'), ('needed', 'VERB'), ('a', 'DET'), ('provision', 'NOUN'), ('by', 'ADP'), ('any', 'DET'), ('charge', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('estate', 'NOUN'), ('or', 'CCONJ'), ('by', 'ADP'), ('any', 'DET'), ('sale', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('valuable', 'ADJ'), ('woods', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('whole', 'NOUN'), ('was', 'AUX'), ('tied', 'VERB'), ('up', 'ADP'), ('for', 'ADP'), ('the', 'DET'), ('benefit', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('child', 'NOUN'), ('who', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('occasional', 'ADJ'), ('visits', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('father', 'NOUN'), ('and', 'CCONJ'), ('mother', 'NOUN'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('gained', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('affections', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('uncle', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('such', 'ADJ'), ('attractions', 'NOUN'), ('as', 'SCONJ'), ('are', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('unusual', 'ADJ'), ('in', 'ADP'), ('children', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('years', 'NOUN'), ('old', 'ADJ'), ('an', 'DET'), ('imperfect', 'ADJ'), ('articulation', 'NOUN'), ('\n', 'SPACE'), ('an', 'DET'), ('earnest', 'ADJ'), ('desire', 'NOUN'), ('of', 'ADP'), ('having', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('way', 'NOUN'), ('many', 'ADJ'), ('cunning', 'ADJ'), ('tricks', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('noise', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('outweigh', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('value', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('attention', 'NOUN'), ('which', 'PRON'), ('for', 'ADP'), ('years', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('received', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('his', 'PRON'), ('niece', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('meant', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('unkind', 'ADJ'), ('however', 'ADV'), ('and', 'CCONJ'), ('as', 'ADP'), ('a', 'DET'), ('mark', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('three', 'NUM'), ('girls', 'NOUN'), ('he', 'PRON'), ('left', 'VERB'), ('them', 'PRON'), ('a', 'DET'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('apiece', 'ADV'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Dashwoods', 'PROPN'), ('disappointment', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('first', 'ADJ'), ('severe', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('his', 'PRON'), ('temper', 'NOUN'), ('was', 'AUX'), ('cheerful', 'ADJ'), ('and', 'CCONJ'), ('sanguine', 'ADJ'), ('and', 'CCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('reasonably', 'ADV'), ('hope', 'VERB'), ('to', 'PART'), ('live', 'VERB'), ('many', 'ADJ'), ('years', 'NOUN'), ('and', 'CCONJ'), ('by', 'ADP'), ('living', 'VERB'), ('economically', 'ADV'), ('\n', 'SPACE'), ('lay', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('considerable', 'ADJ'), ('sum', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('produce', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('estate', 'NOUN'), ('\n', 'SPACE'), ('already', 'ADV'), ('large', 'ADJ'), ('and', 'CCONJ'), ('capable', 'ADJ'), ('of', 'ADP'), ('almost', 'ADV'), ('immediate', 'ADJ'), ('improvement', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('fortune', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('tardy', 'ADJ'), ('in', 'ADP'), ('coming', 'VERB'), ('was', 'AUX'), ('his', 'PRON'), ('\n', 'SPACE'), ('only', 'ADV'), ('one', 'NUM'), ('twelvemonth', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('survived', 'VERB'), ('his', 'PRON'), ('uncle', 'NOUN'), ('no', 'ADV'), ('longer', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('ten', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('including', 'VERB'), ('the', 'DET'), ('late', 'ADJ'), ('legacies', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('remained', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('widow', 'NOUN'), ('and', 'CCONJ'), ('daughters', 'NOUN'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('son', 'NOUN'), ('was', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('his', 'PRON'), ('danger', 'NOUN'), ('was', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('him', 'PRON'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('recommended', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('strength', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('urgency', 'NOUN'), ('which', 'DET'), ('illness', 'NOUN'), ('could', 'AUX'), ('command', 'VERB'), ('the', 'DET'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('motherinlaw', 'NOUN'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('strong', 'ADJ'), ('feelings', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('but', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('affected', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('recommendation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('nature', 'NOUN'), ('at', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('time', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('promised', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('comfortable', 'ADJ'), ('\n', 'SPACE'), ('His', 'PRON'), ('father', 'NOUN'), ('was', 'AUX'), ('rendered', 'VERB'), ('easy', 'ADJ'), ('by', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('assurance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('then', 'ADV'), ('leisure', 'VERB'), ('to', 'PART'), ('consider', 'VERB'), ('how', 'SCONJ'), ('\n', 'SPACE'), ('much', 'ADJ'), ('there', 'PRON'), ('might', 'AUX'), ('prudently', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('his', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('do', 'AUX'), ('for', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('an', 'DET'), ('illdisposed', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('unless', 'SCONJ'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('rather', 'ADV'), ('cold', 'ADJ'), ('hearted', 'ADJ'), ('and', 'CCONJ'), ('rather', 'ADV'), ('selfish', 'ADJ'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('illdisposed', 'VERB'), ('but', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('general', 'ADJ'), ('well', 'ADV'), ('respected', 'VERB'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('he', 'PRON'), ('conducted', 'VERB'), ('himself', 'PRON'), ('with', 'ADP'), ('propriety', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('discharge', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('ordinary', 'ADJ'), ('duties', 'NOUN'), (' ', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('married', 'VERB'), ('a', 'DET'), ('more', 'ADV'), ('amiable', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('made', 'VERB'), ('still', 'ADV'), ('more', 'ADV'), ('respectable', 'ADJ'), ('than', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('washe', 'NOUN'), ('might', 'AUX'), ('even', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('made', 'VERB'), ('amiable', 'ADJ'), ('himself', 'PRON'), ('for', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('very', 'ADV'), ('young', 'ADJ'), ('when', 'SCONJ'), ('he', 'PRON'), ('married', 'VERB'), ('and', 'CCONJ'), ('very', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('strong', 'ADJ'), ('caricature', 'NOUN'), ('of', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('more', 'ADV'), ('narrowminded', 'ADJ'), ('and', 'CCONJ'), ('selfish', 'ADJ'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('he', 'PRON'), ('gave', 'VERB'), ('his', 'PRON'), ('promise', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('father', 'NOUN'), ('he', 'PRON'), ('meditated', 'VERB'), ('\n', 'SPACE'), ('within', 'ADP'), ('himself', 'PRON'), ('to', 'PART'), ('increase', 'VERB'), ('the', 'DET'), ('fortunes', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('present', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('apiece', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('then', 'ADV'), ('\n', 'SPACE'), ('really', 'ADV'), ('thought', 'VERB'), ('himself', 'PRON'), ('equal', 'ADJ'), ('to', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('prospect', 'NOUN'), ('of', 'ADP'), ('four', 'NUM'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('in', 'ADP'), ('addition', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('present', 'ADJ'), ('income', 'NOUN'), ('\n', 'SPACE'), ('besides', 'SCONJ'), ('the', 'DET'), ('remaining', 'VERB'), ('half', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('mothers', 'NOUN'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('warmed', 'VERB'), ('his', 'PRON'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('made', 'VERB'), ('him', 'PRON'), ('feel', 'VERB'), ('capable', 'ADJ'), ('of', 'ADP'), ('generosity', 'NOUN'), ('\n', 'SPACE'), ('Yes', 'INTJ'), ('he', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('them', 'PRON'), ('three', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('liberal', 'ADJ'), ('and', 'CCONJ'), ('handsome', 'ADJ'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('completely', 'ADV'), ('easy', 'ADJ'), (' ', 'SPACE'), ('Three', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('spare', 'VERB'), ('so', 'ADV'), ('considerable', 'ADJ'), ('a', 'DET'), ('sum', 'NOUN'), ('with', 'ADP'), ('little', 'ADJ'), ('inconvenience', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('all', 'DET'), ('day', 'NOUN'), ('long', 'ADV'), ('and', 'CCONJ'), ('for', 'ADP'), ('many', 'ADJ'), ('days', 'NOUN'), ('successively', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('repent', 'VERB'), ('\n\n', 'SPACE'), ('No', 'ADV'), ('sooner', 'ADV'), ('was', 'AUX'), ('his', 'PRON'), ('fathers', 'NOUN'), ('funeral', 'NOUN'), ('over', 'ADV'), ('than', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('without', 'ADP'), ('sending', 'VERB'), ('any', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('intention', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('motherinlaw', 'NOUN'), ('arrived', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('child', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('attendants', 'NOUN'), ('\n', 'SPACE'), ('No', 'DET'), ('one', 'NOUN'), ('could', 'AUX'), ('dispute', 'VERB'), ('her', 'PRON'), ('right', 'NOUN'), ('to', 'PART'), ('come', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('her', 'PRON'), ('husbands', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('fathers', 'NOUN'), ('decease', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('indelicacy', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('conduct', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('the', 'PRON'), ('greater', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('situation', 'NOUN'), ('with', 'ADP'), ('only', 'ADJ'), ('\n', 'SPACE'), ('common', 'ADJ'), ('feelings', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('highly', 'ADV'), ('unpleasing', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('in', 'ADP'), ('HER', 'PRON'), ('mind', 'NOUN'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('honor', 'NOUN'), ('so', 'ADV'), ('keen', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('generosity', 'NOUN'), ('so', 'ADV'), ('romantic', 'ADJ'), ('that', 'SCONJ'), ('any', 'DET'), ('offence', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('whomsoever', 'NOUN'), ('given', 'VERB'), ('or', 'CCONJ'), ('received', 'VERB'), ('was', 'AUX'), ('to', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('source', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('immoveable', 'ADJ'), ('disgust', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('never', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('a', 'DET'), ('favourite', 'NOUN'), ('with', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('husbands', 'NOUN'), ('family', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('opportunity', 'NOUN'), ('till', 'SCONJ'), ('the', 'DET'), ('present', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('shewing', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('how', 'SCONJ'), ('little', 'ADJ'), ('attention', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('act', 'VERB'), ('when', 'SCONJ'), ('occasion', 'NOUN'), ('required', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('So', 'ADV'), ('acutely', 'ADV'), ('did', 'AUX'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('feel', 'VERB'), ('this', 'DET'), ('ungracious', 'ADJ'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('earnestly', 'ADV'), ('did', 'AUX'), ('she', 'PRON'), ('despise', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('daughterinlaw', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('that', 'SCONJ'), ('on', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('quitted', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('for', 'ADP'), ('ever', 'ADV'), ('had', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('\n', 'SPACE'), ('entreaty', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('eldest', 'ADJ'), ('girl', 'NOUN'), ('induced', 'VERB'), ('her', 'PRON'), ('first', 'ADV'), ('to', 'PART'), ('reflect', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('propriety', 'NOUN'), ('of', 'ADP'), ('going', 'VERB'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('tender', 'NOUN'), ('love', 'NOUN'), ('for', 'SCONJ'), ('all', 'DET'), ('\n', 'SPACE'), ('her', 'PRON'), ('three', 'NUM'), ('children', 'NOUN'), ('determined', 'VERB'), ('her', 'PRON'), ('afterwards', 'ADV'), ('to', 'PART'), ('stay', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('for', 'ADP'), ('their', 'PRON'), ('sakes', 'NOUN'), ('avoid', 'VERB'), ('a', 'DET'), ('breach', 'NOUN'), ('with', 'ADP'), ('their', 'PRON'), ('brother', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('this', 'DET'), ('eldest', 'ADJ'), ('daughter', 'NOUN'), ('whose', 'DET'), ('advice', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('effectual', 'ADJ'), ('possessed', 'VERB'), ('a', 'DET'), ('strength', 'NOUN'), ('of', 'ADP'), ('understanding', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('coolness', 'NOUN'), ('of', 'ADP'), ('judgment', 'NOUN'), ('which', 'PRON'), ('qualified', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('only', 'ADV'), ('nineteen', 'NUM'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('counsellor', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('enabled', 'VERB'), ('her', 'PRON'), ('frequently', 'ADV'), ('to', 'PART'), ('counteract', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('them', 'PRON'), ('all', 'DET'), ('that', 'DET'), ('eagerness', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('which', 'PRON'), ('must', 'AUX'), ('generally', 'ADV'), ('have', 'AUX'), ('led', 'VERB'), ('to', 'PART'), ('imprudence', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('excellent', 'ADJ'), ('hearther', 'ADJ'), ('disposition', 'NOUN'), ('was', 'AUX'), ('affectionate', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('feelings', 'NOUN'), ('were', 'AUX'), ('strong', 'ADJ'), ('but', 'CCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('govern', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('knowledge', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('mother', 'NOUN'), ('had', 'VERB'), ('yet', 'ADV'), ('to', 'PART'), ('learn', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('which', 'DET'), ('one', 'NUM'), ('of', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('had', 'AUX'), ('resolved', 'VERB'), ('never', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('taught', 'VERB'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('abilities', 'NOUN'), ('were', 'AUX'), ('in', 'ADP'), ('many', 'ADJ'), ('respects', 'NOUN'), ('\n', 'SPACE'), ('quite', 'ADV'), ('equal', 'ADJ'), ('to', 'ADP'), ('Elinors', 'PROPN'), ('She', 'PRON'), ('was', 'AUX'), ('sensible', 'ADJ'), ('and', 'CCONJ'), ('clever', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('eager', 'ADJ'), ('in', 'ADP'), ('everything', 'PRON'), ('her', 'PRON'), ('sorrows', 'VERB'), ('her', 'PRON'), ('joys', 'NOUN'), ('could', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('moderation', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('generous', 'ADJ'), ('amiable', 'ADJ'), ('interesting', 'ADJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('everything', 'PRON'), ('but', 'CCONJ'), ('prudent', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('resemblance', 'NOUN'), ('between', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('strikingly', 'ADV'), ('great', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('with', 'ADP'), ('concern', 'NOUN'), ('the', 'DET'), ('excess', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('sensibility', 'NOUN'), ('but', 'CCONJ'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('valued', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('cherished', 'VERB'), (' ', 'SPACE'), ('They', 'PRON'), ('encouraged', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('now', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('violence', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('affliction', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('agony', 'NOUN'), ('of', 'ADP'), ('grief', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('overpowered', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('was', 'AUX'), ('voluntarily', 'ADV'), ('renewed', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('sought', 'VERB'), ('for', 'ADP'), ('was', 'AUX'), ('created', 'VERB'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('gave', 'VERB'), ('\n', 'SPACE'), ('themselves', 'PRON'), ('up', 'ADP'), ('wholly', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('sorrow', 'NOUN'), ('seeking', 'VERB'), ('increase', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('wretchedness', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('reflection', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('afford', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('resolved', 'VERB'), ('against', 'ADP'), ('ever', 'ADV'), ('admitting', 'VERB'), ('consolation', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('future', 'ADJ'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('too', 'ADV'), ('was', 'AUX'), ('deeply', 'ADV'), ('afflicted', 'VERB'), ('but', 'CCONJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('struggle', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('exert', 'VERB'), ('herself', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('consult', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('could', 'AUX'), ('receive', 'VERB'), ('her', 'PRON'), ('sisterinlaw', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('arrival', 'NOUN'), ('and', 'CCONJ'), ('treat', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('proper', 'ADJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('could', 'AUX'), ('strive', 'VERB'), ('to', 'PART'), ('rouse', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('to', 'ADP'), ('similar', 'ADJ'), ('exertion', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('encourage', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('similar', 'ADJ'), ('forbearance', 'NOUN'), ('\n\n', 'SPACE'), ('Margaret', 'PROPN'), ('the', 'DET'), ('other', 'ADJ'), ('sister', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('goodhumored', 'VERB'), ('\n', 'SPACE'), ('welldisposed', 'ADJ'), ('girl', 'NOUN'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('imbibed', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('good', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('romance', 'NOUN'), ('without', 'ADP'), ('having', 'VERB'), ('\n', 'SPACE'), ('much', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('sense', 'NOUN'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('at', 'ADP'), ('thirteen', 'NUM'), ('bid', 'NOUN'), ('fair', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('equal', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('at', 'ADP'), ('a', 'DET'), ('more', 'ADV'), ('advanced', 'ADJ'), ('period', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('2', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('now', 'ADV'), ('installed', 'VERB'), ('herself', 'PRON'), ('mistress', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sistersinlaw', 'NOUN'), ('were', 'AUX'), ('degraded', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('condition', 'NOUN'), ('of', 'ADP'), ('visitors', 'NOUN'), (' ', 'SPACE'), ('As', 'ADP'), ('such', 'ADJ'), ('however', 'ADV'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('treated', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('with', 'ADP'), ('quiet', 'ADJ'), ('civility', 'NOUN'), ('and', 'CCONJ'), ('by', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('as', 'ADV'), ('much', 'ADJ'), ('kindness', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('feel', 'VERB'), ('towards', 'ADP'), ('anybody', 'PRON'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('himself', 'PRON'), ('his', 'PRON'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('child', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('really', 'ADV'), ('\n', 'SPACE'), ('pressed', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('some', 'DET'), ('earnestness', 'NOUN'), ('to', 'PART'), ('consider', 'VERB'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('their', 'PRON'), ('home', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('no', 'DET'), ('plan', 'NOUN'), ('appeared', 'VERB'), ('so', 'ADV'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('as', 'ADP'), ('remaining', 'VERB'), ('there', 'ADV'), ('till', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('accommodate', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('house', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('invitation', 'NOUN'), ('was', 'AUX'), ('accepted', 'VERB'), ('\n\n', 'SPACE'), ('A', 'DET'), ('continuance', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('place', 'NOUN'), ('where', 'SCONJ'), ('everything', 'PRON'), ('reminded', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('of', 'ADP'), ('former', 'ADJ'), ('delight', 'NOUN'), ('was', 'AUX'), ('exactly', 'ADV'), ('what', 'PRON'), ('suited', 'VERB'), ('her', 'PRON'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('seasons', 'NOUN'), ('of', 'ADP'), ('cheerfulness', 'NOUN'), ('no', 'DET'), ('temper', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('cheerful', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('hers', 'PRON'), ('or', 'CCONJ'), ('possess', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('greater', 'ADJ'), ('degree', 'NOUN'), ('that', 'SCONJ'), ('sanguine', 'ADJ'), ('\n', 'SPACE'), ('expectation', 'NOUN'), ('of', 'ADP'), ('happiness', 'NOUN'), ('which', 'PRON'), ('is', 'AUX'), ('happiness', 'NOUN'), ('itself', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('in', 'ADP'), ('sorrow', 'NOUN'), ('she', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('equally', 'ADV'), ('carried', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('fancy', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADV'), ('far', 'ADV'), ('beyond', 'ADP'), ('consolation', 'NOUN'), ('as', 'ADP'), ('in', 'ADP'), ('pleasure', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('alloy', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), ('approve', 'VERB'), ('of', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('\n', 'SPACE'), ('husband', 'NOUN'), ('intended', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('take', 'VERB'), ('three', 'NUM'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('fortune', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('dear', 'ADJ'), ('little', 'ADJ'), ('boy', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('impoverishing', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('dreadful', 'ADJ'), ('degree', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('begged', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('again', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('could', 'AUX'), ('\n', 'SPACE'), ('he', 'PRON'), ('answer', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('himself', 'PRON'), ('to', 'PART'), ('rob', 'VERB'), ('his', 'PRON'), ('child', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('only', 'ADJ'), ('\n', 'SPACE'), ('child', 'NOUN'), ('too', 'ADV'), ('of', 'ADP'), ('so', 'ADV'), ('large', 'ADJ'), ('a', 'DET'), ('sum', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('what', 'PRON'), ('possible', 'ADJ'), ('claim', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('who', 'PRON'), ('were', 'AUX'), ('related', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('only', 'ADV'), ('by', 'ADP'), ('\n', 'SPACE'), ('half', 'NOUN'), ('blood', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('considered', 'VERB'), ('as', 'ADP'), ('no', 'DET'), ('relationship', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('have', 'VERB'), ('on', 'ADP'), ('his', 'PRON'), ('generosity', 'NOUN'), ('to', 'ADP'), ('so', 'ADV'), ('large', 'ADJ'), ('an', 'DET'), ('amount', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('well', 'ADV'), ('known', 'VERB'), ('that', 'SCONJ'), ('no', 'DET'), ('affection', 'NOUN'), ('was', 'AUX'), ('ever', 'ADV'), ('supposed', 'VERB'), ('to', 'PART'), ('exist', 'VERB'), ('\n', 'SPACE'), ('between', 'ADP'), ('the', 'DET'), ('children', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('man', 'NOUN'), ('by', 'ADP'), ('different', 'ADJ'), ('marriages', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('why', 'SCONJ'), ('was', 'AUX'), ('he', 'PRON'), ('to', 'PART'), ('ruin', 'VERB'), ('himself', 'PRON'), ('and', 'CCONJ'), ('their', 'PRON'), ('poor', 'ADJ'), ('little', 'ADJ'), ('Harry', 'PROPN'), ('\n', 'SPACE'), ('by', 'ADP'), ('giving', 'VERB'), ('away', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('money', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('half', 'NOUN'), ('sisters', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('my', 'PRON'), ('fathers', 'NOUN'), ('last', 'ADJ'), ('request', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('husband', 'NOUN'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('assist', 'VERB'), ('his', 'PRON'), ('widow', 'NOUN'), ('and', 'CCONJ'), ('daughters', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('talking', 'VERB'), ('of', 'ADP'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n', 'SPACE'), ('ten', 'NUM'), ('to', 'ADP'), ('one', 'NUM'), ('but', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('lightheaded', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('in', 'ADP'), ('his', 'PRON'), ('right', 'ADJ'), ('senses', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('thought', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), ('as', 'ADP'), ('begging', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('give', 'VERB'), ('away', 'ADP'), ('half', 'DET'), ('your', 'PRON'), ('\n', 'SPACE'), ('fortune', 'NOUN'), ('from', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('child', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('stipulate', 'VERB'), ('for', 'ADP'), ('any', 'DET'), ('particular', 'ADJ'), ('sum', 'NOUN'), ('\n', 'SPACE'), ('my', 'PRON'), ('dear', 'ADJ'), ('Fanny', 'PROPN'), ('he', 'PRON'), ('only', 'ADV'), ('requested', 'VERB'), ('me', 'PRON'), ('in', 'ADP'), ('general', 'ADJ'), ('terms', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('assist', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('make', 'VERB'), ('their', 'PRON'), ('situation', 'NOUN'), ('more', 'ADV'), ('comfortable', 'ADJ'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('his', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('do', 'AUX'), (' ', 'SPACE'), ('Perhaps', 'ADV'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('if', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('it', 'PRON'), ('wholly', 'ADV'), ('to', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('hardly', 'ADV'), ('suppose', 'VERB'), ('I', 'PRON'), ('should', 'AUX'), ('neglect', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('required', 'VERB'), ('the', 'DET'), ('promise', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('less', 'ADJ'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('give', 'VERB'), ('it', 'PRON'), ('at', 'ADP'), ('least', 'ADJ'), ('I', 'PRON'), ('thought', 'VERB'), ('so', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('promise', 'NOUN'), ('therefore', 'ADV'), ('was', 'AUX'), ('given', 'VERB'), ('and', 'CCONJ'), ('must', 'AUX'), ('be', 'AUX'), ('performed', 'VERB'), ('\n', 'SPACE'), ('Something', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('whenever', 'SCONJ'), ('they', 'PRON'), ('leave', 'VERB'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('settle', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('new', 'ADJ'), ('home', 'NOUN'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('LET', 'VERB'), ('something', 'PRON'), ('be', 'AUX'), ('done', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('THAT', 'SCONJ'), ('something', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('three', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('Consider', 'VERB'), ('she', 'PRON'), ('added', 'VERB'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('the', 'DET'), ('money', 'NOUN'), ('is', 'AUX'), ('once', 'ADV'), ('\n', 'SPACE'), ('parted', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('never', 'ADV'), ('can', 'AUX'), ('return', 'VERB'), (' ', 'SPACE'), ('Your', 'PRON'), ('sisters', 'NOUN'), ('will', 'AUX'), ('marry', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('gone', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('If', 'SCONJ'), ('indeed', 'ADV'), ('it', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('restored', 'VERB'), ('to', 'ADP'), ('our', 'PRON'), ('poor', 'ADJ'), ('little', 'ADJ'), ('boy', 'NOUN'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('her', 'PRON'), ('husband', 'NOUN'), ('very', 'ADV'), ('gravely', 'ADV'), ('\n', 'SPACE'), ('that', 'PRON'), ('would', 'AUX'), ('make', 'VERB'), ('great', 'ADJ'), ('difference', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('time', 'NOUN'), ('may', 'AUX'), ('come', 'VERB'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('Harry', 'PROPN'), ('will', 'AUX'), ('regret', 'VERB'), ('that', 'SCONJ'), ('so', 'ADV'), ('large', 'ADJ'), ('a', 'DET'), ('sum', 'NOUN'), ('was', 'AUX'), ('parted', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('numerous', 'ADJ'), ('family', 'NOUN'), ('for', 'ADP'), ('instance', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('convenient', 'ADJ'), ('addition', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('would', 'AUX'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('then', 'ADV'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('better', 'ADJ'), ('for', 'ADP'), ('all', 'DET'), ('parties', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('the', 'DET'), ('sum', 'NOUN'), ('were', 'AUX'), ('diminished', 'VERB'), ('one', 'NUM'), ('halfFive', 'ADJ'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('prodigious', 'ADJ'), ('increase', 'NOUN'), ('to', 'ADP'), ('their', 'PRON'), ('fortunes', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('beyond', 'ADP'), ('anything', 'PRON'), ('great', 'ADJ'), (' ', 'SPACE'), ('What', 'PRON'), ('brother', 'NOUN'), ('on', 'ADP'), ('earth', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('do', 'VERB'), ('half', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('for', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), ('even', 'ADV'), ('if', 'SCONJ'), ('REALLY', 'PROPN'), ('\n', 'SPACE'), ('his', 'PRON'), ('sisters', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('isonly', 'ADV'), ('half', 'DET'), ('bloodBut', 'NOUN'), ('you', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('generous', 'ADJ'), ('spirit', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('wish', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('mean', 'VERB'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('One', 'PRON'), ('had', 'VERB'), ('rather', 'ADV'), ('on', 'ADP'), ('such', 'ADJ'), ('occasions', 'NOUN'), ('do', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('too', 'ADV'), ('little', 'ADJ'), (' ', 'SPACE'), ('No', 'DET'), ('one', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('can', 'AUX'), ('think', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('done', 'VERB'), ('enough', 'ADV'), ('for', 'ADP'), ('them', 'PRON'), ('even', 'ADV'), ('themselves', 'PRON'), ('they', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('expect', 'VERB'), ('more', 'ADJ'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('knowing', 'VERB'), ('what', 'PRON'), ('THEY', 'PRON'), ('may', 'AUX'), ('expect', 'VERB'), ('\n', 'SPACE'), ('said', 'VERB'), ('the', 'DET'), ('lady', 'NOUN'), ('but', 'CCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('expectations', 'NOUN'), ('the', 'DET'), ('question', 'NOUN'), ('is', 'AUX'), ('what', 'PRON'), ('you', 'PRON'), ('can', 'AUX'), ('afford', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('Certainlyand', 'PROPN'), ('I', 'PRON'), ('think', 'VERB'), ('I', 'PRON'), ('may', 'AUX'), ('afford', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('them', 'PRON'), ('five', 'NUM'), ('\n', 'SPACE'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('apiece', 'ADV'), (' ', 'SPACE'), ('As', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('without', 'ADP'), ('any', 'DET'), ('addition', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mine', 'NOUN'), ('they', 'PRON'), ('will', 'AUX'), ('each', 'PRON'), ('have', 'VERB'), ('about', 'ADV'), ('three', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('their', 'PRON'), ('mothers', 'NOUN'), ('deatha', 'VERB'), ('very', 'ADV'), ('comfortable', 'ADJ'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('any', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('and', 'CCONJ'), ('indeed', 'ADV'), ('it', 'PRON'), ('strikes', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('can', 'AUX'), ('want', 'VERB'), ('no', 'DET'), ('addition', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('ten', 'NUM'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('divided', 'VERB'), ('amongst', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('If', 'SCONJ'), ('they', 'PRON'), ('marry', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('sure', 'ADJ'), ('of', 'ADP'), ('doing', 'VERB'), ('well', 'ADV'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('they', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('they', 'PRON'), ('may', 'AUX'), ('all', 'ADV'), ('live', 'VERB'), ('very', 'ADV'), ('comfortably', 'ADV'), ('together', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('ten', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('true', 'ADJ'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('whether', 'SCONJ'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('the', 'DET'), ('whole', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('more', 'ADV'), ('advisable', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('for', 'ADP'), ('their', 'PRON'), ('mother', 'NOUN'), ('while', 'SCONJ'), ('she', 'PRON'), ('lives', 'VERB'), ('rather', 'ADV'), ('than', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('themsomething', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('annuity', 'NOUN'), ('kind', 'NOUN'), ('I', 'PRON'), ('meanMy', 'NOUN'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('feel', 'VERB'), ('the', 'DET'), ('good', 'ADJ'), ('effects', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('A', 'DET'), ('hundred', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('would', 'AUX'), ('make', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('perfectly', 'ADV'), ('comfortable', 'ADJ'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('wife', 'NOUN'), ('hesitated', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('however', 'ADV'), ('in', 'ADP'), ('giving', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('consent', 'NOUN'), ('to', 'ADP'), ('this', 'DET'), ('plan', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('better', 'ADJ'), ('than', 'ADP'), ('parting', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('fifteen', 'NUM'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('then', 'ADV'), ('if', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('should', 'AUX'), ('live', 'VERB'), ('fifteen', 'NUM'), ('years', 'NOUN'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('completely', 'ADV'), ('taken', 'VERB'), ('in', 'ADP'), ('\n\n', 'SPACE'), ('Fifteen', 'NUM'), ('years', 'NOUN'), ('my', 'PRON'), ('dear', 'ADJ'), ('Fanny', 'NOUN'), ('her', 'PRON'), ('life', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('worth', 'ADJ'), ('half', 'DET'), ('that', 'DET'), ('purchase', 'NOUN'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('not', 'PART'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('observe', 'VERB'), ('people', 'NOUN'), ('always', 'ADV'), ('\n', 'SPACE'), ('live', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('when', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('an', 'DET'), ('annuity', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('paid', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('stout', 'ADJ'), ('and', 'CCONJ'), ('healthy', 'ADJ'), ('and', 'CCONJ'), ('hardly', 'ADV'), ('forty', 'NOUN'), ('\n', 'SPACE'), ('An', 'DET'), ('annuity', 'NOUN'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('serious', 'ADJ'), ('business', 'NOUN'), ('it', 'PRON'), ('comes', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('over', 'ADP'), ('every', 'DET'), ('year', 'NOUN'), ('and', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('getting', 'AUX'), ('rid', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('aware', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('are', 'AUX'), ('doing', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('known', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('trouble', 'NOUN'), ('of', 'ADP'), ('annuities', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('clogged', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('payment', 'NOUN'), ('of', 'ADP'), ('three', 'NUM'), ('\n', 'SPACE'), ('to', 'ADP'), ('old', 'ADJ'), ('superannuated', 'ADJ'), ('servants', 'NOUN'), ('by', 'ADP'), ('my', 'PRON'), ('fathers', 'NOUN'), ('will', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('amazing', 'ADJ'), ('how', 'SCONJ'), ('disagreeable', 'ADJ'), ('she', 'PRON'), ('found', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Twice', 'ADV'), ('every', 'DET'), ('year', 'NOUN'), ('these', 'DET'), ('annuities', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('paid', 'VERB'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('there', 'PRON'), ('was', 'VERB'), ('the', 'DET'), ('trouble', 'NOUN'), ('of', 'ADP'), ('getting', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('then', 'ADV'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('died', 'VERB'), ('and', 'CCONJ'), ('afterwards', 'ADV'), ('it', 'PRON'), ('turned', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('no', 'DET'), ('such', 'ADJ'), ('thing', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('quite', 'ADV'), ('sick', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Her', 'PRON'), ('income', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('her', 'PRON'), ('own', 'ADJ'), ('she', 'PRON'), ('said', 'VERB'), ('with', 'ADP'), ('such', 'ADJ'), ('perpetual', 'ADJ'), ('\n', 'SPACE'), ('claims', 'NOUN'), ('on', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('more', 'ADV'), ('unkind', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('father', 'NOUN'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('otherwise', 'ADV'), ('the', 'DET'), ('money', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('entirely', 'ADV'), ('at', 'ADP'), ('\n', 'SPACE'), ('my', 'PRON'), ('mothers', 'NOUN'), ('disposal', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('restriction', 'NOUN'), ('whatever', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('given', 'VERB'), ('me', 'PRON'), ('such', 'DET'), ('an', 'DET'), ('abhorrence', 'NOUN'), ('of', 'ADP'), ('annuities', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('pin', 'VERB'), ('myself', 'PRON'), ('down', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('payment', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('for', 'ADP'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('certainly', 'ADV'), ('an', 'DET'), ('unpleasant', 'ADJ'), ('thing', 'NOUN'), ('replied', 'VERB'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'VERB'), ('those', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('yearly', 'ADJ'), ('drains', 'NOUN'), ('on', 'ADP'), ('ones', 'NOUN'), ('income', 'NOUN'), ('\n', 'SPACE'), ('Ones', 'PROPN'), ('fortune', 'NOUN'), ('as', 'SCONJ'), ('your', 'PRON'), ('mother', 'NOUN'), ('justly', 'ADV'), ('says', 'VERB'), ('is', 'AUX'), ('NOT', 'PART'), ('ones', 'NOUN'), ('own', 'VERB'), ('\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('tied', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('regular', 'ADJ'), ('payment', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('sum', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('every', 'DET'), ('rent', 'NOUN'), ('day', 'NOUN'), ('is', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('desirable', 'ADJ'), ('it', 'PRON'), ('takes', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('ones', 'NOUN'), ('independence', 'VERB'), ('\n\n', 'SPACE'), ('Undoubtedly', 'ADV'), ('and', 'CCONJ'), ('after', 'ADV'), ('all', 'ADV'), ('you', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('thanks', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('think', 'VERB'), ('themselves', 'PRON'), ('secure', 'VERB'), ('you', 'PRON'), ('do', 'VERB'), ('no', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('expected', 'VERB'), ('and', 'CCONJ'), ('it', 'PRON'), ('raises', 'VERB'), ('no', 'DET'), ('gratitude', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('If', 'SCONJ'), ('I', 'PRON'), ('were', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('whatever', 'PRON'), ('I', 'PRON'), ('did', 'AUX'), ('should', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('at', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('discretion', 'NOUN'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('bind', 'VERB'), ('myself', 'PRON'), ('to', 'PART'), ('allow', 'VERB'), ('them', 'PRON'), ('any', 'DET'), ('thing', 'NOUN'), ('yearly', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('inconvenient', 'ADJ'), ('some', 'DET'), ('years', 'NOUN'), ('to', 'PART'), ('spare', 'VERB'), ('a', 'DET'), ('hundred', 'NUM'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('even', 'ADV'), ('fifty', 'NUM'), ('pounds', 'NOUN'), ('from', 'ADP'), ('our', 'PRON'), ('own', 'ADJ'), ('expenses', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('you', 'PRON'), ('are', 'AUX'), ('right', 'ADJ'), ('my', 'PRON'), ('love', 'NOUN'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('better', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('there', 'PRON'), ('should', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('annuity', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('case', 'NOUN'), ('whatever', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('give', 'VERB'), ('them', 'PRON'), ('occasionally', 'ADV'), ('will', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('far', 'ADV'), ('greater', 'ADJ'), ('assistance', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('a', 'DET'), ('yearly', 'ADJ'), ('allowance', 'NOUN'), ('because', 'SCONJ'), ('they', 'PRON'), ('would', 'AUX'), ('only', 'ADV'), ('enlarge', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('style', 'NOUN'), ('of', 'ADP'), ('living', 'NOUN'), ('if', 'SCONJ'), ('they', 'PRON'), ('felt', 'VERB'), ('sure', 'ADJ'), ('of', 'ADP'), ('a', 'DET'), ('larger', 'ADJ'), ('income', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('sixpence', 'NOUN'), ('the', 'DET'), ('richer', 'ADJ'), ('for', 'ADP'), ('it', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('certainly', 'ADV'), ('be', 'AUX'), ('much', 'ADV'), ('the', 'DET'), ('best', 'ADJ'), ('way', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('present', 'NOUN'), ('of', 'ADP'), ('fifty', 'NUM'), ('pounds', 'NOUN'), ('now', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('will', 'AUX'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('ever', 'ADV'), ('being', 'AUX'), ('distressed', 'VERB'), ('for', 'ADP'), ('money', 'NOUN'), ('and', 'CCONJ'), ('will', 'AUX'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('be', 'AUX'), ('amply', 'ADV'), ('discharging', 'VERB'), ('my', 'PRON'), ('promise', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('father', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('will', 'AUX'), (' ', 'SPACE'), ('Indeed', 'ADV'), ('to', 'PART'), ('say', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('convinced', 'VERB'), ('within', 'ADP'), ('myself', 'PRON'), ('that', 'SCONJ'), ('your', 'PRON'), ('father', 'NOUN'), ('had', 'VERB'), ('no', 'DET'), ('idea', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('giving', 'VERB'), ('them', 'PRON'), ('any', 'DET'), ('money', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('The', 'DET'), ('assistance', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('was', 'AUX'), ('only', 'ADV'), ('such', 'ADJ'), ('as', 'SCONJ'), ('might', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('reasonably', 'ADV'), ('expected', 'VERB'), ('of', 'ADP'), ('you', 'PRON'), ('for', 'ADP'), ('instance', 'NOUN'), ('such', 'ADJ'), ('as', 'ADP'), ('looking', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('for', 'ADP'), ('a', 'DET'), ('comfortable', 'ADJ'), ('small', 'ADJ'), ('house', 'NOUN'), ('for', 'ADP'), ('them', 'PRON'), ('helping', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('move', 'VERB'), ('their', 'PRON'), ('things', 'NOUN'), ('and', 'CCONJ'), ('sending', 'VERB'), ('them', 'PRON'), ('presents', 'NOUN'), ('of', 'ADP'), ('fish', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('game', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('forth', 'ADV'), ('whenever', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('in', 'ADP'), ('season', 'NOUN'), ('\n', 'SPACE'), ('Ill', 'PROPN'), ('lay', 'VERB'), ('my', 'PRON'), ('life', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('meant', 'VERB'), ('nothing', 'PRON'), ('farther', 'ADV'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('strange', 'ADJ'), ('and', 'CCONJ'), ('unreasonable', 'ADJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('Do', 'VERB'), ('but', 'CCONJ'), ('consider', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('how', 'SCONJ'), ('excessively', 'ADV'), ('\n', 'SPACE'), ('comfortable', 'ADJ'), ('your', 'PRON'), ('motherinlaw', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('may', 'AUX'), ('live', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('seven', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('besides', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('belonging', 'VERB'), ('to', 'ADP'), ('each', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('girls', 'NOUN'), ('which', 'PRON'), ('brings', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('in', 'ADP'), ('fifty', 'NUM'), ('pounds', 'NOUN'), ('a', 'DET'), ('year', 'NOUN'), ('apiece', 'ADV'), ('and', 'CCONJ'), ('of', 'ADP'), ('course', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('will', 'AUX'), ('pay', 'VERB'), ('their', 'PRON'), ('mother', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('board', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Altogether', 'ADV'), ('they', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('five', 'NUM'), ('hundred', 'NUM'), ('ayear', 'NOUN'), ('amongst', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('what', 'PRON'), ('on', 'ADP'), ('earth', 'NOUN'), ('can', 'AUX'), ('four', 'NUM'), ('women', 'NOUN'), ('want', 'VERB'), ('for', 'ADP'), ('more', 'ADJ'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('thatThey', 'PRON'), ('will', 'AUX'), ('live', 'VERB'), ('so', 'ADV'), ('cheap', 'ADJ'), ('Their', 'PRON'), ('housekeeping', 'NOUN'), ('will', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('carriage', 'NOUN'), ('no', 'DET'), ('horses', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hardly', 'ADV'), ('any', 'DET'), ('servants', 'NOUN'), ('they', 'PRON'), ('will', 'AUX'), ('keep', 'VERB'), ('no', 'DET'), ('company', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('can', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('expenses', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('kind', 'NOUN'), (' ', 'SPACE'), ('Only', 'ADV'), ('conceive', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('comfortable', 'ADJ'), ('they', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('Five', 'NUM'), ('hundred', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('imagine', 'VERB'), ('how', 'SCONJ'), ('they', 'PRON'), ('will', 'AUX'), ('spend', 'VERB'), ('half', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADP'), ('to', 'ADP'), ('your', 'PRON'), ('giving', 'VERB'), ('them', 'PRON'), ('more', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('absurd', 'ADJ'), ('to', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('much', 'ADV'), ('more', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('YOU', 'PRON'), ('something', 'PRON'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('said', 'VERB'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('perfectly', 'ADV'), ('right', 'ADJ'), (' ', 'SPACE'), ('My', 'PRON'), ('father', 'NOUN'), ('certainly', 'ADV'), ('could', 'AUX'), ('mean', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('more', 'ADJ'), ('by', 'ADP'), ('his', 'PRON'), ('request', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('than', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('say', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('clearly', 'ADV'), ('understand', 'VERB'), ('it', 'PRON'), ('now', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('strictly', 'ADV'), ('fulfil', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('engagement', 'NOUN'), ('by', 'ADP'), ('such', 'ADJ'), ('acts', 'NOUN'), ('of', 'ADP'), ('assistance', 'NOUN'), ('and', 'CCONJ'), ('kindness', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('them', 'PRON'), ('as', 'SCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('described', 'VERB'), (' ', 'SPACE'), ('When', 'SCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('removes', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('another', 'DET'), ('house', 'NOUN'), ('my', 'PRON'), ('services', 'NOUN'), ('shall', 'AUX'), ('be', 'AUX'), ('readily', 'ADV'), ('given', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('accommodate', 'VERB'), ('her', 'PRON'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), (' ', 'SPACE'), ('Some', 'PRON'), ('little', 'ADJ'), ('present', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('furniture', 'NOUN'), ('too', 'ADV'), ('may', 'AUX'), ('be', 'AUX'), ('acceptable', 'ADJ'), ('then', 'ADV'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('returned', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('however', 'ADV'), ('\n', 'SPACE'), ('ONE', 'NUM'), ('thing', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('considered', 'VERB'), (' ', 'SPACE'), ('When', 'SCONJ'), ('your', 'PRON'), ('father', 'NOUN'), ('and', 'CCONJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('moved', 'VERB'), ('to', 'ADP'), ('Norland', 'PROPN'), ('though', 'SCONJ'), ('the', 'DET'), ('furniture', 'NOUN'), ('of', 'ADP'), ('Stanhill', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('sold', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('china', 'PROPN'), ('plate', 'NOUN'), ('and', 'CCONJ'), ('linen', 'NOUN'), ('was', 'AUX'), ('saved', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('is', 'AUX'), ('now', 'ADV'), ('left', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('house', 'NOUN'), ('will', 'AUX'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('almost', 'ADV'), ('completely', 'ADV'), ('fitted', 'VERB'), ('up', 'ADP'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('takes', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('material', 'ADJ'), ('consideration', 'NOUN'), ('undoubtedly', 'ADV'), ('\n', 'SPACE'), ('A', 'DET'), ('valuable', 'ADJ'), ('legacy', 'NOUN'), ('indeed', 'ADV'), ('And', 'CCONJ'), ('yet', 'ADV'), ('some', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('plate', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('pleasant', 'ADJ'), ('addition', 'NOUN'), ('to', 'ADP'), ('our', 'PRON'), ('own', 'ADJ'), ('stock', 'NOUN'), ('here', 'ADV'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('and', 'CCONJ'), ('the', 'DET'), ('set', 'NOUN'), ('of', 'ADP'), ('breakfast', 'NOUN'), ('china', 'PROPN'), ('is', 'AUX'), ('twice', 'ADV'), ('\n', 'SPACE'), ('as', 'ADV'), ('handsome', 'ADJ'), ('as', 'ADP'), ('what', 'PRON'), ('belongs', 'VERB'), ('to', 'ADP'), ('this', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('deal', 'NOUN'), ('too', 'ADV'), ('handsome', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('opinion', 'NOUN'), ('for', 'ADP'), ('any', 'DET'), ('place', 'NOUN'), ('THEY', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('ever', 'ADV'), ('afford', 'VERB'), ('to', 'PART'), ('live', 'VERB'), ('in', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('however', 'ADV'), ('so', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('Your', 'PRON'), ('father', 'NOUN'), ('thought', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('THEM', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('say', 'VERB'), ('this', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('owe', 'VERB'), ('no', 'DET'), ('particular', 'ADJ'), ('gratitude', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('nor', 'CCONJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('wishes', 'NOUN'), ('for', 'SCONJ'), ('we', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('know', 'VERB'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('he', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('left', 'VERB'), ('almost', 'ADV'), ('everything', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'ADP'), ('THEM', 'PRON'), ('\n\n', 'SPACE'), ('This', 'DET'), ('argument', 'NOUN'), ('was', 'AUX'), ('irresistible', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('gave', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('intentions', 'NOUN'), ('whatever', 'PRON'), ('of', 'ADP'), ('decision', 'NOUN'), ('was', 'AUX'), ('wanting', 'VERB'), ('before', 'ADV'), ('and', 'CCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('finally', 'ADV'), ('resolved', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('absolutely', 'ADV'), ('unnecessary', 'ADJ'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('not', 'PART'), ('highly', 'ADV'), ('indecorous', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('more', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('widow', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('children', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('father', 'NOUN'), ('than', 'ADP'), ('such', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('neighbourly', 'ADJ'), ('\n', 'SPACE'), ('acts', 'VERB'), ('as', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('wife', 'NOUN'), ('pointed', 'VERB'), ('out', 'ADP'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('3', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('remained', 'VERB'), ('at', 'ADP'), ('Norland', 'PROPN'), ('several', 'ADJ'), ('months', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('from', 'ADP'), ('any', 'DET'), ('disinclination', 'NOUN'), ('to', 'PART'), ('move', 'VERB'), ('when', 'SCONJ'), ('the', 'DET'), ('sight', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('well', 'ADV'), ('known', 'VERB'), ('spot', 'NOUN'), ('ceased', 'VERB'), ('to', 'PART'), ('raise', 'VERB'), ('the', 'DET'), ('violent', 'ADJ'), ('emotion', 'NOUN'), ('which', 'PRON'), ('it', 'PRON'), ('\n', 'SPACE'), ('produced', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), ('for', 'ADP'), ('when', 'SCONJ'), ('her', 'PRON'), ('spirits', 'NOUN'), ('began', 'VERB'), ('to', 'PART'), ('revive', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('mind', 'NOUN'), ('became', 'VERB'), ('capable', 'ADJ'), ('of', 'ADP'), ('some', 'DET'), ('other', 'ADJ'), ('exertion', 'NOUN'), ('than', 'ADP'), ('that', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('heightening', 'VERB'), ('its', 'PRON'), ('affliction', 'NOUN'), ('by', 'ADP'), ('melancholy', 'ADJ'), ('remembrances', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('impatient', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), ('and', 'CCONJ'), ('indefatigable', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('inquiries', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('suitable', 'ADJ'), ('dwelling', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('of', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('to', 'PART'), ('remove', 'VERB'), ('far', 'ADV'), ('from', 'ADP'), ('that', 'DET'), ('beloved', 'ADJ'), ('spot', 'NOUN'), ('was', 'AUX'), ('impossible', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('hear', 'VERB'), ('of', 'ADP'), ('no', 'DET'), ('situation', 'NOUN'), ('that', 'SCONJ'), ('at', 'ADP'), ('once', 'ADV'), ('answered', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('notions', 'NOUN'), ('of', 'ADP'), ('comfort', 'NOUN'), ('and', 'CCONJ'), ('ease', 'NOUN'), ('and', 'CCONJ'), ('suited', 'VERB'), ('the', 'DET'), ('prudence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('eldest', 'ADJ'), ('daughter', 'NOUN'), ('whose', 'DET'), ('steadier', 'ADJ'), ('judgment', 'NOUN'), ('rejected', 'VERB'), ('\n', 'SPACE'), ('several', 'ADJ'), ('houses', 'NOUN'), ('as', 'ADP'), ('too', 'ADV'), ('large', 'ADJ'), ('for', 'ADP'), ('their', 'PRON'), ('income', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('approved', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('informed', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('solemn', 'ADJ'), ('promise', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('son', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('favour', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('gave', 'VERB'), ('comfort', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('last', 'ADJ'), ('earthly', 'ADJ'), ('reflections', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('doubted', 'VERB'), ('the', 'DET'), ('sincerity', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('assurance', 'NOUN'), ('no', 'ADV'), ('more', 'ADJ'), ('than', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('doubted', 'VERB'), ('it', 'PRON'), ('himself', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('\n', 'SPACE'), ('sake', 'NOUN'), ('with', 'ADP'), ('satisfaction', 'NOUN'), ('though', 'SCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('herself', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('persuaded', 'VERB'), ('that', 'SCONJ'), ('a', 'DET'), ('much', 'ADV'), ('smaller', 'ADJ'), ('provision', 'NOUN'), ('than', 'SCONJ'), ('7000L', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('support', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('affluence', 'NOUN'), (' ', 'SPACE'), ('For', 'ADP'), ('their', 'PRON'), ('brothers', 'NOUN'), ('sake', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('she', 'PRON'), ('rejoiced', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('reproached', 'VERB'), ('herself', 'PRON'), ('for', 'ADP'), ('being', 'AUX'), ('unjust', 'ADJ'), ('to', 'ADP'), ('his', 'PRON'), ('merit', 'NOUN'), ('before', 'ADP'), ('\n', 'SPACE'), ('in', 'ADP'), ('believing', 'VERB'), ('him', 'PRON'), ('incapable', 'ADJ'), ('of', 'ADP'), ('generosity', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('attentive', 'ADJ'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('his', 'PRON'), ('sisters', 'NOUN'), ('convinced', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('their', 'PRON'), ('welfare', 'NOUN'), ('was', 'AUX'), ('dear', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('for', 'ADP'), ('a', 'DET'), ('long', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('firmly', 'ADV'), ('relied', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('liberality', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('intentions', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('contempt', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('very', 'ADV'), ('early', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('felt', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('daughterinlaw', 'NOUN'), ('was', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('increased', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('farther', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('character', 'NOUN'), ('which', 'DET'), ('half', 'DET'), ('\n', 'SPACE'), ('a', 'DET'), ('years', 'NOUN'), ('residence', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('family', 'NOUN'), ('afforded', 'VERB'), ('and', 'CCONJ'), ('perhaps', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('consideration', 'NOUN'), ('of', 'ADP'), ('politeness', 'NOUN'), ('or', 'CCONJ'), ('maternal', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('the', 'DET'), ('two', 'NUM'), ('ladies', 'NOUN'), ('might', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('found', 'VERB'), ('it', 'PRON'), ('impossible', 'ADJ'), ('to', 'PART'), ('have', 'AUX'), ('lived', 'VERB'), ('together', 'ADV'), ('so', 'ADV'), ('long', 'ADV'), ('\n', 'SPACE'), ('had', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('particular', 'ADJ'), ('circumstance', 'NOUN'), ('occurred', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('still', 'ADV'), ('greater', 'ADJ'), ('eligibility', 'NOUN'), ('according', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('opinions', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('to', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('continuance', 'NOUN'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('circumstance', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('growing', 'VERB'), ('attachment', 'NOUN'), ('between', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('eldest', 'ADJ'), ('girl', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('brother', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('a', 'DET'), ('gentlemanlike', 'NOUN'), ('and', 'CCONJ'), ('pleasing', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('introduced', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('soon', 'ADV'), ('after', 'SCONJ'), ('his', 'PRON'), ('sisters', 'NOUN'), ('establishment', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('who', 'PRON'), ('had', 'AUX'), ('since', 'SCONJ'), ('spent', 'VERB'), ('the', 'DET'), ('greatest', 'ADJ'), ('part', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('time', 'NOUN'), ('there', 'ADV'), ('\n\n', 'SPACE'), ('Some', 'DET'), ('mothers', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('encouraged', 'VERB'), ('the', 'DET'), ('intimacy', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('motives', 'NOUN'), ('of', 'ADP'), ('interest', 'NOUN'), ('for', 'ADP'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('eldest', 'ADJ'), ('son', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('died', 'VERB'), ('very', 'ADV'), ('rich', 'ADJ'), ('and', 'CCONJ'), ('some', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('repressed', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('from', 'ADP'), ('motives', 'NOUN'), ('of', 'ADP'), ('prudence', 'NOUN'), ('for', 'ADP'), ('except', 'SCONJ'), ('a', 'DET'), ('trifling', 'NOUN'), ('sum', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('fortune', 'NOUN'), ('depended', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('will', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('alike', 'ADV'), ('uninfluenced', 'VERB'), ('by', 'ADP'), ('either', 'DET'), ('consideration', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('for', 'ADP'), ('her', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('appeared', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('amiable', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('loved', 'VERB'), ('her', 'PRON'), ('daughter', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('returned', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('partiality', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('contrary', 'ADJ'), ('to', 'ADP'), ('every', 'DET'), ('doctrine', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('hers', 'NOUN'), ('that', 'DET'), ('difference', 'NOUN'), ('of', 'ADP'), ('fortune', 'NOUN'), ('should', 'AUX'), ('keep', 'VERB'), ('any', 'DET'), ('couple', 'NOUN'), ('\n', 'SPACE'), ('asunder', 'ADV'), ('who', 'PRON'), ('were', 'AUX'), ('attracted', 'VERB'), ('by', 'ADP'), ('resemblance', 'NOUN'), ('of', 'ADP'), ('disposition', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('Elinors', 'NOUN'), ('merit', 'NOUN'), ('should', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('acknowledged', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('every', 'DET'), ('one', 'NOUN'), ('who', 'PRON'), ('knew', 'VERB'), ('her', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('her', 'PRON'), ('comprehension', 'NOUN'), ('impossible', 'ADJ'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('recommended', 'VERB'), ('to', 'ADP'), ('their', 'PRON'), ('good', 'ADJ'), ('\n', 'SPACE'), ('opinion', 'NOUN'), ('by', 'ADP'), ('any', 'DET'), ('peculiar', 'ADJ'), ('graces', 'NOUN'), ('of', 'ADP'), ('person', 'NOUN'), ('or', 'CCONJ'), ('address', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('handsome', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('manners', 'NOUN'), ('required', 'VERB'), ('intimacy', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('pleasing', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('diffident', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('justice', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('himself', 'PRON'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('his', 'PRON'), ('natural', 'ADJ'), ('shyness', 'NOUN'), ('was', 'AUX'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('gave', 'VERB'), ('every', 'DET'), ('indication', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('open', 'ADJ'), ('\n', 'SPACE'), ('affectionate', 'ADJ'), ('heart', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('understanding', 'NOUN'), ('was', 'AUX'), ('good', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('education', 'NOUN'), ('had', 'AUX'), ('given', 'VERB'), ('it', 'PRON'), ('solid', 'ADJ'), ('improvement', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('neither', 'PRON'), ('fitted', 'VERB'), ('by', 'ADP'), ('abilities', 'NOUN'), ('nor', 'CCONJ'), ('disposition', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('answer', 'VERB'), ('the', 'DET'), ('wishes', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('who', 'PRON'), ('longed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('distinguishedasthey', 'PRON'), ('hardly', 'ADV'), ('knew', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('wanted', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('fine', 'ADJ'), ('figure', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('in', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('manner', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('mother', 'NOUN'), ('wished', 'VERB'), ('to', 'PART'), ('interest', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('\n', 'SPACE'), ('political', 'ADJ'), ('concerns', 'NOUN'), ('to', 'PART'), ('get', 'VERB'), ('him', 'PRON'), ('into', 'ADP'), ('parliament', 'NOUN'), ('or', 'CCONJ'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('connected', 'VERB'), ('with', 'ADP'), ('some', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('great', 'ADJ'), ('men', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('wished', 'VERB'), ('it', 'PRON'), ('likewise', 'ADV'), ('but', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('mean', 'NOUN'), ('while', 'SCONJ'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('one', 'NUM'), ('of', 'ADP'), ('these', 'DET'), ('superior', 'ADJ'), ('blessings', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('attained', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('quieted', 'VERB'), ('her', 'PRON'), ('ambition', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('driving', 'VERB'), ('a', 'DET'), ('barouche', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Edward', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('turn', 'NOUN'), ('for', 'ADP'), ('great', 'ADJ'), ('men', 'NOUN'), ('or', 'CCONJ'), ('barouches', 'NOUN'), ('\n', 'SPACE'), ('All', 'DET'), ('his', 'PRON'), ('wishes', 'NOUN'), ('centered', 'VERB'), ('in', 'ADP'), ('domestic', 'ADJ'), ('comfort', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('quiet', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('private', 'ADJ'), ('life', 'NOUN'), (' ', 'SPACE'), ('Fortunately', 'ADV'), ('he', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('younger', 'ADJ'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('was', 'AUX'), ('more', 'ADV'), ('promising', 'ADJ'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('staying', 'VERB'), ('several', 'ADJ'), ('weeks', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('he', 'PRON'), ('engaged', 'VERB'), ('much', 'ADJ'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('in', 'ADP'), ('such', 'ADJ'), ('affliction', 'NOUN'), ('as', 'SCONJ'), ('rendered', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('careless', 'NOUN'), ('of', 'ADP'), ('surrounding', 'VERB'), ('objects', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('only', 'ADV'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('quiet', 'ADJ'), ('and', 'CCONJ'), ('unobtrusive', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('liked', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('disturb', 'VERB'), ('the', 'DET'), ('wretchedness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('by', 'ADP'), ('\n', 'SPACE'), ('illtimed', 'ADJ'), ('conversation', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('first', 'ADV'), ('called', 'VERB'), ('to', 'PART'), ('observe', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('approve', 'VERB'), ('him', 'PRON'), ('farther', 'ADV'), ('by', 'ADP'), ('a', 'DET'), ('reflection', 'NOUN'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('chanced', 'VERB'), ('one', 'NUM'), ('day', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('difference', 'NOUN'), ('between', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('contrast', 'NOUN'), ('which', 'PRON'), ('recommended', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('most', 'ADV'), ('forcibly', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('enough', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('unlike', 'ADP'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('is', 'AUX'), ('enough', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('implies', 'VERB'), ('everything', 'PRON'), ('amiable', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('love', 'VERB'), ('him', 'PRON'), ('already', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('like', 'VERB'), ('him', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('when', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('know', 'VERB'), ('more', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Like', 'ADP'), ('him', 'PRON'), ('replied', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('feel', 'VERB'), ('no', 'DET'), ('sentiment', 'NOUN'), ('of', 'ADP'), ('approbation', 'NOUN'), ('inferior', 'ADJ'), ('to', 'PART'), ('love', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('esteem', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('yet', 'ADV'), ('known', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('separate', 'VERB'), ('\n', 'SPACE'), ('esteem', 'NOUN'), ('and', 'CCONJ'), ('love', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('now', 'ADV'), ('took', 'VERB'), ('pains', 'NOUN'), ('to', 'PART'), ('get', 'AUX'), ('acquainted', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('Her', 'PRON'), ('manners', 'NOUN'), ('were', 'AUX'), ('attaching', 'VERB'), ('and', 'CCONJ'), ('soon', 'ADV'), ('banished', 'VERB'), ('his', 'PRON'), ('reserve', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('speedily', 'ADV'), ('comprehended', 'VERB'), ('all', 'DET'), ('his', 'PRON'), ('merits', 'NOUN'), ('the', 'DET'), ('persuasion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('Elinor', 'PROPN'), ('perhaps', 'ADV'), ('assisted', 'VERB'), ('her', 'PRON'), ('penetration', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('really', 'ADV'), ('felt', 'VERB'), ('assured', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('worth', 'NOUN'), ('and', 'CCONJ'), ('even', 'ADV'), ('that', 'DET'), ('\n', 'SPACE'), ('quietness', 'NOUN'), ('of', 'ADP'), ('manner', 'NOUN'), ('which', 'PRON'), ('militated', 'VERB'), ('against', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('\n', 'SPACE'), ('established', 'VERB'), ('ideas', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('a', 'DET'), ('young', 'ADJ'), ('mans', 'NOUN'), ('address', 'NOUN'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('was', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('uninteresting', 'ADJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('his', 'PRON'), ('heart', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('warm', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('temper', 'NOUN'), ('affectionate', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'ADV'), ('sooner', 'ADV'), ('did', 'AUX'), ('she', 'PRON'), ('perceive', 'VERB'), ('any', 'DET'), ('symptom', 'NOUN'), ('of', 'ADP'), ('love', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('than', 'SCONJ'), ('she', 'PRON'), ('considered', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('serious', 'ADJ'), ('attachment', 'NOUN'), ('as', 'ADP'), ('certain', 'ADJ'), ('and', 'CCONJ'), ('looked', 'VERB'), ('forward', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('their', 'PRON'), ('marriage', 'NOUN'), ('as', 'ADP'), ('rapidly', 'ADV'), ('approaching', 'VERB'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('my', 'PRON'), ('dear', 'NOUN'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('will', 'AUX'), ('in', 'ADP'), ('all', 'DET'), ('probability', 'NOUN'), ('be', 'AUX'), ('settled', 'VERB'), ('for', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('shall', 'AUX'), ('miss', 'VERB'), ('her', 'PRON'), ('but', 'CCONJ'), ('SHE', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Mamma', 'PROPN'), ('how', 'SCONJ'), ('shall', 'AUX'), ('we', 'PRON'), ('do', 'VERB'), ('without', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('love', 'NOUN'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('scarcely', 'ADV'), ('a', 'DET'), ('separation', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('shall', 'AUX'), ('live', 'VERB'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('miles', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('and', 'CCONJ'), ('shall', 'AUX'), ('\n', 'SPACE'), ('meet', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('lives', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('gain', 'VERB'), ('a', 'DET'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('real', 'ADJ'), ('affectionate', 'ADJ'), ('brother', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('the', 'DET'), ('highest', 'ADJ'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('heart', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('look', 'VERB'), ('grave', 'ADJ'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('do', 'AUX'), ('you', 'PRON'), ('disapprove', 'VERB'), ('your', 'PRON'), ('sisters', 'NOUN'), ('choice', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('may', 'AUX'), ('consider', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('is', 'AUX'), ('very', 'ADV'), ('amiable', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('love', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('tenderly', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('yethe', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('young', 'ADJ'), ('\n', 'SPACE'), ('manthere', 'NOUN'), ('is', 'AUX'), ('something', 'PRON'), ('wantinghis', 'DET'), ('figure', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('striking', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('has', 'VERB'), ('none', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('grace', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('expect', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('seriously', 'ADV'), ('attach', 'VERB'), ('my', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('eyes', 'NOUN'), ('want', 'VERB'), ('all', 'DET'), ('that', 'DET'), ('spirit', 'NOUN'), ('that', 'DET'), ('fire', 'NOUN'), ('which', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), ('\n', 'SPACE'), ('announce', 'VERB'), ('virtue', 'NOUN'), ('and', 'CCONJ'), ('intelligence', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('besides', 'SCONJ'), ('all', 'DET'), ('this', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('Mamma', 'PROPN'), ('he', 'PRON'), ('has', 'VERB'), ('no', 'DET'), ('real', 'ADJ'), ('taste', 'NOUN'), (' ', 'SPACE'), ('Music', 'PROPN'), ('seems', 'VERB'), ('\n', 'SPACE'), ('scarcely', 'ADV'), ('to', 'PART'), ('attract', 'VERB'), ('him', 'PRON'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('he', 'PRON'), ('admires', 'VERB'), ('Elinors', 'NOUN'), ('\n', 'SPACE'), ('drawings', 'NOUN'), ('very', 'ADV'), ('much', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('admiration', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('can', 'AUX'), ('understand', 'VERB'), ('their', 'PRON'), ('worth', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('evident', 'ADJ'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('frequent', 'ADJ'), ('attention', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('while', 'SCONJ'), ('she', 'PRON'), ('draws', 'VERB'), ('that', 'PRON'), ('in', 'ADP'), ('fact', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('knows', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('admires', 'VERB'), ('as', 'ADP'), ('a', 'DET'), ('lover', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('as', 'ADP'), ('a', 'DET'), ('connoisseur', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('satisfy', 'VERB'), ('me', 'PRON'), ('those', 'DET'), ('characters', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('united', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('happy', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('whose', 'DET'), ('\n', 'SPACE'), ('taste', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('every', 'DET'), ('point', 'NOUN'), ('coincide', 'NOUN'), ('with', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('He', 'PRON'), ('must', 'AUX'), ('enter', 'VERB'), ('into', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('feelings', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('books', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('music', 'NOUN'), ('must', 'AUX'), ('charm', 'VERB'), ('us', 'PRON'), ('both', 'DET'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('mama', 'NOUN'), ('how', 'SCONJ'), ('spiritless', 'ADJ'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('tame', 'NOUN'), ('was', 'AUX'), ('Edwards', 'PROPN'), ('manner', 'NOUN'), ('in', 'ADP'), ('reading', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('last', 'ADJ'), ('night', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('for', 'ADP'), ('my', 'PRON'), ('sister', 'NOUN'), ('most', 'ADV'), ('severely', 'ADV'), (' ', 'SPACE'), ('Yet', 'CCONJ'), ('she', 'PRON'), ('bore', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('composure', 'NOUN'), ('she', 'PRON'), ('seemed', 'VERB'), ('scarcely', 'ADV'), ('to', 'PART'), ('notice', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('hardly', 'ADV'), ('keep', 'VERB'), ('my', 'PRON'), ('seat', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('hear', 'VERB'), ('those', 'DET'), ('beautiful', 'ADJ'), ('lines', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('have', 'AUX'), ('frequently', 'ADV'), ('almost', 'ADV'), ('driven', 'VERB'), ('me', 'PRON'), ('wild', 'ADJ'), ('pronounced', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('such', 'ADJ'), ('impenetrable', 'ADJ'), ('calmness', 'NOUN'), ('such', 'ADJ'), ('dreadful', 'ADJ'), ('indifference', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('would', 'AUX'), ('certainly', 'ADV'), ('have', 'AUX'), ('done', 'VERB'), ('more', 'ADJ'), ('justice', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('elegant', 'ADJ'), ('prose', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('so', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('you', 'PRON'), ('WOULD', 'AUX'), ('give', 'VERB'), ('him', 'PRON'), ('Cowper', 'PROPN'), ('\n\n', 'SPACE'), ('Nay', 'PROPN'), ('Mamma', 'PROPN'), ('if', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('animated', 'VERB'), ('by', 'ADP'), ('Cowper', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('allow', 'VERB'), ('for', 'ADP'), ('difference', 'NOUN'), ('of', 'ADP'), ('taste', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('has', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('my', 'PRON'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('she', 'PRON'), ('may', 'AUX'), ('overlook', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('be', 'AUX'), ('happy', 'ADJ'), ('with', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('broke', 'VERB'), ('MY', 'PRON'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('I', 'PRON'), ('loved', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('him', 'PRON'), ('read', 'VERB'), ('with', 'ADP'), ('so', 'ADV'), ('little', 'ADJ'), ('sensibility', 'NOUN'), ('\n', 'SPACE'), ('Mama', 'PROPN'), ('the', 'PRON'), ('more', 'ADV'), ('I', 'PRON'), ('know', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('the', 'PRON'), ('more', 'ADJ'), ('am', 'AUX'), ('I', 'PRON'), ('convinced', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('never', 'ADV'), ('see', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('whom', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('really', 'ADV'), ('love', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('require', 'VERB'), ('so', 'ADV'), ('much', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('must', 'AUX'), ('have', 'VERB'), ('all', 'DET'), ('Edwards', 'PROPN'), ('virtues', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('person', 'NOUN'), ('and', 'CCONJ'), ('manners', 'NOUN'), ('must', 'AUX'), ('ornament', 'VERB'), ('his', 'PRON'), ('goodness', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('every', 'DET'), ('possible', 'ADJ'), ('charm', 'NOUN'), ('\n\n', 'SPACE'), ('Remember', 'VERB'), ('my', 'PRON'), ('love', 'NOUN'), ('that', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('seventeen', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('yet', 'ADV'), ('too', 'ADV'), ('early', 'ADJ'), ('in', 'ADP'), ('life', 'NOUN'), ('to', 'ADP'), ('despair', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('be', 'AUX'), ('less', 'ADV'), ('fortunate', 'ADJ'), ('than', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('\n', 'SPACE'), ('one', 'NUM'), ('circumstance', 'NOUN'), ('only', 'ADV'), ('my', 'PRON'), ('Marianne', 'PROPN'), ('may', 'AUX'), ('your', 'PRON'), ('destiny', 'NOUN'), ('be', 'AUX'), ('\n', 'SPACE'), ('different', 'ADJ'), ('from', 'ADP'), ('hers', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('4', 'NUM'), ('\n\n\n', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('pity', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('should', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('taste', 'NOUN'), ('for', 'ADP'), ('drawing', 'VERB'), ('\n\n', 'SPACE'), ('No', 'DET'), ('taste', 'NOUN'), ('for', 'ADP'), ('drawing', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('why', 'SCONJ'), ('should', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('think', 'VERB'), ('so', 'ADV'), ('He', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('draw', 'VERB'), ('himself', 'PRON'), ('indeed', 'ADV'), ('but', 'CCONJ'), ('he', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('great', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('seeing', 'VERB'), ('the', 'DET'), ('performances', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('he', 'PRON'), ('is', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('deficient', 'ADJ'), ('in', 'ADP'), ('natural', 'ADJ'), ('taste', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('had', 'VERB'), ('opportunities', 'NOUN'), ('of', 'ADP'), ('improving', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('ever', 'ADV'), ('been', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('way', 'NOUN'), ('of', 'ADP'), ('learning', 'VERB'), ('I', 'PRON'), ('think', 'VERB'), ('he', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('drawn', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('distrusts', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('judgment', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'ADJ'), ('matters', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('that', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('always', 'ADV'), ('unwilling', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('his', 'PRON'), ('opinion', 'NOUN'), ('on', 'ADP'), ('any', 'DET'), ('picture', 'NOUN'), ('but', 'CCONJ'), ('he', 'PRON'), ('has', 'VERB'), ('an', 'DET'), ('innate', 'ADJ'), ('\n', 'SPACE'), ('propriety', 'NOUN'), ('and', 'CCONJ'), ('simplicity', 'NOUN'), ('of', 'ADP'), ('taste', 'NOUN'), ('which', 'PRON'), ('in', 'ADP'), ('general', 'ADJ'), ('\n', 'SPACE'), ('direct', 'VERB'), ('him', 'PRON'), ('perfectly', 'ADV'), ('right', 'ADV'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('afraid', 'ADJ'), ('of', 'ADP'), ('offending', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('approbation', 'NOUN'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('described', 'VERB'), ('as', 'ADP'), ('excited', 'ADJ'), ('in', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('drawings', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('\n', 'SPACE'), ('people', 'NOUN'), ('was', 'AUX'), ('very', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('that', 'DET'), ('rapturous', 'ADJ'), ('delight', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('could', 'AUX'), ('alone', 'ADV'), ('be', 'AUX'), ('called', 'VERB'), ('taste', 'NOUN'), (' ', 'SPACE'), ('Yet', 'ADV'), ('though', 'ADV'), ('\n', 'SPACE'), ('smiling', 'VERB'), ('within', 'ADP'), ('herself', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('mistake', 'NOUN'), ('she', 'PRON'), ('honoured', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('for', 'ADP'), ('that', 'DET'), ('blind', 'ADJ'), ('partiality', 'NOUN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('which', 'PRON'), ('produced', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('Marianne', 'PROPN'), ('continued', 'VERB'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('consider', 'VERB'), ('him', 'PRON'), ('as', 'ADP'), ('deficient', 'ADJ'), ('in', 'ADP'), ('general', 'ADJ'), ('taste', 'NOUN'), (' ', 'SPACE'), ('Indeed', 'ADV'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('may', 'AUX'), ('say', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('for', 'ADP'), ('your', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('perfectly', 'ADV'), ('cordial', 'ADJ'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('THAT', 'PRON'), ('were', 'AUX'), ('your', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('could', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('civil', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('hardly', 'ADV'), ('knew', 'VERB'), ('what', 'PRON'), ('to', 'PART'), ('say', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('wound', 'VERB'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('on', 'ADP'), ('any', 'DET'), ('account', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('yet', 'ADV'), ('to', 'PART'), ('say', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('was', 'AUX'), ('impossible', 'ADJ'), ('\n', 'SPACE'), ('At', 'ADP'), ('length', 'NOUN'), ('she', 'PRON'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('offended', 'VERB'), ('Elinor', 'PROPN'), ('if', 'SCONJ'), ('my', 'PRON'), ('praise', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('equal', 'ADJ'), ('to', 'ADP'), ('your', 'PRON'), ('sense', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('merits', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('had', 'VERB'), ('so', 'ADV'), ('many', 'ADJ'), ('opportunities', 'NOUN'), ('of', 'ADP'), ('estimating', 'VERB'), ('the', 'DET'), ('minuter', 'NOUN'), ('\n', 'SPACE'), ('propensities', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('his', 'PRON'), ('inclinations', 'NOUN'), ('and', 'CCONJ'), ('tastes', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('you', 'PRON'), ('have', 'VERB'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('the', 'DET'), ('highest', 'ADJ'), ('opinion', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('goodness', 'NOUN'), ('and', 'CCONJ'), ('sense', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('worthy', 'ADJ'), ('and', 'CCONJ'), ('amiable', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('his', 'PRON'), ('dearest', 'ADJ'), ('friends', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('dissatisfied', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('such', 'ADJ'), ('commendation', 'NOUN'), ('as', 'SCONJ'), ('that', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('perceive', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('you', 'PRON'), ('could', 'AUX'), ('express', 'VERB'), ('yourself', 'PRON'), ('more', 'ADV'), ('warmly', 'ADV'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('rejoiced', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('so', 'ADV'), ('easily', 'ADV'), ('pleased', 'VERB'), ('\n\n', 'SPACE'), ('Of', 'ADP'), ('his', 'PRON'), ('sense', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('goodness', 'NOUN'), ('continued', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('no', 'DET'), ('one', 'NOUN'), ('can', 'AUX'), ('I', 'PRON'), ('think', 'VERB'), ('be', 'AUX'), ('in', 'ADP'), ('doubt', 'NOUN'), ('who', 'PRON'), ('has', 'AUX'), ('seen', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('often', 'ADV'), ('enough', 'ADJ'), ('to', 'PART'), ('engage', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('unreserved', 'ADJ'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('excellence', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('understanding', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('principles', 'NOUN'), ('\n', 'SPACE'), ('can', 'AUX'), ('be', 'AUX'), ('concealed', 'VERB'), ('only', 'ADV'), ('by', 'ADP'), ('that', 'DET'), ('shyness', 'NOUN'), ('which', 'PRON'), ('too', 'ADV'), ('often', 'ADV'), ('\n', 'SPACE'), ('keeps', 'VERB'), ('him', 'PRON'), ('silent', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('enough', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('justice', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('solid', 'ADJ'), ('worth', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('of', 'ADP'), ('his', 'PRON'), ('minuter', 'NOUN'), ('propensities', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('you', 'PRON'), ('call', 'VERB'), ('them', 'PRON'), ('you', 'PRON'), ('have', 'VERB'), ('from', 'ADP'), ('peculiar', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('been', 'AUX'), ('kept', 'VERB'), ('more', 'ADV'), ('ignorant', 'ADJ'), ('than', 'ADP'), ('myself', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('at', 'ADP'), ('times', 'NOUN'), ('thrown', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('deal', 'NOUN'), ('together', 'ADV'), ('while', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('wholly', 'ADV'), ('engrossed', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('affectionate', 'ADJ'), ('\n', 'SPACE'), ('principle', 'NOUN'), ('by', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('studied', 'VERB'), ('his', 'PRON'), ('sentiments', 'NOUN'), ('and', 'CCONJ'), ('heard', 'VERB'), ('his', 'PRON'), ('opinion', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('subjects', 'NOUN'), ('of', 'ADP'), ('literature', 'NOUN'), ('and', 'CCONJ'), ('taste', 'NOUN'), ('and', 'CCONJ'), ('upon', 'SCONJ'), ('the', 'DET'), ('whole', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('venture', 'VERB'), ('to', 'PART'), ('pronounce', 'VERB'), ('that', 'SCONJ'), ('his', 'PRON'), ('mind', 'NOUN'), ('is', 'AUX'), ('wellinformed', 'VERB'), ('\n', 'SPACE'), ('enjoyment', 'NOUN'), ('of', 'ADP'), ('books', 'NOUN'), ('exceedingly', 'ADV'), ('great', 'ADJ'), ('his', 'PRON'), ('imagination', 'NOUN'), ('lively', 'ADJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('observation', 'NOUN'), ('just', 'ADV'), ('and', 'CCONJ'), ('correct', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('taste', 'NOUN'), ('delicate', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pure', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('abilities', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('respect', 'NOUN'), ('improve', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('much', 'ADJ'), ('upon', 'SCONJ'), ('acquaintance', 'NOUN'), ('as', 'ADP'), ('his', 'PRON'), ('manners', 'NOUN'), ('and', 'CCONJ'), ('person', 'NOUN'), ('\n', 'SPACE'), ('At', 'ADP'), ('first', 'ADJ'), ('sight', 'NOUN'), ('his', 'PRON'), ('address', 'NOUN'), ('is', 'AUX'), ('certainly', 'ADV'), ('not', 'PART'), ('striking', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('person', 'NOUN'), ('can', 'AUX'), ('hardly', 'ADV'), ('be', 'AUX'), ('called', 'VERB'), ('handsome', 'ADJ'), ('till', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('expression', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('eyes', 'NOUN'), ('which', 'PRON'), ('are', 'AUX'), ('uncommonly', 'ADV'), ('good', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('general', 'ADJ'), ('sweetness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('countenance', 'NOUN'), ('is', 'AUX'), ('perceived', 'VERB'), ('\n', 'SPACE'), ('At', 'ADP'), ('present', 'ADJ'), ('I', 'PRON'), ('know', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('well', 'ADV'), ('that', 'SCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('really', 'ADV'), ('handsome', 'ADJ'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('almost', 'ADV'), ('so', 'SCONJ'), (' ', 'SPACE'), ('What', 'PRON'), ('say', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('very', 'ADV'), ('soon', 'ADV'), ('think', 'VERB'), ('him', 'PRON'), ('handsome', 'ADJ'), ('Elinor', 'PROPN'), ('if', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('do', 'AUX'), ('not', 'PART'), ('now', 'ADV'), (' ', 'SPACE'), ('When', 'SCONJ'), ('you', 'PRON'), ('tell', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('love', 'VERB'), ('him', 'PRON'), ('as', 'ADP'), ('a', 'DET'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('no', 'PRON'), ('more', 'ADV'), ('see', 'VERB'), ('imperfection', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('face', 'NOUN'), ('than', 'SCONJ'), ('I', 'PRON'), ('now', 'ADV'), ('do', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('heart', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('started', 'VERB'), ('at', 'ADP'), ('this', 'DET'), ('declaration', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('sorry', 'ADJ'), ('for', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('warmth', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('betrayed', 'VERB'), ('into', 'ADP'), ('in', 'ADP'), ('speaking', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('felt', 'VERB'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('stood', 'VERB'), ('very', 'ADV'), ('high', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('believed', 'VERB'), ('the', 'DET'), ('regard', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('mutual', 'ADJ'), ('but', 'CCONJ'), ('she', 'PRON'), ('required', 'VERB'), ('\n', 'SPACE'), ('greater', 'ADJ'), ('certainty', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('Mariannes', 'PROPN'), ('conviction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('attachment', 'NOUN'), ('agreeable', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('knew', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('what', 'PRON'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('conjectured', 'VERB'), ('one', 'NUM'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('believed', 'VERB'), ('the', 'DET'), ('nextthat', 'NOUN'), ('with', 'SCONJ'), ('them', 'PRON'), ('to', 'PART'), ('wish', 'VERB'), ('was', 'AUX'), ('to', 'PART'), ('hope', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('hope', 'VERB'), ('was', 'AUX'), ('to', 'PART'), ('expect', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('tried', 'VERB'), ('to', 'PART'), ('explain', 'VERB'), ('the', 'DET'), ('real', 'ADJ'), ('\n', 'SPACE'), ('state', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('case', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('attempt', 'VERB'), ('to', 'PART'), ('deny', 'VERB'), ('said', 'VERB'), ('she', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('highly', 'ADV'), ('of', 'ADP'), ('himthat', 'PRON'), ('I', 'PRON'), ('greatly', 'ADV'), ('esteem', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('like', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('here', 'ADV'), ('burst', 'VERB'), ('forth', 'ADV'), ('with', 'ADP'), ('indignation', 'NOUN'), ('\n\n', 'SPACE'), ('Esteem', 'VERB'), ('him', 'PRON'), ('Like', 'ADP'), ('him', 'PRON'), ('Coldhearted', 'VERB'), ('Elinor', 'PROPN'), ('Oh', 'INTJ'), ('\n', 'SPACE'), ('worse', 'ADJ'), ('than', 'SCONJ'), ('coldhearted', 'VERB'), ('Ashamed', 'PROPN'), ('of', 'ADP'), ('being', 'AUX'), ('otherwise', 'ADV'), ('\n', 'SPACE'), ('Use', 'VERB'), ('those', 'DET'), ('words', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('leave', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('this', 'DET'), ('moment', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('laughing', 'VERB'), (' ', 'SPACE'), ('Excuse', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('and', 'CCONJ'), ('be', 'AUX'), ('assured', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('meant', 'VERB'), ('no', 'DET'), ('offence', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('speaking', 'VERB'), ('in', 'ADP'), ('so', 'ADV'), ('quiet', 'ADJ'), ('a', 'DET'), ('way', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('Believe', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('stronger', 'ADJ'), ('than', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('declared', 'VERB'), ('\n', 'SPACE'), ('believe', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('short', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('his', 'PRON'), ('merit', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('suspicionthe', 'PRON'), ('hope', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('may', 'AUX'), ('warrant', 'VERB'), ('\n', 'SPACE'), ('without', 'ADP'), ('imprudence', 'NOUN'), ('or', 'CCONJ'), ('folly', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('farther', 'ADV'), ('than', 'ADP'), ('this', 'PRON'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('believe', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('assured', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('There', 'PRON'), ('are', 'VERB'), ('moments', 'NOUN'), ('when', 'SCONJ'), ('the', 'DET'), ('extent', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('seems', 'VERB'), ('doubtful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('his', 'PRON'), ('sentiments', 'NOUN'), ('are', 'AUX'), ('fully', 'ADV'), ('known', 'VERB'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('wonder', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('my', 'PRON'), ('wishing', 'NOUN'), ('to', 'PART'), ('avoid', 'VERB'), ('any', 'DET'), ('encouragement', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('partiality', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('believing', 'VERB'), ('or', 'CCONJ'), ('calling', 'VERB'), ('it', 'PRON'), ('more', 'ADJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), (' ', 'SPACE'), ('In', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('feel', 'VERB'), ('littlescarcely', 'ADV'), ('any', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('preference', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('there', 'PRON'), ('are', 'VERB'), ('other', 'ADJ'), ('points', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('considered', 'VERB'), ('besides', 'SCONJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('inclination', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('being', 'AUX'), ('independent', 'ADJ'), ('\n', 'SPACE'), ('What', 'PRON'), ('his', 'PRON'), ('mother', 'NOUN'), ('really', 'ADV'), ('is', 'AUX'), ('we', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('but', 'CCONJ'), ('from', 'ADP'), ('Fannys', 'PROPN'), ('\n', 'SPACE'), ('occasional', 'ADJ'), ('mention', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('conduct', 'NOUN'), ('and', 'CCONJ'), ('opinions', 'NOUN'), ('we', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('been', 'AUX'), ('disposed', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('her', 'PRON'), ('amiable', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('much', 'ADV'), ('mistaken', 'ADJ'), ('if', 'SCONJ'), ('Edward', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('himself', 'PRON'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('many', 'ADJ'), ('difficulties', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('way', 'NOUN'), ('if', 'SCONJ'), ('he', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('wish', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('marry', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('either', 'CCONJ'), ('a', 'DET'), ('great', 'ADJ'), ('fortune', 'NOUN'), ('or', 'CCONJ'), ('\n', 'SPACE'), ('high', 'ADJ'), ('rank', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('astonished', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('how', 'SCONJ'), ('much', 'ADJ'), ('the', 'DET'), ('imagination', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('herself', 'PRON'), ('had', 'AUX'), ('outstripped', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('you', 'PRON'), ('really', 'ADV'), ('are', 'AUX'), ('not', 'PART'), ('engaged', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('Yet', 'CCONJ'), ('it', 'PRON'), ('certainly', 'ADV'), ('soon', 'ADV'), ('will', 'AUX'), ('happen', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('two', 'NUM'), ('advantages', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('proceed', 'VERB'), ('from', 'ADP'), ('this', 'DET'), ('delay', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('lose', 'VERB'), ('you', 'PRON'), ('so', 'ADV'), ('soon', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('will', 'AUX'), ('have', 'VERB'), ('greater', 'ADJ'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('improving', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('natural', 'ADJ'), ('taste', 'NOUN'), ('for', 'ADP'), ('your', 'PRON'), ('favourite', 'ADJ'), ('pursuit', 'NOUN'), ('which', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('so', 'ADV'), ('indispensably', 'ADV'), ('necessary', 'ADJ'), ('to', 'ADP'), ('your', 'PRON'), ('future', 'ADJ'), ('felicity', 'NOUN'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('stimulated', 'VERB'), ('by', 'ADP'), ('your', 'PRON'), ('genius', 'NOUN'), ('as', 'ADP'), ('to', 'PART'), ('\n', 'SPACE'), ('learn', 'VERB'), ('to', 'PART'), ('draw', 'VERB'), ('himself', 'PRON'), ('how', 'SCONJ'), ('delightful', 'ADJ'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('real', 'ADJ'), ('opinion', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('consider', 'VERB'), ('her', 'PRON'), ('partiality', 'NOUN'), ('for', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('so', 'ADV'), ('prosperous', 'ADJ'), ('a', 'DET'), ('state', 'NOUN'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('believed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('There', 'PRON'), ('was', 'VERB'), ('at', 'ADP'), ('times', 'NOUN'), ('a', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('about', 'ADP'), ('him', 'PRON'), ('which', 'PRON'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('it', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('denote', 'ADJ'), ('indifference', 'NOUN'), ('spoke', 'VERB'), ('of', 'ADP'), ('something', 'PRON'), ('almost', 'ADV'), ('\n', 'SPACE'), ('as', 'ADP'), ('unpromising', 'VERB'), (' ', 'SPACE'), ('A', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('regard', 'NOUN'), ('supposing', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('feel', 'VERB'), ('it', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('more', 'ADJ'), ('than', 'SCONJ'), ('inquietude', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('likely', 'ADJ'), ('to', 'PART'), ('produce', 'VERB'), ('that', 'DET'), ('dejection', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('frequently', 'ADV'), ('attended', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('A', 'DET'), ('more', 'ADV'), ('reasonable', 'ADJ'), ('cause', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('found', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('dependent', 'ADJ'), ('situation', 'NOUN'), ('which', 'PRON'), ('forbade', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('indulgence', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('affection', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('knew', 'VERB'), ('that', 'SCONJ'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('neither', 'CCONJ'), ('behaved', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('so', 'SCONJ'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('home', 'NOUN'), ('comfortable', 'ADJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('present', 'ADJ'), ('nor', 'CCONJ'), ('to', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('any', 'DET'), ('assurance', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('form', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('home', 'NOUN'), ('for', 'ADP'), ('himself', 'PRON'), ('without', 'ADP'), ('strictly', 'ADV'), ('attending', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('views', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('aggrandizement', 'NOUN'), (' ', 'SPACE'), ('With', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('knowledge', 'NOUN'), ('as', 'SCONJ'), ('this', 'DET'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('Elinor', 'PROPN'), ('to', 'PART'), ('feel', 'VERB'), ('easy', 'ADJ'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('far', 'ADV'), ('from', 'ADP'), ('depending', 'VERB'), ('on', 'ADP'), ('that', 'DET'), ('result', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('preference', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('which', 'PRON'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('still', 'ADV'), ('considered', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('certain', 'ADJ'), (' ', 'SPACE'), ('Nay', 'PROPN'), ('the', 'PRON'), ('longer', 'ADV'), ('they', 'PRON'), ('were', 'AUX'), ('together', 'ADV'), ('the', 'DET'), ('more', 'ADV'), ('\n', 'SPACE'), ('doubtful', 'NOUN'), ('seemed', 'VERB'), ('the', 'DET'), ('nature', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('regard', 'NOUN'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('painful', 'ADJ'), ('minutes', 'NOUN'), ('she', 'PRON'), ('believed', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('no', 'PRON'), ('more', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('friendship', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('whatever', 'PRON'), ('might', 'AUX'), ('really', 'ADV'), ('be', 'AUX'), ('its', 'PRON'), ('limits', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('perceived', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('sister', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('uneasy', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('still', 'ADV'), ('more', 'ADV'), ('common', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('uncivil', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('took', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('affronting', 'VERB'), ('her', 'PRON'), ('motherinlaw', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('talking', 'VERB'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('so', 'ADV'), ('expressively', 'ADV'), ('of', 'ADP'), ('her', 'PRON'), ('brothers', 'NOUN'), ('great', 'ADJ'), ('expectations', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('resolution', 'NOUN'), ('that', 'SCONJ'), ('both', 'CCONJ'), ('her', 'PRON'), ('sons', 'NOUN'), ('should', 'AUX'), ('\n', 'SPACE'), ('marry', 'VERB'), ('well', 'ADV'), ('and', 'CCONJ'), ('of', 'ADP'), ('the', 'DET'), ('danger', 'NOUN'), ('attending', 'VERB'), ('any', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('attempted', 'VERB'), ('to', 'PART'), ('DRAW', 'VERB'), ('HIM', 'PRON'), ('IN', 'ADP'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('could', 'AUX'), ('\n', 'SPACE'), ('neither', 'CCONJ'), ('pretend', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('unconscious', 'ADJ'), ('nor', 'CCONJ'), ('endeavor', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('calm', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('gave', 'VERB'), ('her', 'PRON'), ('an', 'DET'), ('answer', 'NOUN'), ('which', 'PRON'), ('marked', 'VERB'), ('her', 'PRON'), ('contempt', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('instantly', 'ADV'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('resolving', 'VERB'), ('that', 'SCONJ'), ('whatever', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('the', 'DET'), ('inconvenience', 'NOUN'), ('or', 'CCONJ'), ('expense', 'NOUN'), ('of', 'ADP'), ('so', 'ADV'), ('sudden', 'ADJ'), ('a', 'DET'), ('removal', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('beloved', 'ADJ'), ('Elinor', 'PROPN'), ('should', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('exposed', 'VERB'), ('another', 'DET'), ('week', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('such', 'ADJ'), ('insinuations', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('this', 'DET'), ('state', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('a', 'DET'), ('letter', 'NOUN'), ('was', 'AUX'), ('delivered', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('post', 'NOUN'), ('which', 'PRON'), ('contained', 'VERB'), ('a', 'DET'), ('proposal', 'NOUN'), ('\n', 'SPACE'), ('particularly', 'ADV'), ('well', 'ADV'), ('timed', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('offer', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('small', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('very', 'ADV'), ('easy', 'ADJ'), ('terms', 'NOUN'), ('belonging', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('relation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('gentleman', 'NOUN'), ('of', 'ADP'), ('consequence', 'NOUN'), ('and', 'CCONJ'), ('property', 'NOUN'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('\n', 'SPACE'), ('The', 'DET'), ('letter', 'NOUN'), ('was', 'AUX'), ('from', 'ADP'), ('this', 'DET'), ('gentleman', 'NOUN'), ('himself', 'PRON'), ('and', 'CCONJ'), ('written', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('true', 'ADJ'), ('spirit', 'NOUN'), ('of', 'ADP'), ('friendly', 'ADJ'), ('accommodation', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('understood', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('need', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('dwelling', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('the', 'DET'), ('house', 'NOUN'), ('he', 'PRON'), ('now', 'ADV'), ('offered', 'VERB'), ('her', 'PRON'), ('was', 'AUX'), ('merely', 'ADV'), ('a', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('assured', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('everything', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('which', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('might', 'AUX'), ('think', 'VERB'), ('necessary', 'ADJ'), ('if', 'SCONJ'), ('the', 'DET'), ('situation', 'NOUN'), ('pleased', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('earnestly', 'ADV'), ('pressed', 'VERB'), ('her', 'PRON'), ('after', 'ADP'), ('giving', 'VERB'), ('the', 'DET'), ('particulars', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('garden', 'NOUN'), ('to', 'PART'), ('come', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('the', 'DET'), ('place', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('residence', 'NOUN'), ('from', 'ADP'), ('whence', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('might', 'AUX'), ('judge', 'VERB'), ('herself', 'PRON'), ('whether', 'SCONJ'), ('Barton', 'PROPN'), ('Cottage', 'PROPN'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('houses', 'NOUN'), ('were', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('parish', 'NOUN'), ('could', 'AUX'), ('by', 'ADP'), ('any', 'DET'), ('alteration', 'NOUN'), ('\n', 'SPACE'), ('be', 'AUX'), ('made', 'VERB'), ('comfortable', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('seemed', 'VERB'), ('really', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('accommodate', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('letter', 'NOUN'), ('was', 'AUX'), ('written', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('so', 'ADV'), ('friendly', 'ADJ'), ('a', 'DET'), ('style', 'NOUN'), ('as', 'SCONJ'), ('could', 'AUX'), ('not', 'PART'), ('fail', 'VERB'), ('of', 'ADP'), ('giving', 'VERB'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('cousin', 'NOUN'), ('more', 'ADV'), ('especially', 'ADV'), ('at', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('suffering', 'VERB'), ('under', 'ADP'), ('the', 'DET'), ('cold', 'ADJ'), ('and', 'CCONJ'), ('unfeeling', 'VERB'), ('behaviour', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('nearer', 'NOUN'), ('connections', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('needed', 'VERB'), ('no', 'DET'), ('time', 'NOUN'), ('for', 'ADP'), ('deliberation', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('inquiry', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('resolution', 'NOUN'), ('was', 'AUX'), ('formed', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('read', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('situation', 'NOUN'), ('of', 'ADP'), ('Barton', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('county', 'NOUN'), ('so', 'ADV'), ('far', 'ADV'), ('distant', 'ADJ'), ('from', 'ADP'), ('\n', 'SPACE'), ('Sussex', 'PROPN'), ('as', 'ADP'), ('Devonshire', 'PROPN'), ('which', 'PRON'), ('but', 'CCONJ'), ('a', 'DET'), ('few', 'ADJ'), ('hours', 'NOUN'), ('before', 'ADV'), ('\n', 'SPACE'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('sufficient', 'ADJ'), ('objection', 'NOUN'), ('to', 'PART'), ('outweigh', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('advantage', 'NOUN'), ('belonging', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('place', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('its', 'PRON'), ('\n', 'SPACE'), ('first', 'ADJ'), ('recommendation', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('quit', 'VERB'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('of', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('an', 'DET'), ('evil', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('desire', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('blessing', 'NOUN'), ('in', 'ADP'), ('comparison', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('continuing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('daughterinlaws', 'NOUN'), ('guest', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('remove', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('that', 'DET'), ('beloved', 'ADJ'), ('place', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('less', 'ADV'), ('painful', 'ADJ'), ('than', 'ADP'), ('to', 'ADP'), ('\n', 'SPACE'), ('inhabit', 'NOUN'), ('or', 'CCONJ'), ('visit', 'VERB'), ('it', 'PRON'), ('while', 'SCONJ'), ('such', 'DET'), ('a', 'DET'), ('woman', 'NOUN'), ('was', 'AUX'), ('its', 'PRON'), ('mistress', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('instantly', 'ADV'), ('wrote', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('Middleton', 'PROPN'), ('her', 'PRON'), ('acknowledgment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('kindness', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('acceptance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('proposal', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('hastened', 'VERB'), ('to', 'PART'), ('shew', 'VERB'), ('both', 'DET'), ('letters', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('secure', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('approbation', 'NOUN'), ('before', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('answer', 'NOUN'), ('were', 'AUX'), ('sent', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('always', 'ADV'), ('thought', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('prudent', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('them', 'PRON'), ('to', 'PART'), ('settle', 'VERB'), ('at', 'ADP'), ('some', 'DET'), ('distance', 'NOUN'), ('from', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('than', 'ADP'), ('immediately', 'ADV'), ('amongst', 'ADP'), ('their', 'PRON'), ('present', 'ADJ'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('On', 'ADP'), ('THAT', 'DET'), ('head', 'NOUN'), ('therefore', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('for', 'SCONJ'), ('her', 'PRON'), ('to', 'PART'), ('oppose', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('mothers', 'NOUN'), ('intention', 'NOUN'), ('of', 'ADP'), ('removing', 'VERB'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('\n', 'SPACE'), ('The', 'DET'), ('house', 'NOUN'), ('too', 'ADV'), ('as', 'SCONJ'), ('described', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('on', 'ADP'), ('so', 'ADV'), ('\n', 'SPACE'), ('simple', 'ADJ'), ('a', 'DET'), ('scale', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('rent', 'NOUN'), ('so', 'ADV'), ('uncommonly', 'ADV'), ('moderate', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('to', 'PART'), ('leave', 'VERB'), ('her', 'PRON'), ('no', 'INTJ'), ('right', 'NOUN'), ('of', 'ADP'), ('objection', 'NOUN'), ('on', 'ADP'), ('either', 'DET'), ('point', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('though', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('plan', 'NOUN'), ('which', 'PRON'), ('brought', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('charm', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('fancy', 'NOUN'), ('though', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('removal', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('vicinity', 'NOUN'), ('of', 'ADP'), ('Norland', 'PROPN'), ('beyond', 'ADP'), ('her', 'PRON'), ('wishes', 'NOUN'), ('she', 'PRON'), ('made', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('attempt', 'NOUN'), ('to', 'PART'), ('dissuade', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('from', 'ADP'), ('sending', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('acquiescence', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('5', 'NUM'), ('\n\n\n', 'SPACE'), ('No', 'ADV'), ('sooner', 'ADV'), ('was', 'AUX'), ('her', 'PRON'), ('answer', 'NOUN'), ('dispatched', 'VERB'), ('than', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('indulged', 'VERB'), ('herself', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('announcing', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('soninlaw', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('wife', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('provided', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('should', 'AUX'), ('incommode', 'VERB'), ('them', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), ('than', 'SCONJ'), ('till', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('ready', 'ADJ'), ('for', 'ADP'), ('her', 'PRON'), ('inhabiting', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('heard', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('said', 'VERB'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('her', 'PRON'), ('husband', 'NOUN'), ('civilly', 'ADV'), ('\n', 'SPACE'), ('hoped', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('settled', 'VERB'), ('far', 'ADV'), ('from', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('great', 'ADJ'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('replying', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('DevonshireEdward', 'PROPN'), ('turned', 'VERB'), ('hastily', 'ADV'), ('towards', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('hearing', 'VERB'), ('this', 'PRON'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('surprise', 'NOUN'), ('and', 'CCONJ'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('required', 'VERB'), ('no', 'DET'), ('explanation', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('repeated', 'VERB'), ('\n', 'SPACE'), ('Devonshire', 'PROPN'), ('Are', 'AUX'), ('you', 'PRON'), ('indeed', 'ADV'), ('going', 'VERB'), ('there', 'ADV'), (' ', 'SPACE'), ('So', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('hence', 'ADV'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('to', 'ADP'), ('what', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('explained', 'VERB'), ('the', 'DET'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('within', 'ADP'), ('four', 'NUM'), ('miles', 'NOUN'), ('northward', 'ADV'), ('of', 'ADP'), ('Exeter', 'PROPN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('but', 'CCONJ'), ('a', 'DET'), ('cottage', 'NOUN'), ('she', 'PRON'), ('continued', 'VERB'), ('but', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('many', 'ADJ'), ('of', 'ADP'), ('my', 'PRON'), ('friends', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('A', 'DET'), ('room', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('can', 'AUX'), ('\n', 'SPACE'), ('easily', 'ADV'), ('be', 'AUX'), ('added', 'VERB'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('my', 'PRON'), ('friends', 'NOUN'), ('find', 'VERB'), ('no', 'DET'), ('difficulty', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('travelling', 'VERB'), ('so', 'ADV'), ('far', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('me', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('will', 'AUX'), ('find', 'VERB'), ('\n', 'SPACE'), ('none', 'NOUN'), ('in', 'ADP'), ('accommodating', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('concluded', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('kind', 'ADJ'), ('invitation', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('to', 'PART'), ('visit', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('Edward', 'PROPN'), ('she', 'PRON'), ('gave', 'VERB'), ('one', 'NUM'), ('with', 'ADP'), ('still', 'ADV'), ('greater', 'ADJ'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('Though', 'SCONJ'), ('her', 'PRON'), ('late', 'ADJ'), ('conversation', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('daughterinlaw', 'NOUN'), ('had', 'AUX'), ('\n', 'SPACE'), ('made', 'VERB'), ('her', 'PRON'), ('resolve', 'NOUN'), ('on', 'ADP'), ('remaining', 'VERB'), ('at', 'ADP'), ('Norland', 'PROPN'), ('no', 'ADV'), ('longer', 'ADV'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('unavoidable', 'ADJ'), ('it', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('produced', 'VERB'), ('the', 'DET'), ('smallest', 'ADJ'), ('effect', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('that', 'DET'), ('point', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('it', 'PRON'), ('principally', 'ADV'), ('tended', 'VERB'), ('\n', 'SPACE'), ('To', 'PART'), ('separate', 'VERB'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('as', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('being', 'AUX'), ('her', 'PRON'), ('\n', 'SPACE'), ('object', 'NOUN'), ('as', 'ADP'), ('ever', 'ADV'), ('and', 'CCONJ'), ('she', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('show', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('by', 'ADP'), ('this', 'DET'), ('pointed', 'VERB'), ('invitation', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('how', 'SCONJ'), ('totally', 'ADV'), ('she', 'PRON'), ('\n', 'SPACE'), ('disregarded', 'VERB'), ('her', 'PRON'), ('disapprobation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('match', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('told', 'VERB'), ('his', 'PRON'), ('mother', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('exceedingly', 'ADV'), ('sorry', 'ADJ'), ('he', 'PRON'), ('was', 'AUX'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('taken', 'VERB'), ('a', 'DET'), ('house', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('such', 'ADJ'), ('a', 'DET'), ('distance', 'NOUN'), ('from', 'ADP'), ('Norland', 'PROPN'), ('as', 'SCONJ'), ('to', 'PART'), ('prevent', 'VERB'), ('his', 'PRON'), ('being', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('service', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('removing', 'VERB'), ('her', 'PRON'), ('furniture', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('really', 'ADV'), ('felt', 'AUX'), ('\n', 'SPACE'), ('conscientiously', 'ADV'), ('vexed', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('very', 'ADJ'), ('exertion', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('limited', 'VERB'), ('the', 'DET'), ('performance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('promise', 'NOUN'), ('to', 'AUX'), ('\n', 'SPACE'), ('his', 'PRON'), ('father', 'NOUN'), ('was', 'AUX'), ('by', 'ADP'), ('this', 'DET'), ('arrangement', 'NOUN'), ('rendered', 'VERB'), ('impracticable', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('furniture', 'NOUN'), ('was', 'AUX'), ('all', 'PRON'), ('sent', 'VERB'), ('around', 'ADV'), ('by', 'ADP'), ('water', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('chiefly', 'ADV'), ('\n', 'SPACE'), ('consisted', 'VERB'), ('of', 'ADP'), ('household', 'NOUN'), ('linen', 'PROPN'), ('plate', 'PROPN'), ('china', 'PROPN'), ('and', 'CCONJ'), ('books', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('handsome', 'ADJ'), ('pianoforte', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('saw', 'VERB'), ('the', 'DET'), ('packages', 'NOUN'), ('depart', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('sigh', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('help', 'VERB'), ('feeling', 'VERB'), ('it', 'PRON'), ('hard', 'ADJ'), ('that', 'SCONJ'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('income', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('trifling', 'VERB'), ('in', 'ADP'), ('comparison', 'NOUN'), ('with', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('should', 'AUX'), ('have', 'VERB'), ('any', 'DET'), ('handsome', 'ADJ'), ('article', 'NOUN'), ('of', 'ADP'), ('furniture', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('took', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('twelvemonth', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('ready', 'ADJ'), ('furnished', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('have', 'VERB'), ('immediate', 'ADJ'), ('possession', 'NOUN'), ('\n', 'SPACE'), ('No', 'DET'), ('difficulty', 'NOUN'), ('arose', 'VERB'), ('on', 'ADP'), ('either', 'DET'), ('side', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('agreement', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('waited', 'VERB'), ('only', 'ADV'), ('for', 'ADP'), ('the', 'DET'), ('disposal', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('effects', 'NOUN'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('determine', 'VERB'), ('her', 'PRON'), ('future', 'ADJ'), ('household', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('set', 'VERB'), ('\n', 'SPACE'), ('off', 'ADP'), ('for', 'ADP'), ('the', 'DET'), ('west', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('exceedingly', 'ADV'), ('rapid', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('performance', 'NOUN'), ('of', 'ADP'), ('everything', 'PRON'), ('that', 'PRON'), ('interested', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('soon', 'ADV'), ('doneThe', 'ADJ'), ('horses', 'NOUN'), ('which', 'PRON'), ('were', 'AUX'), ('left', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('sold', 'VERB'), ('soon', 'ADV'), ('after', 'ADP'), ('his', 'PRON'), ('death', 'NOUN'), ('and', 'CCONJ'), ('an', 'DET'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('now', 'ADV'), ('offering', 'VERB'), ('of', 'ADP'), ('disposing', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('carriage', 'NOUN'), ('she', 'PRON'), ('agreed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('sell', 'VERB'), ('that', 'PRON'), ('likewise', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('earnest', 'ADJ'), ('advice', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('eldest', 'ADJ'), ('daughter', 'NOUN'), (' ', 'SPACE'), ('For', 'ADP'), ('the', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('had', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('consulted', 'VERB'), ('only', 'ADV'), ('her', 'PRON'), ('own', 'ADJ'), ('wishes', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('kept', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('discretion', 'NOUN'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('prevailed', 'VERB'), (' ', 'SPACE'), ('HER', 'PRON'), ('wisdom', 'NOUN'), ('\n', 'SPACE'), ('too', 'ADV'), ('limited', 'VERB'), ('the', 'DET'), ('number', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('servants', 'NOUN'), ('to', 'ADP'), ('three', 'NUM'), ('\n', 'SPACE'), ('two', 'NUM'), ('maids', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('with', 'ADP'), ('whom', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('speedily', 'ADV'), ('provided', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('amongst', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('had', 'AUX'), ('formed', 'VERB'), ('their', 'PRON'), ('establishment', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('man', 'NOUN'), ('and', 'CCONJ'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('maids', 'NOUN'), ('were', 'AUX'), ('sent', 'VERB'), ('off', 'ADP'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('to', 'PART'), ('prepare', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('mistresss', 'NOUN'), ('\n', 'SPACE'), ('arrival', 'NOUN'), ('for', 'ADP'), ('as', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('entirely', 'ADV'), ('unknown', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('she', 'PRON'), ('preferred', 'VERB'), ('going', 'VERB'), ('directly', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('cottage', 'NOUN'), ('to', 'ADP'), ('being', 'AUX'), ('a', 'DET'), ('visitor', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('and', 'CCONJ'), ('she', 'PRON'), ('relied', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('undoubtingly', 'ADV'), ('on', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('description', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('to', 'PART'), ('feel', 'VERB'), ('no', 'DET'), ('curiosity', 'NOUN'), ('to', 'PART'), ('examine', 'VERB'), ('it', 'PRON'), ('herself', 'PRON'), ('till', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('entered', 'VERB'), ('it', 'PRON'), ('as', 'SCONJ'), ('her', 'PRON'), ('own', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('eagerness', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), ('from', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('preserved', 'VERB'), ('from', 'ADP'), ('diminution', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('evident', 'ADJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('daughterinlaw', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('prospect', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('removal', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('satisfaction', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('but', 'CCONJ'), ('feebly', 'ADV'), ('attempted', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('concealed', 'VERB'), ('\n', 'SPACE'), ('under', 'ADP'), ('a', 'DET'), ('cold', 'ADJ'), ('invitation', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('defer', 'VERB'), ('her', 'PRON'), ('departure', 'NOUN'), ('\n', 'SPACE'), ('Now', 'ADV'), ('was', 'AUX'), ('the', 'DET'), ('time', 'NOUN'), ('when', 'SCONJ'), ('her', 'PRON'), ('soninlaws', 'NOUN'), ('promise', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('father', 'NOUN'), ('might', 'AUX'), ('with', 'ADP'), ('particular', 'ADJ'), ('propriety', 'NOUN'), ('be', 'AUX'), ('fulfilled', 'VERB'), ('\n', 'SPACE'), ('Since', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('neglected', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('on', 'ADP'), ('first', 'ADV'), ('coming', 'VERB'), ('to', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('estate', 'NOUN'), ('their', 'PRON'), ('quitting', 'VERB'), ('his', 'PRON'), ('house', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('looked', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('as', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('suitable', 'ADJ'), ('period', 'NOUN'), ('for', 'ADP'), ('its', 'PRON'), ('accomplishment', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('began', 'VERB'), ('shortly', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('over', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('hope', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('convinced', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('general', 'ADJ'), ('\n', 'SPACE'), ('drift', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('discourse', 'NOUN'), ('that', 'SCONJ'), ('his', 'PRON'), ('assistance', 'NOUN'), ('extended', 'VERB'), ('no', 'PRON'), ('\n', 'SPACE'), ('farther', 'ADV'), ('than', 'ADP'), ('their', 'PRON'), ('maintenance', 'NOUN'), ('for', 'ADP'), ('six', 'NUM'), ('months', 'NOUN'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('so', 'ADV'), ('frequently', 'ADV'), ('talked', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('increasing', 'VERB'), ('expenses', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('housekeeping', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('the', 'DET'), ('perpetual', 'ADJ'), ('demands', 'NOUN'), ('upon', 'SCONJ'), ('his', 'PRON'), ('purse', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('consequence', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('was', 'AUX'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('calculation', 'NOUN'), ('exposed', 'VERB'), ('to', 'ADP'), ('that', 'PRON'), ('he', 'PRON'), ('seemed', 'VERB'), ('rather', 'ADV'), ('to', 'PART'), ('stand', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('need', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('money', 'NOUN'), ('himself', 'PRON'), ('than', 'SCONJ'), ('to', 'PART'), ('have', 'VERB'), ('any', 'DET'), ('design', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('giving', 'VERB'), ('money', 'NOUN'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('which', 'PRON'), ('brought', 'VERB'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('Middletons', 'PROPN'), ('first', 'ADJ'), ('letter', 'NOUN'), ('to', 'ADP'), ('Norland', 'PROPN'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('far', 'ADV'), ('settled', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('future', 'ADJ'), ('abode', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('enable', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('to', 'PART'), ('begin', 'VERB'), ('their', 'PRON'), ('journey', 'NOUN'), ('\n\n', 'SPACE'), ('Many', 'ADJ'), ('were', 'AUX'), ('the', 'DET'), ('tears', 'NOUN'), ('shed', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('their', 'PRON'), ('last', 'ADJ'), ('\n', 'SPACE'), ('adieus', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('place', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('beloved', 'ADJ'), (' ', 'SPACE'), ('Dear', 'ADJ'), ('dear', 'NOUN'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('wandered', 'VERB'), ('alone', 'ADV'), ('before', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('evening', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('there', 'ADV'), ('when', 'SCONJ'), ('shall', 'AUX'), ('I', 'PRON'), ('cease', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('regret', 'VERB'), ('youwhen', 'PROPN'), ('learn', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('a', 'DET'), ('home', 'NOUN'), ('elsewhereOh', 'PROPN'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('house', 'NOUN'), ('could', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('suffer', 'VERB'), ('in', 'ADP'), ('now', 'ADV'), ('viewing', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('from', 'ADP'), ('this', 'DET'), ('spot', 'NOUN'), ('from', 'ADP'), ('whence', 'NOUN'), ('perhaps', 'ADV'), ('I', 'PRON'), ('may', 'AUX'), ('view', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('no', 'INTJ'), ('moreAnd', 'INTJ'), ('you', 'PRON'), ('ye', 'NOUN'), ('wellknown', 'NOUN'), ('treesbut', 'NOUN'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('continue', 'VERB'), ('the', 'DET'), ('sameNo', 'PROPN'), ('leaf', 'NOUN'), ('will', 'AUX'), ('decay', 'VERB'), ('because', 'SCONJ'), ('we', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('removed', 'VERB'), ('nor', 'CCONJ'), ('any', 'DET'), ('branch', 'NOUN'), ('become', 'VERB'), ('motionless', 'ADJ'), ('although', 'SCONJ'), ('we', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('observe', 'VERB'), ('you', 'PRON'), ('no', 'INTJ'), ('longerNo', 'INTJ'), ('you', 'PRON'), ('will', 'AUX'), ('continue', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('\n', 'SPACE'), ('unconscious', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('pleasure', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('regret', 'NOUN'), ('you', 'PRON'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('insensible', 'ADJ'), ('of', 'ADP'), ('any', 'DET'), ('change', 'NOUN'), ('in', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('walk', 'VERB'), ('under', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('shadeBut', 'NOUN'), ('who', 'PRON'), ('will', 'AUX'), ('remain', 'VERB'), ('to', 'PART'), ('enjoy', 'VERB'), ('you', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('6', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('first', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('journey', 'NOUN'), ('was', 'AUX'), ('performed', 'VERB'), ('in', 'ADP'), ('too', 'ADV'), ('\n', 'SPACE'), ('melancholy', 'ADJ'), ('a', 'DET'), ('disposition', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('otherwise', 'ADV'), ('than', 'ADP'), ('tedious', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('unpleasant', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('drew', 'VERB'), ('towards', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('their', 'PRON'), ('interest', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('country', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('to', 'PART'), ('inhabit', 'VERB'), ('overcame', 'VERB'), ('their', 'PRON'), ('dejection', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('view', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), ('Valley', 'PROPN'), ('as', 'SCONJ'), ('they', 'PRON'), ('entered', 'VERB'), ('it', 'PRON'), ('gave', 'VERB'), ('them', 'PRON'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('pleasant', 'ADJ'), ('fertile', 'ADJ'), ('spot', 'NOUN'), ('well', 'ADV'), ('wooded', 'ADJ'), ('and', 'CCONJ'), ('rich', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('pasture', 'NOUN'), (' ', 'SPACE'), ('After', 'ADP'), ('winding', 'VERB'), ('along', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('a', 'DET'), ('mile', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('reached', 'VERB'), ('their', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('small', 'ADJ'), ('green', 'ADJ'), ('court', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('demesne', 'NOUN'), ('in', 'ADP'), ('front', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('neat', 'ADJ'), ('wicket', 'NOUN'), ('gate', 'NOUN'), ('\n', 'SPACE'), ('admitted', 'VERB'), ('them', 'PRON'), ('into', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('As', 'ADP'), ('a', 'DET'), ('house', 'NOUN'), ('Barton', 'PROPN'), ('Cottage', 'PROPN'), ('though', 'SCONJ'), ('small', 'ADJ'), ('was', 'AUX'), ('comfortable', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('compact', 'ADJ'), ('but', 'CCONJ'), ('as', 'ADP'), ('a', 'DET'), ('cottage', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('defective', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('building', 'NOUN'), ('was', 'AUX'), ('regular', 'ADJ'), ('the', 'DET'), ('roof', 'NOUN'), ('was', 'AUX'), ('tiled', 'VERB'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('shutters', 'NOUN'), ('were', 'AUX'), ('not', 'PART'), ('painted', 'VERB'), ('green', 'ADJ'), ('nor', 'CCONJ'), ('were', 'AUX'), ('the', 'DET'), ('walls', 'NOUN'), ('covered', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('honeysuckles', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('narrow', 'ADJ'), ('passage', 'NOUN'), ('led', 'VERB'), ('directly', 'ADV'), ('through', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('garden', 'NOUN'), ('behind', 'ADP'), (' ', 'SPACE'), ('On', 'ADP'), ('each', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('entrance', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('sitting', 'NOUN'), ('room', 'NOUN'), ('about', 'ADP'), ('sixteen', 'NUM'), ('feet', 'NOUN'), ('square', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('beyond', 'ADP'), ('them', 'PRON'), ('were', 'AUX'), ('the', 'DET'), ('offices', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('stairs', 'NOUN'), ('\n', 'SPACE'), ('Four', 'NUM'), ('bedrooms', 'NOUN'), ('and', 'CCONJ'), ('two', 'NUM'), ('garrets', 'NOUN'), ('formed', 'VERB'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('built', 'VERB'), ('many', 'ADJ'), ('years', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('in', 'ADP'), ('good', 'ADJ'), ('repair', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('comparison', 'NOUN'), ('of', 'ADP'), ('Norland', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('poor', 'ADJ'), ('and', 'CCONJ'), ('small', 'ADJ'), ('indeedbut', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('tears', 'NOUN'), ('which', 'DET'), ('recollection', 'NOUN'), ('called', 'VERB'), ('forth', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('entered', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('were', 'AUX'), ('soon', 'ADV'), ('dried', 'VERB'), ('away', 'ADP'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('cheered', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('joy', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('servants', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('and', 'CCONJ'), ('each', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('resolved', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('early', 'ADJ'), ('in', 'ADP'), ('September', 'PROPN'), ('the', 'DET'), ('season', 'NOUN'), ('was', 'AUX'), ('fine', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('first', 'ADV'), ('seeing', 'VERB'), ('the', 'DET'), ('place', 'NOUN'), ('under', 'ADP'), ('the', 'DET'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('good', 'ADJ'), ('weather', 'NOUN'), ('they', 'PRON'), ('received', 'VERB'), ('an', 'DET'), ('impression', 'NOUN'), ('in', 'ADP'), ('its', 'PRON'), ('\n', 'SPACE'), ('favour', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('of', 'ADP'), ('material', 'NOUN'), ('service', 'NOUN'), ('in', 'ADP'), ('recommending', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('to', 'ADP'), ('their', 'PRON'), ('lasting', 'VERB'), ('approbation', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('situation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('was', 'AUX'), ('good', 'ADJ'), (' ', 'SPACE'), ('High', 'ADJ'), ('hills', 'NOUN'), ('rose', 'VERB'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('behind', 'ADV'), ('and', 'CCONJ'), ('at', 'ADP'), ('no', 'DET'), ('great', 'ADJ'), ('distance', 'NOUN'), ('on', 'ADP'), ('each', 'DET'), ('side', 'NOUN'), ('\n', 'SPACE'), ('some', 'PRON'), ('of', 'ADP'), ('which', 'PRON'), ('were', 'AUX'), ('open', 'ADJ'), ('downs', 'NOUN'), ('the', 'DET'), ('others', 'NOUN'), ('cultivated', 'VERB'), ('and', 'CCONJ'), ('woody', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('village', 'NOUN'), ('of', 'ADP'), ('Barton', 'PROPN'), ('was', 'AUX'), ('chiefly', 'ADV'), ('on', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('these', 'DET'), ('hills', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('formed', 'VERB'), ('a', 'DET'), ('pleasant', 'ADJ'), ('view', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('windows', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('prospect', 'NOUN'), ('in', 'ADP'), ('front', 'NOUN'), ('was', 'AUX'), ('more', 'ADV'), ('extensive', 'ADJ'), ('it', 'PRON'), ('commanded', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('whole', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('and', 'CCONJ'), ('reached', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('The', 'DET'), ('hills', 'NOUN'), ('which', 'PRON'), ('surrounded', 'VERB'), ('the', 'DET'), ('cottage', 'NOUN'), ('terminated', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('valley', 'NOUN'), ('in', 'ADP'), ('that', 'DET'), ('direction', 'NOUN'), ('under', 'ADP'), ('another', 'DET'), ('name', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('another', 'DET'), ('course', 'NOUN'), ('it', 'PRON'), ('branched', 'VERB'), ('out', 'ADP'), ('again', 'ADV'), ('between', 'ADP'), ('two', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('steepest', 'ADJ'), ('of', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('the', 'DET'), ('size', 'NOUN'), ('and', 'CCONJ'), ('furniture', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('upon', 'SCONJ'), ('the', 'DET'), ('whole', 'ADJ'), ('well', 'ADV'), ('satisfied', 'ADJ'), ('for', 'ADP'), ('though', 'SCONJ'), ('her', 'PRON'), ('former', 'ADJ'), ('\n', 'SPACE'), ('style', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('rendered', 'VERB'), ('many', 'ADJ'), ('additions', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('indispensable', 'ADJ'), ('yet', 'ADV'), ('to', 'PART'), ('add', 'VERB'), ('and', 'CCONJ'), ('improve', 'VERB'), ('was', 'AUX'), ('a', 'DET'), ('delight', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('at', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('ready', 'ADJ'), ('money', 'NOUN'), ('enough', 'ADV'), ('to', 'PART'), ('supply', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('that', 'PRON'), ('was', 'AUX'), ('wanted', 'VERB'), ('of', 'ADP'), ('greater', 'ADJ'), ('elegance', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('apartments', 'NOUN'), ('\n', 'SPACE'), ('As', 'SCONJ'), ('for', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('itself', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('too', 'ADV'), ('small', 'ADJ'), ('for', 'ADP'), ('our', 'PRON'), ('family', 'NOUN'), ('but', 'CCONJ'), ('we', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('ourselves', 'PRON'), ('\n', 'SPACE'), ('tolerably', 'ADV'), ('comfortable', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('present', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('too', 'ADV'), ('late', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), ('for', 'ADP'), ('improvements', 'NOUN'), (' ', 'SPACE'), ('Perhaps', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('spring', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('plenty', 'NOUN'), ('of', 'ADP'), ('money', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('dare', 'AUX'), ('say', 'VERB'), ('I', 'PRON'), ('shall', 'AUX'), ('we', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('think', 'VERB'), ('about', 'ADP'), ('building', 'VERB'), (' ', 'SPACE'), ('These', 'DET'), ('parlors', 'NOUN'), ('are', 'AUX'), ('both', 'PRON'), ('too', 'ADV'), ('small', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('such', 'ADJ'), ('parties', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('friends', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('often', 'ADV'), ('\n', 'SPACE'), ('collected', 'VERB'), ('here', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('some', 'DET'), ('thoughts', 'NOUN'), ('of', 'ADP'), ('throwing', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('passage', 'NOUN'), ('into', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('them', 'PRON'), ('with', 'ADP'), ('perhaps', 'ADV'), ('a', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('leave', 'VERB'), ('the', 'DET'), ('remainder', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('other', 'ADJ'), ('for', 'ADP'), ('an', 'DET'), ('entrance', 'NOUN'), ('\n', 'SPACE'), ('this', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('new', 'ADJ'), ('drawing', 'NOUN'), ('room', 'NOUN'), ('which', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('easily', 'ADV'), ('added', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('bedchamber', 'NOUN'), ('and', 'CCONJ'), ('garret', 'NOUN'), ('above', 'ADV'), ('will', 'AUX'), ('make', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('snug', 'ADJ'), ('\n', 'SPACE'), ('little', 'ADJ'), ('cottage', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('wish', 'VERB'), ('the', 'DET'), ('stairs', 'NOUN'), ('were', 'AUX'), ('handsome', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('one', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('expect', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('though', 'SCONJ'), ('I', 'PRON'), ('suppose', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('difficult', 'ADJ'), ('matter', 'NOUN'), ('to', 'PART'), ('widen', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('much', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('beforehand', 'ADV'), ('with', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('spring', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('will', 'AUX'), ('plan', 'VERB'), ('our', 'PRON'), ('improvements', 'NOUN'), ('accordingly', 'ADV'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('mean', 'ADJ'), ('time', 'NOUN'), ('till', 'SCONJ'), ('all', 'DET'), ('these', 'DET'), ('alterations', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('made', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('savings', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('income', 'NOUN'), ('of', 'ADP'), ('five', 'NUM'), ('hundred', 'NUM'), ('\n', 'SPACE'), ('ayear', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('who', 'PRON'), ('never', 'ADV'), ('saved', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('wise', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('contented', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('each', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('busy', 'ADJ'), ('in', 'ADP'), ('arranging', 'VERB'), ('their', 'PRON'), ('particular', 'ADJ'), ('\n', 'SPACE'), ('concerns', 'NOUN'), ('and', 'CCONJ'), ('endeavoring', 'VERB'), ('by', 'ADP'), ('placing', 'VERB'), ('around', 'ADP'), ('them', 'PRON'), ('books', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('other', 'ADJ'), ('possessions', 'NOUN'), ('to', 'PART'), ('form', 'VERB'), ('themselves', 'PRON'), ('a', 'DET'), ('home', 'NOUN'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('pianoforte', 'NOUN'), ('was', 'AUX'), ('unpacked', 'ADJ'), ('and', 'CCONJ'), ('properly', 'ADV'), ('disposed', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinors', 'PROPN'), ('drawings', 'NOUN'), ('were', 'AUX'), ('affixed', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('walls', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('sitting', 'NOUN'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('such', 'ADJ'), ('employments', 'NOUN'), ('as', 'ADP'), ('these', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('interrupted', 'VERB'), ('\n', 'SPACE'), ('soon', 'ADV'), ('after', 'ADP'), ('breakfast', 'NOUN'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('landlord', 'NOUN'), ('who', 'PRON'), ('called', 'VERB'), ('to', 'PART'), ('welcome', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('offer', 'VERB'), ('them', 'PRON'), ('every', 'DET'), ('accommodation', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('garden', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('theirs', 'PRON'), ('might', 'AUX'), ('at', 'ADP'), ('present', 'ADJ'), ('be', 'AUX'), ('deficient', 'ADJ'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('good', 'ADJ'), ('looking', 'VERB'), ('man', 'NOUN'), ('about', 'ADV'), ('forty', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('formerly', 'ADV'), ('visited', 'VERB'), ('at', 'ADP'), ('Stanhill', 'PROPN'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('long', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('young', 'ADJ'), ('cousins', 'NOUN'), ('to', 'PART'), ('remember', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('His', 'PRON'), ('countenance', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('thoroughly', 'ADV'), ('goodhumoured', 'VERB'), ('and', 'CCONJ'), ('his', 'PRON'), ('manners', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('as', 'ADV'), ('friendly', 'ADJ'), ('as', 'ADP'), ('the', 'DET'), ('style', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('letter', 'NOUN'), (' ', 'SPACE'), ('Their', 'PRON'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('to', 'PART'), ('afford', 'VERB'), ('him', 'PRON'), ('real', 'ADJ'), ('satisfaction', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('an', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('real', 'ADJ'), ('solicitude', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('said', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('earnest', 'ADJ'), ('desire', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('living', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('sociable', 'ADJ'), ('\n', 'SPACE'), ('terms', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('family', 'NOUN'), ('and', 'CCONJ'), ('pressed', 'VERB'), ('them', 'PRON'), ('so', 'ADV'), ('cordially', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('dine', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('every', 'DET'), ('day', 'NOUN'), ('till', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('better', 'ADJ'), ('\n', 'SPACE'), ('settled', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('his', 'PRON'), ('entreaties', 'NOUN'), ('were', 'AUX'), ('carried', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('a', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('perseverance', 'NOUN'), ('beyond', 'ADP'), ('civility', 'NOUN'), ('they', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('give', 'VERB'), ('offence', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('kindness', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('confined', 'VERB'), ('to', 'ADP'), ('words', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('within', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('after', 'SCONJ'), ('he', 'PRON'), ('left', 'VERB'), ('them', 'PRON'), ('a', 'DET'), ('large', 'ADJ'), ('basket', 'NOUN'), ('\n', 'SPACE'), ('full', 'ADJ'), ('of', 'ADP'), ('garden', 'NOUN'), ('stuff', 'NOUN'), ('and', 'CCONJ'), ('fruit', 'NOUN'), ('arrived', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('followed', 'VERB'), ('before', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('present', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('game', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('insisted', 'VERB'), ('moreover', 'ADV'), ('on', 'ADP'), ('conveying', 'VERB'), ('all', 'DET'), ('their', 'PRON'), ('\n', 'SPACE'), ('letters', 'NOUN'), ('to', 'ADP'), ('and', 'CCONJ'), ('from', 'ADP'), ('the', 'DET'), ('post', 'NOUN'), ('for', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('denied', 'VERB'), ('the', 'DET'), ('satisfaction', 'NOUN'), ('of', 'ADP'), ('sending', 'VERB'), ('them', 'PRON'), ('his', 'PRON'), ('newspaper', 'NOUN'), ('\n', 'SPACE'), ('every', 'DET'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('had', 'AUX'), ('sent', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('civil', 'ADJ'), ('message', 'NOUN'), ('by', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('denoting', 'VERB'), ('her', 'PRON'), ('intention', 'NOUN'), ('of', 'ADP'), ('waiting', 'VERB'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('assured', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('visit', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('inconvenience', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('this', 'DET'), ('message', 'NOUN'), ('was', 'AUX'), ('answered', 'VERB'), ('by', 'ADP'), ('an', 'DET'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('equally', 'ADV'), ('polite', 'ADJ'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('was', 'AUX'), ('introduced', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('very', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('a', 'DET'), ('person', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('whom', 'PRON'), ('so', 'ADV'), ('much', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('comfort', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('must', 'AUX'), ('depend', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('elegance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('appearance', 'NOUN'), ('was', 'AUX'), ('favourable', 'ADJ'), ('to', 'ADP'), ('their', 'PRON'), ('wishes', 'NOUN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('more', 'ADJ'), ('than', 'ADP'), ('six', 'NUM'), ('or', 'CCONJ'), ('seven', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('\n', 'SPACE'), ('her', 'PRON'), ('face', 'NOUN'), ('was', 'AUX'), ('handsome', 'ADJ'), ('her', 'PRON'), ('figure', 'NOUN'), ('tall', 'ADJ'), ('and', 'CCONJ'), ('striking', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('address', 'NOUN'), ('graceful', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('manners', 'NOUN'), ('had', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('her', 'PRON'), ('husbands', 'NOUN'), ('wanted', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('they', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('improved', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('share', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('frankness', 'NOUN'), ('and', 'CCONJ'), ('warmth', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('visit', 'NOUN'), ('was', 'AUX'), ('long', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('detract', 'VERB'), ('something', 'PRON'), ('from', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('first', 'ADJ'), ('admiration', 'NOUN'), ('by', 'ADP'), ('shewing', 'VERB'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('perfectly', 'ADV'), ('\n', 'SPACE'), ('wellbred', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('reserved', 'VERB'), ('cold', 'ADJ'), ('and', 'CCONJ'), ('had', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('herself', 'PRON'), ('beyond', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('commonplace', 'ADJ'), ('inquiry', 'NOUN'), ('or', 'CCONJ'), ('remark', 'NOUN'), ('\n\n', 'SPACE'), ('Conversation', 'PROPN'), ('however', 'ADV'), ('was', 'AUX'), ('not', 'PART'), ('wanted', 'VERB'), ('for', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('very', 'ADV'), ('chatty', 'ADJ'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('had', 'AUX'), ('taken', 'VERB'), ('the', 'DET'), ('wise', 'ADJ'), ('\n', 'SPACE'), ('precaution', 'NOUN'), ('of', 'ADP'), ('bringing', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('their', 'PRON'), ('eldest', 'ADJ'), ('child', 'NOUN'), ('a', 'DET'), ('fine', 'ADJ'), ('\n', 'SPACE'), ('little', 'ADJ'), ('boy', 'NOUN'), ('about', 'ADV'), ('six', 'NUM'), ('years', 'NOUN'), ('old', 'ADJ'), ('by', 'ADP'), ('which', 'PRON'), ('means', 'VERB'), ('there', 'PRON'), ('was', 'VERB'), ('\n', 'SPACE'), ('one', 'NUM'), ('subject', 'NOUN'), ('always', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('recurred', 'VERB'), ('to', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('ladies', 'NOUN'), ('in', 'ADP'), ('case', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('extremity', 'NOUN'), ('for', 'SCONJ'), ('they', 'PRON'), ('had', 'VERB'), ('to', 'PART'), ('enquire', 'VERB'), ('his', 'PRON'), ('name', 'NOUN'), ('and', 'CCONJ'), ('age', 'NOUN'), ('\n', 'SPACE'), ('admire', 'VERB'), ('his', 'PRON'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('ask', 'VERB'), ('him', 'PRON'), ('questions', 'NOUN'), ('which', 'PRON'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('answered', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('while', 'SCONJ'), ('he', 'PRON'), ('hung', 'VERB'), ('about', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('held', 'VERB'), ('\n', 'SPACE'), ('down', 'ADP'), ('his', 'PRON'), ('head', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('great', 'ADJ'), ('surprise', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('wondered', 'VERB'), ('at', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('so', 'ADV'), ('shy', 'ADJ'), ('before', 'ADP'), ('company', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('make', 'VERB'), ('noise', 'NOUN'), ('enough', 'ADV'), ('at', 'ADP'), ('home', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('every', 'DET'), ('formal', 'ADJ'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('child', 'NOUN'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('by', 'ADP'), ('way', 'NOUN'), ('of', 'ADP'), ('provision', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('discourse', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('it', 'PRON'), ('took', 'VERB'), ('up', 'ADP'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('determine', 'VERB'), ('whether', 'SCONJ'), ('the', 'DET'), ('boy', 'NOUN'), ('were', 'AUX'), ('most', 'ADV'), ('like', 'ADP'), ('his', 'PRON'), ('father', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('what', 'PRON'), ('particular', 'ADJ'), ('he', 'PRON'), ('resembled', 'VERB'), ('either', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('of', 'ADP'), ('course', 'NOUN'), ('every', 'DET'), ('body', 'NOUN'), ('differed', 'VERB'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('astonished', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('opinion', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('\n\n', 'SPACE'), ('An', 'DET'), ('opportunity', 'NOUN'), ('was', 'AUX'), ('soon', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('given', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('of', 'ADP'), ('debating', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('children', 'NOUN'), ('as', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('leave', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('without', 'ADP'), ('securing', 'VERB'), ('their', 'PRON'), ('promise', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('dining', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('7', 'NUM'), ('\n\n\n', 'SPACE'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('was', 'AUX'), ('about', 'ADV'), ('half', 'DET'), ('a', 'DET'), ('mile', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('ladies', 'NOUN'), ('had', 'AUX'), ('passed', 'VERB'), ('near', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('their', 'PRON'), ('way', 'NOUN'), ('along', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('screened', 'VERB'), ('from', 'ADP'), ('their', 'PRON'), ('view', 'NOUN'), ('at', 'ADP'), ('home', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('projection', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('hill', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('house', 'NOUN'), ('was', 'AUX'), ('large', 'ADJ'), ('and', 'CCONJ'), ('handsome', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('Middletons', 'PROPN'), ('lived', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('style', 'NOUN'), ('of', 'ADP'), ('equal', 'ADJ'), ('hospitality', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('elegance', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('former', 'ADJ'), ('was', 'AUX'), ('for', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('gratification', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('latter', 'ADJ'), ('for', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('lady', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('scarcely', 'ADV'), ('\n', 'SPACE'), ('ever', 'ADV'), ('without', 'ADP'), ('some', 'DET'), ('friends', 'NOUN'), ('staying', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('kept', 'VERB'), ('more', 'ADJ'), ('company', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('kind', 'NOUN'), ('than', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('family', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('necessary', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('happiness', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('for', 'ADP'), ('however', 'ADV'), ('dissimilar', 'ADJ'), ('in', 'ADP'), ('temper', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('outward', 'ADJ'), ('behaviour', 'NOUN'), ('they', 'PRON'), ('strongly', 'ADV'), ('resembled', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('that', 'DET'), ('total', 'ADJ'), ('want', 'NOUN'), ('of', 'ADP'), ('talent', 'NOUN'), ('and', 'CCONJ'), ('taste', 'NOUN'), ('which', 'PRON'), ('confined', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('employments', 'NOUN'), ('unconnected', 'ADJ'), ('with', 'ADP'), ('such', 'ADJ'), ('as', 'ADP'), ('society', 'NOUN'), ('produced', 'VERB'), ('\n', 'SPACE'), ('within', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('narrow', 'ADJ'), ('compass', 'NOUN'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('sportsman', 'NOUN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('a', 'DET'), ('mother', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('hunted', 'VERB'), ('and', 'CCONJ'), ('shot', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('humoured', 'VERB'), ('her', 'PRON'), ('children', 'NOUN'), ('and', 'CCONJ'), ('these', 'PRON'), ('were', 'AUX'), ('their', 'PRON'), ('only', 'ADJ'), ('resources', 'NOUN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('had', 'VERB'), ('the', 'DET'), ('advantage', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('spoil', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('children', 'NOUN'), ('all', 'DET'), ('the', 'DET'), ('year', 'NOUN'), ('round', 'NOUN'), ('while', 'SCONJ'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('independent', 'ADJ'), ('\n', 'SPACE'), ('employments', 'NOUN'), ('were', 'AUX'), ('in', 'ADP'), ('existence', 'NOUN'), ('only', 'ADV'), ('half', 'DET'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('Continual', 'PROPN'), ('engagements', 'NOUN'), ('at', 'ADP'), ('home', 'ADV'), ('and', 'CCONJ'), ('abroad', 'ADV'), ('however', 'ADV'), ('\n', 'SPACE'), ('supplied', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('deficiencies', 'NOUN'), ('of', 'ADP'), ('nature', 'NOUN'), ('and', 'CCONJ'), ('education', 'NOUN'), ('\n', 'SPACE'), ('supported', 'VERB'), ('the', 'DET'), ('good', 'ADJ'), ('spirits', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('gave', 'VERB'), ('exercise', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('good', 'ADJ'), ('breeding', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('piqued', 'VERB'), ('herself', 'PRON'), ('upon', 'SCONJ'), ('the', 'DET'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('table', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('domestic', 'ADJ'), ('arrangements', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('this', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('vanity', 'NOUN'), ('was', 'AUX'), ('her', 'PRON'), ('greatest', 'ADJ'), ('enjoyment', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('parties', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('society', 'NOUN'), ('was', 'AUX'), ('much', 'ADV'), ('more', 'ADV'), ('real', 'ADJ'), ('he', 'PRON'), ('delighted', 'VERB'), ('in', 'ADP'), ('collecting', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('him', 'PRON'), ('more', 'ADV'), ('young', 'ADJ'), ('people', 'NOUN'), ('than', 'SCONJ'), ('his', 'PRON'), ('house', 'NOUN'), ('would', 'AUX'), ('hold', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('noisier', 'ADJ'), ('they', 'PRON'), ('were', 'AUX'), ('the', 'PRON'), ('better', 'ADJ'), ('was', 'AUX'), ('he', 'PRON'), ('pleased', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('blessing', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('juvenile', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('in', 'ADP'), ('summer', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('for', 'ADP'), ('ever', 'ADV'), ('forming', 'VERB'), ('parties', 'NOUN'), ('to', 'PART'), ('eat', 'VERB'), ('cold', 'ADJ'), ('\n', 'SPACE'), ('ham', 'NOUN'), ('and', 'CCONJ'), ('chicken', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('doors', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('winter', 'NOUN'), ('his', 'PRON'), ('private', 'ADJ'), ('\n', 'SPACE'), ('balls', 'NOUN'), ('were', 'AUX'), ('numerous', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('any', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('suffering', 'VERB'), ('under', 'ADP'), ('the', 'DET'), ('unsatiable', 'ADJ'), ('appetite', 'NOUN'), ('of', 'ADP'), ('fifteen', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('new', 'ADJ'), ('family', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('was', 'AUX'), ('always', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('in', 'ADP'), ('every', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('view', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('charmed', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('inhabitants', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('now', 'ADV'), ('procured', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('cottage', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('young', 'ADJ'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('unaffected', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('secure', 'VERB'), ('his', 'PRON'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('unaffected', 'ADJ'), ('was', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('a', 'DET'), ('pretty', 'ADJ'), ('girl', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('want', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('mind', 'NOUN'), ('as', 'ADP'), ('captivating', 'VERB'), ('as', 'ADP'), ('her', 'PRON'), ('person', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('friendliness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('disposition', 'NOUN'), ('made', 'VERB'), ('him', 'PRON'), ('happy', 'ADJ'), ('in', 'ADP'), ('\n', 'SPACE'), ('accommodating', 'VERB'), ('those', 'PRON'), ('whose', 'DET'), ('situation', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('considered', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('comparison', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('as', 'ADP'), ('unfortunate', 'ADJ'), (' ', 'SPACE'), ('In', 'ADP'), ('showing', 'VERB'), ('\n', 'SPACE'), ('kindness', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('cousins', 'NOUN'), ('therefore', 'ADV'), ('he', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('real', 'ADJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('good', 'ADJ'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('settling', 'VERB'), ('a', 'DET'), ('family', 'NOUN'), ('of', 'ADP'), ('females', 'NOUN'), ('only', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('cottage', 'NOUN'), ('he', 'PRON'), ('had', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('satisfaction', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sportsman', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('sportsman', 'NOUN'), ('though', 'SCONJ'), ('he', 'PRON'), ('esteems', 'VERB'), ('only', 'ADV'), ('those', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('sex', 'NOUN'), ('who', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('sportsmen', 'NOUN'), ('likewise', 'ADV'), ('is', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('desirous', 'ADJ'), ('of', 'ADP'), ('encouraging', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('taste', 'NOUN'), ('by', 'ADP'), ('admitting', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('a', 'DET'), ('residence', 'NOUN'), ('within', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('manor', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('were', 'AUX'), ('met', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('who', 'PRON'), ('welcomed', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('Park', 'PROPN'), ('with', 'ADP'), ('unaffected', 'ADJ'), ('sincerity', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('attended', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('drawing', 'NOUN'), ('room', 'NOUN'), ('repeated', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('the', 'DET'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('the', 'DET'), ('same', 'ADJ'), ('subject', 'NOUN'), ('had', 'AUX'), ('drawn', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('the', 'DET'), ('day', 'NOUN'), ('before', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('being', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('get', 'VERB'), ('any', 'DET'), ('smart', 'ADJ'), ('young', 'ADJ'), ('men', 'NOUN'), ('to', 'PART'), ('meet', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('would', 'AUX'), ('see', 'VERB'), ('he', 'PRON'), ('said', 'VERB'), ('only', 'ADV'), ('one', 'NUM'), ('gentleman', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('besides', 'SCONJ'), ('himself', 'PRON'), ('a', 'DET'), ('particular', 'ADJ'), ('friend', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('staying', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('park', 'NOUN'), ('but', 'CCONJ'), ('who', 'PRON'), ('was', 'AUX'), ('neither', 'CCONJ'), ('very', 'ADV'), ('young', 'ADJ'), ('nor', 'CCONJ'), ('very', 'ADV'), ('gay', 'ADJ'), ('\n', 'SPACE'), ('He', 'PRON'), ('hoped', 'VERB'), ('they', 'PRON'), ('would', 'AUX'), ('all', 'ADV'), ('excuse', 'VERB'), ('the', 'DET'), ('smallness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('could', 'AUX'), ('assure', 'VERB'), ('them', 'PRON'), ('it', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('happen', 'VERB'), ('so', 'ADV'), ('again', 'ADV'), ('\n', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('to', 'ADP'), ('several', 'ADJ'), ('families', 'NOUN'), ('that', 'DET'), ('morning', 'NOUN'), ('in', 'ADP'), ('hopes', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('procuring', 'VERB'), ('some', 'DET'), ('addition', 'NOUN'), ('to', 'ADP'), ('their', 'PRON'), ('number', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('moonlight', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('was', 'AUX'), ('full', 'ADJ'), ('of', 'ADP'), ('engagements', 'NOUN'), ('\n', 'SPACE'), ('Luckily', 'PROPN'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('mother', 'NOUN'), ('had', 'AUX'), ('arrived', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('within', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('hour', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('cheerful', 'ADJ'), ('\n', 'SPACE'), ('agreeable', 'ADJ'), ('woman', 'NOUN'), ('he', 'PRON'), ('hoped', 'VERB'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('find', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('so', 'ADV'), ('very', 'ADV'), ('dull', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('might', 'AUX'), ('imagine', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('their', 'PRON'), ('mother', 'NOUN'), ('were', 'AUX'), ('perfectly', 'ADV'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('\n', 'SPACE'), ('having', 'VERB'), ('two', 'NUM'), ('entire', 'ADJ'), ('strangers', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('and', 'CCONJ'), ('wished', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('no', 'DET'), ('more', 'ADV'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('mother', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('\n', 'SPACE'), ('goodhumoured', 'VERB'), ('merry', 'PROPN'), ('fat', 'ADJ'), ('elderly', 'ADJ'), ('woman', 'NOUN'), ('who', 'PRON'), ('talked', 'VERB'), ('a', 'DET'), ('\n', 'SPACE'), ('great', 'ADJ'), ('deal', 'NOUN'), ('seemed', 'VERB'), ('very', 'ADV'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('rather', 'ADV'), ('vulgar', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('full', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('jokes', 'NOUN'), ('and', 'CCONJ'), ('laughter', 'NOUN'), ('and', 'CCONJ'), ('before', 'ADP'), ('dinner', 'NOUN'), ('was', 'AUX'), ('over', 'ADV'), ('had', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('many', 'ADJ'), ('witty', 'ADJ'), ('things', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('of', 'ADP'), ('lovers', 'NOUN'), ('and', 'CCONJ'), ('husbands', 'NOUN'), ('\n', 'SPACE'), ('hoped', 'VERB'), ('they', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('left', 'VERB'), ('their', 'PRON'), ('hearts', 'NOUN'), ('behind', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('Sussex', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pretended', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('blush', 'ADJ'), ('whether', 'SCONJ'), ('they', 'PRON'), ('did', 'VERB'), ('or', 'CCONJ'), ('not', 'PART'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('vexed', 'VERB'), ('at', 'ADP'), ('it', 'PRON'), ('for', 'SCONJ'), ('her', 'PRON'), ('sisters', 'NOUN'), ('sake', 'VERB'), ('and', 'CCONJ'), ('turned', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('eyes', 'NOUN'), ('towards', 'ADP'), ('Elinor', 'PROPN'), ('to', 'PART'), ('see', 'VERB'), ('how', 'SCONJ'), ('she', 'PRON'), ('bore', 'VERB'), ('these', 'DET'), ('attacks', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('an', 'DET'), ('earnestness', 'NOUN'), ('which', 'PRON'), ('gave', 'VERB'), ('Elinor', 'PROPN'), ('far', 'ADV'), ('more', 'ADJ'), ('pain', 'NOUN'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('arise', 'VERB'), ('from', 'ADP'), ('such', 'ADJ'), ('commonplace', 'ADJ'), ('raillery', 'NOUN'), ('as', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('the', 'DET'), ('friend', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('seemed', 'VERB'), ('no', 'PRON'), ('\n', 'SPACE'), ('more', 'ADV'), ('adapted', 'VERB'), ('by', 'ADP'), ('resemblance', 'NOUN'), ('of', 'ADP'), ('manner', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('his', 'PRON'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('his', 'PRON'), ('wife', 'NOUN'), ('or', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('mother', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('silent', 'ADJ'), ('and', 'CCONJ'), ('grave', 'VERB'), ('\n', 'SPACE'), ('His', 'PRON'), ('appearance', 'NOUN'), ('however', 'ADV'), ('was', 'AUX'), ('not', 'PART'), ('unpleasing', 'VERB'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('an', 'DET'), ('absolute', 'ADJ'), ('old', 'ADJ'), ('bachelor', 'NOUN'), ('for', 'ADP'), ('he', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('wrong', 'ADJ'), ('side', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('five', 'NUM'), ('and', 'CCONJ'), ('thirty', 'NUM'), ('but', 'CCONJ'), ('though', 'SCONJ'), ('his', 'PRON'), ('face', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('handsome', 'ADJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('countenance', 'NOUN'), ('was', 'AUX'), ('sensible', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('address', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('particularly', 'ADV'), ('gentlemanlike', 'ADJ'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('was', 'VERB'), ('nothing', 'PRON'), ('in', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('recommend', 'VERB'), ('them', 'PRON'), ('as', 'SCONJ'), ('companions', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('but', 'CCONJ'), ('the', 'DET'), ('cold', 'ADJ'), ('\n', 'SPACE'), ('insipidity', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('so', 'ADV'), ('particularly', 'ADV'), ('repulsive', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('in', 'ADP'), ('comparison', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('the', 'DET'), ('gravity', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('the', 'DET'), ('boisterous', 'ADJ'), ('mirth', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('his', 'PRON'), ('\n', 'SPACE'), ('motherinlaw', 'NOUN'), ('was', 'AUX'), ('interesting', 'ADJ'), (' ', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('roused', 'VERB'), ('to', 'PART'), ('enjoyment', 'VERB'), ('only', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('four', 'NUM'), ('noisy', 'ADJ'), ('children', 'NOUN'), ('after', 'ADP'), ('dinner', 'NOUN'), ('who', 'PRON'), ('pulled', 'VERB'), ('her', 'PRON'), ('about', 'ADP'), ('\n', 'SPACE'), ('tore', 'VERB'), ('her', 'PRON'), ('clothes', 'NOUN'), ('and', 'CCONJ'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('every', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('discourse', 'NOUN'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('what', 'PRON'), ('related', 'VERB'), ('to', 'ADP'), ('themselves', 'PRON'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('discovered', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('musical', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('invited', 'VERB'), ('to', 'PART'), ('play', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('instrument', 'NOUN'), ('was', 'AUX'), ('unlocked', 'ADJ'), ('\n', 'SPACE'), ('every', 'DET'), ('body', 'NOUN'), ('prepared', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('charmed', 'VERB'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('sang', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('at', 'ADP'), ('their', 'PRON'), ('request', 'NOUN'), ('went', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('chief', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('songs', 'NOUN'), ('which', 'PRON'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('had', 'AUX'), ('brought', 'VERB'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('family', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('marriage', 'NOUN'), ('and', 'CCONJ'), ('which', 'PRON'), ('perhaps', 'ADV'), ('had', 'AUX'), ('lain', 'VERB'), ('\n', 'SPACE'), ('ever', 'ADV'), ('since', 'SCONJ'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('position', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('pianoforte', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('had', 'AUX'), ('celebrated', 'VERB'), ('that', 'DET'), ('event', 'NOUN'), ('by', 'ADP'), ('giving', 'VERB'), ('\n', 'SPACE'), ('up', 'ADP'), ('music', 'NOUN'), ('although', 'SCONJ'), ('by', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('account', 'VERB'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('played', 'VERB'), ('extremely', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('was', 'AUX'), ('very', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('performance', 'NOUN'), ('was', 'AUX'), ('highly', 'ADV'), ('applauded', 'ADJ'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('loud', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('admiration', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('song', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADV'), ('loud', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('conversation', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('while', 'SCONJ'), ('every', 'DET'), ('\n', 'SPACE'), ('song', 'NOUN'), ('lasted', 'VERB'), (' ', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('frequently', 'ADV'), ('called', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('order', 'VERB'), ('\n', 'SPACE'), ('wondered', 'VERB'), ('how', 'SCONJ'), ('any', 'DET'), ('ones', 'NOUN'), ('attention', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('diverted', 'VERB'), ('from', 'ADP'), ('music', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('and', 'CCONJ'), ('asked', 'VERB'), ('Marianne', 'PROPN'), ('to', 'PART'), ('sing', 'VERB'), ('a', 'DET'), ('particular', 'ADJ'), ('song', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('just', 'ADV'), ('finished', 'VERB'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('alone', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('party', 'NOUN'), ('heard', 'VERB'), ('her', 'PRON'), ('without', 'ADP'), ('being', 'AUX'), ('in', 'ADP'), ('raptures', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('paid', 'VERB'), ('her', 'PRON'), ('only', 'ADV'), ('the', 'DET'), ('compliment', 'NOUN'), ('of', 'ADP'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('respect', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('others', 'NOUN'), ('had', 'AUX'), ('\n', 'SPACE'), ('reasonably', 'ADV'), ('forfeited', 'VERB'), ('by', 'ADP'), ('their', 'PRON'), ('shameless', 'ADJ'), ('want', 'NOUN'), ('of', 'ADP'), ('taste', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('music', 'NOUN'), ('though', 'SCONJ'), ('it', 'PRON'), ('amounted', 'VERB'), ('not', 'PART'), ('to', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('ecstatic', 'ADJ'), ('delight', 'NOUN'), ('which', 'PRON'), ('alone', 'ADV'), ('could', 'AUX'), ('sympathize', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('estimable', 'ADJ'), ('when', 'SCONJ'), ('contrasted', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('horrible', 'ADJ'), ('\n', 'SPACE'), ('insensibility', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('reasonable', 'ADJ'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('allow', 'VERB'), ('that', 'SCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('five', 'NUM'), ('and', 'CCONJ'), ('thirty', 'NUM'), ('might', 'AUX'), ('well', 'ADV'), ('have', 'AUX'), ('\n', 'SPACE'), ('outlived', 'VERB'), ('all', 'DET'), ('acuteness', 'NOUN'), ('of', 'ADP'), ('feeling', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('exquisite', 'ADJ'), ('\n', 'SPACE'), ('power', 'NOUN'), ('of', 'ADP'), ('enjoyment', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('perfectly', 'ADV'), ('disposed', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('allowance', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('colonels', 'NOUN'), ('advanced', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('humanity', 'NOUN'), ('required', 'VERB'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('8', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('widow', 'NOUN'), ('with', 'ADP'), ('an', 'DET'), ('ample', 'ADJ'), ('jointure', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('only', 'ADV'), ('two', 'NUM'), ('daughters', 'NOUN'), ('both', 'PRON'), ('of', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('lived', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('respectably', 'ADV'), ('married', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('now', 'ADV'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('but', 'CCONJ'), ('to', 'PART'), ('marry', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('promotion', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('object', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('zealously', 'ADV'), ('active', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('her', 'PRON'), ('ability', 'NOUN'), ('reached', 'VERB'), ('and', 'CCONJ'), ('missed', 'VERB'), ('no', 'DET'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('projecting', 'VERB'), ('weddings', 'NOUN'), ('among', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('young', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('acquaintance', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('remarkably', 'ADV'), ('quick', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('discovery', 'NOUN'), ('of', 'ADP'), ('attachments', 'NOUN'), ('and', 'CCONJ'), ('had', 'AUX'), ('enjoyed', 'VERB'), ('the', 'DET'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('raising', 'VERB'), ('the', 'DET'), ('blushes', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('vanity', 'NOUN'), ('of', 'ADP'), ('many', 'DET'), ('a', 'DET'), ('young', 'ADJ'), ('\n', 'SPACE'), ('lady', 'NOUN'), ('by', 'ADP'), ('insinuations', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('power', 'NOUN'), ('over', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('this', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('discernment', 'ADJ'), ('enabled', 'VERB'), ('her', 'PRON'), ('soon', 'ADV'), ('after', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('arrival', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('decisively', 'ADV'), ('to', 'PART'), ('pronounce', 'VERB'), ('that', 'SCONJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('in', 'ADP'), ('love', 'NOUN'), ('with', 'ADP'), ('Marianne', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('rather', 'ADV'), ('suspected', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('first', 'ADJ'), ('\n', 'SPACE'), ('evening', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('together', 'ADV'), ('from', 'ADP'), ('his', 'PRON'), ('listening', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('attentively', 'ADV'), ('while', 'SCONJ'), ('she', 'PRON'), ('sang', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('the', 'DET'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('returned', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('dining', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('fact', 'NOUN'), ('was', 'AUX'), ('ascertained', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('listening', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('It', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('perfectly', 'ADV'), ('convinced', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('an', 'DET'), ('excellent', 'ADJ'), ('match', 'NOUN'), ('for', 'SCONJ'), ('HE', 'PRON'), ('was', 'AUX'), ('rich', 'ADJ'), ('and', 'CCONJ'), ('SHE', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('handsome', 'ADJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('anxious', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('well', 'ADV'), ('married', 'VERB'), ('ever', 'ADV'), ('since', 'SCONJ'), ('her', 'PRON'), ('connection', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('first', 'ADV'), ('brought', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('get', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('husband', 'NOUN'), ('for', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('pretty', 'ADJ'), ('girl', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('immediate', 'ADJ'), ('advantage', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('was', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('\n', 'SPACE'), ('inconsiderable', 'ADJ'), ('for', 'SCONJ'), ('it', 'PRON'), ('supplied', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('endless', 'ADJ'), ('jokes', 'NOUN'), ('\n', 'SPACE'), ('against', 'ADP'), ('them', 'PRON'), ('both', 'PRON'), (' ', 'SPACE'), ('At', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('she', 'PRON'), ('laughed', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('colonel', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('at', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('To', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('raillery', 'NOUN'), ('was', 'AUX'), ('probably', 'ADV'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('regarded', 'VERB'), ('only', 'ADV'), ('himself', 'PRON'), ('\n', 'SPACE'), ('perfectly', 'ADV'), ('indifferent', 'ADJ'), ('but', 'CCONJ'), ('to', 'ADP'), ('the', 'DET'), ('latter', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('first', 'ADJ'), ('incomprehensible', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('its', 'PRON'), ('object', 'NOUN'), ('was', 'AUX'), ('understood', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('hardly', 'ADV'), ('knew', 'VERB'), ('whether', 'SCONJ'), ('most', 'ADJ'), ('to', 'PART'), ('laugh', 'VERB'), ('at', 'ADP'), ('its', 'PRON'), ('absurdity', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('censure', 'VERB'), ('its', 'PRON'), ('impertinence', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('considered', 'VERB'), ('it', 'PRON'), ('as', 'ADP'), ('an', 'DET'), ('\n', 'SPACE'), ('unfeeling', 'ADJ'), ('reflection', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('colonels', 'NOUN'), ('advanced', 'ADJ'), ('years', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('on', 'ADP'), ('his', 'PRON'), ('forlorn', 'ADJ'), ('condition', 'NOUN'), ('as', 'ADP'), ('an', 'DET'), ('old', 'ADJ'), ('bachelor', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('who', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('five', 'NUM'), ('years', 'NOUN'), ('\n', 'SPACE'), ('younger', 'ADJ'), ('than', 'ADP'), ('herself', 'PRON'), ('so', 'ADV'), ('exceedingly', 'ADV'), ('ancient', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('youthful', 'ADJ'), ('fancy', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('ventured', 'VERB'), ('to', 'PART'), ('clear', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('from', 'ADP'), ('the', 'DET'), ('probability', 'NOUN'), ('of', 'ADP'), ('wishing', 'VERB'), ('to', 'PART'), ('throw', 'VERB'), ('\n', 'SPACE'), ('ridicule', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('age', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('Mamma', 'PROPN'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('deny', 'VERB'), ('the', 'DET'), ('absurdity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('accusation', 'NOUN'), ('though', 'SCONJ'), ('you', 'PRON'), ('may', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('intentionally', 'ADV'), ('\n', 'SPACE'), ('illnatured', 'VERB'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('is', 'AUX'), ('certainly', 'ADV'), ('younger', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('but', 'CCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('old', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('MY', 'PROPN'), ('father', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('were', 'AUX'), ('ever', 'ADV'), ('animated', 'VERB'), ('enough', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('love', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('have', 'AUX'), ('long', 'ADV'), ('outlived', 'VERB'), ('every', 'DET'), ('sensation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('too', 'ADV'), ('ridiculous', 'ADJ'), (' ', 'SPACE'), ('When', 'SCONJ'), ('is', 'AUX'), ('a', 'DET'), ('man', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('safe', 'ADJ'), ('from', 'ADP'), ('such', 'ADJ'), ('wit', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('age', 'NOUN'), ('and', 'CCONJ'), ('infirmity', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('protect', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Infirmity', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('do', 'AUX'), ('you', 'PRON'), ('call', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('infirm', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('easily', 'ADV'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('his', 'PRON'), ('age', 'NOUN'), ('may', 'AUX'), ('appear', 'VERB'), ('much', 'ADV'), ('\n', 'SPACE'), ('greater', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('than', 'ADP'), ('to', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('but', 'CCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('deceive', 'VERB'), ('yourself', 'PRON'), ('as', 'ADP'), ('to', 'ADP'), ('his', 'PRON'), ('having', 'VERB'), ('the', 'DET'), ('use', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('limbs', 'NOUN'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('hear', 'VERB'), ('him', 'PRON'), ('complain', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('rheumatism', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('is', 'AUX'), ('not', 'PART'), ('that', 'SCONJ'), ('the', 'DET'), ('commonest', 'ADJ'), ('infirmity', 'NOUN'), ('of', 'ADP'), ('declining', 'VERB'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dearest', 'ADJ'), ('child', 'NOUN'), ('said', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('laughing', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('this', 'DET'), ('rate', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('continual', 'ADJ'), ('terror', 'NOUN'), ('of', 'ADP'), ('MY', 'PROPN'), ('decay', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('seem', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('a', 'DET'), ('miracle', 'NOUN'), ('that', 'SCONJ'), ('my', 'PRON'), ('life', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('extended', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('advanced', 'ADJ'), ('age', 'NOUN'), ('of', 'ADP'), ('forty', 'NOUN'), ('\n\n', 'SPACE'), ('Mamma', 'PROPN'), ('you', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('doing', 'VERB'), ('me', 'PRON'), ('justice', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('old', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('yet', 'ADV'), ('apprehensive', 'VERB'), ('of', 'ADP'), ('losing', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('may', 'AUX'), ('live', 'VERB'), ('twenty', 'NUM'), ('years', 'NOUN'), ('longer', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('thirtyfive', 'ADJ'), ('has', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('with', 'ADP'), ('matrimony', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('thirtyfive', 'ADJ'), ('and', 'CCONJ'), ('seventeen', 'NUM'), ('had', 'AUX'), ('\n', 'SPACE'), ('better', 'ADV'), ('not', 'PART'), ('have', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('with', 'ADP'), ('matrimony', 'PRON'), ('together', 'ADV'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('if', 'SCONJ'), ('there', 'PRON'), ('should', 'AUX'), ('by', 'ADP'), ('any', 'DET'), ('chance', 'NOUN'), ('happen', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('is', 'AUX'), ('single', 'ADJ'), ('at', 'ADP'), ('seven', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('being', 'AUX'), ('thirtyfive', 'ADJ'), ('any', 'DET'), ('objection', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('marrying', 'VERB'), ('HER', 'PRON'), ('\n\n', 'SPACE'), ('A', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('seven', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('after', 'ADP'), ('pausing', 'VERB'), ('a', 'DET'), ('moment', 'NOUN'), ('can', 'AUX'), ('never', 'ADV'), ('hope', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('or', 'CCONJ'), ('inspire', 'VERB'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('her', 'PRON'), ('home', 'NOUN'), ('be', 'VERB'), ('uncomfortable', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('her', 'PRON'), ('fortune', 'NOUN'), ('small', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('bring', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('offices', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('nurse', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('provision', 'NOUN'), ('and', 'CCONJ'), ('security', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('his', 'PRON'), ('marrying', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('woman', 'NOUN'), ('therefore', 'ADV'), ('there', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('unsuitable', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('compact', 'NOUN'), ('of', 'ADP'), ('convenience', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('world', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('satisfied', 'ADJ'), (' ', 'SPACE'), ('In', 'ADP'), ('my', 'PRON'), ('eyes', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('no', 'DET'), ('marriage', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('but', 'CCONJ'), ('that', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('To', 'ADP'), ('me', 'PRON'), ('it', 'PRON'), ('would', 'AUX'), ('seem', 'VERB'), ('only', 'ADV'), ('a', 'DET'), ('commercial', 'ADJ'), ('exchange', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('each', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('benefited', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('expense', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('impossible', 'ADJ'), ('I', 'PRON'), ('know', 'VERB'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('convince', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('seven', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('could', 'AUX'), ('\n', 'SPACE'), ('feel', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('thirtyfive', 'ADJ'), ('anything', 'PRON'), ('near', 'ADP'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('love', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('desirable', 'ADJ'), ('companion', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('object', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('dooming', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('wife', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('constant', 'ADJ'), ('confinement', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sick', 'ADJ'), ('chamber', 'NOUN'), ('\n', 'SPACE'), ('merely', 'ADV'), ('because', 'SCONJ'), ('he', 'PRON'), ('chanced', 'VERB'), ('to', 'PART'), ('complain', 'VERB'), ('yesterday', 'NOUN'), ('a', 'DET'), ('\n', 'SPACE'), ('very', 'ADV'), ('cold', 'ADJ'), ('damp', 'ADJ'), ('day', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('slight', 'ADJ'), ('rheumatic', 'ADJ'), ('feel', 'NOUN'), ('in', 'ADP'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('shoulders', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('flannel', 'ADJ'), ('waistcoats', 'NOUN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('me', 'PRON'), ('a', 'DET'), ('flannel', 'NOUN'), ('waistcoat', 'NOUN'), ('is', 'AUX'), ('invariably', 'ADV'), ('connected', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('aches', 'NOUN'), ('cramps', 'NOUN'), ('rheumatisms', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('species', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('ailment', 'NOUN'), ('that', 'PRON'), ('can', 'AUX'), ('afflict', 'VERB'), ('the', 'DET'), ('old', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('feeble', 'NOUN'), ('\n\n', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('only', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('violent', 'ADJ'), ('fever', 'NOUN'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('have', 'AUX'), ('despised', 'VERB'), ('him', 'PRON'), ('half', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), (' ', 'SPACE'), ('Confess', 'PROPN'), ('Marianne', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('there', 'ADV'), ('something', 'PRON'), ('interesting', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('flushed', 'ADJ'), ('cheek', 'NOUN'), ('\n', 'SPACE'), ('hollow', 'ADJ'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('quick', 'ADJ'), ('pulse', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('fever', 'NOUN'), ('\n\n', 'SPACE'), ('Soon', 'ADV'), ('after', 'ADP'), ('this', 'PRON'), ('upon', 'SCONJ'), ('Elinors', 'NOUN'), ('leaving', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('Mamma', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('have', 'VERB'), ('an', 'DET'), ('alarm', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('illness', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('conceal', 'VERB'), ('from', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('well', 'ADV'), (' ', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('now', 'ADV'), ('been', 'AUX'), ('here', 'ADV'), ('almost', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('fortnight', 'ADJ'), ('and', 'CCONJ'), ('yet', 'ADV'), ('he', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('come', 'VERB'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('but', 'SCONJ'), ('real', 'ADJ'), ('\n', 'SPACE'), ('indisposition', 'NOUN'), ('could', 'AUX'), ('occasion', 'VERB'), ('this', 'DET'), ('extraordinary', 'ADJ'), ('delay', 'NOUN'), ('\n', 'SPACE'), ('What', 'PRON'), ('else', 'ADV'), ('can', 'AUX'), ('detain', 'VERB'), ('him', 'PRON'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n\n', 'SPACE'), ('Had', 'VERB'), ('you', 'PRON'), ('any', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('coming', 'VERB'), ('so', 'ADV'), ('soon', 'ADV'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('none', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('felt', 'VERB'), ('any', 'DET'), ('anxiety', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('it', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('in', 'ADP'), ('recollecting', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('sometimes', 'ADV'), ('showed', 'VERB'), ('a', 'DET'), ('want', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('and', 'CCONJ'), ('readiness', 'NOUN'), ('in', 'ADP'), ('accepting', 'VERB'), ('my', 'PRON'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('coming', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('Does', 'AUX'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('expect', 'VERB'), ('him', 'PRON'), ('already', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('mentioned', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('but', 'CCONJ'), ('of', 'ADP'), ('course', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('must', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('rather', 'ADV'), ('think', 'VERB'), ('you', 'PRON'), ('are', 'AUX'), ('mistaken', 'ADJ'), ('for', 'ADP'), ('when', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('talking', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('yesterday', 'NOUN'), ('of', 'ADP'), ('getting', 'VERB'), ('a', 'DET'), ('new', 'ADJ'), ('grate', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('spare', 'ADJ'), ('bedchamber', 'NOUN'), ('she', 'PRON'), ('observed', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('no', 'DET'), ('immediate', 'ADJ'), ('hurry', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('likely', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('room', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('wanted', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('strange', 'ADJ'), ('this', 'PRON'), ('is', 'AUX'), ('what', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('meaning', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('unaccountable', 'ADJ'), ('How', 'SCONJ'), ('cold', 'ADJ'), ('how', 'SCONJ'), ('composed', 'VERB'), ('were', 'AUX'), ('their', 'PRON'), ('last', 'ADJ'), ('\n', 'SPACE'), ('adieus', 'NOUN'), ('How', 'SCONJ'), ('languid', 'ADJ'), ('their', 'PRON'), ('conversation', 'NOUN'), ('the', 'DET'), ('last', 'ADJ'), ('evening', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('together', 'ADV'), ('In', 'ADP'), ('Edwards', 'PROPN'), ('farewell', 'INTJ'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('distinction', 'NOUN'), ('between', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('me', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('good', 'ADJ'), ('wishes', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('an', 'DET'), ('affectionate', 'ADJ'), ('brother', 'NOUN'), ('to', 'ADP'), ('both', 'DET'), (' ', 'SPACE'), ('Twice', 'ADV'), ('did', 'AUX'), ('I', 'PRON'), ('leave', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('purposely', 'ADV'), ('together', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('each', 'DET'), ('time', 'NOUN'), ('did', 'AUX'), ('he', 'PRON'), ('most', 'ADV'), ('unaccountably', 'ADV'), ('follow', 'VERB'), ('me', 'PRON'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('quitting', 'VERB'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('cried', 'VERB'), ('not', 'PART'), ('as', 'SCONJ'), ('I', 'PRON'), ('did', 'AUX'), (' ', 'SPACE'), ('Even', 'ADV'), ('now', 'ADV'), ('her', 'PRON'), ('selfcommand', 'NOUN'), ('is', 'AUX'), ('invariable', 'ADJ'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('is', 'AUX'), ('she', 'PRON'), ('dejected', 'VERB'), ('or', 'CCONJ'), ('melancholy', 'ADJ'), ('When', 'SCONJ'), ('does', 'AUX'), ('she', 'PRON'), ('try', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('avoid', 'VERB'), ('society', 'NOUN'), ('or', 'CCONJ'), ('appear', 'VERB'), ('restless', 'ADJ'), ('and', 'CCONJ'), ('dissatisfied', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('9', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('now', 'ADV'), ('settled', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('with', 'ADP'), ('tolerable', 'ADJ'), ('\n', 'SPACE'), ('comfort', 'NOUN'), ('to', 'ADP'), ('themselves', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('garden', 'NOUN'), ('with', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('the', 'DET'), ('objects', 'NOUN'), ('surrounding', 'VERB'), ('them', 'PRON'), ('were', 'AUX'), ('now', 'ADV'), ('become', 'VERB'), ('familiar', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('ordinary', 'ADJ'), ('pursuits', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('to', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('half', 'DET'), ('its', 'PRON'), ('charms', 'NOUN'), ('were', 'AUX'), ('engaged', 'VERB'), ('in', 'ADV'), ('again', 'ADV'), ('with', 'ADP'), ('far', 'ADV'), ('greater', 'ADJ'), ('\n', 'SPACE'), ('enjoyment', 'NOUN'), ('than', 'SCONJ'), ('Norland', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('afford', 'VERB'), ('since', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('loss', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('father', 'NOUN'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('Middleton', 'PROPN'), ('who', 'PRON'), ('called', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('them', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('fortnight', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('much', 'ADJ'), ('occupation', 'NOUN'), ('at', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('conceal', 'VERB'), ('his', 'PRON'), ('amazement', 'NOUN'), ('on', 'ADP'), ('finding', 'VERB'), ('them', 'PRON'), ('always', 'ADV'), ('employed', 'VERB'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('visitors', 'NOUN'), ('except', 'SCONJ'), ('those', 'PRON'), ('from', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('were', 'AUX'), ('not', 'PART'), ('many', 'ADJ'), ('for', 'ADP'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('urgent', 'ADJ'), ('entreaties', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('they', 'PRON'), ('would', 'AUX'), ('mix', 'VERB'), ('more', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('and', 'CCONJ'), ('repeated', 'VERB'), ('\n', 'SPACE'), ('assurances', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('carriage', 'NOUN'), ('being', 'AUX'), ('always', 'ADV'), ('at', 'ADP'), ('their', 'PRON'), ('service', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('independence', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('spirit', 'PROPN'), ('overcame', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('wish', 'NOUN'), ('of', 'ADP'), ('society', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('resolute', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('declining', 'VERB'), ('to', 'PART'), ('visit', 'VERB'), ('any', 'DET'), ('family', 'NOUN'), ('beyond', 'ADP'), ('the', 'DET'), ('distance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('walk', 'NOUN'), (' ', 'SPACE'), ('There', 'PRON'), ('were', 'VERB'), ('but', 'CCONJ'), ('few', 'ADJ'), ('who', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('classed', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('all', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('that', 'PRON'), ('were', 'AUX'), ('attainable', 'ADJ'), ('\n', 'SPACE'), ('About', 'ADV'), ('a', 'DET'), ('mile', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('half', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('along', 'ADP'), ('the', 'DET'), ('narrow', 'ADJ'), ('\n', 'SPACE'), ('winding', 'ADJ'), ('valley', 'NOUN'), ('of', 'ADP'), ('Allenham', 'PROPN'), ('which', 'PRON'), ('issued', 'VERB'), ('from', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('formerly', 'ADV'), ('described', 'VERB'), ('the', 'DET'), ('girls', 'NOUN'), ('had', 'VERB'), ('in', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('earliest', 'ADJ'), ('walks', 'NOUN'), ('discovered', 'VERB'), ('an', 'DET'), ('ancient', 'ADJ'), ('respectable', 'ADJ'), ('looking', 'VERB'), ('\n', 'SPACE'), ('mansion', 'NOUN'), ('which', 'PRON'), ('by', 'ADP'), ('reminding', 'VERB'), ('them', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('of', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('interested', 'VERB'), ('their', 'PRON'), ('imagination', 'NOUN'), ('and', 'CCONJ'), ('made', 'VERB'), ('them', 'PRON'), ('wish', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('better', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('they', 'PRON'), ('learnt', 'VERB'), ('on', 'ADP'), ('enquiry', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('its', 'PRON'), ('possessor', 'NOUN'), ('an', 'DET'), ('elderly', 'ADJ'), ('lady', 'NOUN'), ('of', 'ADP'), ('very', 'ADV'), ('good', 'ADJ'), ('character', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('unfortunately', 'ADV'), ('too', 'ADV'), ('infirm', 'ADJ'), ('to', 'PART'), ('mix', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('never', 'ADV'), ('stirred', 'VERB'), ('from', 'ADP'), ('home', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('whole', 'ADJ'), ('country', 'NOUN'), ('about', 'ADP'), ('them', 'PRON'), ('abounded', 'VERB'), ('in', 'ADP'), ('beautiful', 'ADJ'), ('walks', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('high', 'ADJ'), ('downs', 'NOUN'), ('which', 'PRON'), ('invited', 'VERB'), ('them', 'PRON'), ('from', 'ADP'), ('almost', 'ADV'), ('every', 'PRON'), ('window', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('to', 'PART'), ('seek', 'VERB'), ('the', 'DET'), ('exquisite', 'ADJ'), ('enjoyment', 'NOUN'), ('of', 'ADP'), ('air', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('their', 'PRON'), ('summits', 'NOUN'), ('were', 'AUX'), ('a', 'DET'), ('happy', 'ADJ'), ('alternative', 'NOUN'), ('when', 'SCONJ'), ('the', 'DET'), ('dirt', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('valleys', 'NOUN'), ('beneath', 'ADP'), ('shut', 'VERB'), ('up', 'ADP'), ('their', 'PRON'), ('superior', 'ADJ'), ('beauties', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('towards', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('these', 'DET'), ('hills', 'NOUN'), ('did', 'VERB'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('one', 'NUM'), ('memorable', 'ADJ'), ('morning', 'NOUN'), ('direct', 'VERB'), ('their', 'PRON'), ('steps', 'NOUN'), ('attracted', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('partial', 'ADJ'), ('sunshine', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('showery', 'NOUN'), ('sky', 'NOUN'), ('and', 'CCONJ'), ('unable', 'ADJ'), ('longer', 'ADV'), ('to', 'PART'), ('bear', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('confinement', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('settled', 'VERB'), ('rain', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('preceding', 'VERB'), ('\n', 'SPACE'), ('days', 'NOUN'), ('had', 'AUX'), ('occasioned', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('weather', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('tempting', 'VERB'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('draw', 'VERB'), ('the', 'DET'), ('two', 'NUM'), ('others', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('pencil', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('book', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('declaration', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('day', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('lastingly', 'ADV'), ('fair', 'ADJ'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('every', 'DET'), ('threatening', 'ADJ'), ('cloud', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('drawn', 'VERB'), ('off', 'ADP'), ('from', 'ADP'), ('their', 'PRON'), ('hills', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('two', 'NUM'), ('girls', 'NOUN'), ('set', 'VERB'), ('off', 'ADP'), ('\n', 'SPACE'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('gaily', 'ADV'), ('ascended', 'VERB'), ('the', 'DET'), ('downs', 'NOUN'), ('rejoicing', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('penetration', 'NOUN'), ('at', 'ADP'), ('every', 'DET'), ('glimpse', 'NOUN'), ('of', 'ADP'), ('blue', 'ADJ'), ('sky', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('caught', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('faces', 'NOUN'), ('the', 'DET'), ('animating', 'VERB'), ('gales', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('high', 'ADJ'), ('\n', 'SPACE'), ('southwesterly', 'ADV'), ('wind', 'NOUN'), ('they', 'PRON'), ('pitied', 'VERB'), ('the', 'DET'), ('fears', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('from', 'ADP'), ('sharing', 'VERB'), ('such', 'ADJ'), ('delightful', 'ADJ'), ('sensations', 'NOUN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('there', 'PRON'), ('a', 'DET'), ('felicity', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('superior', 'ADJ'), ('to', 'ADP'), ('thisMargaret', 'NUM'), ('we', 'PRON'), ('will', 'AUX'), ('walk', 'VERB'), ('here', 'ADV'), ('at', 'ADP'), ('least', 'ADJ'), ('\n', 'SPACE'), ('two', 'NUM'), ('hours', 'NOUN'), ('\n\n', 'SPACE'), ('Margaret', 'PROPN'), ('agreed', 'VERB'), ('and', 'CCONJ'), ('they', 'PRON'), ('pursued', 'VERB'), ('their', 'PRON'), ('way', 'NOUN'), ('against', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('wind', 'NOUN'), ('resisting', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('laughing', 'VERB'), ('delight', 'NOUN'), ('for', 'ADP'), ('about', 'ADV'), ('\n', 'SPACE'), ('twenty', 'NUM'), ('minutes', 'NOUN'), ('longer', 'ADV'), ('when', 'SCONJ'), ('suddenly', 'ADV'), ('the', 'DET'), ('clouds', 'NOUN'), ('united', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('heads', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('driving', 'VERB'), ('rain', 'NOUN'), ('set', 'VERB'), ('full', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('face', 'NOUN'), ('\n', 'SPACE'), ('Chagrined', 'VERB'), ('and', 'CCONJ'), ('surprised', 'VERB'), ('they', 'PRON'), ('were', 'AUX'), ('obliged', 'VERB'), ('though', 'ADV'), ('unwillingly', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('turn', 'VERB'), ('back', 'ADV'), ('for', 'ADP'), ('no', 'DET'), ('shelter', 'NOUN'), ('was', 'AUX'), ('nearer', 'ADJ'), ('than', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('One', 'NUM'), ('consolation', 'NOUN'), ('however', 'ADV'), ('remained', 'VERB'), ('for', 'SCONJ'), ('them', 'PRON'), ('to', 'PART'), ('which', 'PRON'), ('the', 'DET'), ('\n', 'SPACE'), ('exigence', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('gave', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('usual', 'ADJ'), ('propriety', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('that', 'PRON'), ('of', 'ADP'), ('running', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('possible', 'ADJ'), ('speed', 'NOUN'), ('down', 'ADP'), ('the', 'DET'), ('steep', 'ADJ'), ('\n', 'SPACE'), ('side', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('hill', 'NOUN'), ('which', 'PRON'), ('led', 'VERB'), ('immediately', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('garden', 'NOUN'), ('gate', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('set', 'VERB'), ('off', 'ADP'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'VERB'), ('at', 'ADP'), ('first', 'ADV'), ('the', 'DET'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('a', 'DET'), ('false', 'ADJ'), ('step', 'NOUN'), ('brought', 'VERB'), ('her', 'PRON'), ('suddenly', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('ground', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('unable', 'ADJ'), ('to', 'PART'), ('stop', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('assist', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('involuntarily', 'ADV'), ('hurried', 'VERB'), ('along', 'ADV'), ('and', 'CCONJ'), ('reached', 'VERB'), ('the', 'DET'), ('bottom', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('safety', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('gentleman', 'NOUN'), ('carrying', 'VERB'), ('a', 'DET'), ('gun', 'NOUN'), ('with', 'ADP'), ('two', 'NUM'), ('pointers', 'NOUN'), ('\n', 'SPACE'), ('playing', 'VERB'), ('round', 'ADV'), ('him', 'PRON'), ('was', 'AUX'), ('passing', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('hill', 'NOUN'), ('and', 'CCONJ'), ('within', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('few', 'ADJ'), ('yards', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('when', 'SCONJ'), ('her', 'PRON'), ('accident', 'NOUN'), ('happened', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('put', 'VERB'), ('down', 'ADP'), ('his', 'PRON'), ('gun', 'NOUN'), ('and', 'CCONJ'), ('ran', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('assistance', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('raised', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('ground', 'NOUN'), ('but', 'CCONJ'), ('her', 'PRON'), ('foot', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('twisted', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('fall', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('scarcely', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('stand', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('gentleman', 'NOUN'), ('offered', 'VERB'), ('his', 'PRON'), ('services', 'NOUN'), ('and', 'CCONJ'), ('perceiving', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('modesty', 'NOUN'), ('declined', 'VERB'), ('what', 'PRON'), ('her', 'PRON'), ('situation', 'NOUN'), ('rendered', 'VERB'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('took', 'VERB'), ('her', 'PRON'), ('up', 'ADP'), ('in', 'ADP'), ('his', 'PRON'), ('arms', 'NOUN'), ('without', 'ADP'), ('farther', 'ADJ'), ('delay', 'NOUN'), ('and', 'CCONJ'), ('carried', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('down', 'ADP'), ('the', 'DET'), ('hill', 'NOUN'), (' ', 'SPACE'), ('Then', 'ADV'), ('passing', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('garden', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('gate', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('left', 'VERB'), ('open', 'ADJ'), ('by', 'ADP'), ('Margaret', 'PROPN'), ('he', 'PRON'), ('bore', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('directly', 'ADV'), ('into', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('whither', 'NOUN'), ('Margaret', 'PROPN'), ('was', 'AUX'), ('just', 'ADV'), ('arrived', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('quitted', 'VERB'), ('not', 'PART'), ('his', 'PRON'), ('hold', 'NOUN'), ('till', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('seated', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('chair', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('parlour', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('rose', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('amazement', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('entrance', 'NOUN'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('the', 'DET'), ('eyes', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('were', 'AUX'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('him', 'PRON'), ('with', 'ADP'), ('an', 'DET'), ('evident', 'ADJ'), ('wonder', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('secret', 'ADJ'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('equally', 'ADV'), ('sprung', 'VERB'), ('from', 'ADP'), ('his', 'PRON'), ('appearance', 'NOUN'), ('he', 'PRON'), ('apologized', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('intrusion', 'NOUN'), ('by', 'ADP'), ('relating', 'VERB'), ('its', 'PRON'), ('cause', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('frank', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('graceful', 'ADJ'), ('that', 'SCONJ'), ('his', 'PRON'), ('person', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('uncommonly', 'ADV'), ('handsome', 'ADJ'), ('received', 'VERB'), ('additional', 'ADJ'), ('charms', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('expression', 'NOUN'), (' ', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('even', 'ADV'), ('old', 'ADJ'), ('ugly', 'ADJ'), ('and', 'CCONJ'), ('vulgar', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('gratitude', 'NOUN'), ('and', 'CCONJ'), ('kindness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('secured', 'VERB'), ('by', 'ADP'), ('any', 'DET'), ('act', 'NOUN'), ('of', 'ADP'), ('attention', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('child', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('influence', 'NOUN'), ('of', 'ADP'), ('youth', 'NOUN'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('gave', 'VERB'), ('an', 'DET'), ('interest', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('action', 'NOUN'), ('which', 'PRON'), ('came', 'VERB'), ('home', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('feelings', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('thanked', 'VERB'), ('him', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('sweetness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('address', 'NOUN'), ('which', 'PRON'), ('always', 'ADV'), ('attended', 'VERB'), ('her', 'PRON'), ('invited', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('seated', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('this', 'PRON'), ('he', 'PRON'), ('declined', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('dirty', 'ADJ'), ('and', 'CCONJ'), ('wet', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('then', 'ADV'), ('begged', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('to', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('His', 'PRON'), ('name', 'NOUN'), ('he', 'PRON'), ('replied', 'VERB'), ('was', 'AUX'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('his', 'PRON'), ('present', 'ADJ'), ('\n', 'SPACE'), ('home', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('from', 'ADP'), ('whence', 'NOUN'), ('he', 'PRON'), ('hoped', 'VERB'), ('she', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('allow', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('honour', 'NOUN'), ('of', 'ADP'), ('calling', 'VERB'), ('tomorrow', 'NOUN'), ('to', 'PART'), ('enquire', 'VERB'), ('\n', 'SPACE'), ('after', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('honour', 'NOUN'), ('was', 'AUX'), ('readily', 'ADV'), ('granted', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('then', 'ADV'), ('departed', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('himself', 'PRON'), ('still', 'ADV'), ('more', 'ADV'), ('interesting', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('midst', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('heavy', 'ADJ'), ('rain', 'NOUN'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('manly', 'ADJ'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('more', 'ADJ'), ('than', 'ADP'), ('common', 'ADJ'), ('gracefulness', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('instantly', 'ADV'), ('the', 'DET'), ('theme', 'NOUN'), ('of', 'ADP'), ('general', 'ADJ'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('laugh', 'NOUN'), ('which', 'PRON'), ('his', 'PRON'), ('gallantry', 'NOUN'), ('raised', 'VERB'), ('against', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('received', 'VERB'), ('particular', 'ADJ'), ('spirit', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('exterior', 'ADJ'), ('attractions', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('herself', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('less', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('person', 'NOUN'), ('that', 'PRON'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('confusion', 'NOUN'), ('which', 'PRON'), ('crimsoned', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('face', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('lifting', 'VERB'), ('her', 'PRON'), ('up', 'ADP'), ('had', 'AUX'), ('robbed', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('regarding', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('after', 'ADP'), ('their', 'PRON'), ('entering', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('\n', 'SPACE'), ('enough', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('join', 'VERB'), ('in', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('admiration', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('an', 'DET'), ('energy', 'NOUN'), ('which', 'PRON'), ('always', 'ADV'), ('adorned', 'VERB'), ('her', 'PRON'), ('praise', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('person', 'NOUN'), ('and', 'CCONJ'), ('air', 'NOUN'), ('were', 'AUX'), ('equal', 'ADJ'), ('to', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('fancy', 'NOUN'), ('had', 'AUX'), ('ever', 'ADV'), ('\n', 'SPACE'), ('drawn', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('hero', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('favourite', 'ADJ'), ('story', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('his', 'PRON'), ('carrying', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('with', 'ADP'), ('so', 'ADV'), ('little', 'ADJ'), ('previous', 'ADJ'), ('formality', 'NOUN'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('a', 'DET'), ('rapidity', 'NOUN'), ('of', 'ADP'), ('thought', 'NOUN'), ('which', 'PRON'), ('particularly', 'ADV'), ('recommended', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('action', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Every', 'DET'), ('circumstance', 'NOUN'), ('belonging', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('interesting', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('name', 'NOUN'), ('was', 'AUX'), ('good', 'ADJ'), ('his', 'PRON'), ('residence', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('favourite', 'ADJ'), ('village', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('soon', 'ADV'), ('found', 'VERB'), ('out', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('manly', 'ADJ'), ('dresses', 'NOUN'), ('a', 'DET'), ('shootingjacket', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('becoming', 'VERB'), ('\n', 'SPACE'), ('Her', 'PRON'), ('imagination', 'NOUN'), ('was', 'AUX'), ('busy', 'ADJ'), ('her', 'PRON'), ('reflections', 'NOUN'), ('were', 'AUX'), ('pleasant', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('pain', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sprained', 'VERB'), ('ankle', 'NOUN'), ('was', 'AUX'), ('disregarded', 'VERB'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('called', 'VERB'), ('on', 'ADP'), ('them', 'PRON'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('next', 'ADJ'), ('interval', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('fair', 'ADJ'), ('weather', 'NOUN'), ('that', 'DET'), ('morning', 'NOUN'), ('allowed', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('get', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('doors', 'NOUN'), ('and', 'CCONJ'), ('Mariannes', 'PROPN'), ('accident', 'NOUN'), ('being', 'AUX'), ('related', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('eagerly', 'ADV'), ('asked', 'VERB'), ('whether', 'SCONJ'), ('he', 'PRON'), ('knew', 'VERB'), ('any', 'DET'), ('gentleman', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('\n\n', 'SPACE'), ('Willoughby', 'PROPN'), ('cried', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('what', 'PRON'), ('is', 'AUX'), ('HE', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('That', 'PRON'), ('is', 'AUX'), ('good', 'ADJ'), ('news', 'NOUN'), ('however', 'ADV'), ('I', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('ride', 'VERB'), ('over', 'ADP'), ('tomorrow', 'NOUN'), ('and', 'CCONJ'), ('ask', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('dinner', 'NOUN'), ('on', 'ADP'), ('Thursday', 'PROPN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('him', 'PRON'), ('then', 'ADV'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n\n', 'SPACE'), ('Know', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('do', 'VERB'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('down', 'ADV'), ('here', 'ADV'), ('\n', 'SPACE'), ('every', 'DET'), ('year', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('what', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('is', 'AUX'), ('he', 'PRON'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('good', 'ADJ'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('fellow', 'NOUN'), ('as', 'SCONJ'), ('ever', 'ADV'), ('lived', 'VERB'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('A', 'DET'), ('very', 'ADV'), ('decent', 'ADJ'), ('shot', 'NOUN'), ('and', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('bolder', 'NOUN'), ('rider', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('England', 'PROPN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('is', 'AUX'), ('that', 'SCONJ'), ('all', 'PRON'), ('you', 'PRON'), ('can', 'AUX'), ('say', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('indignantly', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('what', 'PRON'), ('are', 'AUX'), ('his', 'PRON'), ('manners', 'NOUN'), ('on', 'ADP'), ('more', 'ADV'), ('intimate', 'ADJ'), ('\n', 'SPACE'), ('acquaintance', 'NOUN'), ('What', 'PRON'), ('his', 'PRON'), ('pursuits', 'VERB'), ('his', 'PRON'), ('talents', 'NOUN'), ('and', 'CCONJ'), ('genius', 'NOUN'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('rather', 'ADV'), ('puzzled', 'VERB'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('soul', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('much', 'ADJ'), ('about', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('as', 'ADP'), ('to', 'ADP'), ('all', 'DET'), ('THAT', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('pleasant', 'ADJ'), ('good', 'ADJ'), ('humoured', 'VERB'), ('fellow', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('has', 'AUX'), ('got', 'VERB'), ('the', 'DET'), ('nicest', 'ADJ'), ('little', 'ADJ'), ('black', 'ADJ'), ('bitch', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('pointer', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), (' ', 'SPACE'), ('Was', 'AUX'), ('she', 'PRON'), ('out', 'ADP'), ('with', 'ADP'), ('him', 'PRON'), ('today', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('no', 'ADV'), ('more', 'ADV'), ('satisfy', 'VERB'), ('him', 'PRON'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('colour', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('pointer', 'NOUN'), ('than', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('describe', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('the', 'DET'), ('shades', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('who', 'PRON'), ('is', 'AUX'), ('he', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('Where', 'SCONJ'), ('does', 'AUX'), ('he', 'PRON'), ('come', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), (' ', 'SPACE'), ('Has', 'VERB'), ('he', 'PRON'), ('a', 'DET'), ('house', 'NOUN'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('this', 'DET'), ('point', 'NOUN'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('could', 'AUX'), ('give', 'VERB'), ('more', 'ADV'), ('certain', 'ADJ'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('told', 'VERB'), ('them', 'PRON'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('property', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('resided', 'VERB'), ('there', 'ADV'), ('only', 'ADV'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('visiting', 'VERB'), ('the', 'DET'), ('old', 'ADJ'), ('lady', 'NOUN'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('Court', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('whom', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('related', 'VERB'), ('and', 'CCONJ'), ('whose', 'DET'), ('possessions', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('inherit', 'VERB'), ('adding', 'VERB'), ('Yes', 'INTJ'), ('yes', 'INTJ'), ('he', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('worth', 'ADJ'), ('\n', 'SPACE'), ('catching', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('he', 'PRON'), ('has', 'VERB'), ('a', 'DET'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('little', 'ADJ'), ('estate', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('in', 'ADP'), ('Somersetshire', 'PROPN'), ('besides', 'SCONJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('were', 'AUX'), ('you', 'PRON'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('up', 'ADP'), ('to', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('younger', 'ADJ'), ('sister', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('this', 'DET'), ('tumbling', 'NOUN'), ('down', 'ADP'), ('hills', 'NOUN'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('must', 'AUX'), ('not', 'PART'), ('expect', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('men', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('jealous', 'ADJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('take', 'VERB'), ('care', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('good', 'ADJ'), ('humoured', 'VERB'), ('smile', 'NOUN'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('incommoded', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('attempts', 'NOUN'), ('of', 'ADP'), ('either', 'PRON'), ('of', 'ADP'), ('MY', 'PROPN'), ('daughters', 'NOUN'), ('towards', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('call', 'VERB'), ('CATCHING', 'PROPN'), ('him', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('an', 'DET'), ('employment', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('brought', 'VERB'), ('up', 'ADP'), (' ', 'SPACE'), ('Men', 'NOUN'), ('are', 'AUX'), ('very', 'ADV'), ('safe', 'ADJ'), ('with', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('let', 'VERB'), ('them', 'PRON'), ('be', 'AUX'), ('ever', 'ADV'), ('so', 'ADV'), ('rich', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('however', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('respectable', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('one', 'NUM'), ('whose', 'DET'), ('acquaintance', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('ineligible', 'ADJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('as', 'ADV'), ('good', 'ADJ'), ('a', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('fellow', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('ever', 'ADV'), ('lived', 'VERB'), ('repeated', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('remember', 'VERB'), ('\n', 'SPACE'), ('last', 'ADJ'), ('Christmas', 'PROPN'), ('at', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('hop', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('he', 'PRON'), ('danced', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('eight', 'NUM'), ('oclock', 'NOUN'), ('till', 'SCONJ'), ('four', 'NUM'), ('without', 'ADP'), ('once', 'ADV'), ('sitting', 'VERB'), ('down', 'ADP'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('he', 'PRON'), ('indeed', 'ADV'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('sparkling', 'VERB'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('elegance', 'NOUN'), ('with', 'ADP'), ('spirit', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('and', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('up', 'ADV'), ('again', 'ADV'), ('at', 'ADP'), ('eight', 'NUM'), ('to', 'PART'), ('ride', 'VERB'), ('to', 'ADP'), ('covert', 'VERB'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('what', 'PRON'), ('I', 'PRON'), ('like', 'VERB'), ('that', 'PRON'), ('is', 'AUX'), ('what', 'PRON'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('ought', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('be', 'VERB'), ('his', 'PRON'), ('pursuits', 'NOUN'), ('his', 'PRON'), ('eagerness', 'NOUN'), ('in', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('know', 'VERB'), ('no', 'DET'), ('moderation', 'NOUN'), ('and', 'CCONJ'), ('leave', 'VERB'), ('him', 'PRON'), ('no', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('fatigue', 'NOUN'), ('\n\n', 'SPACE'), ('Aye', 'PROPN'), ('aye', 'NOUN'), ('I', 'PRON'), ('see', 'VERB'), ('how', 'SCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('said', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('I', 'PRON'), ('see', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('setting', 'VERB'), ('your', 'PRON'), ('cap', 'NOUN'), ('at', 'ADP'), ('him', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('never', 'ADV'), ('think', 'VERB'), ('of', 'ADP'), ('poor', 'ADJ'), ('Brandon', 'PROPN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('expression', 'NOUN'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('warmly', 'ADV'), ('which', 'PRON'), ('I', 'PRON'), ('particularly', 'ADV'), ('dislike', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('abhor', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('commonplace', 'ADJ'), ('phrase', 'NOUN'), ('by', 'ADP'), ('which', 'DET'), ('wit', 'NOUN'), ('is', 'AUX'), ('intended', 'VERB'), ('and', 'CCONJ'), ('setting', 'VERB'), ('\n', 'SPACE'), ('ones', 'NOUN'), ('cap', 'VERB'), ('at', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('or', 'CCONJ'), ('making', 'VERB'), ('a', 'DET'), ('conquest', 'NOUN'), ('are', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('odious', 'ADJ'), ('of', 'ADP'), ('all', 'PRON'), (' ', 'SPACE'), ('Their', 'PRON'), ('tendency', 'NOUN'), ('is', 'AUX'), ('gross', 'ADJ'), ('and', 'CCONJ'), ('illiberal', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('their', 'PRON'), ('construction', 'NOUN'), ('could', 'AUX'), ('ever', 'ADV'), ('be', 'AUX'), ('deemed', 'VERB'), ('clever', 'ADJ'), ('\n', 'SPACE'), ('time', 'NOUN'), ('has', 'AUX'), ('long', 'ADV'), ('ago', 'ADV'), ('destroyed', 'VERB'), ('all', 'DET'), ('its', 'PRON'), ('ingenuity', 'NOUN'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('much', 'ADV'), ('understand', 'VERB'), ('this', 'DET'), ('reproof', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('he', 'PRON'), ('laughed', 'VERB'), ('as', 'ADV'), ('heartily', 'ADV'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('did', 'VERB'), ('and', 'CCONJ'), ('then', 'ADV'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('you', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('conquests', 'NOUN'), ('enough', 'ADJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n', 'SPACE'), ('one', 'NUM'), ('way', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), (' ', 'SPACE'), ('Poor', 'PROPN'), ('Brandon', 'PROPN'), ('he', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('smitten', 'ADJ'), ('already', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('worth', 'ADJ'), ('setting', 'VERB'), ('your', 'PRON'), ('cap', 'NOUN'), ('at', 'ADP'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('tell', 'VERB'), ('you', 'PRON'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('this', 'PRON'), ('tumbling', 'NOUN'), ('about', 'ADP'), ('and', 'CCONJ'), ('spraining', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('ankles', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('10', 'NUM'), ('\n\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('preserver', 'NOUN'), ('as', 'ADP'), ('Margaret', 'PROPN'), ('with', 'ADP'), ('more', 'ADJ'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('precision', 'NOUN'), ('styled', 'VERB'), ('Willoughby', 'PROPN'), ('called', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('early', 'ADV'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('personal', 'ADJ'), ('enquiries', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('received', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('with', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('politeness', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('kindness', 'NOUN'), ('which', 'PRON'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('account', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('gratitude', 'NOUN'), ('prompted', 'VERB'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('passed', 'VERB'), ('during', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('visit', 'NOUN'), ('tended', 'VERB'), ('to', 'PART'), ('assure', 'VERB'), ('him', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('sense', 'NOUN'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('mutual', 'ADJ'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('domestic', 'ADJ'), ('comfort', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('whom', 'PRON'), ('accident', 'NOUN'), ('had', 'AUX'), ('now', 'ADV'), ('introduced', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('Of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('personal', 'ADJ'), ('charms', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('required', 'VERB'), ('a', 'DET'), ('second', 'ADJ'), ('interview', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('convinced', 'VERB'), ('\n\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'VERB'), ('a', 'DET'), ('delicate', 'ADJ'), ('complexion', 'NOUN'), ('\n', 'SPACE'), ('regular', 'ADJ'), ('features', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('remarkably', 'ADV'), ('pretty', 'ADV'), ('figure', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('still', 'ADV'), ('handsomer', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('form', 'NOUN'), ('though', 'ADV'), ('not', 'PART'), ('so', 'ADV'), ('\n', 'SPACE'), ('correct', 'ADJ'), ('as', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('in', 'ADP'), ('having', 'VERB'), ('the', 'DET'), ('advantage', 'NOUN'), ('of', 'ADP'), ('height', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('more', 'ADV'), ('striking', 'ADJ'), ('and', 'CCONJ'), ('her', 'PRON'), ('face', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('lovely', 'ADJ'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('common', 'ADJ'), ('ca', 'AUX'), ('nt', 'PART'), ('of', 'ADP'), ('praise', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('called', 'VERB'), ('a', 'DET'), ('beautiful', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('truth', 'NOUN'), ('was', 'AUX'), ('less', 'ADV'), ('violently', 'ADV'), ('outraged', 'ADJ'), ('than', 'SCONJ'), ('usually', 'ADV'), ('happens', 'VERB'), ('\n', 'SPACE'), ('Her', 'PRON'), ('skin', 'NOUN'), ('was', 'AUX'), ('very', 'ADV'), ('brown', 'ADJ'), ('but', 'CCONJ'), ('from', 'ADP'), ('its', 'PRON'), ('transparency', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('complexion', 'NOUN'), ('was', 'AUX'), ('uncommonly', 'ADV'), ('brilliant', 'ADJ'), ('her', 'PRON'), ('features', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('all', 'PRON'), ('good', 'ADJ'), ('her', 'PRON'), ('smile', 'NOUN'), ('was', 'AUX'), ('sweet', 'ADJ'), ('and', 'CCONJ'), ('attractive', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('which', 'PRON'), ('were', 'AUX'), ('very', 'ADV'), ('dark', 'ADJ'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('life', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('spirit', 'NOUN'), ('an', 'DET'), ('eagerness', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('hardily', 'ADV'), ('be', 'AUX'), ('seen', 'VERB'), ('\n', 'SPACE'), ('without', 'ADP'), ('delight', 'NOUN'), (' ', 'SPACE'), ('From', 'ADP'), ('Willoughby', 'PROPN'), ('their', 'PRON'), ('expression', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('first', 'ADV'), ('held', 'VERB'), ('back', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('embarrassment', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('remembrance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('assistance', 'NOUN'), ('created', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('when', 'SCONJ'), ('this', 'PRON'), ('passed', 'VERB'), ('away', 'ADP'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('her', 'PRON'), ('spirits', 'NOUN'), ('became', 'AUX'), ('collected', 'VERB'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('that', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('perfect', 'ADJ'), ('goodbreeding', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('gentleman', 'NOUN'), ('he', 'PRON'), ('united', 'VERB'), ('frankness', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('vivacity', 'NOUN'), ('and', 'CCONJ'), ('above', 'ADP'), ('all', 'PRON'), ('when', 'SCONJ'), ('she', 'PRON'), ('heard', 'VERB'), ('him', 'PRON'), ('declare', 'VERB'), ('\n', 'SPACE'), ('that', 'PRON'), ('of', 'ADP'), ('music', 'NOUN'), ('and', 'CCONJ'), ('dancing', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('passionately', 'ADV'), ('fond', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('gave', 'VERB'), ('him', 'PRON'), ('such', 'DET'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('approbation', 'NOUN'), ('as', 'SCONJ'), ('secured', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('largest', 'ADJ'), ('share', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('discourse', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('stay', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('necessary', 'ADJ'), ('to', 'PART'), ('mention', 'VERB'), ('any', 'DET'), ('favourite', 'ADJ'), ('\n', 'SPACE'), ('amusement', 'NOUN'), ('to', 'PART'), ('engage', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('talk', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('silent', 'ADJ'), ('when', 'SCONJ'), ('such', 'ADJ'), ('points', 'NOUN'), ('were', 'AUX'), ('introduced', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('neither', 'CCONJ'), ('shyness', 'NOUN'), ('nor', 'CCONJ'), ('reserve', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('discussion', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('speedily', 'ADV'), ('discovered', 'VERB'), ('that', 'SCONJ'), ('their', 'PRON'), ('enjoyment', 'NOUN'), ('of', 'ADP'), ('dancing', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('music', 'NOUN'), ('was', 'AUX'), ('mutual', 'ADJ'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('arose', 'VERB'), ('from', 'ADP'), ('a', 'DET'), ('general', 'ADJ'), ('\n', 'SPACE'), ('conformity', 'NOUN'), ('of', 'ADP'), ('judgment', 'NOUN'), ('in', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('related', 'VERB'), ('to', 'ADP'), ('either', 'PRON'), ('\n', 'SPACE'), ('Encouraged', 'VERB'), ('by', 'ADP'), ('this', 'PRON'), ('to', 'ADP'), ('a', 'DET'), ('further', 'ADJ'), ('examination', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('opinions', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('proceeded', 'VERB'), ('to', 'PART'), ('question', 'VERB'), ('him', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('of', 'ADP'), ('books', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('favourite', 'ADJ'), ('authors', 'NOUN'), ('were', 'AUX'), ('brought', 'VERB'), ('forward', 'ADV'), ('and', 'CCONJ'), ('dwelt', 'NOUN'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('with', 'ADP'), ('so', 'ADV'), ('rapturous', 'ADJ'), ('a', 'DET'), ('delight', 'NOUN'), ('that', 'SCONJ'), ('any', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('five', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('insensible', 'ADJ'), ('indeed', 'ADV'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('become', 'VERB'), ('an', 'DET'), ('immediate', 'ADJ'), ('convert', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('excellence', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('works', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('disregarded', 'VERB'), ('before', 'SCONJ'), (' ', 'SPACE'), ('Their', 'PRON'), ('taste', 'NOUN'), ('was', 'AUX'), ('strikingly', 'ADV'), ('alike', 'ADP'), ('\n', 'SPACE'), ('The', 'DET'), ('same', 'ADJ'), ('books', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('passages', 'NOUN'), ('were', 'AUX'), ('idolized', 'VERB'), ('by', 'ADP'), ('each', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('if', 'SCONJ'), ('any', 'DET'), ('difference', 'NOUN'), ('appeared', 'VERB'), ('any', 'DET'), ('objection', 'NOUN'), ('arose', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('lasted', 'VERB'), ('no', 'ADV'), ('longer', 'ADV'), ('than', 'ADP'), ('till', 'SCONJ'), ('the', 'DET'), ('force', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('arguments', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('brightness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('displayed', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('acquiesced', 'VERB'), ('in', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('decisions', 'NOUN'), ('caught', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('enthusiasm', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('long', 'ADV'), ('before', 'SCONJ'), ('his', 'PRON'), ('visit', 'NOUN'), ('concluded', 'VERB'), ('they', 'PRON'), ('conversed', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('familiarity', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('longestablished', 'ADJ'), ('acquaintance', 'NOUN'), ('\n\n', 'SPACE'), ('Well', 'PROPN'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('ONE', 'NUM'), ('morning', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('have', 'AUX'), ('done', 'VERB'), ('pretty', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('already', 'ADV'), ('ascertained', 'VERB'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('opinion', 'NOUN'), ('in', 'ADP'), ('\n', 'SPACE'), ('almost', 'ADV'), ('every', 'PRON'), ('matter', 'NOUN'), ('of', 'ADP'), ('importance', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('thinks', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('Cowper', 'PROPN'), ('and', 'CCONJ'), ('Scott', 'PROPN'), ('you', 'PRON'), ('are', 'AUX'), ('certain', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('estimating', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('beauties', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('ought', 'AUX'), ('and', 'CCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('received', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('assurance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('admiring', 'VERB'), ('Pope', 'PROPN'), ('no', 'ADV'), ('more', 'ADV'), ('than', 'SCONJ'), ('is', 'AUX'), ('proper', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('how', 'SCONJ'), ('is', 'AUX'), ('your', 'PRON'), ('acquaintance', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('long', 'ADV'), ('supported', 'VERB'), ('under', 'ADP'), ('such', 'ADJ'), ('\n', 'SPACE'), ('extraordinary', 'ADJ'), ('despatch', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('subject', 'NOUN'), ('for', 'ADP'), ('discourse', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('soon', 'ADV'), ('have', 'AUX'), ('exhausted', 'VERB'), ('each', 'DET'), ('favourite', 'ADJ'), ('topic', 'NOUN'), ('\n', 'SPACE'), ('Another', 'DET'), ('meeting', 'NOUN'), ('will', 'AUX'), ('suffice', 'VERB'), ('to', 'PART'), ('explain', 'VERB'), ('his', 'PRON'), ('sentiments', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('picturesque', 'ADJ'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('second', 'ADJ'), ('marriages', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('you', 'PRON'), ('can', 'AUX'), ('have', 'VERB'), ('nothing', 'PRON'), ('farther', 'ADJ'), ('to', 'PART'), ('ask', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('is', 'AUX'), ('this', 'DET'), ('fair', 'ADJ'), ('is', 'AUX'), ('this', 'PRON'), ('\n', 'SPACE'), ('just', 'ADV'), ('are', 'AUX'), ('my', 'PRON'), ('ideas', 'NOUN'), ('so', 'ADV'), ('scanty', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('see', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('mean', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('at', 'ADP'), ('my', 'PRON'), ('ease', 'NOUN'), ('too', 'ADV'), ('happy', 'ADJ'), ('too', 'ADV'), ('frank', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('erred', 'VERB'), ('against', 'ADP'), ('every', 'DET'), ('commonplace', 'ADJ'), ('notion', 'NOUN'), ('of', 'ADP'), ('decorum', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('open', 'ADJ'), ('and', 'CCONJ'), ('sincere', 'ADJ'), ('where', 'SCONJ'), ('I', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('reserved', 'VERB'), ('spiritless', 'ADJ'), ('dull', 'ADJ'), ('and', 'CCONJ'), ('deceitfulhad', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('talked', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('roads', 'NOUN'), ('and', 'CCONJ'), ('had', 'AUX'), ('I', 'PRON'), ('\n', 'SPACE'), ('spoken', 'VERB'), ('only', 'ADV'), ('once', 'ADV'), ('in', 'ADP'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('this', 'DET'), ('reproach', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('spared', 'VERB'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('love', 'NOUN'), ('said', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('offended', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('Elinorshe', 'PROPN'), ('was', 'AUX'), ('only', 'ADV'), ('in', 'ADP'), ('jest', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('scold', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('myself', 'PRON'), ('if', 'SCONJ'), ('she', 'PRON'), ('were', 'AUX'), ('capable', 'ADJ'), ('of', 'ADP'), ('wishing', 'VERB'), ('to', 'PART'), ('check', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('delight', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('conversation', 'NOUN'), ('with', 'ADP'), ('our', 'PRON'), ('new', 'ADJ'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('softened', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n\n', 'SPACE'), ('Willoughby', 'PROPN'), ('on', 'ADP'), ('his', 'PRON'), ('side', 'NOUN'), ('gave', 'VERB'), ('every', 'DET'), ('proof', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('which', 'PRON'), ('an', 'DET'), ('evident', 'ADJ'), ('wish', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('improving', 'VERB'), ('it', 'PRON'), ('could', 'AUX'), ('offer', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('To', 'PART'), ('enquire', 'VERB'), ('after', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('at', 'ADP'), ('first', 'ADV'), ('his', 'PRON'), ('excuse', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('encouragement', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('reception', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('gave', 'VERB'), ('\n', 'SPACE'), ('greater', 'ADJ'), ('kindness', 'NOUN'), ('made', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('excuse', 'NOUN'), ('unnecessary', 'ADJ'), ('before', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('ceased', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('possible', 'ADJ'), ('by', 'ADP'), ('Mariannes', 'PROPN'), ('perfect', 'ADJ'), ('recovery', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('confined', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('days', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('but', 'CCONJ'), ('never', 'ADV'), ('had', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('confinement', 'NOUN'), ('been', 'AUX'), ('less', 'ADV'), ('irksome', 'ADJ'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('young', 'ADJ'), ('\n', 'SPACE'), ('man', 'NOUN'), ('of', 'ADP'), ('good', 'ADJ'), ('abilities', 'NOUN'), ('quick', 'ADJ'), ('imagination', 'NOUN'), ('lively', 'ADJ'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('open', 'ADJ'), ('affectionate', 'ADJ'), ('manners', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('exactly', 'ADV'), ('formed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('engage', 'VERB'), ('Mariannes', 'PROPN'), ('heart', 'NOUN'), ('for', 'ADP'), ('with', 'ADP'), ('all', 'DET'), ('this', 'PRON'), ('he', 'PRON'), ('joined', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('only', 'ADV'), ('a', 'DET'), ('captivating', 'VERB'), ('person', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('natural', 'ADJ'), ('ardour', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mind', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('roused', 'VERB'), ('and', 'CCONJ'), ('increased', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('example', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('which', 'PRON'), ('recommended', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('society', 'NOUN'), ('became', 'VERB'), ('gradually', 'ADV'), ('her', 'PRON'), ('most', 'ADV'), ('exquisite', 'ADJ'), ('enjoyment', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('read', 'VERB'), ('they', 'PRON'), ('talked', 'VERB'), ('they', 'PRON'), ('sang', 'VERB'), ('together', 'ADV'), ('his', 'PRON'), ('musical', 'ADJ'), ('\n', 'SPACE'), ('talents', 'NOUN'), ('were', 'AUX'), ('considerable', 'ADJ'), ('and', 'CCONJ'), ('he', 'PRON'), ('read', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('sensibility', 'NOUN'), ('and', 'CCONJ'), ('spirit', 'NOUN'), ('which', 'PRON'), ('Edward', 'PROPN'), ('had', 'AUX'), ('unfortunately', 'ADV'), ('wanted', 'VERB'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('estimation', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('faultless', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('in', 'ADP'), ('Mariannes', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('censure', 'VERB'), ('in', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('a', 'DET'), ('propensity', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('strongly', 'ADV'), ('resembled', 'VERB'), ('and', 'CCONJ'), ('peculiarly', 'ADV'), ('\n', 'SPACE'), ('delighted', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('of', 'ADP'), ('saying', 'VERB'), ('too', 'ADV'), ('much', 'ADV'), ('what', 'PRON'), ('he', 'PRON'), ('thought', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('every', 'DET'), ('occasion', 'NOUN'), ('without', 'ADP'), ('attention', 'NOUN'), ('to', 'ADP'), ('persons', 'NOUN'), ('or', 'CCONJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('hastily', 'ADV'), ('forming', 'VERB'), ('and', 'CCONJ'), ('giving', 'VERB'), ('his', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('sacrificing', 'VERB'), ('general', 'ADJ'), ('politeness', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('enjoyment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('undivided', 'ADJ'), ('attention', 'NOUN'), ('where', 'SCONJ'), ('his', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('slighting', 'ADJ'), ('too', 'ADV'), ('easily', 'ADV'), ('the', 'DET'), ('forms', 'NOUN'), ('of', 'ADP'), ('worldly', 'ADJ'), ('propriety', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('displayed', 'VERB'), ('a', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('caution', 'NOUN'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('approve', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('he', 'PRON'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('say', 'VERB'), ('in', 'ADP'), ('its', 'PRON'), ('support', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('began', 'VERB'), ('now', 'ADV'), ('to', 'PART'), ('perceive', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('desperation', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'AUX'), ('seized', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('sixteen', 'NUM'), ('and', 'CCONJ'), ('a', 'DET'), ('half', 'NOUN'), ('of', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('seeing', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('satisfy', 'VERB'), ('her', 'PRON'), ('ideas', 'NOUN'), ('of', 'ADP'), ('perfection', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('rash', 'ADJ'), ('and', 'CCONJ'), ('unjustifiable', 'ADJ'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('all', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('her', 'PRON'), ('fancy', 'NOUN'), ('had', 'AUX'), ('delineated', 'VERB'), ('in', 'ADP'), ('that', 'DET'), ('unhappy', 'ADJ'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('every', 'DET'), ('brighter', 'ADJ'), ('period', 'NOUN'), ('as', 'ADP'), ('capable', 'ADJ'), ('of', 'ADP'), ('attaching', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('declared', 'VERB'), ('his', 'PRON'), ('wishes', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('that', 'DET'), ('respect', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('earnest', 'ADJ'), ('as', 'SCONJ'), ('his', 'PRON'), ('abilities', 'NOUN'), ('were', 'AUX'), ('strong', 'ADJ'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('mother', 'NOUN'), ('too', 'ADV'), ('in', 'ADP'), ('whose', 'DET'), ('mind', 'NOUN'), ('not', 'PART'), ('one', 'NUM'), ('speculative', 'NOUN'), ('\n', 'SPACE'), ('thought', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('marriage', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('raised', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('riches', 'NOUN'), ('was', 'AUX'), ('led', 'VERB'), ('before', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('to', 'PART'), ('hope', 'VERB'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('expect', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('secretly', 'ADV'), ('to', 'PART'), ('congratulate', 'VERB'), ('herself', 'PRON'), ('on', 'ADP'), ('having', 'VERB'), ('\n', 'SPACE'), ('gained', 'VERB'), ('two', 'NUM'), ('such', 'ADJ'), ('sonsinlaw', 'NOUN'), ('as', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('partiality', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('which', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('early', 'ADV'), ('been', 'AUX'), ('discovered', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('friends', 'NOUN'), ('now', 'ADV'), ('first', 'ADV'), ('became', 'VERB'), ('\n', 'SPACE'), ('perceptible', 'ADJ'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('when', 'SCONJ'), ('it', 'PRON'), ('ceased', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('noticed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('Their', 'PRON'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('wit', 'NOUN'), ('were', 'AUX'), ('drawn', 'VERB'), ('off', 'ADP'), ('to', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('more', 'ADV'), ('fortunate', 'ADJ'), ('rival', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('raillery', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('incurred', 'VERB'), ('before', 'SCONJ'), ('any', 'DET'), ('partiality', 'NOUN'), ('arose', 'VERB'), ('was', 'AUX'), ('removed', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('his', 'PRON'), ('feelings', 'NOUN'), ('began', 'VERB'), ('really', 'ADV'), ('to', 'PART'), ('call', 'VERB'), ('for', 'SCONJ'), ('the', 'DET'), ('ridicule', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('justly', 'ADV'), ('annexed', 'VERB'), ('to', 'PART'), ('sensibility', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('though', 'ADV'), ('unwillingly', 'ADV'), ('to', 'PART'), ('believe', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('sentiments', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('assigned', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('now', 'ADV'), ('actually', 'ADV'), ('excited', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('however', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('general', 'ADJ'), ('resemblance', 'NOUN'), ('of', 'ADP'), ('disposition', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('parties', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('forward', 'VERB'), ('the', 'DET'), ('affection', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('an', 'DET'), ('equally', 'ADV'), ('\n', 'SPACE'), ('striking', 'VERB'), ('opposition', 'NOUN'), ('of', 'ADP'), ('character', 'NOUN'), ('was', 'AUX'), ('no', 'DET'), ('hindrance', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('regard', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('what', 'PRON'), ('could', 'AUX'), ('a', 'DET'), ('silent', 'ADJ'), ('man', 'NOUN'), ('of', 'ADP'), ('five', 'NUM'), ('and', 'CCONJ'), ('thirty', 'NUM'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('opposed', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('lively', 'ADJ'), ('one', 'NUM'), ('of', 'ADP'), ('five', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('wish', 'VERB'), ('him', 'PRON'), ('successful', 'ADJ'), ('she', 'PRON'), ('heartily', 'ADV'), ('wished', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('indifferent', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('liked', 'VERB'), ('himin', 'NOUN'), ('spite', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('gravity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('reserve', 'VERB'), ('she', 'PRON'), ('beheld', 'VERB'), ('in', 'ADP'), ('him', 'PRON'), ('an', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('manners', 'NOUN'), ('though', 'SCONJ'), ('serious', 'ADJ'), ('were', 'AUX'), ('mild', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('reserve', 'NOUN'), ('\n', 'SPACE'), ('appeared', 'VERB'), ('rather', 'ADV'), ('the', 'DET'), ('result', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('oppression', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('of', 'ADP'), ('any', 'DET'), ('natural', 'ADJ'), ('gloominess', 'NOUN'), ('of', 'ADP'), ('temper', 'NOUN'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('dropped', 'VERB'), ('hints', 'NOUN'), ('of', 'ADP'), ('past', 'ADJ'), ('injuries', 'NOUN'), ('and', 'CCONJ'), ('disappointments', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('justified', 'VERB'), ('her', 'PRON'), ('belief', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('an', 'DET'), ('unfortunate', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('regarded', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('respect', 'NOUN'), ('and', 'CCONJ'), ('compassion', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('she', 'PRON'), ('pitied', 'VERB'), ('and', 'CCONJ'), ('esteemed', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('more', 'ADV'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('slighted', 'VERB'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('prejudiced', 'VERB'), ('against', 'ADP'), ('him', 'PRON'), ('for', 'ADP'), ('being', 'AUX'), ('neither', 'CCONJ'), ('lively', 'ADJ'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('young', 'ADJ'), ('seemed', 'VERB'), ('resolved', 'VERB'), ('to', 'PART'), ('undervalue', 'VERB'), ('his', 'PRON'), ('merits', 'NOUN'), ('\n\n', 'SPACE'), ('Brandon', 'PROPN'), ('is', 'AUX'), ('just', 'ADV'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('man', 'NOUN'), ('said', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('one', 'NUM'), ('day', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('talking', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('together', 'ADV'), ('\n', 'SPACE'), ('whom', 'PRON'), ('every', 'DET'), ('body', 'NOUN'), ('speaks', 'VERB'), ('well', 'ADV'), ('of', 'ADP'), ('and', 'CCONJ'), ('nobody', 'PRON'), ('cares', 'VERB'), ('about', 'ADP'), ('\n', 'SPACE'), ('whom', 'PRON'), ('all', 'PRON'), ('are', 'AUX'), ('delighted', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('and', 'CCONJ'), ('nobody', 'PRON'), ('remembers', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('talk', 'VERB'), ('to', 'ADP'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('exactly', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('think', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('boast', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('however', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('for', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('injustice', 'NOUN'), ('in', 'ADP'), ('both', 'PRON'), ('of', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('highly', 'ADV'), ('esteemed', 'ADJ'), ('\n', 'SPACE'), ('by', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('family', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('never', 'ADV'), ('see', 'VERB'), ('him', 'PRON'), ('myself', 'PRON'), ('\n', 'SPACE'), ('without', 'ADP'), ('taking', 'VERB'), ('pains', 'NOUN'), ('to', 'PART'), ('converse', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('That', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('patronised', 'VERB'), ('by', 'ADP'), ('YOU', 'PRON'), ('replied', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('certainly', 'ADV'), ('in', 'ADP'), ('his', 'PRON'), ('favour', 'NOUN'), ('but', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('the', 'DET'), ('esteem', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('reproach', 'NOUN'), ('in', 'ADP'), ('itself', 'PRON'), (' ', 'SPACE'), ('Who', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('submit', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('indignity', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('approved', 'VERB'), ('by', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('that', 'PRON'), ('could', 'AUX'), ('command', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('indifference', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('perhaps', 'ADV'), ('the', 'DET'), ('abuse', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('people', 'NOUN'), ('as', 'ADP'), ('yourself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('will', 'AUX'), ('make', 'VERB'), ('amends', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('regard', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('their', 'PRON'), ('praise', 'NOUN'), ('is', 'AUX'), ('censure', 'ADJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('censure', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('praise', 'NOUN'), ('for', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('more', 'ADV'), ('undiscerning', 'ADJ'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('prejudiced', 'ADJ'), ('and', 'CCONJ'), ('unjust', 'ADJ'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('defence', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('protege', 'NOUN'), ('you', 'PRON'), ('can', 'AUX'), ('even', 'ADV'), ('be', 'AUX'), ('saucy', 'PROPN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('protege', 'NOUN'), ('as', 'SCONJ'), ('you', 'PRON'), ('call', 'VERB'), ('him', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('sensible', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sense', 'NOUN'), ('will', 'AUX'), ('always', 'ADV'), ('have', 'VERB'), ('attractions', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('Yes', 'INTJ'), ('Marianne', 'PROPN'), ('even', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('between', 'ADP'), ('thirty', 'NUM'), ('and', 'CCONJ'), ('forty', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('has', 'AUX'), ('seen', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('abroad', 'ADV'), ('\n', 'SPACE'), ('has', 'AUX'), ('read', 'VERB'), ('and', 'CCONJ'), ('has', 'VERB'), ('a', 'DET'), ('thinking', 'NOUN'), ('mind', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('found', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('capable', 'ADJ'), ('of', 'ADP'), ('giving', 'VERB'), ('me', 'PRON'), ('much', 'ADJ'), ('information', 'NOUN'), ('on', 'ADP'), ('various', 'ADJ'), ('subjects', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('always', 'ADV'), ('answered', 'VERB'), ('my', 'PRON'), ('inquiries', 'NOUN'), ('with', 'ADP'), ('readiness', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('goodbreeding', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('nature', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('say', 'VERB'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('contemptuously', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('has', 'AUX'), ('told', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('in', 'ADP'), ('the', 'DET'), ('East', 'PROPN'), ('Indies', 'PROPN'), ('the', 'DET'), ('climate', 'NOUN'), ('is', 'AUX'), ('hot', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('mosquitoes', 'NOUN'), ('are', 'AUX'), ('troublesome', 'ADJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('WOULD', 'AUX'), ('have', 'AUX'), ('told', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), ('I', 'PRON'), ('doubt', 'VERB'), ('not', 'PART'), ('had', 'AUX'), ('I', 'PRON'), ('made', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('such', 'ADJ'), ('inquiries', 'NOUN'), ('but', 'CCONJ'), ('they', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('points', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('previously', 'ADV'), ('informed', 'VERB'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('said', 'VERB'), ('Willoughby', 'PROPN'), ('his', 'PRON'), ('observations', 'NOUN'), ('may', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('extended', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('existence', 'NOUN'), ('of', 'ADP'), ('nabobs', 'PROPN'), ('gold', 'PROPN'), ('mohrs', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('palanquins', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('may', 'AUX'), ('venture', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('HIS', 'PRON'), ('observations', 'NOUN'), ('\n', 'SPACE'), ('have', 'AUX'), ('stretched', 'VERB'), ('much', 'ADV'), ('further', 'ADV'), ('than', 'ADP'), ('your', 'PRON'), ('candour', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('dislike', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('dislike', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('consider', 'VERB'), ('him', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('respectable', 'ADJ'), ('man', 'NOUN'), ('who', 'PRON'), ('has', 'VERB'), ('every', 'DET'), ('bodys', 'ADJ'), ('good', 'ADJ'), ('word', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('nobodys', 'PROPN'), ('notice', 'NOUN'), ('who', 'PRON'), ('has', 'VERB'), ('more', 'ADJ'), ('money', 'NOUN'), ('than', 'SCONJ'), ('he', 'PRON'), ('can', 'AUX'), ('spend', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('time', 'NOUN'), ('than', 'SCONJ'), ('he', 'PRON'), ('knows', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('employ', 'VERB'), ('and', 'CCONJ'), ('two', 'NUM'), ('new', 'ADJ'), ('coats', 'NOUN'), ('\n', 'SPACE'), ('every', 'DET'), ('year', 'NOUN'), ('\n\n', 'SPACE'), ('Add', 'VERB'), ('to', 'PART'), ('which', 'PRON'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('that', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('neither', 'DET'), ('genius', 'NOUN'), ('taste', 'NOUN'), ('nor', 'CCONJ'), ('spirit', 'NOUN'), (' ', 'SPACE'), ('That', 'SCONJ'), ('his', 'PRON'), ('understanding', 'NOUN'), ('\n', 'SPACE'), ('has', 'VERB'), ('no', 'DET'), ('brilliancy', 'NOUN'), ('his', 'PRON'), ('feelings', 'NOUN'), ('no', 'DET'), ('ardour', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('expression', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('decide', 'VERB'), ('on', 'ADP'), ('his', 'PRON'), ('imperfections', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('mass', 'NOUN'), ('\n', 'SPACE'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('so', 'ADV'), ('much', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('strength', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('imagination', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('commendation', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('him', 'PRON'), ('is', 'AUX'), ('comparatively', 'ADV'), ('cold', 'ADJ'), ('and', 'CCONJ'), ('insipid', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('pronounce', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('sensible', 'ADJ'), ('man', 'NOUN'), ('wellbred', 'VERB'), ('wellinformed', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('gentle', 'ADJ'), ('address', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('possessing', 'VERB'), ('an', 'DET'), ('amiable', 'ADJ'), ('heart', 'NOUN'), ('\n\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('cried', 'VERB'), ('Willoughby', 'PROPN'), ('you', 'PRON'), ('are', 'AUX'), ('now', 'ADV'), ('using', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('unkindly', 'ADV'), (' ', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('endeavouring', 'VERB'), ('to', 'PART'), ('disarm', 'VERB'), ('me', 'PRON'), ('by', 'ADP'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('convince', 'VERB'), ('me', 'PRON'), ('against', 'ADP'), ('my', 'PRON'), ('will', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('You', 'PRON'), ('shall', 'AUX'), ('find', 'VERB'), ('me', 'PRON'), ('as', 'ADP'), ('stubborn', 'ADJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('artful', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('three', 'NUM'), ('unanswerable', 'ADJ'), ('reasons', 'NOUN'), ('for', 'ADP'), ('disliking', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('threatened', 'VERB'), ('me', 'PRON'), ('with', 'ADP'), ('rain', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('wanted', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('fine', 'ADJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('has', 'AUX'), ('found', 'VERB'), ('fault', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('hanging', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('curricle', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('persuade', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('buy', 'VERB'), ('my', 'PRON'), ('brown', 'ADJ'), ('mare', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('be', 'AUX'), ('any', 'DET'), ('satisfaction', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('however', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('told', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('his', 'PRON'), ('character', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('other', 'ADJ'), ('respects', 'NOUN'), ('\n', 'SPACE'), ('irreproachable', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('confess', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('in', 'ADP'), ('return', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('an', 'DET'), ('acknowledgment', 'NOUN'), ('which', 'PRON'), ('must', 'AUX'), ('give', 'VERB'), ('me', 'PRON'), ('some', 'DET'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('deny', 'VERB'), ('me', 'PRON'), ('the', 'DET'), ('privilege', 'NOUN'), ('of', 'ADP'), ('disliking', 'VERB'), ('him', 'PRON'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('ever', 'ADV'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('11', 'NUM'), ('\n\n\n', 'SPACE'), ('Little', 'PROPN'), ('had', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('or', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('imagined', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('they', 'PRON'), ('first', 'ADV'), ('came', 'VERB'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('that', 'SCONJ'), ('so', 'ADV'), ('many', 'ADJ'), ('\n', 'SPACE'), ('engagements', 'NOUN'), ('would', 'AUX'), ('arise', 'VERB'), ('to', 'PART'), ('occupy', 'VERB'), ('their', 'PRON'), ('time', 'NOUN'), ('as', 'ADV'), ('shortly', 'ADV'), ('\n', 'SPACE'), ('presented', 'VERB'), ('themselves', 'PRON'), ('or', 'CCONJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('have', 'VERB'), ('such', 'ADJ'), ('frequent', 'ADJ'), ('\n', 'SPACE'), ('invitations', 'NOUN'), ('and', 'CCONJ'), ('such', 'ADJ'), ('constant', 'ADJ'), ('visitors', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('leave', 'VERB'), ('them', 'PRON'), ('little', 'ADJ'), ('\n', 'SPACE'), ('leisure', 'NOUN'), ('for', 'ADP'), ('serious', 'ADJ'), ('employment', 'NOUN'), (' ', 'SPACE'), ('Yet', 'CCONJ'), ('such', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('recovered', 'VERB'), ('the', 'DET'), ('schemes', 'NOUN'), ('of', 'ADP'), ('amusement', 'NOUN'), ('at', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('abroad', 'ADV'), ('which', 'PRON'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('previously', 'ADV'), ('forming', 'VERB'), ('\n', 'SPACE'), ('were', 'AUX'), ('put', 'VERB'), ('into', 'ADP'), ('execution', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('private', 'ADJ'), ('balls', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('then', 'ADV'), ('began', 'VERB'), ('and', 'CCONJ'), ('parties', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('water', 'NOUN'), ('were', 'AUX'), ('made', 'VERB'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('accomplished', 'VERB'), ('as', 'ADV'), ('often', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('showery', 'NOUN'), ('October', 'PROPN'), ('would', 'AUX'), ('allow', 'VERB'), ('\n', 'SPACE'), ('In', 'ADP'), ('every', 'DET'), ('meeting', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('included', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('ease', 'NOUN'), ('and', 'CCONJ'), ('familiarity', 'NOUN'), ('which', 'PRON'), ('naturally', 'ADV'), ('attended', 'VERB'), ('\n', 'SPACE'), ('these', 'DET'), ('parties', 'NOUN'), ('were', 'AUX'), ('exactly', 'ADV'), ('calculated', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('increasing', 'VERB'), ('\n', 'SPACE'), ('intimacy', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('to', 'PART'), ('afford', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('witnessing', 'VERB'), ('the', 'DET'), ('excellencies', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('of', 'ADP'), ('marking', 'VERB'), ('his', 'PRON'), ('animated', 'VERB'), ('admiration', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('of', 'ADP'), ('receiving', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('himself', 'PRON'), ('the', 'DET'), ('most', 'ADV'), ('pointed', 'ADJ'), ('assurance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('affection', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('surprised', 'ADJ'), ('at', 'ADP'), ('their', 'PRON'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('only', 'ADV'), ('wished', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('less', 'ADV'), ('openly', 'ADV'), ('shewn', 'VERB'), ('and', 'CCONJ'), ('once', 'ADV'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('twice', 'ADV'), ('did', 'VERB'), ('venture', 'NOUN'), ('to', 'PART'), ('suggest', 'VERB'), ('the', 'DET'), ('propriety', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('selfcommand', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('abhorred', 'VERB'), ('all', 'DET'), ('\n', 'SPACE'), ('concealment', 'NOUN'), ('where', 'SCONJ'), ('no', 'DET'), ('real', 'ADJ'), ('disgrace', 'NOUN'), ('could', 'AUX'), ('attend', 'VERB'), ('unreserve', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('aim', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('restraint', 'NOUN'), ('of', 'ADP'), ('sentiments', 'NOUN'), ('which', 'PRON'), ('were', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('in', 'ADP'), ('themselves', 'PRON'), ('illaudable', 'ADV'), ('appeared', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('not', 'PART'), ('merely', 'ADV'), ('\n', 'SPACE'), ('an', 'DET'), ('unnecessary', 'ADJ'), ('effort', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('disgraceful', 'ADJ'), ('subjection', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('reason', 'NOUN'), ('to', 'AUX'), ('commonplace', 'NOUN'), ('and', 'CCONJ'), ('mistaken', 'ADJ'), ('notions', 'NOUN'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('thought', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('and', 'CCONJ'), ('their', 'PRON'), ('behaviour', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('all', 'DET'), ('times', 'NOUN'), ('was', 'AUX'), ('an', 'DET'), ('illustration', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('opinions', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('present', 'ADJ'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('eyes', 'NOUN'), ('for', 'ADP'), ('any', 'DET'), ('one', 'NUM'), ('else', 'ADV'), ('\n', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('he', 'PRON'), ('did', 'VERB'), ('was', 'AUX'), ('right', 'ADJ'), (' ', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('he', 'PRON'), ('said', 'VERB'), ('was', 'AUX'), ('clever', 'ADJ'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('their', 'PRON'), ('evenings', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('were', 'AUX'), ('concluded', 'VERB'), ('with', 'ADP'), ('cards', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('cheated', 'VERB'), ('himself', 'PRON'), ('and', 'CCONJ'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('to', 'PART'), ('get', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('a', 'DET'), ('good', 'ADJ'), ('hand', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('dancing', 'NOUN'), ('formed', 'VERB'), ('the', 'DET'), ('amusement', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('night', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('partners', 'NOUN'), ('for', 'ADP'), ('half', 'DET'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('obliged', 'VERB'), ('to', 'PART'), ('separate', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('couple', 'NOUN'), ('of', 'ADP'), ('dances', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('careful', 'ADJ'), ('to', 'PART'), ('stand', 'VERB'), ('together', 'ADV'), ('and', 'CCONJ'), ('scarcely', 'ADV'), ('spoke', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), (' ', 'SPACE'), ('Such', 'ADJ'), ('conduct', 'NOUN'), ('made', 'VERB'), ('them', 'PRON'), ('of', 'ADP'), ('course', 'NOUN'), ('\n', 'SPACE'), ('most', 'ADV'), ('exceedingly', 'ADV'), ('laughed', 'VERB'), ('at', 'ADP'), ('but', 'CCONJ'), ('ridicule', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('shame', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('seemed', 'VERB'), ('hardly', 'ADV'), ('to', 'PART'), ('provoke', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('entered', 'VERB'), ('into', 'ADP'), ('all', 'DET'), ('their', 'PRON'), ('feelings', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('warmth', 'NOUN'), ('which', 'PRON'), ('left', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('inclination', 'NOUN'), ('for', 'ADP'), ('checking', 'VERB'), ('this', 'DET'), ('\n', 'SPACE'), ('excessive', 'ADJ'), ('display', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('To', 'ADP'), ('her', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('but', 'CCONJ'), ('the', 'DET'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('consequence', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('strong', 'ADJ'), ('affection', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('young', 'ADJ'), ('and', 'CCONJ'), ('ardent', 'ADJ'), ('mind', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('season', 'NOUN'), ('of', 'ADP'), ('happiness', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('devoted', 'ADJ'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('fond', 'ADJ'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Norland', 'PROPN'), ('which', 'PRON'), ('she', 'PRON'), ('brought', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('from', 'ADP'), ('Sussex', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('more', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('softened', 'VERB'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('thought', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('before', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('charms', 'NOUN'), ('which', 'PRON'), ('his', 'PRON'), ('society', 'NOUN'), ('bestowed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('present', 'ADJ'), ('home', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('happiness', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('great', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('so', 'ADV'), ('much', 'ADV'), ('at', 'ADP'), ('ease', 'NOUN'), ('nor', 'CCONJ'), ('her', 'PRON'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('amusements', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('pure', 'ADJ'), (' ', 'SPACE'), ('They', 'PRON'), ('afforded', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('companion', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('\n', 'SPACE'), ('amends', 'NOUN'), ('for', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('behind', 'ADV'), ('nor', 'CCONJ'), ('that', 'PRON'), ('could', 'AUX'), ('teach', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('Norland', 'PROPN'), ('with', 'ADP'), ('less', 'ADJ'), ('regret', 'NOUN'), ('than', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('Neither', 'PROPN'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('nor', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('could', 'AUX'), ('supply', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('the', 'DET'), ('conversation', 'NOUN'), ('she', 'PRON'), ('missed', 'VERB'), ('although', 'SCONJ'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('an', 'DET'), ('everlasting', 'ADJ'), ('talker', 'NOUN'), ('and', 'CCONJ'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('had', 'AUX'), ('regarded', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('kindness', 'NOUN'), ('which', 'PRON'), ('ensured', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('large', 'ADJ'), ('share', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('discourse', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('repeated', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('history', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('times', 'NOUN'), ('and', 'CCONJ'), ('had', 'VERB'), ('Elinors', 'PROPN'), ('memory', 'NOUN'), ('been', 'AUX'), ('\n', 'SPACE'), ('equal', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('means', 'NOUN'), ('of', 'ADP'), ('improvement', 'NOUN'), ('she', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('early', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('all', 'DET'), ('the', 'DET'), ('particulars', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Jennings', 'PROPN'), ('last', 'ADJ'), ('illness', 'NOUN'), ('and', 'CCONJ'), ('what', 'PRON'), ('he', 'PRON'), ('said', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('before', 'SCONJ'), ('he', 'PRON'), ('died', 'VERB'), (' ', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('more', 'ADV'), ('\n', 'SPACE'), ('agreeable', 'ADJ'), ('than', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('only', 'ADV'), ('in', 'ADP'), ('being', 'AUX'), ('more', 'ADV'), ('silent', 'ADJ'), ('\n', 'SPACE'), ('Elinor', 'NOUN'), ('needed', 'VERB'), ('little', 'ADJ'), ('observation', 'NOUN'), ('to', 'PART'), ('perceive', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('reserve', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('mere', 'ADJ'), ('calmness', 'NOUN'), ('of', 'ADP'), ('manner', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('had', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('do', 'VERB'), (' ', 'SPACE'), ('Towards', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('and', 'CCONJ'), ('mother', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('same', 'ADJ'), ('as', 'ADP'), ('to', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('intimacy', 'NOUN'), ('was', 'AUX'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('neither', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('looked', 'VERB'), ('for', 'ADP'), ('nor', 'CCONJ'), ('desired', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('say', 'VERB'), ('one', 'NUM'), ('day', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('said', 'VERB'), ('the', 'DET'), ('day', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('Her', 'PRON'), ('insipidity', 'NOUN'), ('was', 'AUX'), ('invariable', 'ADJ'), ('for', 'SCONJ'), ('even', 'ADV'), ('her', 'PRON'), ('spirits', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('always', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('oppose', 'VERB'), ('the', 'DET'), ('parties', 'NOUN'), ('\n', 'SPACE'), ('arranged', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('provided', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('were', 'AUX'), ('conducted', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('style', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('two', 'NUM'), ('eldest', 'ADJ'), ('children', 'NOUN'), ('attended', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('never', 'ADV'), ('appeared', 'VERB'), ('to', 'PART'), ('receive', 'VERB'), ('more', 'ADJ'), ('enjoyment', 'NOUN'), ('from', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('experienced', 'VERB'), ('in', 'ADP'), ('sitting', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('little', 'ADJ'), ('did', 'AUX'), ('her', 'PRON'), ('presence', 'NOUN'), ('add', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('by', 'ADP'), ('any', 'DET'), ('share', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('sometimes', 'ADV'), ('only', 'ADV'), ('reminded', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('amongst', 'ADP'), ('them', 'PRON'), ('by', 'ADP'), ('her', 'PRON'), ('solicitude', 'NOUN'), ('about', 'ADP'), ('her', 'PRON'), ('troublesome', 'ADJ'), ('boys', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('alone', 'ADV'), ('of', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('new', 'ADJ'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('did', 'AUX'), ('Elinor', 'PROPN'), ('find', 'VERB'), ('a', 'DET'), ('person', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('in', 'ADP'), ('any', 'DET'), ('degree', 'NOUN'), ('claim', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('respect', 'NOUN'), ('of', 'ADP'), ('abilities', 'NOUN'), ('excite', 'VERB'), ('the', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('give', 'VERB'), ('pleasure', 'NOUN'), ('as', 'ADP'), ('a', 'DET'), ('companion', 'NOUN'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('out', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('admiration', 'NOUN'), ('and', 'CCONJ'), ('regard', 'VERB'), ('even', 'ADV'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisterly', 'ADJ'), ('regard', 'NOUN'), ('was', 'AUX'), ('all', 'PRON'), ('his', 'PRON'), ('own', 'ADJ'), ('but', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('lover', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('attentions', 'NOUN'), ('were', 'AUX'), ('wholly', 'ADV'), ('Mariannes', 'PROPN'), ('and', 'CCONJ'), ('a', 'DET'), ('far', 'ADV'), ('less', 'ADJ'), ('\n', 'SPACE'), ('agreeable', 'ADJ'), ('man', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('generally', 'ADV'), ('pleasing', 'ADJ'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('unfortunately', 'ADV'), ('for', 'ADP'), ('himself', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('\n', 'SPACE'), ('encouragement', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('in', 'ADP'), ('conversing', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('Elinor', 'PROPN'), ('he', 'PRON'), ('found', 'VERB'), ('the', 'DET'), ('greatest', 'ADJ'), ('consolation', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('indifference', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('compassion', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('increased', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('suspect', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('disappointed', 'ADJ'), ('love', 'NOUN'), ('had', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('known', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('This', 'DET'), ('suspicion', 'NOUN'), ('was', 'AUX'), ('given', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('words', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('accidently', 'ADV'), ('dropped', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('one', 'NUM'), ('evening', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('sitting', 'VERB'), ('down', 'ADP'), ('together', 'ADV'), ('by', 'ADP'), ('mutual', 'ADJ'), ('consent', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('were', 'AUX'), ('dancing', 'VERB'), (' ', 'SPACE'), ('His', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('silence', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('said', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('faint', 'ADJ'), ('smile', 'NOUN'), ('Your', 'PRON'), ('sister', 'NOUN'), ('I', 'PRON'), ('understand', 'VERB'), ('\n', 'SPACE'), ('does', 'AUX'), ('not', 'PART'), ('approve', 'VERB'), ('of', 'ADP'), ('second', 'ADJ'), ('attachments', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('her', 'PRON'), ('opinions', 'NOUN'), ('are', 'AUX'), ('all', 'ADV'), ('romantic', 'ADJ'), ('\n\n', 'SPACE'), ('Or', 'CCONJ'), ('rather', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('she', 'PRON'), ('considers', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('to', 'PART'), ('exist', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('she', 'PRON'), ('does', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('how', 'SCONJ'), ('she', 'PRON'), ('contrives', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('without', 'ADP'), ('reflecting', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('character', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('father', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'VERB'), ('himself', 'PRON'), ('two', 'NUM'), ('wives', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('not', 'PART'), (' ', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('years', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('will', 'AUX'), ('settle', 'VERB'), ('her', 'PRON'), ('opinions', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('reasonable', 'ADJ'), ('basis', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('common', 'ADJ'), ('sense', 'NOUN'), ('and', 'CCONJ'), ('observation', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('they', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('more', 'ADV'), ('easy', 'ADJ'), ('to', 'PART'), ('define', 'VERB'), ('and', 'CCONJ'), ('to', 'PART'), ('justify', 'VERB'), ('than', 'SCONJ'), ('they', 'PRON'), ('now', 'ADV'), ('are', 'AUX'), ('\n', 'SPACE'), ('by', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('but', 'CCONJ'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('will', 'AUX'), ('probably', 'ADV'), ('be', 'AUX'), ('the', 'DET'), ('case', 'NOUN'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('yet', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('something', 'PRON'), ('so', 'ADV'), ('amiable', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('prejudices', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('young', 'ADJ'), ('mind', 'NOUN'), ('that', 'SCONJ'), ('one', 'NOUN'), ('is', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('give', 'VERB'), ('way', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('reception', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('general', 'ADJ'), ('opinions', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('agree', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('there', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('There', 'PRON'), ('are', 'VERB'), ('inconveniences', 'NOUN'), ('attending', 'VERB'), ('such', 'ADJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('Mariannes', 'PROPN'), ('which', 'PRON'), ('all', 'DET'), ('the', 'DET'), ('charms', 'NOUN'), ('of', 'ADP'), ('enthusiasm', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('atone', 'VERB'), ('for', 'ADP'), (' ', 'SPACE'), ('Her', 'PRON'), ('systems', 'NOUN'), ('have', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('unfortunate', 'ADJ'), ('tendency', 'NOUN'), ('of', 'ADP'), ('setting', 'VERB'), ('propriety', 'NOUN'), ('at', 'ADP'), ('nought', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('better', 'ADJ'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('is', 'AUX'), ('what', 'PRON'), ('I', 'PRON'), ('look', 'VERB'), ('\n', 'SPACE'), ('forward', 'ADV'), ('to', 'ADP'), ('as', 'ADP'), ('her', 'PRON'), ('greatest', 'ADJ'), ('possible', 'ADJ'), ('advantage', 'NOUN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('pause', 'NOUN'), ('he', 'PRON'), ('resumed', 'VERB'), ('the', 'DET'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Does', 'AUX'), ('your', 'PRON'), ('sister', 'NOUN'), ('make', 'VERB'), ('no', 'DET'), ('distinction', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('objections', 'NOUN'), ('\n', 'SPACE'), ('against', 'ADP'), ('a', 'DET'), ('second', 'ADJ'), ('attachment', 'NOUN'), ('or', 'CCONJ'), ('is', 'AUX'), ('it', 'PRON'), ('equally', 'ADV'), ('criminal', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), (' ', 'SPACE'), ('Are', 'AUX'), ('those', 'PRON'), ('who', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('disappointed', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('their', 'PRON'), ('first', 'ADJ'), ('choice', 'NOUN'), ('whether', 'SCONJ'), ('from', 'ADP'), ('the', 'DET'), ('inconstancy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('its', 'PRON'), ('object', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('perverseness', 'NOUN'), ('of', 'ADP'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('equally', 'ADV'), ('indifferent', 'ADJ'), ('during', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('lives', 'NOUN'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('acquainted', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('minutiae', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('principles', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('only', 'ADV'), ('know', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('never', 'ADV'), ('yet', 'ADV'), ('heard', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('admit', 'VERB'), ('any', 'DET'), ('instance', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('second', 'ADJ'), ('attachments', 'NOUN'), ('being', 'AUX'), ('pardonable', 'ADJ'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('said', 'VERB'), ('he', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('hold', 'VERB'), ('but', 'CCONJ'), ('a', 'DET'), ('change', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('total', 'ADJ'), ('change', 'NOUN'), ('of', 'ADP'), ('sentimentsNo', 'PROPN'), ('no', 'INTJ'), ('do', 'AUX'), ('not', 'PART'), ('desire', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('when', 'SCONJ'), ('the', 'DET'), ('romantic', 'ADJ'), ('refinements', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('young', 'ADJ'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('are', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('way', 'NOUN'), ('how', 'SCONJ'), ('frequently', 'ADV'), ('are', 'AUX'), ('they', 'PRON'), ('\n', 'SPACE'), ('succeeded', 'VERB'), ('by', 'ADP'), ('such', 'ADJ'), ('opinions', 'NOUN'), ('as', 'SCONJ'), ('are', 'AUX'), ('but', 'CCONJ'), ('too', 'ADV'), ('common', 'ADJ'), ('and', 'CCONJ'), ('too', 'ADV'), ('\n', 'SPACE'), ('dangerous', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('speak', 'VERB'), ('from', 'ADP'), ('experience', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('once', 'ADV'), ('knew', 'VERB'), ('a', 'DET'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('in', 'ADP'), ('temper', 'NOUN'), ('and', 'CCONJ'), ('mind', 'PROPN'), ('greatly', 'ADV'), ('resembled', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('thought', 'VERB'), ('and', 'CCONJ'), ('judged', 'VERB'), ('like', 'ADP'), ('her', 'PRON'), ('but', 'CCONJ'), ('who', 'PRON'), ('from', 'ADP'), ('an', 'DET'), ('inforced', 'ADJ'), ('\n', 'SPACE'), ('changefrom', 'NOUN'), ('a', 'DET'), ('series', 'NOUN'), ('of', 'ADP'), ('unfortunate', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('Here', 'ADV'), ('he', 'PRON'), ('stopt', 'VERB'), ('suddenly', 'ADV'), ('appeared', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('too', 'ADV'), ('much', 'ADV'), ('and', 'CCONJ'), ('by', 'ADP'), ('his', 'PRON'), ('countenance', 'NOUN'), ('gave', 'VERB'), ('rise', 'NOUN'), ('to', 'ADP'), ('conjectures', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('might', 'AUX'), ('not', 'PART'), ('otherwise', 'ADV'), ('have', 'AUX'), ('entered', 'VERB'), ('Elinors', 'PROPN'), ('head', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('lady', 'NOUN'), ('would', 'AUX'), ('probably', 'ADV'), ('have', 'AUX'), ('passed', 'VERB'), ('without', 'ADP'), ('suspicion', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('convinced', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('that', 'SCONJ'), ('what', 'PRON'), ('concerned', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('ought', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('escape', 'VERB'), ('his', 'PRON'), ('lips', 'NOUN'), (' ', 'SPACE'), ('As', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('it', 'PRON'), ('required', 'VERB'), ('but', 'CCONJ'), ('a', 'DET'), ('slight', 'ADJ'), ('effort', 'NOUN'), ('of', 'ADP'), ('fancy', 'NOUN'), ('to', 'PART'), ('connect', 'VERB'), ('his', 'PRON'), ('\n', 'SPACE'), ('emotion', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('tender', 'NOUN'), ('recollection', 'NOUN'), ('of', 'ADP'), ('past', 'ADJ'), ('regard', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('attempted', 'VERB'), ('no', 'ADV'), ('more', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('her', 'PRON'), ('place', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('done', 'VERB'), ('so', 'ADV'), ('little', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('whole', 'ADJ'), ('story', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('speedily', 'ADV'), ('formed', 'VERB'), ('under', 'ADP'), ('her', 'PRON'), ('active', 'ADJ'), ('imagination', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('established', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('melancholy', 'ADJ'), ('order', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('disastrous', 'ADJ'), ('love', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('12', 'NUM'), ('\n\n\n', 'SPACE'), ('As', 'SCONJ'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('were', 'AUX'), ('walking', 'VERB'), ('together', 'ADV'), ('the', 'DET'), ('\n', 'SPACE'), ('next', 'ADJ'), ('morning', 'NOUN'), ('the', 'DET'), ('latter', 'ADJ'), ('communicated', 'VERB'), ('a', 'DET'), ('piece', 'NOUN'), ('of', 'ADP'), ('news', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('which', 'PRON'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('she', 'PRON'), ('knew', 'VERB'), ('\n', 'SPACE'), ('before', 'ADP'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('imprudence', 'NOUN'), ('and', 'CCONJ'), ('want', 'NOUN'), ('of', 'ADP'), ('thought', 'NOUN'), ('\n', 'SPACE'), ('surprised', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('its', 'PRON'), ('extravagant', 'ADJ'), ('testimony', 'NOUN'), ('of', 'ADP'), ('both', 'DET'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('told', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('delight', 'NOUN'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('horse', 'NOUN'), ('one', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('bred', 'VERB'), ('\n', 'SPACE'), ('himself', 'PRON'), ('on', 'ADP'), ('his', 'PRON'), ('estate', 'NOUN'), ('in', 'ADP'), ('Somersetshire', 'PROPN'), ('and', 'CCONJ'), ('which', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('exactly', 'ADV'), ('calculated', 'VERB'), ('to', 'PART'), ('carry', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), (' ', 'SPACE'), ('Without', 'ADP'), ('considering', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('plan', 'VERB'), ('to', 'PART'), ('keep', 'VERB'), ('any', 'DET'), ('horse', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('alter', 'VERB'), ('her', 'PRON'), ('resolution', 'NOUN'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('this', 'DET'), ('gift', 'NOUN'), ('she', 'PRON'), ('must', 'AUX'), ('buy', 'VERB'), ('another', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('servant', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('keep', 'VERB'), ('a', 'DET'), ('servant', 'NOUN'), ('to', 'PART'), ('ride', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('after', 'ADV'), ('all', 'ADV'), ('build', 'VERB'), ('a', 'DET'), ('stable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('receive', 'VERB'), ('them', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('accepted', 'VERB'), ('the', 'DET'), ('present', 'ADJ'), ('without', 'ADP'), ('\n', 'SPACE'), ('hesitation', 'NOUN'), ('and', 'CCONJ'), ('told', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('raptures', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('intends', 'VERB'), ('to', 'PART'), ('send', 'VERB'), ('his', 'PRON'), ('groom', 'NOUN'), ('into', 'ADP'), ('Somersetshire', 'PROPN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('for', 'ADP'), ('it', 'PRON'), ('she', 'PRON'), ('added', 'VERB'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('it', 'PRON'), ('arrives', 'VERB'), ('we', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('ride', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('shall', 'AUX'), ('share', 'VERB'), ('its', 'PRON'), ('use', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('Imagine', 'PROPN'), ('to', 'ADP'), ('yourself', 'PRON'), ('my', 'PRON'), ('dear', 'ADJ'), ('Elinor', 'PROPN'), ('the', 'DET'), ('delight', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('gallop', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('some', 'PRON'), ('of', 'ADP'), ('these', 'DET'), ('downs', 'NOUN'), ('\n\n', 'SPACE'), ('Most', 'ADV'), ('unwilling', 'ADJ'), ('was', 'AUX'), ('she', 'PRON'), ('to', 'PART'), ('awaken', 'VERB'), ('from', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('dream', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('felicity', 'NOUN'), ('to', 'PART'), ('comprehend', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('unhappy', 'ADJ'), ('truths', 'NOUN'), ('which', 'PRON'), ('attended', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('affair', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('she', 'PRON'), ('refused', 'VERB'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('As', 'ADP'), ('to', 'ADP'), ('an', 'DET'), ('additional', 'ADJ'), ('servant', 'NOUN'), ('the', 'DET'), ('expense', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('trifle', 'NOUN'), ('\n', 'SPACE'), ('Mamma', 'PROPN'), ('she', 'PRON'), ('was', 'AUX'), ('sure', 'ADJ'), ('would', 'AUX'), ('never', 'ADV'), ('object', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('any', 'DET'), ('horse', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('do', 'VERB'), ('for', 'ADP'), ('HIM', 'PROPN'), ('he', 'PRON'), ('might', 'AUX'), ('always', 'ADV'), ('get', 'VERB'), ('one', 'NUM'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('to', 'ADP'), ('a', 'DET'), ('stable', 'ADJ'), ('the', 'DET'), ('merest', 'ADJ'), ('shed', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('sufficient', 'ADJ'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('then', 'ADV'), ('ventured', 'VERB'), ('to', 'PART'), ('doubt', 'VERB'), ('the', 'DET'), ('propriety', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('receiving', 'VERB'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('present', 'NOUN'), ('from', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('so', 'ADV'), ('little', 'ADJ'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('so', 'ADV'), ('lately', 'ADV'), ('\n', 'SPACE'), ('known', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('mistaken', 'VERB'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('warmly', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('supposing', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('known', 'VERB'), ('him', 'PRON'), ('long', 'ADV'), ('indeed', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('much', 'ADV'), ('better', 'ADJ'), ('\n', 'SPACE'), ('acquainted', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('than', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('with', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('creature', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('except', 'SCONJ'), ('yourself', 'PRON'), ('and', 'CCONJ'), ('mama', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('time', 'NOUN'), ('or', 'CCONJ'), ('opportunity', 'NOUN'), ('that', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('determine', 'VERB'), ('intimacy', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('disposition', 'NOUN'), ('alone', 'ADV'), (' ', 'SPACE'), ('Seven', 'NUM'), ('years', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('insufficient', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('some', 'DET'), ('people', 'NOUN'), ('acquainted', 'VERB'), ('with', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('and', 'CCONJ'), ('seven', 'NUM'), ('\n', 'SPACE'), ('days', 'NOUN'), ('are', 'AUX'), ('more', 'ADJ'), ('than', 'ADP'), ('enough', 'ADJ'), ('for', 'ADP'), ('others', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('hold', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('guilty', 'ADJ'), ('of', 'ADP'), ('greater', 'ADJ'), ('impropriety', 'NOUN'), ('in', 'ADP'), ('accepting', 'VERB'), ('a', 'DET'), ('horse', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('my', 'PRON'), ('brother', 'NOUN'), ('than', 'ADP'), ('from', 'ADP'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('Of', 'ADP'), ('John', 'PROPN'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('little', 'ADJ'), ('though', 'SCONJ'), ('we', 'PRON'), ('have', 'AUX'), ('lived', 'VERB'), ('together', 'ADV'), ('for', 'ADP'), ('years', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('my', 'PRON'), ('judgment', 'NOUN'), ('has', 'AUX'), ('long', 'ADV'), ('been', 'AUX'), ('formed', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('thought', 'VERB'), ('it', 'PRON'), ('wisest', 'ADJ'), ('to', 'PART'), ('touch', 'VERB'), ('that', 'DET'), ('point', 'NOUN'), ('no', 'ADV'), ('more', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('knew', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('temper', 'PROPN'), (' ', 'SPACE'), ('Opposition', 'PROPN'), ('on', 'ADP'), ('so', 'ADV'), ('tender', 'VERB'), ('a', 'DET'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('would', 'AUX'), ('only', 'ADV'), ('attach', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('more', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('by', 'ADP'), ('an', 'DET'), ('appeal', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('representing', 'VERB'), ('the', 'DET'), ('inconveniences', 'NOUN'), ('which', 'PRON'), ('that', 'DET'), ('indulgent', 'ADJ'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('must', 'AUX'), ('draw', 'VERB'), ('on', 'ADP'), ('herself', 'PRON'), ('if', 'SCONJ'), ('as', 'SCONJ'), ('would', 'AUX'), ('probably', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('case', 'NOUN'), ('she', 'PRON'), ('consented', 'VERB'), ('to', 'ADP'), ('this', 'DET'), ('increase', 'NOUN'), ('of', 'ADP'), ('establishment', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('shortly', 'ADV'), ('subdued', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('promised', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('tempt', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('to', 'ADP'), ('such', 'ADJ'), ('imprudent', 'NOUN'), ('kindness', 'NOUN'), ('by', 'ADP'), ('mentioning', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('offer', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('tell', 'VERB'), ('Willoughby', 'PROPN'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('him', 'PRON'), ('next', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('declined', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('faithful', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('word', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('called', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('day', 'NOUN'), ('Elinor', 'PROPN'), ('heard', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('express', 'VERB'), ('her', 'PRON'), ('disappointment', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('being', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('forego', 'VERB'), ('the', 'DET'), ('acceptance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('present', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('reasons', 'NOUN'), ('for', 'ADP'), ('this', 'DET'), ('alteration', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('related', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('to', 'PART'), ('make', 'VERB'), ('further', 'ADJ'), ('entreaty', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('side', 'NOUN'), ('impossible', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('concern', 'NOUN'), ('however', 'ADV'), ('was', 'AUX'), ('very', 'ADV'), ('apparent', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('expressing', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('earnestness', 'NOUN'), ('he', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('low', 'NOUN'), ('voiceBut', 'PROPN'), ('Marianne', 'PROPN'), ('the', 'DET'), ('horse', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('still', 'ADV'), ('yours', 'PRON'), ('though', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('use', 'VERB'), ('it', 'PRON'), ('now', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('keep', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('only', 'ADV'), ('till', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('claim', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('When', 'SCONJ'), ('you', 'PRON'), ('leave', 'VERB'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('form', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('establishment', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('more', 'ADV'), ('lasting', 'ADJ'), ('home', 'NOUN'), ('\n', 'SPACE'), ('Queen', 'PROPN'), ('Mab', 'PROPN'), ('shall', 'AUX'), ('receive', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('all', 'PRON'), ('overheard', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('whole', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('sentence', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('of', 'ADP'), ('pronouncing', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('his', 'PRON'), ('addressing', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('Christian', 'ADJ'), ('name', 'NOUN'), ('alone', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('instantly', 'ADV'), ('saw', 'VERB'), ('an', 'DET'), ('intimacy', 'NOUN'), ('so', 'ADV'), ('decided', 'VERB'), ('a', 'DET'), ('meaning', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('direct', 'ADJ'), ('as', 'SCONJ'), ('marked', 'VERB'), ('a', 'DET'), ('perfect', 'ADJ'), ('agreement', 'NOUN'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('From', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('she', 'PRON'), ('doubted', 'VERB'), ('not', 'PART'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('belief', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('created', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('that', 'PRON'), ('she', 'PRON'), ('or', 'CCONJ'), ('any', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('friends', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('left', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('tempers', 'NOUN'), ('so', 'ADV'), ('frank', 'ADJ'), ('to', 'PART'), ('discover', 'VERB'), ('it', 'PRON'), ('by', 'ADP'), ('accident', 'NOUN'), ('\n\n', 'SPACE'), ('Margaret', 'PROPN'), ('related', 'VERB'), ('something', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('placed', 'VERB'), ('this', 'DET'), ('matter', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('still', 'ADV'), ('clearer', 'ADJ'), ('light', 'ADJ'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('spent', 'VERB'), ('the', 'DET'), ('preceding', 'VERB'), ('evening', 'NOUN'), ('with', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('by', 'ADP'), ('being', 'AUX'), ('left', 'VERB'), ('some', 'DET'), ('time', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('parlour', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('only', 'ADV'), ('him', 'PRON'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('had', 'AUX'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('observations', 'NOUN'), ('which', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('important', 'ADJ'), ('face', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('communicated', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('eldest', 'ADJ'), ('sister', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('next', 'ADJ'), ('by', 'ADP'), ('themselves', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('I', 'PRON'), ('have', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('secret', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('tell', 'VERB'), ('you', 'PRON'), ('about', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('she', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('married', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('very', 'ADV'), ('soon', 'ADV'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('said', 'VERB'), ('so', 'ADV'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('almost', 'ADV'), ('every', 'PRON'), ('\n', 'SPACE'), ('day', 'NOUN'), ('since', 'SCONJ'), ('they', 'PRON'), ('first', 'ADV'), ('met', 'VERB'), ('on', 'ADP'), ('Highchurch', 'PROPN'), ('Down', 'PROPN'), ('and', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('known', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('a', 'DET'), ('week', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('before', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('certain', 'ADJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('wore', 'VERB'), ('his', 'PRON'), ('picture', 'NOUN'), ('round', 'VERB'), ('her', 'PRON'), ('neck', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('turned', 'VERB'), ('out', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('miniature', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('great', 'ADJ'), ('uncle', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('indeed', 'ADV'), ('this', 'PRON'), ('is', 'AUX'), ('quite', 'DET'), ('another', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('married', 'VERB'), ('very', 'ADV'), ('soon', 'ADV'), ('for', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('got', 'VERB'), ('a', 'DET'), ('lock', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('hair', 'NOUN'), ('\n\n', 'SPACE'), ('Take', 'VERB'), ('care', 'NOUN'), ('Margaret', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('hair', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('some', 'DET'), ('great', 'ADJ'), ('uncle', 'NOUN'), ('of', 'ADP'), ('HIS', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('indeed', 'ADV'), ('Elinor', 'PROPN'), ('it', 'PRON'), ('is', 'AUX'), ('Mariannes', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('almost', 'ADV'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('for', 'SCONJ'), ('I', 'PRON'), ('saw', 'VERB'), ('him', 'PRON'), ('cut', 'VERB'), ('it', 'PRON'), ('off', 'ADP'), (' ', 'SPACE'), ('Last', 'ADJ'), ('night', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('tea', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('and', 'CCONJ'), ('mama', 'PROPN'), ('went', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('whispering', 'VERB'), ('and', 'CCONJ'), ('talking', 'VERB'), ('together', 'ADV'), ('as', 'ADV'), ('fast', 'ADV'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('and', 'CCONJ'), ('he', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('begging', 'VERB'), ('something', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('presently', 'ADV'), ('he', 'PRON'), ('took', 'VERB'), ('up', 'ADP'), ('her', 'PRON'), ('scissors', 'NOUN'), ('and', 'CCONJ'), ('cut', 'VERB'), ('off', 'ADP'), ('a', 'DET'), ('long', 'ADJ'), ('\n', 'SPACE'), ('lock', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('hair', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('all', 'ADV'), ('tumbled', 'VERB'), ('down', 'ADP'), ('her', 'PRON'), ('back', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('kissed', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('folded', 'VERB'), ('it', 'PRON'), ('up', 'ADP'), ('in', 'ADP'), ('a', 'DET'), ('piece', 'NOUN'), ('of', 'ADP'), ('white', 'ADJ'), ('paper', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('put', 'VERB'), ('it', 'PRON'), ('into', 'ADP'), ('his', 'PRON'), ('pocketbook', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('such', 'ADJ'), ('particulars', 'NOUN'), ('stated', 'VERB'), ('on', 'ADP'), ('such', 'ADJ'), ('authority', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('withhold', 'VERB'), ('her', 'PRON'), ('credit', 'NOUN'), ('nor', 'CCONJ'), ('was', 'AUX'), ('she', 'PRON'), ('disposed', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('circumstance', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('perfect', 'ADJ'), ('unison', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('heard', 'VERB'), ('and', 'CCONJ'), ('seen', 'VERB'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('Margarets', 'PROPN'), ('sagacity', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('always', 'ADV'), ('displayed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('way', 'NOUN'), ('so', 'ADV'), ('satisfactory', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('attacked', 'VERB'), ('her', 'PRON'), ('one', 'NUM'), ('evening', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('the', 'DET'), ('name', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('Elinors', 'PROPN'), ('particular', 'ADJ'), ('favourite', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('curiosity', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('Margaret', 'PROPN'), ('answered', 'VERB'), ('by', 'ADP'), ('looking', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('saying', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('may', 'AUX'), ('I', 'PRON'), ('Elinor', 'VERB'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('of', 'ADP'), ('course', 'NOUN'), ('made', 'VERB'), ('every', 'DET'), ('body', 'NOUN'), ('laugh', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('tried', 'VERB'), ('to', 'PART'), ('laugh', 'VERB'), ('too', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('effort', 'NOUN'), ('was', 'AUX'), ('painful', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('Margaret', 'PROPN'), ('had', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('\n', 'SPACE'), ('whose', 'DET'), ('name', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('with', 'ADP'), ('composure', 'NOUN'), ('to', 'PART'), ('become', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('standing', 'VERB'), ('joke', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('felt', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('most', 'ADV'), ('sincerely', 'ADV'), ('but', 'CCONJ'), ('she', 'PRON'), ('did', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('harm', 'NOUN'), ('than', 'ADP'), ('good', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('cause', 'NOUN'), ('by', 'ADP'), ('turning', 'VERB'), ('very', 'ADV'), ('red', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('saying', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('angry', 'ADJ'), ('manner', 'NOUN'), ('to', 'ADP'), ('Margaret', 'PROPN'), ('\n\n', 'SPACE'), ('Remember', 'VERB'), ('that', 'SCONJ'), ('whatever', 'PRON'), ('your', 'PRON'), ('conjectures', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('right', 'NOUN'), ('to', 'PART'), ('repeat', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('had', 'VERB'), ('any', 'DET'), ('conjectures', 'NOUN'), ('about', 'ADP'), ('it', 'PRON'), ('replied', 'VERB'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('you', 'PRON'), ('who', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('increased', 'VERB'), ('the', 'DET'), ('mirth', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('company', 'NOUN'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('eagerly', 'ADV'), ('pressed', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('something', 'PRON'), ('more', 'ADJ'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('pray', 'VERB'), ('Miss', 'PROPN'), ('Margaret', 'PROPN'), ('let', 'VERB'), ('us', 'PRON'), ('know', 'VERB'), ('all', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), (' ', 'SPACE'), ('What', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('gentlemans', 'PROPN'), ('name', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('maam', 'PROPN'), ('But', 'CCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('well', 'INTJ'), ('what', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('where', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('too', 'ADV'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('yes', 'INTJ'), ('we', 'PRON'), ('can', 'AUX'), ('guess', 'VERB'), ('where', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('at', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Norland', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('curate', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('parish', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('THAT', 'PRON'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('of', 'ADP'), ('no', 'DET'), ('profession', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('Margaret', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('great', 'ADJ'), ('warmth', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('that', 'SCONJ'), ('all', 'DET'), ('this', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('invention', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('person', 'NOUN'), ('in', 'ADP'), ('existence', 'NOUN'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('he', 'PRON'), ('is', 'AUX'), ('lately', 'ADV'), ('dead', 'ADJ'), ('Marianne', 'PROPN'), ('for', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('am', 'AUX'), ('sure', 'ADJ'), ('there', 'PRON'), ('was', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('man', 'NOUN'), ('once', 'ADV'), ('and', 'CCONJ'), ('his', 'PRON'), ('name', 'NOUN'), ('begins', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('an', 'DET'), ('F', 'PROPN'), ('\n\n', 'SPACE'), ('Most', 'ADV'), ('grateful', 'ADJ'), ('did', 'AUX'), ('Elinor', 'PROPN'), ('feel', 'VERB'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('observing', 'VERB'), ('at', 'ADP'), ('this', 'DET'), ('moment', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('rained', 'VERB'), ('very', 'ADV'), ('hard', 'ADV'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('she', 'PRON'), ('believed', 'VERB'), ('the', 'DET'), ('interruption', 'NOUN'), ('to', 'PART'), ('proceed', 'VERB'), ('less', 'ADV'), ('from', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('attention', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('than', 'ADP'), ('from', 'ADP'), ('her', 'PRON'), ('ladyships', 'NOUN'), ('great', 'ADJ'), ('dislike', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('such', 'ADJ'), ('inelegant', 'ADJ'), ('subjects', 'NOUN'), ('of', 'ADP'), ('raillery', 'NOUN'), ('as', 'SCONJ'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('husband', 'NOUN'), ('and', 'CCONJ'), ('mother', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('idea', 'NOUN'), ('however', 'ADV'), ('started', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('immediately', 'ADV'), ('pursued', 'VERB'), ('by', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('on', 'ADP'), ('every', 'DET'), ('occasion', 'NOUN'), ('mindful', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('much', 'ADJ'), ('was', 'AUX'), ('said', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('of', 'ADP'), ('rain', 'NOUN'), ('by', 'ADP'), ('both', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('opened', 'VERB'), ('the', 'DET'), ('pianoforte', 'NOUN'), ('and', 'CCONJ'), ('asked', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('sit', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('thus', 'ADV'), ('amidst', 'SCONJ'), ('the', 'DET'), ('various', 'ADJ'), ('endeavours', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('different', 'ADJ'), ('people', 'NOUN'), ('to', 'PART'), ('quit', 'VERB'), ('the', 'DET'), ('topic', 'NOUN'), ('it', 'PRON'), ('fell', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('ground', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('not', 'PART'), ('so', 'ADV'), ('easily', 'ADV'), ('did', 'AUX'), ('Elinor', 'PROPN'), ('recover', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('alarm', 'NOUN'), ('into', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('it', 'PRON'), ('had', 'AUX'), ('thrown', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('A', 'DET'), ('party', 'NOUN'), ('was', 'AUX'), ('formed', 'VERB'), ('this', 'DET'), ('evening', 'NOUN'), ('for', 'ADP'), ('going', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('following', 'VERB'), ('day', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('fine', 'ADJ'), ('place', 'NOUN'), ('about', 'ADV'), ('twelve', 'NUM'), ('miles', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('Barton', 'PROPN'), ('belonging', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('brotherinlaw', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('without', 'ADP'), ('whose', 'DET'), ('interest', 'NOUN'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('seen', 'VERB'), ('as', 'ADP'), ('the', 'DET'), ('proprietor', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('was', 'AUX'), ('then', 'ADV'), ('abroad', 'ADV'), ('had', 'AUX'), ('left', 'VERB'), ('strict', 'ADJ'), ('orders', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('head', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('grounds', 'NOUN'), ('were', 'AUX'), ('declared', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('highly', 'ADV'), ('beautiful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('particularly', 'ADV'), ('warm', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('praise', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('tolerable', 'ADJ'), ('judge', 'NOUN'), ('for', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('formed', 'VERB'), ('parties', 'NOUN'), ('to', 'PART'), ('visit', 'VERB'), ('them', 'PRON'), ('at', 'ADV'), ('least', 'ADJ'), ('twice', 'DET'), ('every', 'DET'), ('summer', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('ten', 'NUM'), ('years', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('contained', 'VERB'), ('a', 'DET'), ('noble', 'ADJ'), ('piece', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('water', 'NOUN'), ('a', 'DET'), ('sail', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('a', 'DET'), ('form', 'NOUN'), ('a', 'DET'), ('great', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('mornings', 'NOUN'), ('amusement', 'NOUN'), ('cold', 'ADJ'), ('provisions', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('taken', 'VERB'), ('\n', 'SPACE'), ('open', 'ADJ'), ('carriages', 'NOUN'), ('only', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('employed', 'VERB'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('conducted', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('usual', 'ADJ'), ('style', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('complete', 'ADJ'), ('party', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'ADP'), ('some', 'DET'), ('few', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('company', 'NOUN'), ('it', 'PRON'), ('appeared', 'VERB'), ('rather', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('bold', 'ADJ'), ('undertaking', 'NOUN'), ('considering', 'VERB'), ('the', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('year', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('rained', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('fortnight', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('who', 'PRON'), ('had', 'VERB'), ('already', 'ADV'), ('a', 'DET'), ('cold', 'NOUN'), ('was', 'AUX'), ('persuaded', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Elinor', 'PROPN'), ('to', 'PART'), ('stay', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'PROPN'), ('13', 'NUM'), ('\n\n\n', 'SPACE'), ('Their', 'PRON'), ('intended', 'VERB'), ('excursion', 'NOUN'), ('to', 'ADP'), ('Whitwell', 'PROPN'), ('turned', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('very', 'ADV'), ('different', 'ADJ'), ('from', 'ADP'), ('what', 'PRON'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('expected', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('prepared', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('wet', 'ADJ'), ('through', 'ADP'), ('fatigued', 'ADJ'), ('and', 'CCONJ'), ('frightened', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('event', 'NOUN'), ('was', 'AUX'), ('still', 'ADV'), ('more', 'ADV'), ('unfortunate', 'ADJ'), ('for', 'SCONJ'), ('they', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('go', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('ten', 'NUM'), ('oclock', 'NOUN'), ('the', 'DET'), ('whole', 'ADJ'), ('party', 'NOUN'), ('was', 'AUX'), ('assembled', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('park', 'NOUN'), ('where', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('breakfast', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('rather', 'ADV'), ('favourable', 'ADJ'), ('though', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('rained', 'VERB'), ('all', 'DET'), ('night', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('clouds', 'NOUN'), ('were', 'AUX'), ('then', 'ADV'), ('dispersing', 'VERB'), ('across', 'ADP'), ('the', 'DET'), ('sky', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('sun', 'NOUN'), ('frequently', 'ADV'), ('appeared', 'VERB'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('all', 'PRON'), ('in', 'ADP'), ('high', 'ADJ'), ('\n', 'SPACE'), ('spirits', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('humour', 'NOUN'), ('eager', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('determined', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('inconveniences', 'NOUN'), ('and', 'CCONJ'), ('hardships', 'NOUN'), ('\n', 'SPACE'), ('rather', 'ADV'), ('than', 'ADP'), ('be', 'AUX'), ('otherwise', 'ADV'), ('\n\n', 'SPACE'), ('While', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('at', 'ADP'), ('breakfast', 'NOUN'), ('the', 'DET'), ('letters', 'NOUN'), ('were', 'AUX'), ('brought', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('Among', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('there', 'PRON'), ('was', 'VERB'), ('one', 'NUM'), ('for', 'ADP'), ('Colonel', 'PROPN'), ('Brandonhe', 'PROPN'), ('\n', 'SPACE'), ('took', 'VERB'), ('it', 'PRON'), ('looked', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('direction', 'NOUN'), ('changed', 'VERB'), ('colour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('immediately', 'ADV'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('matter', 'NOUN'), ('with', 'ADP'), ('Brandon', 'PROPN'), ('said', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n\n', 'SPACE'), ('Nobody', 'PRON'), ('could', 'AUX'), ('tell', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('he', 'PRON'), ('has', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('bad', 'ADJ'), ('news', 'NOUN'), ('said', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('It', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('something', 'PRON'), ('extraordinary', 'ADJ'), ('that', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('leave', 'VERB'), ('my', 'PRON'), ('breakfast', 'NOUN'), ('table', 'NOUN'), ('so', 'ADV'), ('suddenly', 'ADV'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('about', 'ADV'), ('five', 'NUM'), ('minutes', 'NOUN'), ('he', 'PRON'), ('returned', 'VERB'), ('\n\n', 'SPACE'), ('No', 'DET'), ('bad', 'ADJ'), ('news', 'NOUN'), ('Colonel', 'PROPN'), ('I', 'PRON'), ('hope', 'VERB'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('None', 'NOUN'), ('at', 'ADP'), ('all', 'ADV'), ('maam', 'PROPN'), ('I', 'PRON'), ('thank', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Was', 'AUX'), ('it', 'PRON'), ('from', 'ADP'), ('Avignon', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('is', 'AUX'), ('worse', 'ADJ'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('maam', 'PROPN'), ('It', 'PRON'), ('came', 'VERB'), ('from', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('is', 'AUX'), ('merely', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('business', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('how', 'SCONJ'), ('came', 'VERB'), ('the', 'DET'), ('hand', 'NOUN'), ('to', 'PART'), ('discompose', 'VERB'), ('you', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('a', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('business', 'NOUN'), (' ', 'SPACE'), ('Come', 'VERB'), ('come', 'VERB'), ('\n', 'SPACE'), ('this', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('do', 'VERB'), ('Colonel', 'PROPN'), ('so', 'ADV'), ('let', 'VERB'), ('us', 'PRON'), ('hear', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('madam', 'NOUN'), ('said', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('recollect', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('your', 'PRON'), ('cousin', 'NOUN'), ('Fanny', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('married', 'VERB'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('without', 'ADP'), ('attending', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('reproof', 'ADV'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('indeed', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('I', 'PRON'), ('know', 'VERB'), ('who', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('from', 'ADP'), ('Colonel', 'PROPN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('hope', 'VERB'), ('she', 'PRON'), ('is', 'AUX'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('Whom', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('maam', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('colouring', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('you', 'PRON'), ('know', 'VERB'), ('who', 'PRON'), ('I', 'PRON'), ('mean', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('particularly', 'ADV'), ('sorry', 'ADJ'), ('maam', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('\n', 'SPACE'), ('addressing', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('receive', 'VERB'), ('this', 'DET'), ('\n', 'SPACE'), ('letter', 'NOUN'), ('today', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('on', 'ADP'), ('business', 'NOUN'), ('which', 'PRON'), ('requires', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('immediate', 'ADJ'), ('attendance', 'NOUN'), ('in', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('town', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), (' ', 'SPACE'), ('What', 'PRON'), ('can', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('in', 'ADP'), ('town', 'NOUN'), ('at', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('year', 'NOUN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('own', 'ADJ'), ('loss', 'NOUN'), ('is', 'AUX'), ('great', 'ADJ'), ('be', 'AUX'), ('continued', 'VERB'), ('in', 'ADP'), ('being', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('leave', 'VERB'), ('so', 'ADV'), ('agreeable', 'ADJ'), ('a', 'DET'), ('party', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('the', 'DET'), ('more', 'ADV'), ('concerned', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('fear', 'VERB'), ('my', 'PRON'), ('presence', 'NOUN'), ('is', 'AUX'), ('necessary', 'ADJ'), ('to', 'PART'), ('gain', 'VERB'), ('your', 'PRON'), ('admittance', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Whitwell', 'PROPN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('blow', 'NOUN'), ('upon', 'SCONJ'), ('them', 'PRON'), ('all', 'PRON'), ('was', 'AUX'), ('this', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('write', 'VERB'), ('a', 'DET'), ('note', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('housekeeper', 'NOUN'), ('Mr', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('eagerly', 'ADV'), ('will', 'AUX'), ('it', 'PRON'), ('not', 'PART'), ('be', 'AUX'), ('sufficient', 'ADJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('shook', 'VERB'), ('his', 'PRON'), ('head', 'NOUN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('must', 'AUX'), ('go', 'AUX'), ('said', 'VERB'), ('Sir', 'PROPN'), ('JohnIt', 'PROPN'), ('shall', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('put', 'VERB'), ('\n', 'SPACE'), ('off', 'ADP'), ('when', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('so', 'ADV'), ('near', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('till', 'SCONJ'), ('\n', 'SPACE'), ('tomorrow', 'NOUN'), ('Brandon', 'PROPN'), ('that', 'PRON'), ('is', 'AUX'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('easily', 'ADV'), ('settled', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('delay', 'VERB'), ('my', 'PRON'), ('journey', 'NOUN'), ('for', 'ADP'), ('one', 'NUM'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('would', 'AUX'), ('but', 'CCONJ'), ('let', 'VERB'), ('us', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('your', 'PRON'), ('business', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('we', 'PRON'), ('might', 'AUX'), ('see', 'VERB'), ('whether', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('put', 'VERB'), ('\n', 'SPACE'), ('off', 'ADP'), ('or', 'CCONJ'), ('not', 'PART'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('six', 'NUM'), ('hours', 'NOUN'), ('later', 'ADV'), ('said', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('defer', 'VERB'), ('your', 'PRON'), ('journey', 'NOUN'), ('till', 'SCONJ'), ('our', 'PRON'), ('return', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('afford', 'VERB'), ('to', 'PART'), ('lose', 'VERB'), ('ONE', 'NUM'), ('hour', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('then', 'ADV'), ('heard', 'VERB'), ('Willoughby', 'PROPN'), ('say', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('There', 'PRON'), ('are', 'VERB'), ('some', 'DET'), ('people', 'NOUN'), ('who', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('a', 'DET'), ('party', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('is', 'AUX'), ('one', 'NUM'), ('of', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('of', 'ADP'), ('catching', 'VERB'), ('cold', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('and', 'CCONJ'), ('invented', 'VERB'), ('this', 'DET'), ('trick', 'NOUN'), ('for', 'ADP'), ('getting', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('lay', 'VERB'), ('fifty', 'NUM'), ('guineas', 'NOUN'), ('the', 'DET'), ('letter', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('writing', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('replied', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('persuading', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('change', 'VERB'), ('your', 'PRON'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('I', 'PRON'), ('know', 'VERB'), ('of', 'ADP'), ('old', 'ADJ'), ('said', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('when', 'SCONJ'), ('once', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('determined', 'ADJ'), ('on', 'ADP'), ('anything', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('however', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('think', 'VERB'), ('better', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Consider', 'VERB'), ('here', 'ADV'), ('are', 'AUX'), ('the', 'DET'), ('two', 'NUM'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Careys', 'NOUN'), ('come', 'VERB'), ('over', 'ADP'), ('from', 'ADP'), ('Newton', 'PROPN'), ('the', 'DET'), ('three', 'NUM'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('walked', 'VERB'), ('up', 'ADP'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('got', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('two', 'NUM'), ('hours', 'NOUN'), ('before', 'ADP'), ('his', 'PRON'), ('usual', 'ADJ'), ('time', 'NOUN'), ('on', 'ADP'), ('purpose', 'NOUN'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Whitwell', 'PROPN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('again', 'ADV'), ('repeated', 'VERB'), ('his', 'PRON'), ('sorrow', 'NOUN'), ('at', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('cause', 'NOUN'), ('of', 'ADP'), ('disappointing', 'VERB'), ('the', 'DET'), ('party', 'NOUN'), ('but', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('\n', 'SPACE'), ('time', 'NOUN'), ('declared', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('unavoidable', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('when', 'SCONJ'), ('will', 'AUX'), ('you', 'PRON'), ('come', 'VERB'), ('back', 'ADV'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('you', 'PRON'), ('at', 'ADP'), ('Barton', 'PROPN'), ('added', 'VERB'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('conveniently', 'ADV'), ('leave', 'VERB'), ('town', 'NOUN'), ('and', 'CCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('put', 'VERB'), ('off', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('to', 'ADP'), ('Whitwell', 'PROPN'), ('till', 'SCONJ'), ('you', 'PRON'), ('return', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('obliging', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('uncertain', 'ADJ'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('may', 'AUX'), ('have', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('return', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('dare', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('engage', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('he', 'PRON'), ('must', 'AUX'), ('and', 'CCONJ'), ('shall', 'AUX'), ('come', 'VERB'), ('back', 'ADV'), ('cried', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('here', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('week', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('go', 'VERB'), ('\n', 'SPACE'), ('after', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('so', 'ADV'), ('do', 'AUX'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('you', 'PRON'), ('may', 'AUX'), ('find', 'VERB'), ('out', 'ADP'), ('what', 'PRON'), ('his', 'PRON'), ('business', 'NOUN'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('want', 'VERB'), ('to', 'PART'), ('pry', 'VERB'), ('into', 'ADP'), ('other', 'ADJ'), ('mens', 'NOUN'), ('concerns', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('something', 'PRON'), ('he', 'PRON'), ('is', 'AUX'), ('ashamed', 'ADJ'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('horses', 'NOUN'), ('were', 'AUX'), ('announced', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('on', 'ADP'), ('horseback', 'NOUN'), ('do', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('added', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('Only', 'ADV'), ('to', 'ADP'), ('Honiton', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('then', 'ADV'), ('go', 'VERB'), ('post', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('resolved', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('I', 'PRON'), ('wish', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('good', 'ADJ'), ('journey', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('had', 'AUX'), ('better', 'ADV'), ('change', 'VERB'), ('your', 'PRON'), ('mind', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('then', 'ADV'), ('took', 'VERB'), ('leave', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('whole', 'ADJ'), ('party', 'NOUN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('there', 'PRON'), ('no', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('seeing', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('this', 'DET'), ('winter', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('none', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('Then', 'ADV'), ('I', 'PRON'), ('must', 'AUX'), ('bid', 'VERB'), ('you', 'PRON'), ('farewell', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('longer', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('wish', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('To', 'ADP'), ('Marianne', 'PROPN'), ('he', 'PRON'), ('merely', 'ADV'), ('bowed', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('nothing', 'PRON'), ('\n\n', 'SPACE'), ('Come', 'VERB'), ('Colonel', 'PROPN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('before', 'SCONJ'), ('you', 'PRON'), ('go', 'VERB'), ('\n', 'SPACE'), ('do', 'AUX'), ('let', 'VERB'), ('us', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('are', 'AUX'), ('going', 'VERB'), ('about', 'ADP'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('wished', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('good', 'ADJ'), ('morning', 'NOUN'), ('and', 'CCONJ'), ('attended', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('complaints', 'NOUN'), ('and', 'CCONJ'), ('lamentations', 'NOUN'), ('which', 'PRON'), ('politeness', 'NOUN'), ('\n', 'SPACE'), ('had', 'VERB'), ('hitherto', 'PROPN'), ('restrained', 'VERB'), ('now', 'ADV'), ('burst', 'VERB'), ('forth', 'ADV'), ('universally', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('all', 'PRON'), ('agreed', 'VERB'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('how', 'SCONJ'), ('provoking', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('disappointed', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('guess', 'VERB'), ('what', 'PRON'), ('his', 'PRON'), ('business', 'NOUN'), ('is', 'AUX'), ('however', 'ADV'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('exultingly', 'ADV'), ('\n\n', 'SPACE'), ('Can', 'AUX'), ('you', 'PRON'), ('maam', 'PROPN'), ('said', 'VERB'), ('almost', 'ADV'), ('every', 'PRON'), ('body', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('it', 'PRON'), ('is', 'AUX'), ('about', 'ADP'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('who', 'PRON'), ('is', 'AUX'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('asked', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('know', 'VERB'), ('who', 'PRON'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('is', 'AUX'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('you', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('heard', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('before', 'ADP'), (' ', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('relation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('my', 'PRON'), ('dear', 'NOUN'), ('a', 'DET'), ('very', 'ADV'), ('near', 'ADP'), ('relation', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('say', 'VERB'), ('how', 'SCONJ'), ('near', 'ADJ'), ('for', 'ADP'), ('fear', 'NOUN'), ('of', 'ADP'), ('shocking', 'VERB'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('Then', 'ADV'), ('lowering', 'VERB'), ('her', 'PRON'), ('voice', 'NOUN'), ('a', 'DET'), ('little', 'ADJ'), ('she', 'PRON'), ('said', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('his', 'PRON'), ('natural', 'ADJ'), ('daughter', 'NOUN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('yes', 'INTJ'), ('and', 'CCONJ'), ('as', 'ADP'), ('like', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('can', 'AUX'), ('stare', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('dare', 'AUX'), ('say', 'VERB'), ('the', 'DET'), ('Colonel', 'PROPN'), ('will', 'AUX'), ('leave', 'VERB'), ('her', 'PRON'), ('all', 'DET'), ('his', 'PRON'), ('fortune', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('returned', 'VERB'), ('he', 'PRON'), ('joined', 'VERB'), ('most', 'ADV'), ('heartily', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('general', 'ADJ'), ('regret', 'NOUN'), ('on', 'ADP'), ('so', 'ADV'), ('unfortunate', 'ADJ'), ('an', 'DET'), ('event', 'NOUN'), ('\n', 'SPACE'), ('concluding', 'VERB'), ('however', 'ADV'), ('by', 'ADP'), ('observing', 'VERB'), ('that', 'PRON'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('all', 'PRON'), ('got', 'VERB'), ('together', 'ADV'), ('they', 'PRON'), ('must', 'AUX'), ('do', 'VERB'), ('something', 'PRON'), ('by', 'ADP'), ('way', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('being', 'AUX'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('after', 'ADP'), ('some', 'DET'), ('consultation', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('agreed', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('although', 'SCONJ'), ('happiness', 'NOUN'), ('could', 'AUX'), ('only', 'ADV'), ('be', 'AUX'), ('enjoyed', 'VERB'), ('at', 'ADP'), ('Whitwell', 'PROPN'), ('\n', 'SPACE'), ('they', 'PRON'), ('might', 'AUX'), ('procure', 'VERB'), ('a', 'DET'), ('tolerable', 'ADJ'), ('composure', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('by', 'ADP'), ('driving', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('carriages', 'NOUN'), ('were', 'AUX'), ('then', 'ADV'), ('ordered', 'VERB'), ('\n', 'SPACE'), ('Willoughbys', 'PROPN'), ('was', 'AUX'), ('first', 'ADV'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('never', 'ADV'), ('looked', 'VERB'), ('\n', 'SPACE'), ('happier', 'ADJ'), ('than', 'ADP'), ('when', 'SCONJ'), ('she', 'PRON'), ('got', 'VERB'), ('into', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('drove', 'VERB'), ('through', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('park', 'NOUN'), ('very', 'ADV'), ('fast', 'ADV'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('soon', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('sight', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('nothing', 'PRON'), ('more', 'ADJ'), ('of', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('seen', 'VERB'), ('till', 'SCONJ'), ('their', 'PRON'), ('return', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('happen', 'VERB'), ('till', 'SCONJ'), ('after', 'ADP'), ('the', 'DET'), ('return', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('both', 'PRON'), ('seemed', 'VERB'), ('delighted', 'ADJ'), ('with', 'ADP'), ('their', 'PRON'), ('drive', 'NOUN'), ('but', 'CCONJ'), ('said', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('in', 'ADP'), ('general', 'ADJ'), ('terms', 'NOUN'), ('that', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('kept', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('lanes', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('went', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('downs', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('settled', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('dance', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('extremely', 'ADV'), ('merry', 'ADJ'), ('all', 'DET'), ('day', 'NOUN'), ('long', 'ADV'), ('\n', 'SPACE'), ('Some', 'DET'), ('more', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('Careys', 'PROPN'), ('came', 'VERB'), ('to', 'ADP'), ('dinner', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('sitting', 'VERB'), ('down', 'ADP'), ('nearly', 'ADV'), ('twenty', 'NUM'), ('to', 'ADP'), ('table', 'NOUN'), ('which', 'PRON'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('observed', 'VERB'), ('with', 'ADP'), ('great', 'ADJ'), ('contentment', 'NOUN'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('took', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('usual', 'ADJ'), ('place', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('elder', 'ADJ'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('sat', 'VERB'), ('on', 'ADP'), ('Elinors', 'PROPN'), ('right', 'ADJ'), ('hand', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('been', 'AUX'), ('long', 'ADV'), ('seated', 'VERB'), ('before', 'SCONJ'), ('she', 'PRON'), ('leant', 'VERB'), ('behind', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('said', 'VERB'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('loud', 'ADV'), ('enough', 'ADV'), ('for', 'SCONJ'), ('them', 'PRON'), ('both', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('found', 'VERB'), ('you', 'PRON'), ('out', 'ADP'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('your', 'PRON'), ('tricks', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('where', 'SCONJ'), ('you', 'PRON'), ('spent', 'VERB'), ('the', 'DET'), ('morning', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('coloured', 'VERB'), ('and', 'CCONJ'), ('replied', 'VERB'), ('very', 'ADV'), ('hastily', 'ADV'), ('\n', 'SPACE'), ('Where', 'SCONJ'), ('pray', 'NOUN'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('know', 'VERB'), ('said', 'VERB'), ('Willoughby', 'PROPN'), ('that', 'SCONJ'), ('we', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('out', 'ADV'), ('in', 'ADP'), ('my', 'PRON'), ('curricle', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('yes', 'INTJ'), ('Mr', 'PROPN'), ('Impudence', 'PROPN'), ('I', 'PRON'), ('know', 'VERB'), ('that', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('determined', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('out', 'ADP'), ('WHERE', 'SCONJ'), ('you', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('to', 'ADP'), ('\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('like', 'VERB'), ('your', 'PRON'), ('house', 'NOUN'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('large', 'ADJ'), ('one', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('I', 'PRON'), ('come', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('have', 'AUX'), ('newfurnished', 'VERB'), ('it', 'PRON'), ('for', 'ADP'), ('it', 'PRON'), ('wanted', 'VERB'), ('it', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('there', 'ADV'), ('six', 'NUM'), ('years', 'NOUN'), ('ago', 'ADP'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('turned', 'VERB'), ('away', 'ADV'), ('in', 'ADP'), ('great', 'ADJ'), ('confusion', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('laughed', 'VERB'), ('heartily', 'ADV'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('that', 'SCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('resolution', 'NOUN'), ('to', 'PART'), ('know', 'VERB'), ('where', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('she', 'PRON'), ('had', 'AUX'), ('actually', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('woman', 'NOUN'), ('enquire', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('groom', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('by', 'ADP'), ('that', 'DET'), ('method', 'NOUN'), ('been', 'AUX'), ('informed', 'VERB'), ('that', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('gone', 'VERB'), ('to', 'ADP'), ('Allenham', 'PROPN'), ('and', 'CCONJ'), ('spent', 'VERB'), ('a', 'DET'), ('considerable', 'ADJ'), ('time', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('walking', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('garden', 'NOUN'), ('and', 'CCONJ'), ('going', 'VERB'), ('all', 'ADV'), ('over', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('hardly', 'ADV'), ('believe', 'VERB'), ('this', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('true', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('it', 'PRON'), ('seemed', 'VERB'), ('very', 'ADV'), ('unlikely', 'ADJ'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('should', 'AUX'), ('propose', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('Marianne', 'PROPN'), ('consent', 'NOUN'), ('to', 'PART'), ('enter', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('while', 'SCONJ'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('whom', 'PRON'), ('Marianne', 'PROPN'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('acquaintance', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('left', 'VERB'), ('the', 'DET'), ('diningroom', 'NOUN'), ('Elinor', 'PROPN'), ('enquired', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('about', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('great', 'ADJ'), ('was', 'AUX'), ('her', 'PRON'), ('surprise', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('found', 'VERB'), ('that', 'SCONJ'), ('every', 'DET'), ('circumstance', 'NOUN'), ('related', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('perfectly', 'ADV'), ('true', 'ADJ'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('quite', 'ADV'), ('angry', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('doubting', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('imagine', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('we', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('go', 'VERB'), ('there', 'ADV'), ('or', 'CCONJ'), ('that', 'SCONJ'), ('we', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('Is', 'AUX'), ('not', 'PART'), ('it', 'PRON'), ('\n', 'SPACE'), ('what', 'PRON'), ('you', 'PRON'), ('have', 'AUX'), ('often', 'ADV'), ('wished', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('Marianne', 'PROPN'), ('but', 'CCONJ'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('while', 'SCONJ'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('there', 'ADV'), ('and', 'CCONJ'), ('with', 'ADP'), ('no', 'DET'), ('other', 'ADJ'), ('companion', 'NOUN'), ('than', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('however', 'ADV'), ('is', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('person', 'NOUN'), ('who', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('have', 'VERB'), ('a', 'DET'), ('right', 'NOUN'), ('to', 'AUX'), ('shew', 'VERB'), ('that', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('went', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('open', 'ADJ'), ('\n', 'SPACE'), ('carriage', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('to', 'PART'), ('have', 'VERB'), ('any', 'DET'), ('other', 'ADJ'), ('companion', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('spent', 'VERB'), ('a', 'DET'), ('pleasanter', 'NOUN'), ('morning', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('the', 'DET'), ('pleasantness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('an', 'DET'), ('employment', 'NOUN'), ('does', 'AUX'), ('not', 'PART'), ('always', 'ADV'), ('evince', 'VERB'), ('its', 'PRON'), ('propriety', 'NOUN'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('contrary', 'ADJ'), ('nothing', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('stronger', 'ADJ'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('Elinor', 'PROPN'), ('for', 'SCONJ'), ('if', 'SCONJ'), ('there', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('any', 'DET'), ('real', 'ADJ'), ('impropriety', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('did', 'AUX'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('sensible', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('time', 'NOUN'), ('for', 'SCONJ'), ('we', 'PRON'), ('always', 'ADV'), ('know', 'VERB'), ('when', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('acting', 'VERB'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('conviction', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('pleasure', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('Marianne', 'PROPN'), ('as', 'SCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('already', 'ADV'), ('exposed', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('some', 'DET'), ('very', 'ADV'), ('impertinent', 'ADJ'), ('remarks', 'NOUN'), ('do', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('now', 'ADV'), ('begin', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('doubt', 'VERB'), ('the', 'DET'), ('discretion', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('conduct', 'NOUN'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('the', 'DET'), ('impertinent', 'ADJ'), ('remarks', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('are', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('proof', 'NOUN'), ('of', 'ADP'), ('impropriety', 'NOUN'), ('in', 'ADP'), ('conduct', 'NOUN'), ('we', 'PRON'), ('are', 'AUX'), ('all', 'PRON'), ('\n', 'SPACE'), ('offending', 'VERB'), ('every', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('lives', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('value', 'VERB'), ('not', 'PART'), ('her', 'PRON'), ('\n', 'SPACE'), ('censure', 'VERB'), ('any', 'PRON'), ('more', 'ADV'), ('than', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('do', 'VERB'), ('her', 'PRON'), ('commendation', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('sensible', 'ADJ'), ('of', 'ADP'), ('having', 'AUX'), ('done', 'VERB'), ('anything', 'PRON'), ('wrong', 'ADJ'), ('in', 'ADP'), ('walking', 'VERB'), ('\n', 'SPACE'), ('over', 'ADP'), ('Mrs', 'PROPN'), ('Smiths', 'PROPN'), ('grounds', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('house', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('one', 'NUM'), ('day', 'NOUN'), ('be', 'AUX'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('and', 'CCONJ'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('one', 'NUM'), ('day', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('your', 'PRON'), ('own', 'ADJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('justified', 'VERB'), ('in', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('have', 'AUX'), ('done', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('blushed', 'VERB'), ('at', 'ADP'), ('this', 'DET'), ('hint', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('even', 'ADV'), ('visibly', 'ADV'), ('\n', 'SPACE'), ('gratifying', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('interval', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('earnest', 'ADJ'), ('thought', 'NOUN'), ('she', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('said', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('great', 'ADJ'), ('good', 'ADJ'), ('humour', 'NOUN'), ('Perhaps', 'ADV'), ('Elinor', 'PROPN'), ('it', 'PRON'), ('WAS', 'AUX'), ('rather', 'ADV'), ('\n', 'SPACE'), ('illjudged', 'VERB'), ('in', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Allenham', 'PROPN'), ('but', 'CCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('wanted', 'VERB'), ('\n', 'SPACE'), ('particularly', 'ADV'), ('to', 'PART'), ('shew', 'VERB'), ('me', 'PRON'), ('the', 'DET'), ('place', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('charming', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('youThere', 'PROPN'), ('is', 'AUX'), ('one', 'NUM'), ('remarkably', 'ADV'), ('pretty', 'ADV'), ('sitting', 'VERB'), ('room', 'NOUN'), ('\n', 'SPACE'), ('up', 'ADP'), ('stairs', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('nice', 'ADJ'), ('comfortable', 'ADJ'), ('size', 'NOUN'), ('for', 'ADP'), ('constant', 'ADJ'), ('use', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('modern', 'ADJ'), ('furniture', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('delightful', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('corner', 'NOUN'), ('room', 'NOUN'), ('and', 'CCONJ'), ('has', 'VERB'), ('windows', 'NOUN'), ('on', 'ADP'), ('two', 'NUM'), ('sides', 'NOUN'), ('\n', 'SPACE'), ('On', 'ADP'), ('one', 'NUM'), ('side', 'NOUN'), ('you', 'PRON'), ('look', 'VERB'), ('across', 'ADP'), ('the', 'DET'), ('bowlinggreen', 'NOUN'), ('behind', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('beautiful', 'ADJ'), ('hanging', 'VERB'), ('wood', 'NOUN'), ('and', 'CCONJ'), ('on', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('a', 'DET'), ('view', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('church', 'NOUN'), ('and', 'CCONJ'), ('village', 'NOUN'), ('and', 'CCONJ'), ('beyond', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('those', 'DET'), ('fine', 'ADJ'), ('bold', 'ADJ'), ('hills', 'NOUN'), ('that', 'PRON'), ('we', 'PRON'), ('have', 'AUX'), ('so', 'ADV'), ('often', 'ADV'), ('admired', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('advantage', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('more', 'ADV'), ('forlorn', 'ADJ'), ('than', 'ADP'), ('the', 'DET'), ('furniturebut', 'NOUN'), ('if', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('newly', 'ADV'), ('\n', 'SPACE'), ('fitted', 'VERB'), ('upa', 'ADJ'), ('couple', 'NOUN'), ('of', 'ADP'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('Willoughby', 'PROPN'), ('says', 'VERB'), ('\n', 'SPACE'), ('would', 'AUX'), ('make', 'VERB'), ('it', 'PRON'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('pleasantest', 'ADJ'), ('summerrooms', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('England', 'PROPN'), ('\n\n', 'SPACE'), ('Could', 'AUX'), ('Elinor', 'PROPN'), ('have', 'AUX'), ('listened', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('without', 'ADP'), ('interruption', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('described', 'VERB'), ('every', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('with', 'ADP'), ('equal', 'ADJ'), ('delight', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('14', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('sudden', 'ADJ'), ('termination', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('steadiness', 'NOUN'), ('in', 'ADP'), ('concealing', 'VERB'), ('its', 'PRON'), ('cause', 'NOUN'), ('\n', 'SPACE'), ('filled', 'VERB'), ('the', 'DET'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('raised', 'VERB'), ('the', 'DET'), ('wonder', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('days', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('wonderer', 'NOUN'), ('as', 'SCONJ'), ('every', 'DET'), ('\n', 'SPACE'), ('one', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('who', 'PRON'), ('takes', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('lively', 'ADJ'), ('interest', 'NOUN'), ('in', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('comings', 'NOUN'), ('and', 'CCONJ'), ('goings', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('their', 'PRON'), ('acquaintance', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('wondered', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('little', 'ADJ'), ('intermission', 'NOUN'), ('what', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('reason', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('sure', 'ADJ'), ('there', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('some', 'DET'), ('bad', 'ADJ'), ('news', 'NOUN'), ('and', 'CCONJ'), ('thought', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('every', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('distress', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('befallen', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('fixed', 'VERB'), ('determination', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('escape', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('all', 'PRON'), ('\n\n', 'SPACE'), ('Something', 'PRON'), ('very', 'ADV'), ('melancholy', 'ADJ'), ('must', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('see', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('face', 'NOUN'), ('\n', 'SPACE'), ('Poor', 'ADJ'), ('man', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('his', 'PRON'), ('circumstances', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('bad', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('estate', 'NOUN'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('was', 'AUX'), ('never', 'ADV'), ('reckoned', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('two', 'NUM'), ('thousand', 'NUM'), ('\n', 'SPACE'), ('a', 'DET'), ('year', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('brother', 'NOUN'), ('left', 'VERB'), ('everything', 'PRON'), ('sadly', 'ADV'), ('involved', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('think', 'VERB'), ('he', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('about', 'ADP'), ('money', 'NOUN'), ('matters', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('what', 'PRON'), ('else', 'ADV'), ('can', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), (' ', 'SPACE'), ('I', 'PRON'), ('wonder', 'VERB'), ('whether', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('anything', 'PRON'), ('to', 'PART'), ('know', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Perhaps', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('about', 'ADP'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('and', 'CCONJ'), ('by', 'ADP'), ('the', 'PRON'), ('bye', 'INTJ'), ('I', 'PRON'), ('dare', 'AUX'), ('say', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('he', 'PRON'), ('looked', 'VERB'), ('so', 'ADV'), ('conscious', 'ADJ'), ('when', 'SCONJ'), ('I', 'PRON'), ('mentioned', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('May', 'AUX'), ('be', 'AUX'), ('she', 'PRON'), ('is', 'AUX'), ('ill', 'ADJ'), ('in', 'ADP'), ('town', 'NOUN'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('more', 'ADV'), ('likely', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('notion', 'NOUN'), ('she', 'PRON'), ('is', 'AUX'), ('always', 'ADV'), ('rather', 'ADV'), ('sickly', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('lay', 'VERB'), ('any', 'DET'), ('wager', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('about', 'ADP'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('very', 'ADV'), ('likely', 'ADJ'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('distressed', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('circumstances', 'NOUN'), ('NOW', 'ADV'), ('for', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('prudent', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('must', 'AUX'), ('have', 'AUX'), ('cleared', 'VERB'), ('the', 'DET'), ('estate', 'NOUN'), ('by', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('wonder', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('May', 'AUX'), ('be', 'AUX'), ('his', 'PRON'), ('sister', 'NOUN'), ('is', 'AUX'), ('worse', 'ADJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('Avignon', 'PROPN'), ('and', 'CCONJ'), ('has', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('over', 'ADP'), (' ', 'SPACE'), ('His', 'PRON'), ('setting', 'NOUN'), ('off', 'ADP'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('hurry', 'NOUN'), ('seems', 'VERB'), ('very', 'ADV'), ('like', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Well', 'INTJ'), ('I', 'PRON'), ('wish', 'VERB'), ('him', 'PRON'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('trouble', 'NOUN'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('good', 'ADJ'), ('wife', 'NOUN'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('bargain', 'NOUN'), ('\n\n', 'SPACE'), ('So', 'ADV'), ('wondered', 'VERB'), ('so', 'ADV'), ('talked', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), (' ', 'SPACE'), ('Her', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('varying', 'VERB'), ('with', 'ADP'), ('every', 'DET'), ('fresh', 'ADJ'), ('conjecture', 'NOUN'), ('and', 'CCONJ'), ('all', 'DET'), ('seeming', 'VERB'), ('\n', 'SPACE'), ('equally', 'ADV'), ('probable', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('arose', 'VERB'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('though', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('\n', 'SPACE'), ('really', 'ADV'), ('interested', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('welfare', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('bestow', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('wonder', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('going', 'VERB'), ('so', 'ADV'), ('suddenly', 'ADV'), ('\n', 'SPACE'), ('away', 'ADV'), ('which', 'PRON'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('desirous', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('feeling', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('besides', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('circumstance', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('justify', 'VERB'), ('such', 'ADJ'), ('lasting', 'VERB'), ('amazement', 'NOUN'), ('or', 'CCONJ'), ('variety', 'NOUN'), ('of', 'ADP'), ('speculation', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('wonder', 'NOUN'), ('was', 'AUX'), ('otherwise', 'ADV'), ('disposed', 'VERB'), ('of', 'ADP'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('engrossed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('extraordinary', 'ADJ'), ('silence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('must', 'AUX'), ('know', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('peculiarly', 'ADV'), ('\n', 'SPACE'), ('interesting', 'ADJ'), ('to', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), (' ', 'SPACE'), ('As', 'SCONJ'), ('this', 'DET'), ('silence', 'NOUN'), ('continued', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('day', 'NOUN'), ('made', 'VERB'), ('it', 'PRON'), ('appear', 'VERB'), ('more', 'ADV'), ('strange', 'ADJ'), ('and', 'CCONJ'), ('more', 'ADV'), ('incompatible', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('disposition', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('openly', 'ADV'), ('\n', 'SPACE'), ('acknowledge', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('herself', 'PRON'), ('what', 'PRON'), ('their', 'PRON'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('declared', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('taken', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('imagine', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('easily', 'ADV'), ('conceive', 'VERB'), ('that', 'DET'), ('marriage', 'NOUN'), ('might', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('immediately', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('power', 'NOUN'), ('for', 'SCONJ'), ('though', 'SCONJ'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('independent', 'ADJ'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('believe', 'VERB'), ('him', 'PRON'), ('rich', 'ADJ'), ('\n', 'SPACE'), ('His', 'PRON'), ('estate', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('rated', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('at', 'ADP'), ('about', 'ADV'), ('six', 'NUM'), ('or', 'CCONJ'), ('seven', 'NUM'), ('\n', 'SPACE'), ('hundred', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('but', 'CCONJ'), ('he', 'PRON'), ('lived', 'VERB'), ('at', 'ADP'), ('an', 'DET'), ('expense', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('that', 'DET'), ('income', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('hardly', 'ADV'), ('be', 'AUX'), ('equal', 'ADJ'), ('and', 'CCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('himself', 'PRON'), ('often', 'ADV'), ('complained', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('poverty', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('for', 'ADP'), ('this', 'DET'), ('strange', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('secrecy', 'NOUN'), ('\n', 'SPACE'), ('maintained', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('relative', 'ADJ'), ('to', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('fact', 'NOUN'), ('concealed', 'VERB'), ('nothing', 'PRON'), ('at', 'ADP'), ('all', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('account', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('wholly', 'ADV'), ('contradictory', 'ADJ'), ('to', 'ADP'), ('their', 'PRON'), ('general', 'ADJ'), ('\n', 'SPACE'), ('opinions', 'NOUN'), ('and', 'CCONJ'), ('practice', 'NOUN'), ('that', 'SCONJ'), ('a', 'DET'), ('doubt', 'NOUN'), ('sometimes', 'ADV'), ('entered', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('mind', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('really', 'ADV'), ('engaged', 'VERB'), ('and', 'CCONJ'), ('this', 'DET'), ('doubt', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('prevent', 'VERB'), ('her', 'PRON'), ('making', 'VERB'), ('any', 'DET'), ('inquiry', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Nothing', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('expressive', 'ADJ'), ('of', 'ADP'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('than', 'ADP'), ('Willoughbys', 'PROPN'), ('behaviour', 'NOUN'), (' ', 'SPACE'), ('To', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('distinguishing', 'VERB'), ('tenderness', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('lovers', 'NOUN'), ('\n', 'SPACE'), ('heart', 'NOUN'), ('could', 'AUX'), ('give', 'VERB'), ('and', 'CCONJ'), ('to', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('affectionate', 'ADJ'), ('attention', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('son', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('brother', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('considered', 'VERB'), ('and', 'CCONJ'), ('loved', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('his', 'PRON'), ('home', 'NOUN'), ('\n', 'SPACE'), ('many', 'ADJ'), ('more', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('hours', 'NOUN'), ('were', 'AUX'), ('spent', 'VERB'), ('there', 'ADV'), ('than', 'ADP'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('no', 'DET'), ('general', 'ADJ'), ('engagement', 'NOUN'), ('collected', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('exercise', 'NOUN'), ('which', 'PRON'), ('called', 'VERB'), ('him', 'PRON'), ('out', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('almost', 'ADV'), ('certain', 'ADJ'), ('of', 'ADP'), ('ending', 'VERB'), ('there', 'ADV'), ('where', 'SCONJ'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('spent', 'VERB'), ('by', 'ADP'), ('himself', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('by', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('favourite', 'ADJ'), ('pointer', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('feet', 'NOUN'), ('\n\n', 'SPACE'), ('One', 'NUM'), ('evening', 'NOUN'), ('in', 'ADP'), ('particular', 'ADJ'), ('about', 'ADV'), ('a', 'PRON'), ('week', 'NOUN'), ('after', 'SCONJ'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('left', 'VERB'), ('the', 'DET'), ('country', 'NOUN'), ('his', 'PRON'), ('heart', 'NOUN'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'ADP'), ('usually', 'ADV'), ('open', 'ADJ'), ('to', 'ADP'), ('every', 'DET'), ('feeling', 'NOUN'), ('of', 'ADP'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('objects', 'NOUN'), ('around', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('happening', 'VERB'), ('to', 'PART'), ('mention', 'VERB'), ('her', 'PRON'), ('design', 'NOUN'), ('of', 'ADP'), ('improving', 'VERB'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('spring', 'NOUN'), ('he', 'PRON'), ('warmly', 'ADV'), ('opposed', 'VERB'), ('every', 'DET'), ('alteration', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('place', 'NOUN'), ('which', 'PRON'), ('affection', 'NOUN'), ('had', 'AUX'), ('established', 'VERB'), ('as', 'ADP'), ('perfect', 'ADJ'), ('with', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('he', 'PRON'), ('exclaimedImprove', 'VERB'), ('this', 'DET'), ('dear', 'ADJ'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('No', 'INTJ'), ('THAT', 'PRON'), ('I', 'PRON'), ('will', 'AUX'), ('never', 'ADV'), ('consent', 'VERB'), ('to', 'ADP'), (' ', 'SPACE'), ('Not', 'PART'), ('a', 'DET'), ('stone', 'NOUN'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('added', 'VERB'), ('to', 'ADP'), ('its', 'PRON'), ('walls', 'NOUN'), ('not', 'PART'), ('an', 'DET'), ('inch', 'NOUN'), ('to', 'ADP'), ('its', 'PRON'), ('size', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('my', 'PRON'), ('feelings', 'NOUN'), ('are', 'AUX'), ('regarded', 'VERB'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('alarmed', 'VERB'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('for', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('never', 'ADV'), ('have', 'VERB'), ('money', 'NOUN'), ('enough', 'ADJ'), ('to', 'PART'), ('attempt', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('heartily', 'ADV'), ('glad', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('he', 'PRON'), ('cried', 'VERB'), (' ', 'SPACE'), ('May', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('always', 'ADV'), ('be', 'AUX'), ('poor', 'ADJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('can', 'AUX'), ('employ', 'VERB'), ('her', 'PRON'), ('riches', 'NOUN'), ('no', 'PRON'), ('better', 'ADV'), ('\n\n', 'SPACE'), ('Thank', 'VERB'), ('you', 'PRON'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('assured', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('sacrifice', 'VERB'), ('one', 'NUM'), ('sentiment', 'NOUN'), ('of', 'ADP'), ('local', 'ADJ'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('yours', 'PRON'), ('or', 'CCONJ'), ('of', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), ('whom', 'PRON'), ('I', 'PRON'), ('loved', 'VERB'), ('for', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('improvements', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('Depend', 'VERB'), ('upon', 'SCONJ'), ('it', 'PRON'), ('that', 'SCONJ'), ('whatever', 'DET'), ('unemployed', 'ADJ'), ('\n', 'SPACE'), ('sum', 'NOUN'), ('may', 'AUX'), ('remain', 'VERB'), ('when', 'SCONJ'), ('I', 'PRON'), ('make', 'VERB'), ('up', 'ADP'), ('my', 'PRON'), ('accounts', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('spring', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('even', 'ADV'), ('rather', 'ADV'), ('lay', 'VERB'), ('it', 'PRON'), ('uselessly', 'ADV'), ('by', 'ADP'), ('than', 'ADP'), ('dispose', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('manner', 'NOUN'), ('so', 'ADV'), ('painful', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('are', 'AUX'), ('you', 'PRON'), ('really', 'ADV'), ('\n', 'SPACE'), ('so', 'ADV'), ('attached', 'ADJ'), ('to', 'ADP'), ('this', 'DET'), ('place', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('see', 'VERB'), ('no', 'DET'), ('defect', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('said', 'VERB'), ('he', 'PRON'), (' ', 'SPACE'), ('To', 'ADP'), ('me', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('faultless', 'ADJ'), (' ', 'SPACE'), ('Nay', 'VERB'), ('more', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('consider', 'VERB'), ('it', 'PRON'), ('as', 'ADP'), ('the', 'DET'), ('only', 'ADJ'), ('form', 'NOUN'), ('of', 'ADP'), ('building', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('attainable', 'ADJ'), ('and', 'CCONJ'), ('were', 'AUX'), ('I', 'PRON'), ('rich', 'ADJ'), ('enough', 'ADV'), ('I', 'PRON'), ('would', 'AUX'), ('instantly', 'ADV'), ('pull', 'VERB'), ('\n', 'SPACE'), ('Combe', 'PROPN'), ('down', 'ADP'), ('and', 'CCONJ'), ('build', 'VERB'), ('it', 'PRON'), ('up', 'ADP'), ('again', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('exact', 'ADJ'), ('plan', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('cottage', 'NOUN'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('dark', 'ADJ'), ('narrow', 'ADJ'), ('stairs', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('kitchen', 'NOUN'), ('that', 'PRON'), ('smokes', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('cried', 'VERB'), ('he', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('eager', 'ADJ'), ('tone', 'NOUN'), ('with', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('belonging', 'VERB'), ('to', 'AUX'), ('itin', 'VERB'), ('no', 'DET'), ('one', 'NUM'), ('convenience', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('INconvenience', 'PROPN'), ('about', 'ADP'), ('it', 'PRON'), ('should', 'AUX'), ('the', 'DET'), ('least', 'ADJ'), ('variation', 'NOUN'), ('\n', 'SPACE'), ('be', 'VERB'), ('perceptible', 'ADJ'), (' ', 'SPACE'), ('Then', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('only', 'ADV'), ('under', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('roof', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('perhaps', 'ADV'), ('be', 'AUX'), ('as', 'ADV'), ('happy', 'ADJ'), ('at', 'ADP'), ('Combe', 'PROPN'), ('as', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('flatter', 'VERB'), ('myself', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('even', 'ADV'), ('under', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('disadvantage', 'NOUN'), ('of', 'ADP'), ('better', 'ADJ'), ('rooms', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('broader', 'ADJ'), ('staircase', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('will', 'AUX'), ('hereafter', 'ADV'), ('find', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), ('as', 'ADV'), ('faultless', 'ADJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('now', 'ADV'), ('do', 'VERB'), ('this', 'PRON'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('certainly', 'ADV'), ('are', 'AUX'), ('circumstances', 'NOUN'), ('said', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('which', 'PRON'), ('might', 'AUX'), ('greatly', 'ADV'), ('endear', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('me', 'PRON'), ('but', 'CCONJ'), ('this', 'DET'), ('place', 'NOUN'), ('will', 'AUX'), ('\n', 'SPACE'), ('always', 'ADV'), ('have', 'VERB'), ('one', 'NUM'), ('claim', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('affection', 'NOUN'), ('which', 'PRON'), ('no', 'DET'), ('other', 'ADJ'), ('can', 'AUX'), ('\n', 'SPACE'), ('possibly', 'ADV'), ('share', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('looked', 'VERB'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('at', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('whose', 'DET'), ('fine', 'ADJ'), ('eyes', 'NOUN'), ('were', 'AUX'), ('fixed', 'VERB'), ('so', 'ADV'), ('expressively', 'ADV'), ('on', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('plainly', 'ADV'), ('denoted', 'VERB'), ('how', 'SCONJ'), ('well', 'ADV'), ('she', 'PRON'), ('understood', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('often', 'ADV'), ('did', 'AUX'), ('I', 'PRON'), ('wish', 'VERB'), ('added', 'VERB'), ('he', 'PRON'), ('when', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('Allenham', 'PROPN'), ('this', 'DET'), ('time', 'NOUN'), ('twelvemonth', 'NOUN'), ('that', 'SCONJ'), ('Barton', 'PROPN'), ('cottage', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('inhabited', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('passed', 'VERB'), ('within', 'ADP'), ('view', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('without', 'ADP'), ('admiring', 'VERB'), ('\n', 'SPACE'), ('its', 'PRON'), ('situation', 'NOUN'), ('and', 'CCONJ'), ('grieving', 'VERB'), ('that', 'SCONJ'), ('no', 'DET'), ('one', 'PRON'), ('should', 'AUX'), ('live', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('little', 'ADJ'), ('did', 'AUX'), ('I', 'PRON'), ('then', 'ADV'), ('think', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('very', 'ADV'), ('first', 'ADJ'), ('news', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('hear', 'VERB'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('when', 'SCONJ'), ('I', 'PRON'), ('next', 'VERB'), ('came', 'VERB'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('country', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('that', 'SCONJ'), ('Barton', 'PROPN'), ('cottage', 'NOUN'), ('was', 'AUX'), ('taken', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('felt', 'VERB'), ('an', 'DET'), ('immediate', 'ADJ'), ('satisfaction', 'NOUN'), ('and', 'CCONJ'), ('interest', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('event', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('prescience', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('happiness', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('experience', 'VERB'), ('from', 'ADP'), ('it', 'PRON'), ('can', 'AUX'), ('account', 'VERB'), ('for', 'ADP'), (' ', 'SPACE'), ('Must', 'AUX'), ('it', 'PRON'), ('not', 'PART'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('so', 'ADV'), ('Marianne', 'PROPN'), ('speaking', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('lowered', 'ADJ'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('Then', 'ADV'), ('continuing', 'VERB'), ('his', 'PRON'), ('former', 'ADJ'), ('tone', 'NOUN'), ('he', 'PRON'), ('said', 'VERB'), ('And', 'CCONJ'), ('yet', 'ADV'), ('this', 'DET'), ('\n', 'SPACE'), ('house', 'NOUN'), ('you', 'PRON'), ('would', 'AUX'), ('spoil', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('You', 'PRON'), ('would', 'AUX'), ('rob', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('its', 'PRON'), ('simplicity', 'NOUN'), ('by', 'ADP'), ('imaginary', 'ADJ'), ('improvement', 'NOUN'), ('and', 'CCONJ'), ('this', 'DET'), ('dear', 'ADJ'), ('\n', 'SPACE'), ('parlour', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('our', 'PRON'), ('acquaintance', 'NOUN'), ('first', 'ADV'), ('began', 'VERB'), ('and', 'CCONJ'), ('in', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('many', 'ADJ'), ('happy', 'ADJ'), ('hours', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('since', 'SCONJ'), ('spent', 'VERB'), ('by', 'ADP'), ('us', 'PRON'), ('together', 'ADV'), ('\n', 'SPACE'), ('you', 'PRON'), ('would', 'AUX'), ('degrade', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('condition', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('common', 'ADJ'), ('entrance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('eager', 'ADJ'), ('to', 'PART'), ('pass', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('has', 'AUX'), ('hitherto', 'NOUN'), ('contained', 'VERB'), ('within', 'ADP'), ('itself', 'PRON'), ('more', 'ADV'), ('real', 'ADJ'), ('\n', 'SPACE'), ('accommodation', 'NOUN'), ('and', 'CCONJ'), ('comfort', 'NOUN'), ('than', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('apartment', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('handsomest', 'ADJ'), ('dimensions', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('could', 'AUX'), ('possibly', 'ADV'), ('afford', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('again', 'ADV'), ('assured', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('no', 'DET'), ('alteration', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('attempted', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('a', 'DET'), ('good', 'ADJ'), ('woman', 'NOUN'), ('he', 'PRON'), ('warmly', 'ADV'), ('replied', 'VERB'), ('\n', 'SPACE'), ('Your', 'PRON'), ('promise', 'NOUN'), ('makes', 'VERB'), ('me', 'PRON'), ('easy', 'ADJ'), (' ', 'SPACE'), ('Extend', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('farther', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('me', 'PRON'), ('happy', 'ADJ'), (' ', 'SPACE'), ('Tell', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('not', 'PART'), ('only', 'ADV'), ('your', 'PRON'), ('\n', 'SPACE'), ('house', 'NOUN'), ('will', 'AUX'), ('remain', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('ever', 'ADV'), ('find', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('and', 'CCONJ'), ('yours', 'NOUN'), ('as', 'ADV'), ('unchanged', 'ADJ'), ('as', 'ADP'), ('your', 'PRON'), ('dwelling', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('always', 'ADV'), ('consider', 'VERB'), ('me', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('kindness', 'NOUN'), ('which', 'PRON'), ('has', 'AUX'), ('made', 'VERB'), ('\n', 'SPACE'), ('everything', 'PRON'), ('belonging', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('so', 'ADV'), ('dear', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('The', 'DET'), ('promise', 'NOUN'), ('was', 'AUX'), ('readily', 'ADV'), ('given', 'VERB'), ('and', 'CCONJ'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('during', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('declared', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('once', 'ADV'), ('his', 'PRON'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('happiness', 'NOUN'), ('\n\n', 'SPACE'), ('Shall', 'AUX'), ('we', 'PRON'), ('see', 'VERB'), ('you', 'PRON'), ('tomorrow', 'NOUN'), ('to', 'ADP'), ('dinner', 'NOUN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('leaving', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('come', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('morning', 'NOUN'), ('for', 'SCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('walk', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('to', 'PART'), ('call', 'VERB'), ('on', 'ADP'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('engaged', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('with', 'ADP'), ('them', 'PRON'), ('by', 'ADP'), ('four', 'NUM'), ('oclock', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('15', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('visit', 'NOUN'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('took', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('and', 'CCONJ'), ('two', 'NUM'), ('of', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('went', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('excused', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('being', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('under', 'ADP'), ('some', 'DET'), ('trifling', 'NOUN'), ('pretext', 'NOUN'), ('of', 'ADP'), ('employment', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('concluded', 'VERB'), ('that', 'SCONJ'), ('a', 'DET'), ('promise', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('made', 'VERB'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('the', 'DET'), ('night', 'NOUN'), ('before', 'ADP'), ('of', 'ADP'), ('calling', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('while', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('absent', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('perfectly', 'ADV'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('remaining', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('their', 'PRON'), ('return', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('they', 'PRON'), ('found', 'VERB'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('curricle', 'NOUN'), ('and', 'CCONJ'), ('servant', 'NOUN'), ('in', 'ADP'), ('waiting', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('conjecture', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('just', 'ADV'), (' ', 'SPACE'), ('So', 'ADV'), ('far', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('all', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('foreseen', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('on', 'ADP'), ('entering', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('she', 'PRON'), ('beheld', 'VERB'), ('what', 'PRON'), ('no', 'DET'), ('foresight', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('taught', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('expect', 'VERB'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('no', 'ADV'), ('sooner', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('passage', 'NOUN'), ('than', 'SCONJ'), ('Marianne', 'PROPN'), ('came', 'VERB'), ('hastily', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('parlour', 'NOUN'), ('\n', 'SPACE'), ('apparently', 'ADV'), ('in', 'ADP'), ('violent', 'ADJ'), ('affliction', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('handkerchief', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('and', 'CCONJ'), ('without', 'ADP'), ('noticing', 'VERB'), ('them', 'PRON'), ('ran', 'VERB'), ('up', 'ADP'), ('stairs', 'NOUN'), ('\n', 'SPACE'), ('Surprised', 'PROPN'), ('and', 'CCONJ'), ('alarmed', 'VERB'), ('they', 'PRON'), ('proceeded', 'VERB'), ('directly', 'ADV'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('quitted', 'VERB'), ('where', 'SCONJ'), ('they', 'PRON'), ('found', 'VERB'), ('only', 'ADV'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('was', 'AUX'), ('leaning', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('mantelpiece', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('back', 'NOUN'), ('\n', 'SPACE'), ('towards', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('turned', 'VERB'), ('round', 'ADV'), ('on', 'ADP'), ('their', 'PRON'), ('coming', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('countenance', 'NOUN'), ('shewed', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('strongly', 'ADV'), ('partook', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('emotion', 'NOUN'), ('which', 'PRON'), ('overpowered', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('anything', 'PRON'), ('the', 'DET'), ('matter', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('enteredis', 'VERB'), ('she', 'PRON'), ('ill', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('not', 'PART'), ('he', 'PRON'), ('replied', 'VERB'), ('trying', 'VERB'), ('to', 'PART'), ('look', 'VERB'), ('cheerful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('forced', 'VERB'), ('smile', 'NOUN'), ('presently', 'ADV'), ('added', 'VERB'), ('It', 'PRON'), ('is', 'AUX'), ('I', 'PRON'), ('who', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('rather', 'ADV'), ('expect', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('illfor', 'ADP'), ('I', 'PRON'), ('am', 'AUX'), ('now', 'ADV'), ('suffering', 'VERB'), ('under', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('very', 'ADV'), ('heavy', 'ADJ'), ('disappointment', 'NOUN'), ('\n\n', 'SPACE'), ('Disappointment', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('for', 'ADP'), ('I', 'PRON'), ('am', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('keep', 'VERB'), ('my', 'PRON'), ('engagement', 'NOUN'), ('with', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('has', 'AUX'), ('this', 'DET'), ('morning', 'NOUN'), ('exercised', 'VERB'), ('the', 'DET'), ('privilege', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('riches', 'NOUN'), ('upon', 'SCONJ'), ('a', 'DET'), ('poor', 'ADJ'), ('dependent', 'ADJ'), ('cousin', 'NOUN'), ('by', 'ADP'), ('sending', 'VERB'), ('me', 'PRON'), ('on', 'ADP'), ('\n', 'SPACE'), ('business', 'NOUN'), ('to', 'ADP'), ('London', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('just', 'ADV'), ('received', 'VERB'), ('my', 'PRON'), ('dispatches', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('taken', 'VERB'), ('my', 'PRON'), ('farewell', 'NOUN'), ('of', 'ADP'), ('Allenham', 'PROPN'), ('and', 'CCONJ'), ('by', 'ADP'), ('way', 'NOUN'), ('of', 'ADP'), ('exhilaration', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('now', 'ADV'), ('come', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('my', 'PRON'), ('farewell', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('To', 'ADP'), ('Londonand', 'PROPN'), ('are', 'AUX'), ('you', 'PRON'), ('going', 'VERB'), ('this', 'DET'), ('morning', 'NOUN'), ('\n\n', 'SPACE'), ('Almost', 'ADV'), ('this', 'DET'), ('moment', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('unfortunate', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('obligedand', 'VERB'), ('her', 'PRON'), ('business', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('detain', 'VERB'), ('you', 'PRON'), ('from', 'ADP'), ('\n', 'SPACE'), ('us', 'PRON'), ('long', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('coloured', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('replied', 'VERB'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('kind', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('no', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('returning', 'VERB'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('My', 'PRON'), ('visits', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('are', 'AUX'), ('never', 'ADV'), ('repeated', 'VERB'), ('within', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('twelvemonth', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('is', 'AUX'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('your', 'PRON'), ('only', 'ADJ'), ('friend', 'NOUN'), (' ', 'SPACE'), ('Is', 'AUX'), ('Allenham', 'PROPN'), ('the', 'DET'), ('only', 'ADJ'), ('\n', 'SPACE'), ('house', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('welcome', 'ADJ'), ('\n', 'SPACE'), ('For', 'ADP'), ('shame', 'NOUN'), ('Willoughby', 'PROPN'), ('can', 'AUX'), ('you', 'PRON'), ('wait', 'VERB'), ('for', 'ADP'), ('an', 'DET'), ('invitation', 'NOUN'), ('here', 'ADV'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('colour', 'NOUN'), ('increased', 'VERB'), ('and', 'CCONJ'), ('with', 'ADP'), ('his', 'PRON'), ('eyes', 'NOUN'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('ground', 'NOUN'), ('he', 'PRON'), ('only', 'ADV'), ('replied', 'VERB'), ('You', 'PRON'), ('are', 'AUX'), ('too', 'ADV'), ('good', 'ADJ'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('looked', 'VERB'), ('at', 'ADP'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('felt', 'VERB'), ('equal', 'ADJ'), ('amazement', 'NOUN'), (' ', 'SPACE'), ('For', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('every', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('silent', 'ADJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('first', 'ADV'), ('spoke', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('only', 'ADV'), ('to', 'PART'), ('add', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('Willoughby', 'PROPN'), ('that', 'SCONJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), ('cottage', 'NOUN'), ('you', 'PRON'), ('will', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('welcome', 'ADJ'), ('for', 'SCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('press', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('return', 'VERB'), ('here', 'ADV'), ('immediately', 'ADV'), ('because', 'SCONJ'), ('you', 'PRON'), ('only', 'ADV'), ('\n', 'SPACE'), ('can', 'AUX'), ('judge', 'VERB'), ('how', 'SCONJ'), ('far', 'ADV'), ('THAT', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('pleasing', 'ADJ'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('on', 'ADP'), ('this', 'DET'), ('head', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('no', 'PRON'), ('more', 'ADV'), ('disposed', 'ADJ'), ('to', 'PART'), ('question', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('judgment', 'NOUN'), ('than', 'SCONJ'), ('to', 'PART'), ('doubt', 'VERB'), ('your', 'PRON'), ('inclination', 'NOUN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('engagements', 'NOUN'), ('at', 'ADP'), ('present', 'ADJ'), ('replied', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('confusedly', 'ADV'), ('are', 'AUX'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('naturethatI', 'PROPN'), ('dare', 'AUX'), ('not', 'PART'), ('flatter', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('stopt', 'VERB'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('too', 'ADV'), ('much', 'ADV'), ('astonished', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('speak', 'VERB'), ('and', 'CCONJ'), ('another', 'DET'), ('pause', 'NOUN'), ('succeeded', 'VERB'), (' ', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('broken', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('who', 'PRON'), ('said', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('faint', 'ADJ'), ('smile', 'NOUN'), ('It', 'PRON'), ('is', 'AUX'), ('folly', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('linger', 'VERB'), ('in', 'ADP'), ('this', 'DET'), ('manner', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('torment', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('any', 'ADV'), ('longer', 'ADV'), ('by', 'ADP'), ('remaining', 'VERB'), ('among', 'ADP'), ('friends', 'NOUN'), ('whose', 'DET'), ('society', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('impossible', 'ADJ'), ('for', 'ADP'), ('me', 'PRON'), ('now', 'ADV'), ('to', 'PART'), ('enjoy', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('then', 'ADV'), ('hastily', 'ADV'), ('took', 'VERB'), ('leave', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('and', 'CCONJ'), ('left', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('saw', 'VERB'), ('him', 'PRON'), ('step', 'VERB'), ('into', 'ADP'), ('his', 'PRON'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('minute', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('sight', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('felt', 'VERB'), ('too', 'ADV'), ('much', 'ADV'), ('for', 'ADP'), ('speech', 'NOUN'), ('and', 'CCONJ'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('quitted', 'VERB'), ('the', 'DET'), ('parlour', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('way', 'NOUN'), ('in', 'ADP'), ('solitude', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('alarm', 'NOUN'), ('which', 'PRON'), ('this', 'DET'), ('sudden', 'ADJ'), ('departure', 'NOUN'), ('occasioned', 'VERB'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('uneasiness', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('least', 'ADJ'), ('equal', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('passed', 'VERB'), ('with', 'ADP'), ('anxiety', 'NOUN'), ('and', 'CCONJ'), ('distrust', 'NOUN'), ('\n', 'SPACE'), ('Willoughbys', 'PROPN'), ('behaviour', 'NOUN'), ('in', 'ADP'), ('taking', 'VERB'), ('leave', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('his', 'PRON'), ('\n', 'SPACE'), ('embarrassment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('affectation', 'NOUN'), ('of', 'ADP'), ('cheerfulness', 'NOUN'), ('and', 'CCONJ'), ('above', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('\n', 'SPACE'), ('unwillingness', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('accept', 'VERB'), ('her', 'PRON'), ('mothers', 'NOUN'), ('invitation', 'VERB'), ('a', 'DET'), ('backwardness', 'NOUN'), ('so', 'ADV'), ('unlike', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('lover', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('unlike', 'ADP'), ('himself', 'PRON'), ('greatly', 'ADV'), ('disturbed', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('One', 'NUM'), ('moment', 'NOUN'), ('she', 'PRON'), ('feared', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('no', 'DET'), ('serious', 'ADJ'), ('design', 'NOUN'), ('had', 'AUX'), ('ever', 'ADV'), ('been', 'AUX'), ('formed', 'VERB'), ('on', 'ADP'), ('his', 'PRON'), ('side', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('next', 'ADJ'), ('that', 'SCONJ'), ('some', 'DET'), ('unfortunate', 'ADJ'), ('quarrel', 'NOUN'), ('had', 'AUX'), ('taken', 'VERB'), ('place', 'NOUN'), ('between', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('sisterthe', 'DET'), ('distress', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('quitted', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('a', 'DET'), ('serious', 'ADJ'), ('quarrel', 'NOUN'), ('could', 'AUX'), ('most', 'ADV'), ('reasonably', 'ADV'), ('account', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('though', 'ADV'), ('when', 'SCONJ'), ('she', 'PRON'), ('considered', 'VERB'), ('what', 'PRON'), ('Mariannes', 'NOUN'), ('love', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('quarrel', 'NOUN'), ('seemed', 'VERB'), ('almost', 'ADV'), ('impossible', 'ADJ'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('whatever', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('particulars', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('separation', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('sisters', 'NOUN'), ('affliction', 'NOUN'), ('was', 'AUX'), ('indubitable', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('thought', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('tenderest', 'ADJ'), ('compassion', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('violent', 'ADJ'), ('sorrow', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('all', 'DET'), ('probability', 'NOUN'), ('not', 'PART'), ('merely', 'ADV'), ('giving', 'VERB'), ('\n', 'SPACE'), ('way', 'NOUN'), ('to', 'ADP'), ('as', 'ADP'), ('a', 'DET'), ('relief', 'NOUN'), ('but', 'CCONJ'), ('feeding', 'NOUN'), ('and', 'CCONJ'), ('encouraging', 'ADJ'), ('as', 'ADP'), ('a', 'DET'), ('duty', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('about', 'ADP'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('her', 'PRON'), ('mother', 'NOUN'), ('returned', 'VERB'), ('and', 'CCONJ'), ('though', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('red', 'VERB'), ('her', 'PRON'), ('countenance', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('uncheerful', 'ADJ'), ('\n\n', 'SPACE'), ('Our', 'PRON'), ('dear', 'ADJ'), ('Willoughby', 'PROPN'), ('is', 'AUX'), ('now', 'ADV'), ('some', 'DET'), ('miles', 'NOUN'), ('from', 'ADP'), ('Barton', 'PROPN'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('work', 'VERB'), ('and', 'CCONJ'), ('with', 'ADP'), ('how', 'SCONJ'), ('heavy', 'ADJ'), ('a', 'DET'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('does', 'AUX'), ('he', 'PRON'), ('travel', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('all', 'ADV'), ('very', 'ADV'), ('strange', 'ADJ'), (' ', 'SPACE'), ('So', 'ADV'), ('suddenly', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), ('It', 'PRON'), ('\n', 'SPACE'), ('seems', 'VERB'), ('but', 'CCONJ'), ('the', 'DET'), ('work', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('last', 'ADJ'), ('night', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('with', 'ADP'), ('us', 'PRON'), ('so', 'ADV'), ('happy', 'ADJ'), ('so', 'ADV'), ('cheerful', 'ADJ'), ('so', 'ADV'), ('affectionate', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('now', 'ADV'), ('\n', 'SPACE'), ('after', 'ADP'), ('only', 'ADV'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('noticeGone', 'INTJ'), ('too', 'ADV'), ('without', 'ADP'), ('intending', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('returnSomething', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('what', 'PRON'), ('be', 'AUX'), ('owned', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('happened', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('behave', 'VERB'), ('\n', 'SPACE'), ('like', 'ADP'), ('himself', 'PRON'), (' ', 'SPACE'), ('YOU', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('seen', 'VERB'), ('the', 'DET'), ('difference', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('I', 'PRON'), ('\n', 'SPACE'), ('What', 'PRON'), ('can', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), (' ', 'SPACE'), ('Can', 'AUX'), ('they', 'PRON'), ('have', 'AUX'), ('quarrelled', 'VERB'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('else', 'ADV'), ('should', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('shewn', 'VERB'), ('such', 'ADJ'), ('unwillingness', 'NOUN'), ('to', 'PART'), ('accept', 'VERB'), ('your', 'PRON'), ('invitation', 'NOUN'), ('here', 'ADV'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('inclination', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('wanted', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('plainly', 'ADV'), ('see', 'VERB'), ('THAT', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('accepting', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('thought', 'VERB'), ('it', 'PRON'), ('all', 'ADV'), ('over', 'ADV'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('perfectly', 'ADV'), ('account', 'VERB'), ('for', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('strange', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('to', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Can', 'AUX'), ('you', 'PRON'), ('indeed', 'ADV'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('I', 'PRON'), ('have', 'AUX'), ('explained', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('myself', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('satisfactory', 'ADJ'), ('waybut', 'NOUN'), ('you', 'PRON'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('love', 'VERB'), ('to', 'PART'), ('doubt', 'VERB'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('you', 'PRON'), ('canit', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('satisfy', 'VERB'), ('YOU', 'PRON'), ('I', 'PRON'), ('know', 'VERB'), ('but', 'CCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('shall', 'AUX'), ('not', 'PART'), ('talk', 'VERB'), ('ME', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('my', 'PRON'), ('trust', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('persuaded', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('suspects', 'VERB'), ('his', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('disapproves', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('perhaps', 'ADV'), ('because', 'SCONJ'), ('she', 'PRON'), ('has', 'VERB'), ('other', 'ADJ'), ('views', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('that', 'DET'), ('account', 'NOUN'), ('is', 'AUX'), ('eager', 'ADJ'), ('to', 'PART'), ('get', 'VERB'), ('him', 'PRON'), ('away', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('the', 'DET'), ('business', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('sends', 'VERB'), ('him', 'PRON'), ('off', 'ADP'), ('to', 'PART'), ('transact', 'VERB'), ('\n', 'SPACE'), ('is', 'AUX'), ('invented', 'VERB'), ('as', 'ADP'), ('an', 'DET'), ('excuse', 'NOUN'), ('to', 'PART'), ('dismiss', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('believe', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('happened', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('moreover', 'ADV'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('DOES', 'AUX'), ('disapprove', 'VERB'), ('the', 'DET'), ('connection', 'NOUN'), ('he', 'PRON'), ('dares', 'VERB'), ('not', 'PART'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('present', 'ADJ'), ('confess', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('his', 'PRON'), ('engagement', 'NOUN'), ('with', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('feels', 'VERB'), ('himself', 'PRON'), ('obliged', 'VERB'), ('from', 'ADP'), ('his', 'PRON'), ('dependent', 'ADJ'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('into', 'ADP'), ('her', 'PRON'), ('schemes', 'NOUN'), ('and', 'CCONJ'), ('absent', 'VERB'), ('himself', 'PRON'), ('from', 'ADP'), ('\n', 'SPACE'), ('Devonshire', 'PROPN'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('tell', 'VERB'), ('me', 'PRON'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('this', 'DET'), ('may', 'AUX'), ('or', 'CCONJ'), ('may', 'AUX'), ('NOT', 'PART'), ('have', 'AUX'), ('happened', 'VERB'), ('but', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('listen', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('no', 'DET'), ('cavil', 'NOUN'), ('unless', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('point', 'VERB'), ('out', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('method', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('understanding', 'VERB'), ('the', 'DET'), ('affair', 'NOUN'), ('as', 'ADP'), ('satisfactory', 'ADJ'), ('at', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('now', 'ADV'), ('Elinor', 'PROPN'), ('what', 'PRON'), ('have', 'AUX'), ('you', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('Nothing', 'PRON'), ('for', 'ADP'), ('you', 'PRON'), ('have', 'AUX'), ('anticipated', 'VERB'), ('my', 'PRON'), ('answer', 'NOUN'), ('\n\n', 'SPACE'), ('Then', 'ADV'), ('you', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('told', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('it', 'PRON'), ('might', 'AUX'), ('or', 'CCONJ'), ('might', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('have', 'AUX'), ('happened', 'VERB'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('Elinor', 'PROPN'), ('how', 'SCONJ'), ('incomprehensible', 'ADJ'), ('are', 'AUX'), ('your', 'PRON'), ('\n', 'SPACE'), ('feelings', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('had', 'AUX'), ('rather', 'ADV'), ('take', 'VERB'), ('evil', 'NOUN'), ('upon', 'SCONJ'), ('credit', 'NOUN'), ('than', 'ADP'), ('good', 'ADJ'), ('\n', 'SPACE'), ('You', 'PRON'), ('had', 'AUX'), ('rather', 'ADV'), ('look', 'VERB'), ('out', 'ADP'), ('for', 'ADP'), ('misery', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('guilt', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('poor', 'ADJ'), ('Willoughby', 'PROPN'), ('than', 'ADP'), ('an', 'DET'), ('apology', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('resolved', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('him', 'PRON'), ('blameable', 'ADJ'), ('because', 'SCONJ'), ('he', 'PRON'), ('took', 'VERB'), ('\n', 'SPACE'), ('leave', 'NOUN'), ('of', 'ADP'), ('us', 'PRON'), ('with', 'ADP'), ('less', 'ADJ'), ('affection', 'NOUN'), ('than', 'ADP'), ('his', 'PRON'), ('usual', 'ADJ'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('has', 'AUX'), ('shewn', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('is', 'AUX'), ('no', 'DET'), ('allowance', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('made', 'VERB'), ('for', 'ADP'), ('inadvertence', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('for', 'ADP'), ('spirits', 'NOUN'), ('depressed', 'VERB'), ('by', 'ADP'), ('recent', 'ADJ'), ('disappointment', 'NOUN'), (' ', 'SPACE'), ('Are', 'AUX'), ('\n', 'SPACE'), ('no', 'DET'), ('probabilities', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('accepted', 'VERB'), ('merely', 'ADV'), ('because', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('not', 'PART'), ('certainties', 'NOUN'), (' ', 'SPACE'), ('Is', 'AUX'), ('nothing', 'PRON'), ('due', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('man', 'NOUN'), ('whom', 'PRON'), ('we', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('all', 'DET'), ('such', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('love', 'VERB'), ('and', 'CCONJ'), ('no', 'DET'), ('reason', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('ill', 'ADJ'), ('of', 'ADP'), (' ', 'SPACE'), ('To', 'ADP'), ('the', 'DET'), ('possibility', 'NOUN'), ('of', 'ADP'), ('motives', 'NOUN'), ('unanswerable', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('themselves', 'PRON'), ('though', 'ADV'), ('unavoidably', 'ADV'), ('secret', 'ADJ'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('\n', 'SPACE'), ('after', 'ADV'), ('all', 'PRON'), ('what', 'PRON'), ('is', 'AUX'), ('it', 'PRON'), ('you', 'PRON'), ('suspect', 'VERB'), ('him', 'PRON'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('tell', 'VERB'), ('myself', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('something', 'PRON'), ('unpleasant', 'ADJ'), ('is', 'AUX'), ('the', 'DET'), ('inevitable', 'ADJ'), ('consequence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('alteration', 'NOUN'), ('as', 'SCONJ'), ('we', 'PRON'), ('just', 'ADV'), ('witnessed', 'VERB'), ('in', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('great', 'ADJ'), ('truth', 'NOUN'), ('however', 'ADV'), ('in', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('have', 'AUX'), ('now', 'ADV'), ('urged', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('allowances', 'NOUN'), ('which', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('made', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('my', 'PRON'), ('wish', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('candid', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('judgment', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('may', 'AUX'), ('undoubtedly', 'ADV'), ('have', 'VERB'), ('very', 'ADV'), ('sufficient', 'ADJ'), ('\n', 'SPACE'), ('reasons', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('conduct', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('hope', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('like', 'ADP'), ('Willoughby', 'PROPN'), ('to', 'PART'), ('acknowledge', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), (' ', 'SPACE'), ('Secrecy', 'PROPN'), ('may', 'AUX'), ('be', 'AUX'), ('advisable', 'ADJ'), ('but', 'CCONJ'), ('still', 'ADV'), ('I', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('wondering', 'VERB'), ('at', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('practiced', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('blame', 'VERB'), ('him', 'PRON'), ('however', 'ADV'), ('for', 'ADP'), ('departing', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('character', 'NOUN'), ('where', 'SCONJ'), ('the', 'DET'), ('deviation', 'NOUN'), ('is', 'AUX'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('really', 'ADV'), ('do', 'AUX'), ('admit', 'VERB'), ('the', 'DET'), ('justice', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('defenceI', 'PROPN'), ('am', 'AUX'), ('happyand', 'PROPN'), ('he', 'PRON'), ('is', 'AUX'), ('acquitted', 'VERB'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('entirely', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('proper', 'ADJ'), ('to', 'PART'), ('conceal', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('engagement', 'NOUN'), ('if', 'SCONJ'), ('they', 'PRON'), ('ARE', 'AUX'), ('engaged', 'VERB'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('that', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('case', 'NOUN'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('highly', 'ADV'), ('expedient', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('Willoughby', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('but', 'CCONJ'), ('little', 'ADJ'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('no', 'DET'), ('excuse', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('concealing', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('us', 'PRON'), ('\n\n', 'SPACE'), ('Concealing', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('us', 'PRON'), ('my', 'PRON'), ('dear', 'ADJ'), ('child', 'NOUN'), ('do', 'AUX'), ('you', 'PRON'), ('accuse', 'VERB'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('of', 'ADP'), ('concealment', 'NOUN'), ('This', 'PRON'), ('is', 'AUX'), ('strange', 'ADJ'), ('\n', 'SPACE'), ('indeed', 'ADV'), ('when', 'SCONJ'), ('your', 'PRON'), ('eyes', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('reproaching', 'VERB'), ('them', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('incautiousness', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('want', 'VERB'), ('no', 'DET'), ('proof', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('affection', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('of', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('I', 'PRON'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('perfectly', 'ADV'), ('satisfied', 'ADJ'), ('of', 'ADP'), ('both', 'PRON'), ('\n\n', 'SPACE'), ('Yet', 'CCONJ'), ('not', 'PART'), ('a', 'DET'), ('syllable', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('said', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('by', 'ADP'), ('either', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('wanted', 'VERB'), ('syllables', 'NOUN'), ('where', 'SCONJ'), ('actions', 'NOUN'), ('have', 'AUX'), ('\n', 'SPACE'), ('spoken', 'VERB'), ('so', 'ADV'), ('plainly', 'ADV'), (' ', 'SPACE'), ('Has', 'VERB'), ('not', 'PART'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('all', 'PRON'), ('of', 'ADP'), ('us', 'PRON'), ('for', 'ADP'), ('at', 'ADP'), ('least', 'ADJ'), ('the', 'DET'), ('last', 'ADJ'), ('fortnight', 'NOUN'), ('\n', 'SPACE'), ('declared', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('loved', 'VERB'), ('and', 'CCONJ'), ('considered', 'VERB'), ('her', 'PRON'), ('as', 'ADP'), ('his', 'PRON'), ('future', 'ADJ'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('felt', 'VERB'), ('for', 'ADP'), ('us', 'PRON'), ('the', 'DET'), ('attachment', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('nearest', 'ADJ'), ('\n', 'SPACE'), ('relation', 'NOUN'), (' ', 'SPACE'), ('Have', 'AUX'), ('we', 'PRON'), ('not', 'PART'), ('perfectly', 'ADV'), ('understood', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('Has', 'AUX'), ('not', 'PART'), ('my', 'PRON'), ('consent', 'NOUN'), ('been', 'AUX'), ('daily', 'ADV'), ('asked', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('looks', 'NOUN'), ('his', 'PRON'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('attentive', 'ADJ'), ('and', 'CCONJ'), ('affectionate', 'VERB'), ('respect', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('it', 'PRON'), ('possible', 'ADJ'), ('to', 'PART'), ('doubt', 'VERB'), ('their', 'PRON'), ('engagement', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('could', 'AUX'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('thought', 'NOUN'), ('occur', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('How', 'SCONJ'), ('is', 'AUX'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('persuaded', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('love', 'NOUN'), ('should', 'AUX'), ('leave', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('leave', 'VERB'), ('her', 'PRON'), ('perhaps', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('months', 'NOUN'), ('without', 'ADP'), ('telling', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('affectionthat', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('should', 'AUX'), ('part', 'VERB'), ('without', 'ADP'), ('a', 'DET'), ('mutual', 'ADJ'), ('exchange', 'NOUN'), ('of', 'ADP'), ('confidence', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('confess', 'VERB'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('every', 'DET'), ('circumstance', 'NOUN'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('ONE', 'NUM'), ('is', 'AUX'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('ONE', 'NOUN'), ('is', 'AUX'), ('the', 'DET'), ('total', 'ADJ'), ('silence', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('me', 'PRON'), ('it', 'PRON'), ('almost', 'ADV'), ('outweighs', 'VERB'), ('every', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('strange', 'ADJ'), ('this', 'PRON'), ('is', 'AUX'), (' ', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('think', 'VERB'), ('wretchedly', 'ADV'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('if', 'SCONJ'), ('after', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('has', 'AUX'), ('openly', 'ADV'), ('passed', 'VERB'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('can', 'AUX'), ('doubt', 'VERB'), ('the', 'DET'), ('nature', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('terms', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('they', 'PRON'), ('are', 'AUX'), ('together', 'ADV'), ('\n', 'SPACE'), ('Has', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('acting', 'VERB'), ('a', 'DET'), ('part', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('all', 'DET'), ('this', 'DET'), ('time', 'NOUN'), (' ', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('suppose', 'VERB'), ('him', 'PRON'), ('really', 'ADV'), ('indifferent', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), (' ', 'SPACE'), ('He', 'PRON'), ('must', 'AUX'), ('and', 'CCONJ'), ('does', 'AUX'), ('love', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('strange', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('tenderness', 'NOUN'), ('if', 'SCONJ'), ('he', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('leave', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('such', 'ADJ'), ('indifference', 'NOUN'), ('such', 'ADJ'), ('carelessness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('future', 'NOUN'), ('as', 'SCONJ'), ('you', 'PRON'), ('attribute', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('remember', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('mother', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('\n', 'SPACE'), ('considered', 'VERB'), ('this', 'DET'), ('matter', 'NOUN'), ('as', 'SCONJ'), ('certain', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('my', 'PRON'), ('doubts', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('confess', 'VERB'), ('but', 'CCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('fainter', 'NOUN'), ('than', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('and', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('soon', 'ADV'), ('be', 'AUX'), ('entirely', 'ADV'), ('done', 'VERB'), ('away', 'ADV'), (' ', 'SPACE'), ('If', 'SCONJ'), ('we', 'PRON'), ('find', 'VERB'), ('they', 'PRON'), ('correspond', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('fear', 'NOUN'), ('of', 'ADP'), ('mine', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('removed', 'VERB'), ('\n\n', 'SPACE'), ('A', 'DET'), ('mighty', 'ADJ'), ('concession', 'NOUN'), ('indeed', 'ADV'), (' ', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('altar', 'NOUN'), ('you', 'PRON'), ('would', 'AUX'), ('suppose', 'VERB'), ('they', 'PRON'), ('were', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('married', 'VERB'), (' ', 'SPACE'), ('Ungracious', 'ADJ'), ('girl', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('require', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('Nothing', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('opinion', 'NOUN'), ('has', 'AUX'), ('ever', 'ADV'), ('passed', 'VERB'), ('to', 'PART'), ('justify', 'VERB'), ('doubt', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('secrecy', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('attempted', 'VERB'), ('all', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('uniformly', 'ADV'), ('open', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('unreserved', 'VERB'), (' ', 'SPACE'), ('You', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('doubt', 'VERB'), ('your', 'PRON'), ('sisters', 'NOUN'), ('wishes', 'VERB'), ('\n', 'SPACE'), ('It', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('Willoughby', 'PROPN'), ('therefore', 'ADV'), ('whom', 'PRON'), ('you', 'PRON'), ('suspect', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('\n', 'SPACE'), ('Is', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('honour', 'NOUN'), ('and', 'CCONJ'), ('feeling', 'VERB'), ('Has', 'AUX'), ('there', 'PRON'), ('been', 'AUX'), ('any', 'DET'), ('\n', 'SPACE'), ('inconsistency', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('side', 'NOUN'), ('to', 'PART'), ('create', 'VERB'), ('alarm', 'NOUN'), ('can', 'AUX'), ('he', 'PRON'), ('be', 'AUX'), ('deceitful', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('not', 'PART'), ('I', 'PRON'), ('believe', 'AUX'), ('not', 'PART'), ('cried', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('love', 'VERB'), ('Willoughby', 'PROPN'), ('sincerely', 'ADV'), ('love', 'VERB'), ('him', 'PRON'), ('and', 'CCONJ'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('integrity', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('more', 'ADV'), ('painful', 'ADJ'), ('to', 'ADP'), ('yourself', 'PRON'), ('than', 'ADP'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('involuntary', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('encourage', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('startled', 'ADJ'), ('I', 'PRON'), ('confess', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('alteration', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('manners', 'NOUN'), ('this', 'DET'), ('morninghe', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('like', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('return', 'VERB'), ('your', 'PRON'), ('kindness', 'NOUN'), ('with', 'ADP'), ('any', 'DET'), ('cordiality', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('all', 'DET'), ('this', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('explained', 'VERB'), ('by', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('situation', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('affairs', 'NOUN'), ('as', 'SCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('supposed', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('parted', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('my', 'PRON'), ('sister', 'NOUN'), ('had', 'AUX'), ('seen', 'VERB'), ('her', 'PRON'), ('leave', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('affliction', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('felt', 'VERB'), ('obliged', 'VERB'), ('from', 'ADP'), ('a', 'DET'), ('fear', 'NOUN'), ('of', 'ADP'), ('offending', 'VERB'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('resist', 'VERB'), ('the', 'DET'), ('temptation', 'NOUN'), ('of', 'ADP'), ('returning', 'VERB'), ('here', 'ADV'), ('soon', 'ADV'), ('and', 'CCONJ'), ('yet', 'ADV'), ('\n', 'SPACE'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('by', 'ADP'), ('declining', 'VERB'), ('your', 'PRON'), ('invitation', 'NOUN'), ('by', 'ADP'), ('saying', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('away', 'ADV'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('he', 'PRON'), ('should', 'AUX'), ('seem', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('act', 'VERB'), ('an', 'DET'), ('ungenerous', 'ADJ'), ('a', 'DET'), ('suspicious', 'ADJ'), ('part', 'NOUN'), ('by', 'ADP'), ('our', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('be', 'AUX'), ('might', 'AUX'), ('well', 'ADV'), ('be', 'AUX'), ('embarrassed', 'ADJ'), ('and', 'CCONJ'), ('disturbed', 'VERB'), (' ', 'SPACE'), ('In', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('plain', 'ADJ'), ('and', 'CCONJ'), ('open', 'ADJ'), ('avowal', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('difficulties', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('more', 'ADJ'), ('to', 'ADP'), ('his', 'PRON'), ('honour', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('more', 'ADV'), ('consistent', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('his', 'PRON'), ('general', 'ADJ'), ('characterbut', 'NOUN'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('raise', 'VERB'), ('objections', 'NOUN'), ('\n', 'SPACE'), ('against', 'ADP'), ('any', 'DET'), ('ones', 'NOUN'), ('conduct', 'VERB'), ('on', 'ADP'), ('so', 'ADV'), ('illiberal', 'ADJ'), ('a', 'DET'), ('foundation', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('difference', 'NOUN'), ('in', 'ADP'), ('judgment', 'NOUN'), ('from', 'ADP'), ('myself', 'PRON'), ('or', 'CCONJ'), ('a', 'DET'), ('deviation', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('what', 'PRON'), ('I', 'PRON'), ('may', 'AUX'), ('think', 'VERB'), ('right', 'ADV'), ('and', 'CCONJ'), ('consistent', 'ADJ'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('speak', 'VERB'), ('very', 'ADV'), ('properly', 'ADV'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('certainly', 'ADV'), ('does', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('deserve', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('suspected', 'VERB'), (' ', 'SPACE'), ('Though', 'SCONJ'), ('WE', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('known', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('long', 'ADV'), ('he', 'PRON'), ('is', 'AUX'), ('no', 'DET'), ('stranger', 'NOUN'), ('in', 'ADP'), ('this', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('who', 'PRON'), ('has', 'AUX'), ('ever', 'ADV'), ('spoken', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('disadvantage', 'NOUN'), (' ', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('situation', 'NOUN'), ('to', 'PART'), ('act', 'VERB'), ('independently', 'ADV'), ('and', 'CCONJ'), ('marry', 'VERB'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('it', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('odd', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('leave', 'VERB'), ('us', 'PRON'), ('without', 'ADP'), ('\n', 'SPACE'), ('acknowledging', 'VERB'), ('everything', 'PRON'), ('to', 'ADP'), ('me', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), ('but', 'CCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('engagement', 'NOUN'), ('in', 'ADP'), ('some', 'DET'), ('respects', 'NOUN'), ('not', 'PART'), ('prosperously', 'ADV'), ('begun', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('their', 'PRON'), ('marriage', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('at', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('uncertain', 'ADJ'), ('distance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('secrecy', 'NOUN'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('observed', 'VERB'), ('may', 'AUX'), ('now', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('very', 'ADV'), ('advisable', 'ADJ'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('interrupted', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('then', 'ADV'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('representations', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('to', 'PART'), ('acknowledge', 'VERB'), ('the', 'DET'), ('probability', 'NOUN'), ('of', 'ADP'), ('many', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hope', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('justice', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('saw', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('till', 'SCONJ'), ('dinner', 'NOUN'), ('time', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('she', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('took', 'VERB'), ('her', 'PRON'), ('place', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('saying', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('red', 'ADJ'), ('and', 'CCONJ'), ('swollen', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('seemed', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('her', 'PRON'), ('tears', 'NOUN'), ('were', 'AUX'), ('even', 'ADV'), ('then', 'ADV'), ('restrained', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('difficulty', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('avoided', 'VERB'), ('the', 'DET'), ('looks', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('neither', 'CCONJ'), ('eat', 'VERB'), ('nor', 'CCONJ'), ('speak', 'VERB'), ('and', 'CCONJ'), ('after', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('silently', 'ADV'), ('pressing', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('with', 'ADP'), ('tender', 'NOUN'), ('compassion', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('small', 'ADJ'), ('degree', 'NOUN'), ('of', 'ADP'), ('fortitude', 'NOUN'), ('was', 'AUX'), ('quite', 'ADV'), ('overcome', 'ADJ'), ('she', 'PRON'), ('burst', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('tears', 'NOUN'), ('and', 'CCONJ'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('violent', 'ADJ'), ('oppression', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('continued', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('whole', 'ADJ'), ('evening', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('without', 'ADP'), ('any', 'DET'), ('power', 'NOUN'), ('because', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('without', 'ADP'), ('any', 'DET'), ('desire', 'NOUN'), ('of', 'ADP'), ('command', 'NOUN'), ('over', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('slightest', 'ADJ'), ('mention', 'NOUN'), ('of', 'ADP'), ('anything', 'PRON'), ('relative', 'ADJ'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('overpowered', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('an', 'DET'), ('instant', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('her', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('most', 'ADV'), ('anxiously', 'ADV'), ('attentive', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('comfort', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('for', 'ADP'), ('them', 'PRON'), ('if', 'SCONJ'), ('they', 'PRON'), ('spoke', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('to', 'PART'), ('keep', 'VERB'), ('clear', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('subject', 'NOUN'), ('which', 'DET'), ('her', 'PRON'), ('feelings', 'NOUN'), ('connected', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'PROPN'), ('16', 'NUM'), ('\n\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('have', 'AUX'), ('thought', 'VERB'), ('herself', 'PRON'), ('very', 'ADV'), ('inexcusable', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('she', 'PRON'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('sleep', 'VERB'), ('at', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('first', 'ADJ'), ('night', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('parting', 'VERB'), ('from', 'ADP'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('ashamed', 'ADJ'), ('to', 'PART'), ('look', 'VERB'), ('her', 'PRON'), ('family', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('face', 'NOUN'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('she', 'PRON'), ('not', 'PART'), ('risen', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('bed', 'NOUN'), ('in', 'ADP'), ('more', 'ADJ'), ('need', 'NOUN'), ('of', 'ADP'), ('repose', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('when', 'SCONJ'), ('she', 'PRON'), ('lay', 'VERB'), ('down', 'ADP'), ('in', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('feelings', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('made', 'VERB'), ('such', 'ADJ'), ('composure', 'NOUN'), ('a', 'DET'), ('disgrace', 'NOUN'), ('left', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('no', 'DET'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('incurring', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('awake', 'ADJ'), ('the', 'DET'), ('whole', 'ADJ'), ('night', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('wept', 'VERB'), ('the', 'DET'), ('greatest', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('got', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('headache', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('talk', 'VERB'), ('and', 'CCONJ'), ('unwilling', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('any', 'DET'), ('nourishment', 'NOUN'), ('\n', 'SPACE'), ('giving', 'VERB'), ('pain', 'NOUN'), ('every', 'DET'), ('moment', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('forbidding', 'VERB'), ('all', 'DET'), ('attempt', 'NOUN'), ('at', 'ADP'), ('consolation', 'NOUN'), ('from', 'ADP'), ('either', 'DET'), ('\n', 'SPACE'), ('Her', 'PRON'), ('sensibility', 'NOUN'), ('was', 'AUX'), ('potent', 'ADJ'), ('enough', 'ADV'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('breakfast', 'NOUN'), ('was', 'AUX'), ('over', 'ADP'), ('she', 'PRON'), ('walked', 'VERB'), ('out', 'ADP'), ('by', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('wandered', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('village', 'NOUN'), ('of', 'ADP'), ('Allenham', 'PROPN'), ('indulging', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('recollection', 'NOUN'), ('of', 'ADP'), ('past', 'ADJ'), ('enjoyment', 'NOUN'), ('and', 'CCONJ'), ('crying', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('\n', 'SPACE'), ('reverse', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('chief', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('evening', 'NOUN'), ('passed', 'VERB'), ('off', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('equal', 'ADJ'), ('indulgence', 'NOUN'), ('of', 'ADP'), ('feeling', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('played', 'VERB'), ('over', 'ADP'), ('every', 'DET'), ('favourite', 'ADJ'), ('song', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('used', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('play', 'VERB'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('every', 'DET'), ('air', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('their', 'PRON'), ('voices', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('oftenest', 'NOUN'), ('joined', 'VERB'), ('and', 'CCONJ'), ('sat', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('instrument', 'NOUN'), ('gazing', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('every', 'DET'), ('line', 'NOUN'), ('of', 'ADP'), ('music', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('written', 'VERB'), ('out', 'ADP'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('heavy', 'ADJ'), ('that', 'SCONJ'), ('no', 'DET'), ('farther', 'ADJ'), ('sadness', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('gained', 'VERB'), ('and', 'CCONJ'), ('this', 'DET'), ('nourishment', 'NOUN'), ('of', 'ADP'), ('grief', 'NOUN'), ('was', 'AUX'), ('every', 'DET'), ('\n', 'SPACE'), ('day', 'NOUN'), ('applied', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('spent', 'VERB'), ('whole', 'ADJ'), ('hours', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('pianoforte', 'NOUN'), ('\n', 'SPACE'), ('alternately', 'ADV'), ('singing', 'VERB'), ('and', 'CCONJ'), ('crying', 'VERB'), ('her', 'PRON'), ('voice', 'NOUN'), ('often', 'ADV'), ('totally', 'ADV'), ('\n', 'SPACE'), ('suspended', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('tears', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('books', 'NOUN'), ('too', 'ADV'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('in', 'ADP'), ('music', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('courted', 'VERB'), ('the', 'DET'), ('misery', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('contrast', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('present', 'ADJ'), ('was', 'AUX'), ('certain', 'ADJ'), ('of', 'ADP'), ('giving', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('read', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('what', 'PRON'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('used', 'VERB'), ('to', 'PART'), ('read', 'VERB'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('Such', 'ADJ'), ('violence', 'NOUN'), ('of', 'ADP'), ('affliction', 'NOUN'), ('indeed', 'ADV'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('supported', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('ever', 'ADV'), ('it', 'PRON'), ('sunk', 'VERB'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('into', 'ADP'), ('a', 'DET'), ('calmer', 'ADJ'), ('melancholy', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('these', 'DET'), ('employments', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('she', 'PRON'), ('daily', 'ADV'), ('recurred', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('solitary', 'ADJ'), ('walks', 'NOUN'), ('and', 'CCONJ'), ('silent', 'ADJ'), ('meditations', 'NOUN'), ('still', 'ADV'), ('produced', 'VERB'), ('\n', 'SPACE'), ('occasional', 'ADJ'), ('effusions', 'NOUN'), ('of', 'ADP'), ('sorrow', 'NOUN'), ('as', 'ADV'), ('lively', 'ADJ'), ('as', 'SCONJ'), ('ever', 'ADV'), ('\n\n', 'SPACE'), ('No', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('Willoughby', 'PROPN'), ('came', 'VERB'), ('and', 'CCONJ'), ('none', 'NOUN'), ('seemed', 'VERB'), ('expected', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('surprised', 'ADJ'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('again', 'ADV'), ('\n', 'SPACE'), ('became', 'VERB'), ('uneasy', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('could', 'AUX'), ('find', 'VERB'), ('explanations', 'NOUN'), ('\n', 'SPACE'), ('whenever', 'SCONJ'), ('she', 'PRON'), ('wanted', 'VERB'), ('them', 'PRON'), ('which', 'PRON'), ('at', 'ADP'), ('least', 'ADJ'), ('satisfied', 'VERB'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('Remember', 'VERB'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('how', 'SCONJ'), ('very', 'ADV'), ('often', 'ADV'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('fetches', 'VERB'), ('our', 'PRON'), ('letters', 'NOUN'), ('himself', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('post', 'NOUN'), ('and', 'CCONJ'), ('carries', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('already', 'ADV'), ('agreed', 'VERB'), ('that', 'SCONJ'), ('secrecy', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('acknowledge', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('maintained', 'VERB'), ('if', 'SCONJ'), ('\n', 'SPACE'), ('their', 'PRON'), ('correspondence', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('pass', 'VERB'), ('through', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('hands', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('deny', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('this', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('tried', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('find', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('a', 'DET'), ('motive', 'ADJ'), ('sufficient', 'ADJ'), ('for', 'ADP'), ('their', 'PRON'), ('silence', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('one', 'NUM'), ('method', 'NOUN'), ('so', 'ADV'), ('direct', 'ADJ'), ('so', 'ADV'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('in', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('opinion', 'NOUN'), ('so', 'ADV'), ('eligible', 'ADJ'), ('of', 'ADP'), ('knowing', 'VERB'), ('the', 'DET'), ('real', 'ADJ'), ('state', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('instantly', 'ADV'), ('removing', 'VERB'), ('all', 'DET'), ('mystery', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('suggesting', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('ask', 'VERB'), ('Marianne', 'PROPN'), ('at', 'ADP'), ('once', 'ADV'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('or', 'CCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('engaged', 'VERB'), ('to', 'ADP'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('From', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('kind', 'VERB'), ('so', 'ADV'), ('indulgent', 'ADJ'), ('a', 'DET'), ('mother', 'NOUN'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('offence', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('natural', 'ADJ'), ('result', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('affection', 'NOUN'), ('for', 'SCONJ'), ('her', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('used', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('all', 'PRON'), ('unreserve', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('you', 'PRON'), ('more', 'ADV'), ('especially', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('question', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('Supposing', 'VERB'), ('it', 'PRON'), ('possible', 'ADJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('distress', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('such', 'DET'), ('an', 'DET'), ('enquiry', 'NOUN'), ('inflict', 'NOUN'), (' ', 'SPACE'), ('At', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('rate', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('most', 'ADV'), ('ungenerous', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('deserve', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('confidence', 'NOUN'), ('again', 'ADV'), ('after', 'ADP'), ('forcing', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('confession', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('is', 'AUX'), ('meant', 'VERB'), ('at', 'ADP'), ('present', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('unacknowledged', 'VERB'), ('to', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('Mariannes', 'PROPN'), ('heart', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('dearly', 'ADV'), ('loves', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('last', 'ADJ'), ('to', 'PART'), ('whom', 'PRON'), ('the', 'DET'), ('affair', 'NOUN'), ('is', 'AUX'), ('made', 'AUX'), ('\n', 'SPACE'), ('known', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('circumstances', 'NOUN'), ('make', 'VERB'), ('the', 'DET'), ('revealment', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('attempt', 'VERB'), ('to', 'PART'), ('force', 'VERB'), ('the', 'DET'), ('confidence', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('child', 'NOUN'), ('much', 'ADV'), ('less', 'ADJ'), ('because', 'SCONJ'), ('a', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('duty', 'NOUN'), ('would', 'AUX'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('denial', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('wishes', 'VERB'), ('might', 'AUX'), ('direct', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('thought', 'VERB'), ('this', 'DET'), ('generosity', 'NOUN'), ('overstrained', 'VERB'), ('\n', 'SPACE'), ('considering', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('youth', 'NOUN'), ('and', 'CCONJ'), ('urged', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('farther', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('in', 'ADP'), ('vain', 'ADJ'), ('common', 'ADJ'), ('sense', 'NOUN'), ('common', 'ADJ'), ('care', 'NOUN'), ('common', 'ADJ'), ('prudence', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('all', 'PRON'), ('sunk', 'VERB'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('romantic', 'ADJ'), ('delicacy', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('several', 'ADJ'), ('days', 'NOUN'), ('before', 'SCONJ'), ('Willoughbys', 'PROPN'), ('name', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('mentioned', 'VERB'), ('before', 'ADP'), ('Marianne', 'PROPN'), ('by', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('indeed', 'ADV'), ('were', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('nice', 'ADJ'), ('\n', 'SPACE'), ('their', 'PRON'), ('witticisms', 'NOUN'), ('added', 'VERB'), ('pain', 'NOUN'), ('to', 'ADP'), ('many', 'DET'), ('a', 'DET'), ('painful', 'ADJ'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('one', 'NUM'), ('evening', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('accidentally', 'ADV'), ('taking', 'VERB'), ('up', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('volume', 'NOUN'), ('of', 'ADP'), ('Shakespeare', 'PROPN'), ('exclaimed', 'VERB'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('finished', 'VERB'), ('Hamlet', 'PROPN'), ('Marianne', 'PROPN'), ('our', 'PRON'), ('dear', 'ADJ'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('went', 'VERB'), ('away', 'ADV'), ('before', 'SCONJ'), ('we', 'PRON'), ('could', 'AUX'), ('get', 'VERB'), ('through', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('We', 'PRON'), ('will', 'AUX'), ('put', 'VERB'), ('it', 'PRON'), ('by', 'ADP'), ('that', 'PRON'), ('when', 'SCONJ'), ('he', 'PRON'), ('comes', 'VERB'), ('againBut', 'CCONJ'), ('it', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('months', 'NOUN'), ('perhaps', 'ADV'), ('before', 'SCONJ'), ('THAT', 'PRON'), ('happens', 'VERB'), ('\n\n', 'SPACE'), ('Months', 'NOUN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('strong', 'ADJ'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('Nonor', 'PROPN'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('sorry', 'ADJ'), ('for', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('gave', 'VERB'), ('Elinor', 'PROPN'), ('pleasure', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('produced', 'VERB'), ('a', 'DET'), ('reply', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('Marianne', 'PROPN'), ('so', 'ADV'), ('expressive', 'NOUN'), ('of', 'ADP'), ('confidence', 'NOUN'), ('in', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('intentions', 'NOUN'), ('\n\n', 'SPACE'), ('One', 'NUM'), ('morning', 'NOUN'), ('about', 'ADV'), ('a', 'PRON'), ('week', 'NOUN'), ('after', 'ADP'), ('his', 'PRON'), ('leaving', 'VERB'), ('the', 'DET'), ('country', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('prevailed', 'VERB'), ('on', 'ADP'), ('to', 'PART'), ('join', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('usual', 'ADJ'), ('walk', 'NOUN'), ('instead', 'ADV'), ('of', 'ADP'), ('wandering', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('Hitherto', 'PROPN'), ('she', 'PRON'), ('had', 'AUX'), ('carefully', 'ADV'), ('avoided', 'VERB'), ('every', 'DET'), ('companion', 'NOUN'), ('in', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('rambles', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('her', 'PRON'), ('sisters', 'NOUN'), ('intended', 'VERB'), ('to', 'PART'), ('walk', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('downs', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('directly', 'ADV'), ('stole', 'VERB'), ('away', 'ADV'), ('towards', 'ADP'), ('the', 'DET'), ('lanes', 'NOUN'), ('if', 'SCONJ'), ('they', 'PRON'), ('talked', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('speedy', 'ADJ'), ('in', 'ADP'), ('climbing', 'VERB'), ('the', 'DET'), ('hills', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('could', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('found', 'VERB'), ('when', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('set', 'VERB'), ('off', 'ADP'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('length', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('secured', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('exertions', 'NOUN'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('greatly', 'ADV'), ('disapproved', 'VERB'), ('such', 'ADJ'), ('continual', 'ADJ'), ('seclusion', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('walked', 'VERB'), ('\n', 'SPACE'), ('along', 'ADP'), ('the', 'DET'), ('road', 'NOUN'), ('through', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('and', 'CCONJ'), ('chiefly', 'ADV'), ('in', 'ADP'), ('silence', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('Mariannes', 'PROPN'), ('MIND', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('controlled', 'VERB'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('satisfied', 'VERB'), ('with', 'ADP'), ('gaining', 'VERB'), ('one', 'NUM'), ('point', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('then', 'ADV'), ('attempt', 'VERB'), ('more', 'ADJ'), ('\n', 'SPACE'), ('Beyond', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('where', 'SCONJ'), ('the', 'DET'), ('country', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('still', 'ADV'), ('rich', 'ADJ'), ('was', 'AUX'), ('less', 'ADV'), ('wild', 'ADJ'), ('and', 'CCONJ'), ('more', 'ADV'), ('open', 'ADJ'), ('a', 'DET'), ('long', 'ADJ'), ('\n', 'SPACE'), ('stretch', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('road', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('had', 'AUX'), ('travelled', 'VERB'), ('on', 'ADP'), ('first', 'ADV'), ('coming', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Barton', 'PROPN'), ('lay', 'VERB'), ('before', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('reaching', 'VERB'), ('that', 'DET'), ('point', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('stopped', 'VERB'), ('to', 'PART'), ('look', 'VERB'), ('around', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('examine', 'VERB'), ('a', 'DET'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('formed', 'VERB'), ('the', 'DET'), ('distance', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('view', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('a', 'DET'), ('spot', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('happened', 'VERB'), ('to', 'PART'), ('reach', 'VERB'), ('in', 'ADP'), ('any', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('walks', 'NOUN'), ('before', 'ADP'), ('\n\n', 'SPACE'), ('Amongst', 'ADP'), ('the', 'DET'), ('objects', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('scene', 'NOUN'), ('they', 'PRON'), ('soon', 'ADV'), ('discovered', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('animated', 'VERB'), ('one', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('man', 'NOUN'), ('on', 'ADP'), ('horseback', 'NOUN'), ('riding', 'VERB'), ('towards', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('they', 'PRON'), ('could', 'AUX'), ('distinguish', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('gentleman', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('afterwards', 'ADV'), ('Marianne', 'PROPN'), ('rapturously', 'ADV'), ('exclaimed', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('he', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('indeedI', 'ADJ'), ('know', 'NOUN'), ('it', 'PRON'), ('isand', 'VERB'), ('was', 'AUX'), ('\n', 'SPACE'), ('hastening', 'VERB'), ('to', 'PART'), ('meet', 'VERB'), ('him', 'PRON'), ('when', 'SCONJ'), ('Elinor', 'PROPN'), ('cried', 'VERB'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('are', 'AUX'), ('mistaken', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('person', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('tall', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('has', 'VERB'), ('not', 'PART'), ('his', 'PRON'), ('air', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('has', 'VERB'), ('he', 'PRON'), ('has', 'AUX'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('he', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('His', 'PRON'), ('air', 'NOUN'), ('his', 'PRON'), ('coat', 'NOUN'), ('his', 'PRON'), ('horse', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('knew', 'VERB'), ('how', 'SCONJ'), ('soon', 'ADV'), ('he', 'PRON'), ('would', 'AUX'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('walked', 'VERB'), ('eagerly', 'ADV'), ('on', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('screen', 'VERB'), ('Marianne', 'PROPN'), ('from', 'ADP'), ('particularity', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('almost', 'ADV'), ('\n', 'SPACE'), ('certain', 'ADJ'), ('of', 'ADP'), ('its', 'PRON'), ('not', 'PART'), ('being', 'AUX'), ('Willoughby', 'PROPN'), ('quickened', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('pace', 'NOUN'), ('and', 'CCONJ'), ('kept', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('soon', 'ADV'), ('within', 'ADP'), ('\n', 'SPACE'), ('thirty', 'NUM'), ('yards', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('gentleman', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('looked', 'VERB'), ('again', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('heart', 'NOUN'), ('sunk', 'VERB'), ('within', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('abruptly', 'ADV'), ('turning', 'VERB'), ('round', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('hurrying', 'VERB'), ('back', 'ADV'), ('when', 'SCONJ'), ('the', 'DET'), ('voices', 'NOUN'), ('of', 'ADP'), ('both', 'CCONJ'), ('her', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('raised', 'VERB'), ('to', 'PART'), ('detain', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('third', 'ADJ'), ('almost', 'ADV'), ('as', 'ADV'), ('well', 'ADV'), ('known', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Willoughbys', 'PROPN'), ('joined', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('begging', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('stop', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('turned', 'VERB'), ('round', 'ADV'), ('with', 'ADP'), ('surprise', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('and', 'CCONJ'), ('welcome', 'VERB'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('person', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('be', 'AUX'), ('forgiven', 'VERB'), ('for', 'ADP'), ('not', 'PART'), ('being', 'AUX'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('the', 'DET'), ('only', 'ADJ'), ('one', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('gained', 'VERB'), ('a', 'DET'), ('smile', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('dispersed', 'VERB'), ('her', 'PRON'), ('tears', 'NOUN'), ('to', 'PART'), ('smile', 'VERB'), ('on', 'ADP'), ('HIM', 'PROPN'), ('and', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('happiness', 'NOUN'), ('forgot', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('her', 'PRON'), ('own', 'ADJ'), ('disappointment', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('dismounted', 'VERB'), ('and', 'CCONJ'), ('giving', 'VERB'), ('his', 'PRON'), ('horse', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('servant', 'NOUN'), ('\n', 'SPACE'), ('walked', 'VERB'), ('back', 'ADV'), ('with', 'ADP'), ('them', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), ('whither', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('purposely', 'ADV'), ('\n', 'SPACE'), ('coming', 'VERB'), ('to', 'PART'), ('visit', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('welcomed', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('with', 'ADP'), ('great', 'ADJ'), ('cordiality', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('especially', 'ADV'), ('by', 'ADP'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('showed', 'VERB'), ('more', 'ADJ'), ('warmth', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('regard', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('reception', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('than', 'ADP'), ('even', 'ADV'), ('Elinor', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('To', 'ADP'), ('Marianne', 'PROPN'), ('indeed', 'ADV'), ('the', 'DET'), ('meeting', 'NOUN'), ('between', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('but', 'CCONJ'), ('a', 'DET'), ('continuation', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('unaccountable', 'ADJ'), ('coldness', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('often', 'ADV'), ('observed', 'VERB'), ('at', 'ADP'), ('Norland', 'PROPN'), ('in', 'ADP'), ('their', 'PRON'), ('mutual', 'ADJ'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('On', 'ADP'), ('Edwards', 'PROPN'), ('side', 'NOUN'), ('more', 'ADV'), ('particularly', 'ADV'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('deficiency', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('a', 'DET'), ('lover', 'NOUN'), ('ought', 'AUX'), ('to', 'PART'), ('look', 'VERB'), ('and', 'CCONJ'), ('say', 'VERB'), ('on', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('confused', 'VERB'), ('seemed', 'VERB'), ('scarcely', 'ADV'), ('sensible', 'ADJ'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('seeing', 'VERB'), ('them', 'PRON'), ('looked', 'VERB'), ('neither', 'CCONJ'), ('rapturous', 'ADJ'), ('nor', 'CCONJ'), ('gay', 'ADJ'), ('\n', 'SPACE'), ('said', 'VERB'), ('little', 'ADJ'), ('but', 'CCONJ'), ('what', 'PRON'), ('was', 'AUX'), ('forced', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('questions', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('distinguished', 'VERB'), ('Elinor', 'PROPN'), ('by', 'ADP'), ('no', 'DET'), ('mark', 'NOUN'), ('of', 'ADP'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('saw', 'VERB'), ('and', 'CCONJ'), ('listened', 'VERB'), ('with', 'ADP'), ('increasing', 'VERB'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('began', 'VERB'), ('almost', 'ADV'), ('to', 'PART'), ('feel', 'VERB'), ('a', 'DET'), ('dislike', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('it', 'PRON'), ('ended', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('every', 'DET'), ('feeling', 'NOUN'), ('must', 'AUX'), ('end', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('by', 'ADP'), ('carrying', 'VERB'), ('back', 'ADV'), ('her', 'PRON'), ('\n', 'SPACE'), ('thoughts', 'NOUN'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('whose', 'DET'), ('manners', 'NOUN'), ('formed', 'VERB'), ('a', 'DET'), ('contrast', 'NOUN'), ('\n', 'SPACE'), ('sufficiently', 'ADV'), ('striking', 'VERB'), ('to', 'ADP'), ('those', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('brother', 'NOUN'), ('elect', 'PROPN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('silence', 'NOUN'), ('which', 'PRON'), ('succeeded', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('\n', 'SPACE'), ('surprise', 'NOUN'), ('and', 'CCONJ'), ('enquiries', 'NOUN'), ('of', 'ADP'), ('meeting', 'VERB'), ('Marianne', 'PROPN'), ('asked', 'VERB'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('if', 'SCONJ'), ('he', 'PRON'), ('came', 'VERB'), ('directly', 'ADV'), ('from', 'ADP'), ('London', 'PROPN'), (' ', 'SPACE'), ('No', 'INTJ'), ('he', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('a', 'DET'), ('fortnight', 'ADJ'), ('\n\n', 'SPACE'), ('A', 'NOUN'), ('fortnight', 'NOUN'), ('she', 'PRON'), ('repeated', 'VERB'), ('surprised', 'ADJ'), ('at', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('long', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('county', 'NOUN'), ('with', 'ADP'), ('Elinor', 'PROPN'), ('without', 'ADP'), ('seeing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('before', 'SCONJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('looked', 'VERB'), ('rather', 'ADV'), ('distressed', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('added', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('staying', 'VERB'), ('with', 'ADP'), ('some', 'DET'), ('friends', 'NOUN'), ('near', 'ADP'), ('Plymouth', 'PROPN'), ('\n\n', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('been', 'AUX'), ('lately', 'ADV'), ('in', 'ADP'), ('Sussex', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('Norland', 'PROPN'), ('about', 'ADP'), ('a', 'PRON'), ('month', 'NOUN'), ('ago', 'ADP'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('does', 'AUX'), ('dear', 'ADJ'), ('dear', 'ADJ'), ('Norland', 'PROPN'), ('look', 'NOUN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Dear', 'PROPN'), ('dear', 'NOUN'), ('Norland', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('probably', 'ADV'), ('looks', 'VERB'), ('\n', 'SPACE'), ('much', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('always', 'ADV'), ('does', 'AUX'), ('at', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('woods', 'NOUN'), ('and', 'CCONJ'), ('walks', 'NOUN'), ('thickly', 'ADV'), ('covered', 'VERB'), ('with', 'ADP'), ('dead', 'ADJ'), ('leaves', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('what', 'PRON'), ('transporting', 'NOUN'), ('sensation', 'NOUN'), ('\n', 'SPACE'), ('have', 'AUX'), ('I', 'PRON'), ('formerly', 'ADV'), ('seen', 'VERB'), ('them', 'PRON'), ('fall', 'VERB'), (' ', 'SPACE'), ('How', 'SCONJ'), ('have', 'AUX'), ('I', 'PRON'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('walked', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('driven', 'VERB'), ('in', 'ADP'), ('showers', 'NOUN'), ('about', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('wind', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('feelings', 'NOUN'), ('have', 'AUX'), ('they', 'PRON'), ('the', 'DET'), ('season', 'NOUN'), ('the', 'DET'), ('air', 'NOUN'), ('\n', 'SPACE'), ('altogether', 'ADV'), ('inspired', 'VERB'), (' ', 'SPACE'), ('Now', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('one', 'NOUN'), ('to', 'PART'), ('regard', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('seen', 'VERB'), ('only', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('nuisance', 'NOUN'), ('swept', 'VERB'), ('hastily', 'ADV'), ('off', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('driven', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('from', 'ADP'), ('the', 'DET'), ('sight', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('every', 'DET'), ('one', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('has', 'VERB'), ('your', 'PRON'), ('\n', 'SPACE'), ('passion', 'NOUN'), ('for', 'ADP'), ('dead', 'ADJ'), ('leaves', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('my', 'PRON'), ('feelings', 'NOUN'), ('are', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('shared', 'VERB'), ('not', 'PART'), ('often', 'ADV'), ('\n', 'SPACE'), ('understood', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('SOMETIMES', 'ADV'), ('they', 'PRON'), ('areAs', 'PROPN'), ('she', 'PRON'), ('said', 'VERB'), ('this', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('sunk', 'VERB'), ('into', 'ADP'), ('a', 'DET'), ('reverie', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('momentsbut', 'NOUN'), ('rousing', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('again', 'ADV'), ('Now', 'ADV'), ('Edward', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('calling', 'VERB'), ('his', 'PRON'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('prospect', 'NOUN'), ('here', 'ADV'), ('is', 'AUX'), ('Barton', 'PROPN'), ('valley', 'NOUN'), (' ', 'SPACE'), ('Look', 'VERB'), ('up', 'ADP'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('be', 'AUX'), ('tranquil', 'NOUN'), ('if', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), (' ', 'SPACE'), ('Look', 'VERB'), ('at', 'ADP'), ('those', 'DET'), ('hills', 'NOUN'), ('\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('ever', 'ADV'), ('see', 'VERB'), ('their', 'PRON'), ('equals', 'NOUN'), (' ', 'SPACE'), ('To', 'ADP'), ('the', 'DET'), ('left', 'NOUN'), ('is', 'AUX'), ('Barton', 'PROPN'), ('park', 'NOUN'), ('\n', 'SPACE'), ('amongst', 'ADP'), ('those', 'DET'), ('woods', 'NOUN'), ('and', 'CCONJ'), ('plantations', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('see', 'VERB'), ('the', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('there', 'ADV'), ('beneath', 'ADP'), ('that', 'DET'), ('farthest', 'ADJ'), ('hill', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('rises', 'VERB'), ('with', 'ADP'), ('such', 'ADJ'), ('grandeur', 'NOUN'), ('is', 'AUX'), ('our', 'PRON'), ('cottage', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('beautiful', 'ADJ'), ('country', 'NOUN'), ('he', 'PRON'), ('replied', 'VERB'), ('but', 'CCONJ'), ('these', 'DET'), ('\n', 'SPACE'), ('bottoms', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('dirty', 'ADJ'), ('in', 'ADP'), ('winter', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('of', 'ADP'), ('dirt', 'NOUN'), ('with', 'ADP'), ('such', 'ADJ'), ('objects', 'NOUN'), ('before', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Because', 'SCONJ'), ('replied', 'VERB'), ('he', 'PRON'), ('smiling', 'VERB'), ('among', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('objects', 'NOUN'), ('before', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('see', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('dirty', 'ADJ'), ('lane', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('strange', 'ADJ'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('to', 'ADP'), ('herself', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('walked', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('Have', 'VERB'), ('you', 'PRON'), ('an', 'DET'), ('agreeable', 'ADJ'), ('neighbourhood', 'NOUN'), ('here', 'ADV'), (' ', 'SPACE'), ('Are', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('Middletons', 'PROPN'), ('pleasant', 'ADJ'), ('people', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('not', 'PART'), ('all', 'PRON'), ('answered', 'VERB'), ('Marianne', 'PROPN'), ('we', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('more', 'ADV'), ('unfortunately', 'ADV'), ('situated', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('cried', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('how', 'SCONJ'), ('can', 'AUX'), ('you', 'PRON'), ('say', 'VERB'), ('so', 'ADV'), ('How', 'SCONJ'), ('can', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('be', 'AUX'), ('so', 'ADV'), ('unjust', 'ADJ'), (' ', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('respectable', 'ADJ'), ('family', 'NOUN'), ('Mr', 'PROPN'), ('\n', 'SPACE'), ('Ferrars', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('towards', 'ADP'), ('us', 'PRON'), ('have', 'AUX'), ('behaved', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('friendliest', 'ADJ'), ('manner', 'NOUN'), (' ', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('forgot', 'VERB'), ('Marianne', 'PROPN'), ('how', 'SCONJ'), ('many', 'ADJ'), ('pleasant', 'ADJ'), ('days', 'NOUN'), ('we', 'PRON'), ('have', 'AUX'), ('owed', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('nor', 'CCONJ'), ('how', 'SCONJ'), ('many', 'ADJ'), ('\n', 'SPACE'), ('painful', 'ADJ'), ('moments', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('took', 'VERB'), ('no', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('this', 'PRON'), ('and', 'CCONJ'), ('directing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('attention', 'NOUN'), ('to', 'ADP'), ('their', 'PRON'), ('visitor', 'NOUN'), ('endeavoured', 'VERB'), ('to', 'PART'), ('support', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('like', 'ADP'), ('discourse', 'NOUN'), ('with', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('talking', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('present', 'ADJ'), ('residence', 'NOUN'), ('its', 'PRON'), ('conveniences', 'NOUN'), ('c', 'VERB'), ('extorting', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('occasional', 'ADJ'), ('questions', 'NOUN'), ('and', 'CCONJ'), ('remarks', 'VERB'), (' ', 'SPACE'), ('His', 'PRON'), ('coldness', 'NOUN'), ('and', 'CCONJ'), ('reserve', 'NOUN'), ('\n', 'SPACE'), ('mortified', 'VERB'), ('her', 'PRON'), ('severely', 'ADV'), ('she', 'PRON'), ('was', 'AUX'), ('vexed', 'VERB'), ('and', 'CCONJ'), ('half', 'NOUN'), ('angry', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('resolving', 'VERB'), ('to', 'PART'), ('regulate', 'VERB'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('\n', 'SPACE'), ('rather', 'ADV'), ('than', 'ADP'), ('the', 'DET'), ('present', 'NOUN'), ('she', 'PRON'), ('avoided', 'VERB'), ('every', 'DET'), ('appearance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('resentment', 'NOUN'), ('or', 'CCONJ'), ('displeasure', 'NOUN'), ('and', 'CCONJ'), ('treated', 'VERB'), ('him', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('thought', 'VERB'), ('he', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('treated', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('connection', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('17', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('surprised', 'ADJ'), ('only', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('seeing', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('his', 'PRON'), ('coming', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('natural', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('joy', 'NOUN'), ('and', 'CCONJ'), ('expression', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('regard', 'NOUN'), ('long', 'ADV'), ('outlived', 'VERB'), ('her', 'PRON'), ('wonder', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('received', 'VERB'), ('the', 'DET'), ('kindest', 'ADJ'), ('\n', 'SPACE'), ('welcome', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('shyness', 'PROPN'), ('coldness', 'NOUN'), ('reserve', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('stand', 'VERB'), ('against', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('reception', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('had', 'AUX'), ('begun', 'VERB'), ('to', 'PART'), ('fail', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('he', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('quite', 'ADV'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('captivating', 'VERB'), ('manners', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('Indeed', 'ADV'), ('a', 'DET'), ('man', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('well', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('love', 'NOUN'), ('with', 'ADP'), ('either', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('extending', 'VERB'), ('the', 'DET'), ('passion', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('satisfaction', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('him', 'PRON'), ('soon', 'ADV'), ('become', 'VERB'), ('more', 'ADV'), ('like', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('His', 'PRON'), ('affections', 'NOUN'), ('seemed', 'VERB'), ('to', 'PART'), ('reanimate', 'VERB'), ('towards', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('interest', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('welfare', 'NOUN'), ('again', 'ADV'), ('became', 'VERB'), ('perceptible', 'ADJ'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('spirits', 'NOUN'), ('however', 'ADV'), ('he', 'PRON'), ('praised', 'VERB'), ('their', 'PRON'), ('house', 'NOUN'), ('\n', 'SPACE'), ('admired', 'VERB'), ('its', 'PRON'), ('prospect', 'NOUN'), ('was', 'AUX'), ('attentive', 'ADJ'), ('and', 'CCONJ'), ('kind', 'ADJ'), ('but', 'CCONJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('spirits', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('whole', 'ADJ'), ('family', 'NOUN'), ('perceived', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('attributing', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('some', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('liberality', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('table', 'NOUN'), ('indignant', 'NOUN'), ('against', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('selfish', 'ADJ'), ('parents', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('are', 'AUX'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('views', 'NOUN'), ('for', 'ADP'), ('you', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('when', 'SCONJ'), ('dinner', 'NOUN'), ('was', 'AUX'), ('over', 'ADV'), ('and', 'CCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('drawn', 'VERB'), ('round', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('fire', 'NOUN'), ('are', 'AUX'), ('you', 'PRON'), ('still', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('orator', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('I', 'PRON'), ('hope', 'VERB'), ('my', 'PRON'), ('mother', 'NOUN'), ('is', 'AUX'), ('now', 'ADV'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('more', 'ADJ'), ('talents', 'NOUN'), ('than', 'ADP'), ('inclination', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('public', 'ADJ'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('how', 'SCONJ'), ('is', 'AUX'), ('your', 'PRON'), ('fame', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('established', 'VERB'), ('for', 'ADP'), ('famous', 'ADJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('to', 'PART'), ('satisfy', 'VERB'), ('all', 'DET'), ('your', 'PRON'), ('family', 'NOUN'), ('and', 'CCONJ'), ('with', 'ADP'), ('no', 'DET'), ('inclination', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('expense', 'NOUN'), ('no', 'DET'), ('affection', 'NOUN'), ('for', 'ADP'), ('strangers', 'NOUN'), ('no', 'DET'), ('profession', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('no', 'DET'), ('assurance', 'NOUN'), ('you', 'PRON'), ('may', 'AUX'), ('find', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('difficult', 'ADJ'), ('matter', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('attempt', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('wish', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('distinguished', 'ADJ'), ('and', 'CCONJ'), ('have', 'VERB'), ('every', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('hope', 'VERB'), ('I', 'PRON'), ('never', 'ADV'), ('shall', 'AUX'), ('\n', 'SPACE'), ('Thank', 'VERB'), ('Heaven', 'PROPN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('forced', 'VERB'), ('into', 'ADP'), ('genius', 'NOUN'), ('and', 'CCONJ'), ('eloquence', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('ambition', 'NOUN'), ('I', 'PRON'), ('well', 'ADV'), ('know', 'VERB'), (' ', 'SPACE'), ('Your', 'PRON'), ('wishes', 'NOUN'), ('\n', 'SPACE'), ('are', 'AUX'), ('all', 'PRON'), ('moderate', 'ADJ'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('moderate', 'ADJ'), ('as', 'ADP'), ('those', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('perfectly', 'ADV'), ('happy', 'ADJ'), ('but', 'CCONJ'), ('like', 'INTJ'), ('every', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('way', 'NOUN'), (' ', 'SPACE'), ('Greatness', 'PROPN'), ('will', 'AUX'), ('not', 'PART'), ('make', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), ('\n\n', 'SPACE'), ('Strange', 'ADJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('cried', 'VERB'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('What', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('wealth', 'NOUN'), ('or', 'CCONJ'), ('grandeur', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('with', 'ADP'), ('happiness', 'NOUN'), ('\n\n', 'SPACE'), ('Grandeur', 'PROPN'), ('has', 'VERB'), ('but', 'CCONJ'), ('little', 'ADJ'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('but', 'CCONJ'), ('wealth', 'NOUN'), ('\n', 'SPACE'), ('has', 'VERB'), ('much', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('for', 'ADP'), ('shame', 'NOUN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('money', 'NOUN'), ('can', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('give', 'VERB'), ('happiness', 'NOUN'), ('where', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('nothing', 'PRON'), ('else', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Beyond', 'ADP'), ('a', 'DET'), ('competence', 'NOUN'), ('it', 'PRON'), ('can', 'AUX'), ('afford', 'VERB'), ('no', 'DET'), ('real', 'ADJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('mere', 'ADJ'), ('self', 'NOUN'), ('is', 'AUX'), ('concerned', 'VERB'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('smiling', 'VERB'), ('we', 'PRON'), ('may', 'AUX'), ('come', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('point', 'NOUN'), (' ', 'SPACE'), ('YOUR', 'PRON'), ('competence', 'NOUN'), ('and', 'CCONJ'), ('MY', 'PRON'), ('wealth', 'NOUN'), ('\n', 'SPACE'), ('are', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('alike', 'ADV'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('and', 'CCONJ'), ('without', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('world', 'NOUN'), ('goes', 'VERB'), ('now', 'ADV'), ('we', 'PRON'), ('shall', 'AUX'), ('both', 'PRON'), ('agree', 'VERB'), ('that', 'SCONJ'), ('every', 'DET'), ('\n', 'SPACE'), ('kind', 'NOUN'), ('of', 'ADP'), ('external', 'ADJ'), ('comfort', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('wanting', 'VERB'), (' ', 'SPACE'), ('Your', 'PRON'), ('ideas', 'NOUN'), ('\n', 'SPACE'), ('are', 'AUX'), ('only', 'ADV'), ('more', 'ADV'), ('noble', 'ADJ'), ('than', 'SCONJ'), ('mine', 'PRON'), (' ', 'SPACE'), ('Come', 'VERB'), ('what', 'PRON'), ('is', 'AUX'), ('your', 'PRON'), ('competence', 'NOUN'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('eighteen', 'NUM'), ('hundred', 'NUM'), ('or', 'CCONJ'), ('two', 'NUM'), ('thousand', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('more', 'ADJ'), ('than', 'ADP'), ('THAT', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('laughed', 'VERB'), (' ', 'SPACE'), ('TWO', 'NUM'), ('thousand', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('ONE', 'NOUN'), ('is', 'AUX'), ('my', 'PRON'), ('\n', 'SPACE'), ('wealth', 'NOUN'), ('I', 'PRON'), ('guessed', 'VERB'), ('how', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('end', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('yet', 'ADV'), ('two', 'NUM'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('moderate', 'ADJ'), ('income', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('A', 'DET'), ('family', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('well', 'ADV'), ('be', 'AUX'), ('maintained', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('a', 'PRON'), ('smaller', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('extravagant', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('demands', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('proper', 'ADJ'), ('establishment', 'NOUN'), ('of', 'ADP'), ('servants', 'NOUN'), ('a', 'DET'), ('carriage', 'NOUN'), ('perhaps', 'ADV'), ('two', 'NUM'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hunters', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('supported', 'VERB'), ('on', 'ADP'), ('less', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('smiled', 'VERB'), ('again', 'ADV'), ('to', 'PART'), ('hear', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('describing', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('accurately', 'ADV'), ('their', 'PRON'), ('future', 'ADJ'), ('expenses', 'NOUN'), ('at', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('\n\n', 'SPACE'), ('Hunters', 'NOUN'), ('repeated', 'VERB'), ('Edwardbut', 'PROPN'), ('why', 'SCONJ'), ('must', 'AUX'), ('you', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('hunters', 'NOUN'), (' ', 'SPACE'), ('Every', 'DET'), ('body', 'NOUN'), ('does', 'AUX'), ('not', 'PART'), ('hunt', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('coloured', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('replied', 'VERB'), ('But', 'CCONJ'), ('most', 'ADJ'), ('people', 'NOUN'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('said', 'VERB'), ('Margaret', 'PROPN'), ('striking', 'VERB'), ('out', 'ADP'), ('a', 'DET'), ('novel', 'ADJ'), ('thought', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('somebody', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('us', 'PRON'), ('all', 'DET'), ('a', 'DET'), ('large', 'ADJ'), ('fortune', 'NOUN'), ('apiece', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('would', 'AUX'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('sparkling', 'VERB'), ('with', 'ADP'), ('animation', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('cheeks', 'NOUN'), ('glowing', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('delight', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('imaginary', 'ADJ'), ('happiness', 'NOUN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('are', 'AUX'), ('all', 'ADV'), ('unanimous', 'ADJ'), ('in', 'ADP'), ('that', 'DET'), ('wish', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('insufficiency', 'NOUN'), ('of', 'ADP'), ('wealth', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('dear', 'NOUN'), ('cried', 'VERB'), ('Margaret', 'PROPN'), ('how', 'SCONJ'), ('happy', 'ADJ'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('wonder', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('do', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('looked', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('point', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('puzzled', 'VERB'), ('to', 'PART'), ('spend', 'VERB'), ('so', 'ADV'), ('large', 'ADJ'), ('a', 'DET'), ('fortune', 'NOUN'), ('myself', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('if', 'SCONJ'), ('my', 'PRON'), ('children', 'NOUN'), ('were', 'AUX'), ('all', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('rich', 'ADJ'), ('\n', 'SPACE'), ('my', 'PRON'), ('help', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('begin', 'VERB'), ('your', 'PRON'), ('improvements', 'NOUN'), ('on', 'ADP'), ('this', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('observed', 'VERB'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('your', 'PRON'), ('difficulties', 'NOUN'), ('will', 'AUX'), ('soon', 'ADV'), ('vanish', 'VERB'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('magnificent', 'ADJ'), ('orders', 'NOUN'), ('would', 'AUX'), ('travel', 'VERB'), ('from', 'ADP'), ('this', 'DET'), ('family', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('London', 'PROPN'), ('said', 'VERB'), ('Edward', 'PROPN'), ('in', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('event', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('day', 'NOUN'), ('for', 'ADP'), ('booksellers', 'NOUN'), ('musicsellers', 'NOUN'), ('and', 'CCONJ'), ('printshops', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('would', 'AUX'), ('give', 'VERB'), ('a', 'DET'), ('general', 'ADJ'), ('commission', 'NOUN'), ('for', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('new', 'ADJ'), ('print', 'NOUN'), ('of', 'ADP'), ('merit', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('sent', 'VERB'), ('youand', 'NOUN'), ('as', 'ADP'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('her', 'PRON'), ('greatness', 'NOUN'), ('of', 'ADP'), ('soul', 'NOUN'), ('there', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('music', 'NOUN'), ('enough', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('London', 'PROPN'), ('to', 'PART'), ('content', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('booksThomson', 'PROPN'), ('Cowper', 'PROPN'), ('\n', 'SPACE'), ('Scottshe', 'PROPN'), ('would', 'AUX'), ('buy', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('over', 'ADV'), ('and', 'CCONJ'), ('over', 'ADV'), ('again', 'ADV'), ('she', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('buy', 'VERB'), ('up', 'ADP'), ('every', 'DET'), ('copy', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('to', 'PART'), ('prevent', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('falling', 'VERB'), ('into', 'ADP'), ('unworthy', 'ADJ'), ('hands', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('book', 'NOUN'), ('that', 'PRON'), ('tells', 'VERB'), ('her', 'PRON'), ('how', 'SCONJ'), ('to', 'PART'), ('admire', 'VERB'), ('an', 'DET'), ('old', 'ADJ'), ('twisted', 'ADJ'), ('tree', 'NOUN'), ('\n', 'SPACE'), ('Should', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Forgive', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('saucy', 'PROPN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('willing', 'ADJ'), ('to', 'PART'), ('shew', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('forgot', 'VERB'), ('our', 'PRON'), ('\n', 'SPACE'), ('old', 'ADJ'), ('disputes', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('love', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('reminded', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('Edwardwhether', 'PROPN'), ('it', 'PRON'), ('\n', 'SPACE'), ('be', 'VERB'), ('melancholy', 'ADJ'), ('or', 'CCONJ'), ('gay', 'ADJ'), ('I', 'PRON'), ('love', 'VERB'), ('to', 'PART'), ('recall', 'VERB'), ('itand', 'PROPN'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('never', 'ADV'), ('offend', 'VERB'), ('me', 'PRON'), ('by', 'ADP'), ('talking', 'VERB'), ('of', 'ADP'), ('former', 'ADJ'), ('times', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('right', 'ADV'), ('in', 'ADP'), ('supposing', 'VERB'), ('how', 'SCONJ'), ('my', 'PRON'), ('money', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('spentsome', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('at', 'ADP'), ('leastmy', 'PROPN'), ('loose', 'ADJ'), ('cash', 'NOUN'), ('would', 'AUX'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('employed', 'VERB'), ('in', 'ADP'), ('improving', 'VERB'), ('my', 'PRON'), ('collection', 'NOUN'), ('of', 'ADP'), ('music', 'NOUN'), ('and', 'CCONJ'), ('books', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('the', 'DET'), ('bulk', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('fortune', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('laid', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('in', 'ADP'), ('annuities', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('authors', 'NOUN'), ('or', 'CCONJ'), ('their', 'PRON'), ('heirs', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('Edward', 'PROPN'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'VERB'), ('something', 'PRON'), ('else', 'ADV'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('then', 'ADV'), ('you', 'PRON'), ('would', 'AUX'), ('bestow', 'VERB'), ('it', 'PRON'), ('as', 'ADP'), ('a', 'DET'), ('reward', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('person', 'NOUN'), ('who', 'PRON'), ('wrote', 'VERB'), ('the', 'DET'), ('ablest', 'ADJ'), ('defence', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('favourite', 'ADJ'), ('maxim', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('no', 'DET'), ('one', 'NOUN'), ('can', 'AUX'), ('ever', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('love', 'NOUN'), ('more', 'ADV'), ('than', 'ADP'), ('once', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('lifeyour', 'ADJ'), ('opinion', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('point', 'NOUN'), ('is', 'AUX'), ('unchanged', 'ADJ'), ('I', 'PRON'), ('presume', 'VERB'), ('\n\n', 'SPACE'), ('Undoubtedly', 'ADV'), ('At', 'ADP'), ('my', 'PRON'), ('time', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('opinions', 'NOUN'), ('are', 'AUX'), ('tolerably', 'ADV'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('likely', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('now', 'ADV'), ('see', 'VERB'), ('or', 'CCONJ'), ('hear', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('change', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('is', 'AUX'), ('as', 'ADV'), ('steadfast', 'ADJ'), ('as', 'ADP'), ('ever', 'ADV'), ('you', 'PRON'), ('see', 'VERB'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), ('altered', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('only', 'ADV'), ('grown', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('more', 'ADJ'), ('grave', 'ADJ'), ('than', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('Nay', 'PROPN'), ('Edward', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('you', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('reproach', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('gay', 'ADJ'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('so', 'ADV'), ('replied', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('sigh', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('gaiety', 'NOUN'), ('never', 'ADV'), ('was', 'AUX'), ('a', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('MY', 'PROPN'), ('character', 'NOUN'), ('\n\n', 'SPACE'), ('Nor', 'CCONJ'), ('do', 'AUX'), ('I', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('hardly', 'ADV'), ('call', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('lively', 'ADJ'), ('girlshe', 'NOUN'), ('is', 'AUX'), ('very', 'ADV'), ('earnest', 'ADJ'), ('\n', 'SPACE'), ('very', 'ADV'), ('eager', 'ADJ'), ('in', 'ADP'), ('all', 'DET'), ('she', 'PRON'), ('doessometimes', 'VERB'), ('talks', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('always', 'ADV'), ('with', 'ADP'), ('animationbut', 'PROPN'), ('she', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('really', 'ADV'), ('merry', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('you', 'PRON'), ('are', 'AUX'), ('right', 'ADJ'), ('he', 'PRON'), ('replied', 'VERB'), ('and', 'CCONJ'), ('yet', 'ADV'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('always', 'ADV'), ('set', 'VERB'), ('her', 'PRON'), ('down', 'ADP'), ('as', 'ADP'), ('a', 'DET'), ('lively', 'ADJ'), ('girl', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('frequently', 'ADV'), ('detected', 'VERB'), ('myself', 'PRON'), ('in', 'ADP'), ('such', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('mistakes', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('total', 'ADJ'), ('misapprehension', 'NOUN'), ('of', 'ADP'), ('character', 'NOUN'), ('in', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('point', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), ('fancying', 'VERB'), ('people', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('more', 'ADV'), ('gay', 'ADJ'), ('or', 'CCONJ'), ('grave', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('ingenious', 'ADJ'), ('or', 'CCONJ'), ('stupid', 'ADJ'), ('than', 'SCONJ'), ('they', 'PRON'), ('really', 'ADV'), ('are', 'AUX'), ('and', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('hardly', 'ADV'), ('tell', 'VERB'), ('why', 'SCONJ'), ('or', 'CCONJ'), ('in', 'ADP'), ('what', 'PRON'), ('the', 'DET'), ('deception', 'NOUN'), ('originated', 'VERB'), ('\n', 'SPACE'), ('Sometimes', 'ADV'), ('one', 'PRON'), ('is', 'AUX'), ('guided', 'VERB'), ('by', 'ADP'), ('what', 'PRON'), ('they', 'PRON'), ('say', 'VERB'), ('of', 'ADP'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('very', 'ADV'), ('frequently', 'ADV'), ('by', 'ADP'), ('what', 'PRON'), ('other', 'ADJ'), ('people', 'NOUN'), ('say', 'VERB'), ('of', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('without', 'ADP'), ('giving', 'VERB'), ('oneself', 'PRON'), ('time', 'NOUN'), ('to', 'PART'), ('deliberate', 'VERB'), ('and', 'CCONJ'), ('judge', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('right', 'ADJ'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('guided', 'VERB'), ('wholly', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('opinion', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('our', 'PRON'), ('judgments', 'NOUN'), ('were', 'AUX'), ('given', 'VERB'), ('us', 'PRON'), ('merely', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('subservient', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('those', 'PRON'), ('of', 'ADP'), ('neighbours', 'NOUN'), (' ', 'SPACE'), ('This', 'PRON'), ('has', 'AUX'), ('always', 'ADV'), ('been', 'AUX'), ('your', 'PRON'), ('doctrine', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n\n', 'SPACE'), ('No', 'DET'), ('Marianne', 'PROPN'), ('never', 'ADV'), (' ', 'SPACE'), ('My', 'PRON'), ('doctrine', 'NOUN'), ('has', 'AUX'), ('never', 'ADV'), ('aimed', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('subjection', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('understanding', 'NOUN'), (' ', 'SPACE'), ('All', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('ever', 'ADV'), ('attempted', 'VERB'), ('to', 'PART'), ('influence', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('the', 'DET'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('confound', 'VERB'), ('my', 'PRON'), ('meaning', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('guilty', 'ADJ'), ('I', 'PRON'), ('confess', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('having', 'AUX'), ('often', 'ADV'), ('wished', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('treat', 'VERB'), ('our', 'PRON'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('general', 'ADJ'), ('with', 'ADP'), ('greater', 'ADJ'), ('attention', 'NOUN'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('have', 'AUX'), ('I', 'PRON'), ('advised', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('to', 'PART'), ('adopt', 'VERB'), ('their', 'PRON'), ('sentiments', 'NOUN'), ('or', 'CCONJ'), ('to', 'PART'), ('conform', 'VERB'), ('to', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('judgment', 'NOUN'), ('in', 'ADP'), ('serious', 'ADJ'), ('matters', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('bring', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('over', 'ADP'), ('to', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('plan', 'NOUN'), ('of', 'ADP'), ('general', 'ADJ'), ('civility', 'NOUN'), ('said', 'VERB'), ('Edward', 'PROPN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('Do', 'AUX'), ('you', 'PRON'), ('gain', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('ground', 'NOUN'), ('\n\n', 'SPACE'), ('Quite', 'DET'), ('the', 'DET'), ('contrary', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('looking', 'VERB'), ('expressively', 'ADV'), ('at', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('judgment', 'NOUN'), ('he', 'PRON'), ('returned', 'VERB'), ('is', 'AUX'), ('all', 'ADV'), ('on', 'ADP'), ('your', 'PRON'), ('side', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('my', 'PRON'), ('practice', 'NOUN'), ('is', 'AUX'), ('much', 'ADV'), ('\n', 'SPACE'), ('more', 'ADV'), ('on', 'ADP'), ('your', 'PRON'), ('sisters', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('wish', 'VERB'), ('to', 'PART'), ('offend', 'VERB'), ('but', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('am', 'AUX'), ('so', 'ADV'), ('foolishly', 'ADV'), ('shy', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('often', 'ADV'), ('seem', 'VERB'), ('negligent', 'ADJ'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('only', 'ADV'), ('kept', 'VERB'), ('back', 'ADV'), ('by', 'ADP'), ('my', 'PRON'), ('natural', 'ADJ'), ('awkwardness', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('frequently', 'ADV'), ('thought', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('intended', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('nature', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('fond', 'ADJ'), ('of', 'ADP'), ('low', 'ADJ'), ('company', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('little', 'ADJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('my', 'PRON'), ('ease', 'NOUN'), ('among', 'ADP'), ('strangers', 'NOUN'), ('of', 'ADP'), ('gentility', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('has', 'AUX'), ('not', 'PART'), ('shyness', 'VERB'), ('to', 'PART'), ('excuse', 'VERB'), ('any', 'DET'), ('inattention', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('hers', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('knows', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('worth', 'NOUN'), ('too', 'ADV'), ('well', 'ADV'), ('for', 'ADP'), ('false', 'ADJ'), ('shame', 'NOUN'), ('\n', 'SPACE'), ('replied', 'VERB'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('Shyness', 'PROPN'), ('is', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('inferiority', 'NOUN'), ('in', 'ADP'), ('some', 'DET'), ('way', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), (' ', 'SPACE'), ('If', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('persuade', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('that', 'SCONJ'), ('my', 'PRON'), ('manners', 'NOUN'), ('were', 'AUX'), ('perfectly', 'ADV'), ('easy', 'ADJ'), ('and', 'CCONJ'), ('graceful', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('shy', 'ADJ'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('would', 'AUX'), ('still', 'ADV'), ('be', 'AUX'), ('reserved', 'VERB'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'PRON'), ('is', 'AUX'), ('worse', 'ADJ'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('startedReserved', 'VERB'), ('Am', 'AUX'), ('I', 'PRON'), ('reserved', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('very', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('understand', 'VERB'), ('you', 'PRON'), ('replied', 'VERB'), ('he', 'PRON'), ('colouring', 'VERB'), ('\n', 'SPACE'), ('Reservedhow', 'PROPN'), ('in', 'ADP'), ('what', 'DET'), ('manner', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('am', 'AUX'), ('I', 'PRON'), ('to', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('What', 'PRON'), ('can', 'AUX'), ('you', 'PRON'), ('suppose', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('looked', 'VERB'), ('surprised', 'ADJ'), ('at', 'ADP'), ('his', 'PRON'), ('emotion', 'NOUN'), ('but', 'CCONJ'), ('trying', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('laugh', 'VERB'), ('off', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('she', 'PRON'), ('said', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('Do', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('\n', 'SPACE'), ('know', 'VERB'), ('my', 'PRON'), ('sister', 'NOUN'), ('well', 'ADV'), ('enough', 'ADV'), ('to', 'PART'), ('understand', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('means', 'VERB'), ('\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('know', 'VERB'), ('she', 'PRON'), ('calls', 'VERB'), ('every', 'DET'), ('one', 'NUM'), ('reserved', 'VERB'), ('who', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('talk', 'VERB'), ('as', 'ADV'), ('fast', 'ADV'), ('and', 'CCONJ'), ('admire', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('admires', 'VERB'), ('as', 'ADV'), ('rapturously', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('made', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('gravity', 'NOUN'), ('and', 'CCONJ'), ('thoughtfulness', 'NOUN'), ('\n', 'SPACE'), ('returned', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('their', 'PRON'), ('fullest', 'ADJ'), ('extentand', 'NOUN'), ('he', 'PRON'), ('sat', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('silent', 'ADJ'), ('and', 'CCONJ'), ('dull', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('18', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('with', 'ADP'), ('great', 'ADJ'), ('uneasiness', 'NOUN'), ('the', 'DET'), ('low', 'ADJ'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('friend', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('visit', 'NOUN'), ('afforded', 'VERB'), ('her', 'PRON'), ('but', 'CCONJ'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('partial', 'ADJ'), ('satisfaction', 'NOUN'), ('while', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('enjoyment', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('appeared', 'VERB'), ('so', 'ADV'), ('imperfect', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('evident', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('unhappy', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('wished', 'VERB'), ('it', 'PRON'), ('were', 'AUX'), ('equally', 'ADV'), ('evident', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('still', 'ADV'), ('\n', 'SPACE'), ('distinguished', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('affection', 'NOUN'), ('which', 'PRON'), ('once', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('felt', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('inspiring', 'VERB'), ('but', 'CCONJ'), ('hitherto', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('continuance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('preference', 'NOUN'), ('seemed', 'VERB'), ('very', 'ADV'), ('uncertain', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('reservedness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('towards', 'ADP'), ('her', 'PRON'), ('contradicted', 'VERB'), ('\n', 'SPACE'), ('one', 'NUM'), ('moment', 'NOUN'), ('what', 'PRON'), ('a', 'DET'), ('more', 'ADV'), ('animated', 'ADJ'), ('look', 'NOUN'), ('had', 'AUX'), ('intimated', 'VERB'), ('the', 'DET'), ('preceding', 'VERB'), ('\n', 'SPACE'), ('one', 'NUM'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('joined', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('breakfastroom', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('before', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('were', 'AUX'), ('down', 'ADV'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('eager', 'ADJ'), ('to', 'PART'), ('promote', 'VERB'), ('their', 'PRON'), ('happiness', 'NOUN'), ('as', 'ADV'), ('far', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('soon', 'ADV'), ('left', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('themselves', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('before', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('half', 'ADJ'), ('way', 'NOUN'), ('upstairs', 'ADV'), ('she', 'PRON'), ('heard', 'VERB'), ('the', 'DET'), ('parlour', 'ADJ'), ('door', 'NOUN'), ('open', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('turning', 'VERB'), ('round', 'NOUN'), ('was', 'AUX'), ('astonished', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('Edward', 'PROPN'), ('himself', 'PRON'), ('come', 'VERB'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('going', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('village', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('my', 'PRON'), ('horses', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('be', 'AUX'), ('as', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('yet', 'ADV'), ('ready', 'ADJ'), ('for', 'ADP'), ('breakfast', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('back', 'ADV'), ('again', 'ADV'), ('presently', 'ADV'), ('\n\n \n\n', 'SPACE'), ('Edward', 'PROPN'), ('returned', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('with', 'ADP'), ('fresh', 'ADJ'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('surrounding', 'VERB'), ('country', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('walk', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('village', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('many', 'ADJ'), ('parts', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('valley', 'NOUN'), ('to', 'ADP'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('village', 'NOUN'), ('itself', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('much', 'ADV'), ('higher', 'ADJ'), ('situation', 'NOUN'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('cottage', 'NOUN'), ('afforded', 'VERB'), ('a', 'DET'), ('general', 'ADJ'), ('view', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('exceedingly', 'ADV'), ('pleased', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('subject', 'NOUN'), ('which', 'PRON'), ('ensured', 'VERB'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('beginning', 'VERB'), ('to', 'PART'), ('describe', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('own', 'ADJ'), ('admiration', 'NOUN'), ('of', 'ADP'), ('these', 'DET'), ('scenes', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('question', 'VERB'), ('him', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('minutely', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('objects', 'NOUN'), ('that', 'PRON'), ('had', 'AUX'), ('particularly', 'ADV'), ('struck', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('Edward', 'PROPN'), ('interrupted', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('saying', 'VERB'), ('You', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('enquire', 'VERB'), ('too', 'ADV'), ('far', 'ADV'), ('Marianneremember', 'PROPN'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('picturesque', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('offend', 'VERB'), ('you', 'PRON'), ('by', 'ADP'), ('my', 'PRON'), ('ignorance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('want', 'VERB'), ('of', 'ADP'), ('taste', 'NOUN'), ('if', 'SCONJ'), ('we', 'PRON'), ('come', 'VERB'), ('to', 'ADP'), ('particulars', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('call', 'VERB'), ('\n', 'SPACE'), ('hills', 'NOUN'), ('steep', 'NOUN'), ('which', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('bold', 'ADJ'), ('surfaces', 'NOUN'), ('strange', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('uncouth', 'PROPN'), ('which', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('irregular', 'ADJ'), ('and', 'CCONJ'), ('rugged', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('distant', 'ADJ'), ('objects', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('sight', 'NOUN'), ('which', 'PRON'), ('ought', 'AUX'), ('only', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('indistinct', 'ADJ'), ('through', 'ADP'), ('the', 'DET'), ('soft', 'ADJ'), ('medium', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('hazy', 'ADJ'), ('atmosphere', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('such', 'ADJ'), ('admiration', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('honestly', 'ADV'), ('give', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('call', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('fine', 'ADJ'), ('countrythe', 'NOUN'), ('\n', 'SPACE'), ('hills', 'NOUN'), ('are', 'AUX'), ('steep', 'ADJ'), ('the', 'DET'), ('woods', 'NOUN'), ('seem', 'VERB'), ('full', 'ADJ'), ('of', 'ADP'), ('fine', 'ADJ'), ('timber', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('valley', 'NOUN'), ('looks', 'VERB'), ('comfortable', 'ADJ'), ('and', 'CCONJ'), ('snugwith', 'ADJ'), ('rich', 'ADJ'), ('\n', 'SPACE'), ('meadows', 'NOUN'), ('and', 'CCONJ'), ('several', 'ADJ'), ('neat', 'ADJ'), ('farm', 'NOUN'), ('houses', 'NOUN'), ('scattered', 'VERB'), ('here', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('there', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('exactly', 'ADV'), ('answers', 'VERB'), ('my', 'PRON'), ('idea', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('fine', 'ADJ'), ('country', 'NOUN'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('it', 'PRON'), ('unites', 'VERB'), ('beauty', 'NOUN'), ('with', 'ADP'), ('utilityand', 'INTJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('a', 'DET'), ('picturesque', 'ADJ'), ('one', 'NOUN'), ('too', 'ADV'), ('because', 'SCONJ'), ('you', 'PRON'), ('admire', 'VERB'), ('it', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('easily', 'ADV'), ('believe', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('full', 'ADJ'), ('of', 'ADP'), ('rocks', 'NOUN'), ('and', 'CCONJ'), ('promontories', 'NOUN'), ('\n', 'SPACE'), ('grey', 'ADJ'), ('moss', 'PROPN'), ('and', 'CCONJ'), ('brush', 'NOUN'), ('wood', 'NOUN'), ('but', 'CCONJ'), ('these', 'PRON'), ('are', 'AUX'), ('all', 'PRON'), ('lost', 'VERB'), ('on', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('picturesque', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('but', 'CCONJ'), ('too', 'ADV'), ('true', 'ADJ'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('boast', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('suspect', 'VERB'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('that', 'PRON'), ('to', 'PART'), ('avoid', 'VERB'), ('one', 'NUM'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('affectation', 'NOUN'), ('Edward', 'PROPN'), ('here', 'ADV'), ('falls', 'VERB'), ('into', 'ADP'), ('another', 'PRON'), (' ', 'SPACE'), ('Because', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('believes', 'VERB'), ('many', 'ADJ'), ('people', 'NOUN'), ('pretend', 'VERB'), ('to', 'ADP'), ('more', 'ADJ'), ('admiration', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('beauties', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('nature', 'NOUN'), ('than', 'SCONJ'), ('they', 'PRON'), ('really', 'ADV'), ('feel', 'VERB'), ('and', 'CCONJ'), ('is', 'AUX'), ('disgusted', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('such', 'ADJ'), ('pretensions', 'NOUN'), ('he', 'PRON'), ('affects', 'VERB'), ('greater', 'ADJ'), ('indifference', 'NOUN'), ('and', 'CCONJ'), ('less', 'ADJ'), ('\n', 'SPACE'), ('discrimination', 'NOUN'), ('in', 'ADP'), ('viewing', 'VERB'), ('them', 'PRON'), ('himself', 'PRON'), ('than', 'SCONJ'), ('he', 'PRON'), ('possesses', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('fastidious', 'ADJ'), ('and', 'CCONJ'), ('will', 'AUX'), ('have', 'VERB'), ('an', 'DET'), ('affectation', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('true', 'ADJ'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('that', 'SCONJ'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('landscape', 'NOUN'), ('scenery', 'NOUN'), ('is', 'AUX'), ('become', 'VERB'), ('a', 'DET'), ('mere', 'ADJ'), ('jargon', 'NOUN'), ('\n', 'SPACE'), ('Every', 'DET'), ('body', 'NOUN'), ('pretends', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('and', 'CCONJ'), ('tries', 'VERB'), ('to', 'PART'), ('describe', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('taste', 'NOUN'), ('and', 'CCONJ'), ('elegance', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('who', 'PRON'), ('first', 'ADV'), ('defined', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('picturesque', 'ADJ'), ('beauty', 'NOUN'), ('was', 'AUX'), (' ', 'SPACE'), ('I', 'PRON'), ('detest', 'ADJ'), ('jargon', 'PROPN'), ('of', 'ADP'), ('every', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('kept', 'VERB'), ('my', 'PRON'), ('feelings', 'NOUN'), ('to', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('find', 'VERB'), ('no', 'DET'), ('language', 'NOUN'), ('to', 'PART'), ('describe', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('but', 'CCONJ'), ('what', 'PRON'), ('was', 'AUX'), ('worn', 'VERB'), ('and', 'CCONJ'), ('hackneyed', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('all', 'DET'), ('sense', 'NOUN'), ('and', 'CCONJ'), ('meaning', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('convinced', 'VERB'), ('said', 'VERB'), ('Edward', 'PROPN'), ('that', 'SCONJ'), ('you', 'PRON'), ('really', 'ADV'), ('feel', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('delight', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('fine', 'ADJ'), ('prospect', 'NOUN'), ('which', 'PRON'), ('you', 'PRON'), ('profess', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('feel', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('in', 'ADP'), ('return', 'NOUN'), ('your', 'PRON'), ('sister', 'NOUN'), ('must', 'AUX'), ('allow', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('feel', 'VERB'), ('no', 'ADV'), ('more', 'ADJ'), ('than', 'SCONJ'), ('I', 'PRON'), ('profess', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('like', 'VERB'), ('a', 'DET'), ('fine', 'ADJ'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('not', 'PART'), ('on', 'ADP'), ('picturesque', 'ADJ'), ('principles', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('crooked', 'VERB'), ('\n', 'SPACE'), ('twisted', 'VERB'), ('blasted', 'VERB'), ('trees', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('admire', 'VERB'), ('them', 'PRON'), ('much', 'ADV'), ('more', 'ADJ'), ('if', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('tall', 'ADJ'), ('straight', 'ADJ'), ('and', 'CCONJ'), ('flourishing', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('ruined', 'VERB'), ('\n', 'SPACE'), ('tattered', 'ADJ'), ('cottages', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('fond', 'ADJ'), ('of', 'ADP'), ('nettles', 'NOUN'), ('or', 'CCONJ'), ('thistles', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('heath', 'NOUN'), ('blossoms', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('more', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('snug', 'ADJ'), ('\n', 'SPACE'), ('farmhouse', 'NOUN'), ('than', 'ADP'), ('a', 'DET'), ('watchtowerand', 'NOUN'), ('a', 'DET'), ('troop', 'NOUN'), ('of', 'ADP'), ('tidy', 'ADJ'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('villages', 'NOUN'), ('please', 'VERB'), ('me', 'PRON'), ('better', 'ADV'), ('than', 'ADP'), ('the', 'DET'), ('finest', 'ADJ'), ('banditti', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('looked', 'VERB'), ('with', 'ADP'), ('amazement', 'NOUN'), ('at', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('compassion', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('only', 'ADV'), ('laughed', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('subject', 'NOUN'), ('was', 'AUX'), ('continued', 'VERB'), ('no', 'ADV'), ('farther', 'ADV'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('remained', 'VERB'), ('thoughtfully', 'ADV'), ('silent', 'ADJ'), ('till', 'SCONJ'), ('a', 'DET'), ('new', 'ADJ'), ('object', 'NOUN'), ('suddenly', 'ADV'), ('\n', 'SPACE'), ('engaged', 'VERB'), ('her', 'PRON'), ('attention', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('by', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('taking', 'VERB'), ('his', 'PRON'), ('tea', 'NOUN'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('his', 'PRON'), ('hand', 'NOUN'), ('passed', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('directly', 'ADV'), ('before', 'ADP'), ('her', 'PRON'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('ring', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('plait', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('hair', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('centre', 'NOUN'), ('very', 'ADV'), ('conspicuous', 'ADJ'), ('on', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('his', 'PRON'), ('fingers', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('saw', 'VERB'), ('you', 'PRON'), ('wear', 'VERB'), ('a', 'DET'), ('ring', 'NOUN'), ('before', 'ADP'), ('Edward', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('\n', 'SPACE'), ('Is', 'AUX'), ('that', 'SCONJ'), ('Fannys', 'PROPN'), ('hair', 'NOUN'), ('I', 'PRON'), ('remember', 'VERB'), ('her', 'PRON'), ('promising', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('some', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('thought', 'VERB'), ('her', 'PRON'), ('hair', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('darker', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('spoke', 'VERB'), ('inconsiderately', 'ADV'), ('what', 'PRON'), ('she', 'PRON'), ('really', 'ADV'), ('felt', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('how', 'SCONJ'), ('much', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('pained', 'VERB'), ('Edward', 'PROPN'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('vexation', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('thought', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('surpassed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('his', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('coloured', 'VERB'), ('very', 'ADV'), ('deeply', 'ADV'), ('and', 'CCONJ'), ('giving', 'VERB'), ('a', 'DET'), ('momentary', 'ADJ'), ('\n', 'SPACE'), ('glance', 'NOUN'), ('at', 'ADP'), ('Elinor', 'PROPN'), ('replied', 'VERB'), ('Yes', 'INTJ'), ('it', 'PRON'), ('is', 'AUX'), ('my', 'PRON'), ('sisters', 'NOUN'), ('hair', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('setting', 'NOUN'), ('always', 'ADV'), ('casts', 'VERB'), ('a', 'DET'), ('different', 'ADJ'), ('shade', 'NOUN'), ('on', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('met', 'VERB'), ('his', 'PRON'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('looked', 'VERB'), ('conscious', 'ADJ'), ('likewise', 'ADV'), ('\n', 'SPACE'), ('That', 'SCONJ'), ('the', 'DET'), ('hair', 'NOUN'), ('was', 'AUX'), ('her', 'PRON'), ('own', 'ADJ'), ('she', 'PRON'), ('instantaneously', 'ADV'), ('felt', 'VERB'), ('as', 'ADV'), ('\n', 'SPACE'), ('well', 'ADV'), ('satisfied', 'ADJ'), ('as', 'ADP'), ('Marianne', 'PROPN'), ('the', 'DET'), ('only', 'ADJ'), ('difference', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('conclusions', 'NOUN'), ('was', 'AUX'), ('that', 'SCONJ'), ('what', 'PRON'), ('Marianne', 'PROPN'), ('considered', 'VERB'), ('as', 'ADP'), ('a', 'DET'), ('free', 'ADJ'), ('\n', 'SPACE'), ('gift', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('conscious', 'ADJ'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('procured', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('theft', 'NOUN'), ('or', 'CCONJ'), ('contrivance', 'NOUN'), ('unknown', 'ADJ'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('a', 'DET'), ('humour', 'NOUN'), ('however', 'ADV'), ('to', 'PART'), ('regard', 'VERB'), ('it', 'PRON'), ('as', 'ADP'), ('an', 'DET'), ('affront', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('affecting', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('no', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('passed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('instantly', 'ADV'), ('talking', 'VERB'), ('of', 'ADP'), ('something', 'PRON'), ('else', 'ADV'), ('she', 'PRON'), ('internally', 'ADV'), ('\n', 'SPACE'), ('resolved', 'VERB'), ('henceforward', 'NOUN'), ('to', 'PART'), ('catch', 'VERB'), ('every', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('eyeing', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('hair', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('satisfying', 'VERB'), ('herself', 'PRON'), ('beyond', 'ADP'), ('all', 'DET'), ('doubt', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('exactly', 'ADV'), ('the', 'DET'), ('shade', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n\n', 'SPACE'), ('Edwards', 'PROPN'), ('embarrassment', 'NOUN'), ('lasted', 'VERB'), ('some', 'DET'), ('time', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('ended', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('absence', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('still', 'ADV'), ('more', 'ADV'), ('settled', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('particularly', 'ADV'), ('grave', 'ADJ'), ('the', 'DET'), ('whole', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('severely', 'ADV'), ('censured', 'VERB'), ('herself', 'PRON'), ('for', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('forgiveness', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('speedy', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('she', 'PRON'), ('known', 'VERB'), ('how', 'SCONJ'), ('little', 'ADJ'), ('offence', 'NOUN'), ('it', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Before', 'ADP'), ('the', 'DET'), ('middle', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('visited', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('having', 'AUX'), ('heard', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('gentleman', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('came', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('a', 'DET'), ('survey', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('guest', 'NOUN'), (' ', 'SPACE'), ('With', 'ADP'), ('the', 'DET'), ('assistance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('motherinlaw', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('long', 'ADV'), ('in', 'ADP'), ('discovering', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Ferrars', 'NOUN'), ('began', 'VERB'), ('with', 'ADP'), ('an', 'DET'), ('F', 'PROPN'), ('and', 'CCONJ'), ('this', 'PRON'), ('prepared', 'VERB'), ('a', 'DET'), ('future', 'ADJ'), ('mine', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('raillery', 'NOUN'), ('against', 'ADP'), ('the', 'DET'), ('devoted', 'ADJ'), ('Elinor', 'PROPN'), ('which', 'DET'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('newness', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('Edward', 'PROPN'), ('could', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('prevented', 'VERB'), ('from', 'ADP'), ('being', 'AUX'), ('immediately', 'ADV'), ('sprung', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('she', 'PRON'), ('only', 'ADV'), ('learned', 'VERB'), ('from', 'ADP'), ('some', 'DET'), ('very', 'ADV'), ('significant', 'ADJ'), ('looks', 'VERB'), ('how', 'SCONJ'), ('far', 'ADV'), ('\n', 'SPACE'), ('their', 'PRON'), ('penetration', 'NOUN'), ('founded', 'VERB'), ('on', 'ADP'), ('Margarets', 'PROPN'), ('instructions', 'NOUN'), ('extended', 'VERB'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('never', 'ADV'), ('came', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('without', 'ADP'), ('either', 'ADV'), ('\n', 'SPACE'), ('inviting', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('dine', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('or', 'CCONJ'), ('to', 'PART'), ('drink', 'VERB'), ('\n', 'SPACE'), ('tea', 'NOUN'), ('with', 'ADP'), ('them', 'PRON'), ('that', 'DET'), ('evening', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('better', 'ADJ'), ('entertainment', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('visitor', 'NOUN'), ('towards', 'ADP'), ('\n', 'SPACE'), ('whose', 'DET'), ('amusement', 'NOUN'), ('he', 'PRON'), ('felt', 'VERB'), ('himself', 'PRON'), ('bound', 'VERB'), ('to', 'PART'), ('contribute', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('engage', 'VERB'), ('them', 'PRON'), ('for', 'ADP'), ('both', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('MUST', 'AUX'), ('drink', 'VERB'), ('tea', 'NOUN'), ('with', 'ADP'), ('us', 'PRON'), ('to', 'ADP'), ('night', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('aloneand', 'NOUN'), ('tomorrow', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('absolutely', 'ADV'), ('dine', 'VERB'), ('with', 'ADP'), ('us', 'PRON'), ('for', 'SCONJ'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('large', 'ADJ'), ('party', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('enforced', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('who', 'PRON'), ('knows', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('you', 'PRON'), ('may', 'AUX'), ('raise', 'VERB'), ('a', 'DET'), ('dance', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('that', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('tempt', 'VERB'), ('YOU', 'PRON'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('dance', 'NOUN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Impossible', 'ADJ'), ('Who', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('dance', 'VERB'), ('\n\n', 'SPACE'), ('Who', 'PRON'), ('why', 'SCONJ'), ('yourselves', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('Careys', 'PROPN'), ('and', 'CCONJ'), ('Whitakers', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('sureWhat', 'SCONJ'), ('you', 'PRON'), ('thought', 'VERB'), ('nobody', 'PRON'), ('could', 'AUX'), ('dance', 'VERB'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('a', 'DET'), ('certain', 'ADJ'), ('person', 'NOUN'), ('that', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('nameless', 'NOUN'), ('is', 'AUX'), ('gone', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('soul', 'NOUN'), ('cried', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('were', 'AUX'), ('among', 'ADP'), ('us', 'PRON'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('and', 'CCONJ'), ('Mariannes', 'PROPN'), ('blushing', 'NOUN'), ('gave', 'VERB'), ('new', 'ADJ'), ('suspicions', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('who', 'PRON'), ('is', 'AUX'), ('Willoughby', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('by', 'ADP'), ('whom', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('gave', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('brief', 'ADJ'), ('reply', 'NOUN'), (' ', 'SPACE'), ('Mariannes', 'PROPN'), ('countenance', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('more', 'ADV'), ('communicative', 'ADJ'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('saw', 'VERB'), ('enough', 'ADV'), ('to', 'PART'), ('comprehend', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('only', 'ADV'), ('the', 'DET'), ('meaning', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('but', 'CCONJ'), ('such', 'ADJ'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('expressions', 'NOUN'), ('as', 'SCONJ'), ('had', 'AUX'), ('puzzled', 'VERB'), ('him', 'PRON'), ('before', 'ADV'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('their', 'PRON'), ('\n', 'SPACE'), ('visitors', 'NOUN'), ('left', 'VERB'), ('them', 'PRON'), ('he', 'PRON'), ('went', 'VERB'), ('immediately', 'ADV'), ('round', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('said', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('whisper', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('guessing', 'VERB'), (' ', 'SPACE'), ('Shall', 'AUX'), ('I', 'PRON'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('my', 'PRON'), ('guess', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('\n\n', 'SPACE'), ('Shall', 'AUX'), ('I', 'PRON'), ('tell', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('I', 'PRON'), ('guess', 'VERB'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('hunts', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('surprised', 'ADJ'), ('and', 'CCONJ'), ('confused', 'ADJ'), ('yet', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('help', 'VERB'), ('smiling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('quiet', 'ADJ'), ('archness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('silence', 'NOUN'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Edward', 'PROPN'), ('How', 'SCONJ'), ('can', 'AUX'), ('youBut', 'VERB'), ('the', 'DET'), ('time', 'NOUN'), ('will', 'AUX'), ('come', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('hopeI', 'PROPN'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('like', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('doubt', 'VERB'), ('it', 'PRON'), ('replied', 'VERB'), ('he', 'PRON'), ('rather', 'ADV'), ('astonished', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('her', 'PRON'), ('earnestness', 'NOUN'), ('and', 'CCONJ'), ('warmth', 'NOUN'), ('for', 'SCONJ'), ('had', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('imagined', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('joke', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('good', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('acquaintance', 'NOUN'), ('in', 'ADP'), ('general', 'ADJ'), ('\n', 'SPACE'), ('founded', 'VERB'), ('only', 'ADV'), ('on', 'ADP'), ('a', 'DET'), ('something', 'PRON'), ('or', 'CCONJ'), ('a', 'DET'), ('nothing', 'PRON'), ('between', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('herself', 'PRON'), ('he', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('ventured', 'VERB'), ('to', 'PART'), ('mention', 'VERB'), ('it', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('19', 'NUM'), ('\n\n\n', 'SPACE'), ('Edward', 'PROPN'), ('remained', 'VERB'), ('a', 'DET'), ('week', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('earnestly', 'ADV'), ('\n', 'SPACE'), ('pressed', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('to', 'PART'), ('stay', 'VERB'), ('longer', 'ADV'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('bent', 'ADJ'), ('only', 'ADV'), ('on', 'ADP'), ('selfmortification', 'NOUN'), ('he', 'PRON'), ('seemed', 'VERB'), ('resolved', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), ('when', 'SCONJ'), ('his', 'PRON'), ('enjoyment', 'NOUN'), ('among', 'ADP'), ('his', 'PRON'), ('friends', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('height', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('spirits', 'NOUN'), ('during', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('days', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('still', 'ADV'), ('very', 'ADV'), ('unequal', 'ADJ'), ('were', 'AUX'), ('greatly', 'ADV'), ('improvedhe', 'NOUN'), ('grew', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('and', 'CCONJ'), ('more', 'ADV'), ('partial', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('environsnever', 'ADJ'), ('\n', 'SPACE'), ('spoke', 'VERB'), ('of', 'ADP'), ('going', 'VERB'), ('away', 'ADV'), ('without', 'ADP'), ('a', 'DET'), ('sighdeclared', 'VERB'), ('his', 'PRON'), ('time', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('wholly', 'ADV'), ('disengagedeven', 'ADJ'), ('doubted', 'VERB'), ('to', 'ADP'), ('what', 'DET'), ('place', 'NOUN'), ('he', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('go', 'VERB'), ('when', 'SCONJ'), ('he', 'PRON'), ('left', 'VERB'), ('thembut', 'INTJ'), ('still', 'ADV'), ('go', 'VERB'), ('he', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('Never', 'ADV'), ('had', 'AUX'), ('any', 'DET'), ('week', 'NOUN'), ('passed', 'VERB'), ('so', 'SCONJ'), ('quicklyhe', 'PROPN'), ('could', 'AUX'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('believe', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('said', 'VERB'), ('so', 'ADV'), ('repeatedly', 'ADV'), ('other', 'ADJ'), ('things', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('said', 'VERB'), ('too', 'ADV'), ('which', 'PRON'), ('marked', 'VERB'), ('the', 'DET'), ('turn', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('gave', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('lie', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('actions', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('pleasure', 'NOUN'), ('at', 'ADP'), ('Norland', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('detested', 'VERB'), ('being', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('but', 'CCONJ'), ('either', 'ADV'), ('to', 'ADP'), ('Norland', 'PROPN'), ('or', 'CCONJ'), ('London', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('must', 'AUX'), ('go', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('valued', 'VERB'), ('their', 'PRON'), ('kindness', 'NOUN'), ('beyond', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('greatest', 'ADJ'), ('happiness', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('being', 'AUX'), ('with', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('Yet', 'CCONJ'), ('he', 'PRON'), ('must', 'AUX'), ('leave', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('wishes', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('without', 'ADP'), ('any', 'DET'), ('restraint', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('his', 'PRON'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('placed', 'VERB'), ('all', 'PRON'), ('that', 'PRON'), ('was', 'AUX'), ('astonishing', 'ADJ'), ('in', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('way', 'NOUN'), ('of', 'ADP'), ('acting', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('account', 'VERB'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('for', 'ADP'), ('her', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('mother', 'NOUN'), ('whose', 'DET'), ('character', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('so', 'ADV'), ('imperfectly', 'ADV'), ('known', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('general', 'ADJ'), ('\n', 'SPACE'), ('excuse', 'NOUN'), ('for', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('strange', 'ADJ'), ('on', 'ADP'), ('the', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('son', 'NOUN'), ('\n', 'SPACE'), ('Disappointed', 'PROPN'), ('however', 'ADV'), ('and', 'CCONJ'), ('vexed', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('displeased', 'ADJ'), ('with', 'ADP'), ('his', 'PRON'), ('uncertain', 'ADJ'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('disposed', 'ADJ'), ('on', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('to', 'PART'), ('regard', 'VERB'), ('his', 'PRON'), ('actions', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('candid', 'ADJ'), ('allowances', 'NOUN'), ('and', 'CCONJ'), ('generous', 'ADJ'), ('qualifications', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('rather', 'ADV'), ('more', 'ADV'), ('painfully', 'ADV'), ('extorted', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('Willoughbys', 'PROPN'), ('service', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('openness', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('consistency', 'NOUN'), ('were', 'AUX'), ('most', 'ADV'), ('usually', 'ADV'), ('\n', 'SPACE'), ('attributed', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('independence', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('better', 'ADJ'), ('\n', 'SPACE'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('disposition', 'NOUN'), ('and', 'CCONJ'), ('designs', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('shortness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('visit', 'NOUN'), ('the', 'DET'), ('steadiness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('leaving', 'VERB'), ('them', 'PRON'), ('originated', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('fettered', 'ADJ'), ('inclination', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('inevitable', 'ADJ'), ('necessity', 'NOUN'), ('of', 'ADP'), ('temporizing', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('old', 'ADJ'), ('wellestablished', 'ADJ'), ('grievance', 'NOUN'), ('of', 'ADP'), ('duty', 'NOUN'), ('against', 'ADP'), ('will', 'AUX'), ('\n', 'SPACE'), ('parent', 'NOUN'), ('against', 'ADP'), ('child', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('cause', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('when', 'SCONJ'), ('these', 'DET'), ('difficulties', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('cease', 'VERB'), ('\n', 'SPACE'), ('this', 'DET'), ('opposition', 'NOUN'), ('was', 'AUX'), ('to', 'ADP'), ('yieldwhen', 'NOUN'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('reformed', 'VERB'), ('and', 'CCONJ'), ('her', 'PRON'), ('son', 'NOUN'), ('be', 'AUX'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('from', 'ADP'), ('such', 'ADJ'), ('vain', 'ADJ'), ('wishes', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('turn', 'VERB'), ('for', 'ADP'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('renewal', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('confidence', 'NOUN'), ('in', 'ADP'), ('Edwards', 'PROPN'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('remembrance', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('mark', 'NOUN'), ('of', 'ADP'), ('regard', 'NOUN'), ('in', 'ADP'), ('look', 'NOUN'), ('or', 'CCONJ'), ('word', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('fell', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('while', 'SCONJ'), ('at', 'ADP'), ('Barton', 'PROPN'), ('and', 'CCONJ'), ('above', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('that', 'DET'), ('flattering', 'ADJ'), ('proof', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('which', 'PRON'), ('he', 'PRON'), ('constantly', 'ADV'), ('wore', 'AUX'), ('\n', 'SPACE'), ('round', 'VERB'), ('his', 'PRON'), ('finger', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('Edward', 'PROPN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('at', 'ADP'), ('breakfast', 'NOUN'), ('the', 'DET'), ('last', 'ADJ'), ('morning', 'NOUN'), ('you', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('happier', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('you', 'PRON'), ('had', 'VERB'), ('any', 'DET'), ('profession', 'NOUN'), ('to', 'PART'), ('engage', 'VERB'), ('your', 'PRON'), ('time', 'NOUN'), ('and', 'CCONJ'), ('give', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('interest', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('plans', 'NOUN'), ('and', 'CCONJ'), ('actions', 'NOUN'), (' ', 'SPACE'), ('Some', 'DET'), ('inconvenience', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('your', 'PRON'), ('friends', 'NOUN'), ('indeed', 'ADV'), ('might', 'AUX'), ('result', 'VERB'), ('from', 'ADP'), ('ityou', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('them', 'PRON'), ('so', 'ADV'), ('much', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('time', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('you', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('materially', 'ADV'), ('benefited', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('one', 'NUM'), ('particular', 'ADJ'), ('at', 'ADP'), ('leastyou', 'PRON'), ('would', 'AUX'), ('know', 'VERB'), ('where', 'SCONJ'), ('to', 'PART'), ('go', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('you', 'PRON'), ('left', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('he', 'PRON'), ('replied', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('long', 'ADV'), ('\n', 'SPACE'), ('thought', 'NOUN'), ('on', 'ADP'), ('this', 'DET'), ('point', 'NOUN'), ('as', 'SCONJ'), ('you', 'PRON'), ('think', 'VERB'), ('now', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('is', 'AUX'), ('and', 'CCONJ'), ('probably', 'ADV'), ('will', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('a', 'DET'), ('heavy', 'ADJ'), ('misfortune', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('necessary', 'ADJ'), ('business', 'NOUN'), ('to', 'PART'), ('engage', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('no', 'DET'), ('profession', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('me', 'PRON'), ('employment', 'NOUN'), ('or', 'CCONJ'), ('afford', 'VERB'), ('me', 'PRON'), ('any', 'DET'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('like', 'ADP'), ('independence', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('unfortunately', 'ADV'), ('my', 'PRON'), ('own', 'ADJ'), ('nicety', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('nicety', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('friends', 'NOUN'), ('have', 'AUX'), ('made', 'VERB'), ('me', 'PRON'), ('what', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('an', 'DET'), ('idle', 'ADJ'), ('helpless', 'NOUN'), ('being', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('never', 'ADV'), ('could', 'AUX'), ('agree', 'VERB'), ('in', 'ADP'), ('our', 'PRON'), ('\n', 'SPACE'), ('choice', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('profession', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('always', 'ADV'), ('preferred', 'VERB'), ('the', 'DET'), ('church', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('still', 'ADV'), ('do', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('smart', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('my', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('recommended', 'VERB'), ('the', 'DET'), ('army', 'NOUN'), (' ', 'SPACE'), ('That', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('\n', 'SPACE'), ('too', 'ADV'), ('smart', 'ADJ'), ('for', 'SCONJ'), ('me', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('law', 'NOUN'), ('was', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('genteel', 'ADJ'), ('\n', 'SPACE'), ('enough', 'ADV'), ('many', 'ADJ'), ('young', 'ADJ'), ('men', 'NOUN'), ('who', 'PRON'), ('had', 'VERB'), ('chambers', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('Temple', 'PROPN'), ('\n', 'SPACE'), ('made', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('appearance', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('circles', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('drove', 'VERB'), ('about', 'ADP'), ('town', 'NOUN'), ('in', 'ADP'), ('very', 'ADV'), ('knowing', 'VERB'), ('gigs', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('inclination', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('law', 'NOUN'), ('even', 'ADV'), ('in', 'ADP'), ('this', 'DET'), ('less', 'ADJ'), ('abstruse', 'NOUN'), ('\n', 'SPACE'), ('study', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('which', 'PRON'), ('my', 'PRON'), ('family', 'NOUN'), ('approved', 'VERB'), (' ', 'SPACE'), ('As', 'ADP'), ('for', 'ADP'), ('the', 'DET'), ('navy', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'VERB'), ('fashion', 'NOUN'), ('on', 'ADP'), ('its', 'PRON'), ('side', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('old', 'ADJ'), ('when', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('was', 'AUX'), ('first', 'ADV'), ('started', 'VERB'), ('to', 'PART'), ('enter', 'VERB'), ('itand', 'PROPN'), ('at', 'ADP'), ('length', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('necessity', 'NOUN'), ('for', 'ADP'), ('my', 'PRON'), ('having', 'VERB'), ('any', 'DET'), ('profession', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADV'), ('all', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('as', 'ADP'), ('dashing', 'ADJ'), ('and', 'CCONJ'), ('expensive', 'ADJ'), ('without', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('red', 'ADJ'), ('coat', 'NOUN'), ('on', 'ADP'), ('my', 'PRON'), ('back', 'NOUN'), ('as', 'ADP'), ('with', 'ADP'), ('one', 'NUM'), ('idleness', 'NOUN'), ('was', 'AUX'), ('pronounced', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('most', 'ADV'), ('advantageous', 'ADJ'), ('and', 'CCONJ'), ('honourable', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('of', 'ADP'), ('eighteen', 'NUM'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('general', 'ADJ'), ('so', 'ADV'), ('earnestly', 'ADV'), ('\n', 'SPACE'), ('bent', 'ADJ'), ('on', 'ADP'), ('being', 'AUX'), ('busy', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('resist', 'VERB'), ('the', 'DET'), ('solicitations', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('friends', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('nothing', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('therefore', 'ADV'), ('entered', 'VERB'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('have', 'AUX'), ('been', 'AUX'), ('properly', 'ADV'), ('idle', 'ADJ'), ('ever', 'ADV'), ('since', 'SCONJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('consequence', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('suppose', 'VERB'), ('will', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('since', 'SCONJ'), ('leisure', 'NOUN'), ('has', 'AUX'), ('not', 'PART'), ('promoted', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('own', 'ADJ'), ('happiness', 'NOUN'), ('that', 'PRON'), ('your', 'PRON'), ('sons', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('brought', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('to', 'ADP'), ('as', 'ADV'), ('many', 'ADJ'), ('pursuits', 'NOUN'), ('employments', 'NOUN'), ('professions', 'NOUN'), ('and', 'CCONJ'), ('trades', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Columellas', 'PROPN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('brought', 'VERB'), ('up', 'ADP'), ('said', 'VERB'), ('he', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('serious', 'ADJ'), ('accent', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('as', 'ADV'), ('unlike', 'ADP'), ('myself', 'PRON'), ('as', 'SCONJ'), ('is', 'AUX'), ('possible', 'ADJ'), (' ', 'SPACE'), ('In', 'ADP'), ('feeling', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('action', 'NOUN'), ('in', 'ADP'), ('condition', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('\n\n', 'SPACE'), ('Come', 'VERB'), ('come', 'VERB'), ('this', 'PRON'), ('is', 'AUX'), ('all', 'DET'), ('an', 'DET'), ('effusion', 'NOUN'), ('of', 'ADP'), ('immediate', 'ADJ'), ('\n', 'SPACE'), ('want', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('melancholy', 'ADJ'), ('humour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('fancy', 'ADJ'), ('that', 'SCONJ'), ('any', 'DET'), ('one', 'NUM'), ('unlike', 'ADP'), ('yourself', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('remember', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('pain', 'NOUN'), ('of', 'ADP'), ('parting', 'NOUN'), ('from', 'ADP'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('be', 'AUX'), ('felt', 'VERB'), ('by', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('at', 'ADP'), ('times', 'NOUN'), ('whatever', 'PRON'), ('be', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('education', 'NOUN'), ('or', 'CCONJ'), ('state', 'NOUN'), (' ', 'SPACE'), ('Know', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('happiness', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('want', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('patienceor', 'NOUN'), ('give', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('more', 'ADV'), ('fascinating', 'ADJ'), ('name', 'NOUN'), ('\n', 'SPACE'), ('call', 'NOUN'), ('it', 'PRON'), ('hope', 'VERB'), (' ', 'SPACE'), ('Your', 'PRON'), ('mother', 'NOUN'), ('will', 'AUX'), ('secure', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('in', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('independence', 'NOUN'), ('you', 'PRON'), ('are', 'AUX'), ('so', 'ADV'), ('anxious', 'ADJ'), ('for', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('her', 'PRON'), ('duty', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('it', 'PRON'), ('must', 'AUX'), ('ere', 'ADV'), ('long', 'ADV'), ('become', 'VERB'), ('her', 'PRON'), ('happiness', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('prevent', 'VERB'), ('your', 'PRON'), ('whole', 'ADJ'), ('youth', 'NOUN'), ('from', 'ADP'), ('being', 'AUX'), ('wasted', 'VERB'), ('in', 'ADP'), ('discontent', 'NOUN'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('much', 'ADJ'), ('may', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('replied', 'VERB'), ('Edward', 'PROPN'), ('that', 'SCONJ'), ('I', 'PRON'), ('may', 'AUX'), ('defy', 'VERB'), ('many', 'ADJ'), ('\n', 'SPACE'), ('months', 'NOUN'), ('to', 'PART'), ('produce', 'VERB'), ('any', 'DET'), ('good', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('This', 'DET'), ('desponding', 'VERB'), ('turn', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('though', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('communicated', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('gave', 'VERB'), ('additional', 'ADJ'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('parting', 'NOUN'), ('which', 'PRON'), ('shortly', 'ADV'), ('took', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('left', 'VERB'), ('an', 'DET'), ('uncomfortable', 'ADJ'), ('impression', 'NOUN'), ('on', 'ADP'), ('Elinors', 'NOUN'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('especially', 'ADV'), ('which', 'PRON'), ('required', 'VERB'), ('some', 'DET'), ('trouble', 'NOUN'), ('and', 'CCONJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('to', 'AUX'), ('subdue', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('her', 'PRON'), ('determination', 'NOUN'), ('to', 'PART'), ('subdue', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('prevent', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('appearing', 'VERB'), ('to', 'PART'), ('suffer', 'VERB'), ('more', 'ADJ'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('what', 'PRON'), ('all', 'DET'), ('her', 'PRON'), ('family', 'NOUN'), ('suffered', 'VERB'), ('on', 'ADP'), ('his', 'PRON'), ('going', 'VERB'), ('away', 'ADV'), ('she', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('adopt', 'VERB'), ('the', 'DET'), ('method', 'NOUN'), ('so', 'ADV'), ('judiciously', 'ADV'), ('employed', 'VERB'), ('by', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('a', 'DET'), ('similar', 'ADJ'), ('occasion', 'NOUN'), ('to', 'ADP'), ('augment', 'NOUN'), ('and', 'CCONJ'), ('fix', 'VERB'), ('her', 'PRON'), ('sorrow', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('seeking', 'VERB'), ('silence', 'NOUN'), ('solitude', 'NOUN'), ('and', 'CCONJ'), ('idleness', 'ADJ'), (' ', 'SPACE'), ('Their', 'PRON'), ('means', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('as', 'ADV'), ('different', 'ADJ'), ('as', 'ADP'), ('their', 'PRON'), ('objects', 'NOUN'), ('and', 'CCONJ'), ('equally', 'ADV'), ('suited', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('advancement', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('her', 'PRON'), ('drawingtable', 'ADJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('busily', 'ADV'), ('employed', 'VERB'), ('herself', 'PRON'), ('the', 'DET'), ('whole', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('neither', 'CCONJ'), ('sought', 'VERB'), ('nor', 'CCONJ'), ('avoided', 'VERB'), ('the', 'DET'), ('mention', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('name', 'NOUN'), ('\n', 'SPACE'), ('appeared', 'VERB'), ('to', 'PART'), ('interest', 'VERB'), ('herself', 'PRON'), ('almost', 'ADV'), ('as', 'ADV'), ('much', 'ADJ'), ('as', 'ADP'), ('ever', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('general', 'ADJ'), ('concerns', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('by', 'ADP'), ('this', 'DET'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('lessen', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('grief', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('at', 'ADV'), ('least', 'ADJ'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('unnecessary', 'ADJ'), ('increase', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('spared', 'VERB'), ('much', 'ADJ'), ('solicitude', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('account', 'NOUN'), ('\n\n', 'SPACE'), ('Such', 'ADJ'), ('behaviour', 'NOUN'), ('as', 'ADP'), ('this', 'PRON'), ('so', 'ADV'), ('exactly', 'ADV'), ('the', 'DET'), ('reverse', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('appeared', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('meritorious', 'ADJ'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('had', 'AUX'), ('seemed', 'VERB'), ('faulty', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('business', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('selfcommand', 'NOUN'), ('she', 'PRON'), ('settled', 'VERB'), ('very', 'ADV'), ('easilywith', 'PROPN'), ('strong', 'ADJ'), ('\n', 'SPACE'), ('affections', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('with', 'ADP'), ('calm', 'ADJ'), ('ones', 'NOUN'), ('it', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('have', 'VERB'), ('no', 'DET'), ('merit', 'NOUN'), (' ', 'SPACE'), ('That', 'SCONJ'), ('her', 'PRON'), ('sisters', 'NOUN'), ('affections', 'NOUN'), ('WERE', 'AUX'), ('calm', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('dared', 'VERB'), ('not', 'PART'), ('deny', 'VERB'), ('though', 'SCONJ'), ('she', 'PRON'), ('blushed', 'VERB'), ('to', 'PART'), ('acknowledge', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('of', 'ADP'), ('the', 'DET'), ('strength', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('she', 'PRON'), ('gave', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('striking', 'ADJ'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('still', 'ADV'), ('loving', 'VERB'), ('and', 'CCONJ'), ('respecting', 'VERB'), ('that', 'DET'), ('sister', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'DET'), ('mortifying', 'NOUN'), ('conviction', 'NOUN'), ('\n\n', 'SPACE'), ('Without', 'ADP'), ('shutting', 'VERB'), ('herself', 'PRON'), ('up', 'ADP'), ('from', 'ADP'), ('her', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('leaving', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('in', 'ADP'), ('determined', 'ADJ'), ('solitude', 'NOUN'), ('to', 'PART'), ('avoid', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('lying', 'VERB'), ('awake', 'ADJ'), ('the', 'DET'), ('whole', 'ADJ'), ('night', 'NOUN'), ('to', 'PART'), ('indulge', 'VERB'), ('meditation', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), ('afforded', 'VERB'), ('her', 'PRON'), ('leisure', 'NOUN'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('behaviour', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('variety', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('different', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('different', 'ADJ'), ('times', 'NOUN'), ('could', 'AUX'), ('producewith', 'VERB'), ('tenderness', 'NOUN'), ('\n', 'SPACE'), ('pity', 'NOUN'), ('approbation', 'NOUN'), ('censure', 'NOUN'), ('and', 'CCONJ'), ('doubt', 'VERB'), (' ', 'SPACE'), ('There', 'PRON'), ('were', 'VERB'), ('moments', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('abundance', 'NOUN'), ('when', 'SCONJ'), ('if', 'SCONJ'), ('not', 'PART'), ('by', 'ADP'), ('the', 'DET'), ('absence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('nature', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('employments', 'NOUN'), ('\n', 'SPACE'), ('conversation', 'NOUN'), ('was', 'AUX'), ('forbidden', 'VERB'), ('among', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('every', 'DET'), ('effect', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('solitude', 'NOUN'), ('was', 'AUX'), ('produced', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('inevitably', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('liberty', 'NOUN'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('chained', 'VERB'), ('elsewhere', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('past', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('future', 'NOUN'), ('on', 'ADP'), ('a', 'DET'), ('subject', 'NOUN'), ('so', 'ADV'), ('interesting', 'ADJ'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('before', 'SCONJ'), ('her', 'PRON'), ('must', 'AUX'), ('force', 'VERB'), ('her', 'PRON'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('engross', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('memory', 'NOUN'), ('her', 'PRON'), ('reflection', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('fancy', 'NOUN'), ('\n\n', 'SPACE'), ('From', 'ADP'), ('a', 'DET'), ('reverie', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('kind', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('sat', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('drawingtable', 'ADJ'), ('she', 'PRON'), ('was', 'AUX'), ('roused', 'VERB'), ('one', 'NUM'), ('morning', 'NOUN'), ('soon', 'ADV'), ('after', 'SCONJ'), ('\n', 'SPACE'), ('Edwards', 'PROPN'), ('leaving', 'VERB'), ('them', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('company', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('quite', 'ADV'), ('alone', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('closing', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('little', 'ADJ'), ('gate', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('green', 'ADJ'), ('court', 'NOUN'), ('in', 'ADP'), ('front', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('drew', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('large', 'ADJ'), ('party', 'NOUN'), ('walking', 'VERB'), ('up', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), (' ', 'SPACE'), ('Amongst', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('there', 'PRON'), ('were', 'VERB'), ('two', 'NUM'), ('others', 'NOUN'), ('a', 'DET'), ('gentleman', 'NOUN'), ('and', 'CCONJ'), ('lady', 'NOUN'), ('who', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('quite', 'ADV'), ('unknown', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('near', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('perceived', 'VERB'), ('her', 'PRON'), ('he', 'PRON'), ('left', 'VERB'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('ceremony', 'NOUN'), ('of', 'ADP'), ('knocking', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('stepping', 'VERB'), ('across', 'ADP'), ('the', 'DET'), ('turf', 'NOUN'), ('obliged', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('open', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('casement', 'NOUN'), ('to', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('though', 'SCONJ'), ('the', 'DET'), ('space', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('short', 'ADJ'), ('\n', 'SPACE'), ('between', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('window', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('to', 'PART'), ('speak', 'VERB'), ('at', 'ADP'), ('one', 'NUM'), ('without', 'ADP'), ('being', 'AUX'), ('heard', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('said', 'VERB'), ('he', 'PRON'), ('we', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('you', 'PRON'), ('some', 'DET'), ('strangers', 'NOUN'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('like', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Hush', 'PROPN'), ('they', 'PRON'), ('will', 'AUX'), ('hear', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Never', 'ADV'), ('mind', 'VERB'), ('if', 'SCONJ'), ('they', 'PRON'), ('do', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('Palmers', 'PROPN'), ('\n', 'SPACE'), ('Charlotte', 'PROPN'), ('is', 'AUX'), ('very', 'ADV'), ('pretty', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('you', 'PRON'), ('look', 'VERB'), ('this', 'DET'), ('way', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('certain', 'ADJ'), ('of', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('couple', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('minutes', 'NOUN'), ('without', 'ADP'), ('taking', 'VERB'), ('that', 'DET'), ('liberty', 'NOUN'), ('she', 'PRON'), ('begged', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('excused', 'VERB'), ('\n\n', 'SPACE'), ('Where', 'SCONJ'), ('is', 'AUX'), ('Marianne', 'PROPN'), ('Has', 'AUX'), ('she', 'PRON'), ('run', 'VERB'), ('away', 'ADV'), ('because', 'SCONJ'), ('we', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('come', 'VERB'), ('I', 'PRON'), ('see', 'VERB'), ('her', 'PRON'), ('instrument', 'NOUN'), ('is', 'AUX'), ('open', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('walking', 'VERB'), ('I', 'PRON'), ('believe', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('now', 'ADV'), ('joined', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('patience', 'NOUN'), ('enough', 'ADV'), ('to', 'PART'), ('wait', 'VERB'), ('till', 'SCONJ'), ('the', 'DET'), ('door', 'NOUN'), ('was', 'AUX'), ('opened', 'VERB'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('told', 'VERB'), ('HER', 'PRON'), ('story', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('came', 'VERB'), ('hallooing', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('do', 'VERB'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('does', 'AUX'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('do', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('where', 'SCONJ'), ('are', 'AUX'), ('your', 'PRON'), ('sisters', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('all', 'ADV'), ('alone', 'ADJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('be', 'AUX'), ('glad', 'ADJ'), ('of', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('company', 'NOUN'), ('to', 'PART'), ('sit', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('my', 'PRON'), ('other', 'ADJ'), ('son', 'NOUN'), ('and', 'CCONJ'), ('daughter', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('Only', 'ADV'), ('think', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('coming', 'VERB'), ('so', 'ADV'), ('suddenly', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('I', 'PRON'), ('heard', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('carriage', 'NOUN'), ('last', 'ADJ'), ('night', 'NOUN'), ('while', 'SCONJ'), ('we', 'PRON'), ('were', 'AUX'), ('drinking', 'VERB'), ('our', 'PRON'), ('tea', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('never', 'ADV'), ('entered', 'VERB'), ('my', 'PRON'), ('head', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('them', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('whether', 'SCONJ'), ('it', 'PRON'), ('might', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('come', 'VERB'), ('back', 'ADV'), ('again', 'ADV'), ('so', 'ADV'), ('I', 'PRON'), ('said', 'VERB'), ('to', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('I', 'PRON'), ('do', 'AUX'), ('think', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('hear', 'VERB'), ('a', 'DET'), ('carriage', 'NOUN'), ('perhaps', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('come', 'VERB'), ('\n', 'SPACE'), ('back', 'ADV'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('turn', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('middle', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('story', 'NOUN'), ('to', 'PART'), ('receive', 'VERB'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'PROPN'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('introduced', 'VERB'), ('the', 'DET'), ('two', 'NUM'), ('strangers', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('came', 'VERB'), ('down', 'ADP'), ('stairs', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('all', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'PART'), ('look', 'VERB'), ('at', 'ADP'), ('one', 'NUM'), ('another', 'PRON'), ('while', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('continued', 'VERB'), ('her', 'PRON'), ('story', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('walked', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('passage', 'NOUN'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('parlour', 'NOUN'), ('attended', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('was', 'AUX'), ('several', 'ADJ'), ('years', 'NOUN'), ('younger', 'ADJ'), ('than', 'ADP'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('totally', 'ADV'), ('unlike', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('every', 'DET'), ('respect', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('short', 'ADJ'), ('and', 'CCONJ'), ('plump', 'ADJ'), ('had', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('pretty', 'ADJ'), ('face', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('finest', 'ADJ'), ('expression', 'NOUN'), ('of', 'ADP'), ('good', 'ADJ'), ('humour', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('that', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('possibly', 'ADV'), ('be', 'AUX'), (' ', 'SPACE'), ('Her', 'PRON'), ('manners', 'NOUN'), ('were', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('so', 'ADV'), ('elegant', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('but', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('much', 'ADV'), ('more', 'ADJ'), ('prepossessing', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('came', 'VERB'), ('in', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('smiled', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('laughed', 'VERB'), ('and', 'CCONJ'), ('smiled', 'VERB'), ('when', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('Her', 'PRON'), ('husband', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('grave', 'ADJ'), ('looking', 'VERB'), ('young', 'ADJ'), ('man', 'NOUN'), ('of', 'ADP'), ('five', 'NUM'), ('or', 'CCONJ'), ('six', 'NUM'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('with', 'ADP'), ('an', 'DET'), ('air', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('fashion', 'NOUN'), ('and', 'CCONJ'), ('sense', 'NOUN'), ('than', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('wife', 'NOUN'), ('but', 'CCONJ'), ('of', 'ADP'), ('less', 'ADJ'), ('willingness', 'NOUN'), ('to', 'PART'), ('please', 'VERB'), ('or', 'CCONJ'), ('be', 'AUX'), ('pleased', 'ADJ'), ('\n', 'SPACE'), ('He', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('selfconsequence', 'NOUN'), ('\n', 'SPACE'), ('slightly', 'ADV'), ('bowed', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('ladies', 'NOUN'), ('without', 'ADP'), ('speaking', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('briefly', 'ADV'), ('surveying', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('their', 'PRON'), ('apartments', 'NOUN'), ('\n', 'SPACE'), ('took', 'VERB'), ('up', 'ADP'), ('a', 'DET'), ('newspaper', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('and', 'CCONJ'), ('continued', 'VERB'), ('to', 'PART'), ('read', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('long', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('staid', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('on', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('strongly', 'ADV'), ('endowed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('nature', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('turn', 'NOUN'), ('for', 'ADP'), ('being', 'AUX'), ('uniformly', 'ADV'), ('civil', 'ADJ'), ('and', 'CCONJ'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('hardly', 'ADV'), ('seated', 'VERB'), ('before', 'ADP'), ('her', 'PRON'), ('admiration', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('parlour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('burst', 'VERB'), ('forth', 'ADV'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('what', 'PRON'), ('a', 'DET'), ('delightful', 'ADJ'), ('room', 'NOUN'), ('this', 'PRON'), ('is', 'AUX'), ('I', 'PRON'), ('never', 'ADV'), ('\n', 'SPACE'), ('saw', 'VERB'), ('anything', 'PRON'), ('so', 'ADV'), ('charming', 'ADJ'), (' ', 'SPACE'), ('Only', 'ADV'), ('think', 'VERB'), ('Mamma', 'PROPN'), ('how', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('improved', 'VERB'), ('since', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('here', 'ADV'), ('last', 'ADJ'), ('I', 'PRON'), ('always', 'ADV'), ('thought', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('sweet', 'ADJ'), ('place', 'NOUN'), ('maam', 'NOUN'), ('turning', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('made', 'VERB'), ('it', 'PRON'), ('so', 'ADV'), ('charming', 'ADJ'), (' ', 'SPACE'), ('Only', 'ADV'), ('look', 'VERB'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('delightful', 'ADJ'), ('every', 'DET'), ('thing', 'NOUN'), ('is', 'AUX'), ('How', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('like', 'VERB'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('house', 'NOUN'), ('for', 'ADP'), ('myself', 'PRON'), (' ', 'SPACE'), ('Should', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('made', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('answer', 'NOUN'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('raise', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('eyes', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('newspaper', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('does', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('me', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('laughing', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('never', 'ADV'), ('does', 'VERB'), ('sometimes', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('ridiculous', 'ADJ'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('new', 'ADJ'), ('idea', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('been', 'AUX'), ('used', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('wit', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('inattention', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('looking', 'VERB'), ('with', 'ADP'), ('surprise', 'NOUN'), ('at', 'ADP'), ('them', 'PRON'), ('both', 'DET'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('meantime', 'NOUN'), ('talked', 'VERB'), ('on', 'ADP'), ('as', 'ADV'), ('loud', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('and', 'CCONJ'), ('continued', 'VERB'), ('her', 'PRON'), ('account', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('evening', 'NOUN'), ('before', 'ADP'), ('on', 'ADP'), ('seeing', 'VERB'), ('their', 'PRON'), ('friends', 'NOUN'), ('without', 'ADP'), ('\n', 'SPACE'), ('ceasing', 'VERB'), ('till', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('told', 'VERB'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('laughed', 'VERB'), ('\n', 'SPACE'), ('heartily', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('recollection', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('astonishment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('agreed', 'VERB'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('times', 'NOUN'), ('over', 'SCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('quite', 'DET'), ('an', 'DET'), ('agreeable', 'ADJ'), ('surprise', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('believe', 'VERB'), ('how', 'SCONJ'), ('glad', 'ADJ'), ('we', 'PRON'), ('all', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('added', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('leaning', 'VERB'), ('forward', 'ADV'), ('towards', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('speaking', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('meant', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('heard', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('no', 'DET'), ('one', 'NOUN'), ('else', 'ADV'), ('though', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('seated', 'VERB'), ('on', 'ADP'), ('different', 'ADJ'), ('sides', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('but', 'CCONJ'), ('however', 'ADV'), ('I', 'PRON'), ('ca', 'AUX'), ('nt', 'PART'), ('help', 'VERB'), ('wishing', 'VERB'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('travelled', 'VERB'), ('quite', 'ADV'), ('so', 'ADV'), ('fast', 'ADV'), ('nor', 'CCONJ'), ('made', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('long', 'ADJ'), ('journey', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('for', 'SCONJ'), ('they', 'PRON'), ('came', 'VERB'), ('all', 'ADV'), ('round', 'ADJ'), ('by', 'ADP'), ('London', 'PROPN'), ('upon', 'SCONJ'), ('account', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('some', 'DET'), ('business', 'NOUN'), ('for', 'ADP'), ('you', 'PRON'), ('know', 'VERB'), ('nodding', 'VERB'), ('significantly', 'ADV'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('pointing', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('wrong', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('wanted', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('stay', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('and', 'CCONJ'), ('rest', 'NOUN'), ('this', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('come', 'VERB'), ('with', 'ADP'), ('us', 'PRON'), ('she', 'PRON'), ('longed', 'VERB'), ('so', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('all', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('laughed', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('any', 'DET'), ('harm', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('expects', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('confined', 'VERB'), ('in', 'ADP'), ('February', 'PROPN'), ('\n', 'SPACE'), ('continued', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('could', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('endure', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('exerted', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('ask', 'VERB'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('if', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('any', 'DET'), ('news', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('paper', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('none', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('he', 'PRON'), ('replied', 'VERB'), ('and', 'CCONJ'), ('read', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('comes', 'VERB'), ('Marianne', 'PROPN'), ('cried', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), (' ', 'SPACE'), ('Now', 'ADV'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('a', 'DET'), ('monstrous', 'ADJ'), ('pretty', 'ADJ'), ('girl', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('immediately', 'ADV'), ('went', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('passage', 'NOUN'), ('opened', 'VERB'), ('the', 'DET'), ('front', 'ADJ'), ('door', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('ushered', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('himself', 'PRON'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('asked', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('appeared', 'VERB'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('to', 'ADP'), ('Allenham', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('laughed', 'VERB'), ('so', 'ADV'), ('heartily', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('to', 'PART'), ('show', 'VERB'), ('she', 'PRON'), ('understood', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('looked', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('entering', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('stared', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('some', 'DET'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('returned', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('newspaper', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('eye', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('now', 'ADV'), ('caught', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('drawings', 'NOUN'), ('which', 'PRON'), ('hung', 'VERB'), ('round', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('got', 'VERB'), ('up', 'ADP'), ('to', 'PART'), ('examine', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('dear', 'INTJ'), ('how', 'SCONJ'), ('beautiful', 'ADJ'), ('these', 'PRON'), ('are', 'AUX'), (' ', 'SPACE'), ('Well', 'INTJ'), ('how', 'SCONJ'), ('delightful', 'ADJ'), ('\n', 'SPACE'), ('Do', 'AUX'), ('but', 'CCONJ'), ('look', 'VERB'), ('mama', 'PROPN'), ('how', 'SCONJ'), ('sweet', 'ADJ'), ('I', 'PRON'), ('declare', 'VERB'), ('they', 'PRON'), ('are', 'AUX'), ('quite', 'ADV'), ('charming', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('look', 'VERB'), ('at', 'ADP'), ('them', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('And', 'CCONJ'), ('then', 'ADV'), ('sitting', 'VERB'), ('down', 'ADP'), ('again', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('very', 'ADV'), ('soon', 'ADV'), ('forgot', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('were', 'VERB'), ('any', 'DET'), ('such', 'ADJ'), ('things', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('rose', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('away', 'ADV'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('rose', 'VERB'), ('also', 'ADV'), ('laid', 'VERB'), ('down', 'ADP'), ('the', 'DET'), ('newspaper', 'NOUN'), ('stretched', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('looked', 'VERB'), ('at', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('around', 'ADP'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('love', 'NOUN'), ('have', 'AUX'), ('you', 'PRON'), ('been', 'AUX'), ('asleep', 'ADJ'), ('said', 'VERB'), ('his', 'PRON'), ('wife', 'NOUN'), ('laughing', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('answer', 'NOUN'), ('and', 'CCONJ'), ('only', 'ADV'), ('observed', 'VERB'), ('after', 'ADP'), ('again', 'ADV'), ('\n', 'SPACE'), ('examining', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('that', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('low', 'ADJ'), ('pitched', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('the', 'DET'), ('ceiling', 'NOUN'), ('was', 'AUX'), ('crooked', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('then', 'ADV'), ('made', 'VERB'), ('his', 'PRON'), ('bow', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('departed', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('urgent', 'ADJ'), ('with', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('spend', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('who', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('chuse', 'VERB'), ('to', 'PART'), ('dine', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('oftener', 'NOUN'), ('than', 'SCONJ'), ('they', 'PRON'), ('dined', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('absolutely', 'ADV'), ('refused', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('account', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('daughters', 'NOUN'), ('might', 'AUX'), ('do', 'VERB'), ('as', 'SCONJ'), ('they', 'PRON'), ('pleased', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('they', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('curiosity', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('how', 'SCONJ'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('ate', 'VERB'), ('their', 'PRON'), ('dinner', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('no', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('from', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('way', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('attempted', 'VERB'), ('therefore', 'ADV'), ('likewise', 'ADV'), ('to', 'PART'), ('excuse', 'VERB'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('weather', 'NOUN'), ('was', 'AUX'), ('uncertain', 'ADJ'), ('and', 'CCONJ'), ('not', 'PART'), ('likely', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('good', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('satisfiedthe', 'ADJ'), ('carriage', 'NOUN'), ('should', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('they', 'PRON'), ('must', 'AUX'), ('come', 'VERB'), (' ', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('too', 'ADV'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('press', 'VERB'), ('their', 'PRON'), ('mother', 'NOUN'), ('pressed', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('joined', 'VERB'), ('their', 'PRON'), ('entreaties', 'NOUN'), ('all', 'PRON'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('equally', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('avoid', 'VERB'), ('a', 'DET'), ('family', 'NOUN'), ('party', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('young', 'ADJ'), ('\n', 'SPACE'), ('ladies', 'NOUN'), ('were', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('yield', 'VERB'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('should', 'AUX'), ('they', 'PRON'), ('ask', 'VERB'), ('us', 'PRON'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('rent', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('cottage', 'NOUN'), ('is', 'AUX'), ('said', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('low', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('we', 'PRON'), ('have', 'VERB'), ('it', 'PRON'), ('on', 'ADP'), ('very', 'ADV'), ('hard', 'ADJ'), ('terms', 'NOUN'), ('if', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('to', 'PART'), ('dine', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('whenever', 'SCONJ'), ('any', 'DET'), ('one', 'NOUN'), ('is', 'AUX'), ('staying', 'VERB'), ('either', 'CCONJ'), ('with', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('with', 'ADP'), ('us', 'PRON'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('mean', 'VERB'), ('no', 'PRON'), ('less', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('civil', 'ADJ'), ('and', 'CCONJ'), ('kind', 'ADJ'), ('to', 'ADP'), ('us', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('by', 'ADP'), ('these', 'DET'), ('frequent', 'ADJ'), ('invitations', 'NOUN'), ('than', 'ADP'), ('by', 'ADP'), ('\n', 'SPACE'), ('those', 'PRON'), ('which', 'PRON'), ('we', 'PRON'), ('received', 'VERB'), ('from', 'ADP'), ('them', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('ago', 'ADP'), ('\n', 'SPACE'), ('The', 'DET'), ('alteration', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('them', 'PRON'), ('if', 'SCONJ'), ('their', 'PRON'), ('parties', 'NOUN'), ('are', 'AUX'), ('grown', 'VERB'), ('\n', 'SPACE'), ('tedious', 'ADJ'), ('and', 'CCONJ'), ('dull', 'ADJ'), (' ', 'SPACE'), ('We', 'PRON'), ('must', 'AUX'), ('look', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('change', 'NOUN'), ('elsewhere', 'ADV'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('20', 'NUM'), ('\n\n\n', 'SPACE'), ('As', 'SCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('entered', 'VERB'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('at', 'ADP'), ('one', 'NUM'), ('door', 'NOUN'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('came', 'AUX'), ('running', 'VERB'), ('in', 'ADP'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('looking', 'VERB'), ('as', 'ADP'), ('good', 'ADJ'), ('humoured', 'VERB'), ('and', 'CCONJ'), ('merry', 'VERB'), ('as', 'ADP'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('took', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('most', 'ADV'), ('affectionately', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('expressed', 'VERB'), ('great', 'ADJ'), ('delight', 'NOUN'), ('in', 'ADP'), ('seeing', 'VERB'), ('them', 'PRON'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('seating', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('between', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('bad', 'ADJ'), ('a', 'DET'), ('day', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('afraid', 'ADJ'), ('you', 'PRON'), ('might', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('which', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('shocking', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('we', 'PRON'), ('go', 'VERB'), ('away', 'ADV'), ('again', 'ADV'), ('tomorrow', 'NOUN'), ('We', 'PRON'), ('must', 'AUX'), ('go', 'VERB'), ('for', 'SCONJ'), ('the', 'DET'), ('Westons', 'NOUN'), ('\n', 'SPACE'), ('come', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('next', 'ADJ'), ('week', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('sudden', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('our', 'PRON'), ('coming', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('knew', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('till', 'SCONJ'), ('the', 'DET'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('coming', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('asked', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('go', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('droll', 'NOUN'), ('He', 'PRON'), ('never', 'ADV'), ('\n', 'SPACE'), ('tells', 'VERB'), ('me', 'PRON'), ('any', 'DET'), ('thing', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('sorry', 'ADJ'), ('we', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('longer', 'ADV'), ('\n', 'SPACE'), ('however', 'ADV'), ('we', 'PRON'), ('shall', 'AUX'), ('meet', 'VERB'), ('again', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('very', 'ADV'), ('soon', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('expectation', 'NOUN'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('laugh', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('disappointed', 'ADJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('do', 'VERB'), ('not', 'PART'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('get', 'VERB'), ('the', 'DET'), ('nicest', 'ADJ'), ('house', 'NOUN'), ('in', 'ADP'), ('world', 'NOUN'), ('for', 'ADP'), ('you', 'PRON'), ('next', 'ADJ'), ('door', 'NOUN'), ('to', 'ADP'), ('ours', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('Hanoversquare', 'PROPN'), (' ', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('come', 'VERB'), ('indeed', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('happy', 'ADJ'), ('to', 'PART'), ('chaperon', 'VERB'), ('you', 'PRON'), ('at', 'ADP'), ('any', 'DET'), ('time', 'NOUN'), ('till', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('confined', 'VERB'), ('if', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('should', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('public', 'ADJ'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('thanked', 'VERB'), ('her', 'PRON'), ('but', 'CCONJ'), ('were', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('resist', 'VERB'), ('all', 'DET'), ('\n', 'SPACE'), ('her', 'PRON'), ('entreaties', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('my', 'PRON'), ('love', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('to', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('just', 'ADV'), ('then', 'ADV'), ('entered', 'VERB'), ('the', 'DET'), ('roomyou', 'NOUN'), ('must', 'AUX'), ('help', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('persuade', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('this', 'DET'), ('winter', 'NOUN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('love', 'NOUN'), ('made', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('slightly', 'ADV'), ('bowing', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('ladies', 'NOUN'), ('began', 'VERB'), ('complaining', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('horrid', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('is', 'AUX'), ('said', 'VERB'), ('he', 'PRON'), (' ', 'SPACE'), ('Such', 'ADJ'), ('weather', 'NOUN'), ('\n', 'SPACE'), ('makes', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('disgusting', 'VERB'), (' ', 'SPACE'), ('Dullness', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('as', 'ADV'), ('much', 'ADJ'), ('produced', 'VERB'), ('within', 'ADP'), ('doors', 'NOUN'), ('as', 'ADP'), ('without', 'ADP'), ('by', 'ADP'), ('rain', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('makes', 'VERB'), ('one', 'NUM'), ('detest', 'ADJ'), ('all', 'DET'), ('ones', 'NOUN'), ('acquaintance', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('the', 'DET'), ('\n', 'SPACE'), ('devil', 'NOUN'), ('does', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('mean', 'VERB'), ('by', 'ADP'), ('not', 'PART'), ('having', 'VERB'), ('a', 'DET'), ('billiard', 'NOUN'), ('room', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('house', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('few', 'ADJ'), ('people', 'NOUN'), ('know', 'VERB'), ('what', 'PRON'), ('comfort', 'NOUN'), ('is', 'AUX'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('is', 'AUX'), ('as', 'ADV'), ('stupid', 'ADJ'), ('as', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('company', 'NOUN'), ('soon', 'ADV'), ('dropt', 'ADJ'), ('in', 'SCONJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('you', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('your', 'PRON'), ('usual', 'ADJ'), ('walk', 'NOUN'), ('to', 'ADP'), ('Allenham', 'PROPN'), ('today', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('looked', 'VERB'), ('very', 'ADV'), ('grave', 'ADJ'), ('and', 'CCONJ'), ('said', 'VERB'), ('nothing', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('do', 'AUX'), ('nt', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('sly', 'ADV'), ('before', 'SCONJ'), ('us', 'PRON'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('we', 'PRON'), ('know', 'VERB'), ('all', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('admire', 'VERB'), ('your', 'PRON'), ('\n', 'SPACE'), ('taste', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('for', 'ADP'), ('I', 'PRON'), ('think', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('extremely', 'ADV'), ('handsome', 'ADJ'), ('\n', 'SPACE'), ('We', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('live', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('way', 'NOUN'), ('from', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('Not', 'PART'), ('above', 'ADP'), ('ten', 'NUM'), ('miles', 'NOUN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('Much', 'ADV'), ('nearer', 'NOUN'), ('thirty', 'NUM'), ('said', 'VERB'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n\n', 'SPACE'), ('Ah', 'INTJ'), ('well', 'INTJ'), ('there', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('much', 'ADJ'), ('difference', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('at', 'ADP'), ('his', 'PRON'), ('house', 'NOUN'), ('but', 'CCONJ'), ('they', 'PRON'), ('say', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('sweet', 'ADJ'), ('\n', 'SPACE'), ('pretty', 'ADJ'), ('place', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('vile', 'ADJ'), ('a', 'DET'), ('spot', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('remained', 'VERB'), ('perfectly', 'ADV'), ('silent', 'ADJ'), ('though', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('countenance', 'NOUN'), ('betrayed', 'VERB'), ('her', 'PRON'), ('interest', 'NOUN'), ('in', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('it', 'PRON'), ('very', 'ADV'), ('ugly', 'ADV'), ('continued', 'VERB'), ('Mrs', 'PROPN'), ('Palmerthen', 'PROPN'), ('it', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('some', 'DET'), ('other', 'ADJ'), ('place', 'NOUN'), ('that', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('pretty', 'ADV'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('seated', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('dining', 'NOUN'), ('room', 'NOUN'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('observed', 'VERB'), ('with', 'ADP'), ('regret', 'NOUN'), ('that', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('only', 'ADV'), ('eight', 'NUM'), ('all', 'PRON'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('to', 'ADP'), ('his', 'PRON'), ('lady', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('provoking', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('we', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('few', 'ADJ'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('did', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('ask', 'VERB'), ('the', 'DET'), ('Gilberts', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('come', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('today', 'NOUN'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('tell', 'VERB'), ('you', 'PRON'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('when', 'SCONJ'), ('you', 'PRON'), ('spoke', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('about', 'ADP'), ('it', 'PRON'), ('before', 'SCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('done', 'VERB'), (' ', 'SPACE'), ('They', 'PRON'), ('dined', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('us', 'PRON'), ('last', 'ADJ'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('should', 'AUX'), ('not', 'PART'), ('stand', 'VERB'), ('upon', 'SCONJ'), ('such', 'ADJ'), ('ceremony', 'NOUN'), ('\n\n', 'SPACE'), ('Then', 'ADV'), ('you', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('illbred', 'ADJ'), ('cried', 'VERB'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('love', 'NOUN'), ('you', 'PRON'), ('contradict', 'VERB'), ('every', 'DET'), ('body', 'NOUN'), ('said', 'VERB'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('laugh', 'NOUN'), (' ', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('quite', 'ADV'), ('rude', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('I', 'PRON'), ('contradicted', 'VERB'), ('any', 'DET'), ('body', 'NOUN'), ('in', 'ADP'), ('calling', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('mother', 'NOUN'), ('illbred', 'VERB'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('you', 'PRON'), ('may', 'AUX'), ('abuse', 'VERB'), ('me', 'PRON'), ('as', 'SCONJ'), ('you', 'PRON'), ('please', 'INTJ'), ('said', 'VERB'), ('the', 'DET'), ('goodnatured', 'ADJ'), ('\n', 'SPACE'), ('old', 'ADJ'), ('lady', 'NOUN'), ('you', 'PRON'), ('have', 'AUX'), ('taken', 'VERB'), ('Charlotte', 'PROPN'), ('off', 'ADP'), ('my', 'PRON'), ('hands', 'NOUN'), ('and', 'CCONJ'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('give', 'VERB'), ('her', 'PRON'), ('back', 'ADV'), ('again', 'ADV'), (' ', 'SPACE'), ('So', 'ADV'), ('there', 'ADV'), ('I', 'PRON'), ('have', 'VERB'), ('the', 'DET'), ('whip', 'NOUN'), ('hand', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Charlotte', 'PROPN'), ('laughed', 'VERB'), ('heartily', 'ADV'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('husband', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('get', 'VERB'), ('rid', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('exultingly', 'ADV'), ('said', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('care', 'VERB'), ('how', 'SCONJ'), ('cross', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'SCONJ'), ('they', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('live', 'VERB'), ('together', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('any', 'DET'), ('one', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('more', 'ADV'), ('\n', 'SPACE'), ('thoroughly', 'ADV'), ('goodnatured', 'ADJ'), ('or', 'CCONJ'), ('more', 'ADV'), ('determined', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('studied', 'ADJ'), ('indifference', 'NOUN'), ('insolence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('discontent', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('gave', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('he', 'PRON'), ('scolded', 'VERB'), ('or', 'CCONJ'), ('abused', 'VERB'), ('her', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('highly', 'ADV'), ('diverted', 'VERB'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('is', 'AUX'), ('so', 'ADV'), ('droll', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('whisper', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('always', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('humour', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('inclined', 'VERB'), ('after', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('observation', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('credit', 'NOUN'), ('for', 'ADP'), ('being', 'AUX'), ('so', 'ADV'), ('genuinely', 'ADV'), ('and', 'CCONJ'), ('unaffectedly', 'ADV'), ('\n', 'SPACE'), ('illnatured', 'VERB'), ('or', 'CCONJ'), ('illbred', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('\n', 'SPACE'), ('His', 'PRON'), ('temper', 'NOUN'), ('might', 'AUX'), ('perhaps', 'ADV'), ('be', 'AUX'), ('a', 'DET'), ('little', 'ADJ'), ('soured', 'VERB'), ('by', 'ADP'), ('finding', 'VERB'), ('\n', 'SPACE'), ('like', 'ADP'), ('many', 'ADJ'), ('others', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('sex', 'NOUN'), ('that', 'SCONJ'), ('through', 'ADP'), ('some', 'DET'), ('unaccountable', 'ADJ'), ('\n', 'SPACE'), ('bias', 'NOUN'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('beauty', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('husband', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('silly', 'ADJ'), ('\n', 'SPACE'), ('womanbut', 'ADP'), ('she', 'PRON'), ('knew', 'VERB'), ('that', 'SCONJ'), ('this', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('blunder', 'NOUN'), ('was', 'AUX'), ('too', 'ADV'), ('\n', 'SPACE'), ('common', 'ADJ'), ('for', 'SCONJ'), ('any', 'DET'), ('sensible', 'ADJ'), ('man', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('lastingly', 'ADV'), ('hurt', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('rather', 'ADV'), ('a', 'DET'), ('wish', 'NOUN'), ('of', 'ADP'), ('distinction', 'NOUN'), ('she', 'PRON'), ('believed', 'VERB'), ('\n', 'SPACE'), ('which', 'PRON'), ('produced', 'VERB'), ('his', 'PRON'), ('contemptuous', 'ADJ'), ('treatment', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('general', 'ADJ'), ('abuse', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('before', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('desire', 'NOUN'), ('of', 'ADP'), ('appearing', 'VERB'), ('superior', 'ADJ'), ('to', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('motive', 'NOUN'), ('was', 'AUX'), ('too', 'ADV'), ('common', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('wondered', 'VERB'), ('at', 'ADP'), ('but', 'CCONJ'), ('the', 'DET'), ('means', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('they', 'PRON'), ('might', 'AUX'), ('succeed', 'VERB'), ('by', 'ADP'), ('establishing', 'VERB'), ('his', 'PRON'), ('superiority', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('illbreeding', 'ADJ'), ('were', 'AUX'), ('not', 'PART'), ('likely', 'ADJ'), ('to', 'PART'), ('attach', 'VERB'), ('any', 'DET'), ('one', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('got', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('favour', 'NOUN'), ('to', 'PART'), ('ask', 'VERB'), ('of', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('Will', 'AUX'), ('you', 'PRON'), ('come', 'VERB'), ('and', 'CCONJ'), ('spend', 'VERB'), ('some', 'DET'), ('time', 'NOUN'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('this', 'DET'), ('\n', 'SPACE'), ('Christmas', 'PROPN'), (' ', 'SPACE'), ('Now', 'ADV'), ('pray', 'VERB'), ('doand', 'PROPN'), ('come', 'VERB'), ('while', 'SCONJ'), ('the', 'DET'), ('Westons', 'PROPN'), ('are', 'AUX'), ('\n', 'SPACE'), ('with', 'ADP'), ('us', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('how', 'SCONJ'), ('happy', 'ADJ'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('quite', 'ADV'), ('delightfulMy', 'PROPN'), ('love', 'NOUN'), ('applying', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n', 'SPACE'), ('do', 'AUX'), ('nt', 'PART'), ('you', 'PRON'), ('long', 'ADJ'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('come', 'VERB'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('he', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('sneerI', 'NOUN'), ('came', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('with', 'ADP'), ('no', 'DET'), ('other', 'ADJ'), ('view', 'NOUN'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('nowsaid', 'VERB'), ('his', 'PRON'), ('lady', 'NOUN'), ('you', 'PRON'), ('see', 'VERB'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('expects', 'VERB'), ('you', 'PRON'), ('so', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('refuse', 'VERB'), ('to', 'PART'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('both', 'PRON'), ('eagerly', 'ADV'), ('and', 'CCONJ'), ('resolutely', 'ADV'), ('declined', 'VERB'), ('her', 'PRON'), ('invitation', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('indeed', 'ADV'), ('you', 'PRON'), ('must', 'AUX'), ('and', 'CCONJ'), ('shall', 'AUX'), ('come', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('like', 'VERB'), ('it', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('Westons', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('with', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('delightful', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('a', 'DET'), ('sweet', 'ADJ'), ('place', 'NOUN'), ('Cleveland', 'PROPN'), ('is', 'AUX'), ('and', 'CCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('so', 'ADV'), ('gay', 'ADJ'), ('now', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('is', 'AUX'), ('always', 'ADV'), ('going', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('canvassing', 'VERB'), ('\n', 'SPACE'), ('against', 'ADP'), ('the', 'DET'), ('election', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('many', 'ADJ'), ('people', 'NOUN'), ('came', 'VERB'), ('to', 'PART'), ('dine', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('us', 'PRON'), ('that', 'PRON'), ('I', 'PRON'), ('never', 'ADV'), ('saw', 'VERB'), ('before', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('charming', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('\n', 'SPACE'), ('poor', 'ADJ'), ('fellow', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('fatiguing', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('for', 'ADP'), ('he', 'PRON'), ('is', 'AUX'), ('forced', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('every', 'DET'), ('body', 'NOUN'), ('like', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('hardly', 'ADV'), ('keep', 'VERB'), ('her', 'PRON'), ('countenance', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('assented', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('hardship', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('obligation', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('charming', 'ADJ'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('said', 'VERB'), ('Charlotte', 'PROPN'), ('when', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('in', 'ADP'), ('Parliamentwont', 'PROPN'), ('it', 'PRON'), ('How', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('laugh', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('so', 'ADV'), ('ridiculous', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('all', 'DET'), ('his', 'PRON'), ('letters', 'NOUN'), ('directed', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('an', 'DET'), ('MPBut', 'PROPN'), ('do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('he', 'PRON'), ('says', 'VERB'), ('he', 'PRON'), ('will', 'AUX'), ('never', 'ADV'), ('frank', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('declares', 'VERB'), ('he', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), (' ', 'SPACE'), ('Do', 'VERB'), ('nt', 'PART'), ('you', 'PRON'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('took', 'VERB'), ('no', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('writing', 'VERB'), ('you', 'PRON'), ('know', 'VERB'), ('she', 'PRON'), ('continued', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('says', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('shocking', 'ADJ'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('said', 'VERB'), ('he', 'PRON'), ('I', 'PRON'), ('never', 'ADV'), ('said', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('so', 'ADV'), ('irrational', 'ADJ'), ('\n', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('palm', 'VERB'), ('all', 'DET'), ('your', 'PRON'), ('abuses', 'NOUN'), ('of', 'ADP'), ('languages', 'NOUN'), ('upon', 'SCONJ'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('There', 'ADV'), ('now', 'ADV'), ('you', 'PRON'), ('see', 'VERB'), ('how', 'SCONJ'), ('droll', 'NOUN'), ('he', 'PRON'), ('is', 'AUX'), (' ', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('always', 'ADV'), ('\n', 'SPACE'), ('the', 'DET'), ('way', 'NOUN'), ('with', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('Sometimes', 'ADV'), ('he', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('for', 'ADP'), ('half', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('day', 'NOUN'), ('together', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('he', 'PRON'), ('comes', 'VERB'), ('out', 'ADP'), ('with', 'ADP'), ('something', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('drollall', 'VERB'), ('about', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('surprised', 'VERB'), ('Elinor', 'PROPN'), ('very', 'ADV'), ('much', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('by', 'ADP'), ('asking', 'VERB'), ('her', 'PRON'), ('whether', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('like', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('excessively', 'ADV'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('he', 'PRON'), ('seems', 'VERB'), ('very', 'ADV'), ('agreeable', 'ADJ'), ('\n\n', 'SPACE'), ('WellI', 'PROPN'), ('am', 'AUX'), ('so', 'ADV'), ('glad', 'ADJ'), ('you', 'PRON'), ('do', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('you', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('he', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('pleasant', 'ADJ'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('is', 'AUX'), ('excessively', 'ADV'), ('pleased', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('sisters', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('you', 'PRON'), ('ca', 'AUX'), ('nt', 'PART'), ('\n', 'SPACE'), ('think', 'VERB'), ('how', 'SCONJ'), ('disappointed', 'ADJ'), ('he', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('if', 'SCONJ'), ('you', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('come', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('ClevelandI', 'PROPN'), ('ca', 'AUX'), ('nt', 'PART'), ('imagine', 'VERB'), ('why', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('object', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('again', 'ADV'), ('obliged', 'VERB'), ('to', 'PART'), ('decline', 'VERB'), ('her', 'PRON'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('changing', 'VERB'), ('the', 'DET'), ('subject', 'NOUN'), ('put', 'VERB'), ('a', 'DET'), ('stop', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('entreaties', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('probable', 'ADJ'), ('that', 'SCONJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('lived', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('same', 'ADJ'), ('county', 'NOUN'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('might', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('some', 'DET'), ('\n', 'SPACE'), ('more', 'ADV'), ('particular', 'ADJ'), ('account', 'NOUN'), ('of', 'ADP'), ('Willoughbys', 'PROPN'), ('general', 'ADJ'), ('\n', 'SPACE'), ('character', 'NOUN'), ('than', 'SCONJ'), ('could', 'AUX'), ('be', 'AUX'), ('gathered', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('\n', 'SPACE'), ('partial', 'ADJ'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('eager', 'ADJ'), ('to', 'PART'), ('gain', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), ('such', 'DET'), ('a', 'DET'), ('confirmation', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('merits', 'NOUN'), ('as', 'SCONJ'), ('might', 'AUX'), ('\n', 'SPACE'), ('remove', 'VERB'), ('the', 'DET'), ('possibility', 'NOUN'), ('of', 'ADP'), ('fear', 'NOUN'), ('from', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('began', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('inquiring', 'VERB'), ('if', 'SCONJ'), ('they', 'PRON'), ('saw', 'VERB'), ('much', 'ADJ'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('whether', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('intimately', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('dear', 'INTJ'), ('yes', 'INTJ'), ('I', 'PRON'), ('know', 'VERB'), ('him', 'PRON'), ('extremely', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('replied', 'VERB'), ('Mrs', 'PROPN'), ('PalmerNot', 'PROPN'), ('that', 'SCONJ'), ('I', 'PRON'), ('ever', 'ADV'), ('spoke', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('him', 'PRON'), ('indeed', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('Somehow', 'ADV'), ('or', 'CCONJ'), ('other', 'ADJ'), ('I', 'PRON'), ('never', 'ADV'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('staying', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('Allenham', 'PROPN'), (' ', 'SPACE'), ('Mama', 'PROPN'), ('saw', 'VERB'), ('him', 'PRON'), ('here', 'ADV'), ('once', 'ADV'), ('before', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('with', 'ADP'), ('my', 'PRON'), ('uncle', 'NOUN'), ('at', 'ADP'), ('Weymouth', 'PROPN'), (' ', 'SPACE'), ('However', 'ADV'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n', 'SPACE'), ('we', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('seen', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('Somersetshire', 'PROPN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('happened', 'VERB'), ('very', 'ADV'), ('unluckily', 'ADV'), ('that', 'SCONJ'), ('we', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('together', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('little', 'ADJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('Combe', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('were', 'AUX'), ('ever', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('would', 'AUX'), ('visit', 'VERB'), ('him', 'PRON'), ('for', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('opposition', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('and', 'CCONJ'), ('besides', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('such', 'DET'), ('a', 'DET'), ('\n', 'SPACE'), ('way', 'NOUN'), ('off', 'ADP'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('why', 'SCONJ'), ('you', 'PRON'), ('inquire', 'VERB'), ('about', 'ADP'), ('him', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('your', 'PRON'), ('sister', 'NOUN'), ('is', 'AUX'), ('to', 'PART'), ('marry', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('monstrous', 'ADJ'), ('glad', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('then', 'ADV'), ('I', 'PRON'), ('shall', 'AUX'), ('have', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('neighbour', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('know', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('more', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('than', 'SCONJ'), ('I', 'PRON'), ('do', 'VERB'), ('if', 'SCONJ'), ('you', 'PRON'), ('have', 'VERB'), ('any', 'DET'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('expect', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('match', 'NOUN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('pretend', 'VERB'), ('to', 'PART'), ('deny', 'VERB'), ('it', 'PRON'), ('because', 'SCONJ'), ('you', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('what', 'PRON'), ('every', 'DET'), ('body', 'NOUN'), ('talks', 'NOUN'), ('of', 'ADP'), (' ', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('heard', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('way', 'NOUN'), ('through', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('honour', 'NOUN'), ('I', 'PRON'), ('didI', 'ADV'), ('met', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('Monday', 'PROPN'), ('morning', 'NOUN'), ('in', 'ADP'), ('Bondstreet', 'PROPN'), ('just', 'ADV'), ('before', 'SCONJ'), ('we', 'PRON'), ('left', 'VERB'), ('town', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('directly', 'ADV'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('surprise', 'VERB'), ('me', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('tell', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Surely', 'ADV'), ('you', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('mistaken', 'VERB'), (' ', 'SPACE'), ('To', 'PART'), ('give', 'VERB'), ('such', 'ADJ'), ('\n', 'SPACE'), ('intelligence', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('interested', 'ADJ'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('even', 'ADV'), ('if', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('true', 'ADJ'), ('is', 'AUX'), ('not', 'PART'), ('what', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('expect', 'VERB'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('to', 'PART'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('for', 'ADP'), ('all', 'DET'), ('that', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('how', 'SCONJ'), ('it', 'PRON'), ('happened', 'VERB'), (' ', 'SPACE'), ('When', 'SCONJ'), ('we', 'PRON'), ('met', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('turned', 'VERB'), ('back', 'ADV'), ('and', 'CCONJ'), ('walked', 'VERB'), ('with', 'ADP'), ('us', 'PRON'), ('and', 'CCONJ'), ('so', 'ADV'), ('we', 'PRON'), ('began', 'VERB'), ('talking', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('one', 'NUM'), ('thing', 'NOUN'), ('and', 'CCONJ'), ('another', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('said', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('So', 'ADV'), ('Colonel', 'PROPN'), ('there', 'PRON'), ('is', 'VERB'), ('a', 'DET'), ('new', 'ADJ'), ('family', 'NOUN'), ('\n', 'SPACE'), ('come', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('cottage', 'NOUN'), ('I', 'PRON'), ('hear', 'VERB'), ('and', 'CCONJ'), ('mama', 'PROPN'), ('sends', 'VERB'), ('me', 'PRON'), ('word', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('pretty', 'ADJ'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('one', 'NUM'), ('of', 'ADP'), ('them', 'PRON'), ('is', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('married', 'ADJ'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('of', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), (' ', 'SPACE'), ('Is', 'AUX'), ('it', 'PRON'), ('true', 'ADJ'), ('\n', 'SPACE'), ('pray', 'NOUN'), ('for', 'ADP'), ('of', 'ADP'), ('course', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('know', 'VERB'), ('as', 'SCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('\n', 'SPACE'), ('Devonshire', 'PROPN'), ('so', 'ADV'), ('lately', 'ADV'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('what', 'PRON'), ('did', 'AUX'), ('the', 'DET'), ('Colonel', 'PROPN'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('Ohhe', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('say', 'VERB'), ('much', 'ADJ'), ('but', 'CCONJ'), ('he', 'PRON'), ('looked', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('knew', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('true', 'ADJ'), ('so', 'ADV'), ('from', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('I', 'PRON'), ('set', 'VERB'), ('it', 'PRON'), ('down', 'ADP'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('certain', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('delightful', 'ADJ'), ('I', 'PRON'), ('declare', 'VERB'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('is', 'AUX'), ('it', 'PRON'), ('to', 'PART'), ('take', 'VERB'), ('place', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('yes', 'INTJ'), ('quite', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('so', 'ADV'), ('full', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('praises', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('did', 'VERB'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('say', 'VERB'), ('fine', 'ADJ'), ('things', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('flattered', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('commendation', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('seems', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('excellent', 'ADJ'), ('man', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('uncommonly', 'ADV'), ('pleasing', 'ADJ'), ('\n\n', 'SPACE'), ('So', 'ADV'), ('do', 'VERB'), ('IHe', 'NOUN'), ('is', 'AUX'), ('such', 'DET'), ('a', 'DET'), ('charming', 'ADJ'), ('man', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('pity', 'NOUN'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('grave', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('dull', 'ADJ'), ('\n', 'SPACE'), ('Mamma', 'PROPN'), ('says', 'VERB'), ('HE', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('love', 'NOUN'), ('with', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('compliment', 'NOUN'), ('if', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('for', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('hardly', 'ADV'), ('ever', 'ADV'), ('falls', 'VERB'), ('in', 'ADP'), ('love', 'NOUN'), ('with', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('much', 'ADV'), ('known', 'VERB'), ('in', 'ADP'), ('your', 'PRON'), ('part', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Somersetshire', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('yes', 'INTJ'), ('extremely', 'ADV'), ('well', 'INTJ'), ('that', 'PRON'), ('is', 'AUX'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('\n', 'SPACE'), ('many', 'ADJ'), ('people', 'NOUN'), ('are', 'AUX'), ('acquainted', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('because', 'SCONJ'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('off', 'ADV'), ('but', 'CCONJ'), ('they', 'PRON'), ('all', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('extremely', 'ADV'), ('agreeable', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('Nobody', 'PRON'), ('is', 'AUX'), ('more', 'ADV'), ('liked', 'VERB'), ('than', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('wherever', 'SCONJ'), ('he', 'PRON'), ('goes', 'VERB'), ('and', 'CCONJ'), ('so', 'ADV'), ('you', 'PRON'), ('may', 'AUX'), ('tell', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('monstrous', 'ADJ'), ('lucky', 'ADJ'), ('girl', 'NOUN'), ('to', 'PART'), ('get', 'VERB'), ('him', 'PRON'), ('upon', 'SCONJ'), ('my', 'PRON'), ('honour', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('but', 'SCONJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('much', 'ADV'), ('more', 'ADV'), ('lucky', 'ADJ'), ('in', 'ADP'), ('getting', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('handsome', 'ADJ'), ('and', 'CCONJ'), ('agreeable', 'ADJ'), ('that', 'SCONJ'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('be', 'AUX'), ('good', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('However', 'ADV'), ('I', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('hardly', 'ADV'), ('at', 'ADP'), ('all', 'DET'), ('handsomer', 'NOUN'), ('than', 'ADP'), ('you', 'PRON'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('both', 'PRON'), ('excessively', 'ADV'), ('pretty', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('does', 'VERB'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('too', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('though', 'SCONJ'), ('we', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('get', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('own', 'VERB'), ('it', 'PRON'), ('last', 'ADJ'), ('night', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('information', 'NOUN'), ('respecting', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('material', 'ADJ'), ('but', 'CCONJ'), ('any', 'DET'), ('testimony', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('favour', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('small', 'ADJ'), ('was', 'AUX'), ('pleasing', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('glad', 'ADJ'), ('we', 'PRON'), ('are', 'AUX'), ('got', 'AUX'), ('acquainted', 'VERB'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('continued', 'VERB'), ('CharlotteAnd', 'PROPN'), ('now', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('great', 'ADJ'), ('friends', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('ca', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('how', 'SCONJ'), ('much', 'ADV'), ('I', 'PRON'), ('longed', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('delightful', 'ADJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('live', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('Nothing', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('like', 'SCONJ'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('glad', 'ADJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('sister', 'NOUN'), ('is', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('well', 'ADV'), ('married', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('at', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('sweet', 'ADJ'), ('place', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('all', 'DET'), ('accounts', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('have', 'VERB'), ('not', 'PART'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('a', 'DET'), ('great', 'ADJ'), ('while', 'NOUN'), ('ever', 'ADV'), ('since', 'SCONJ'), ('my', 'PRON'), ('sister', 'NOUN'), ('married', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('particular', 'ADJ'), ('friend', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('added', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('he', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('glad', 'ADJ'), ('to', 'PART'), ('have', 'AUX'), ('had', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('wished', 'VERB'), ('it', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('mama', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('match', 'NOUN'), ('good', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('me', 'PRON'), ('otherwise', 'ADV'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('mentioned', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('Colonel', 'PROPN'), ('and', 'CCONJ'), ('we', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('married', 'VERB'), ('immediately', 'ADV'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('know', 'VERB'), ('of', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('proposal', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), ('before', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('made', 'VERB'), (' ', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('never', 'ADV'), ('owned', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('affection', 'NOUN'), ('to', 'ADP'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('no', 'INTJ'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('mama', 'PROPN'), ('had', 'AUX'), ('not', 'PART'), ('objected', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('he', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('liked', 'VERB'), ('it', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('seen', 'VERB'), ('me', 'PRON'), ('then', 'ADV'), ('above', 'ADV'), ('twice', 'ADV'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('left', 'VERB'), ('school', 'NOUN'), (' ', 'SPACE'), ('However', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('much', 'ADV'), ('happier', 'ADJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('is', 'AUX'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('man', 'NOUN'), ('I', 'PRON'), ('like', 'VERB'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('21', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('Palmers', 'PROPN'), ('returned', 'VERB'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('two', 'NUM'), ('families', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('were', 'AUX'), ('again', 'ADV'), ('left', 'VERB'), ('to', 'PART'), ('entertain', 'VERB'), ('\n', 'SPACE'), ('each', 'DET'), ('other', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('this', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('last', 'VERB'), ('long', 'ADJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('got', 'VERB'), ('their', 'PRON'), ('last', 'ADJ'), ('visitors', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('had', 'AUX'), ('hardly', 'ADV'), ('done', 'VERB'), ('\n', 'SPACE'), ('wondering', 'VERB'), ('at', 'ADP'), ('Charlottes', 'PROPN'), ('being', 'AUX'), ('so', 'ADV'), ('happy', 'ADJ'), ('without', 'ADP'), ('a', 'DET'), ('cause', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Mr', 'PROPN'), ('Palmers', 'PROPN'), ('acting', 'VERB'), ('so', 'ADV'), ('simply', 'ADV'), ('with', 'ADP'), ('good', 'ADJ'), ('abilities', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('strange', 'ADJ'), ('unsuitableness', 'NOUN'), ('which', 'PRON'), ('often', 'ADV'), ('existed', 'VERB'), ('between', 'ADP'), ('\n', 'SPACE'), ('husband', 'NOUN'), ('and', 'CCONJ'), ('wife', 'NOUN'), ('before', 'SCONJ'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('active', 'ADJ'), ('zeal', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('cause', 'NOUN'), ('of', 'ADP'), ('society', 'NOUN'), ('procured', 'VERB'), ('her', 'PRON'), ('some', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('new', 'ADJ'), ('acquaintance', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('and', 'CCONJ'), ('observe', 'VERB'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('mornings', 'NOUN'), ('excursion', 'NOUN'), ('to', 'ADP'), ('Exeter', 'PROPN'), ('they', 'PRON'), ('had', 'AUX'), ('met', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('two', 'NUM'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('whom', 'PRON'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'VERB'), ('the', 'DET'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('discovering', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('her', 'PRON'), ('relations', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('to', 'PART'), ('invite', 'VERB'), ('them', 'PRON'), ('directly', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('their', 'PRON'), ('present', 'ADJ'), ('engagements', 'NOUN'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('were', 'AUX'), ('over', 'ADP'), ('\n', 'SPACE'), ('Their', 'PRON'), ('engagements', 'NOUN'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('instantly', 'ADV'), ('gave', 'VERB'), ('way', 'NOUN'), ('before', 'ADV'), ('\n', 'SPACE'), ('such', 'DET'), ('an', 'DET'), ('invitation', 'NOUN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('thrown', 'VERB'), ('into', 'ADP'), ('\n', 'SPACE'), ('no', 'DET'), ('little', 'ADJ'), ('alarm', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('return', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('by', 'ADP'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('soon', 'ADV'), ('to', 'PART'), ('receive', 'VERB'), ('a', 'DET'), ('visit', 'NOUN'), ('from', 'ADP'), ('two', 'NUM'), ('girls', 'NOUN'), ('\n', 'SPACE'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('seen', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('whose', 'DET'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('whose', 'DET'), ('tolerable', 'ADJ'), ('gentility', 'NOUN'), ('even', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('assurances', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('and', 'CCONJ'), ('mother', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('went', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('Their', 'PRON'), ('being', 'AUX'), ('her', 'PRON'), ('relations', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('it', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('the', 'DET'), ('worse', 'ADJ'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('attempts', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('consolation', 'NOUN'), ('were', 'AUX'), ('therefore', 'ADV'), ('unfortunately', 'ADV'), ('founded', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('she', 'PRON'), ('advised', 'VERB'), ('her', 'PRON'), ('daughter', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('care', 'VERB'), ('about', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('fashionable', 'ADJ'), ('because', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('all', 'PRON'), ('cousins', 'NOUN'), ('and', 'CCONJ'), ('must', 'AUX'), ('put', 'VERB'), ('\n', 'SPACE'), ('up', 'ADP'), ('with', 'ADP'), ('one', 'NUM'), ('another', 'DET'), (' ', 'SPACE'), ('As', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('however', 'ADV'), ('now', 'ADV'), ('to', 'PART'), ('\n', 'SPACE'), ('prevent', 'VERB'), ('their', 'PRON'), ('coming', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('resigned', 'VERB'), ('herself', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('idea', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('philosophy', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('wellbred', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('contenting', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('merely', 'ADV'), ('giving', 'VERB'), ('her', 'PRON'), ('husband', 'NOUN'), ('a', 'DET'), ('gentle', 'ADJ'), ('\n', 'SPACE'), ('reprimand', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('five', 'NUM'), ('or', 'CCONJ'), ('six', 'NUM'), ('times', 'NOUN'), ('every', 'DET'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('arrived', 'VERB'), ('their', 'PRON'), ('appearance', 'NOUN'), ('was', 'AUX'), ('by', 'ADP'), ('\n', 'SPACE'), ('no', 'DET'), ('means', 'NOUN'), ('ungenteel', 'ADJ'), ('or', 'CCONJ'), ('unfashionable', 'ADJ'), (' ', 'SPACE'), ('Their', 'PRON'), ('dress', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('very', 'ADV'), ('smart', 'ADJ'), ('their', 'PRON'), ('manners', 'NOUN'), ('very', 'ADV'), ('civil', 'ADJ'), ('they', 'PRON'), ('were', 'AUX'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('raptures', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('furniture', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('doatingly', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('children', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('was', 'AUX'), ('engaged', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('favour', 'NOUN'), ('before', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('an', 'DET'), ('hour', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('declared', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('very', 'ADV'), ('agreeable', 'ADJ'), ('girls', 'NOUN'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('which', 'PRON'), ('for', 'ADP'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('was', 'AUX'), ('enthusiastic', 'ADJ'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('confidence', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('judgment', 'NOUN'), ('rose', 'VERB'), ('with', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('animated', 'VERB'), ('praise', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('set', 'VERB'), ('off', 'ADP'), ('directly', 'ADV'), ('for', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('tell', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('assure', 'VERB'), ('them', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('the', 'DET'), ('sweetest', 'ADJ'), ('girls', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('From', 'ADP'), ('such', 'ADJ'), ('commendation', 'NOUN'), ('as', 'ADP'), ('this', 'PRON'), ('however', 'ADV'), ('\n', 'SPACE'), ('there', 'PRON'), ('was', 'VERB'), ('not', 'PART'), ('much', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('learned', 'VERB'), ('Elinor', 'PROPN'), ('well', 'ADV'), ('knew', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('sweetest', 'ADJ'), ('girls', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('met', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('in', 'ADP'), ('every', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('England', 'PROPN'), ('under', 'ADP'), ('every', 'DET'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('variation', 'NOUN'), ('of', 'ADP'), ('form', 'NOUN'), ('face', 'VERB'), ('temper', 'NOUN'), ('and', 'CCONJ'), ('understanding', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('wanted', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('family', 'NOUN'), ('to', 'PART'), ('walk', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('directly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('look', 'VERB'), ('at', 'ADP'), ('his', 'PRON'), ('guests', 'NOUN'), (' ', 'SPACE'), ('Benevolent', 'PROPN'), ('philanthropic', 'NOUN'), ('man', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('painful', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('even', 'ADV'), ('to', 'PART'), ('keep', 'VERB'), ('a', 'DET'), ('third', 'ADJ'), ('cousin', 'NOUN'), ('to', 'ADP'), ('himself', 'PRON'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('come', 'VERB'), ('now', 'ADV'), ('said', 'VERB'), ('hepray', 'ADJ'), ('comeyou', 'PRON'), ('must', 'AUX'), ('comeI', 'VERB'), ('\n', 'SPACE'), ('declare', 'NOUN'), ('you', 'PRON'), ('shall', 'AUX'), ('comeYou', 'PROPN'), ('ca', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('how', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('like', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('is', 'AUX'), ('monstrous', 'ADJ'), ('pretty', 'ADV'), ('and', 'CCONJ'), ('so', 'ADV'), ('good', 'ADJ'), ('humoured', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('agreeable', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('children', 'NOUN'), ('are', 'AUX'), ('all', 'PRON'), ('hanging', 'VERB'), ('about', 'ADP'), ('her', 'PRON'), ('already', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('old', 'ADJ'), ('acquaintance', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('they', 'PRON'), ('both', 'PRON'), ('long', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('for', 'SCONJ'), ('they', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('beautiful', 'ADJ'), ('creatures', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('told', 'VERB'), ('them', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('all', 'PRON'), ('very', 'ADV'), ('true', 'ADJ'), ('and', 'CCONJ'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('deal', 'NOUN'), ('more', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('delighted', 'ADJ'), ('with', 'ADP'), ('them', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('They', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('coach', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('playthings', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('children', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('you', 'PRON'), ('be', 'AUX'), ('so', 'ADV'), ('cross', 'ADJ'), ('as', 'ADV'), ('not', 'PART'), ('to', 'PART'), ('come', 'VERB'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('your', 'PRON'), ('cousins', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('after', 'ADP'), ('a', 'DET'), ('fashion', 'NOUN'), ('\n', 'SPACE'), ('YOU', 'PRON'), ('are', 'AUX'), ('my', 'PRON'), ('cousins', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('my', 'PRON'), ('wifes', 'NOUN'), ('so', 'SCONJ'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('related', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('prevail', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('only', 'ADV'), ('obtain', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('promise', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('calling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('within', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('left', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('amazement', 'NOUN'), ('at', 'ADP'), ('their', 'PRON'), ('indifference', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('walk', 'VERB'), ('home', 'ADV'), ('and', 'CCONJ'), ('boast', 'VERB'), ('anew', 'ADV'), ('of', 'ADP'), ('their', 'PRON'), ('attractions', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('already', 'ADV'), ('boasting', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Steeles', 'PROPN'), ('to', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('their', 'PRON'), ('promised', 'VERB'), ('visit', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('and', 'CCONJ'), ('consequent', 'ADJ'), ('\n', 'SPACE'), ('introduction', 'NOUN'), ('to', 'ADP'), ('these', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('took', 'VERB'), ('place', 'NOUN'), ('they', 'PRON'), ('found', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('eldest', 'ADJ'), ('who', 'PRON'), ('was', 'AUX'), ('nearly', 'ADV'), ('thirty', 'NUM'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('plain', 'ADJ'), ('and', 'CCONJ'), ('not', 'PART'), ('a', 'DET'), ('sensible', 'ADJ'), ('face', 'NOUN'), ('nothing', 'PRON'), ('to', 'PART'), ('admire', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('who', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('more', 'ADJ'), ('than', 'ADP'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('they', 'PRON'), ('acknowledged', 'VERB'), ('considerable', 'ADJ'), ('beauty', 'NOUN'), ('her', 'PRON'), ('\n', 'SPACE'), ('features', 'NOUN'), ('were', 'AUX'), ('pretty', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('sharp', 'ADJ'), ('quick', 'ADJ'), ('eye', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('smartness', 'NOUN'), ('of', 'ADP'), ('air', 'NOUN'), ('which', 'PRON'), ('though', 'SCONJ'), ('it', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('actual', 'ADJ'), ('elegance', 'NOUN'), ('or', 'CCONJ'), ('grace', 'NOUN'), ('gave', 'VERB'), ('distinction', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('person', 'NOUN'), ('\n', 'SPACE'), ('Their', 'PRON'), ('manners', 'NOUN'), ('were', 'AUX'), ('particularly', 'ADV'), ('civil', 'ADJ'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('soon', 'ADV'), ('\n', 'SPACE'), ('allowed', 'VERB'), ('them', 'PRON'), ('credit', 'NOUN'), ('for', 'ADP'), ('some', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('sense', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('saw', 'VERB'), ('with', 'ADP'), ('what', 'PRON'), ('constant', 'ADJ'), ('and', 'CCONJ'), ('judicious', 'ADJ'), ('attention', 'NOUN'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('making', 'VERB'), ('themselves', 'PRON'), ('agreeable', 'ADJ'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('With', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('in', 'ADP'), ('continual', 'ADJ'), ('raptures', 'NOUN'), ('\n', 'SPACE'), ('extolling', 'VERB'), ('their', 'PRON'), ('beauty', 'NOUN'), ('courting', 'VERB'), ('their', 'PRON'), ('notice', 'NOUN'), ('and', 'CCONJ'), ('humouring', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('whims', 'NOUN'), ('and', 'CCONJ'), ('such', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('time', 'NOUN'), ('as', 'SCONJ'), ('could', 'AUX'), ('be', 'AUX'), ('spared', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('importunate', 'ADJ'), ('demands', 'NOUN'), ('which', 'PRON'), ('this', 'DET'), ('politeness', 'NOUN'), ('made', 'VERB'), ('on', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('spent', 'VERB'), ('in', 'ADP'), ('admiration', 'NOUN'), ('of', 'ADP'), ('whatever', 'PRON'), ('her', 'PRON'), ('ladyship', 'NOUN'), ('was', 'AUX'), ('doing', 'VERB'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('she', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('doing', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('taking', 'VERB'), ('patterns', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('some', 'DET'), ('elegant', 'ADJ'), ('new', 'ADJ'), ('dress', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('her', 'PRON'), ('appearance', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('day', 'NOUN'), ('before', 'ADV'), ('had', 'AUX'), ('thrown', 'VERB'), ('them', 'PRON'), ('into', 'ADP'), ('unceasing', 'VERB'), ('delight', 'NOUN'), ('\n', 'SPACE'), ('Fortunately', 'ADV'), ('for', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('pay', 'VERB'), ('their', 'PRON'), ('court', 'NOUN'), ('through', 'ADP'), ('\n', 'SPACE'), ('such', 'ADJ'), ('foibles', 'NOUN'), ('a', 'DET'), ('fond', 'ADJ'), ('mother', 'NOUN'), ('though', 'ADV'), ('in', 'ADP'), ('pursuit', 'NOUN'), ('of', 'ADP'), ('praise', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('rapacious', 'ADJ'), ('of', 'ADP'), ('human', 'ADJ'), ('beings', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('likewise', 'ADV'), ('the', 'DET'), ('most', 'ADV'), ('credulous', 'ADJ'), ('her', 'PRON'), ('demands', 'NOUN'), ('are', 'AUX'), ('exorbitant', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('will', 'AUX'), ('swallow', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('excessive', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('endurance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('towards', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('offspring', 'NOUN'), ('were', 'AUX'), ('viewed', 'VERB'), ('therefore', 'ADV'), ('by', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('without', 'ADP'), ('the', 'DET'), ('smallest', 'ADJ'), ('surprise', 'NOUN'), ('or', 'CCONJ'), ('distrust', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('maternal', 'ADJ'), ('complacency', 'NOUN'), ('all', 'DET'), ('the', 'DET'), ('impertinent', 'ADJ'), ('encroachments', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('mischievous', 'ADJ'), ('tricks', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('her', 'PRON'), ('cousins', 'NOUN'), ('submitted', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('their', 'PRON'), ('sashes', 'NOUN'), ('untied', 'VERB'), ('their', 'PRON'), ('hair', 'NOUN'), ('pulled', 'VERB'), ('about', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('ears', 'NOUN'), ('their', 'PRON'), ('workbags', 'NOUN'), ('searched', 'VERB'), ('and', 'CCONJ'), ('their', 'PRON'), ('knives', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('scissors', 'NOUN'), ('stolen', 'VERB'), ('away', 'ADP'), ('and', 'CCONJ'), ('felt', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('reciprocal', 'ADJ'), ('enjoyment', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('suggested', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('that', 'PRON'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('should', 'AUX'), ('sit', 'VERB'), ('so', 'ADV'), ('composedly', 'ADV'), ('by', 'ADP'), ('\n', 'SPACE'), ('without', 'ADP'), ('claiming', 'VERB'), ('a', 'DET'), ('share', 'NOUN'), ('in', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('passing', 'VERB'), ('\n\n', 'SPACE'), ('John', 'PROPN'), ('is', 'AUX'), ('in', 'ADP'), ('such', 'ADJ'), ('spirits', 'NOUN'), ('today', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('on', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('taking', 'VERB'), ('Miss', 'PROPN'), ('Steeless', 'PROPN'), ('pocket', 'NOUN'), ('handkerchief', 'NOUN'), ('and', 'CCONJ'), ('throwing', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('windowHe', 'PROPN'), ('is', 'AUX'), ('full', 'ADJ'), ('of', 'ADP'), ('monkey', 'NOUN'), ('tricks', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('second', 'ADJ'), ('boys', 'NOUN'), ('violently', 'ADV'), ('\n', 'SPACE'), ('pinching', 'VERB'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('ladys', 'ADJ'), ('fingers', 'NOUN'), ('she', 'PRON'), ('fondly', 'ADV'), ('observed', 'VERB'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('playful', 'ADJ'), ('William', 'PROPN'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('here', 'ADV'), ('is', 'AUX'), ('my', 'PRON'), ('sweet', 'ADJ'), ('little', 'ADJ'), ('Annamaria', 'PROPN'), ('she', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('tenderly', 'ADV'), ('caressing', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('girl', 'NOUN'), ('of', 'ADP'), ('three', 'NUM'), ('years', 'NOUN'), ('old', 'ADJ'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('made', 'VERB'), ('a', 'DET'), ('noise', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('two', 'NUM'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('always', 'ADV'), ('so', 'ADV'), ('gentle', 'ADJ'), ('and', 'CCONJ'), ('quietNever', 'PROPN'), ('was', 'AUX'), ('there', 'PRON'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('quiet', 'ADJ'), ('little', 'ADJ'), ('thing', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('unfortunately', 'ADV'), ('in', 'ADP'), ('bestowing', 'VERB'), ('these', 'DET'), ('embraces', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('pin', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('ladyships', 'NOUN'), ('head', 'NOUN'), ('dress', 'VERB'), ('slightly', 'ADV'), ('scratching', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('childs', 'NOUN'), ('neck', 'NOUN'), ('produced', 'VERB'), ('from', 'ADP'), ('this', 'DET'), ('pattern', 'NOUN'), ('of', 'ADP'), ('gentleness', 'NOUN'), ('\n', 'SPACE'), ('such', 'ADJ'), ('violent', 'ADJ'), ('screams', 'NOUN'), ('as', 'SCONJ'), ('could', 'AUX'), ('hardly', 'ADV'), ('be', 'AUX'), ('outdone', 'VERB'), ('by', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('creature', 'NOUN'), ('professedly', 'ADV'), ('noisy', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('mothers', 'NOUN'), ('consternation', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('excessive', 'ADJ'), ('but', 'CCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('surpass', 'VERB'), ('the', 'DET'), ('alarm', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('done', 'VERB'), ('by', 'ADP'), ('all', 'DET'), ('three', 'NUM'), ('\n', 'SPACE'), ('in', 'ADP'), ('so', 'ADV'), ('critical', 'ADJ'), ('an', 'DET'), ('emergency', 'NOUN'), ('which', 'DET'), ('affection', 'NOUN'), ('could', 'AUX'), ('suggest', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('assuage', 'VERB'), ('the', 'DET'), ('agonies', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('little', 'ADJ'), ('sufferer', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('seated', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('lap', 'VERB'), ('covered', 'VERB'), ('with', 'ADP'), ('kisses', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('wound', 'NOUN'), ('bathed', 'VERB'), ('with', 'ADP'), ('lavenderwater', 'NOUN'), ('by', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('her', 'PRON'), ('knees', 'NOUN'), ('to', 'PART'), ('attend', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('mouth', 'NOUN'), ('stuffed', 'VERB'), ('with', 'ADP'), ('sugar', 'NOUN'), ('plums', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('With', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('reward', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('tears', 'NOUN'), ('the', 'DET'), ('child', 'NOUN'), ('was', 'AUX'), ('too', 'ADV'), ('wise', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('cease', 'VERB'), ('crying', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('still', 'ADV'), ('screamed', 'VERB'), ('and', 'CCONJ'), ('sobbed', 'VERB'), ('lustily', 'ADV'), ('\n', 'SPACE'), ('kicked', 'VERB'), ('her', 'PRON'), ('two', 'NUM'), ('brothers', 'NOUN'), ('for', 'ADP'), ('offering', 'VERB'), ('to', 'PART'), ('touch', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('all', 'DET'), ('\n', 'SPACE'), ('their', 'PRON'), ('united', 'ADJ'), ('soothings', 'NOUN'), ('were', 'AUX'), ('ineffectual', 'ADJ'), ('till', 'SCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('luckily', 'ADV'), ('remembering', 'VERB'), ('that', 'SCONJ'), ('in', 'ADP'), ('a', 'DET'), ('scene', 'NOUN'), ('of', 'ADP'), ('similar', 'ADJ'), ('distress', 'NOUN'), ('\n', 'SPACE'), ('last', 'ADJ'), ('week', 'NOUN'), ('some', 'DET'), ('apricot', 'PROPN'), ('marmalade', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('successfully', 'ADV'), ('\n', 'SPACE'), ('applied', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('bruised', 'VERB'), ('temple', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('remedy', 'NOUN'), ('was', 'AUX'), ('eagerly', 'ADV'), ('\n', 'SPACE'), ('proposed', 'VERB'), ('for', 'ADP'), ('this', 'DET'), ('unfortunate', 'ADJ'), ('scratch', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('slight', 'ADJ'), ('\n', 'SPACE'), ('intermission', 'NOUN'), ('of', 'ADP'), ('screams', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('on', 'ADP'), ('hearing', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('gave', 'VERB'), ('them', 'PRON'), ('reason', 'NOUN'), ('to', 'PART'), ('hope', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('rejected', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('carried', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('therefore', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('arms', 'NOUN'), ('in', 'ADP'), ('quest', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('medicine', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('two', 'NUM'), ('boys', 'NOUN'), ('chose', 'VERB'), ('to', 'PART'), ('follow', 'VERB'), ('though', 'ADV'), ('earnestly', 'ADV'), ('entreated', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('their', 'PRON'), ('mother', 'NOUN'), ('to', 'PART'), ('stay', 'VERB'), ('behind', 'ADP'), ('the', 'DET'), ('four', 'NUM'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('left', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('quietness', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('room', 'NOUN'), ('had', 'AUX'), ('not', 'PART'), ('known', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('many', 'ADJ'), ('hours', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'ADJ'), ('little', 'ADJ'), ('creatures', 'NOUN'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('as', 'ADP'), ('soon', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('sad', 'ADJ'), ('accident', 'NOUN'), ('\n\n', 'SPACE'), ('Yet', 'CCONJ'), ('I', 'PRON'), ('hardly', 'ADV'), ('know', 'VERB'), ('how', 'SCONJ'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('unless', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('under', 'ADP'), ('totally', 'ADV'), ('different', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('usual', 'ADJ'), ('way', 'NOUN'), ('of', 'ADP'), ('heightening', 'VERB'), ('alarm', 'NOUN'), ('where', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('nothing', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('alarmed', 'VERB'), ('at', 'ADP'), ('in', 'ADP'), ('reality', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('sweet', 'ADJ'), ('woman', 'NOUN'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('is', 'AUX'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('silent', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('her', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), ('however', 'ADV'), ('trivial', 'ADJ'), ('the', 'DET'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('upon', 'SCONJ'), ('Elinor', 'PROPN'), ('therefore', 'ADV'), ('the', 'DET'), ('whole', 'ADJ'), ('task', 'NOUN'), ('of', 'ADP'), ('telling', 'VERB'), ('lies', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('politeness', 'NOUN'), ('required', 'VERB'), ('it', 'PRON'), ('always', 'ADV'), ('fell', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('did', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('best', 'ADJ'), ('when', 'SCONJ'), ('thus', 'ADV'), ('called', 'VERB'), ('on', 'ADP'), ('by', 'ADP'), ('speaking', 'VERB'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('more', 'ADJ'), ('warmth', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('though', 'ADV'), ('with', 'ADP'), ('far', 'ADV'), ('less', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Lucy', 'PROPN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('too', 'ADV'), ('cried', 'VERB'), ('the', 'DET'), ('elder', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('what', 'PRON'), ('a', 'DET'), ('charming', 'ADJ'), ('man', 'NOUN'), ('he', 'PRON'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('too', 'ADV'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('commendation', 'NOUN'), ('being', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('just', 'ADV'), ('came', 'VERB'), ('in', 'ADP'), ('without', 'ADP'), ('any', 'DET'), ('eclat', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('merely', 'ADV'), ('\n', 'SPACE'), ('observed', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('perfectly', 'ADV'), ('good', 'ADJ'), ('humoured', 'VERB'), ('and', 'CCONJ'), ('friendly', 'ADJ'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('what', 'PRON'), ('a', 'DET'), ('charming', 'ADJ'), ('little', 'ADJ'), ('family', 'NOUN'), ('they', 'PRON'), ('have', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('\n', 'SPACE'), ('never', 'ADV'), ('saw', 'VERB'), ('such', 'ADJ'), ('fine', 'ADJ'), ('children', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('lifeI', 'NOUN'), ('declare', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('quite', 'ADV'), ('doat', 'NOUN'), ('upon', 'SCONJ'), ('them', 'PRON'), ('already', 'ADV'), ('and', 'CCONJ'), ('indeed', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('always', 'ADV'), ('\n', 'SPACE'), ('distractedly', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('children', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('guess', 'VERB'), ('so', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('witnessed', 'VERB'), ('this', 'DET'), ('morning', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('notion', 'NOUN'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('you', 'PRON'), ('think', 'VERB'), ('the', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('Middletons', 'PROPN'), ('rather', 'ADV'), ('too', 'ADV'), ('much', 'ADV'), ('indulged', 'ADJ'), ('perhaps', 'ADV'), ('they', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('outside', 'NOUN'), ('of', 'ADP'), ('enough', 'ADJ'), ('but', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('natural', 'ADJ'), ('in', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('for', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('I', 'PRON'), ('love', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('children', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('spirits', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('them', 'PRON'), ('if', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('tame', 'ADJ'), ('and', 'CCONJ'), ('quiet', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('confess', 'VERB'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('while', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('I', 'PRON'), ('never', 'ADV'), ('think', 'VERB'), ('of', 'ADP'), ('tame', 'ADJ'), ('and', 'CCONJ'), ('quiet', 'ADJ'), ('children', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('any', 'DET'), ('abhorrence', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('short', 'ADJ'), ('pause', 'NOUN'), ('succeeded', 'VERB'), ('this', 'DET'), ('speech', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('first', 'ADJ'), ('\n', 'SPACE'), ('broken', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('who', 'PRON'), ('seemed', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('disposed', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('conversation', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('now', 'ADV'), ('said', 'VERB'), ('rather', 'ADV'), ('abruptly', 'ADV'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('like', 'VERB'), ('Devonshire', 'PROPN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('were', 'AUX'), ('very', 'ADV'), ('sorry', 'ADJ'), ('to', 'PART'), ('leave', 'VERB'), ('Sussex', 'PROPN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('familiarity', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('manner', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('spoken', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('replied', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('Norland', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('prodigious', 'ADJ'), ('beautiful', 'ADJ'), ('place', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('it', 'PRON'), ('\n', 'SPACE'), ('added', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('admire', 'VERB'), ('it', 'PRON'), ('excessively', 'ADV'), ('\n', 'SPACE'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('some', 'DET'), ('apology', 'NOUN'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('freedom', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('every', 'DET'), ('one', 'NOUN'), ('MUST', 'AUX'), ('admire', 'VERB'), ('it', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), ('the', 'DET'), ('place', 'NOUN'), ('though', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('any', 'DET'), ('one', 'NOUN'), ('can', 'AUX'), ('estimate', 'VERB'), ('its', 'PRON'), ('beauties', 'NOUN'), ('as', 'SCONJ'), ('we', 'PRON'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('had', 'VERB'), ('you', 'PRON'), ('a', 'DET'), ('great', 'ADJ'), ('many', 'ADJ'), ('smart', 'ADJ'), ('beaux', 'PROPN'), ('there', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('\n', 'SPACE'), ('suppose', 'VERB'), ('you', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('so', 'ADV'), ('many', 'ADJ'), ('in', 'ADP'), ('this', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('they', 'PRON'), ('are', 'AUX'), ('a', 'DET'), ('vast', 'ADJ'), ('addition', 'NOUN'), ('always', 'ADV'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('should', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('looking', 'VERB'), ('ashamed', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('that', 'SCONJ'), ('there', 'PRON'), ('are', 'VERB'), ('not', 'PART'), ('as', 'ADV'), ('many', 'ADJ'), ('genteel', 'ADJ'), ('young', 'ADJ'), ('\n', 'SPACE'), ('men', 'NOUN'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('as', 'ADP'), ('Sussex', 'PROPN'), ('\n\n', 'SPACE'), ('Nay', 'PROPN'), ('my', 'PRON'), ('dear', 'ADJ'), ('I', 'PRON'), ('m', 'VERB'), ('sure', 'ADJ'), ('I', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('pretend', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('ant', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('m', 'VERB'), ('sure', 'ADJ'), ('there', 'PRON'), ('s', 'VERB'), ('a', 'DET'), ('vast', 'ADJ'), ('many', 'ADJ'), ('smart', 'ADJ'), ('beaux', 'NOUN'), ('in', 'ADP'), ('Exeter', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('you', 'PRON'), ('know', 'VERB'), ('how', 'SCONJ'), ('could', 'AUX'), ('I', 'PRON'), ('tell', 'VERB'), ('what', 'PRON'), ('smart', 'ADJ'), ('beaux', 'PROPN'), ('there', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('about', 'ADP'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('afraid', 'ADJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Dashwoods', 'PROPN'), ('might', 'AUX'), ('find', 'VERB'), ('it', 'PRON'), ('dull', 'ADJ'), ('at', 'ADP'), ('Barton', 'PROPN'), ('if', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('so', 'ADV'), ('many', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('used', 'VERB'), ('to', 'PART'), ('have', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('perhaps', 'ADV'), ('you', 'PRON'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('not', 'PART'), ('care', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('beaux', 'PROPN'), ('and', 'CCONJ'), ('had', 'VERB'), ('as', 'SCONJ'), ('lief', 'NOUN'), ('be', 'AUX'), ('without', 'ADP'), ('\n', 'SPACE'), ('them', 'PRON'), ('as', 'ADP'), ('with', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('For', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('they', 'PRON'), ('are', 'AUX'), ('vastly', 'ADV'), ('\n', 'SPACE'), ('agreeable', 'ADJ'), ('provided', 'VERB'), ('they', 'PRON'), ('dress', 'VERB'), ('smart', 'ADJ'), ('and', 'CCONJ'), ('behave', 'VERB'), ('civil', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('ca', 'AUX'), ('nt', 'PART'), ('bear', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('dirty', 'ADJ'), ('and', 'CCONJ'), ('nasty', 'ADJ'), (' ', 'SPACE'), ('Now', 'ADV'), ('there', 'PRON'), ('s', 'VERB'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Rose', 'PROPN'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('a', 'DET'), ('prodigious', 'ADJ'), ('smart', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('quite', 'DET'), ('a', 'DET'), ('beau', 'NOUN'), ('clerk', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Simpson', 'PROPN'), ('you', 'PRON'), ('know', 'VERB'), ('and', 'CCONJ'), ('yet', 'ADV'), ('if', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('do', 'VERB'), ('but', 'CCONJ'), ('meet', 'VERB'), ('him', 'PRON'), ('of', 'ADP'), ('a', 'DET'), ('morning', 'NOUN'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('fit', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('seen', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('your', 'PRON'), ('brother', 'NOUN'), ('was', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('beau', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('he', 'PRON'), ('married', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('rich', 'ADJ'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('perfectly', 'ADV'), ('comprehend', 'VERB'), ('the', 'DET'), ('meaning', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('this', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('say', 'VERB'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('ever', 'ADV'), ('was', 'AUX'), ('a', 'DET'), ('beau', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('married', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('one', 'NUM'), ('still', 'ADV'), ('for', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('\n', 'SPACE'), ('alteration', 'NOUN'), ('in', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('dear', 'ADJ'), ('one', 'NOUN'), ('never', 'ADV'), ('thinks', 'VERB'), ('of', 'ADP'), ('married', 'ADJ'), ('mens', 'NOUN'), ('being', 'AUX'), ('\n', 'SPACE'), ('beauxthey', 'PRON'), ('have', 'VERB'), ('something', 'PRON'), ('else', 'ADV'), ('to', 'PART'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('Lord', 'PROPN'), ('Anne', 'PROPN'), ('cried', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('you', 'PRON'), ('can', 'AUX'), ('talk', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('beauxyou', 'NOUN'), ('will', 'AUX'), ('make', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('believe', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('think', 'VERB'), ('of', 'ADP'), ('nothing', 'PRON'), ('else', 'ADV'), ('And', 'CCONJ'), ('then', 'ADV'), ('to', 'PART'), ('turn', 'VERB'), ('the', 'DET'), ('discourse', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('began', 'VERB'), ('admiring', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('furniture', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('specimen', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('was', 'AUX'), ('enough', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('vulgar', 'ADJ'), ('freedom', 'NOUN'), ('and', 'CCONJ'), ('folly', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('eldest', 'ADJ'), ('left', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('no', 'DET'), ('recommendation', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('blinded', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('beauty', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('shrewd', 'ADJ'), ('look', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('youngest', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('real', 'ADJ'), ('elegance', 'NOUN'), ('and', 'CCONJ'), ('artlessness', 'NOUN'), ('she', 'PRON'), ('left', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('wish', 'NOUN'), ('of', 'ADP'), ('knowing', 'VERB'), ('them', 'PRON'), ('better', 'ADV'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('so', 'ADV'), ('the', 'DET'), ('Miss', 'PROPN'), ('SteelesThey', 'PROPN'), ('came', 'VERB'), ('from', 'ADP'), ('Exeter', 'PROPN'), ('well', 'ADV'), ('\n', 'SPACE'), ('provided', 'VERB'), ('with', 'ADP'), ('admiration', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('use', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('his', 'PRON'), ('family', 'NOUN'), ('and', 'CCONJ'), ('all', 'DET'), ('his', 'PRON'), ('relations', 'NOUN'), ('and', 'CCONJ'), ('no', 'DET'), ('niggardly', 'ADV'), ('\n', 'SPACE'), ('proportion', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('dealt', 'VERB'), ('out', 'ADP'), ('to', 'ADP'), ('his', 'PRON'), ('fair', 'ADJ'), ('cousins', 'NOUN'), ('whom', 'PRON'), ('they', 'PRON'), ('\n', 'SPACE'), ('declared', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('beautiful', 'ADJ'), ('elegant', 'ADJ'), ('accomplished', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('agreeable', 'ADJ'), ('girls', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('beheld', 'ADJ'), ('and', 'CCONJ'), ('with', 'ADP'), ('whom', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('particularly', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('better', 'ADV'), ('acquainted', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('better', 'ADV'), ('acquainted', 'VERB'), ('therefore', 'ADV'), ('Elinor', 'PROPN'), ('soon', 'ADV'), ('found', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('their', 'PRON'), ('inevitable', 'ADJ'), ('lot', 'NOUN'), ('for', 'ADP'), ('as', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('was', 'AUX'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('their', 'PRON'), ('party', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('too', 'ADV'), ('strong', 'ADJ'), ('for', 'ADP'), ('opposition', 'NOUN'), ('and', 'CCONJ'), ('that', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('intimacy', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('submitted', 'VERB'), ('to', 'ADP'), ('which', 'PRON'), ('consists', 'VERB'), ('of', 'ADP'), ('sitting', 'VERB'), ('an', 'DET'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('two', 'NUM'), ('together', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('room', 'NOUN'), ('almost', 'ADV'), ('every', 'PRON'), ('day', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('could', 'AUX'), ('do', 'VERB'), ('no', 'PRON'), ('more', 'ADJ'), ('but', 'CCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('that', 'SCONJ'), ('any', 'DET'), ('\n', 'SPACE'), ('more', 'ADJ'), ('was', 'AUX'), ('required', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('together', 'ADV'), ('was', 'AUX'), ('in', 'ADP'), ('his', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('intimate', 'ADJ'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('his', 'PRON'), ('continual', 'ADJ'), ('schemes', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('meeting', 'NOUN'), ('were', 'AUX'), ('effectual', 'ADJ'), ('he', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('established', 'VERB'), ('friends', 'NOUN'), ('\n\n', 'SPACE'), ('To', 'PART'), ('do', 'VERB'), ('him', 'PRON'), ('justice', 'NOUN'), ('he', 'PRON'), ('did', 'AUX'), ('every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('power', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('promote', 'VERB'), ('their', 'PRON'), ('unreserve', 'ADJ'), ('by', 'ADP'), ('making', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('acquainted', 'VERB'), ('with', 'ADP'), ('whatever', 'PRON'), ('he', 'PRON'), ('knew', 'VERB'), ('or', 'CCONJ'), ('supposed', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('cousins', 'NOUN'), ('\n', 'SPACE'), ('situations', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('delicate', 'ADJ'), ('particularsand', 'PROPN'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('seen', 'VERB'), ('them', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('twice', 'ADV'), ('before', 'ADP'), ('the', 'DET'), ('eldest', 'ADJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('them', 'PRON'), ('wished', 'VERB'), ('her', 'PRON'), ('joy', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('having', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('lucky', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('conquest', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('smart', 'ADJ'), ('beau', 'NOUN'), ('since', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('came', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('Twill', 'PROPN'), ('be', 'VERB'), ('a', 'DET'), ('fine', 'ADJ'), ('thing', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('her', 'PRON'), ('married', 'VERB'), ('so', 'ADV'), ('young', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('hear', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('beau', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('prodigious', 'ADJ'), ('handsome', 'ADJ'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('may', 'AUX'), ('have', 'VERB'), ('as', 'ADV'), ('good', 'ADJ'), ('\n', 'SPACE'), ('luck', 'NOUN'), ('yourself', 'PRON'), ('soonbut', 'ADJ'), ('perhaps', 'ADV'), ('you', 'PRON'), ('may', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('corner', 'NOUN'), ('already', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('would', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('\n', 'SPACE'), ('nice', 'ADJ'), ('in', 'ADP'), ('proclaiming', 'VERB'), ('his', 'PRON'), ('suspicions', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('with', 'ADP'), ('respect', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('indeed', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('rather', 'ADV'), ('his', 'PRON'), ('favourite', 'ADJ'), ('joke', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('as', 'ADP'), ('being', 'AUX'), ('somewhat', 'ADV'), ('\n', 'SPACE'), ('newer', 'ADJ'), ('and', 'CCONJ'), ('more', 'ADV'), ('conjectural', 'ADJ'), ('and', 'CCONJ'), ('since', 'SCONJ'), ('Edwards', 'PROPN'), ('visit', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('dined', 'VERB'), ('together', 'ADV'), ('without', 'ADP'), ('his', 'PRON'), ('drinking', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('best', 'ADJ'), ('affections', 'NOUN'), ('with', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('significancy', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('many', 'ADJ'), ('nods', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('winks', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('excite', 'VERB'), ('general', 'ADJ'), ('attention', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('letter', 'NOUN'), ('F', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('likewise', 'ADV'), ('invariably', 'ADV'), ('brought', 'VERB'), ('forward', 'ADV'), ('and', 'CCONJ'), ('found', 'VERB'), ('\n', 'SPACE'), ('productive', 'ADJ'), ('of', 'ADP'), ('such', 'ADJ'), ('countless', 'ADJ'), ('jokes', 'NOUN'), ('that', 'SCONJ'), ('its', 'PRON'), ('character', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('the', 'DET'), ('wittiest', 'ADJ'), ('letter', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('alphabet', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('\n', 'SPACE'), ('established', 'VERB'), ('with', 'ADP'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('expected', 'VERB'), ('had', 'VERB'), ('now', 'ADV'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('benefit', 'NOUN'), ('of', 'ADP'), ('these', 'DET'), ('jokes', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('eldest', 'ADJ'), ('of', 'ADP'), ('them', 'PRON'), ('they', 'PRON'), ('\n', 'SPACE'), ('raised', 'VERB'), ('a', 'DET'), ('curiosity', 'NOUN'), ('to', 'PART'), ('know', 'VERB'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('gentleman', 'NOUN'), ('\n', 'SPACE'), ('alluded', 'VERB'), ('to', 'ADP'), ('which', 'PRON'), ('though', 'SCONJ'), ('often', 'ADV'), ('impertinently', 'ADV'), ('expressed', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('perfectly', 'ADV'), ('of', 'ADP'), ('a', 'DET'), ('piece', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('general', 'ADJ'), ('inquisitiveness', 'NOUN'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('concerns', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('family', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('sport', 'VERB'), ('long', 'ADV'), ('with', 'ADP'), ('the', 'DET'), ('curiosity', 'NOUN'), ('which', 'PRON'), ('he', 'PRON'), ('delighted', 'VERB'), ('to', 'PART'), ('raise', 'VERB'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('at', 'ADV'), ('least', 'ADJ'), ('as', 'ADV'), ('much', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('telling', 'VERB'), ('the', 'DET'), ('name', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('had', 'VERB'), ('in', 'ADP'), ('hearing', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('name', 'NOUN'), ('is', 'AUX'), ('Ferrars', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('audible', 'ADJ'), ('whisper', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('pray', 'VERB'), ('do', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('it', 'PRON'), ('for', 'ADP'), ('its', 'PRON'), ('a', 'DET'), ('great', 'ADJ'), ('secret', 'ADJ'), ('\n\n', 'SPACE'), ('Ferrars', 'NOUN'), ('repeated', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('happy', 'ADJ'), ('man', 'NOUN'), ('is', 'AUX'), ('he', 'PRON'), ('What', 'PRON'), ('your', 'PRON'), ('sisterinlaws', 'NOUN'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('a', 'DET'), ('very', 'ADV'), ('agreeable', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('him', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('you', 'PRON'), ('say', 'VERB'), ('so', 'ADV'), ('Anne', 'PROPN'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('generally', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('an', 'DET'), ('amendment', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('sisters', 'NOUN'), ('assertions', 'NOUN'), ('\n', 'SPACE'), ('Though', 'SCONJ'), ('we', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('him', 'PRON'), ('once', 'ADV'), ('or', 'CCONJ'), ('twice', 'ADV'), ('at', 'ADP'), ('my', 'PRON'), ('uncles', 'NOUN'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('rather', 'ADV'), ('too', 'ADV'), ('much', 'ADJ'), ('to', 'PART'), ('pretend', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('him', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('heard', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('with', 'ADP'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('who', 'PRON'), ('was', 'AUX'), ('this', 'DET'), ('uncle', 'NOUN'), (' ', 'SPACE'), ('Where', 'SCONJ'), ('did', 'AUX'), ('he', 'PRON'), ('live', 'VERB'), (' ', 'SPACE'), ('How', 'SCONJ'), ('came', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('acquainted', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('wished', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('continued', 'VERB'), ('though', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('chuse', 'VERB'), ('to', 'PART'), ('join', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('herself', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('nothing', 'PRON'), ('more', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('and', 'CCONJ'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('she', 'PRON'), ('thought', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('deficient', 'VERB'), ('either', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('curiosity', 'NOUN'), ('after', 'ADP'), ('petty', 'ADJ'), ('information', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('disposition', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('communicate', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('manner', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('had', 'AUX'), ('\n', 'SPACE'), ('spoken', 'VERB'), ('of', 'ADP'), ('Edward', 'PROPN'), ('increased', 'VERB'), ('her', 'PRON'), ('curiosity', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('struck', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('as', 'ADP'), ('being', 'AUX'), ('rather', 'ADV'), ('illnatured', 'ADJ'), ('and', 'CCONJ'), ('suggested', 'VERB'), ('the', 'DET'), ('suspicion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('ladys', 'ADJ'), ('knowing', 'VERB'), ('or', 'CCONJ'), ('fancying', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('know', 'VERB'), ('something', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('disadvantageBut', 'ADJ'), ('her', 'PRON'), ('curiosity', 'NOUN'), ('was', 'AUX'), ('unavailing', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('no', 'DET'), ('farther', 'ADJ'), ('notice', 'NOUN'), ('was', 'AUX'), ('taken', 'VERB'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Ferrarss', 'PROPN'), ('name', 'NOUN'), ('by', 'ADP'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('when', 'SCONJ'), ('alluded', 'VERB'), ('to', 'ADP'), ('or', 'CCONJ'), ('even', 'ADV'), ('openly', 'ADV'), ('mentioned', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'PROPN'), ('22', 'NUM'), ('\n\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('much', 'ADJ'), ('toleration', 'NOUN'), ('for', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('like', 'ADP'), ('impertinence', 'NOUN'), ('vulgarity', 'NOUN'), ('inferiority', 'NOUN'), ('of', 'ADP'), ('parts', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('even', 'ADV'), ('difference', 'NOUN'), ('of', 'ADP'), ('taste', 'NOUN'), ('from', 'ADP'), ('herself', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('this', 'DET'), ('time', 'NOUN'), ('particularly', 'ADV'), ('illdisposed', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('state', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('pleased', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('to', 'PART'), ('encourage', 'VERB'), ('their', 'PRON'), ('advances', 'NOUN'), ('and', 'CCONJ'), ('to', 'ADP'), ('the', 'DET'), ('invariable', 'ADJ'), ('\n', 'SPACE'), ('coldness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('towards', 'ADP'), ('them', 'PRON'), ('which', 'PRON'), ('checked', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('endeavour', 'VERB'), ('at', 'ADP'), ('intimacy', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('side', 'NOUN'), ('Elinor', 'PROPN'), ('principally', 'ADV'), ('\n', 'SPACE'), ('attributed', 'VERB'), ('that', 'SCONJ'), ('preference', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('which', 'PRON'), ('soon', 'ADV'), ('became', 'VERB'), ('\n', 'SPACE'), ('evident', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('manners', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('but', 'CCONJ'), ('especially', 'ADV'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('missed', 'VERB'), ('no', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('engaging', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('of', 'ADP'), ('striving', 'VERB'), ('to', 'PART'), ('improve', 'VERB'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('by', 'ADP'), ('an', 'DET'), ('easy', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('frank', 'ADJ'), ('communication', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sentiments', 'NOUN'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('naturally', 'ADV'), ('clever', 'ADJ'), ('her', 'PRON'), ('remarks', 'NOUN'), ('were', 'AUX'), ('often', 'ADV'), ('\n', 'SPACE'), ('just', 'ADV'), ('and', 'CCONJ'), ('amusing', 'ADJ'), ('and', 'CCONJ'), ('as', 'ADP'), ('a', 'DET'), ('companion', 'NOUN'), ('for', 'ADP'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('frequently', 'ADV'), ('found', 'VERB'), ('her', 'PRON'), ('agreeable', 'NOUN'), ('but', 'CCONJ'), ('her', 'PRON'), ('powers', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('received', 'VERB'), ('no', 'DET'), ('aid', 'NOUN'), ('from', 'ADP'), ('education', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('ignorant', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('illiterate', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('deficiency', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('mental', 'ADJ'), ('improvement', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('information', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('common', 'ADJ'), ('particulars', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('concealed', 'VERB'), ('from', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('constant', 'ADJ'), ('endeavour', 'NOUN'), ('to', 'PART'), ('appear', 'VERB'), ('to', 'PART'), ('advantage', 'VERB'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pitied', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('neglect', 'NOUN'), ('of', 'ADP'), ('abilities', 'NOUN'), ('which', 'DET'), ('education', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('rendered', 'VERB'), ('so', 'ADV'), ('respectable', 'ADJ'), ('but', 'CCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('with', 'ADP'), ('less', 'ADJ'), ('\n', 'SPACE'), ('tenderness', 'NOUN'), ('of', 'ADP'), ('feeling', 'VERB'), ('the', 'DET'), ('thorough', 'ADJ'), ('want', 'NOUN'), ('of', 'ADP'), ('delicacy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('rectitude', 'NOUN'), ('and', 'CCONJ'), ('integrity', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('attentions', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('assiduities', 'NOUN'), ('her', 'PRON'), ('flatteries', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('betrayed', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('lasting', 'ADJ'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('company', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('who', 'PRON'), ('joined', 'VERB'), ('insincerity', 'NOUN'), ('with', 'ADP'), ('ignorance', 'NOUN'), ('\n', 'SPACE'), ('whose', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('instruction', 'NOUN'), ('prevented', 'VERB'), ('their', 'PRON'), ('meeting', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('conversation', 'NOUN'), ('on', 'ADP'), ('terms', 'NOUN'), ('of', 'ADP'), ('equality', 'NOUN'), ('and', 'CCONJ'), ('whose', 'DET'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('toward', 'ADP'), ('others', 'NOUN'), ('made', 'VERB'), ('every', 'DET'), ('shew', 'NOUN'), ('of', 'ADP'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('deference', 'NOUN'), ('\n', 'SPACE'), ('towards', 'ADP'), ('herself', 'PRON'), ('perfectly', 'ADV'), ('valueless', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('think', 'VERB'), ('my', 'PRON'), ('question', 'NOUN'), ('an', 'DET'), ('odd', 'ADJ'), ('one', 'NOUN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'AUX'), ('\n', 'SPACE'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('to', 'ADP'), ('her', 'PRON'), ('one', 'NUM'), ('day', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('walking', 'VERB'), ('together', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('cottagebut', 'NOUN'), ('pray', 'NOUN'), ('are', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('personally', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('your', 'PRON'), ('sisterinlaws', 'NOUN'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('DID', 'AUX'), ('think', 'VERB'), ('the', 'DET'), ('question', 'NOUN'), ('a', 'DET'), ('very', 'ADV'), ('odd', 'ADJ'), ('one', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('countenance', 'NOUN'), ('expressed', 'VERB'), ('it', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('answered', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('never', 'ADV'), ('seen', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('replied', 'VERB'), ('Lucy', 'PROPN'), ('I', 'PRON'), ('wonder', 'VERB'), ('at', 'ADP'), ('that', 'PRON'), ('for', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('thought', 'VERB'), ('you', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('seen', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('Norland', 'PROPN'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('Then', 'ADV'), ('perhaps', 'ADV'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('me', 'PRON'), ('what', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('No', 'DET'), ('returned', 'VERB'), ('Elinor', 'PROPN'), ('cautious', 'ADJ'), ('of', 'ADP'), ('giving', 'VERB'), ('her', 'PRON'), ('real', 'ADJ'), ('\n', 'SPACE'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('not', 'PART'), ('very', 'ADV'), ('desirous', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('satisfying', 'VERB'), ('what', 'PRON'), ('seemed', 'VERB'), ('impertinent', 'ADJ'), ('curiosity', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('think', 'VERB'), ('me', 'PRON'), ('very', 'ADV'), ('strange', 'ADJ'), ('for', 'ADP'), ('enquiring', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('way', 'NOUN'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('eyeing', 'VERB'), ('Elinor', 'PROPN'), ('attentively', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('but', 'CCONJ'), ('perhaps', 'ADV'), ('there', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('reasonsI', 'ADJ'), ('wish', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('might', 'AUX'), ('venture', 'VERB'), ('but', 'CCONJ'), ('however', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('do', 'VERB'), ('me', 'PRON'), ('the', 'DET'), ('justice', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('believing', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('impertinent', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('made', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('civil', 'ADJ'), ('reply', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('walked', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('broken', 'VERB'), ('by', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('renewed', 'VERB'), ('the', 'DET'), ('subject', 'NOUN'), ('again', 'ADV'), ('by', 'ADP'), ('saying', 'VERB'), ('with', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('hesitation', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('you', 'PRON'), ('think', 'VERB'), ('me', 'PRON'), ('impertinently', 'ADV'), ('curious', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('would', 'AUX'), ('rather', 'ADV'), ('do', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('than', 'SCONJ'), ('be', 'AUX'), ('\n', 'SPACE'), ('thought', 'VERB'), ('so', 'ADV'), ('by', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('whose', 'DET'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('is', 'AUX'), ('so', 'ADV'), ('well', 'ADV'), ('worth', 'ADJ'), ('\n', 'SPACE'), ('having', 'VERB'), ('as', 'ADP'), ('yours', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('smallest', 'ADJ'), ('\n', 'SPACE'), ('fear', 'NOUN'), ('of', 'ADP'), ('trusting', 'VERB'), ('YOU', 'PRON'), ('indeed', 'ADV'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('advice', 'NOUN'), ('how', 'SCONJ'), ('to', 'PART'), ('manage', 'VERB'), ('in', 'ADP'), ('such', 'ADJ'), ('and', 'CCONJ'), ('uncomfortable', 'ADJ'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('but', 'CCONJ'), ('however', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('occasion', 'NOUN'), ('to', 'PART'), ('trouble', 'VERB'), ('YOU', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('happen', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('I', 'PRON'), ('do', 'AUX'), ('NOT', 'PART'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('great', 'ADJ'), ('astonishment', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('any', 'DET'), ('use', 'NOUN'), ('to', 'ADP'), ('YOU', 'PRON'), ('to', 'PART'), ('know', 'VERB'), ('my', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('really', 'ADV'), ('I', 'PRON'), ('never', 'ADV'), ('understood', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('at', 'ADV'), ('all', 'ADV'), ('connected', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('that', 'DET'), ('family', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('a', 'DET'), ('little', 'ADJ'), ('surprised', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('confess', 'VERB'), ('at', 'ADP'), ('so', 'ADV'), ('serious', 'ADJ'), ('an', 'DET'), ('inquiry', 'NOUN'), ('into', 'ADP'), ('her', 'PRON'), ('character', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('you', 'PRON'), ('are', 'AUX'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('wonder', 'NOUN'), ('at', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('dared', 'VERB'), ('tell', 'VERB'), ('you', 'PRON'), ('all', 'PRON'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('much', 'ADV'), ('surprised', 'ADJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('certainly', 'ADV'), ('nothing', 'PRON'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('at', 'ADP'), ('presentbut', 'PROPN'), ('the', 'DET'), ('time', 'NOUN'), ('MAY', 'AUX'), ('comehow', 'VERB'), ('soon', 'ADV'), ('it', 'PRON'), ('will', 'AUX'), ('come', 'VERB'), ('\n', 'SPACE'), ('must', 'AUX'), ('depend', 'VERB'), ('upon', 'SCONJ'), ('herselfwhen', 'ADV'), ('we', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('intimately', 'ADV'), ('\n', 'SPACE'), ('connected', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('looked', 'VERB'), ('down', 'ADP'), ('as', 'SCONJ'), ('she', 'PRON'), ('said', 'VERB'), ('this', 'PRON'), ('amiably', 'ADV'), ('bashful', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('only', 'ADV'), ('one', 'NUM'), ('side', 'NOUN'), ('glance', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('companion', 'NOUN'), ('to', 'PART'), ('observe', 'VERB'), ('its', 'PRON'), ('\n', 'SPACE'), ('effect', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Good', 'ADJ'), ('heavens', 'NOUN'), ('cried', 'VERB'), ('Elinor', 'PROPN'), ('what', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('\n', 'SPACE'), ('Are', 'AUX'), ('you', 'PRON'), ('acquainted', 'VERB'), ('with', 'ADP'), ('Mr', 'PROPN'), ('Robert', 'PROPN'), ('Ferrars', 'PROPN'), (' ', 'SPACE'), ('Can', 'AUX'), ('you', 'PRON'), ('be', 'AUX'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), ('much', 'ADV'), ('delighted', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('sisterinlaw', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('replied', 'VERB'), ('Lucy', 'PROPN'), ('not', 'PART'), ('to', 'ADP'), ('Mr', 'PROPN'), ('ROBERT', 'PROPN'), ('FerrarsI', 'PROPN'), ('\n', 'SPACE'), ('never', 'ADV'), ('saw', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('but', 'CCONJ'), ('fixing', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('upon', 'SCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('eldest', 'ADJ'), ('brother', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('felt', 'VERB'), ('Elinor', 'PROPN'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('Astonishment', 'PROPN'), ('\n', 'SPACE'), ('that', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('as', 'ADV'), ('painful', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('strong', 'ADJ'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('an', 'DET'), ('immediate', 'ADJ'), ('disbelief', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('assertion', 'NOUN'), ('attended', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('turned', 'VERB'), ('towards', 'ADP'), ('Lucy', 'PROPN'), ('in', 'ADP'), ('silent', 'ADJ'), ('amazement', 'NOUN'), ('unable', 'ADJ'), ('to', 'PART'), ('divine', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('reason', 'NOUN'), ('or', 'CCONJ'), ('object', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('declaration', 'NOUN'), ('and', 'CCONJ'), ('though', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('complexion', 'NOUN'), ('varied', 'ADJ'), ('she', 'PRON'), ('stood', 'VERB'), ('firm', 'ADJ'), ('in', 'ADP'), ('incredulity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('felt', 'VERB'), ('in', 'ADP'), ('no', 'DET'), ('danger', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('hysterical', 'ADJ'), ('fit', 'NOUN'), ('or', 'CCONJ'), ('a', 'DET'), ('swoon', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('well', 'ADV'), ('be', 'AUX'), ('surprised', 'ADJ'), ('continued', 'ADJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('before', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('dare', 'AUX'), ('say', 'VERB'), ('he', 'PRON'), ('never', 'ADV'), ('dropped', 'VERB'), ('the', 'DET'), ('smallest', 'ADJ'), ('hint', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('you', 'PRON'), ('or', 'CCONJ'), ('any', 'PRON'), ('of', 'ADP'), ('your', 'PRON'), ('family', 'NOUN'), ('because', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('meant', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('secret', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('has', 'AUX'), ('been', 'AUX'), ('faithfully', 'ADV'), ('\n', 'SPACE'), ('kept', 'VERB'), ('so', 'ADV'), ('by', 'ADP'), ('me', 'PRON'), ('to', 'ADP'), ('this', 'DET'), ('hour', 'NOUN'), (' ', 'SPACE'), ('Not', 'PART'), ('a', 'DET'), ('soul', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('relations', 'NOUN'), ('\n', 'SPACE'), ('know', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('but', 'CCONJ'), ('Anne', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('never', 'ADV'), ('should', 'AUX'), ('have', 'AUX'), ('mentioned', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('to', 'ADP'), ('you', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('felt', 'VERB'), ('the', 'DET'), ('greatest', 'ADJ'), ('dependence', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('upon', 'SCONJ'), ('your', 'PRON'), ('secrecy', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('really', 'ADV'), ('thought', 'VERB'), ('my', 'PRON'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('in', 'ADP'), ('asking', 'VERB'), ('so', 'ADV'), ('many', 'ADJ'), ('questions', 'NOUN'), ('about', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('must', 'AUX'), ('seem', 'VERB'), ('so', 'ADV'), ('odd', 'ADJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('explained', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('can', 'AUX'), ('be', 'AUX'), ('displeased', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('he', 'PRON'), ('knows', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('trusted', 'VERB'), ('you', 'PRON'), ('because', 'SCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('he', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('highest', 'ADJ'), ('opinion', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('your', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('looks', 'VERB'), ('upon', 'SCONJ'), ('yourself', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('other', 'ADJ'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('quite', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('sistersShe', 'NOUN'), ('paused', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('remained', 'VERB'), ('silent', 'ADJ'), ('\n', 'SPACE'), ('Her', 'PRON'), ('astonishment', 'NOUN'), ('at', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('heard', 'VERB'), ('was', 'AUX'), ('at', 'ADP'), ('first', 'ADV'), ('too', 'ADV'), ('\n', 'SPACE'), ('great', 'ADJ'), ('for', 'ADP'), ('words', 'NOUN'), ('but', 'CCONJ'), ('at', 'ADP'), ('length', 'NOUN'), ('forcing', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('speak', 'VERB'), ('cautiously', 'ADV'), ('she', 'PRON'), ('said', 'VERB'), ('with', 'ADP'), ('calmness', 'NOUN'), ('of', 'ADP'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('tolerably', 'ADV'), ('well', 'ADV'), ('concealed', 'VERB'), ('her', 'PRON'), ('surprise', 'NOUN'), ('and', 'CCONJ'), ('solicitude', 'NOUN'), ('\n', 'SPACE'), ('May', 'AUX'), ('I', 'PRON'), ('ask', 'VERB'), ('if', 'SCONJ'), ('your', 'PRON'), ('engagement', 'NOUN'), ('is', 'AUX'), ('of', 'ADP'), ('long', 'ADJ'), ('standing', 'VERB'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('engaged', 'VERB'), ('these', 'DET'), ('four', 'NUM'), ('years', 'NOUN'), ('\n\n', 'SPACE'), ('Four', 'NUM'), ('years', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('though', 'SCONJ'), ('greatly', 'ADV'), ('shocked', 'VERB'), ('still', 'ADV'), ('felt', 'VERB'), ('unable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('believe', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('said', 'VERB'), ('she', 'PRON'), ('that', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('even', 'ADV'), ('\n', 'SPACE'), ('acquainted', 'VERB'), ('till', 'SCONJ'), ('the', 'DET'), ('other', 'ADJ'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('Our', 'PRON'), ('acquaintance', 'NOUN'), ('however', 'ADV'), ('is', 'AUX'), ('of', 'ADP'), ('many', 'ADJ'), ('years', 'NOUN'), ('date', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('under', 'ADP'), ('my', 'PRON'), ('uncles', 'NOUN'), ('care', 'VERB'), ('you', 'PRON'), ('know', 'VERB'), ('a', 'DET'), ('considerable', 'ADJ'), ('while', 'SCONJ'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('uncle', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('Mr', 'PROPN'), ('Pratt', 'PROPN'), (' ', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('never', 'ADV'), ('hear', 'VERB'), ('him', 'PRON'), ('talk', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Pratt', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('an', 'DET'), ('exertion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('spirits', 'NOUN'), ('which', 'PRON'), ('increased', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('increase', 'NOUN'), ('of', 'ADP'), ('emotion', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('four', 'NUM'), ('years', 'NOUN'), ('with', 'ADP'), ('my', 'PRON'), ('uncle', 'NOUN'), ('who', 'PRON'), ('lives', 'VERB'), ('at', 'ADP'), ('Longstaple', 'PROPN'), ('\n', 'SPACE'), ('near', 'ADP'), ('Plymouth', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('there', 'PRON'), ('our', 'PRON'), ('acquaintance', 'NOUN'), ('begun', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('my', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('me', 'PRON'), ('was', 'AUX'), ('often', 'ADV'), ('staying', 'VERB'), ('with', 'ADP'), ('my', 'PRON'), ('uncle', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('there', 'PRON'), ('our', 'PRON'), ('engagement', 'NOUN'), ('was', 'AUX'), ('formed', 'VERB'), ('though', 'SCONJ'), ('not', 'PART'), ('till', 'SCONJ'), ('\n', 'SPACE'), ('a', 'DET'), ('year', 'NOUN'), ('after', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('quitted', 'VERB'), ('as', 'ADP'), ('a', 'DET'), ('pupil', 'NOUN'), ('but', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('\n', 'SPACE'), ('always', 'ADV'), ('with', 'ADP'), ('us', 'PRON'), ('afterwards', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('enter', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('it', 'PRON'), ('as', 'SCONJ'), ('you', 'PRON'), ('may', 'AUX'), ('imagine', 'VERB'), ('without', 'ADP'), ('the', 'DET'), ('knowledge', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('approbation', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('young', 'ADJ'), ('and', 'CCONJ'), ('loved', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('too', 'ADV'), ('well', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('prudent', 'ADJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('Though', 'SCONJ'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('me', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('seen', 'VERB'), ('enough', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('sensible', 'ADJ'), ('he', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('very', 'ADV'), ('capable', 'ADJ'), ('of', 'ADP'), ('making', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('sincerely', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('without', 'ADP'), ('knowing', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('said', 'VERB'), ('but', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('reflection', 'NOUN'), ('she', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('revived', 'VERB'), ('security', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('honour', 'VERB'), ('and', 'CCONJ'), ('love', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('companions', 'NOUN'), ('falsehoodEngaged', 'VERB'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('FerrarsI', 'CCONJ'), ('confess', 'VERB'), ('myself', 'PRON'), ('so', 'ADV'), ('totally', 'ADV'), ('surprised', 'ADJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('what', 'PRON'), ('you', 'PRON'), ('tell', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('reallyI', 'PROPN'), ('beg', 'VERB'), ('your', 'PRON'), ('pardon', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('surely', 'ADV'), ('there', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('some', 'DET'), ('mistake', 'NOUN'), ('of', 'ADP'), ('person', 'NOUN'), ('or', 'CCONJ'), ('name', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('can', 'AUX'), ('mean', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('smiling', 'VERB'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('Ferrars', 'VERB'), ('the', 'DET'), ('eldest', 'ADJ'), ('son', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('of', 'ADP'), ('Park', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('brother', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('sisterinlaw', 'NOUN'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('the', 'DET'), ('person', 'NOUN'), ('I', 'PRON'), ('mean', 'VERB'), ('you', 'PRON'), ('must', 'AUX'), ('allow', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('likely', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('deceived', 'VERB'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('man', 'NOUN'), ('on', 'ADP'), ('who', 'PRON'), ('all', 'DET'), ('my', 'PRON'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('depends', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('strange', 'ADJ'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('painful', 'ADJ'), ('perplexity', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('have', 'AUX'), ('heard', 'VERB'), ('him', 'PRON'), ('even', 'ADV'), ('mention', 'VERB'), ('your', 'PRON'), ('name', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('considering', 'VERB'), ('our', 'PRON'), ('situation', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('strange', 'ADJ'), ('\n', 'SPACE'), ('Our', 'PRON'), ('first', 'ADJ'), ('care', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('to', 'PART'), ('keep', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('secret', 'ADJ'), ('\n', 'SPACE'), ('You', 'PRON'), ('knew', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('me', 'PRON'), ('or', 'CCONJ'), ('my', 'PRON'), ('family', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('OCCASION', 'NOUN'), ('for', 'ADP'), ('ever', 'ADV'), ('mentioning', 'VERB'), ('my', 'PRON'), ('name', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('particularly', 'ADV'), ('afraid', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('suspecting', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('THAT', 'PRON'), ('was', 'AUX'), ('reason', 'NOUN'), ('enough', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('not', 'PART'), ('mentioning', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('silentElinors', 'NOUN'), ('security', 'NOUN'), ('sunk', 'VERB'), ('but', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('selfcommand', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('sink', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Four', 'NUM'), ('years', 'NOUN'), ('you', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('engaged', 'VERB'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('firm', 'ADJ'), ('voice', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('and', 'CCONJ'), ('heaven', 'PROPN'), ('knows', 'VERB'), ('how', 'SCONJ'), ('much', 'ADV'), ('longer', 'ADJ'), ('we', 'PRON'), ('may', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('wait', 'VERB'), (' ', 'SPACE'), ('Poor', 'PROPN'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('puts', 'VERB'), ('him', 'PRON'), ('quite', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('Then', 'ADV'), ('taking', 'VERB'), ('a', 'DET'), ('small', 'ADJ'), ('miniature', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('pocket', 'NOUN'), ('she', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('To', 'PART'), ('prevent', 'VERB'), ('the', 'DET'), ('possibility', 'NOUN'), ('of', 'ADP'), ('mistake', 'NOUN'), ('be', 'AUX'), ('so', 'ADV'), ('good', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('look', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('this', 'DET'), ('face', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('him', 'PRON'), ('justice', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('yet', 'ADV'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('deceived', 'VERB'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('person', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('drew', 'VERB'), ('forI', 'ADJ'), ('have', 'AUX'), ('had', 'VERB'), ('it', 'PRON'), ('above', 'ADP'), ('these', 'DET'), ('three', 'NUM'), ('years', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('put', 'VERB'), ('it', 'PRON'), ('into', 'ADP'), ('her', 'PRON'), ('hands', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('saw', 'VERB'), ('the', 'DET'), ('painting', 'NOUN'), ('whatever', 'PRON'), ('other', 'ADJ'), ('doubts', 'VERB'), ('her', 'PRON'), ('fear', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('too', 'ADV'), ('hasty', 'ADJ'), ('decision', 'NOUN'), ('or', 'CCONJ'), ('her', 'PRON'), ('wish', 'NOUN'), ('of', 'ADP'), ('detecting', 'VERB'), ('falsehood', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('suffer', 'VERB'), ('to', 'PART'), ('linger', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('have', 'VERB'), ('none', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('its', 'PRON'), ('being', 'AUX'), ('Edwards', 'PROPN'), ('face', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('returned', 'VERB'), ('it', 'PRON'), ('almost', 'ADV'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('acknowledging', 'VERB'), ('the', 'DET'), ('likeness', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('able', 'ADJ'), ('continued', 'ADJ'), ('Lucy', 'PROPN'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('my', 'PRON'), ('picture', 'NOUN'), ('in', 'ADP'), ('return', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('vexed', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('he', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('so', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('get', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('determined', 'ADJ'), ('to', 'PART'), ('set', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), ('the', 'DET'), ('very', 'ADV'), ('first', 'ADJ'), ('opportunity', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('quite', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('right', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('calmly', 'ADV'), ('\n', 'SPACE'), ('They', 'PRON'), ('then', 'ADV'), ('proceeded', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('paces', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('spoke', 'VERB'), ('first', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('faithfully', 'ADV'), ('keeping', 'VERB'), ('this', 'DET'), ('secret', 'NOUN'), ('because', 'SCONJ'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('know', 'VERB'), ('of', 'ADP'), ('what', 'DET'), ('importance', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('to', 'ADP'), ('us', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('have', 'VERB'), ('it', 'PRON'), ('reach', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('mother', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('approve', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('fortune', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('fancy', 'ADJ'), ('she', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('exceeding', 'VERB'), ('\n', 'SPACE'), ('proud', 'ADJ'), ('woman', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('certainly', 'ADV'), ('did', 'AUX'), ('not', 'PART'), ('seek', 'VERB'), ('your', 'PRON'), ('confidence', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('you', 'PRON'), ('do', 'VERB'), ('me', 'PRON'), ('no', 'DET'), ('more', 'ADJ'), ('than', 'ADP'), ('justice', 'NOUN'), ('in', 'ADP'), ('imagining', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('depended', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('Your', 'PRON'), ('secret', 'NOUN'), ('is', 'AUX'), ('safe', 'ADJ'), ('with', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('pardon', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('express', 'VERB'), ('some', 'DET'), ('surprise', 'NOUN'), ('at', 'ADP'), ('so', 'ADV'), ('unnecessary', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('communication', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('at', 'ADV'), ('least', 'ADJ'), ('have', 'AUX'), ('felt', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('\n', 'SPACE'), ('being', 'AUX'), ('acquainted', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('add', 'VERB'), ('to', 'ADP'), ('its', 'PRON'), ('safety', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('she', 'PRON'), ('said', 'VERB'), ('this', 'PRON'), ('she', 'PRON'), ('looked', 'VERB'), ('earnestly', 'ADV'), ('at', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('hoping', 'VERB'), ('to', 'PART'), ('discover', 'VERB'), ('something', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('countenance', 'NOUN'), ('perhaps', 'ADV'), ('the', 'DET'), ('\n', 'SPACE'), ('falsehood', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('saying', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Lucys', 'PROPN'), ('countenance', 'NOUN'), ('suffered', 'VERB'), ('no', 'DET'), ('change', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('you', 'PRON'), ('would', 'AUX'), ('think', 'VERB'), ('I', 'PRON'), ('was', 'AUX'), ('taking', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('liberty', 'NOUN'), ('with', 'ADP'), ('you', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('in', 'ADP'), ('telling', 'VERB'), ('you', 'PRON'), ('all', 'DET'), ('this', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('known', 'VERB'), ('you', 'PRON'), ('long', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('personally', 'ADV'), ('at', 'ADP'), ('least', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('known', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('all', 'DET'), ('your', 'PRON'), ('family', 'NOUN'), ('by', 'ADP'), ('description', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('great', 'ADJ'), ('while', 'NOUN'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('saw', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('almost', 'ADV'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('old', 'ADJ'), ('acquaintance', 'NOUN'), (' ', 'SPACE'), ('Besides', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('really', 'ADV'), ('thought', 'VERB'), ('some', 'DET'), ('explanation', 'NOUN'), ('was', 'AUX'), ('due', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('after', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('making', 'VERB'), ('such', 'ADJ'), ('particular', 'ADJ'), ('inquiries', 'NOUN'), ('about', 'ADP'), ('Edwards', 'PROPN'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('unfortunate', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('creature', 'NOUN'), ('whose', 'DET'), ('\n', 'SPACE'), ('advice', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('ask', 'VERB'), (' ', 'SPACE'), ('Anne', 'PROPN'), ('is', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('person', 'NOUN'), ('that', 'PRON'), ('knows', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('has', 'VERB'), ('no', 'DET'), ('judgment', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('indeed', 'ADV'), ('she', 'PRON'), ('does', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('deal', 'NOUN'), ('more', 'ADJ'), ('harm', 'NOUN'), ('than', 'ADP'), ('good', 'ADJ'), ('for', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('in', 'ADP'), ('constant', 'ADJ'), ('fear', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('betraying', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('hold', 'VERB'), ('her', 'PRON'), ('tongue', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('you', 'PRON'), ('must', 'AUX'), ('perceive', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('\n', 'SPACE'), ('fright', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('tother', 'DET'), ('day', 'NOUN'), ('when', 'SCONJ'), ('Edwards', 'PROPN'), ('name', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('mentioned', 'VERB'), ('by', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('lest', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('out', 'ADP'), ('with', 'ADP'), ('it', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('You', 'PRON'), ('ca', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('how', 'SCONJ'), ('much', 'ADV'), ('I', 'PRON'), ('go', 'VERB'), ('through', 'ADV'), ('in', 'ADP'), ('my', 'PRON'), ('mind', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('it', 'PRON'), ('altogether', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('only', 'ADV'), ('wonder', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('alive', 'ADJ'), ('after', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('suffered', 'VERB'), ('for', 'ADP'), ('Edwards', 'PROPN'), ('sake', 'NOUN'), ('these', 'DET'), ('last', 'ADJ'), ('four', 'NUM'), ('years', 'NOUN'), ('\n', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('such', 'ADJ'), ('suspense', 'NOUN'), ('and', 'CCONJ'), ('uncertainty', 'NOUN'), ('and', 'CCONJ'), ('seeing', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('so', 'SCONJ'), ('seldomwe', 'PROPN'), ('can', 'AUX'), ('hardly', 'ADV'), ('meet', 'VERB'), ('above', 'ADP'), ('twice', 'ADJ'), ('ayear', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('wonder', 'VERB'), ('my', 'PRON'), ('heart', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('quite', 'ADV'), ('broke', 'VERB'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('she', 'PRON'), ('took', 'VERB'), ('out', 'ADP'), ('her', 'PRON'), ('handkerchief', 'NOUN'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('feel', 'VERB'), ('very', 'ADV'), ('compassionate', 'ADJ'), ('\n\n', 'SPACE'), ('Sometimes', 'ADV'), ('continued', 'VERB'), ('Lucy', 'PROPN'), ('after', 'ADP'), ('wiping', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('whether', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('better', 'ADJ'), ('for', 'SCONJ'), ('us', 'PRON'), ('both', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('break', 'VERB'), ('off', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('entirely', 'ADV'), (' ', 'SPACE'), ('As', 'SCONJ'), ('she', 'PRON'), ('said', 'VERB'), ('this', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('looked', 'VERB'), ('directly', 'ADV'), ('at', 'ADP'), ('her', 'PRON'), ('companion', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('other', 'ADJ'), ('times', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('resolution', 'NOUN'), ('enough', 'ADV'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('the', 'DET'), ('thoughts', 'NOUN'), ('of', 'ADP'), ('making', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('miserable', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('the', 'DET'), ('very', 'ADJ'), ('mention', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), ('would', 'AUX'), ('do', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('on', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('account', 'NOUN'), ('tooso', 'ADV'), ('dear', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('meI', 'PROPN'), ('do', 'AUX'), ('nt', 'PART'), ('\n', 'SPACE'), ('think', 'VERB'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('equal', 'ADJ'), ('to', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('What', 'PRON'), ('would', 'AUX'), ('you', 'PRON'), ('advise', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('case', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('What', 'PRON'), ('would', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('do', 'AUX'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('Pardon', 'PROPN'), ('me', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('startled', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('give', 'VERB'), ('you', 'PRON'), ('no', 'DET'), ('advice', 'NOUN'), ('under', 'ADP'), ('such', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('Your', 'PRON'), ('own', 'ADJ'), ('judgment', 'NOUN'), ('must', 'AUX'), ('direct', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('continued', 'ADJ'), ('Lucy', 'PROPN'), ('after', 'SCONJ'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('silence', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('his', 'PRON'), ('mother', 'NOUN'), ('must', 'AUX'), ('provide', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('sometime', 'ADV'), ('or', 'CCONJ'), ('other', 'ADJ'), ('but', 'CCONJ'), ('poor', 'ADJ'), ('Edward', 'PROPN'), ('is', 'AUX'), ('so', 'ADV'), ('cast', 'VERB'), ('down', 'ADP'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('think', 'VERB'), ('him', 'PRON'), ('dreadful', 'ADV'), ('lowspirited', 'VERB'), ('when', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('miserable', 'ADJ'), ('when', 'SCONJ'), ('he', 'PRON'), ('left', 'VERB'), ('us', 'PRON'), ('at', 'ADP'), ('Longstaple', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('you', 'PRON'), ('would', 'AUX'), ('think', 'VERB'), ('him', 'PRON'), ('quite', 'ADV'), ('ill', 'ADV'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('he', 'PRON'), ('come', 'VERB'), ('from', 'ADP'), ('your', 'PRON'), ('uncles', 'NOUN'), ('then', 'ADV'), ('when', 'SCONJ'), ('he', 'PRON'), ('visited', 'VERB'), ('us', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('yes', 'INTJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('staying', 'VERB'), ('a', 'DET'), ('fortnight', 'NOUN'), ('with', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('he', 'PRON'), ('came', 'VERB'), ('directly', 'ADV'), ('from', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('most', 'ADV'), ('feelingly', 'ADV'), ('sensible', 'ADV'), ('of', 'ADP'), ('\n', 'SPACE'), ('every', 'DET'), ('fresh', 'ADJ'), ('circumstance', 'NOUN'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('veracity', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('remember', 'VERB'), ('he', 'PRON'), ('told', 'VERB'), ('us', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('staying', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('fortnight', 'NOUN'), ('with', 'ADP'), ('some', 'DET'), ('friends', 'NOUN'), ('near', 'ADP'), ('Plymouth', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('remembered', 'VERB'), ('too', 'ADV'), ('her', 'PRON'), ('own', 'ADJ'), ('surprise', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('his', 'PRON'), ('mentioning', 'VERB'), ('nothing', 'PRON'), ('farther', 'ADV'), ('of', 'ADP'), ('those', 'DET'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('his', 'PRON'), ('total', 'ADJ'), ('silence', 'NOUN'), ('with', 'ADP'), ('respect', 'NOUN'), ('even', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('names', 'NOUN'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('sadly', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('repeated', 'VERB'), ('Lucy', 'PROPN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('did', 'VERB'), ('indeed', 'ADV'), ('particularly', 'ADV'), ('so', 'ADV'), ('when', 'SCONJ'), ('he', 'PRON'), ('first', 'ADV'), ('arrived', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('begged', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('exert', 'VERB'), ('himself', 'PRON'), ('for', 'ADP'), ('fear', 'NOUN'), ('you', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('suspect', 'VERB'), ('what', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('matter', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('made', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('melancholy', 'ADJ'), ('not', 'PART'), ('being', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('stay', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('fortnight', 'NOUN'), ('with', 'ADP'), ('us', 'PRON'), ('and', 'CCONJ'), ('seeing', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('affected', 'ADJ'), ('\n', 'SPACE'), ('Poor', 'PROPN'), ('fellowI', 'PROPN'), ('am', 'AUX'), ('afraid', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('just', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('with', 'ADP'), ('him', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('he', 'PRON'), ('writes', 'VERB'), ('in', 'ADP'), ('wretched', 'ADJ'), ('spirits', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('heard', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('just', 'ADV'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('I', 'PRON'), ('left', 'VERB'), ('Exeter', 'PROPN'), ('taking', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('pocket', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('carelessly', 'ADV'), ('showing', 'VERB'), ('the', 'DET'), ('direction', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('his', 'PRON'), ('hand', 'NOUN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('a', 'DET'), ('charming', 'ADJ'), ('one', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('that', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('written', 'VERB'), ('so', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('usualHe', 'ADJ'), ('was', 'AUX'), ('tired', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('for', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('filled', 'VERB'), ('the', 'DET'), ('sheet', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('as', 'ADP'), ('full', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('possible', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('WAS', 'AUX'), ('his', 'PRON'), ('hand', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('doubt', 'VERB'), ('\n', 'SPACE'), ('no', 'ADV'), ('longer', 'ADV'), (' ', 'SPACE'), ('This', 'DET'), ('picture', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('allowed', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('believe', 'VERB'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('accidentally', 'ADV'), ('obtained', 'VERB'), ('it', 'PRON'), ('might', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('Edwards', 'PROPN'), ('gift', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('correspondence', 'NOUN'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('letter', 'NOUN'), ('could', 'AUX'), ('subsist', 'VERB'), ('only', 'ADV'), ('under', 'ADP'), ('a', 'DET'), ('positive', 'ADJ'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('authorised', 'VERB'), ('by', 'ADP'), ('nothing', 'PRON'), ('else', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('almost', 'ADV'), ('overcomeher', 'ADJ'), ('heart', 'NOUN'), ('sunk', 'VERB'), ('within', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('hardly', 'ADV'), ('stand', 'VERB'), ('but', 'CCONJ'), ('exertion', 'NOUN'), ('was', 'AUX'), ('indispensably', 'ADV'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('struggled', 'VERB'), ('so', 'ADV'), ('resolutely', 'ADV'), ('against', 'ADP'), ('the', 'DET'), ('oppression', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('feelings', 'NOUN'), ('that', 'PRON'), ('her', 'PRON'), ('success', 'NOUN'), ('was', 'AUX'), ('speedy', 'ADJ'), ('and', 'CCONJ'), ('for', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('time', 'NOUN'), ('complete', 'ADJ'), ('\n\n', 'SPACE'), ('Writing', 'NOUN'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('returning', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('letter', 'NOUN'), ('into', 'ADP'), ('her', 'PRON'), ('pocket', 'NOUN'), ('is', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('comfort', 'NOUN'), ('we', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'ADJ'), ('long', 'ADJ'), ('separations', 'NOUN'), (' ', 'SPACE'), ('Yes', 'INTJ'), ('I', 'PRON'), ('have', 'VERB'), ('one', 'NUM'), ('other', 'ADJ'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('picture', 'NOUN'), ('but', 'CCONJ'), ('poor', 'ADJ'), ('Edward', 'PROPN'), ('has', 'VERB'), ('not', 'PART'), ('even', 'ADV'), ('THAT', 'PRON'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('but', 'CCONJ'), ('my', 'PRON'), ('picture', 'NOUN'), ('he', 'PRON'), ('says', 'VERB'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('easy', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('gave', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('hair', 'NOUN'), ('set', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('ring', 'NOUN'), ('when', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('Longstaple', 'PROPN'), ('last', 'ADJ'), ('and', 'CCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('some', 'DET'), ('comfort', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('he', 'PRON'), ('said', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('not', 'PART'), ('equal', 'ADJ'), ('to', 'ADP'), ('a', 'DET'), ('picture', 'NOUN'), (' ', 'SPACE'), ('Perhaps', 'ADV'), ('you', 'PRON'), ('might', 'AUX'), ('notice', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('ring', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('saw', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('composure', 'NOUN'), ('of', 'ADP'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('under', 'ADP'), ('which', 'PRON'), ('was', 'AUX'), ('concealed', 'VERB'), ('an', 'DET'), ('emotion', 'NOUN'), ('and', 'CCONJ'), ('distress', 'NOUN'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('felt', 'VERB'), ('before', 'SCONJ'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('mortified', 'VERB'), ('\n', 'SPACE'), ('shocked', 'ADJ'), ('confounded', 'VERB'), ('\n\n', 'SPACE'), ('Fortunately', 'ADV'), ('for', 'ADP'), ('her', 'PRON'), ('they', 'PRON'), ('had', 'AUX'), ('now', 'ADV'), ('reached', 'VERB'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('conversation', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('continued', 'VERB'), ('no', 'ADV'), ('farther', 'ADV'), ('\n', 'SPACE'), ('After', 'ADP'), ('sitting', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('returned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('then', 'ADV'), ('at', 'ADP'), ('liberty', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('and', 'CCONJ'), ('be', 'AUX'), ('wretched', 'VERB'), ('\n\n\n\n\n\n', 'SPACE'), ('At', 'ADP'), ('this', 'DET'), ('point', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('and', 'CCONJ'), ('second', 'ADJ'), ('editions', 'NOUN'), ('Volume', 'NOUN'), ('1', 'NUM'), ('ends', 'VERB'), ('\n\n\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('23', 'NUM'), ('\n\n\n', 'SPACE'), ('However', 'ADV'), ('small', 'ADJ'), ('Elinors', 'PROPN'), ('general', 'ADJ'), ('dependence', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('Lucys', 'PROPN'), ('veracity', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('serious', 'ADJ'), ('reflection', 'NOUN'), ('to', 'PART'), ('suspect', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('no', 'DET'), ('temptation', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('answerable', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('folly', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('inventing', 'VERB'), ('a', 'DET'), ('falsehood', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('description', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('asserted', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('true', 'ADJ'), ('therefore', 'ADV'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('dared', 'AUX'), ('not', 'PART'), ('longer', 'ADV'), ('doubt', 'VERB'), ('supported', 'VERB'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('on', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('side', 'NOUN'), ('by', 'ADP'), ('such', 'ADJ'), ('probabilities', 'NOUN'), ('and', 'CCONJ'), ('proofs', 'NOUN'), ('and', 'CCONJ'), ('contradicted', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('wishes', 'NOUN'), (' ', 'SPACE'), ('Their', 'PRON'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('acquaintance', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Pratt', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('foundation', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), ('indisputable', 'ADJ'), ('and', 'CCONJ'), ('alarming', 'ADJ'), ('and', 'CCONJ'), ('Edwards', 'PROPN'), ('\n', 'SPACE'), ('visit', 'NOUN'), ('near', 'ADP'), ('Plymouth', 'PROPN'), ('his', 'PRON'), ('melancholy', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('dissatisfaction', 'NOUN'), ('at', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('prospects', 'NOUN'), ('his', 'PRON'), ('uncertain', 'ADJ'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('towards', 'ADP'), ('herself', 'PRON'), ('the', 'DET'), ('intimate', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('as', 'ADP'), ('to', 'ADP'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('their', 'PRON'), ('family', 'NOUN'), ('connections', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'AUX'), ('often', 'ADV'), ('surprised', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('picture', 'NOUN'), ('the', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('ring', 'NOUN'), ('formed', 'VERB'), ('altogether', 'ADV'), ('such', 'DET'), ('a', 'DET'), ('body', 'NOUN'), ('of', 'ADP'), ('evidence', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('overcame', 'NOUN'), ('every', 'DET'), ('fear', 'NOUN'), ('of', 'ADP'), ('condemning', 'VERB'), ('him', 'PRON'), ('unfairly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('established', 'VERB'), ('as', 'ADP'), ('a', 'DET'), ('fact', 'NOUN'), ('which', 'PRON'), ('no', 'DET'), ('partiality', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('set', 'VERB'), ('aside', 'ADP'), ('his', 'PRON'), ('illtreatment', 'NOUN'), ('of', 'ADP'), ('herselfHer', 'PRON'), ('resentment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'ADJ'), ('behaviour', 'NOUN'), ('her', 'PRON'), ('indignation', 'NOUN'), ('at', 'ADP'), ('having', 'AUX'), ('been', 'AUX'), ('its', 'PRON'), ('dupe', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('made', 'VERB'), ('her', 'PRON'), ('feel', 'VERB'), ('only', 'ADV'), ('for', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('other', 'ADJ'), ('ideas', 'NOUN'), ('other', 'ADJ'), ('considerations', 'NOUN'), ('soon', 'ADV'), ('arose', 'VERB'), ('\n', 'SPACE'), ('Had', 'AUX'), ('Edward', 'PROPN'), ('been', 'AUX'), ('intentionally', 'ADV'), ('deceiving', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Had', 'AUX'), ('he', 'PRON'), ('feigned', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('which', 'PRON'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), (' ', 'SPACE'), ('Was', 'AUX'), ('his', 'PRON'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('an', 'DET'), ('engagement', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('heart', 'NOUN'), (' ', 'SPACE'), ('No', 'INTJ'), ('whatever', 'PRON'), ('it', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('once', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('it', 'PRON'), ('such', 'ADJ'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('His', 'PRON'), ('affection', 'NOUN'), ('was', 'AUX'), ('all', 'DET'), ('her', 'PRON'), ('own', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('deceived', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('that', 'PRON'), (' ', 'SPACE'), ('Her', 'PRON'), ('mother', 'NOUN'), ('sisters', 'NOUN'), ('Fanny', 'PROPN'), ('all', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('conscious', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('at', 'ADP'), ('Norland', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('an', 'DET'), ('illusion', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('vanity', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('certainly', 'ADV'), ('loved', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('softener', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('heart', 'NOUN'), ('was', 'AUX'), ('this', 'DET'), ('persuasion', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('much', 'ADJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('it', 'PRON'), ('not', 'PART'), ('tempt', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('forgive', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('blamable', 'ADJ'), ('\n', 'SPACE'), ('highly', 'ADV'), ('blamable', 'ADJ'), ('in', 'ADP'), ('remaining', 'VERB'), ('at', 'ADP'), ('Norland', 'PROPN'), ('after', 'SCONJ'), ('he', 'PRON'), ('first', 'ADV'), ('\n', 'SPACE'), ('felt', 'VERB'), ('her', 'PRON'), ('influence', 'NOUN'), ('over', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('more', 'ADJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('ought', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), (' ', 'SPACE'), ('In', 'SCONJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('defended', 'VERB'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('injured', 'VERB'), ('her', 'PRON'), ('how', 'SCONJ'), ('much', 'ADV'), ('more', 'ADJ'), ('had', 'AUX'), ('he', 'PRON'), ('injured', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('her', 'PRON'), ('case', 'NOUN'), ('were', 'AUX'), ('pitiable', 'ADJ'), ('his', 'PRON'), ('was', 'AUX'), ('hopeless', 'ADJ'), ('\n', 'SPACE'), ('His', 'PRON'), ('imprudence', 'NOUN'), ('had', 'AUX'), ('made', 'VERB'), ('her', 'PRON'), ('miserable', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('deprived', 'VERB'), ('himself', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('being', 'AUX'), ('otherwise', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('might', 'AUX'), ('in', 'ADP'), ('time', 'NOUN'), ('regain', 'NOUN'), ('tranquillity', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('HE', 'PRON'), ('what', 'PRON'), ('had', 'VERB'), ('he', 'PRON'), ('to', 'PART'), ('look', 'VERB'), ('forward', 'ADV'), ('to', 'ADP'), (' ', 'SPACE'), ('Could', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('ever', 'ADV'), ('be', 'AUX'), ('tolerably', 'ADV'), ('happy', 'ADJ'), ('with', 'ADP'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('could', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('his', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('herself', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('his', 'PRON'), ('integrity', 'NOUN'), ('his', 'PRON'), ('delicacy', 'NOUN'), ('and', 'CCONJ'), ('wellinformed', 'VERB'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('be', 'VERB'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('wife', 'NOUN'), ('like', 'ADP'), ('herilliterate', 'NOUN'), ('artful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('selfish', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('youthful', 'ADJ'), ('infatuation', 'NOUN'), ('of', 'ADP'), ('nineteen', 'NUM'), ('would', 'AUX'), ('naturally', 'ADV'), ('\n', 'SPACE'), ('blind', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('but', 'CCONJ'), ('her', 'PRON'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('four', 'NUM'), ('succeeding', 'VERB'), ('yearsyears', 'NOUN'), ('which', 'PRON'), ('if', 'SCONJ'), ('rationally', 'ADV'), ('\n', 'SPACE'), ('spent', 'VERB'), ('give', 'VERB'), ('such', 'ADJ'), ('improvement', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('understanding', 'NOUN'), ('must', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('opened', 'VERB'), ('his', 'PRON'), ('eyes', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('defects', 'NOUN'), ('of', 'ADP'), ('education', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('the', 'DET'), ('same', 'ADJ'), ('period', 'NOUN'), ('of', 'ADP'), ('time', 'NOUN'), ('spent', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('inferior', 'ADJ'), ('society', 'NOUN'), ('and', 'CCONJ'), ('more', 'ADV'), ('frivolous', 'ADJ'), ('pursuits', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('perhaps', 'ADV'), ('robbed', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('that', 'DET'), ('simplicity', 'NOUN'), ('which', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('once', 'ADV'), ('have', 'AUX'), ('given', 'VERB'), ('an', 'DET'), ('interesting', 'ADJ'), ('character', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('beauty', 'NOUN'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('in', 'ADP'), ('the', 'DET'), ('supposition', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('seeking', 'NOUN'), ('to', 'PART'), ('marry', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('his', 'PRON'), ('difficulties', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('had', 'AUX'), ('seemed', 'VERB'), ('great', 'ADJ'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('much', 'ADV'), ('greater', 'ADJ'), ('were', 'AUX'), ('they', 'PRON'), ('now', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('engagement', 'NOUN'), ('was', 'AUX'), ('undoubtedly', 'ADV'), ('inferior', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('connections', 'NOUN'), ('and', 'CCONJ'), ('probably', 'ADV'), ('inferior', 'ADJ'), ('in', 'ADP'), ('fortune', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('These', 'DET'), ('difficulties', 'NOUN'), ('indeed', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('heart', 'NOUN'), ('so', 'ADV'), ('alienated', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('Lucy', 'PROPN'), ('might', 'AUX'), ('not', 'PART'), ('press', 'VERB'), ('very', 'ADV'), ('hard', 'ADV'), ('upon', 'SCONJ'), ('his', 'PRON'), ('patience', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('melancholy', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('state', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('person', 'NOUN'), ('by', 'ADP'), ('whom', 'PRON'), ('the', 'DET'), ('\n', 'SPACE'), ('expectation', 'NOUN'), ('of', 'ADP'), ('family', 'NOUN'), ('opposition', 'NOUN'), ('and', 'CCONJ'), ('unkindness', 'ADJ'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('felt', 'VERB'), ('as', 'ADP'), ('a', 'DET'), ('relief', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('these', 'DET'), ('considerations', 'NOUN'), ('occurred', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('painful', 'ADJ'), ('\n', 'SPACE'), ('succession', 'NOUN'), ('she', 'PRON'), ('wept', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('more', 'ADV'), ('than', 'ADP'), ('for', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('Supported', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('having', 'AUX'), ('done', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('merit', 'VERB'), ('her', 'PRON'), ('present', 'ADJ'), ('unhappiness', 'NOUN'), ('and', 'CCONJ'), ('consoled', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('belief', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('had', 'AUX'), ('done', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('forfeit', 'VERB'), ('her', 'PRON'), ('esteem', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('thought', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('even', 'ADV'), ('now', 'ADV'), ('under', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('smart', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('heavy', 'ADJ'), ('blow', 'NOUN'), ('command', 'NOUN'), ('herself', 'PRON'), ('enough', 'ADJ'), ('to', 'PART'), ('guard', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('truth', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('well', 'ADV'), ('was', 'AUX'), ('she', 'PRON'), ('able', 'ADJ'), ('to', 'PART'), ('answer', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('expectations', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('joined', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('dinner', 'NOUN'), ('only', 'ADV'), ('two', 'NUM'), ('hours', 'NOUN'), ('\n', 'SPACE'), ('after', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('first', 'ADV'), ('suffered', 'VERB'), ('the', 'DET'), ('extinction', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('\n', 'SPACE'), ('dearest', 'ADJ'), ('hopes', 'NOUN'), ('no', 'DET'), ('one', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('supposed', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('appearance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('sisters', 'NOUN'), ('that', 'PRON'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('mourning', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('secret', 'NOUN'), ('over', 'ADP'), ('obstacles', 'NOUN'), ('which', 'PRON'), ('must', 'AUX'), ('divide', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('love', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('internally', 'ADV'), ('dwelling', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('perfections', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('whose', 'DET'), ('\n', 'SPACE'), ('whole', 'ADJ'), ('heart', 'NOUN'), ('she', 'PRON'), ('felt', 'VERB'), ('thoroughly', 'ADV'), ('possessed', 'VERB'), ('and', 'CCONJ'), ('whom', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('expected', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('in', 'ADP'), ('every', 'DET'), ('carriage', 'NOUN'), ('which', 'PRON'), ('drove', 'VERB'), ('near', 'ADP'), ('their', 'PRON'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('concealing', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('what', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('entrusted', 'VERB'), ('in', 'ADP'), ('confidence', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('it', 'PRON'), ('obliged', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('unceasing', 'VERB'), ('exertion', 'NOUN'), ('was', 'AUX'), ('no', 'DET'), ('\n', 'SPACE'), ('aggravation', 'NOUN'), ('of', 'ADP'), ('Elinors', 'PROPN'), ('distress', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('relief', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('spared', 'VERB'), ('the', 'DET'), ('communication', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('such', 'ADJ'), ('affliction', 'NOUN'), ('to', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('saved', 'VERB'), ('likewise', 'ADV'), ('from', 'ADP'), ('hearing', 'VERB'), ('that', 'DET'), ('condemnation', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('which', 'PRON'), ('would', 'AUX'), ('probably', 'ADV'), ('flow', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('excess', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('partial', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('which', 'PRON'), ('was', 'AUX'), ('more', 'ADJ'), ('than', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('\n', 'SPACE'), ('equal', 'ADJ'), ('to', 'PART'), ('support', 'VERB'), ('\n\n', 'SPACE'), ('From', 'ADP'), ('their', 'PRON'), ('counsel', 'NOUN'), ('or', 'CCONJ'), ('their', 'PRON'), ('conversation', 'NOUN'), ('she', 'PRON'), ('knew', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('receive', 'VERB'), ('no', 'DET'), ('assistance', 'NOUN'), ('their', 'PRON'), ('tenderness', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('sorrow', 'NOUN'), ('must', 'AUX'), ('add', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('distress', 'NOUN'), ('while', 'SCONJ'), ('her', 'PRON'), ('selfcommand', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('neither', 'CCONJ'), ('receive', 'VERB'), ('encouragement', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('example', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('from', 'ADP'), ('their', 'PRON'), ('praise', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('stronger', 'ADJ'), ('alone', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('good', 'ADJ'), ('sense', 'NOUN'), ('so', 'ADV'), ('well', 'ADV'), ('supported', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('firmness', 'NOUN'), ('was', 'AUX'), ('as', 'ADV'), ('unshaken', 'ADJ'), ('her', 'PRON'), ('appearance', 'NOUN'), ('of', 'ADP'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('invariable', 'ADJ'), ('as', 'ADP'), ('with', 'ADP'), ('regrets', 'NOUN'), ('so', 'ADV'), ('poignant', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('fresh', 'ADJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('possible', 'ADJ'), ('for', 'SCONJ'), ('them', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n\n', 'SPACE'), ('Much', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('suffered', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('first', 'ADJ'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('Lucy', 'PROPN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('she', 'PRON'), ('soon', 'ADV'), ('felt', 'VERB'), ('an', 'DET'), ('earnest', 'ADJ'), ('wish', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('renewing', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('this', 'PRON'), ('for', 'ADP'), ('more', 'ADJ'), ('reasons', 'NOUN'), ('than', 'SCONJ'), ('one', 'NUM'), ('\n', 'SPACE'), ('She', 'PRON'), ('wanted', 'VERB'), ('to', 'PART'), ('hear', 'VERB'), ('many', 'ADJ'), ('particulars', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('repeated', 'VERB'), ('again', 'ADV'), ('she', 'PRON'), ('wanted', 'VERB'), ('more', 'ADV'), ('clearly', 'ADV'), ('to', 'PART'), ('understand', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('Lucy', 'PROPN'), ('really', 'ADV'), ('felt', 'VERB'), ('for', 'ADP'), ('Edward', 'PROPN'), ('whether', 'SCONJ'), ('there', 'PRON'), ('were', 'VERB'), ('any', 'DET'), ('\n', 'SPACE'), ('sincerity', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('declaration', 'NOUN'), ('of', 'ADP'), ('tender', 'ADJ'), ('regard', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('particularly', 'ADV'), ('wanted', 'VERB'), ('to', 'PART'), ('convince', 'VERB'), ('Lucy', 'PROPN'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('readiness', 'NOUN'), ('to', 'PART'), ('enter', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('her', 'PRON'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('conversing', 'VERB'), ('on', 'ADP'), ('it', 'PRON'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('no', 'PRON'), ('otherwise', 'ADV'), ('interested', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('than', 'SCONJ'), ('as', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), ('feared', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('involuntary', 'ADJ'), ('agitation', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('morning', 'NOUN'), ('discourse', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('have', 'AUX'), ('left', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('doubtful', 'ADJ'), (' ', 'SPACE'), ('That', 'SCONJ'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('disposed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('jealous', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('appeared', 'VERB'), ('very', 'ADV'), ('probable', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('plain', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('had', 'AUX'), ('always', 'ADV'), ('spoken', 'VERB'), ('highly', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('praise', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('merely', 'ADV'), ('from', 'ADP'), ('Lucys', 'PROPN'), ('assertion', 'NOUN'), ('but', 'CCONJ'), ('from', 'ADP'), ('her', 'PRON'), ('venturing', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('trust', 'VERB'), ('her', 'PRON'), ('on', 'ADP'), ('so', 'ADV'), ('short', 'ADJ'), ('a', 'DET'), ('personal', 'ADJ'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('secret', 'ADJ'), ('so', 'ADV'), ('confessedly', 'ADV'), ('and', 'CCONJ'), ('evidently', 'ADV'), ('important', 'ADJ'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('even', 'ADV'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('joking', 'VERB'), ('intelligence', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('\n', 'SPACE'), ('some', 'DET'), ('weight', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('indeed', 'ADV'), ('while', 'SCONJ'), ('Elinor', 'PROPN'), ('remained', 'VERB'), ('so', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('assured', 'VERB'), ('within', 'ADP'), ('herself', 'PRON'), ('of', 'ADP'), ('being', 'AUX'), ('really', 'ADV'), ('beloved', 'VERB'), ('by', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('required', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('consideration', 'NOUN'), ('of', 'ADP'), ('probabilities', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('natural', 'ADJ'), ('that', 'SCONJ'), ('Lucy', 'PROPN'), ('should', 'AUX'), ('be', 'AUX'), ('jealous', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('her', 'PRON'), ('very', 'ADJ'), ('confidence', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('What', 'PRON'), ('other', 'ADJ'), ('reason', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('disclosure', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('there', 'PRON'), ('be', 'AUX'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('might', 'AUX'), ('be', 'AUX'), ('informed', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('\n', 'SPACE'), ('superior', 'ADJ'), ('claims', 'NOUN'), ('on', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('be', 'AUX'), ('taught', 'VERB'), ('to', 'PART'), ('avoid', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('future', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('little', 'ADJ'), ('difficulty', 'NOUN'), ('in', 'ADP'), ('understanding', 'NOUN'), ('thus', 'ADV'), ('\n', 'SPACE'), ('much', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('rivals', 'NOUN'), ('intentions', 'NOUN'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('firmly', 'ADV'), ('\n', 'SPACE'), ('resolved', 'VERB'), ('to', 'PART'), ('act', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('as', 'ADP'), ('every', 'DET'), ('principle', 'NOUN'), ('of', 'ADP'), ('honour', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('honesty', 'NOUN'), ('directed', 'VERB'), ('to', 'PART'), ('combat', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('affection', 'NOUN'), ('for', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('as', 'ADV'), ('little', 'ADJ'), ('as', 'ADP'), ('possible', 'ADJ'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('deny', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('the', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('endeavouring', 'VERB'), ('to', 'PART'), ('convince', 'VERB'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('unwounded', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('now', 'ADV'), ('have', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('more', 'ADV'), ('painful', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('than', 'SCONJ'), ('had', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('told', 'VERB'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('mistrust', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('ability', 'NOUN'), ('of', 'ADP'), ('going', 'VERB'), ('\n', 'SPACE'), ('through', 'ADP'), ('a', 'DET'), ('repetition', 'NOUN'), ('of', 'ADP'), ('particulars', 'NOUN'), ('with', 'ADP'), ('composure', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('immediately', 'ADV'), ('that', 'SCONJ'), ('an', 'DET'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('doing', 'VERB'), ('so', 'ADV'), ('could', 'AUX'), ('be', 'AUX'), ('commanded', 'VERB'), ('though', 'SCONJ'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('disposed', 'VERB'), ('as', 'SCONJ'), ('herself', 'PRON'), ('to', 'PART'), ('take', 'VERB'), ('advantage', 'NOUN'), ('of', 'ADP'), ('any', 'PRON'), ('that', 'PRON'), ('occurred', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('fine', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('allow', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('joining', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('walk', 'NOUN'), ('where', 'SCONJ'), ('they', 'PRON'), ('might', 'AUX'), ('most', 'ADV'), ('easily', 'ADV'), ('\n', 'SPACE'), ('separate', 'VERB'), ('themselves', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('met', 'VERB'), ('at', 'ADV'), ('least', 'ADJ'), ('every', 'PRON'), ('other', 'ADJ'), ('evening', 'NOUN'), ('either', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('cottage', 'NOUN'), ('and', 'CCONJ'), ('chiefly', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('they', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('to', 'PART'), ('meet', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('Such', 'DET'), ('a', 'DET'), ('thought', 'NOUN'), ('would', 'AUX'), ('never', 'ADV'), ('enter', 'VERB'), ('either', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('or', 'CCONJ'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middletons', 'PROPN'), ('head', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('very', 'ADV'), ('little', 'ADJ'), ('leisure', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('ever', 'ADV'), ('given', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('general', 'ADJ'), ('chat', 'NOUN'), ('and', 'CCONJ'), ('none', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('for', 'ADP'), ('\n', 'SPACE'), ('particular', 'ADJ'), ('discourse', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('met', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('eating', 'NOUN'), ('\n', 'SPACE'), ('drinking', 'VERB'), ('and', 'CCONJ'), ('laughing', 'VERB'), ('together', 'ADV'), ('playing', 'VERB'), ('at', 'ADP'), ('cards', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('consequences', 'NOUN'), ('or', 'CCONJ'), ('any', 'DET'), ('other', 'ADJ'), ('game', 'NOUN'), ('that', 'PRON'), ('was', 'AUX'), ('sufficiently', 'ADV'), ('noisy', 'ADJ'), ('\n\n', 'SPACE'), ('One', 'NUM'), ('or', 'CCONJ'), ('two', 'NUM'), ('meetings', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('kind', 'NOUN'), ('had', 'AUX'), ('taken', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('affording', 'VERB'), ('Elinor', 'PROPN'), ('any', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('engaging', 'VERB'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('private', 'ADJ'), ('when', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('called', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('one', 'NUM'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('beg', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('charity', 'NOUN'), ('that', 'SCONJ'), ('they', 'PRON'), ('would', 'AUX'), ('all', 'DET'), ('\n', 'SPACE'), ('dine', 'NOUN'), ('with', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('that', 'DET'), ('day', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('attend', 'VERB'), ('the', 'DET'), ('club', 'NOUN'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('and', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('otherwise', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('quite', 'ADV'), ('alone', 'ADJ'), ('except', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('two', 'NUM'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('foresaw', 'VERB'), ('a', 'DET'), ('fairer', 'ADJ'), ('opening', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('in', 'ADP'), ('view', 'NOUN'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('party', 'NOUN'), ('as', 'SCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('likely', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('more', 'ADJ'), ('at', 'ADP'), ('liberty', 'NOUN'), ('among', 'ADP'), ('themselves', 'PRON'), ('under', 'ADP'), ('the', 'DET'), ('tranquil', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('wellbred', 'ADJ'), ('direction', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('than', 'ADP'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('husband', 'NOUN'), ('united', 'VERB'), ('them', 'PRON'), ('together', 'ADV'), ('in', 'ADP'), ('one', 'NUM'), ('noisy', 'ADJ'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('accepted', 'VERB'), ('the', 'DET'), ('invitation', 'NOUN'), ('Margaret', 'PROPN'), ('with', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('permission', 'NOUN'), ('was', 'AUX'), ('equally', 'ADV'), ('compliant', 'ADJ'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('always', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('join', 'VERB'), ('any', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('parties', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('persuaded', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('seclude', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('any', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('amusement', 'NOUN'), ('to', 'PART'), ('go', 'VERB'), ('likewise', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('went', 'VERB'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('happily', 'ADV'), ('\n', 'SPACE'), ('preserved', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('frightful', 'ADJ'), ('solitude', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('threatened', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('insipidity', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('meeting', 'NOUN'), ('was', 'AUX'), ('exactly', 'ADV'), ('such', 'ADJ'), ('as', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('expected', 'VERB'), ('it', 'PRON'), ('produced', 'VERB'), ('not', 'PART'), ('one', 'NUM'), ('novelty', 'NOUN'), ('of', 'ADP'), ('thought', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('expression', 'NOUN'), ('and', 'CCONJ'), ('nothing', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('less', 'ADV'), ('interesting', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('discourse', 'NOUN'), ('both', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('dining', 'NOUN'), ('\n', 'SPACE'), ('parlour', 'NOUN'), ('and', 'CCONJ'), ('drawing', 'VERB'), ('room', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('the', 'DET'), ('children', 'NOUN'), ('\n', 'SPACE'), ('accompanied', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('they', 'PRON'), ('remained', 'VERB'), ('there', 'ADV'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('too', 'ADV'), ('well', 'ADV'), ('convinced', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('impossibility', 'NOUN'), ('of', 'ADP'), ('engaging', 'VERB'), ('Lucys', 'PROPN'), ('\n', 'SPACE'), ('attention', 'NOUN'), ('to', 'PART'), ('attempt', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('quitted', 'VERB'), ('it', 'PRON'), ('only', 'ADV'), ('with', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('removal', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('teathings', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('cardtable', 'ADJ'), ('was', 'AUX'), ('then', 'ADV'), ('placed', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('began', 'VERB'), ('to', 'PART'), ('wonder', 'VERB'), ('at', 'ADP'), ('herself', 'PRON'), ('for', 'ADP'), ('having', 'AUX'), ('ever', 'ADV'), ('\n', 'SPACE'), ('entertained', 'VERB'), ('a', 'DET'), ('hope', 'NOUN'), ('of', 'ADP'), ('finding', 'VERB'), ('time', 'NOUN'), ('for', 'ADP'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('all', 'PRON'), ('rose', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('preparation', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('round', 'ADJ'), ('game', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('glad', 'ADJ'), ('said', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('going', 'VERB'), ('to', 'PART'), ('finish', 'VERB'), ('poor', 'ADJ'), ('little', 'ADJ'), ('Annamarias', 'PROPN'), ('\n', 'SPACE'), ('basket', 'NOUN'), ('this', 'DET'), ('evening', 'NOUN'), ('for', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('must', 'AUX'), ('hurt', 'VERB'), ('your', 'PRON'), ('\n', 'SPACE'), ('eyes', 'NOUN'), ('to', 'PART'), ('work', 'VERB'), ('filigree', 'ADV'), ('by', 'ADP'), ('candlelight', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('we', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('dear', 'ADJ'), ('little', 'ADJ'), ('love', 'NOUN'), ('some', 'PRON'), ('amends', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('disappointment', 'NOUN'), ('\n', 'SPACE'), ('tomorrow', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('she', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('much', 'ADJ'), ('mind', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('This', 'DET'), ('hint', 'NOUN'), ('was', 'AUX'), ('enough', 'ADJ'), ('Lucy', 'PROPN'), ('recollected', 'VERB'), ('herself', 'PRON'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('replied', 'VERB'), ('Indeed', 'ADV'), ('you', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('mistaken', 'ADJ'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('only', 'ADV'), ('waiting', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('whether', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('make', 'VERB'), ('your', 'PRON'), ('party', 'NOUN'), ('without', 'ADP'), ('me', 'PRON'), ('or', 'CCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('at', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('filigree', 'NOUN'), ('already', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('disappoint', 'VERB'), ('the', 'DET'), ('little', 'ADJ'), ('angel', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('want', 'VERB'), ('me', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('cardtable', 'ADJ'), ('now', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('resolved', 'VERB'), ('to', 'PART'), ('finish', 'VERB'), ('the', 'DET'), ('basket', 'NOUN'), ('after', 'ADP'), ('supper', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('good', 'ADJ'), ('I', 'PRON'), ('hope', 'VERB'), ('it', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('hurt', 'VERB'), ('your', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('you', 'PRON'), ('ring', 'VERB'), ('the', 'DET'), ('bell', 'NOUN'), ('for', 'ADP'), ('some', 'DET'), ('working', 'VERB'), ('candles', 'NOUN'), ('\n', 'SPACE'), ('My', 'PRON'), ('poor', 'ADJ'), ('little', 'ADJ'), ('girl', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('sadly', 'ADV'), ('disappointed', 'VERB'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('the', 'DET'), ('basket', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('finished', 'VERB'), ('tomorrow', 'NOUN'), ('for', 'SCONJ'), ('though', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('told', 'VERB'), ('her', 'PRON'), ('it', 'PRON'), ('certainly', 'ADV'), ('would', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('she', 'PRON'), ('depends', 'VERB'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('having', 'VERB'), ('it', 'PRON'), ('done', 'VERB'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('directly', 'ADV'), ('drew', 'VERB'), ('her', 'PRON'), ('work', 'NOUN'), ('table', 'NOUN'), ('near', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('reseated', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('an', 'DET'), ('alacrity', 'NOUN'), ('and', 'CCONJ'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('infer', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('taste', 'VERB'), ('no', 'DET'), ('greater', 'ADJ'), ('\n', 'SPACE'), ('delight', 'NOUN'), ('than', 'ADP'), ('in', 'ADP'), ('making', 'VERB'), ('a', 'DET'), ('filigree', 'ADJ'), ('basket', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('spoilt', 'NOUN'), ('child', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('proposed', 'VERB'), ('a', 'DET'), ('rubber', 'NOUN'), ('of', 'ADP'), ('Casino', 'PROPN'), ('to', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('No', 'DET'), ('one', 'NOUN'), ('made', 'VERB'), ('any', 'DET'), ('objection', 'NOUN'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('with', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('\n', 'SPACE'), ('inattention', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('forms', 'NOUN'), ('of', 'ADP'), ('general', 'ADJ'), ('civility', 'NOUN'), ('exclaimed', 'VERB'), ('\n', 'SPACE'), ('Your', 'PRON'), ('Ladyship', 'NOUN'), ('will', 'AUX'), ('have', 'VERB'), ('the', 'DET'), ('goodness', 'NOUN'), ('to', 'PART'), ('excuse', 'VERB'), ('MEyou', 'PROPN'), ('\n', 'SPACE'), ('know', 'VERB'), ('I', 'PRON'), ('detest', 'ADJ'), ('cards', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('go', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('pianoforte', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('touched', 'VERB'), ('it', 'PRON'), ('since', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('tuned', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('without', 'ADP'), ('\n', 'SPACE'), ('farther', 'ADJ'), ('ceremony', 'NOUN'), ('she', 'PRON'), ('turned', 'VERB'), ('away', 'ADV'), ('and', 'CCONJ'), ('walked', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('instrument', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('looked', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('thanked', 'VERB'), ('heaven', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('SHE', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('made', 'VERB'), ('so', 'ADV'), ('rude', 'ADJ'), ('a', 'DET'), ('speech', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('can', 'AUX'), ('never', 'ADV'), ('keep', 'VERB'), ('long', 'ADV'), ('from', 'ADP'), ('that', 'DET'), ('instrument', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('maam', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('endeavouring', 'VERB'), ('to', 'PART'), ('smooth', 'VERB'), ('\n', 'SPACE'), ('away', 'ADV'), ('the', 'DET'), ('offence', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('much', 'ADV'), ('wonder', 'VERB'), ('at', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('the', 'DET'), ('very', 'ADV'), ('best', 'ADJ'), ('toned', 'VERB'), ('pianoforte', 'NOUN'), ('I', 'PRON'), ('ever', 'ADV'), ('heard', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('remaining', 'VERB'), ('five', 'NUM'), ('were', 'AUX'), ('now', 'ADV'), ('to', 'PART'), ('draw', 'VERB'), ('their', 'PRON'), ('cards', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('continued', 'VERB'), ('Elinor', 'PROPN'), ('if', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('happen', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('cut', 'VERB'), ('out', 'ADP'), ('I', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('some', 'DET'), ('use', 'NOUN'), ('to', 'ADP'), ('Miss', 'PROPN'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('rolling', 'VERB'), ('her', 'PRON'), ('papers', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('basket', 'NOUN'), ('that', 'PRON'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('impossible', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('labour', 'NOUN'), ('singly', 'ADV'), ('to', 'PART'), ('finish', 'VERB'), ('it', 'PRON'), ('this', 'DET'), ('evening', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('like', 'VERB'), ('the', 'DET'), ('work', 'NOUN'), ('exceedingly', 'ADV'), ('if', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('allow', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('a', 'DET'), ('share', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('obliged', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('help', 'NOUN'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('for', 'ADP'), ('I', 'PRON'), ('find', 'VERB'), ('there', 'PRON'), ('is', 'VERB'), ('more', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('than', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('there', 'PRON'), ('was', 'VERB'), ('and', 'CCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('a', 'DET'), ('shocking', 'ADJ'), ('thing', 'NOUN'), ('to', 'PART'), ('disappoint', 'VERB'), ('dear', 'ADJ'), ('Annamaria', 'PROPN'), ('after', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('that', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('terrible', 'ADJ'), ('indeed', 'ADV'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('Dear', 'ADJ'), ('little', 'ADJ'), ('soul', 'NOUN'), ('how', 'SCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('love', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('kind', 'ADV'), ('said', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('really', 'ADV'), ('like', 'VERB'), ('the', 'DET'), ('work', 'NOUN'), ('perhaps', 'ADV'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('as', 'ADV'), ('well', 'ADV'), ('pleased', 'ADJ'), ('not', 'PART'), ('to', 'PART'), ('cut', 'VERB'), ('in', 'ADP'), ('till', 'SCONJ'), ('another', 'DET'), ('rubber', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('will', 'AUX'), ('you', 'PRON'), ('take', 'VERB'), ('your', 'PRON'), ('chance', 'NOUN'), ('now', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('joyfully', 'ADV'), ('profited', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('of', 'ADP'), ('these', 'DET'), ('proposals', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('thus', 'ADV'), ('by', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('of', 'ADP'), ('that', 'DET'), ('address', 'NOUN'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('could', 'AUX'), ('never', 'ADV'), ('condescend', 'VERB'), ('to', 'PART'), ('practise', 'VERB'), ('gained', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('end', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pleased', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('made', 'VERB'), ('room', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('with', 'ADP'), ('ready', 'ADJ'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('two', 'NUM'), ('fair', 'ADJ'), ('rivals', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('thus', 'ADV'), ('seated', 'VERB'), ('side', 'NOUN'), ('by', 'ADP'), ('side', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('table', 'NOUN'), ('and', 'CCONJ'), ('with', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('utmost', 'ADJ'), ('harmony', 'NOUN'), ('engaged', 'VERB'), ('in', 'ADP'), ('forwarding', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('work', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('pianoforte', 'NOUN'), ('at', 'ADP'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('wrapped', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('music', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('thoughts', 'NOUN'), ('had', 'AUX'), ('by', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('forgotten', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('any', 'DET'), ('body', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('besides', 'SCONJ'), ('herself', 'PRON'), ('was', 'AUX'), ('luckily', 'ADV'), ('\n', 'SPACE'), ('so', 'ADV'), ('near', 'ADP'), ('them', 'PRON'), ('that', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('now', 'ADV'), ('judged', 'VERB'), ('she', 'PRON'), ('might', 'AUX'), ('safely', 'ADV'), ('\n', 'SPACE'), ('under', 'ADP'), ('the', 'DET'), ('shelter', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('noise', 'NOUN'), ('introduce', 'VERB'), ('the', 'DET'), ('interesting', 'ADJ'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('risk', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('heard', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cardtable', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('24', 'NUM'), ('\n\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('firm', 'ADJ'), ('though', 'SCONJ'), ('cautious', 'ADJ'), ('tone', 'NOUN'), ('Elinor', 'PROPN'), ('thus', 'ADV'), ('began', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('undeserving', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('confidence', 'NOUN'), ('you', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('honoured', 'VERB'), ('me', 'PRON'), ('with', 'ADP'), ('if', 'SCONJ'), ('I', 'PRON'), ('felt', 'VERB'), ('no', 'DET'), ('desire', 'NOUN'), ('for', 'ADP'), ('its', 'PRON'), ('continuance', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('no', 'DET'), ('farther', 'ADJ'), ('curiosity', 'NOUN'), ('on', 'ADP'), ('its', 'PRON'), ('subject', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('apologize', 'VERB'), ('therefore', 'ADV'), ('for', 'ADP'), ('bringing', 'VERB'), ('it', 'PRON'), ('forward', 'ADV'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('Thank', 'VERB'), ('you', 'PRON'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('warmly', 'ADV'), ('for', 'ADP'), ('breaking', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('ice', 'NOUN'), ('you', 'PRON'), ('have', 'AUX'), ('set', 'VERB'), ('my', 'PRON'), ('heart', 'NOUN'), ('at', 'ADP'), ('ease', 'NOUN'), ('by', 'ADP'), ('it', 'PRON'), ('for', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('somehow', 'ADV'), ('or', 'CCONJ'), ('other', 'ADJ'), ('afraid', 'ADJ'), ('I', 'PRON'), ('had', 'AUX'), ('offended', 'VERB'), ('you', 'PRON'), ('by', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('told', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('Monday', 'PROPN'), ('\n\n', 'SPACE'), ('Offended', 'VERB'), ('me', 'PRON'), ('How', 'SCONJ'), ('could', 'AUX'), ('you', 'PRON'), ('suppose', 'VERB'), ('so', 'ADV'), ('Believe', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('spoke', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('truest', 'ADJ'), ('sincerity', 'NOUN'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('farther', 'ADV'), ('from', 'ADP'), ('my', 'PRON'), ('intention', 'NOUN'), ('than', 'SCONJ'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('such', 'DET'), ('an', 'DET'), ('idea', 'NOUN'), (' ', 'SPACE'), ('Could', 'AUX'), ('you', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('motive', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('trust', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('honourable', 'ADJ'), ('and', 'CCONJ'), ('flattering', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('yet', 'ADV'), ('I', 'PRON'), ('do', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('replied', 'VERB'), ('Lucy', 'PROPN'), ('her', 'PRON'), ('little', 'ADJ'), ('\n', 'SPACE'), ('sharp', 'ADJ'), ('eyes', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('meaning', 'NOUN'), ('there', 'PRON'), ('seemed', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('coldness', 'NOUN'), ('and', 'CCONJ'), ('displeasure', 'VERB'), ('in', 'ADP'), ('your', 'PRON'), ('manner', 'NOUN'), ('that', 'PRON'), ('made', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('quite', 'ADV'), ('uncomfortable', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('sure', 'ADJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('was', 'AUX'), ('angry', 'ADJ'), ('with', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('have', 'AUX'), ('been', 'AUX'), ('quarrelling', 'VERB'), ('with', 'ADP'), ('myself', 'PRON'), ('ever', 'ADV'), ('since', 'SCONJ'), ('for', 'ADP'), ('having', 'AUX'), ('\n', 'SPACE'), ('took', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('liberty', 'NOUN'), ('as', 'SCONJ'), ('to', 'AUX'), ('trouble', 'VERB'), ('you', 'PRON'), ('with', 'ADP'), ('my', 'PRON'), ('affairs', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('my', 'PRON'), ('own', 'ADJ'), ('fancy', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('really', 'ADV'), ('do', 'AUX'), ('not', 'PART'), ('blame', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('knew', 'VERB'), ('what', 'PRON'), ('a', 'DET'), ('\n', 'SPACE'), ('consolation', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('relieve', 'VERB'), ('my', 'PRON'), ('heart', 'NOUN'), ('speaking', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('always', 'ADV'), ('thinking', 'VERB'), ('of', 'ADP'), ('every', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('your', 'PRON'), ('compassion', 'NOUN'), ('would', 'AUX'), ('make', 'VERB'), ('you', 'PRON'), ('overlook', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('easily', 'ADV'), ('believe', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('great', 'ADJ'), ('\n', 'SPACE'), ('relief', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('to', 'PART'), ('acknowledge', 'VERB'), ('your', 'PRON'), ('situation', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('be', 'AUX'), ('\n', 'SPACE'), ('assured', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('shall', 'AUX'), ('never', 'ADV'), ('have', 'VERB'), ('reason', 'NOUN'), ('to', 'PART'), ('repent', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Your', 'PRON'), ('case', 'NOUN'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('unfortunate', 'ADJ'), ('one', 'NOUN'), ('you', 'PRON'), ('seem', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('surrounded', 'VERB'), ('with', 'ADP'), ('difficulties', 'NOUN'), ('and', 'CCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('have', 'AUX'), ('need', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('your', 'PRON'), ('mutual', 'ADJ'), ('affection', 'NOUN'), ('to', 'PART'), ('support', 'VERB'), ('you', 'PRON'), ('under', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('is', 'AUX'), ('entirely', 'ADV'), ('dependent', 'ADJ'), ('on', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('has', 'VERB'), ('only', 'ADV'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('madness', 'ADJ'), ('to', 'PART'), ('marry', 'VERB'), ('upon', 'SCONJ'), ('that', 'PRON'), ('though', 'SCONJ'), ('for', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('part', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('give', 'VERB'), ('up', 'ADP'), ('every', 'DET'), ('prospect', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('without', 'ADP'), ('a', 'DET'), ('sigh', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('used', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('small', 'ADJ'), ('income', 'NOUN'), ('and', 'CCONJ'), ('could', 'AUX'), ('\n', 'SPACE'), ('struggle', 'VERB'), ('with', 'ADP'), ('any', 'DET'), ('poverty', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('love', 'VERB'), ('him', 'PRON'), ('too', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('selfish', 'ADJ'), ('means', 'NOUN'), ('of', 'ADP'), ('robbing', 'VERB'), ('him', 'PRON'), ('perhaps', 'ADV'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('\n', 'SPACE'), ('his', 'PRON'), ('mother', 'NOUN'), ('might', 'AUX'), ('give', 'VERB'), ('him', 'PRON'), ('if', 'SCONJ'), ('he', 'PRON'), ('married', 'VERB'), ('to', 'PART'), ('please', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('We', 'PRON'), ('must', 'AUX'), ('wait', 'VERB'), ('it', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('for', 'ADP'), ('many', 'ADJ'), ('years', 'NOUN'), (' ', 'SPACE'), ('With', 'ADP'), ('almost', 'ADV'), ('every', 'PRON'), ('\n', 'SPACE'), ('other', 'ADJ'), ('man', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('an', 'DET'), ('alarming', 'ADJ'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Edwards', 'PROPN'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('constancy', 'NOUN'), ('nothing', 'PRON'), ('can', 'AUX'), ('deprive', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('\n\n', 'SPACE'), ('That', 'DET'), ('conviction', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('every', 'DET'), ('thing', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('undoubtedly', 'ADV'), ('supported', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('trust', 'NOUN'), ('in', 'ADP'), ('yours', 'NOUN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('the', 'DET'), ('strength', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('reciprocal', 'ADJ'), ('attachment', 'NOUN'), ('had', 'AUX'), ('failed', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('between', 'ADP'), ('many', 'ADJ'), ('people', 'NOUN'), ('and', 'CCONJ'), ('under', 'ADP'), ('many', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('naturally', 'ADV'), ('would', 'AUX'), ('during', 'ADP'), ('a', 'DET'), ('four', 'NUM'), ('years', 'NOUN'), ('engagement', 'ADJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('situation', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('pitiable', 'ADJ'), ('indeed', 'ADV'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('here', 'ADV'), ('looked', 'VERB'), ('up', 'ADP'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('careful', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('guarding', 'VERB'), ('her', 'PRON'), ('countenance', 'NOUN'), ('from', 'ADP'), ('every', 'DET'), ('expression', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('could', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('words', 'NOUN'), ('a', 'DET'), ('suspicious', 'ADJ'), ('tendency', 'NOUN'), ('\n\n', 'SPACE'), ('Edwards', 'PROPN'), ('love', 'VERB'), ('for', 'ADP'), ('me', 'PRON'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('has', 'AUX'), ('been', 'AUX'), ('pretty', 'ADV'), ('\n', 'SPACE'), ('well', 'ADV'), ('put', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('test', 'NOUN'), ('by', 'ADP'), ('our', 'PRON'), ('long', 'ADJ'), ('very', 'ADV'), ('long', 'ADJ'), ('absence', 'NOUN'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('we', 'PRON'), ('were', 'AUX'), ('first', 'ADV'), ('engaged', 'VERB'), ('and', 'CCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('stood', 'VERB'), ('the', 'DET'), ('trial', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('well', 'ADV'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('unpardonable', 'ADJ'), ('to', 'PART'), ('doubt', 'VERB'), ('it', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('safely', 'ADV'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('never', 'ADV'), ('gave', 'VERB'), ('me', 'PRON'), ('one', 'NUM'), ('moments', 'NOUN'), ('\n', 'SPACE'), ('alarm', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('account', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('hardly', 'ADV'), ('knew', 'VERB'), ('whether', 'SCONJ'), ('to', 'PART'), ('smile', 'VERB'), ('or', 'CCONJ'), ('sigh', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('this', 'DET'), ('assertion', 'NOUN'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('went', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('rather', 'ADV'), ('of', 'ADP'), ('a', 'DET'), ('jealous', 'ADJ'), ('temper', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('nature', 'NOUN'), ('and', 'CCONJ'), ('from', 'ADP'), ('our', 'PRON'), ('different', 'ADJ'), ('situations', 'NOUN'), ('in', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('more', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('than', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('our', 'PRON'), ('\n', 'SPACE'), ('continual', 'ADJ'), ('separation', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('inclined', 'ADJ'), ('for', 'ADP'), ('suspicion', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'AUX'), ('found', 'VERB'), ('out', 'ADP'), ('the', 'DET'), ('truth', 'NOUN'), ('in', 'ADP'), ('an', 'DET'), ('instant', 'NOUN'), ('if', 'SCONJ'), ('there', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('slightest', 'ADJ'), ('alteration', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('when', 'SCONJ'), ('we', 'PRON'), ('met', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('any', 'DET'), ('lowness', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('account', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('talked', 'VERB'), ('more', 'ADJ'), ('of', 'ADP'), ('one', 'NUM'), ('lady', 'NOUN'), ('than', 'ADP'), ('another', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('seemed', 'VERB'), ('in', 'ADP'), ('any', 'DET'), ('respect', 'NOUN'), ('less', 'ADV'), ('happy', 'ADJ'), ('at', 'ADP'), ('Longstaple', 'PROPN'), ('than', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('used', 'VERB'), ('to', 'PART'), ('be', 'AUX'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('particularly', 'ADV'), ('\n', 'SPACE'), ('observant', 'ADJ'), ('or', 'CCONJ'), ('quicksighted', 'VERB'), ('in', 'ADP'), ('general', 'ADJ'), ('but', 'CCONJ'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('deceived', 'VERB'), ('\n\n', 'SPACE'), ('All', 'DET'), ('this', 'PRON'), ('thought', 'VERB'), ('Elinor', 'PROPN'), ('is', 'AUX'), ('very', 'ADV'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('can', 'AUX'), ('impose', 'VERB'), ('upon', 'SCONJ'), ('neither', 'PRON'), ('of', 'ADP'), ('us', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('what', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('after', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('silence', 'NOUN'), ('\n', 'SPACE'), ('are', 'AUX'), ('your', 'PRON'), ('views', 'NOUN'), ('or', 'CCONJ'), ('have', 'VERB'), ('you', 'PRON'), ('none', 'NOUN'), ('but', 'SCONJ'), ('that', 'PRON'), ('of', 'ADP'), ('waiting', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('death', 'NOUN'), ('which', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('melancholy', 'ADJ'), ('and', 'CCONJ'), ('shocking', 'ADJ'), ('\n', 'SPACE'), ('extremityIs', 'NOUN'), ('her', 'PRON'), ('son', 'NOUN'), ('determined', 'VERB'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('tediousness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('many', 'ADJ'), ('years', 'NOUN'), ('of', 'ADP'), ('suspense', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('which', 'PRON'), ('it', 'PRON'), ('may', 'AUX'), ('involve', 'VERB'), ('you', 'PRON'), ('rather', 'ADV'), ('than', 'ADP'), ('run', 'VERB'), ('the', 'DET'), ('risk', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('displeasure', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), ('by', 'ADP'), ('owning', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('we', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('certain', 'ADJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('while', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('headstrong', 'ADJ'), ('\n', 'SPACE'), ('proud', 'ADJ'), ('woman', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('first', 'ADJ'), ('fit', 'NOUN'), ('of', 'ADP'), ('anger', 'NOUN'), ('upon', 'SCONJ'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('very', 'ADV'), ('likely', 'ADV'), ('secure', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('to', 'ADP'), ('Robert', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('that', 'PRON'), ('for', 'SCONJ'), ('Edwards', 'PROPN'), ('sake', 'NOUN'), ('frightens', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('all', 'DET'), ('my', 'PRON'), ('inclination', 'NOUN'), ('for', 'ADP'), ('hasty', 'ADJ'), ('measures', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('for', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('sake', 'NOUN'), ('too', 'ADV'), ('or', 'CCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('carrying', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('disinterestedness', 'NOUN'), ('beyond', 'ADP'), ('reason', 'NOUN'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('looked', 'VERB'), ('at', 'ADP'), ('Elinor', 'PROPN'), ('again', 'ADV'), ('and', 'CCONJ'), ('was', 'AUX'), ('silent', 'ADJ'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('Mr', 'PROPN'), ('Robert', 'PROPN'), ('Ferrars', 'PROPN'), ('asked', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('at', 'ADP'), ('allI', 'PROPN'), ('never', 'ADV'), ('saw', 'VERB'), ('him', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('fancy', 'ADJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('very', 'ADV'), ('unlike', 'ADP'), ('his', 'PRON'), ('brothersilly', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('great', 'ADJ'), ('coxcomb', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('great', 'ADJ'), ('coxcomb', 'NOUN'), ('repeated', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('whose', 'DET'), ('ear', 'NOUN'), ('had', 'AUX'), ('\n', 'SPACE'), ('caught', 'VERB'), ('those', 'DET'), ('words', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('sudden', 'ADJ'), ('pause', 'NOUN'), ('in', 'ADP'), ('Mariannes', 'PROPN'), ('music', 'NOUN'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('they', 'PRON'), ('are', 'AUX'), ('talking', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('favourite', 'ADJ'), ('beaux', 'NOUN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('No', 'DET'), ('sister', 'NOUN'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('you', 'PRON'), ('are', 'AUX'), ('mistaken', 'ADJ'), ('there', 'ADV'), ('our', 'PRON'), ('\n', 'SPACE'), ('favourite', 'ADJ'), ('beaux', 'NOUN'), ('are', 'AUX'), ('NOT', 'PART'), ('great', 'ADJ'), ('coxcombs', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('answer', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), ('that', 'PRON'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('laughing', 'VERB'), ('heartily', 'ADV'), ('for', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('modestest', 'ADJ'), ('prettiest', 'NOUN'), ('behaved', 'VERB'), ('young', 'ADJ'), ('men', 'NOUN'), ('I', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('she', 'PRON'), ('is', 'AUX'), ('such', 'DET'), ('a', 'DET'), ('sly', 'ADV'), ('little', 'ADJ'), ('creature', 'NOUN'), ('\n', 'SPACE'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('finding', 'NOUN'), ('out', 'ADP'), ('who', 'PRON'), ('SHE', 'PROPN'), ('likes', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('cried', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('looking', 'VERB'), ('significantly', 'ADV'), ('round', 'ADJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('them', 'PRON'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('Lucys', 'PROPN'), ('beau', 'NOUN'), ('is', 'AUX'), ('quite', 'ADV'), ('as', 'ADV'), ('modest', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pretty', 'ADV'), ('behaved', 'VERB'), ('as', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('blushed', 'VERB'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('bit', 'VERB'), ('her', 'PRON'), ('lip', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('looked', 'VERB'), ('angrily', 'ADV'), ('at', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('mutual', 'ADJ'), ('silence', 'NOUN'), ('took', 'VERB'), ('\n', 'SPACE'), ('place', 'NOUN'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('first', 'ADV'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('it', 'PRON'), ('by', 'ADP'), ('saying', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('lower', 'ADJ'), ('tone', 'NOUN'), ('though', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('then', 'ADV'), ('giving', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('powerful', 'ADJ'), ('protection', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('magnificent', 'ADJ'), ('concerto', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('honestly', 'ADV'), ('tell', 'VERB'), ('you', 'PRON'), ('of', 'ADP'), ('one', 'NUM'), ('scheme', 'NOUN'), ('which', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('lately', 'ADV'), ('come', 'VERB'), ('into', 'ADP'), ('my', 'PRON'), ('head', 'NOUN'), ('for', 'ADP'), ('bringing', 'VERB'), ('matters', 'NOUN'), ('to', 'PART'), ('bear', 'VERB'), ('\n', 'SPACE'), ('indeed', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('bound', 'VERB'), ('to', 'PART'), ('let', 'VERB'), ('you', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('secret', 'NOUN'), ('for', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('a', 'DET'), ('party', 'NOUN'), ('concerned', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('you', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('enough', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('Edward', 'PROPN'), ('to', 'PART'), ('know', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('prefer', 'VERB'), ('the', 'DET'), ('church', 'NOUN'), ('to', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('profession', 'NOUN'), ('now', 'ADV'), ('my', 'PRON'), ('plan', 'NOUN'), ('is', 'AUX'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('take', 'VERB'), ('\n', 'SPACE'), ('orders', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('can', 'AUX'), ('and', 'CCONJ'), ('then', 'ADV'), ('through', 'ADP'), ('your', 'PRON'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('kind', 'ADJ'), ('enough', 'ADJ'), ('to', 'PART'), ('use', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('\n', 'SPACE'), ('friendship', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('some', 'DET'), ('regard', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('your', 'PRON'), ('brother', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('persuaded', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('Norland', 'PROPN'), ('living', 'VERB'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('understand', 'VERB'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('one', 'NUM'), ('and', 'CCONJ'), ('the', 'DET'), ('present', 'ADJ'), ('\n', 'SPACE'), ('incumbent', 'NOUN'), ('not', 'PART'), ('likely', 'ADJ'), ('to', 'PART'), ('live', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('while', 'SCONJ'), (' ', 'SPACE'), ('That', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('enough', 'ADJ'), ('for', 'SCONJ'), ('us', 'PRON'), ('to', 'PART'), ('marry', 'VERB'), ('upon', 'SCONJ'), ('and', 'CCONJ'), ('we', 'PRON'), ('might', 'AUX'), ('trust', 'VERB'), ('to', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('chance', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('happy', 'ADJ'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('to', 'PART'), ('show', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('mark', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('esteem', 'NOUN'), ('and', 'CCONJ'), ('friendship', 'NOUN'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('perceive', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('interest', 'NOUN'), ('on', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('\n', 'SPACE'), ('occasion', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('perfectly', 'ADV'), ('unnecessary', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('DashwoodTHAT', 'PROPN'), ('must', 'AUX'), ('be', 'AUX'), ('recommendation', 'NOUN'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('much', 'ADV'), ('approve', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('going', 'VERB'), ('into', 'ADP'), ('orders', 'NOUN'), ('\n\n', 'SPACE'), ('Then', 'ADV'), ('I', 'PRON'), ('rather', 'ADV'), ('suspect', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('interest', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('do', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('again', 'ADV'), ('silent', 'ADJ'), ('for', 'ADP'), ('many', 'ADJ'), ('minutes', 'NOUN'), (' ', 'SPACE'), ('At', 'ADP'), ('length', 'NOUN'), ('\n', 'SPACE'), ('Lucy', 'PROPN'), ('exclaimed', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('deep', 'ADJ'), ('sigh', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('wisest', 'ADJ'), ('way', 'NOUN'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('business', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), ('by', 'ADP'), ('dissolving', 'VERB'), ('the', 'DET'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('seem', 'VERB'), ('so', 'ADV'), ('beset', 'VERB'), ('with', 'ADP'), ('difficulties', 'NOUN'), ('on', 'ADP'), ('every', 'DET'), ('side', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('make', 'VERB'), ('us', 'PRON'), ('miserable', 'ADJ'), ('for', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('we', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('happier', 'ADJ'), ('perhaps', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('give', 'VERB'), ('me', 'PRON'), ('your', 'PRON'), ('advice', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('which', 'PRON'), ('concealed', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('agitated', 'ADJ'), ('feelings', 'NOUN'), ('on', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('subject', 'NOUN'), ('I', 'PRON'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('will', 'AUX'), ('not', 'PART'), (' ', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('that', 'SCONJ'), ('my', 'PRON'), ('opinion', 'NOUN'), ('would', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('weight', 'NOUN'), ('with', 'ADP'), ('you', 'PRON'), ('unless', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('wishes', 'NOUN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('you', 'PRON'), ('wrong', 'VERB'), ('me', 'PRON'), ('replied', 'VERB'), ('Lucy', 'PROPN'), ('with', 'ADP'), ('great', 'ADJ'), ('\n', 'SPACE'), ('solemnity', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('nobody', 'PRON'), ('of', 'ADP'), ('whose', 'DET'), ('judgment', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('highly', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('do', 'VERB'), ('of', 'ADP'), ('yours', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('really', 'ADV'), ('believe', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('say', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('advise', 'VERB'), ('you', 'PRON'), ('by', 'ADP'), ('all', 'DET'), ('means', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('engagement', 'NOUN'), ('with', 'ADP'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('more', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('happiness', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('of', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('resolve', 'VERB'), ('upon', 'SCONJ'), ('doing', 'VERB'), ('it', 'PRON'), ('immediately', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('blushed', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('insincerity', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('\n', 'SPACE'), ('future', 'ADJ'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('replied', 'VERB'), ('This', 'DET'), ('compliment', 'NOUN'), ('would', 'AUX'), ('effectually', 'ADV'), ('\n', 'SPACE'), ('frighten', 'VERB'), ('me', 'PRON'), ('from', 'ADP'), ('giving', 'VERB'), ('any', 'DET'), ('opinion', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('I', 'PRON'), ('formed', 'VERB'), ('one', 'NUM'), (' ', 'SPACE'), ('It', 'PRON'), ('raises', 'VERB'), ('my', 'PRON'), ('influence', 'NOUN'), ('much', 'ADV'), ('too', 'ADV'), ('high', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('dividing', 'VERB'), ('two', 'NUM'), ('people', 'NOUN'), ('so', 'ADV'), ('tenderly', 'ADV'), ('attached', 'VERB'), ('\n', 'SPACE'), ('is', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('for', 'ADP'), ('an', 'DET'), ('indifferent', 'ADJ'), ('person', 'NOUN'), ('\n\n', 'SPACE'), ('Tis', 'NUM'), ('because', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('an', 'DET'), ('indifferent', 'ADJ'), ('person', 'NOUN'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('some', 'DET'), ('pique', 'NOUN'), ('and', 'CCONJ'), ('laying', 'VERB'), ('a', 'DET'), ('particular', 'ADJ'), ('stress', 'NOUN'), ('on', 'ADP'), ('those', 'DET'), ('words', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('your', 'PRON'), ('judgment', 'NOUN'), ('might', 'AUX'), ('justly', 'ADV'), ('have', 'VERB'), ('such', 'ADJ'), ('weight', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('supposed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('biased', 'VERB'), ('in', 'ADP'), ('any', 'DET'), ('respect', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('feelings', 'NOUN'), ('your', 'PRON'), ('opinion', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('worth', 'ADJ'), ('having', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('thought', 'VERB'), ('it', 'PRON'), ('wisest', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('to', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('lest', 'SCONJ'), ('they', 'PRON'), ('might', 'AUX'), ('provoke', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('to', 'ADP'), ('an', 'DET'), ('unsuitable', 'ADJ'), ('increase', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('ease', 'NOUN'), ('and', 'CCONJ'), ('unreserve', 'ADJ'), ('and', 'CCONJ'), ('was', 'AUX'), ('even', 'ADV'), ('partly', 'ADV'), ('determined', 'VERB'), ('\n', 'SPACE'), ('never', 'ADV'), ('to', 'PART'), ('mention', 'VERB'), ('the', 'DET'), ('subject', 'NOUN'), ('again', 'ADV'), (' ', 'SPACE'), ('Another', 'DET'), ('pause', 'NOUN'), ('\n', 'SPACE'), ('therefore', 'ADV'), ('of', 'ADP'), ('many', 'ADJ'), ('minutes', 'NOUN'), ('duration', 'NOUN'), ('succeeded', 'VERB'), ('this', 'DET'), ('speech', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('still', 'ADV'), ('the', 'DET'), ('first', 'ADJ'), ('to', 'PART'), ('end', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Shall', 'AUX'), ('you', 'PRON'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('this', 'DET'), ('winter', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('accustomary', 'ADJ'), ('complacency', 'NOUN'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('not', 'PART'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('for', 'ADP'), ('that', 'PRON'), ('returned', 'VERB'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('her', 'PRON'), ('eyes', 'NOUN'), ('brightened', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('information', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('gave', 'VERB'), ('me', 'PRON'), ('such', 'ADJ'), ('pleasure', 'NOUN'), ('to', 'PART'), ('meet', 'VERB'), ('you', 'PRON'), ('there', 'ADV'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('go', 'VERB'), ('for', 'ADP'), ('all', 'DET'), ('that', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('will', 'AUX'), ('ask', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('come', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('accept', 'VERB'), ('their', 'PRON'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('they', 'PRON'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('unlucky', 'ADJ'), ('that', 'PRON'), ('is', 'AUX'), ('I', 'PRON'), ('had', 'AUX'), ('quite', 'ADV'), ('depended', 'VERB'), ('upon', 'SCONJ'), ('\n', 'SPACE'), ('meeting', 'VERB'), ('you', 'PRON'), ('there', 'ADV'), (' ', 'SPACE'), ('Anne', 'PROPN'), ('and', 'CCONJ'), ('me', 'PRON'), ('are', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('the', 'DET'), ('latter', 'ADJ'), ('end', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('January', 'PROPN'), ('to', 'ADP'), ('some', 'DET'), ('relations', 'NOUN'), ('who', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('wanting', 'VERB'), ('us', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('visit', 'VERB'), ('them', 'PRON'), ('these', 'DET'), ('several', 'ADJ'), ('years', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('only', 'ADV'), ('go', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('seeing', 'VERB'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('there', 'ADV'), ('in', 'ADP'), ('February', 'PROPN'), ('otherwise', 'ADV'), ('\n', 'SPACE'), ('London', 'PROPN'), ('would', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('charms', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('spirits', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('soon', 'ADV'), ('called', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('cardtable', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('conclusion', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('rubber', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('confidential', 'ADJ'), ('\n', 'SPACE'), ('discourse', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('ladies', 'NOUN'), ('was', 'AUX'), ('therefore', 'ADV'), ('at', 'ADP'), ('an', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('which', 'PRON'), ('both', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('submitted', 'VERB'), ('without', 'ADP'), ('any', 'DET'), ('reluctance', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('nothing', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('said', 'VERB'), ('on', 'ADP'), ('either', 'DET'), ('side', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('dislike', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('less', 'ADJ'), ('than', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('before', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('card', 'NOUN'), ('table', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('melancholy', 'ADJ'), ('\n', 'SPACE'), ('persuasion', 'NOUN'), ('that', 'PRON'), ('Edward', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('without', 'ADP'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('person', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('his', 'PRON'), ('wife', 'NOUN'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('even', 'ADV'), ('the', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('tolerably', 'ADV'), ('happy', 'ADJ'), ('in', 'ADP'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('sincere', 'ADJ'), ('affection', 'NOUN'), ('on', 'ADP'), ('HER', 'PRON'), ('side', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('selfinterest', 'ADJ'), ('alone', 'ADV'), ('could', 'AUX'), ('induce', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('to', 'PART'), ('keep', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('an', 'DET'), ('engagement', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('seemed', 'VERB'), ('so', 'ADV'), ('thoroughly', 'ADV'), ('aware', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('weary', 'ADJ'), ('\n\n', 'SPACE'), ('From', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('the', 'DET'), ('subject', 'NOUN'), ('was', 'AUX'), ('never', 'ADV'), ('revived', 'VERB'), ('by', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('entered', 'VERB'), ('on', 'ADP'), ('by', 'ADP'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('seldom', 'ADV'), ('missed', 'VERB'), ('an', 'DET'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('introducing', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('was', 'AUX'), ('particularly', 'ADV'), ('careful', 'ADJ'), ('to', 'PART'), ('inform', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('confidante', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('happiness', 'NOUN'), ('whenever', 'SCONJ'), ('she', 'PRON'), ('received', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('Edward', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('treated', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('with', 'ADP'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('caution', 'NOUN'), ('and', 'CCONJ'), ('dismissed', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('civility', 'NOUN'), ('would', 'AUX'), ('allow', 'VERB'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('such', 'ADJ'), ('conversations', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('an', 'DET'), ('indulgence', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('Lucy', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('deserve', 'VERB'), ('and', 'CCONJ'), ('which', 'PRON'), ('were', 'AUX'), ('dangerous', 'ADJ'), ('to', 'ADP'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('The', 'DET'), ('visit', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('lengthened', 'VERB'), ('far', 'ADV'), ('beyond', 'ADP'), ('what', 'PRON'), ('the', 'DET'), ('first', 'ADJ'), ('invitation', 'NOUN'), ('implied', 'VERB'), ('\n', 'SPACE'), ('Their', 'PRON'), ('favour', 'NOUN'), ('increased', 'VERB'), ('they', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('spared', 'VERB'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('going', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('numerous', 'ADJ'), ('and', 'CCONJ'), ('long', 'ADJ'), ('arranged', 'VERB'), ('engagements', 'NOUN'), ('in', 'ADP'), ('Exeter', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('absolute', 'ADJ'), ('necessity', 'NOUN'), ('of', 'ADP'), ('returning', 'VERB'), ('to', 'PART'), ('fulfill', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('immediately', 'ADV'), ('which', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('full', 'ADJ'), ('force', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('week', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('prevailed', 'VERB'), ('on', 'ADP'), ('to', 'PART'), ('stay', 'VERB'), ('nearly', 'ADV'), ('two', 'NUM'), ('\n', 'SPACE'), ('months', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('assist', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('due', 'ADJ'), ('celebration', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('festival', 'NOUN'), ('which', 'PRON'), ('requires', 'VERB'), ('a', 'DET'), ('more', 'ADJ'), ('than', 'ADP'), ('ordinary', 'ADJ'), ('\n', 'SPACE'), ('share', 'NOUN'), ('of', 'ADP'), ('private', 'ADJ'), ('balls', 'NOUN'), ('and', 'CCONJ'), ('large', 'ADJ'), ('dinners', 'NOUN'), ('to', 'PART'), ('proclaim', 'VERB'), ('\n', 'SPACE'), ('its', 'PRON'), ('importance', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('25', 'NUM'), ('\n\n\n', 'SPACE'), ('Though', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('of', 'ADP'), ('spending', 'VERB'), ('a', 'DET'), ('large', 'ADJ'), ('\n', 'SPACE'), ('portion', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('houses', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('and', 'CCONJ'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('without', 'ADP'), ('a', 'DET'), ('settled', 'VERB'), ('habitation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('Since', 'SCONJ'), ('the', 'DET'), ('death', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('traded', 'VERB'), ('with', 'ADP'), ('success', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('less', 'ADV'), ('elegant', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('town', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('resided', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('winter', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('house', 'NOUN'), ('in', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('streets', 'NOUN'), ('near', 'ADP'), ('Portman', 'PROPN'), ('Square', 'PROPN'), ('\n', 'SPACE'), ('Towards', 'ADP'), ('this', 'DET'), ('home', 'NOUN'), ('she', 'PRON'), ('began', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('approach', 'NOUN'), ('of', 'ADP'), ('January', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('turn', 'VERB'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('and', 'CCONJ'), ('thither', 'NOUN'), ('she', 'PRON'), ('one', 'NUM'), ('day', 'NOUN'), ('abruptly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('very', 'ADV'), ('unexpectedly', 'ADV'), ('by', 'ADP'), ('them', 'PRON'), ('asked', 'VERB'), ('the', 'DET'), ('elder', 'ADJ'), ('Misses', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('to', 'PART'), ('accompany', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('without', 'ADP'), ('observing', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('varying', 'VERB'), ('complexion', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('animated', 'VERB'), ('look', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('spoke', 'VERB'), ('no', 'DET'), ('indifference', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('plan', 'NOUN'), ('immediately', 'ADV'), ('gave', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('grateful', 'ADJ'), ('but', 'CCONJ'), ('absolute', 'ADJ'), ('denial', 'NOUN'), ('for', 'ADP'), ('both', 'PRON'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('believed', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('speaking', 'VERB'), ('their', 'PRON'), ('united', 'ADJ'), ('inclinations', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('reason', 'NOUN'), ('alleged', 'VERB'), ('was', 'AUX'), ('their', 'PRON'), ('determined', 'ADJ'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('not', 'PART'), ('leaving', 'VERB'), ('their', 'PRON'), ('mother', 'NOUN'), ('at', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('received', 'VERB'), ('the', 'DET'), ('refusal', 'NOUN'), ('with', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('repeated', 'VERB'), ('her', 'PRON'), ('invitation', 'NOUN'), ('immediately', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Lord', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('your', 'PRON'), ('mother', 'NOUN'), ('can', 'AUX'), ('spare', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('very', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('DO', 'AUX'), ('beg', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('favour', 'VERB'), ('me', 'PRON'), ('with', 'ADP'), ('\n', 'SPACE'), ('your', 'PRON'), ('company', 'NOUN'), ('for', 'SCONJ'), ('I', 'PRON'), ('ve', 'AUX'), ('quite', 'ADV'), ('set', 'VERB'), ('my', 'PRON'), ('heart', 'NOUN'), ('upon', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('fancy', 'ADJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('any', 'DET'), ('inconvenience', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('sha', 'AUX'), ('nt', 'PART'), ('put', 'VERB'), ('myself', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('my', 'PRON'), ('way', 'NOUN'), ('for', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('only', 'ADV'), ('be', 'AUX'), ('sending', 'VERB'), ('Betty', 'PROPN'), ('by', 'ADP'), ('the', 'DET'), ('coach', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('hope', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('afford', 'VERB'), ('THAT', 'PRON'), (' ', 'SPACE'), ('We', 'PRON'), ('three', 'NUM'), ('shall', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('go', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('well', 'ADV'), ('in', 'ADP'), ('my', 'PRON'), ('chaise', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('wherever', 'SCONJ'), ('I', 'PRON'), ('do', 'VERB'), ('well', 'ADV'), ('and', 'CCONJ'), ('good', 'ADJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('may', 'AUX'), ('always', 'ADV'), ('go', 'VERB'), ('with', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('my', 'PRON'), ('daughters', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('mother', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('object', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('for', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('such', 'ADJ'), ('\n', 'SPACE'), ('good', 'ADJ'), ('luck', 'NOUN'), ('in', 'ADP'), ('getting', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('children', 'NOUN'), ('off', 'ADP'), ('my', 'PRON'), ('hands', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('think', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('fit', 'ADJ'), ('person', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('charge', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('get', 'VERB'), ('one', 'NUM'), ('of', 'ADP'), ('you', 'PRON'), ('at', 'ADP'), ('least', 'ADJ'), ('well', 'ADV'), ('married', 'VERB'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('done', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('it', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('my', 'PRON'), ('fault', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('speak', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('word', 'NOUN'), ('for', 'ADP'), ('you', 'PRON'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('young', 'ADJ'), ('men', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('may', 'AUX'), ('depend', 'VERB'), ('upon', 'SCONJ'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('notion', 'NOUN'), ('said', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('that', 'PRON'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('object', 'VERB'), ('to', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('scheme', 'NOUN'), ('if', 'SCONJ'), ('her', 'PRON'), ('elder', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('come', 'VERB'), ('into', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('hard', 'ADJ'), ('indeed', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('pleasure', 'NOUN'), ('because', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('does', 'AUX'), ('not', 'PART'), ('wish', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('So', 'ADV'), ('I', 'PRON'), ('would', 'AUX'), ('advise', 'VERB'), ('you', 'PRON'), ('two', 'NUM'), ('to', 'PART'), ('set', 'VERB'), ('off', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('town', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('tired', 'ADJ'), ('of', 'ADP'), ('Barton', 'PROPN'), ('without', 'ADP'), ('saying', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('word', 'NOUN'), ('to', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('about', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Nay', 'PROPN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('monstrous', 'ADJ'), ('glad', 'ADJ'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Mariannes', 'PROPN'), ('company', 'NOUN'), ('whether', 'SCONJ'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('will', 'AUX'), ('go', 'VERB'), ('or', 'CCONJ'), ('not', 'PART'), ('only', 'ADV'), ('the', 'PRON'), ('more', 'ADV'), ('the', 'DET'), ('merrier', 'ADJ'), ('say', 'VERB'), ('I', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('comfortable', 'ADJ'), ('for', 'SCONJ'), ('them', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('together', 'ADV'), ('because', 'SCONJ'), ('if', 'SCONJ'), ('they', 'PRON'), ('got', 'VERB'), ('tired', 'ADJ'), ('of', 'ADP'), ('me', 'PRON'), ('they', 'PRON'), ('might', 'AUX'), ('talk', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('one', 'NUM'), ('another', 'DET'), ('and', 'CCONJ'), ('laugh', 'VERB'), ('at', 'ADP'), ('my', 'PRON'), ('old', 'ADJ'), ('ways', 'NOUN'), ('behind', 'ADP'), ('my', 'PRON'), ('back', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('one', 'NUM'), ('or', 'CCONJ'), ('the', 'DET'), ('other', 'ADJ'), ('if', 'SCONJ'), ('not', 'PART'), ('both', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('bless', 'VERB'), ('me', 'PRON'), ('how', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('live', 'VERB'), ('poking', 'VERB'), ('by', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('who', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('used', 'VERB'), ('till', 'SCONJ'), ('this', 'DET'), ('winter', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('\n', 'SPACE'), ('Charlotte', 'PROPN'), ('with', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('Come', 'VERB'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('let', 'VERB'), ('us', 'PRON'), ('strike', 'VERB'), ('\n', 'SPACE'), ('hands', 'NOUN'), ('upon', 'SCONJ'), ('the', 'DET'), ('bargain', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('will', 'AUX'), ('change', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('mind', 'NOUN'), ('by', 'ADP'), ('and', 'CCONJ'), ('bye', 'INTJ'), ('why', 'SCONJ'), ('so', 'ADV'), ('much', 'ADV'), ('the', 'PRON'), ('better', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('thank', 'VERB'), ('you', 'PRON'), ('maam', 'PROPN'), ('sincerely', 'ADV'), ('thank', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('warmth', 'NOUN'), ('your', 'PRON'), ('invitation', 'NOUN'), ('has', 'AUX'), ('insured', 'VERB'), ('my', 'PRON'), ('gratitude', 'NOUN'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('me', 'PRON'), ('such', 'ADJ'), ('happiness', 'NOUN'), ('yes', 'INTJ'), ('almost', 'ADV'), ('the', 'DET'), ('greatest', 'ADJ'), ('\n', 'SPACE'), ('happiness', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('capable', 'ADJ'), ('of', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('accept', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('my', 'PRON'), ('dearest', 'ADJ'), ('kindest', 'PROPN'), ('motherI', 'PROPN'), ('feel', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('justice', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('Elinor', 'PROPN'), ('has', 'AUX'), ('urged', 'VERB'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('made', 'VERB'), ('less', 'ADV'), ('happy', 'ADJ'), ('less', 'ADV'), ('comfortable', 'ADJ'), ('by', 'ADP'), ('our', 'PRON'), ('absenceOh', 'PROPN'), ('no', 'DET'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('should', 'AUX'), ('tempt', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('leave', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('must', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('struggle', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('repeated', 'VERB'), ('her', 'PRON'), ('assurance', 'NOUN'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('could', 'AUX'), ('spare', 'VERB'), ('them', 'PRON'), ('perfectly', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('understood', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('saw', 'VERB'), ('to', 'ADP'), ('what', 'DET'), ('indifference', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('almost', 'ADV'), ('every', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('she', 'PRON'), ('was', 'AUX'), ('carried', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('eagerness', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('with', 'ADP'), ('Willoughby', 'PROPN'), ('again', 'ADV'), ('made', 'VERB'), ('no', 'DET'), ('farther', 'ADV'), ('direct', 'ADJ'), ('\n', 'SPACE'), ('opposition', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('plan', 'NOUN'), ('and', 'CCONJ'), ('merely', 'ADV'), ('referred', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('decision', 'NOUN'), ('from', 'ADP'), ('whom', 'PRON'), ('however', 'ADV'), ('she', 'PRON'), ('scarcely', 'ADV'), ('expected', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('receive', 'VERB'), ('any', 'DET'), ('support', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('endeavour', 'NOUN'), ('to', 'PART'), ('prevent', 'VERB'), ('a', 'DET'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('approve', 'VERB'), ('of', 'ADP'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('which', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('account', 'NOUN'), ('she', 'PRON'), ('had', 'VERB'), ('particular', 'ADJ'), ('reasons', 'NOUN'), ('to', 'PART'), ('avoid', 'VERB'), ('\n', 'SPACE'), ('Whatever', 'PRON'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('desirous', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('eager', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('promoteshe', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('expect', 'VERB'), ('to', 'PART'), ('influence', 'VERB'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('cautiousness', 'NOUN'), ('of', 'ADP'), ('conduct', 'NOUN'), ('in', 'ADP'), ('an', 'DET'), ('affair', 'NOUN'), ('respecting', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('inspire', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('distrust', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('dared', 'AUX'), ('not', 'PART'), ('explain', 'VERB'), ('the', 'DET'), ('motive', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('disinclination', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('going', 'VERB'), ('to', 'ADP'), ('London', 'PROPN'), (' ', 'SPACE'), ('That', 'SCONJ'), ('Marianne', 'PROPN'), ('fastidious', 'ADJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('thoroughly', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('manners', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('invariably', 'ADV'), ('disgusted', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('should', 'AUX'), ('overlook', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('inconvenience', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('kind', 'NOUN'), ('should', 'AUX'), ('disregard', 'VERB'), ('whatever', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('most', 'ADV'), ('wounding', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('irritable', 'ADJ'), ('feelings', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('pursuit', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('object', 'NOUN'), ('was', 'AUX'), ('such', 'DET'), ('a', 'DET'), ('proof', 'NOUN'), ('so', 'ADV'), ('strong', 'ADJ'), ('\n', 'SPACE'), ('so', 'ADV'), ('full', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('importance', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('object', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('was', 'AUX'), ('not', 'PART'), ('prepared', 'ADJ'), ('to', 'PART'), ('witness', 'VERB'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('being', 'AUX'), ('informed', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('invitation', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('persuaded', 'VERB'), ('that', 'SCONJ'), ('such', 'DET'), ('an', 'DET'), ('excursion', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('productive', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('much', 'ADJ'), ('amusement', 'NOUN'), ('to', 'ADP'), ('both', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('and', 'CCONJ'), ('perceiving', 'VERB'), ('\n', 'SPACE'), ('through', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('affectionate', 'ADJ'), ('attention', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('much', 'ADJ'), ('the', 'DET'), ('heart', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('declining', 'VERB'), ('the', 'DET'), ('offer', 'NOUN'), ('upon', 'SCONJ'), ('HER', 'PRON'), ('account', 'NOUN'), ('insisted', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('both', 'PRON'), ('accepting', 'VERB'), ('it', 'PRON'), ('directly', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('began', 'VERB'), ('to', 'PART'), ('foresee', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('cheerfulness', 'NOUN'), ('a', 'DET'), ('variety', 'NOUN'), ('of', 'ADP'), ('advantages', 'NOUN'), ('that', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('accrue', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('from', 'ADP'), ('this', 'DET'), ('separation', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('delighted', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('plan', 'NOUN'), ('she', 'PRON'), ('cried', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('exactly', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('could', 'AUX'), ('wish', 'VERB'), (' ', 'SPACE'), ('Margaret', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('as', 'ADV'), ('much', 'ADJ'), ('benefited', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('as', 'ADP'), ('yourselves', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('Middletons', 'PROPN'), ('are', 'AUX'), ('gone', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('go', 'VERB'), ('on', 'ADP'), ('so', 'ADV'), ('quietly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('happily', 'ADV'), ('together', 'ADV'), ('with', 'ADP'), ('our', 'PRON'), ('books', 'NOUN'), ('and', 'CCONJ'), ('our', 'PRON'), ('music', 'NOUN'), ('You', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('find', 'VERB'), ('Margaret', 'PROPN'), ('so', 'ADV'), ('improved', 'VERB'), ('when', 'SCONJ'), ('you', 'PRON'), ('come', 'VERB'), ('back', 'ADV'), ('again', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('plan', 'NOUN'), ('of', 'ADP'), ('alteration', 'NOUN'), ('for', 'ADP'), ('your', 'PRON'), ('bedrooms', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('which', 'PRON'), ('may', 'AUX'), ('now', 'ADV'), ('be', 'AUX'), ('performed', 'VERB'), ('without', 'ADP'), ('any', 'DET'), ('inconvenience', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('any', 'DET'), ('one', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('right', 'ADJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('SHOULD', 'AUX'), ('go', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('have', 'VERB'), ('every', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('condition', 'NOUN'), ('in', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('acquainted', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('manners', 'NOUN'), ('and', 'CCONJ'), ('amusements', 'NOUN'), ('of', 'ADP'), ('London', 'PROPN'), ('\n', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('under', 'ADP'), ('the', 'DET'), ('care', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('motherly', 'ADV'), ('good', 'ADJ'), ('sort', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('woman', 'NOUN'), ('of', 'ADP'), ('whose', 'DET'), ('kindness', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('in', 'ADP'), ('all', 'DET'), ('probability', 'NOUN'), ('you', 'PRON'), ('will', 'AUX'), ('see', 'VERB'), ('your', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('whatever', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('his', 'PRON'), ('faults', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('faults', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('consider', 'VERB'), ('whose', 'DET'), ('son', 'NOUN'), ('he', 'PRON'), ('is', 'AUX'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('you', 'PRON'), ('so', 'ADV'), ('\n', 'SPACE'), ('wholly', 'ADV'), ('estranged', 'ADJ'), ('from', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('Though', 'SCONJ'), ('with', 'ADP'), ('your', 'PRON'), ('usual', 'ADJ'), ('anxiety', 'NOUN'), ('for', 'ADP'), ('our', 'PRON'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('obviating', 'VERB'), ('every', 'DET'), ('impediment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('scheme', 'NOUN'), ('which', 'PRON'), ('occurred', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('there', 'PRON'), ('is', 'VERB'), ('\n', 'SPACE'), ('still', 'ADV'), ('one', 'NUM'), ('objection', 'NOUN'), ('which', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('opinion', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('easily', 'ADV'), ('removed', 'VERB'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('countenance', 'NOUN'), ('sunk', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('what', 'PRON'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('is', 'AUX'), ('my', 'PRON'), ('dear', 'ADJ'), ('prudent', 'ADJ'), ('\n', 'SPACE'), ('Elinor', 'NOUN'), ('going', 'VERB'), ('to', 'PART'), ('suggest', 'VERB'), (' ', 'SPACE'), ('What', 'PRON'), ('formidable', 'ADJ'), ('obstacle', 'NOUN'), ('is', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('now', 'ADV'), ('to', 'PART'), ('bring', 'VERB'), ('forward', 'ADV'), (' ', 'SPACE'), ('Do', 'AUX'), ('let', 'VERB'), ('me', 'PRON'), ('hear', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('about', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('expense', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('objection', 'NOUN'), ('is', 'AUX'), ('this', 'PRON'), ('though', 'SCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('of', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('heart', 'NOUN'), ('she', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('woman', 'NOUN'), ('whose', 'DET'), ('society', 'NOUN'), ('\n', 'SPACE'), ('can', 'AUX'), ('afford', 'VERB'), ('us', 'PRON'), ('pleasure', 'NOUN'), ('or', 'CCONJ'), ('whose', 'DET'), ('protection', 'NOUN'), ('will', 'AUX'), ('give', 'VERB'), ('\n', 'SPACE'), ('us', 'PRON'), ('consequence', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('true', 'ADJ'), ('replied', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('but', 'CCONJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('society', 'NOUN'), ('separately', 'ADV'), ('from', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('will', 'AUX'), ('scarcely', 'ADV'), ('have', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('almost', 'ADV'), ('always', 'ADV'), ('appear', 'VERB'), ('in', 'ADP'), ('public', 'NOUN'), ('with', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('Elinor', 'PROPN'), ('is', 'AUX'), ('frightened', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('dislike', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('at', 'ADP'), ('least', 'ADJ'), ('it', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('MY', 'NOUN'), ('accepting', 'VERB'), ('her', 'PRON'), ('invitation', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('scruples', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('could', 'AUX'), ('put', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('every', 'DET'), ('unpleasantness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('kind', 'NOUN'), ('with', 'ADP'), ('very', 'ADV'), ('little', 'ADJ'), ('effort', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('smiling', 'VERB'), ('at', 'ADP'), ('this', 'DET'), ('display', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('indifference', 'NOUN'), ('towards', 'ADP'), ('the', 'DET'), ('manners', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('to', 'PART'), ('whom', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('often', 'ADV'), ('had', 'VERB'), ('difficulty', 'NOUN'), ('in', 'ADP'), ('persuading', 'VERB'), ('Marianne', 'PROPN'), ('to', 'PART'), ('behave', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('tolerable', 'ADJ'), ('politeness', 'NOUN'), ('and', 'CCONJ'), ('resolved', 'VERB'), ('within', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('persisted', 'VERB'), ('in', 'ADP'), ('going', 'VERB'), ('she', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('go', 'VERB'), ('likewise', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('proper', 'ADJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('should', 'AUX'), ('be', 'AUX'), ('left', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('sole', 'ADJ'), ('guidance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('judgment', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('should', 'AUX'), ('be', 'AUX'), ('abandoned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('mercy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('for', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('domestic', 'ADJ'), ('hours', 'NOUN'), ('\n', 'SPACE'), ('To', 'ADP'), ('this', 'DET'), ('determination', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('more', 'ADV'), ('easily', 'ADV'), ('reconciled', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('recollecting', 'VERB'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('by', 'ADP'), ('Lucys', 'PROPN'), ('account', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('before', 'ADP'), ('February', 'PROPN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('their', 'PRON'), ('visit', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('unreasonable', 'ADJ'), ('abridgement', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('previously', 'ADV'), ('finished', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('you', 'PRON'), ('BOTH', 'PRON'), ('go', 'VERB'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('these', 'DET'), ('objections', 'NOUN'), ('are', 'AUX'), ('nonsensical', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('being', 'AUX'), ('in', 'ADP'), ('London', 'PROPN'), ('and', 'CCONJ'), ('especially', 'ADV'), ('in', 'ADP'), ('being', 'AUX'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('ever', 'ADV'), ('condescend', 'VERB'), ('to', 'PART'), ('anticipate', 'VERB'), ('enjoyment', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('foresee', 'VERB'), ('it', 'PRON'), ('there', 'ADV'), ('from', 'ADP'), ('a', 'DET'), ('variety', 'NOUN'), ('of', 'ADP'), ('sources', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('perhaps', 'ADV'), ('expect', 'VERB'), ('some', 'PRON'), ('from', 'ADP'), ('improving', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('sisterinlaws', 'NOUN'), ('family', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('often', 'ADV'), ('wished', 'VERB'), ('for', 'ADP'), ('an', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('attempting', 'VERB'), ('to', 'PART'), ('weaken', 'VERB'), ('her', 'PRON'), ('mothers', 'NOUN'), ('dependence', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('attachment', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('herself', 'PRON'), ('that', 'SCONJ'), ('the', 'DET'), ('shock', 'NOUN'), ('might', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('less', 'ADJ'), ('when', 'SCONJ'), ('the', 'DET'), ('whole', 'ADJ'), ('truth', 'NOUN'), ('were', 'AUX'), ('revealed', 'VERB'), ('and', 'CCONJ'), ('now', 'ADV'), ('\n', 'SPACE'), ('on', 'ADP'), ('this', 'DET'), ('attack', 'NOUN'), ('though', 'SCONJ'), ('almost', 'ADV'), ('hopeless', 'ADJ'), ('of', 'ADP'), ('success', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('forced', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('begin', 'VERB'), ('her', 'PRON'), ('design', 'NOUN'), ('by', 'ADP'), ('saying', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('calmly', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('I', 'PRON'), ('like', 'VERB'), ('Edward', 'PROPN'), ('Ferrars', 'NOUN'), ('very', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('shall', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('but', 'CCONJ'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('perfect', 'ADJ'), ('indifference', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('whether', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('ever', 'ADV'), ('known', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('or', 'CCONJ'), ('not', 'PART'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('smiled', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('lifted', 'VERB'), ('up', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('in', 'ADP'), ('astonishment', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('conjectured', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('have', 'AUX'), ('held', 'VERB'), ('her', 'PRON'), ('tongue', 'NOUN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('very', 'ADV'), ('little', 'ADV'), ('farther', 'ADV'), ('discourse', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('finally', 'ADV'), ('\n', 'SPACE'), ('settled', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('invitation', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('fully', 'ADV'), ('accepted', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('received', 'VERB'), ('the', 'DET'), ('information', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('deal', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('and', 'CCONJ'), ('many', 'ADJ'), ('assurances', 'NOUN'), ('of', 'ADP'), ('kindness', 'NOUN'), ('and', 'CCONJ'), ('care', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('was', 'AUX'), ('it', 'PRON'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('merely', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('delighted', 'ADJ'), ('for', 'ADP'), ('to', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('whose', 'DET'), ('prevailing', 'VERB'), ('anxiety', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('dread', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('alone', 'ADJ'), ('the', 'DET'), ('acquisition', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('number', 'NOUN'), ('of', 'ADP'), ('inhabitants', 'NOUN'), ('in', 'ADP'), ('London', 'PROPN'), ('was', 'AUX'), ('something', 'PRON'), ('\n', 'SPACE'), ('Even', 'PROPN'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('took', 'VERB'), ('the', 'DET'), ('trouble', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('putting', 'VERB'), ('herself', 'PRON'), ('rather', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('way', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('especially', 'ADV'), ('Lucy', 'PROPN'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('been', 'AUX'), ('so', 'ADV'), ('happy', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('lives', 'NOUN'), ('as', 'SCONJ'), ('this', 'DET'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('made', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('submitted', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('arrangement', 'NOUN'), ('which', 'PRON'), ('counteracted', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('wishes', 'NOUN'), ('with', 'ADP'), ('less', 'ADJ'), ('reluctance', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('expected', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('feel', 'VERB'), (' ', 'SPACE'), ('With', 'ADP'), ('regard', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('a', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('unconcern', 'NOUN'), ('whether', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('or', 'CCONJ'), ('not', 'PART'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('so', 'ADV'), ('thoroughly', 'ADV'), ('pleased', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('plan', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('exhilarated', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('look', 'NOUN'), ('voice', 'NOUN'), ('and', 'CCONJ'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('restored', 'VERB'), ('to', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('usual', 'ADJ'), ('animation', 'NOUN'), ('and', 'CCONJ'), ('elevated', 'VERB'), ('to', 'ADP'), ('more', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('gaiety', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('dissatisfied', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('cause', 'NOUN'), ('and', 'CCONJ'), ('would', 'AUX'), ('hardly', 'ADV'), ('allow', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('distrust', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('consequence', 'NOUN'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('joy', 'NOUN'), ('was', 'AUX'), ('almost', 'ADV'), ('a', 'DET'), ('degree', 'NOUN'), ('beyond', 'ADP'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('great', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('perturbation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('impatience', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('unwillingness', 'NOUN'), ('to', 'PART'), ('quit', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('was', 'AUX'), ('her', 'PRON'), ('only', 'ADV'), ('restorative', 'ADJ'), ('to', 'PART'), ('calmness', 'VERB'), ('and', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('of', 'ADP'), ('parting', 'VERB'), ('her', 'PRON'), ('grief', 'NOUN'), ('on', 'ADP'), ('that', 'DET'), ('score', 'NOUN'), ('was', 'AUX'), ('excessive', 'ADJ'), ('\n', 'SPACE'), ('Her', 'PRON'), ('mothers', 'NOUN'), ('affliction', 'NOUN'), ('was', 'AUX'), ('hardly', 'ADV'), ('less', 'ADJ'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('three', 'NUM'), ('who', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('consider', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('separation', 'NOUN'), ('as', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('short', 'ADJ'), ('of', 'ADP'), ('eternal', 'ADJ'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('departure', 'NOUN'), ('took', 'VERB'), ('place', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('week', 'NOUN'), ('in', 'ADP'), ('January', 'PROPN'), ('\n', 'SPACE'), ('The', 'DET'), ('Middletons', 'PROPN'), ('were', 'AUX'), ('to', 'PART'), ('follow', 'VERB'), ('in', 'ADP'), ('about', 'ADV'), ('a', 'PRON'), ('week', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Steeles', 'PROPN'), ('kept', 'VERB'), ('their', 'PRON'), ('station', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('and', 'CCONJ'), ('were', 'AUX'), ('to', 'PART'), ('quit', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('only', 'ADV'), ('with', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('26', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('find', 'VERB'), ('herself', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('beginning', 'VERB'), ('a', 'DET'), ('journey', 'NOUN'), ('to', 'ADP'), ('London', 'PROPN'), ('under', 'ADP'), ('her', 'PRON'), ('protection', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADP'), ('her', 'PRON'), ('guest', 'NOUN'), ('without', 'ADP'), ('wondering', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('short', 'ADJ'), ('had', 'VERB'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('that', 'DET'), ('lady', 'NOUN'), ('been', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('wholly', 'ADV'), ('unsuited', 'ADJ'), ('were', 'AUX'), ('they', 'PRON'), ('in', 'ADP'), ('age', 'NOUN'), ('and', 'CCONJ'), ('disposition', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('many', 'ADJ'), ('had', 'AUX'), ('been', 'AUX'), ('her', 'PRON'), ('objections', 'NOUN'), ('against', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('measure', 'NOUN'), ('\n', 'SPACE'), ('only', 'ADV'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('before', 'ADP'), ('But', 'CCONJ'), ('these', 'DET'), ('objections', 'NOUN'), ('had', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('that', 'DET'), ('happy', 'ADJ'), ('ardour', 'NOUN'), ('of', 'ADP'), ('youth', 'NOUN'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('equally', 'ADV'), ('shared', 'VERB'), ('been', 'AUX'), ('overcome', 'VERB'), ('or', 'CCONJ'), ('overlooked', 'VERB'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('occasional', 'ADJ'), ('doubt', 'NOUN'), ('of', 'ADP'), ('Willoughbys', 'PROPN'), ('constancy', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('witness', 'VERB'), ('the', 'DET'), ('rapture', 'NOUN'), ('of', 'ADP'), ('delightful', 'ADJ'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('filled', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('soul', 'NOUN'), ('and', 'CCONJ'), ('beamed', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('without', 'ADP'), ('feeling', 'VERB'), ('how', 'SCONJ'), ('blank', 'ADJ'), ('was', 'AUX'), ('her', 'PRON'), ('own', 'ADJ'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('cheerless', 'NOUN'), ('her', 'PRON'), ('own', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('comparison', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('gladly', 'ADV'), ('she', 'PRON'), ('would', 'AUX'), ('engage', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('solicitude', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('situation', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('animating', 'NOUN'), ('object', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('view', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('possibility', 'NOUN'), ('of', 'ADP'), ('hope', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('short', 'ADJ'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('short', 'ADJ'), ('time', 'NOUN'), ('however', 'ADV'), ('must', 'AUX'), ('now', 'ADV'), ('decide', 'VERB'), ('what', 'PRON'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('intentions', 'NOUN'), ('were', 'AUX'), ('in', 'ADP'), ('all', 'DET'), ('probability', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('already', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('eagerness', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'AUX'), ('declared', 'VERB'), ('her', 'PRON'), ('dependence', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('finding', 'VERB'), ('him', 'PRON'), ('there', 'ADV'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('resolved', 'VERB'), ('not', 'PART'), ('only', 'ADV'), ('upon', 'SCONJ'), ('\n', 'SPACE'), ('gaining', 'VERB'), ('every', 'DET'), ('new', 'ADJ'), ('light', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('his', 'PRON'), ('character', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('observation', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('intelligence', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('could', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('likewise', 'ADV'), ('upon', 'SCONJ'), ('watching', 'VERB'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('such', 'ADJ'), ('zealous', 'ADJ'), ('attention', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('ascertain', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('what', 'PRON'), ('he', 'PRON'), ('meant', 'VERB'), ('before', 'SCONJ'), ('many', 'ADJ'), ('meetings', 'NOUN'), ('had', 'AUX'), ('taken', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('Should', 'AUX'), ('the', 'DET'), ('result', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('observations', 'NOUN'), ('be', 'AUX'), ('unfavourable', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('determined', 'VERB'), ('at', 'ADP'), ('all', 'DET'), ('events', 'NOUN'), ('to', 'PART'), ('open', 'VERB'), ('the', 'DET'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('should', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('otherwise', 'ADV'), ('her', 'PRON'), ('exertions', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('a', 'DET'), ('different', 'ADJ'), ('natureshe', 'NOUN'), ('must', 'AUX'), ('then', 'ADV'), ('learn', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('avoid', 'VERB'), ('every', 'DET'), ('selfish', 'ADJ'), ('comparison', 'NOUN'), ('and', 'CCONJ'), ('banish', 'VERB'), ('every', 'DET'), ('regret', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('might', 'AUX'), ('lessen', 'VERB'), ('her', 'PRON'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('happiness', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('three', 'NUM'), ('days', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('journey', 'NOUN'), ('and', 'CCONJ'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('travelled', 'VERB'), ('was', 'AUX'), ('a', 'DET'), ('happy', 'ADJ'), ('specimen', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('future', 'ADJ'), ('complaisance', 'NOUN'), ('and', 'CCONJ'), ('companionableness', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('expected', 'VERB'), ('to', 'PART'), ('be', 'AUX'), (' ', 'SPACE'), ('She', 'PRON'), ('sat', 'VERB'), ('in', 'ADP'), ('silence', 'NOUN'), ('almost', 'ADV'), ('all', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('way', 'NOUN'), ('wrapt', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('meditations', 'NOUN'), ('and', 'CCONJ'), ('scarcely', 'ADV'), ('ever', 'ADV'), ('\n', 'SPACE'), ('voluntarily', 'ADV'), ('speaking', 'VERB'), ('except', 'SCONJ'), ('when', 'SCONJ'), ('any', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('picturesque', 'ADJ'), ('\n', 'SPACE'), ('beauty', 'NOUN'), ('within', 'ADP'), ('their', 'PRON'), ('view', 'NOUN'), ('drew', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('an', 'DET'), ('exclamation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('delight', 'PROPN'), ('exclusively', 'ADV'), ('addressed', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('atone', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('this', 'DET'), ('conduct', 'NOUN'), ('therefore', 'ADV'), ('Elinor', 'PROPN'), ('took', 'VERB'), ('immediate', 'ADJ'), ('possession', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('post', 'NOUN'), ('of', 'ADP'), ('civility', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('assigned', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('behaved', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('attention', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('talked', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('laughed', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('listened', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('whenever', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('on', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), ('\n', 'SPACE'), ('treated', 'VERB'), ('them', 'PRON'), ('both', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('possible', 'ADJ'), ('kindness', 'NOUN'), ('was', 'AUX'), ('solicitous', 'ADJ'), ('\n', 'SPACE'), ('on', 'ADP'), ('every', 'DET'), ('occasion', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('ease', 'NOUN'), ('and', 'CCONJ'), ('enjoyment', 'NOUN'), ('and', 'CCONJ'), ('only', 'ADV'), ('\n', 'SPACE'), ('disturbed', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('choose', 'VERB'), ('their', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('dinners', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('inn', 'NOUN'), ('nor', 'CCONJ'), ('extort', 'VERB'), ('a', 'DET'), ('confession', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('preferring', 'VERB'), ('salmon', 'NOUN'), ('to', 'PART'), ('cod', 'VERB'), ('or', 'CCONJ'), ('boiled', 'VERB'), ('fowls', 'NOUN'), ('to', 'ADP'), ('veal', 'ADJ'), ('cutlets', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('reached', 'VERB'), ('town', 'NOUN'), ('by', 'ADP'), ('three', 'NUM'), ('oclock', 'NOUN'), ('the', 'DET'), ('third', 'ADJ'), ('day', 'NOUN'), ('glad', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('released', 'VERB'), ('after', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('journey', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('confinement', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('carriage', 'NOUN'), ('and', 'CCONJ'), ('ready', 'ADJ'), ('to', 'PART'), ('enjoy', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('luxury', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('good', 'ADJ'), ('fire', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('house', 'NOUN'), ('was', 'AUX'), ('handsome', 'ADJ'), ('and', 'CCONJ'), ('handsomely', 'ADV'), ('fitted', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('were', 'AUX'), ('immediately', 'ADV'), ('put', 'VERB'), ('in', 'ADP'), ('possession', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('comfortable', 'ADJ'), ('apartment', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('had', 'AUX'), ('formerly', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('Charlottes', 'PROPN'), ('and', 'CCONJ'), ('over', 'ADP'), ('the', 'DET'), ('mantelpiece', 'NOUN'), ('still', 'ADV'), ('hung', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('landscape', 'NOUN'), ('in', 'ADP'), ('coloured', 'VERB'), ('silks', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('performance', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('proof', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('having', 'AUX'), ('spent', 'VERB'), ('seven', 'NUM'), ('years', 'NOUN'), ('at', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('school', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('to', 'ADP'), ('some', 'DET'), ('effect', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('dinner', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('ready', 'ADJ'), ('in', 'ADP'), ('less', 'ADJ'), ('than', 'ADP'), ('two', 'NUM'), ('\n', 'SPACE'), ('hours', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('Elinor', 'PROPN'), ('determined', 'VERB'), ('to', 'PART'), ('employ', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('interval', 'NOUN'), ('in', 'ADP'), ('writing', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('sat', 'VERB'), ('down', 'ADP'), ('for', 'ADP'), ('\n', 'SPACE'), ('that', 'DET'), ('purpose', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('Marianne', 'PROPN'), ('did', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('writing', 'VERB'), ('home', 'NOUN'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('\n', 'SPACE'), ('better', 'ADV'), ('defer', 'VERB'), ('your', 'PRON'), ('letter', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('NOT', 'PART'), ('going', 'VERB'), ('to', 'PART'), ('write', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('replied', 'VERB'), ('Marianne', 'PROPN'), ('hastily', 'ADV'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('wishing', 'VERB'), ('to', 'PART'), ('avoid', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('farther', 'ADJ'), ('inquiry', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('no', 'ADV'), ('more', 'ADV'), ('it', 'PRON'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('struck', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('she', 'PRON'), ('must', 'AUX'), ('then', 'ADV'), ('be', 'AUX'), ('writing', 'VERB'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('conclusion', 'NOUN'), ('which', 'PRON'), ('as', 'SCONJ'), ('instantly', 'ADV'), ('followed', 'VERB'), ('was', 'AUX'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('however', 'ADV'), ('mysteriously', 'ADV'), ('they', 'PRON'), ('might', 'AUX'), ('wish', 'VERB'), ('to', 'PART'), ('conduct', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('affair', 'NOUN'), ('they', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('engaged', 'VERB'), (' ', 'SPACE'), ('This', 'DET'), ('conviction', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('not', 'PART'), ('entirely', 'ADV'), ('satisfactory', 'ADJ'), ('gave', 'VERB'), ('her', 'PRON'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('continued', 'VERB'), ('her', 'PRON'), ('letter', 'NOUN'), ('with', 'ADP'), ('greater', 'ADJ'), ('alacrity', 'NOUN'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('was', 'AUX'), ('finished', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('length', 'NOUN'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('a', 'DET'), ('note', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('then', 'ADV'), ('\n', 'SPACE'), ('folded', 'VERB'), ('up', 'ADP'), ('sealed', 'VERB'), ('and', 'CCONJ'), ('directed', 'VERB'), ('with', 'ADP'), ('eager', 'ADJ'), ('rapidity', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('thought', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('distinguish', 'VERB'), ('a', 'DET'), ('large', 'ADJ'), ('W', 'NOUN'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('direction', 'NOUN'), ('and', 'CCONJ'), ('no', 'ADV'), ('sooner', 'ADV'), ('was', 'AUX'), ('it', 'PRON'), ('complete', 'ADJ'), ('than', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('ringing', 'VERB'), ('the', 'DET'), ('bell', 'NOUN'), ('requested', 'VERB'), ('the', 'DET'), ('footman', 'NOUN'), ('who', 'PRON'), ('answered', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('get', 'VERB'), ('that', 'DET'), ('letter', 'NOUN'), ('conveyed', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('twopenny', 'ADJ'), ('post', 'NOUN'), ('\n', 'SPACE'), ('This', 'PRON'), ('decided', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('spirits', 'NOUN'), ('still', 'ADV'), ('continued', 'VERB'), ('very', 'ADV'), ('high', 'ADJ'), ('but', 'CCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('a', 'DET'), ('flutter', 'NOUN'), ('in', 'ADP'), ('them', 'PRON'), ('which', 'PRON'), ('prevented', 'VERB'), ('their', 'PRON'), ('giving', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('pleasure', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('this', 'DET'), ('agitation', 'NOUN'), ('increased', 'VERB'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('evening', 'NOUN'), ('drew', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('scarcely', 'ADV'), ('eat', 'VERB'), ('any', 'DET'), ('dinner', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('they', 'PRON'), ('afterwards', 'ADV'), ('returned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('drawing', 'NOUN'), ('room', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('anxiously', 'ADV'), ('listening', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('sound', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('carriage', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('satisfaction', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('by', 'ADP'), ('being', 'AUX'), ('much', 'ADV'), ('engaged', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('could', 'AUX'), ('see', 'VERB'), ('little', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('passing', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('tea', 'NOUN'), ('things', 'NOUN'), ('were', 'AUX'), ('brought', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('already', 'ADV'), ('had', 'AUX'), ('Marianne', 'PROPN'), ('been', 'AUX'), ('disappointed', 'VERB'), ('more', 'ADV'), ('than', 'ADP'), ('once', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('a', 'DET'), ('rap', 'NOUN'), ('at', 'ADP'), ('a', 'DET'), ('neighbouring', 'NOUN'), ('door', 'NOUN'), ('when', 'SCONJ'), ('a', 'DET'), ('loud', 'ADJ'), ('one', 'NOUN'), ('was', 'AUX'), ('suddenly', 'ADV'), ('\n', 'SPACE'), ('heard', 'VERB'), ('which', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('mistaken', 'ADJ'), ('for', 'SCONJ'), ('one', 'NUM'), ('at', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('house', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('felt', 'VERB'), ('secure', 'ADJ'), ('of', 'ADP'), ('its', 'PRON'), ('announcing', 'VERB'), ('Willoughbys', 'PROPN'), ('approach', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('starting', 'VERB'), ('up', 'ADP'), ('moved', 'VERB'), ('towards', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('silent', 'ADJ'), ('this', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('borne', 'VERB'), ('many', 'ADJ'), ('seconds', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('opened', 'VERB'), ('the', 'DET'), ('door', 'NOUN'), ('advanced', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('steps', 'NOUN'), ('towards', 'ADP'), ('the', 'DET'), ('stairs', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('listening', 'VERB'), ('half', 'DET'), ('a', 'DET'), ('minute', 'NOUN'), ('returned', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('agitation', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('having', 'AUX'), ('heard', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('would', 'AUX'), ('naturally', 'ADV'), ('produce', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('ecstasy', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('at', 'ADP'), ('that', 'DET'), ('instant', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('exclaiming', 'VERB'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('Elinor', 'PROPN'), ('it', 'PRON'), ('is', 'AUX'), ('Willoughby', 'PROPN'), ('indeed', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('and', 'CCONJ'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('almost', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('throw', 'VERB'), ('herself', 'PRON'), ('into', 'ADP'), ('his', 'PRON'), ('arms', 'NOUN'), ('when', 'SCONJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('appeared', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('great', 'ADJ'), ('a', 'DET'), ('shock', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('borne', 'VERB'), ('with', 'ADP'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('immediately', 'ADV'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('disappointed', 'VERB'), ('too', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('her', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('ensured', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('welcome', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('felt', 'AUX'), ('particularly', 'ADV'), ('hurt', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('a', 'DET'), ('man', 'NOUN'), ('so', 'ADV'), ('partial', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('should', 'AUX'), ('perceive', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('experienced', 'VERB'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('grief', 'NOUN'), ('and', 'CCONJ'), ('disappointment', 'NOUN'), ('in', 'ADP'), ('seeing', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('instantly', 'ADV'), ('saw', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('unnoticed', 'ADJ'), ('by', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('even', 'ADV'), ('observed', 'VERB'), ('Marianne', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('quitted', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('such', 'ADJ'), ('astonishment', 'NOUN'), ('and', 'CCONJ'), ('concern', 'NOUN'), ('as', 'SCONJ'), ('hardly', 'ADV'), ('left', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('recollection', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('civility', 'NOUN'), ('demanded', 'VERB'), ('towards', 'ADP'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('your', 'PRON'), ('sister', 'NOUN'), ('ill', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('answered', 'VERB'), ('in', 'ADP'), ('some', 'DET'), ('distress', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('talked', 'VERB'), ('of', 'ADP'), ('headaches', 'NOUN'), ('low', 'ADJ'), ('spirits', 'NOUN'), ('and', 'CCONJ'), ('over', 'ADP'), ('fatigues', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('of', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('she', 'PRON'), ('could', 'AUX'), ('decently', 'ADV'), ('attribute', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('sisters', 'NOUN'), ('behaviour', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('heard', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('earnest', 'ADJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('seeming', 'VERB'), ('to', 'PART'), ('recollect', 'VERB'), ('himself', 'PRON'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('began', 'VERB'), ('directly', 'ADV'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('pleasure', 'NOUN'), ('at', 'ADP'), ('seeing', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('London', 'PROPN'), ('making', 'VERB'), ('the', 'DET'), ('usual', 'ADJ'), ('inquiries', 'NOUN'), ('about', 'ADP'), ('their', 'PRON'), ('journey', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('friends', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('behind', 'ADV'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('this', 'DET'), ('calm', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('way', 'NOUN'), ('with', 'ADP'), ('very', 'ADV'), ('little', 'ADJ'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('either', 'DET'), ('side', 'NOUN'), ('they', 'PRON'), ('continued', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('both', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('spirits', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('thoughts', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('engaged', 'VERB'), ('elsewhere', 'ADV'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('wished', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('ask', 'VERB'), ('whether', 'SCONJ'), ('Willoughby', 'PROPN'), ('were', 'AUX'), ('\n', 'SPACE'), ('then', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('but', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('of', 'ADP'), ('giving', 'VERB'), ('him', 'PRON'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('any', 'DET'), ('enquiry', 'NOUN'), ('after', 'ADP'), ('his', 'PRON'), ('rival', 'NOUN'), ('and', 'CCONJ'), ('at', 'ADP'), ('length', 'NOUN'), ('by', 'ADP'), ('way', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('saying', 'VERB'), ('something', 'PRON'), ('she', 'PRON'), ('asked', 'VERB'), ('if', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('London', 'PROPN'), ('\n', 'SPACE'), ('ever', 'ADV'), ('since', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('him', 'PRON'), ('last', 'ADJ'), (' ', 'SPACE'), ('Yes', 'INTJ'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('some', 'DET'), ('embarrassment', 'NOUN'), ('almost', 'ADV'), ('ever', 'ADV'), ('since', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('once', 'ADV'), ('or', 'CCONJ'), ('twice', 'ADV'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('never', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('return', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('manner', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('brought', 'VERB'), ('back', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('remembrance', 'NOUN'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('circumstances', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('quitting', 'VERB'), ('that', 'DET'), ('place', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('uneasiness', 'NOUN'), ('and', 'CCONJ'), ('suspicions', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('caused', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('fearful', 'ADJ'), ('that', 'SCONJ'), ('her', 'PRON'), ('question', 'NOUN'), ('had', 'AUX'), ('implied', 'VERB'), ('\n', 'SPACE'), ('much', 'ADV'), ('more', 'ADJ'), ('curiosity', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('felt', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('soon', 'ADV'), ('came', 'VERB'), ('in', 'ADP'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('Colonel', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('noisy', 'ADJ'), ('cheerfulness', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('monstrous', 'ADJ'), ('glad', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('yousorry', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('beforebeg', 'VERB'), ('your', 'PRON'), ('\n', 'SPACE'), ('pardon', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('look', 'VERB'), ('about', 'ADP'), ('me', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('settle', 'VERB'), ('my', 'PRON'), ('matters', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('long', 'ADJ'), ('while', 'NOUN'), ('since', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('at', 'ADP'), ('home', 'NOUN'), ('and', 'CCONJ'), ('you', 'PRON'), ('know', 'VERB'), ('one', 'PRON'), ('has', 'VERB'), ('always', 'ADV'), ('a', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('little', 'ADJ'), ('odd', 'ADJ'), ('things', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('after', 'ADP'), ('one', 'NUM'), ('has', 'AUX'), ('been', 'AUX'), ('away', 'ADV'), ('for', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('time', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('Cartwright', 'NOUN'), ('to', 'PART'), ('settle', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('as', 'ADV'), ('busy', 'ADJ'), ('as', 'ADP'), ('a', 'DET'), ('bee', 'NOUN'), ('ever', 'ADV'), ('since', 'SCONJ'), ('dinner', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('pray', 'VERB'), ('Colonel', 'PROPN'), ('how', 'SCONJ'), ('came', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('conjure', 'VERB'), ('out', 'ADP'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('today', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('hearing', 'VERB'), ('it', 'PRON'), ('at', 'ADP'), ('Mr', 'PROPN'), ('Palmers', 'PROPN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('dining', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('you', 'PRON'), ('did', 'VERB'), ('well', 'ADV'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('do', 'AUX'), ('they', 'PRON'), ('all', 'PRON'), ('do', 'VERB'), ('at', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('house', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('does', 'AUX'), ('Charlotte', 'PROPN'), ('do', 'AUX'), (' ', 'SPACE'), ('I', 'PRON'), ('warrant', 'VERB'), ('you', 'PRON'), ('she', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('fine', 'ADJ'), ('\n', 'SPACE'), ('size', 'NOUN'), ('by', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('appeared', 'VERB'), ('quite', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('commissioned', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('certainly', 'ADV'), ('see', 'VERB'), ('her', 'PRON'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('thought', 'VERB'), ('as', 'ADV'), ('much', 'ADJ'), (' ', 'SPACE'), ('Well', 'INTJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('two', 'NUM'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('you', 'PRON'), ('seethat', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('see', 'VERB'), ('but', 'CCONJ'), ('one', 'NUM'), ('of', 'ADP'), ('them', 'PRON'), ('now', 'ADV'), ('but', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('another', 'DET'), ('somewhere', 'ADV'), ('\n', 'SPACE'), ('Your', 'PRON'), ('friend', 'NOUN'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('toowhich', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('sorry', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('will', 'AUX'), ('do', 'VERB'), ('between', 'ADP'), ('you', 'PRON'), ('about', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Ay', 'INTJ'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('fine', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('young', 'ADJ'), ('and', 'CCONJ'), ('handsome', 'ADJ'), (' ', 'SPACE'), ('Well', 'INTJ'), ('I', 'PRON'), ('was', 'AUX'), ('young', 'ADJ'), ('once', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('never', 'ADV'), ('was', 'AUX'), ('very', 'ADV'), ('handsomeworse', 'ADJ'), ('luck', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('However', 'ADV'), ('I', 'PRON'), ('got', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('husband', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('the', 'DET'), ('greatest', 'ADJ'), ('\n', 'SPACE'), ('beauty', 'NOUN'), ('can', 'AUX'), ('do', 'VERB'), ('more', 'ADJ'), (' ', 'SPACE'), ('Ah', 'INTJ'), ('poor', 'ADJ'), ('man', 'NOUN'), ('he', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('dead', 'ADJ'), ('\n', 'SPACE'), ('these', 'DET'), ('eight', 'NUM'), ('years', 'NOUN'), ('and', 'CCONJ'), ('better', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Colonel', 'PROPN'), ('where', 'SCONJ'), ('have', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('been', 'AUX'), ('to', 'ADP'), ('since', 'SCONJ'), ('we', 'PRON'), ('parted', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('does', 'AUX'), ('your', 'PRON'), ('business', 'NOUN'), ('\n', 'SPACE'), ('go', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('Come', 'VERB'), ('come', 'VERB'), ('lets', 'NOUN'), ('have', 'VERB'), ('no', 'DET'), ('secrets', 'NOUN'), ('among', 'ADP'), ('friends', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('accustomary', 'ADJ'), ('mildness', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('her', 'PRON'), ('inquiries', 'NOUN'), ('but', 'CCONJ'), ('without', 'ADP'), ('satisfying', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('now', 'ADV'), ('began', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('the', 'DET'), ('tea', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('obliged', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('her', 'PRON'), ('entrance', 'NOUN'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('became', 'VERB'), ('\n', 'SPACE'), ('more', 'ADV'), ('thoughtful', 'ADJ'), ('and', 'CCONJ'), ('silent', 'ADJ'), ('than', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('before', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('prevail', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('stay', 'VERB'), ('long', 'ADV'), ('\n', 'SPACE'), ('No', 'DET'), ('other', 'ADJ'), ('visitor', 'NOUN'), ('appeared', 'VERB'), ('that', 'DET'), ('evening', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('unanimous', 'ADJ'), ('in', 'ADP'), ('agreeing', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('early', 'ADV'), ('to', 'ADP'), ('bed', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('rose', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('with', 'ADP'), ('recovered', 'VERB'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('happy', 'ADJ'), ('looks', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('disappointment', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('before', 'ADP'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('forgotten', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('happen', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('long', 'ADV'), ('finished', 'VERB'), ('their', 'PRON'), ('breakfast', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('barouche', 'NOUN'), ('stopped', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('\n', 'SPACE'), ('minutes', 'NOUN'), ('she', 'PRON'), ('came', 'AUX'), ('laughing', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('so', 'ADV'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('that', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('hard', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('whether', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('received', 'VERB'), ('most', 'ADJ'), ('pleasure', 'NOUN'), ('from', 'ADP'), ('meeting', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Dashwoods', 'PROPN'), ('again', 'ADV'), (' ', 'SPACE'), ('So', 'ADV'), ('surprised', 'ADJ'), ('at', 'ADP'), ('their', 'PRON'), ('coming', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('rather', 'ADV'), ('expected', 'VERB'), ('all', 'PRON'), ('along', 'ADV'), ('\n', 'SPACE'), ('so', 'ADV'), ('angry', 'ADJ'), ('at', 'ADP'), ('their', 'PRON'), ('accepting', 'VERB'), ('her', 'PRON'), ('mothers', 'NOUN'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('having', 'AUX'), ('declined', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('though', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('have', 'AUX'), ('forgiven', 'VERB'), ('them', 'PRON'), ('if', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('happy', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('What', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('he', 'PRON'), ('said', 'VERB'), ('when', 'SCONJ'), ('he', 'PRON'), ('heard', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('coming', 'VERB'), ('with', 'ADP'), ('Mamma', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('forget', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('something', 'PRON'), ('so', 'ADV'), ('droll', 'NOUN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('spent', 'VERB'), ('in', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('mother', 'NOUN'), ('called', 'VERB'), ('\n', 'SPACE'), ('comfortable', 'ADJ'), ('chat', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('other', 'ADJ'), ('words', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('variety', 'NOUN'), ('of', 'ADP'), ('inquiry', 'NOUN'), ('\n', 'SPACE'), ('concerning', 'VERB'), ('all', 'DET'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('side', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('laughter', 'NOUN'), ('without', 'ADP'), ('cause', 'NOUN'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('proposed', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('all', 'PRON'), ('accompany', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'ADP'), ('some', 'DET'), ('shops', 'NOUN'), ('where', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('business', 'NOUN'), ('that', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('which', 'PRON'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('readily', 'ADV'), ('consented', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('having', 'VERB'), ('likewise', 'ADV'), ('some', 'DET'), ('purchases', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('though', 'SCONJ'), ('declining', 'VERB'), ('it', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('was', 'AUX'), ('induced', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('go', 'VERB'), ('likewise', 'ADV'), ('\n\n', 'SPACE'), ('Wherever', 'SCONJ'), ('they', 'PRON'), ('went', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('evidently', 'ADV'), ('always', 'ADV'), ('on', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('watch', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('Bond', 'PROPN'), ('Street', 'PROPN'), ('especially', 'ADV'), ('where', 'SCONJ'), ('much', 'ADJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('business', 'NOUN'), ('lay', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('in', 'ADP'), ('constant', 'ADJ'), ('inquiry', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('whatever', 'DET'), ('shop', 'NOUN'), ('the', 'DET'), ('party', 'NOUN'), ('were', 'AUX'), ('engaged', 'VERB'), ('her', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('equally', 'ADV'), ('abstracted', 'VERB'), ('from', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('actually', 'ADV'), ('before', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('all', 'DET'), ('that', 'ADV'), ('interested', 'ADJ'), ('and', 'CCONJ'), ('occupied', 'VERB'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('Restless', 'PROPN'), ('and', 'CCONJ'), ('dissatisfied', 'VERB'), ('every', 'PRON'), ('where', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('obtain', 'VERB'), ('her', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('article', 'NOUN'), ('of', 'ADP'), ('purchase', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('it', 'PRON'), ('might', 'AUX'), ('equally', 'ADV'), ('concern', 'VERB'), ('them', 'PRON'), ('both', 'PRON'), ('she', 'PRON'), ('received', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('pleasure', 'NOUN'), ('from', 'ADP'), ('anything', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('impatient', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('home', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('could', 'AUX'), ('with', 'ADP'), ('difficulty', 'NOUN'), ('govern', 'VERB'), ('her', 'PRON'), ('vexation', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('tediousness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('whose', 'DET'), ('eye', 'NOUN'), ('was', 'AUX'), ('caught', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('pretty', 'ADV'), ('expensive', 'ADJ'), ('or', 'CCONJ'), ('new', 'ADJ'), ('who', 'PRON'), ('was', 'AUX'), ('wild', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('buy', 'VERB'), ('all', 'PRON'), ('could', 'AUX'), ('determine', 'VERB'), ('on', 'ADP'), ('none', 'NOUN'), ('and', 'CCONJ'), ('dawdled', 'VERB'), ('away', 'ADV'), ('her', 'PRON'), ('\n', 'SPACE'), ('time', 'NOUN'), ('in', 'ADP'), ('rapture', 'NOUN'), ('and', 'CCONJ'), ('indecision', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('late', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('before', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('home', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('no', 'ADV'), ('sooner', 'ADV'), ('had', 'AUX'), ('they', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('than', 'SCONJ'), ('Marianne', 'PROPN'), ('flew', 'VERB'), ('\n', 'SPACE'), ('eagerly', 'ADV'), ('up', 'ADP'), ('stairs', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Elinor', 'PROPN'), ('followed', 'VERB'), ('she', 'PRON'), ('found', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('turning', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('sorrowful', 'ADJ'), ('countenance', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('declared', 'VERB'), ('that', 'SCONJ'), ('no', 'DET'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('there', 'ADV'), ('\n\n', 'SPACE'), ('Has', 'AUX'), ('no', 'DET'), ('letter', 'NOUN'), ('been', 'AUX'), ('left', 'VERB'), ('here', 'ADV'), ('for', 'ADP'), ('me', 'PRON'), ('since', 'SCONJ'), ('we', 'PRON'), ('went', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('footman', 'NOUN'), ('who', 'PRON'), ('then', 'ADV'), ('entered', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('parcels', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('answered', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('negative', 'ADJ'), (' ', 'SPACE'), ('Are', 'AUX'), ('you', 'PRON'), ('quite', 'ADV'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('she', 'PRON'), ('replied', 'VERB'), (' ', 'SPACE'), ('Are', 'AUX'), ('you', 'PRON'), ('certain', 'ADJ'), ('that', 'SCONJ'), ('no', 'DET'), ('servant', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('porter', 'NOUN'), ('has', 'AUX'), ('left', 'VERB'), ('any', 'DET'), ('letter', 'NOUN'), ('or', 'CCONJ'), ('note', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('man', 'NOUN'), ('replied', 'VERB'), ('that', 'SCONJ'), ('none', 'NOUN'), ('had', 'VERB'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('very', 'ADV'), ('odd', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('and', 'CCONJ'), ('disappointed', 'ADJ'), ('\n', 'SPACE'), ('voice', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('turned', 'VERB'), ('away', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('odd', 'ADJ'), ('indeed', 'ADV'), ('repeated', 'VERB'), ('Elinor', 'PROPN'), ('within', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('regarding', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('with', 'ADP'), ('uneasiness', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('known', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('written', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('did', 'VERB'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('written', 'VERB'), ('to', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('how', 'SCONJ'), ('odd', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('neither', 'CCONJ'), ('\n', 'SPACE'), ('come', 'VERB'), ('nor', 'CCONJ'), ('write', 'VERB'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('mother', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('permitting', 'VERB'), ('an', 'DET'), ('engagement', 'NOUN'), ('between', 'ADP'), ('a', 'DET'), ('daughter', 'NOUN'), ('so', 'ADV'), ('young', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('man', 'NOUN'), ('so', 'ADV'), ('little', 'ADV'), ('known', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('carried', 'VERB'), ('on', 'ADP'), ('in', 'ADP'), ('so', 'ADV'), ('doubtful', 'ADJ'), ('\n', 'SPACE'), ('so', 'ADV'), ('mysterious', 'ADJ'), ('a', 'DET'), ('manner', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('long', 'VERB'), ('to', 'PART'), ('inquire', 'VERB'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('will', 'AUX'), ('MY', 'VERB'), ('\n', 'SPACE'), ('interference', 'NOUN'), ('be', 'AUX'), ('borne', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('determined', 'VERB'), ('after', 'ADP'), ('some', 'DET'), ('consideration', 'NOUN'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('\n', 'SPACE'), ('appearances', 'NOUN'), ('continued', 'VERB'), ('many', 'ADJ'), ('days', 'NOUN'), ('longer', 'ADV'), ('as', 'ADV'), ('unpleasant', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('now', 'ADV'), ('were', 'AUX'), ('she', 'PRON'), ('would', 'AUX'), ('represent', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('strongest', 'ADJ'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('serious', 'ADJ'), ('enquiry', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('affair', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('two', 'NUM'), ('elderly', 'ADJ'), ('ladies', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('intimate', 'ADJ'), ('acquaintance', 'NOUN'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('met', 'VERB'), ('and', 'CCONJ'), ('invited', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('dined', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('former', 'ADJ'), ('left', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('soon', 'ADV'), ('after', 'ADP'), ('tea', 'NOUN'), ('to', 'PART'), ('fulfill', 'VERB'), ('her', 'PRON'), ('evening', 'NOUN'), ('engagements', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('assist', 'VERB'), ('in', 'ADP'), ('making', 'VERB'), ('a', 'DET'), ('whist', 'NOUN'), ('table', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('of', 'ADP'), ('no', 'DET'), ('use', 'NOUN'), ('on', 'ADP'), ('these', 'DET'), ('occasions', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('learn', 'VERB'), ('the', 'DET'), ('game', 'NOUN'), ('but', 'CCONJ'), ('though', 'SCONJ'), ('her', 'PRON'), ('time', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('therefore', 'ADV'), ('at', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('disposal', 'NOUN'), ('the', 'DET'), ('evening', 'NOUN'), ('was', 'AUX'), ('by', 'ADP'), ('no', 'NOUN'), ('\n', 'SPACE'), ('means', 'VERB'), ('more', 'ADV'), ('productive', 'ADJ'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('than', 'ADP'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('spent', 'VERB'), ('in', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('anxiety', 'NOUN'), ('of', 'ADP'), ('expectation', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('pain', 'NOUN'), ('of', 'ADP'), ('disappointment', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('sometimes', 'ADV'), ('endeavoured', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('to', 'PART'), ('read', 'VERB'), ('but', 'CCONJ'), ('the', 'DET'), ('book', 'NOUN'), ('was', 'AUX'), ('soon', 'ADV'), ('thrown', 'VERB'), ('aside', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('more', 'ADV'), ('interesting', 'ADJ'), ('employment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('walking', 'VERB'), ('backwards', 'ADV'), ('and', 'CCONJ'), ('forwards', 'ADV'), ('across', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('pausing', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('whenever', 'SCONJ'), ('she', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('hopes', 'NOUN'), ('of', 'ADP'), ('distinguishing', 'VERB'), ('the', 'DET'), ('longexpected', 'VERB'), ('rap', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('27', 'NUM'), ('\n\n\n', 'SPACE'), ('If', 'SCONJ'), ('this', 'DET'), ('open', 'ADJ'), ('weather', 'NOUN'), ('holds', 'VERB'), ('much', 'ADV'), ('longer', 'ADJ'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('they', 'PRON'), ('met', 'VERB'), ('at', 'ADP'), ('breakfast', 'NOUN'), ('the', 'DET'), ('following', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('will', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('leaving', 'VERB'), ('Barton', 'PROPN'), ('next', 'ADJ'), ('week', 'NOUN'), ('\n', 'SPACE'), ('tis', 'VERB'), ('a', 'DET'), ('sad', 'ADJ'), ('thing', 'NOUN'), ('for', 'SCONJ'), ('sportsmen', 'NOUN'), ('to', 'PART'), ('lose', 'VERB'), ('a', 'DET'), ('days', 'NOUN'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('Poor', 'ADJ'), ('souls', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('always', 'ADV'), ('pity', 'VERB'), ('them', 'PRON'), ('when', 'SCONJ'), ('they', 'PRON'), ('do', 'AUX'), ('they', 'PRON'), ('seem', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('take', 'VERB'), ('it', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('heart', 'VERB'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('true', 'ADJ'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('cheerful', 'ADJ'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('walking', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('to', 'PART'), ('examine', 'VERB'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('thought', 'VERB'), ('of', 'ADP'), ('that', 'PRON'), (' ', 'SPACE'), ('This', 'DET'), ('weather', 'NOUN'), ('will', 'AUX'), ('keep', 'VERB'), ('many', 'ADJ'), ('\n', 'SPACE'), ('sportsmen', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('lucky', 'ADJ'), ('recollection', 'NOUN'), ('all', 'DET'), ('her', 'PRON'), ('good', 'ADJ'), ('spirits', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('restored', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('charming', 'ADJ'), ('weather', 'NOUN'), ('for', 'ADP'), ('THEM', 'PRON'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('continued', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('breakfast', 'NOUN'), ('table', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('happy', 'ADJ'), ('countenance', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('much', 'ADV'), ('they', 'PRON'), ('must', 'AUX'), ('enjoy', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('But', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('return', 'NOUN'), ('of', 'ADP'), ('anxiety', 'NOUN'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('expected', 'VERB'), ('to', 'PART'), ('last', 'VERB'), ('long', 'ADV'), (' ', 'SPACE'), ('At', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('year', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('series', 'NOUN'), ('of', 'ADP'), ('rain', 'NOUN'), ('we', 'PRON'), ('shall', 'AUX'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('have', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('more', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Frosts', 'NOUN'), ('will', 'AUX'), ('soon', 'ADV'), ('set', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('all', 'DET'), ('probability', 'NOUN'), ('with', 'ADP'), ('severity', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('another', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('two', 'NUM'), ('perhaps', 'ADV'), ('this', 'DET'), ('extreme', 'ADJ'), ('mildness', 'NOUN'), ('can', 'AUX'), ('hardly', 'ADV'), ('last', 'VERB'), ('\n', 'SPACE'), ('longernay', 'NOUN'), ('perhaps', 'ADV'), ('it', 'PRON'), ('may', 'AUX'), ('freeze', 'VERB'), ('tonight', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('any', 'DET'), ('rate', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('wishing', 'VERB'), ('to', 'PART'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('from', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('thoughts', 'NOUN'), ('as', 'ADV'), ('clearly', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('have', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('in', 'ADP'), ('town', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('next', 'ADJ'), ('week', 'NOUN'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('Ill', 'PROPN'), ('warrant', 'NOUN'), ('you', 'PRON'), ('we', 'PRON'), ('do', 'AUX'), (' ', 'SPACE'), ('Mary', 'PROPN'), ('always', 'ADV'), ('\n', 'SPACE'), ('has', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('way', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('now', 'ADV'), ('silently', 'ADV'), ('conjectured', 'VERB'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('write', 'VERB'), ('to', 'ADP'), ('Combe', 'PROPN'), ('by', 'ADP'), ('this', 'DET'), ('days', 'NOUN'), ('post', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('DID', 'VERB'), ('the', 'DET'), ('letter', 'NOUN'), ('was', 'AUX'), ('written', 'VERB'), ('and', 'CCONJ'), ('sent', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('privacy', 'NOUN'), ('which', 'PRON'), ('eluded', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('watchfulness', 'NOUN'), ('to', 'PART'), ('ascertain', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('fact', 'NOUN'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('and', 'CCONJ'), ('far', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('from', 'ADP'), ('feeling', 'VERB'), ('thorough', 'ADJ'), ('contentment', 'NOUN'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('yet', 'ADV'), ('while', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('spirits', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('very', 'ADV'), ('uncomfortable', 'ADJ'), ('herself', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('mildness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('and', 'CCONJ'), ('still', 'ADV'), ('happier', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('expectation', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('frost', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('morning', 'NOUN'), ('was', 'AUX'), ('chiefly', 'ADV'), ('spent', 'VERB'), ('in', 'ADP'), ('leaving', 'VERB'), ('cards', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('houses', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('acquaintance', 'NOUN'), ('to', 'PART'), ('inform', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('being', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('all', 'DET'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('busy', 'ADJ'), ('in', 'ADP'), ('observing', 'VERB'), ('the', 'DET'), ('direction', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('wind', 'NOUN'), ('watching', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('variations', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('sky', 'NOUN'), ('and', 'CCONJ'), ('imagining', 'VERB'), ('an', 'DET'), ('alteration', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('air', 'NOUN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('you', 'PRON'), ('find', 'VERB'), ('it', 'PRON'), ('colder', 'ADJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'NOUN'), ('There', 'PRON'), ('seems', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('decided', 'VERB'), ('difference', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('keep', 'VERB'), ('my', 'PRON'), ('hands', 'NOUN'), ('warm', 'ADJ'), ('even', 'ADV'), ('in', 'ADP'), ('my', 'PRON'), ('muff', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('so', 'ADV'), ('yesterday', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('clouds', 'NOUN'), ('seem', 'VERB'), ('parting', 'VERB'), ('too', 'ADV'), ('\n', 'SPACE'), ('the', 'DET'), ('sun', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('out', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('and', 'CCONJ'), ('we', 'PRON'), ('shall', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('\n', 'SPACE'), ('clear', 'ADJ'), ('afternoon', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('alternately', 'ADV'), ('diverted', 'VERB'), ('and', 'CCONJ'), ('pained', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('persevered', 'VERB'), ('and', 'CCONJ'), ('saw', 'VERB'), ('every', 'DET'), ('night', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('brightness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('morning', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('atmosphere', 'NOUN'), ('the', 'DET'), ('certain', 'ADJ'), ('symptoms', 'NOUN'), ('of', 'ADP'), ('approaching', 'VERB'), ('frost', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('greater', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('dissatisfied', 'ADJ'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('style', 'NOUN'), ('of', 'ADP'), ('living', 'NOUN'), ('and', 'CCONJ'), ('set', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('acquaintance', 'NOUN'), ('than', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('invariably', 'ADV'), ('kind', 'ADJ'), (' ', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('household', 'NOUN'), ('\n', 'SPACE'), ('arrangements', 'NOUN'), ('was', 'AUX'), ('conducted', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('liberal', 'ADJ'), ('plan', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('excepting', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('old', 'ADJ'), ('city', 'NOUN'), ('friends', 'NOUN'), ('whom', 'PRON'), ('to', 'ADP'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middletons', 'PROPN'), ('regret', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('dropped', 'VERB'), ('she', 'PRON'), ('visited', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('one', 'NOUN'), ('to', 'PART'), ('whom', 'PRON'), ('an', 'DET'), ('introduction', 'NOUN'), ('could', 'AUX'), ('at', 'ADP'), ('all', 'PRON'), ('discompose', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('young', 'ADJ'), ('companions', 'NOUN'), (' ', 'SPACE'), ('Pleased', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('more', 'ADV'), ('comfortably', 'ADV'), ('situated', 'VERB'), ('in', 'ADP'), ('that', 'PRON'), ('particular', 'ADJ'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('expected', 'VERB'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('willing', 'ADJ'), ('to', 'PART'), ('compound', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('much', 'ADJ'), ('real', 'ADJ'), ('enjoyment', 'NOUN'), ('from', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('evening', 'NOUN'), ('parties', 'NOUN'), ('which', 'PRON'), ('whether', 'SCONJ'), ('at', 'ADP'), ('home', 'NOUN'), ('or', 'CCONJ'), ('abroad', 'ADV'), ('\n', 'SPACE'), ('formed', 'VERB'), ('only', 'ADV'), ('for', 'ADP'), ('cards', 'NOUN'), ('could', 'AUX'), ('have', 'VERB'), ('little', 'ADJ'), ('to', 'PART'), ('amuse', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('who', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('general', 'ADJ'), ('invitation', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('was', 'AUX'), ('with', 'ADP'), ('them', 'PRON'), ('almost', 'ADV'), ('every', 'PRON'), ('day', 'NOUN'), ('he', 'PRON'), ('came', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('look', 'VERB'), ('at', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('talk', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('often', 'ADV'), ('derived', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('satisfaction', 'NOUN'), ('from', 'ADP'), ('conversing', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('than', 'ADP'), ('from', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('daily', 'ADJ'), ('occurrence', 'NOUN'), ('but', 'CCONJ'), ('who', 'PRON'), ('saw', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('much', 'ADJ'), ('concern', 'NOUN'), ('his', 'PRON'), ('continued', 'VERB'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('feared', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('strengthening', 'NOUN'), ('regard', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('grieved', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('earnestness', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('often', 'ADV'), ('watched', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('spirits', 'NOUN'), ('were', 'AUX'), ('certainly', 'ADV'), ('worse', 'ADJ'), ('than', 'ADP'), ('when', 'SCONJ'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('a', 'PRON'), ('week', 'NOUN'), ('after', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('it', 'PRON'), ('became', 'VERB'), ('\n', 'SPACE'), ('certain', 'ADJ'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('also', 'ADV'), ('arrived', 'VERB'), (' ', 'SPACE'), ('His', 'PRON'), ('card', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('came', 'VERB'), ('in', 'ADP'), ('from', 'ADP'), ('the', 'DET'), ('mornings', 'NOUN'), ('drive', 'VERB'), ('\n\n', 'SPACE'), ('Good', 'ADJ'), ('God', 'PROPN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('he', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('here', 'ADV'), ('while', 'SCONJ'), ('\n', 'SPACE'), ('we', 'PRON'), ('were', 'AUX'), ('out', 'ADV'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('rejoiced', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('assured', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('being', 'AUX'), ('in', 'ADP'), ('London', 'PROPN'), ('now', 'ADV'), ('ventured', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('Depend', 'VERB'), ('upon', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('will', 'AUX'), ('call', 'VERB'), ('again', 'ADV'), ('tomorrow', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('hardly', 'ADV'), ('to', 'PART'), ('hear', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('entrance', 'NOUN'), ('\n', 'SPACE'), ('escaped', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('precious', 'ADJ'), ('card', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('event', 'NOUN'), ('while', 'SCONJ'), ('it', 'PRON'), ('raised', 'VERB'), ('the', 'DET'), ('spirits', 'NOUN'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('restored', 'VERB'), ('to', 'ADP'), ('those', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('all', 'PRON'), ('and', 'CCONJ'), ('more', 'ADJ'), ('than', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('their', 'PRON'), ('former', 'ADJ'), ('agitation', 'NOUN'), (' ', 'SPACE'), ('From', 'ADP'), ('this', 'DET'), ('moment', 'NOUN'), ('her', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('quiet', 'ADJ'), ('the', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('him', 'PRON'), ('every', 'DET'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('made', 'VERB'), ('her', 'PRON'), ('unfit', 'ADJ'), ('for', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('insisted', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('being', 'AUX'), ('left', 'VERB'), ('behind', 'ADP'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('when', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('went', 'VERB'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('thoughts', 'NOUN'), ('were', 'AUX'), ('full', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('passing', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('during', 'ADP'), ('their', 'PRON'), ('absence', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('moments', 'NOUN'), ('\n', 'SPACE'), ('glance', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('was', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('inform', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('paid', 'VERB'), ('no', 'DET'), ('second', 'ADJ'), ('visit', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('A', 'DET'), ('note', 'NOUN'), ('was', 'AUX'), ('just', 'ADV'), ('then', 'ADV'), ('brought', 'VERB'), ('in', 'ADP'), ('and', 'CCONJ'), ('laid', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('me', 'PRON'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('stepping', 'VERB'), ('hastily', 'ADV'), ('forward', 'PROPN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maam', 'NOUN'), ('for', 'ADP'), ('my', 'PRON'), ('mistress', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('not', 'PART'), ('convinced', 'VERB'), ('took', 'VERB'), ('it', 'PRON'), ('instantly', 'ADV'), ('up', 'ADP'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('indeed', 'ADV'), ('for', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('how', 'SCONJ'), ('provoking', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('expecting', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('then', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('unable', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('longer', 'ADV'), ('silent', 'ADJ'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('a', 'DET'), ('littlenot', 'ADV'), ('much', 'ADJ'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('pause', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('confidence', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('me', 'PRON'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Nay', 'PROPN'), ('Elinor', 'PROPN'), ('this', 'DET'), ('reproach', 'NOUN'), ('from', 'ADP'), ('YOUyou', 'PROPN'), ('who', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('confidence', 'NOUN'), ('in', 'ADP'), ('no', 'DET'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('Me', 'PRON'), ('returned', 'VERB'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('some', 'DET'), ('confusion', 'NOUN'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('have', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('tell', 'VERB'), ('\n\n', 'SPACE'), ('Nor', 'CCONJ'), ('I', 'PRON'), ('answered', 'VERB'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('energy', 'NOUN'), ('our', 'PRON'), ('situations', 'NOUN'), ('\n', 'SPACE'), ('then', 'ADV'), ('are', 'AUX'), ('alike', 'ADV'), (' ', 'SPACE'), ('We', 'PRON'), ('have', 'VERB'), ('neither', 'PRON'), ('of', 'ADP'), ('us', 'PRON'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('tell', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('because', 'SCONJ'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('communicate', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('because', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('conceal', 'VERB'), ('nothing', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('distressed', 'VERB'), ('by', 'ADP'), ('this', 'DET'), ('charge', 'NOUN'), ('of', 'ADP'), ('reserve', 'NOUN'), ('in', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('which', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('away', 'ADV'), ('knew', 'VERB'), ('not', 'PART'), ('how', 'SCONJ'), ('\n', 'SPACE'), ('under', 'ADP'), ('such', 'ADJ'), ('circumstances', 'NOUN'), ('to', 'PART'), ('press', 'VERB'), ('for', 'ADP'), ('greater', 'ADJ'), ('openness', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('soon', 'ADV'), ('appeared', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('note', 'NOUN'), ('being', 'AUX'), ('\n', 'SPACE'), ('given', 'VERB'), ('her', 'PRON'), ('she', 'PRON'), ('read', 'VERB'), ('it', 'PRON'), ('aloud', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('from', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('announcing', 'VERB'), ('their', 'PRON'), ('arrival', 'NOUN'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), ('the', 'DET'), ('night', 'NOUN'), ('before', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('requesting', 'VERB'), ('the', 'DET'), ('company', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('cousins', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('following', 'VERB'), ('evening', 'NOUN'), (' ', 'SPACE'), ('Business', 'PROPN'), ('on', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('part', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('violent', 'ADJ'), ('cold', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('prevented', 'VERB'), ('their', 'PRON'), ('calling', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('invitation', 'NOUN'), ('was', 'AUX'), ('accepted', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('the', 'DET'), ('hour', 'NOUN'), ('of', 'ADP'), ('appointment', 'NOUN'), ('drew', 'VERB'), ('near', 'ADV'), ('necessary', 'ADJ'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('common', 'ADJ'), ('civility', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('that', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('both', 'PRON'), ('attend', 'VERB'), ('her', 'PRON'), ('on', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('visit', 'NOUN'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('some', 'DET'), ('\n', 'SPACE'), ('difficulty', 'NOUN'), ('in', 'ADP'), ('persuading', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('to', 'PART'), ('go', 'VERB'), ('for', 'ADP'), ('still', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('more', 'ADV'), ('indisposed', 'ADJ'), ('for', 'ADP'), ('amusement', 'NOUN'), ('abroad', 'ADV'), ('than', 'ADP'), ('unwilling', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('run', 'VERB'), ('the', 'DET'), ('risk', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('calling', 'VERB'), ('again', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('absence', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('when', 'SCONJ'), ('the', 'DET'), ('evening', 'NOUN'), ('was', 'AUX'), ('over', 'ADP'), ('\n', 'SPACE'), ('that', 'DET'), ('disposition', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('materially', 'ADV'), ('altered', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('change', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('abode', 'NOUN'), ('for', 'ADP'), ('although', 'SCONJ'), ('scarcely', 'ADV'), ('settled', 'VERB'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('had', 'AUX'), ('contrived', 'VERB'), ('to', 'PART'), ('collect', 'VERB'), ('around', 'ADP'), ('him', 'PRON'), ('nearly', 'ADV'), ('twenty', 'ADJ'), ('\n', 'SPACE'), ('young', 'ADJ'), ('people', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('amuse', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('ball', 'NOUN'), (' ', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('an', 'DET'), ('affair', 'NOUN'), ('however', 'ADV'), ('of', 'ADP'), ('which', 'PRON'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('approve', 'VERB'), ('\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('an', 'DET'), ('unpremeditated', 'ADJ'), ('dance', 'NOUN'), ('was', 'AUX'), ('very', 'ADV'), ('allowable', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('in', 'ADP'), ('London', 'PROPN'), ('where', 'SCONJ'), ('the', 'DET'), ('reputation', 'NOUN'), ('of', 'ADP'), ('elegance', 'NOUN'), ('was', 'AUX'), ('more', 'ADV'), ('\n', 'SPACE'), ('important', 'ADJ'), ('and', 'CCONJ'), ('less', 'ADV'), ('easily', 'ADV'), ('attained', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('risking', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('gratification', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('girls', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('it', 'PRON'), ('known', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('had', 'AUX'), ('given', 'VERB'), ('a', 'DET'), ('small', 'ADJ'), ('dance', 'NOUN'), ('of', 'ADP'), ('eight', 'NUM'), ('or', 'CCONJ'), ('nine', 'NUM'), ('couple', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('two', 'NUM'), ('violins', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('mere', 'ADJ'), ('sideboard', 'PROPN'), ('collation', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('were', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('\n', 'SPACE'), ('whom', 'PRON'), ('they', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('seen', 'VERB'), ('before', 'ADV'), ('since', 'SCONJ'), ('their', 'PRON'), ('arrival', 'NOUN'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('careful', 'ADJ'), ('to', 'PART'), ('avoid', 'VERB'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('motherinlaw', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('never', 'ADV'), ('came', 'VERB'), ('near', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('received', 'VERB'), ('no', 'DET'), ('mark', 'NOUN'), ('of', 'ADP'), ('recognition', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('entrance', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('looked', 'VERB'), ('at', 'ADP'), ('them', 'PRON'), ('slightly', 'ADV'), ('without', 'ADP'), ('seeming', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('who', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('and', 'CCONJ'), ('merely', 'ADV'), ('nodded', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('side', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('gave', 'VERB'), ('one', 'NUM'), ('glance', 'NOUN'), ('\n', 'SPACE'), ('round', 'VERB'), ('the', 'DET'), ('apartment', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('entered', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('enoughHE', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('thereand', 'NOUN'), ('she', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('equally', 'ADV'), ('illdisposed', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('receive', 'VERB'), ('or', 'CCONJ'), ('communicate', 'VERB'), ('pleasure', 'NOUN'), (' ', 'SPACE'), ('After', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('assembled', 'VERB'), ('about', 'ADV'), ('an', 'PRON'), ('hour', 'NOUN'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('sauntered', 'VERB'), ('towards', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('to', 'PART'), ('express', 'VERB'), ('his', 'PRON'), ('surprise', 'NOUN'), ('on', 'ADP'), ('seeing', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('though', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('first', 'ADV'), ('informed', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('at', 'ADP'), ('his', 'PRON'), ('house', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('himself', 'PRON'), ('said', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('very', 'ADV'), ('droll', 'NOUN'), ('on', 'ADP'), ('hearing', 'VERB'), ('that', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('you', 'PRON'), ('were', 'AUX'), ('both', 'PRON'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('go', 'VERB'), ('back', 'ADV'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('And', 'CCONJ'), ('thus', 'ADV'), ('ended', 'VERB'), ('their', 'PRON'), ('discourse', 'NOUN'), ('\n\n', 'SPACE'), ('Never', 'ADV'), ('had', 'AUX'), ('Marianne', 'PROPN'), ('been', 'AUX'), ('so', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('dance', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('that', 'DET'), ('evening', 'NOUN'), ('and', 'CCONJ'), ('never', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('fatigued', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('exercise', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('complained', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n\n', 'SPACE'), ('Aye', 'PROPN'), ('aye', 'NOUN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('we', 'PRON'), ('know', 'VERB'), ('the', 'DET'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('that', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('if', 'SCONJ'), ('a', 'DET'), ('certain', 'ADJ'), ('person', 'NOUN'), ('who', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('nameless', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('there', 'ADV'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('\n', 'SPACE'), ('bit', 'NOUN'), ('tired', 'ADJ'), ('and', 'CCONJ'), ('to', 'PART'), ('say', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('him', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('give', 'VERB'), ('you', 'PRON'), ('the', 'DET'), ('meeting', 'NOUN'), ('when', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('invited', 'VERB'), ('\n\n', 'SPACE'), ('Invited', 'VERB'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('So', 'ADV'), ('my', 'PRON'), ('daughter', 'NOUN'), ('Middleton', 'PROPN'), ('told', 'VERB'), ('me', 'PRON'), ('for', 'ADP'), ('it', 'PRON'), ('seems', 'VERB'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('met', 'VERB'), ('him', 'PRON'), ('somewhere', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('street', 'NOUN'), ('this', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('but', 'CCONJ'), ('looked', 'VERB'), ('exceedingly', 'ADV'), ('hurt', 'VERB'), ('\n', 'SPACE'), ('Impatient', 'PROPN'), ('in', 'ADP'), ('this', 'DET'), ('situation', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('doing', 'VERB'), ('something', 'PRON'), ('\n', 'SPACE'), ('that', 'PRON'), ('might', 'AUX'), ('lead', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('relief', 'NOUN'), ('Elinor', 'PROPN'), ('resolved', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('write', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('hoped', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('awakening', 'VERB'), ('her', 'PRON'), ('fears', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('health', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('procure', 'VERB'), ('those', 'DET'), ('inquiries', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('long', 'ADV'), ('delayed', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('still', 'ADV'), ('more', 'ADV'), ('eagerly', 'ADV'), ('bent', 'ADJ'), ('on', 'ADP'), ('this', 'DET'), ('measure', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('perceiving', 'VERB'), ('after', 'ADP'), ('breakfast', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('morrow', 'NOUN'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('again', 'ADV'), ('writing', 'VERB'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('for', 'ADP'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('to', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('person', 'NOUN'), ('\n\n', 'SPACE'), ('About', 'ADP'), ('the', 'DET'), ('middle', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('went', 'VERB'), ('out', 'ADP'), ('by', 'ADP'), ('\n', 'SPACE'), ('herself', 'PRON'), ('on', 'ADP'), ('business', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('began', 'VERB'), ('her', 'PRON'), ('letter', 'NOUN'), ('directly', 'ADV'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Marianne', 'PROPN'), ('too', 'ADV'), ('restless', 'ADJ'), ('for', 'ADP'), ('employment', 'NOUN'), ('too', 'ADV'), ('anxious', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('conversation', 'NOUN'), ('walked', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('window', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('sat', 'VERB'), ('down', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('in', 'ADP'), ('melancholy', 'ADJ'), ('meditation', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('earnest', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('application', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('relating', 'VERB'), ('all', 'PRON'), ('that', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('her', 'PRON'), ('suspicions', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Willoughbys', 'PROPN'), ('inconstancy', 'NOUN'), ('urging', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('every', 'DET'), ('plea', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('duty', 'NOUN'), ('and', 'CCONJ'), ('affection', 'NOUN'), ('to', 'PART'), ('demand', 'VERB'), ('from', 'ADP'), ('Marianne', 'PROPN'), ('an', 'DET'), ('account', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('real', 'ADJ'), ('situation', 'NOUN'), ('with', 'ADP'), ('respect', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('letter', 'NOUN'), ('was', 'AUX'), ('scarcely', 'ADV'), ('finished', 'VERB'), ('when', 'SCONJ'), ('a', 'DET'), ('rap', 'NOUN'), ('\n', 'SPACE'), ('foretold', 'VERB'), ('a', 'DET'), ('visitor', 'NOUN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('announced', 'VERB'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('him', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('hated', 'VERB'), ('\n', 'SPACE'), ('company', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('kind', 'NOUN'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('before', 'SCONJ'), ('he', 'PRON'), ('entered', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('looked', 'VERB'), ('more', 'ADJ'), ('than', 'SCONJ'), ('usually', 'ADV'), ('grave', 'ADJ'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('expressing', 'VERB'), ('\n', 'SPACE'), ('satisfaction', 'NOUN'), ('at', 'ADP'), ('finding', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('alone', 'ADV'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('somewhat', 'ADV'), ('in', 'ADP'), ('particular', 'ADJ'), ('to', 'PART'), ('tell', 'VERB'), ('her', 'PRON'), ('sat', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('time', 'NOUN'), ('without', 'ADP'), ('saying', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('persuaded', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('some', 'DET'), ('communication', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('in', 'ADP'), ('which', 'PRON'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('concerned', 'VERB'), ('impatiently', 'ADV'), ('expected', 'VERB'), ('its', 'PRON'), ('opening', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('first', 'ADJ'), ('time', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('feeling', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('conviction', 'NOUN'), ('for', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('once', 'ADV'), ('before', 'ADP'), ('beginning', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('observation', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('looks', 'VERB'), ('unwell', 'ADJ'), ('today', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('seems', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('spirits', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('either', 'CCONJ'), ('of', 'ADP'), ('disclosing', 'NOUN'), ('or', 'CCONJ'), ('of', 'ADP'), ('inquiring', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('particular', 'ADJ'), ('about', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('pause', 'NOUN'), ('of', 'ADP'), ('several', 'ADJ'), ('\n', 'SPACE'), ('minutes', 'NOUN'), ('their', 'PRON'), ('silence', 'NOUN'), ('was', 'AUX'), ('broken', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('asking', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('agitation', 'NOUN'), ('when', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('congratulate', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('acquisition', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('brother', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('prepared', 'VERB'), ('for', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('question', 'NOUN'), ('and', 'CCONJ'), ('having', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('ready', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('adopt', 'VERB'), ('the', 'DET'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('common', 'ADJ'), ('expedient', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('asking', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('meant', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('tried', 'VERB'), ('to', 'PART'), ('smile', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('sisters', 'NOUN'), ('engagement', 'ADJ'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('is', 'AUX'), ('very', 'ADV'), ('generally', 'ADV'), ('\n', 'SPACE'), ('known', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('generally', 'ADV'), ('known', 'VERB'), ('returned', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('family', 'NOUN'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('looked', 'VERB'), ('surprised', 'ADJ'), ('and', 'CCONJ'), ('said', 'VERB'), ('I', 'PRON'), ('beg', 'VERB'), ('your', 'PRON'), ('pardon', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('my', 'PRON'), ('inquiry', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('impertinent', 'ADJ'), ('but', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('supposed', 'VERB'), ('any', 'DET'), ('secrecy', 'NOUN'), ('intended', 'VERB'), ('as', 'SCONJ'), ('they', 'PRON'), ('openly', 'ADV'), ('correspond', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('their', 'PRON'), ('marriage', 'NOUN'), ('is', 'AUX'), ('universally', 'ADV'), ('talked', 'VERB'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('that', 'PRON'), ('be', 'AUX'), ('By', 'ADP'), ('whom', 'PRON'), ('can', 'AUX'), ('you', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('mentioned', 'VERB'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('manyby', 'ADV'), ('some', 'PRON'), ('of', 'ADP'), ('whom', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('nothing', 'PRON'), ('by', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('whom', 'PRON'), ('you', 'PRON'), ('are', 'AUX'), ('most', 'ADV'), ('intimate', 'ADJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('Middletons', 'PROPN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('still', 'ADV'), ('I', 'PRON'), ('might', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('believed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('where', 'SCONJ'), ('the', 'DET'), ('mind', 'NOUN'), ('is', 'AUX'), ('perhaps', 'ADV'), ('rather', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('convinced', 'VERB'), ('it', 'PRON'), ('will', 'AUX'), ('always', 'ADV'), ('find', 'VERB'), ('something', 'PRON'), ('to', 'PART'), ('support', 'VERB'), ('\n', 'SPACE'), ('its', 'PRON'), ('doubts', 'NOUN'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('when', 'SCONJ'), ('the', 'DET'), ('servant', 'NOUN'), ('let', 'VERB'), ('me', 'PRON'), ('in', 'ADP'), ('today', 'NOUN'), ('\n', 'SPACE'), ('accidentally', 'ADV'), ('seen', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('hand', 'NOUN'), ('directed', 'VERB'), ('to', 'ADP'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('in', 'ADP'), ('your', 'PRON'), ('sisters', 'NOUN'), ('writing', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('came', 'VERB'), ('to', 'PART'), ('inquire', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('convinced', 'VERB'), ('before', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('ask', 'VERB'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('Is', 'AUX'), ('every', 'DET'), ('thing', 'NOUN'), ('finally', 'ADV'), ('settled', 'VERB'), (' ', 'SPACE'), ('Is', 'AUX'), ('it', 'PRON'), ('impossible', 'ADJ'), ('to', 'ADP'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('right', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('succeeding', 'VERB'), ('\n', 'SPACE'), ('Excuse', 'VERB'), ('me', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('saying', 'VERB'), ('so', 'ADV'), ('much', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('hardly', 'ADV'), ('know', 'VERB'), ('what', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('and', 'CCONJ'), ('on', 'ADP'), ('\n', 'SPACE'), ('your', 'PRON'), ('prudence', 'NOUN'), ('I', 'PRON'), ('have', 'VERB'), ('the', 'DET'), ('strongest', 'ADJ'), ('dependence', 'NOUN'), (' ', 'SPACE'), ('Tell', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('all', 'PRON'), ('absolutely', 'ADV'), ('resolved', 'VERB'), ('on', 'ADP'), ('that', 'PRON'), ('any', 'DET'), ('attempt', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('in', 'ADP'), ('short', 'ADJ'), ('concealment', 'NOUN'), ('if', 'SCONJ'), ('concealment', 'NOUN'), ('be', 'AUX'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('is', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('remains', 'VERB'), ('\n\n', 'SPACE'), ('These', 'DET'), ('words', 'NOUN'), ('which', 'PRON'), ('conveyed', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('a', 'DET'), ('direct', 'ADJ'), ('avowal', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('love', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('affected', 'VERB'), ('her', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('immediately', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('anything', 'PRON'), ('and', 'CCONJ'), ('even', 'ADV'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('her', 'PRON'), ('spirits', 'NOUN'), ('were', 'AUX'), ('recovered', 'VERB'), ('she', 'PRON'), ('debated', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('\n', 'SPACE'), ('time', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('answer', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('most', 'ADV'), ('proper', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('real', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('things', 'NOUN'), ('between', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('so', 'ADV'), ('little', 'ADJ'), ('known', 'ADJ'), ('to', 'ADP'), ('herself', 'PRON'), ('that', 'SCONJ'), ('in', 'ADP'), ('endeavouring', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('explain', 'VERB'), ('it', 'PRON'), ('she', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('as', 'ADV'), ('liable', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADV'), ('too', 'ADV'), ('little', 'ADJ'), (' ', 'SPACE'), ('Yet', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('Willoughby', 'PROPN'), ('could', 'AUX'), ('leave', 'VERB'), ('no', 'DET'), ('hope', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandons', 'PROPN'), ('success', 'NOUN'), ('whatever', 'PRON'), ('the', 'DET'), ('event', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('and', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('wished', 'VERB'), ('to', 'PART'), ('shield', 'VERB'), ('her', 'PRON'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('censure', 'NOUN'), ('she', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('most', 'ADV'), ('prudent', 'ADJ'), ('and', 'CCONJ'), ('kind', 'ADJ'), ('\n', 'SPACE'), ('after', 'SCONJ'), ('some', 'DET'), ('consideration', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('more', 'ADJ'), ('than', 'SCONJ'), ('she', 'PRON'), ('really', 'ADV'), ('knew', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('believed', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('acknowledged', 'VERB'), ('therefore', 'ADV'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('informed', 'VERB'), ('by', 'ADP'), ('themselves', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('terms', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('which', 'PRON'), ('they', 'PRON'), ('stood', 'VERB'), ('with', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('mutual', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('their', 'PRON'), ('correspondence', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('astonished', 'VERB'), ('to', 'PART'), ('hear', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('listened', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('with', 'ADP'), ('silent', 'ADJ'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('on', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('ceasing', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('rose', 'VERB'), ('directly', 'ADV'), ('from', 'ADP'), ('his', 'PRON'), ('seat', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('after', 'ADP'), ('saying', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('emotion', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('all', 'DET'), ('imaginable', 'ADJ'), ('happiness', 'NOUN'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('endeavour', 'VERB'), ('to', 'PART'), ('deserve', 'VERB'), ('hertook', 'NOUN'), ('leave', 'NOUN'), ('and', 'CCONJ'), ('went', 'VERB'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('derived', 'VERB'), ('no', 'DET'), ('comfortable', 'ADJ'), ('feelings', 'NOUN'), ('from', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('conversation', 'NOUN'), ('to', 'PART'), ('lessen', 'VERB'), ('the', 'DET'), ('uneasiness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('other', 'ADJ'), ('points', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('left', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('melancholy', 'ADJ'), ('impression', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('unhappiness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('prevented', 'VERB'), ('even', 'ADV'), ('from', 'ADP'), ('wishing', 'VERB'), ('it', 'PRON'), ('removed', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('her', 'PRON'), ('anxiety', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('very', 'ADJ'), ('event', 'NOUN'), ('that', 'PRON'), ('must', 'AUX'), ('confirm', 'VERB'), ('it', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('28', 'NUM'), ('\n\n\n', 'SPACE'), ('Nothing', 'PRON'), ('occurred', 'VERB'), ('during', 'ADP'), ('the', 'DET'), ('next', 'ADJ'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('days', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('Elinor', 'PROPN'), ('regret', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('in', 'ADP'), ('applying', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('for', 'ADP'), ('Willoughby', 'PROPN'), ('neither', 'CCONJ'), ('came', 'VERB'), ('nor', 'CCONJ'), ('wrote', 'VERB'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('engaged', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('to', 'PART'), ('attend', 'VERB'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('to', 'ADP'), ('a', 'DET'), ('party', 'NOUN'), ('from', 'ADP'), ('which', 'PRON'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('kept', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('indisposition', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('youngest', 'ADJ'), ('daughter', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('for', 'ADP'), ('this', 'DET'), ('party', 'NOUN'), ('Marianne', 'PROPN'), ('wholly', 'ADV'), ('dispirited', 'VERB'), ('\n', 'SPACE'), ('careless', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('appearance', 'NOUN'), ('and', 'CCONJ'), ('seeming', 'VERB'), ('equally', 'ADV'), ('indifferent', 'ADJ'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('or', 'CCONJ'), ('staid', 'VERB'), ('prepared', 'ADJ'), ('without', 'ADP'), ('one', 'NUM'), ('look', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('hope', 'NOUN'), ('or', 'CCONJ'), ('one', 'NUM'), ('expression', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('sat', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('drawingroom', 'NOUN'), ('fire', 'NOUN'), ('after', 'ADP'), ('tea', 'NOUN'), ('till', 'SCONJ'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middletons', 'PROPN'), ('arrival', 'NOUN'), ('without', 'ADP'), ('once', 'ADV'), ('stirring', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('seat', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('altering', 'VERB'), ('her', 'PRON'), ('attitude', 'NOUN'), ('lost', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('thoughts', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('insensible', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('presence', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('last', 'ADJ'), ('they', 'PRON'), ('were', 'AUX'), ('told', 'VERB'), ('that', 'SCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('waited', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('she', 'PRON'), ('started', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('forgotten', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('any', 'DET'), ('one', 'NOUN'), ('was', 'AUX'), ('expected', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('arrived', 'VERB'), ('in', 'ADP'), ('due', 'ADJ'), ('time', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('place', 'NOUN'), ('of', 'ADP'), ('destination', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'ADP'), ('the', 'DET'), ('string', 'NOUN'), ('of', 'ADP'), ('carriages', 'NOUN'), ('before', 'SCONJ'), ('them', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('allow', 'VERB'), ('alighted', 'ADJ'), ('ascended', 'VERB'), ('the', 'DET'), ('stairs', 'NOUN'), ('heard', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('names', 'NOUN'), ('announced', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('landingplace', 'NOUN'), ('to', 'ADP'), ('another', 'PRON'), ('in', 'ADP'), ('an', 'DET'), ('\n', 'SPACE'), ('audible', 'ADJ'), ('voice', 'NOUN'), ('and', 'CCONJ'), ('entered', 'VERB'), ('a', 'DET'), ('room', 'NOUN'), ('splendidly', 'ADV'), ('lit', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('quite', 'ADV'), ('full', 'ADJ'), ('of', 'ADP'), ('company', 'NOUN'), ('and', 'CCONJ'), ('insufferably', 'ADV'), ('hot', 'ADJ'), (' ', 'SPACE'), ('When', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('paid', 'VERB'), ('their', 'PRON'), ('tribute', 'NOUN'), ('of', 'ADP'), ('politeness', 'NOUN'), ('by', 'ADP'), ('curtsying', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('permitted', 'VERB'), ('to', 'PART'), ('mingle', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('crowd', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('take', 'VERB'), ('their', 'PRON'), ('share', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('heat', 'NOUN'), ('and', 'CCONJ'), ('inconvenience', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('their', 'PRON'), ('arrival', 'NOUN'), ('must', 'AUX'), ('necessarily', 'ADV'), ('add', 'VERB'), (' ', 'SPACE'), ('After', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('spent', 'VERB'), ('in', 'ADP'), ('saying', 'VERB'), ('little', 'ADJ'), ('or', 'CCONJ'), ('doing', 'VERB'), ('less', 'ADJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('sat', 'VERB'), ('\n', 'SPACE'), ('down', 'ADP'), ('to', 'ADP'), ('Cassino', 'PROPN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('spirits', 'NOUN'), ('for', 'ADP'), ('\n', 'SPACE'), ('moving', 'VERB'), ('about', 'ADP'), ('she', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('luckily', 'ADV'), ('succeeding', 'VERB'), ('to', 'ADP'), ('chairs', 'NOUN'), ('\n', 'SPACE'), ('placed', 'VERB'), ('themselves', 'PRON'), ('at', 'ADP'), ('no', 'DET'), ('great', 'ADJ'), ('distance', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('remained', 'VERB'), ('in', 'ADP'), ('this', 'DET'), ('manner', 'NOUN'), ('long', 'ADV'), ('before', 'SCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('perceived', 'VERB'), ('Willoughby', 'PROPN'), ('standing', 'VERB'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('yards', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('earnest', 'ADJ'), ('conversation', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('fashionable', 'ADJ'), ('\n', 'SPACE'), ('looking', 'VERB'), ('young', 'ADJ'), ('woman', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('soon', 'ADV'), ('caught', 'VERB'), ('his', 'PRON'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('bowed', 'VERB'), ('but', 'CCONJ'), ('without', 'ADP'), ('attempting', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('to', 'PART'), ('approach', 'VERB'), ('Marianne', 'PROPN'), ('though', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('but', 'CCONJ'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('continued', 'VERB'), ('his', 'PRON'), ('discourse', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('turned', 'VERB'), ('involuntarily', 'ADV'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('to', 'PART'), ('see', 'VERB'), ('whether', 'SCONJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('unobserved', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('At', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('she', 'PRON'), ('first', 'ADV'), ('\n', 'SPACE'), ('perceived', 'VERB'), ('him', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('whole', 'ADJ'), ('countenance', 'NOUN'), ('glowing', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('sudden', 'ADJ'), ('delight', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('moved', 'VERB'), ('towards', 'ADP'), ('him', 'PRON'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('her', 'PRON'), ('sister', 'NOUN'), ('caught', 'VERB'), ('hold', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Good', 'ADJ'), ('heavens', 'NOUN'), ('she', 'PRON'), ('exclaimed', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('therehe', 'ADJ'), ('\n', 'SPACE'), ('is', 'AUX'), ('thereOh', 'PROPN'), ('why', 'SCONJ'), ('does', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('look', 'VERB'), ('at', 'ADP'), ('me', 'PRON'), ('why', 'SCONJ'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('I', 'PRON'), ('speak', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Pray', 'VERB'), ('pray', 'NOUN'), ('be', 'AUX'), ('composed', 'VERB'), ('cried', 'VERB'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('do', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('betray', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('feel', 'VERB'), ('to', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('present', 'ADJ'), ('\n', 'SPACE'), ('Perhaps', 'ADV'), ('he', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('observed', 'VERB'), ('you', 'PRON'), ('yet', 'ADV'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('however', 'ADV'), ('was', 'AUX'), ('more', 'ADJ'), ('than', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('believe', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('composed', 'VERB'), ('at', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('moment', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('reach', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('beyond', 'ADP'), ('her', 'PRON'), ('wish', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('sat', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('an', 'DET'), ('agony', 'NOUN'), ('of', 'ADP'), ('impatience', 'NOUN'), ('which', 'PRON'), ('affected', 'VERB'), ('every', 'DET'), ('feature', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('last', 'ADJ'), ('he', 'PRON'), ('turned', 'VERB'), ('round', 'ADV'), ('again', 'ADV'), ('and', 'CCONJ'), ('regarded', 'VERB'), ('them', 'PRON'), ('both', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('started', 'VERB'), ('up', 'ADP'), ('and', 'CCONJ'), ('pronouncing', 'VERB'), ('his', 'PRON'), ('name', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('tone', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('affection', 'NOUN'), ('held', 'VERB'), ('out', 'ADP'), ('her', 'PRON'), ('hand', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('approached', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('addressing', 'VERB'), ('himself', 'PRON'), ('rather', 'ADV'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('than', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('wishing', 'VERB'), ('to', 'PART'), ('avoid', 'VERB'), ('her', 'PRON'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('determined', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('observe', 'VERB'), ('her', 'PRON'), ('attitude', 'NOUN'), ('inquired', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('hurried', 'ADJ'), ('manner', 'NOUN'), ('after', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('asked', 'VERB'), ('how', 'SCONJ'), ('long', 'ADV'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('robbed', 'VERB'), ('of', 'ADP'), ('all', 'DET'), ('presence', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('by', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('address', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('instantly', 'ADV'), ('expressed', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('face', 'NOUN'), ('was', 'AUX'), ('crimsoned', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('exclaimed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('emotion', 'NOUN'), ('\n', 'SPACE'), ('Good', 'ADJ'), ('God', 'PROPN'), ('Willoughby', 'PROPN'), ('what', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('meaning', 'NOUN'), ('of', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('received', 'VERB'), ('my', 'PRON'), ('letters', 'NOUN'), (' ', 'SPACE'), ('Will', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('shake', 'VERB'), ('\n', 'SPACE'), ('hands', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('then', 'ADV'), ('avoid', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('her', 'PRON'), ('touch', 'NOUN'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('painful', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('he', 'PRON'), ('held', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('only', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('During', 'ADP'), ('all', 'DET'), ('this', 'DET'), ('time', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('evidently', 'ADV'), ('struggling', 'VERB'), ('for', 'ADP'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('watched', 'VERB'), ('his', 'PRON'), ('countenance', 'NOUN'), ('and', 'CCONJ'), ('saw', 'VERB'), ('its', 'PRON'), ('expression', 'NOUN'), ('\n', 'SPACE'), ('becoming', 'VERB'), ('more', 'ADJ'), ('tranquil', 'NOUN'), (' ', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('pause', 'NOUN'), ('he', 'PRON'), ('spoke', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('calmness', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('did', 'VERB'), ('myself', 'PRON'), ('the', 'DET'), ('honour', 'NOUN'), ('of', 'ADP'), ('calling', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('\n', 'SPACE'), ('Street', 'PROPN'), ('last', 'ADJ'), ('Tuesday', 'PROPN'), ('and', 'CCONJ'), ('very', 'ADV'), ('much', 'ADV'), ('regretted', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('fortunate', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('find', 'VERB'), ('yourselves', 'NOUN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('home', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('card', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('lost', 'VERB'), ('I', 'PRON'), ('hope', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('have', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('received', 'VERB'), ('my', 'PRON'), ('notes', 'NOUN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('wildest', 'ADJ'), ('anxiety', 'NOUN'), (' ', 'SPACE'), ('Here', 'ADV'), ('is', 'AUX'), ('some', 'DET'), ('mistake', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('suresome', 'ADJ'), ('dreadful', 'ADJ'), ('mistake', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('meaning', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Tell', 'VERB'), ('me', 'PRON'), ('Willoughby', 'PROPN'), ('for', 'ADP'), ('heavens', 'PROPN'), ('sake', 'NOUN'), ('tell', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('what', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('matter', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('made', 'VERB'), ('no', 'DET'), ('reply', 'NOUN'), ('his', 'PRON'), ('complexion', 'NOUN'), ('changed', 'VERB'), ('and', 'CCONJ'), ('all', 'DET'), ('his', 'PRON'), ('\n', 'SPACE'), ('embarrassment', 'NOUN'), ('returned', 'VERB'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('on', 'ADP'), ('catching', 'VERB'), ('the', 'DET'), ('eye', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('with', 'ADP'), ('whom', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('previously', 'ADV'), ('talking', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('felt', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('instant', 'ADJ'), ('exertion', 'NOUN'), ('he', 'PRON'), ('recovered', 'VERB'), ('\n', 'SPACE'), ('himself', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('after', 'ADP'), ('saying', 'VERB'), ('Yes', 'INTJ'), ('I', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('receiving', 'VERB'), ('the', 'DET'), ('information', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('arrival', 'NOUN'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('you', 'PRON'), ('were', 'AUX'), ('so', 'ADV'), ('good', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('send', 'VERB'), ('me', 'PRON'), ('turned', 'VERB'), ('hastily', 'ADV'), ('away', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('slight', 'ADJ'), ('bow', 'NOUN'), ('and', 'CCONJ'), ('joined', 'VERB'), ('his', 'PRON'), ('friend', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('now', 'ADV'), ('looking', 'VERB'), ('dreadfully', 'ADV'), ('white', 'ADJ'), ('and', 'CCONJ'), ('unable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('stand', 'VERB'), ('sunk', 'VERB'), ('into', 'ADP'), ('her', 'PRON'), ('chair', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('expecting', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('faint', 'NOUN'), ('tried', 'VERB'), ('to', 'PART'), ('screen', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('observation', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('while', 'SCONJ'), ('reviving', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('lavender', 'ADJ'), ('water', 'NOUN'), ('\n\n', 'SPACE'), ('Go', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('speak', 'VERB'), ('and', 'CCONJ'), ('force', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('come', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('Tell', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('see', 'VERB'), ('him', 'PRON'), ('againmust', 'NOUN'), ('speak', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('restI', 'NOUN'), ('shall', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('a', 'DET'), ('moments', 'NOUN'), ('peace', 'NOUN'), ('till', 'SCONJ'), ('this', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('explainedsome', 'VERB'), ('dreadful', 'ADJ'), ('misapprehension', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('go', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('this', 'DET'), ('moment', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('that', 'PRON'), ('be', 'AUX'), ('done', 'VERB'), ('No', 'INTJ'), ('my', 'PRON'), ('dearest', 'NOUN'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('must', 'AUX'), ('wait', 'VERB'), (' ', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('place', 'NOUN'), ('for', 'ADP'), ('explanations', 'NOUN'), ('\n', 'SPACE'), ('Wait', 'VERB'), ('only', 'ADV'), ('till', 'SCONJ'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('difficulty', 'NOUN'), ('however', 'ADV'), ('could', 'AUX'), ('she', 'PRON'), ('prevent', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('following', 'VERB'), ('him', 'PRON'), ('herself', 'PRON'), ('and', 'CCONJ'), ('to', 'PART'), ('persuade', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('check', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('agitation', 'NOUN'), ('to', 'PART'), ('wait', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('composure', 'NOUN'), ('till', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('speak', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('with', 'ADP'), ('more', 'ADJ'), ('privacy', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('more', 'ADJ'), ('effect', 'NOUN'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('Marianne', 'PROPN'), ('continued', 'VERB'), ('\n', 'SPACE'), ('incessantly', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('way', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('misery', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('feelings', 'NOUN'), ('by', 'ADP'), ('exclamations', 'NOUN'), ('of', 'ADP'), ('wretchedness', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('Willoughby', 'PROPN'), ('quit', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('door', 'NOUN'), ('towards', 'ADP'), ('the', 'DET'), ('staircase', 'NOUN'), ('and', 'CCONJ'), ('telling', 'VERB'), ('Marianne', 'PROPN'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('gone', 'VERB'), ('urged', 'VERB'), ('the', 'DET'), ('impossibility', 'NOUN'), ('of', 'ADP'), ('speaking', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('that', 'DET'), ('evening', 'NOUN'), ('as', 'ADP'), ('a', 'DET'), ('fresh', 'ADJ'), ('argument', 'NOUN'), ('for', 'SCONJ'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('calm', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('instantly', 'ADV'), ('begged', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('would', 'AUX'), ('entreat', 'VERB'), ('Lady', 'PROPN'), ('\n', 'SPACE'), ('Middleton', 'PROPN'), ('to', 'PART'), ('take', 'VERB'), ('them', 'PRON'), ('home', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('miserable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('stay', 'VERB'), ('a', 'DET'), ('minute', 'NOUN'), ('longer', 'ADJ'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('though', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('middle', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('rubber', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('being', 'AUX'), ('informed', 'VERB'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('unwell', 'ADJ'), ('was', 'AUX'), ('too', 'ADV'), ('\n', 'SPACE'), ('polite', 'ADJ'), ('to', 'PART'), ('object', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('wish', 'NOUN'), ('of', 'ADP'), ('going', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('making', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('cards', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('they', 'PRON'), ('departed', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('the', 'DET'), ('carriage', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('found', 'VERB'), (' ', 'SPACE'), ('Scarcely', 'PROPN'), ('a', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('spoken', 'VERB'), ('during', 'ADP'), ('their', 'PRON'), ('return', 'NOUN'), ('to', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('silent', 'ADJ'), ('agony', 'NOUN'), ('too', 'ADV'), ('much', 'ADV'), ('oppressed', 'VERB'), ('even', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('tears', 'NOUN'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('luckily', 'ADV'), ('not', 'PART'), ('come', 'VERB'), ('home', 'ADV'), ('\n', 'SPACE'), ('they', 'PRON'), ('could', 'AUX'), ('go', 'VERB'), ('directly', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('where', 'SCONJ'), ('hartshorn', 'VERB'), ('\n', 'SPACE'), ('restored', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('to', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('soon', 'ADV'), ('undressed', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('bed', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('seemed', 'VERB'), ('desirous', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('alone', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('then', 'ADV'), ('left', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('she', 'PRON'), ('waited', 'VERB'), ('the', 'DET'), ('return', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'VERB'), ('leisure', 'NOUN'), ('enough', 'ADV'), ('for', 'ADP'), ('thinking', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('past', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'SCONJ'), ('some', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('engagement', 'NOUN'), ('had', 'AUX'), ('subsisted', 'VERB'), ('\n', 'SPACE'), ('between', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('doubt', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('weary', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('seemed', 'VERB'), ('equally', 'ADV'), ('clear', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('however', 'ADV'), ('Marianne', 'PROPN'), ('might', 'AUX'), ('still', 'ADV'), ('feed', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('wishes', 'NOUN'), ('\n', 'SPACE'), ('SHE', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('attribute', 'VERB'), ('such', 'ADJ'), ('behaviour', 'NOUN'), ('to', 'PART'), ('mistake', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('misapprehension', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('kind', 'NOUN'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('but', 'SCONJ'), ('a', 'DET'), ('thorough', 'ADJ'), ('\n', 'SPACE'), ('change', 'NOUN'), ('of', 'ADP'), ('sentiment', 'NOUN'), ('could', 'AUX'), ('account', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Her', 'PRON'), ('indignation', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('still', 'ADV'), ('stronger', 'ADJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('had', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('not', 'PART'), ('witnessed', 'VERB'), ('that', 'DET'), ('embarrassment', 'NOUN'), ('which', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('misconduct', 'NOUN'), ('and', 'CCONJ'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('from', 'ADP'), ('believing', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('unprincipled', 'VERB'), ('as', 'SCONJ'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('sporting', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('affections', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('design', 'NOUN'), ('that', 'PRON'), ('would', 'AUX'), ('bear', 'VERB'), ('investigation', 'NOUN'), ('\n', 'SPACE'), ('Absence', 'PROPN'), ('might', 'AUX'), ('have', 'AUX'), ('weakened', 'VERB'), ('his', 'PRON'), ('regard', 'NOUN'), ('and', 'CCONJ'), ('convenience', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('determined', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('overcome', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('regard', 'NOUN'), ('had', 'AUX'), ('formerly', 'ADV'), ('existed', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('bring', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('doubt', 'VERB'), ('\n\n', 'SPACE'), ('As', 'ADP'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('on', 'ADP'), ('the', 'DET'), ('pangs', 'NOUN'), ('which', 'PRON'), ('so', 'ADV'), ('unhappy', 'INTJ'), ('a', 'DET'), ('meeting', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('already', 'ADV'), ('have', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('those', 'DET'), ('still', 'ADV'), ('more', 'ADV'), ('\n', 'SPACE'), ('severe', 'ADJ'), ('which', 'PRON'), ('might', 'AUX'), ('await', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('its', 'PRON'), ('probable', 'ADJ'), ('consequence', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('reflect', 'VERB'), ('without', 'ADP'), ('the', 'DET'), ('deepest', 'ADJ'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('own', 'ADJ'), ('situation', 'NOUN'), ('gained', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('comparison', 'NOUN'), ('for', 'ADP'), ('while', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('ESTEEM', 'VERB'), ('Edward', 'PROPN'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('ever', 'ADV'), ('however', 'ADV'), ('they', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('divided', 'VERB'), ('in', 'ADP'), ('future', 'NOUN'), ('her', 'PRON'), ('mind', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('always', 'ADV'), ('supported', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('every', 'DET'), ('circumstance', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('embitter', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('evil', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('uniting', 'VERB'), ('to', 'PART'), ('heighten', 'VERB'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('final', 'ADJ'), ('separation', 'NOUN'), ('from', 'ADP'), ('Willoughbyin', 'PROPN'), ('an', 'DET'), ('immediate', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('irreconcilable', 'ADJ'), ('rupture', 'NOUN'), ('with', 'ADP'), ('him', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('29', 'NUM'), ('\n\n\n', 'SPACE'), ('Before', 'SCONJ'), ('the', 'DET'), ('housemaid', 'NOUN'), ('had', 'AUX'), ('lit', 'VERB'), ('their', 'PRON'), ('fire', 'NOUN'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('the', 'DET'), ('sun', 'NOUN'), ('gained', 'VERB'), ('any', 'DET'), ('power', 'NOUN'), ('over', 'ADP'), ('a', 'DET'), ('cold', 'ADJ'), ('gloomy', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('January', 'PROPN'), ('Marianne', 'PROPN'), ('only', 'ADV'), ('half', 'ADV'), ('dressed', 'VERB'), ('was', 'AUX'), ('kneeling', 'VERB'), ('\n', 'SPACE'), ('against', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('windowseats', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('the', 'DET'), ('little', 'ADJ'), ('light', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('command', 'VERB'), ('from', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('writing', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('fast', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('continual', 'ADJ'), ('flow', 'NOUN'), ('of', 'ADP'), ('tears', 'NOUN'), ('would', 'AUX'), ('permit', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('In', 'ADP'), ('this', 'DET'), ('situation', 'NOUN'), ('Elinor', 'PROPN'), ('roused', 'VERB'), ('from', 'ADP'), ('sleep', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('agitation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sobs', 'NOUN'), ('first', 'ADV'), ('perceived', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('after', 'ADP'), ('observing', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('with', 'ADP'), ('silent', 'ADJ'), ('anxiety', 'NOUN'), ('said', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('tone', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('considerate', 'ADJ'), ('gentleness', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('may', 'AUX'), ('I', 'PRON'), ('ask', 'VERB'), ('\n\n', 'SPACE'), ('No', 'DET'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('replied', 'VERB'), ('ask', 'VERB'), ('nothing', 'PRON'), ('you', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('soon', 'ADV'), ('know', 'VERB'), ('all', 'DET'), ('\n\n', 'SPACE'), ('The', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('desperate', 'ADJ'), ('calmness', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('this', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('lasted', 'VERB'), ('no', 'ADV'), ('longer', 'ADV'), ('than', 'ADP'), ('while', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('and', 'CCONJ'), ('was', 'AUX'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('followed', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('return', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('excessive', 'ADJ'), ('affliction', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('some', 'DET'), ('minutes', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('go', 'VERB'), ('on', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('frequent', 'ADJ'), ('bursts', 'NOUN'), ('of', 'ADP'), ('grief', 'NOUN'), ('which', 'PRON'), ('still', 'ADV'), ('obliged', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('at', 'ADP'), ('intervals', 'NOUN'), ('to', 'PART'), ('withhold', 'VERB'), ('her', 'PRON'), ('pen', 'NOUN'), ('were', 'AUX'), ('proofs', 'NOUN'), ('enough', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('feeling', 'VERB'), ('how', 'SCONJ'), ('more', 'ADJ'), ('than', 'ADP'), ('probable', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('writing', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('time', 'NOUN'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('paid', 'VERB'), ('her', 'PRON'), ('every', 'DET'), ('quiet', 'ADJ'), ('and', 'CCONJ'), ('unobtrusive', 'ADJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('power', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('tried', 'VERB'), ('to', 'PART'), ('sooth', 'VERB'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('tranquilize', 'VERB'), ('her', 'PRON'), ('still', 'ADV'), ('more', 'ADV'), ('had', 'AUX'), ('not', 'PART'), ('Marianne', 'PROPN'), ('entreated', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('eagerness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('nervous', 'ADJ'), ('irritability', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('to', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('such', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('better', 'ADJ'), ('for', 'ADP'), ('both', 'PRON'), ('that', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('long', 'ADV'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('restless', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('mind', 'NOUN'), ('not', 'PART'), ('only', 'ADV'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('from', 'ADP'), ('remaining', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('a', 'DET'), ('moment', 'NOUN'), ('after', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('dressed', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('requiring', 'VERB'), ('at', 'ADP'), ('once', 'ADV'), ('solitude', 'NOUN'), ('and', 'CCONJ'), ('continual', 'ADJ'), ('change', 'NOUN'), ('of', 'ADP'), ('place', 'NOUN'), ('\n', 'SPACE'), ('made', 'VERB'), ('her', 'PRON'), ('wander', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('till', 'SCONJ'), ('breakfast', 'NOUN'), ('time', 'NOUN'), ('avoiding', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('sight', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('breakfast', 'NOUN'), ('she', 'PRON'), ('neither', 'CCONJ'), ('ate', 'VERB'), ('nor', 'CCONJ'), ('attempted', 'VERB'), ('to', 'PART'), ('eat', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('and', 'CCONJ'), ('Elinors', 'PROPN'), ('attention', 'NOUN'), ('was', 'AUX'), ('then', 'ADV'), ('all', 'PRON'), ('employed', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('in', 'ADP'), ('urging', 'VERB'), ('her', 'PRON'), ('not', 'PART'), ('in', 'ADP'), ('pitying', 'VERB'), ('her', 'PRON'), ('nor', 'CCONJ'), ('in', 'ADP'), ('appearing', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('regard', 'VERB'), ('her', 'PRON'), ('but', 'CCONJ'), ('in', 'ADP'), ('endeavouring', 'VERB'), ('to', 'PART'), ('engage', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('notice', 'VERB'), ('entirely', 'ADV'), ('to', 'ADP'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('favourite', 'ADJ'), ('meal', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('lasted', 'VERB'), ('a', 'DET'), ('considerable', 'ADJ'), ('time', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('just', 'ADV'), ('setting', 'VERB'), ('\n', 'SPACE'), ('themselves', 'PRON'), ('after', 'SCONJ'), ('it', 'PRON'), ('round', 'VERB'), ('the', 'DET'), ('common', 'ADJ'), ('working', 'NOUN'), ('table', 'NOUN'), ('when', 'SCONJ'), ('a', 'DET'), ('\n', 'SPACE'), ('letter', 'NOUN'), ('was', 'AUX'), ('delivered', 'VERB'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('which', 'PRON'), ('she', 'PRON'), ('eagerly', 'ADV'), ('caught', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('servant', 'NOUN'), ('and', 'CCONJ'), ('turning', 'VERB'), ('of', 'ADP'), ('a', 'DET'), ('deathlike', 'ADJ'), ('paleness', 'NOUN'), ('\n', 'SPACE'), ('instantly', 'ADV'), ('ran', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('saw', 'VERB'), ('as', 'ADV'), ('plainly', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('this', 'PRON'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('the', 'DET'), ('direction', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('come', 'VERB'), ('from', 'ADP'), ('Willoughby', 'PROPN'), ('felt', 'VERB'), ('immediately', 'ADV'), ('such', 'DET'), ('a', 'DET'), ('sickness', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('heart', 'NOUN'), ('as', 'SCONJ'), ('made', 'VERB'), ('her', 'PRON'), ('hardly', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('hold', 'VERB'), ('up', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sat', 'VERB'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('general', 'ADJ'), ('tremour', 'NOUN'), ('as', 'SCONJ'), ('made', 'VERB'), ('her', 'PRON'), ('fear', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('to', 'PART'), ('escape', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('notice', 'VERB'), (' ', 'SPACE'), ('That', 'DET'), ('good', 'ADJ'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('saw', 'VERB'), ('only', 'ADV'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('received', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('Willoughby', 'PROPN'), ('which', 'PRON'), ('appeared', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('joke', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('which', 'PRON'), ('she', 'PRON'), ('treated', 'VERB'), ('accordingly', 'ADV'), ('by', 'ADP'), ('hoping', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('laugh', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('find', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('liking', 'VERB'), (' ', 'SPACE'), ('Of', 'ADP'), ('Elinors', 'PROPN'), ('distress', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('busily', 'ADV'), ('employed', 'VERB'), ('in', 'ADP'), ('measuring', 'VERB'), ('lengths', 'NOUN'), ('of', 'ADP'), ('worsted', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('rug', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('calmly', 'ADV'), ('continuing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('talk', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('disappeared', 'VERB'), ('she', 'PRON'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('I', 'PRON'), ('never', 'ADV'), ('saw', 'VERB'), ('a', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('so', 'ADV'), ('\n', 'SPACE'), ('desperately', 'ADV'), ('in', 'ADP'), ('love', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), (' ', 'SPACE'), ('MY', 'PRON'), ('girls', 'NOUN'), ('were', 'AUX'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('yet', 'ADV'), ('they', 'PRON'), ('used', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('foolish', 'ADJ'), ('enough', 'ADV'), ('but', 'CCONJ'), ('as', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('is', 'AUX'), ('quite', 'DET'), ('an', 'DET'), ('altered', 'ADJ'), ('creature', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('bottom', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('he', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('keep', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('waiting', 'VERB'), ('much', 'ADV'), ('longer', 'ADV'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('grievous', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('look', 'VERB'), ('so', 'ADV'), ('ill', 'ADJ'), ('and', 'CCONJ'), ('forlorn', 'ADJ'), (' ', 'SPACE'), ('Pray', 'PROPN'), ('when', 'SCONJ'), ('are', 'AUX'), ('they', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('though', 'ADV'), ('never', 'ADV'), ('less', 'ADV'), ('disposed', 'ADJ'), ('to', 'PART'), ('speak', 'VERB'), ('than', 'ADP'), ('at', 'ADP'), ('\n', 'SPACE'), ('that', 'DET'), ('moment', 'NOUN'), ('obliged', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('answer', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('attack', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('this', 'PRON'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('trying', 'VERB'), ('to', 'PART'), ('smile', 'AUX'), ('replied', 'VERB'), ('And', 'CCONJ'), ('have', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('really', 'ADV'), ('Maam', 'PROPN'), ('talked', 'VERB'), ('yourself', 'PRON'), ('into', 'ADP'), ('a', 'DET'), ('persuasion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('sisters', 'NOUN'), ('being', 'AUX'), ('engaged', 'VERB'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('only', 'ADV'), ('a', 'DET'), ('joke', 'NOUN'), ('but', 'CCONJ'), ('so', 'ADV'), ('serious', 'ADJ'), ('a', 'DET'), ('question', 'NOUN'), ('seems', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('imply', 'VERB'), ('more', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('beg', 'VERB'), ('therefore', 'ADV'), ('that', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('deceive', 'VERB'), ('yourself', 'PRON'), ('any', 'ADV'), ('longer', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('surprise', 'VERB'), ('me', 'PRON'), ('more', 'ADV'), ('than', 'SCONJ'), ('to', 'PART'), ('hear', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('going', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('shame', 'NOUN'), ('for', 'ADP'), ('shame', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('how', 'SCONJ'), ('can', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('talk', 'VERB'), ('so', 'ADV'), (' ', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('we', 'PRON'), ('all', 'PRON'), ('know', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('match', 'NOUN'), ('that', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('over', 'ADP'), ('head', 'NOUN'), ('and', 'CCONJ'), ('ears', 'NOUN'), ('in', 'ADP'), ('love', 'NOUN'), ('with', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('first', 'ADJ'), ('moment', 'NOUN'), ('they', 'PRON'), ('met', 'VERB'), (' ', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('see', 'VERB'), ('them', 'PRON'), ('together', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('every', 'DET'), ('day', 'NOUN'), ('and', 'CCONJ'), ('all', 'DET'), ('day', 'NOUN'), ('long', 'ADV'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('\n', 'SPACE'), ('know', 'VERB'), ('that', 'SCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('came', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('on', 'ADP'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('buy', 'VERB'), ('wedding', 'NOUN'), ('clothes', 'NOUN'), (' ', 'SPACE'), ('Come', 'AUX'), ('come', 'VERB'), ('this', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('Because', 'SCONJ'), ('you', 'PRON'), ('are', 'AUX'), ('so', 'ADV'), ('sly', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('yourself', 'PRON'), ('you', 'PRON'), ('think', 'VERB'), ('nobody', 'PRON'), ('\n', 'SPACE'), ('else', 'ADV'), ('has', 'VERB'), ('any', 'DET'), ('senses', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('no', 'DET'), ('such', 'ADJ'), ('thing', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('known', 'VERB'), ('all', 'ADV'), ('over', 'ADP'), ('town', 'NOUN'), ('this', 'PRON'), ('ever', 'ADV'), ('so', 'ADV'), ('long', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('tell', 'VERB'), ('every', 'DET'), ('body', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('so', 'ADV'), ('does', 'VERB'), ('Charlotte', 'PROPN'), ('\n\n', 'SPACE'), ('Indeed', 'PROPN'), ('Maam', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('very', 'ADV'), ('seriously', 'ADV'), ('\n', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), ('mistaken', 'ADJ'), (' ', 'SPACE'), ('Indeed', 'ADV'), ('you', 'PRON'), ('are', 'AUX'), ('doing', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('unkind', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('spreading', 'VERB'), ('the', 'DET'), ('report', 'NOUN'), ('and', 'CCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('find', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('me', 'PRON'), ('now', 'ADV'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('laughed', 'VERB'), ('again', 'ADV'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('spirits', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('more', 'ADJ'), ('and', 'CCONJ'), ('eager', 'ADJ'), ('at', 'ADP'), ('all', 'DET'), ('events', 'NOUN'), ('to', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('written', 'VERB'), ('hurried', 'VERB'), ('away', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('room', 'NOUN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('on', 'ADP'), ('opening', 'VERB'), ('the', 'DET'), ('door', 'NOUN'), ('she', 'PRON'), ('saw', 'VERB'), ('Marianne', 'PROPN'), ('stretched', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('bed', 'NOUN'), ('almost', 'ADV'), ('choked', 'VERB'), ('by', 'ADP'), ('grief', 'NOUN'), ('one', 'NUM'), ('letter', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('others', 'NOUN'), ('laying', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('drew', 'VERB'), ('near', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('without', 'ADP'), ('saying', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('and', 'CCONJ'), ('seating', 'VERB'), ('herself', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('took', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('kissed', 'VERB'), ('her', 'PRON'), ('affectionately', 'ADV'), ('several', 'ADJ'), ('times', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('gave', 'VERB'), ('way', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('burst', 'NOUN'), ('of', 'ADP'), ('tears', 'NOUN'), ('which', 'PRON'), ('at', 'ADP'), ('first', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('scarcely', 'ADV'), ('less', 'ADV'), ('violent', 'ADJ'), ('than', 'ADP'), ('Mariannes', 'PROPN'), ('The', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('though', 'ADV'), ('unable', 'ADJ'), ('to', 'PART'), ('speak', 'VERB'), ('seemed', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('tenderness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'DET'), ('behaviour', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('thus', 'ADV'), ('spent', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('joint', 'ADJ'), ('affliction', 'NOUN'), ('she', 'PRON'), ('put', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('letters', 'NOUN'), ('into', 'ADP'), ('Elinors', 'PROPN'), ('hands', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('then', 'ADV'), ('covering', 'VERB'), ('her', 'PRON'), ('face', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('handkerchief', 'NOUN'), ('\n', 'SPACE'), ('almost', 'ADV'), ('screamed', 'VERB'), ('with', 'ADP'), ('agony', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('knew', 'VERB'), ('that', 'SCONJ'), ('such', 'ADJ'), ('grief', 'NOUN'), ('\n', 'SPACE'), ('shocking', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('witness', 'VERB'), ('it', 'PRON'), ('must', 'AUX'), ('have', 'VERB'), ('its', 'PRON'), ('course', 'NOUN'), ('\n', 'SPACE'), ('watched', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('till', 'SCONJ'), ('this', 'DET'), ('excess', 'NOUN'), ('of', 'ADP'), ('suffering', 'NOUN'), ('had', 'AUX'), ('somewhat', 'ADV'), ('\n', 'SPACE'), ('spent', 'VERB'), ('itself', 'PRON'), ('and', 'CCONJ'), ('then', 'ADV'), ('turning', 'VERB'), ('eagerly', 'ADV'), ('to', 'ADP'), ('Willoughbys', 'PROPN'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('read', 'VERB'), ('as', 'SCONJ'), ('follows', 'VERB'), ('\n\n ', 'SPACE'), ('Bond', 'PROPN'), ('Street', 'PROPN'), ('January', 'PROPN'), ('\n ', 'SPACE'), ('MY', 'PROPN'), ('DEAR', 'PROPN'), ('MADAM', 'PROPN'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('just', 'ADV'), ('had', 'VERB'), ('the', 'DET'), ('honour', 'NOUN'), ('of', 'ADP'), ('receiving', 'VERB'), ('your', 'PRON'), ('\n ', 'SPACE'), ('letter', 'NOUN'), ('for', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('beg', 'VERB'), ('to', 'PART'), ('return', 'VERB'), ('my', 'PRON'), ('sincere', 'ADJ'), ('\n ', 'SPACE'), ('acknowledgments', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('much', 'ADV'), ('concerned', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('there', 'PRON'), ('\n ', 'SPACE'), ('was', 'AUX'), ('anything', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('behaviour', 'NOUN'), ('last', 'ADJ'), ('night', 'NOUN'), ('that', 'PRON'), ('did', 'AUX'), ('\n ', 'SPACE'), ('not', 'PART'), ('meet', 'VERB'), ('your', 'PRON'), ('approbation', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('quite', 'ADV'), ('at', 'ADP'), ('\n ', 'SPACE'), ('a', 'DET'), ('loss', 'NOUN'), ('to', 'PART'), ('discover', 'VERB'), ('in', 'ADP'), ('what', 'DET'), ('point', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('\n ', 'SPACE'), ('unfortunate', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('offend', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('entreat', 'VERB'), ('your', 'PRON'), ('\n ', 'SPACE'), ('forgiveness', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n ', 'SPACE'), ('perfectly', 'ADV'), ('unintentional', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('never', 'ADV'), ('reflect', 'VERB'), ('on', 'ADP'), ('\n ', 'SPACE'), ('my', 'PRON'), ('former', 'ADJ'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('your', 'PRON'), ('family', 'NOUN'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('\n ', 'SPACE'), ('without', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('grateful', 'ADJ'), ('pleasure', 'NOUN'), ('and', 'CCONJ'), ('flatter', 'NOUN'), ('\n ', 'SPACE'), ('myself', 'PRON'), ('it', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('broken', 'VERB'), ('by', 'ADP'), ('any', 'DET'), ('mistake', 'NOUN'), ('or', 'CCONJ'), ('\n ', 'SPACE'), ('misapprehension', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('actions', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('esteem', 'NOUN'), ('for', 'SCONJ'), ('your', 'PRON'), ('\n ', 'SPACE'), ('whole', 'ADJ'), ('family', 'NOUN'), ('is', 'AUX'), ('very', 'ADV'), ('sincere', 'ADJ'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('\n ', 'SPACE'), ('unfortunate', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('give', 'VERB'), ('rise', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('belief', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('than', 'SCONJ'), ('\n ', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('or', 'CCONJ'), ('meant', 'VERB'), ('to', 'PART'), ('express', 'VERB'), ('I', 'PRON'), ('shall', 'AUX'), ('reproach', 'VERB'), ('myself', 'PRON'), ('\n ', 'SPACE'), ('for', 'ADP'), ('not', 'PART'), ('having', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('guarded', 'VERB'), ('in', 'ADP'), ('my', 'PRON'), ('professions', 'NOUN'), ('\n ', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('esteem', 'NOUN'), (' ', 'SPACE'), ('That', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('ever', 'ADV'), ('have', 'AUX'), ('meant', 'VERB'), ('more', 'ADJ'), ('\n ', 'SPACE'), ('you', 'PRON'), ('will', 'AUX'), ('allow', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('impossible', 'ADJ'), ('when', 'SCONJ'), ('you', 'PRON'), ('understand', 'VERB'), ('\n ', 'SPACE'), ('that', 'SCONJ'), ('my', 'PRON'), ('affections', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('engaged', 'VERB'), ('elsewhere', 'ADV'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('before', 'SCONJ'), ('\n ', 'SPACE'), ('this', 'DET'), ('engagement', 'NOUN'), ('is', 'AUX'), ('fulfilled', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('with', 'ADP'), ('great', 'ADJ'), ('\n ', 'SPACE'), ('regret', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('obey', 'VERB'), ('your', 'PRON'), ('commands', 'NOUN'), ('in', 'ADP'), ('returning', 'VERB'), ('the', 'DET'), ('\n ', 'SPACE'), ('letters', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('honoured', 'VERB'), ('from', 'ADP'), ('you', 'PRON'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('hair', 'NOUN'), ('which', 'PRON'), ('you', 'PRON'), ('so', 'ADV'), ('obligingly', 'ADV'), ('bestowed', 'VERB'), ('\n ', 'SPACE'), ('on', 'ADP'), ('me', 'PRON'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('dear', 'ADJ'), ('Madam', 'PROPN'), ('\n ', 'SPACE'), ('Your', 'PRON'), ('most', 'ADJ'), ('obedient', 'ADJ'), ('\n ', 'SPACE'), ('humble', 'ADJ'), ('servant', 'NOUN'), ('\n ', 'SPACE'), ('JOHN', 'PROPN'), ('WILLOUGHBY', 'PROPN'), ('\n\n\n', 'SPACE'), ('With', 'ADP'), ('what', 'PRON'), ('indignation', 'NOUN'), ('such', 'DET'), ('a', 'DET'), ('letter', 'NOUN'), ('as', 'SCONJ'), ('this', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('read', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('may', 'AUX'), ('be', 'AUX'), ('imagined', 'VERB'), (' ', 'SPACE'), ('Though', 'SCONJ'), ('aware', 'ADJ'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('she', 'PRON'), ('began', 'VERB'), ('it', 'PRON'), ('that', 'SCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('bring', 'VERB'), ('a', 'DET'), ('confession', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('inconstancy', 'NOUN'), ('and', 'CCONJ'), ('confirm', 'VERB'), ('their', 'PRON'), ('separation', 'NOUN'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('such', 'ADJ'), ('language', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('suffered', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('announce', 'VERB'), ('it', 'PRON'), ('nor', 'CCONJ'), ('could', 'AUX'), ('she', 'PRON'), ('have', 'AUX'), ('supposed', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('capable', 'ADJ'), ('of', 'ADP'), ('departing', 'VERB'), ('so', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('honourable', 'ADJ'), ('and', 'CCONJ'), ('delicate', 'ADJ'), ('feelingso', 'NOUN'), ('far', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('common', 'ADJ'), ('\n', 'SPACE'), ('decorum', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('gentleman', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('send', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('so', 'ADV'), ('impudently', 'ADV'), ('\n', 'SPACE'), ('cruel', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('which', 'PRON'), ('instead', 'ADV'), ('of', 'ADP'), ('bringing', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('desire', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('release', 'NOUN'), ('any', 'DET'), ('professions', 'NOUN'), ('of', 'ADP'), ('regret', 'NOUN'), ('acknowledged', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('breach', 'NOUN'), ('of', 'ADP'), ('faith', 'NOUN'), ('denied', 'VERB'), ('all', 'DET'), ('peculiar', 'ADJ'), ('affection', 'NOUN'), ('whatever', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('every', 'DET'), ('line', 'NOUN'), ('was', 'AUX'), ('an', 'DET'), ('insult', 'NOUN'), ('and', 'CCONJ'), ('which', 'PRON'), ('\n', 'SPACE'), ('proclaimed', 'VERB'), ('its', 'PRON'), ('writer', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('deep', 'ADV'), ('in', 'ADP'), ('hardened', 'VERB'), ('villainy', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('paused', 'VERB'), ('over', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('with', 'ADP'), ('indignant', 'ADJ'), ('\n', 'SPACE'), ('astonishment', 'NOUN'), ('then', 'ADV'), ('read', 'VERB'), ('it', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('but', 'CCONJ'), ('every', 'DET'), ('\n', 'SPACE'), ('perusal', 'NOUN'), ('only', 'ADV'), ('served', 'VERB'), ('to', 'PART'), ('increase', 'VERB'), ('her', 'PRON'), ('abhorrence', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('bitter', 'ADJ'), ('were', 'AUX'), ('her', 'PRON'), ('feelings', 'NOUN'), ('against', 'ADP'), ('him', 'PRON'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('dared', 'AUX'), ('not', 'PART'), ('trust', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('speak', 'VERB'), ('lest', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('wound', 'VERB'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('still', 'ADV'), ('deeper', 'ADV'), ('by', 'ADP'), ('treating', 'VERB'), ('their', 'PRON'), ('disengagement', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('as', 'ADP'), ('a', 'DET'), ('loss', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('of', 'ADP'), ('any', 'DET'), ('possible', 'ADJ'), ('good', 'NOUN'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('an', 'DET'), ('\n', 'SPACE'), ('escape', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('worst', 'ADJ'), ('and', 'CCONJ'), ('most', 'ADV'), ('irremediable', 'ADJ'), ('of', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('evils', 'VERB'), ('a', 'DET'), ('connection', 'NOUN'), ('for', 'ADP'), ('life', 'NOUN'), ('with', 'ADP'), ('an', 'DET'), ('unprincipled', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('deliverance', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('real', 'ADJ'), ('a', 'DET'), ('blessing', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('important', 'ADJ'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('her', 'PRON'), ('earnest', 'ADJ'), ('meditations', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('contents', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('depravity', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('mind', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('dictate', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('probably', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('different', 'ADJ'), ('mind', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('different', 'ADJ'), ('\n', 'SPACE'), ('person', 'NOUN'), ('who', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('connection', 'NOUN'), ('whatever', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('heart', 'NOUN'), ('gave', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('passed', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('forgot', 'VERB'), ('the', 'DET'), ('immediate', 'ADJ'), ('distress', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('forgot', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('three', 'NUM'), ('letters', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('lap', 'NOUN'), ('yet', 'ADV'), ('unread', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('entirely', 'ADV'), ('forgot', 'VERB'), ('how', 'SCONJ'), ('long', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('on', 'ADP'), ('hearing', 'VERB'), ('a', 'DET'), ('carriage', 'NOUN'), ('drive', 'NOUN'), ('up', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('who', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('coming', 'VERB'), ('so', 'ADV'), ('\n', 'SPACE'), ('unreasonably', 'ADV'), ('early', 'ADV'), ('she', 'PRON'), ('was', 'AUX'), ('all', 'PRON'), ('astonishment', 'NOUN'), ('to', 'PART'), ('perceive', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('chariot', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('knew', 'VERB'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('\n', 'SPACE'), ('ordered', 'VERB'), ('till', 'SCONJ'), ('one', 'NUM'), (' ', 'SPACE'), ('Determined', 'ADJ'), ('not', 'PART'), ('to', 'PART'), ('quit', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('hopeless', 'ADJ'), ('of', 'ADP'), ('contributing', 'VERB'), ('at', 'ADP'), ('present', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('ease', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('hurried', 'VERB'), ('away', 'ADV'), ('to', 'PART'), ('excuse', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('attending', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('on', 'ADP'), ('account', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('being', 'AUX'), ('indisposed', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('thoroughly', 'ADV'), ('goodhumoured', 'VERB'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('its', 'PRON'), ('cause', 'NOUN'), ('admitted', 'VERB'), ('the', 'DET'), ('excuse', 'NOUN'), ('most', 'ADV'), ('readily', 'ADV'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('after', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('safe', 'ADJ'), ('off', 'ADV'), ('returned', 'VERB'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('whom', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('found', 'VERB'), ('attempting', 'VERB'), ('to', 'PART'), ('rise', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('and', 'CCONJ'), ('whom', 'PRON'), ('she', 'PRON'), ('reached', 'VERB'), ('\n', 'SPACE'), ('just', 'ADV'), ('in', 'ADP'), ('time', 'NOUN'), ('to', 'PART'), ('prevent', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('falling', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('floor', 'NOUN'), ('\n', 'SPACE'), ('faint', 'NOUN'), ('and', 'CCONJ'), ('giddy', 'ADJ'), ('from', 'ADP'), ('a', 'DET'), ('long', 'ADJ'), ('want', 'NOUN'), ('of', 'ADP'), ('proper', 'ADJ'), ('rest', 'NOUN'), ('and', 'CCONJ'), ('food', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('many', 'ADJ'), ('days', 'NOUN'), ('since', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('any', 'DET'), ('appetite', 'NOUN'), ('and', 'CCONJ'), ('many', 'ADJ'), ('\n', 'SPACE'), ('nights', 'NOUN'), ('since', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('really', 'ADV'), ('slept', 'VERB'), ('and', 'CCONJ'), ('now', 'ADV'), ('when', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('mind', 'NOUN'), ('was', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('supported', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('fever', 'NOUN'), ('of', 'ADP'), ('suspense', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('consequence', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('this', 'PRON'), ('was', 'AUX'), ('felt', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('aching', 'VERB'), ('head', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('weakened', 'ADJ'), ('stomach', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('general', 'ADJ'), ('nervous', 'ADJ'), ('faintness', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('glass', 'NOUN'), ('of', 'ADP'), ('wine', 'NOUN'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('procured', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('directly', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('her', 'PRON'), ('more', 'ADV'), ('comfortable', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('last', 'ADJ'), ('able', 'ADJ'), ('to', 'PART'), ('express', 'VERB'), ('\n', 'SPACE'), ('some', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('kindness', 'NOUN'), ('by', 'ADP'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Poor', 'PROPN'), ('Elinor', 'PROPN'), ('how', 'SCONJ'), ('unhappy', 'ADJ'), ('I', 'PRON'), ('make', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('only', 'ADV'), ('wish', 'VERB'), ('replied', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('there', 'PRON'), ('were', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('I', 'PRON'), ('COULD', 'AUX'), ('do', 'VERB'), ('which', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('comfort', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('as', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('was', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('could', 'AUX'), ('only', 'ADV'), ('exclaim', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('anguish', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('Oh', 'INTJ'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('miserable', 'ADJ'), ('\n', 'SPACE'), ('indeed', 'ADV'), ('before', 'SCONJ'), ('her', 'PRON'), ('voice', 'NOUN'), ('was', 'AUX'), ('entirely', 'ADV'), ('lost', 'VERB'), ('in', 'ADP'), ('sobs', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('witness', 'VERB'), ('this', 'DET'), ('torrent', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('unresisted', 'ADJ'), ('grief', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), ('\n\n', 'SPACE'), ('Exert', 'PROPN'), ('yourself', 'PRON'), ('dear', 'ADJ'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('kill', 'VERB'), ('yourself', 'PRON'), ('and', 'CCONJ'), ('all', 'PRON'), ('who', 'PRON'), ('love', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('Think', 'VERB'), ('of', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), ('think', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('misery', 'NOUN'), ('while', 'SCONJ'), ('YOU', 'PRON'), ('suffer', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('sake', 'NOUN'), ('you', 'PRON'), ('must', 'AUX'), ('exert', 'VERB'), ('yourself', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('leave', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('leave', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('distress', 'VERB'), ('you', 'PRON'), ('leave', 'VERB'), ('me', 'PRON'), ('hate', 'VERB'), ('me', 'PRON'), ('forget', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('do', 'AUX'), ('not', 'PART'), ('torture', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('how', 'SCONJ'), ('easy', 'ADJ'), ('for', 'ADP'), ('those', 'PRON'), ('\n', 'SPACE'), ('who', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('sorrow', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('exertion', 'NOUN'), (' ', 'SPACE'), ('Happy', 'PROPN'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('Elinor', 'PROPN'), ('YOU', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('an', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('suffer', 'VERB'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('call', 'VERB'), ('ME', 'PRON'), ('happy', 'ADJ'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Ah', 'INTJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('knewAnd', 'PROPN'), ('\n', 'SPACE'), ('can', 'AUX'), ('you', 'PRON'), ('believe', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('while', 'SCONJ'), ('I', 'PRON'), ('see', 'VERB'), ('you', 'PRON'), ('so', 'ADV'), ('wretched', 'ADJ'), ('\n\n', 'SPACE'), ('Forgive', 'VERB'), ('me', 'PRON'), ('forgive', 'VERB'), ('me', 'PRON'), ('throwing', 'VERB'), ('her', 'PRON'), ('arms', 'NOUN'), ('round', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('sisters', 'NOUN'), ('neck', 'ADV'), ('I', 'PRON'), ('know', 'VERB'), ('you', 'PRON'), ('feel', 'VERB'), ('for', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('heart', 'NOUN'), ('you', 'PRON'), ('have', 'VERB'), ('but', 'CCONJ'), ('yet', 'ADV'), ('you', 'PRON'), ('areyou', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('loves', 'VERB'), ('youwhat', 'NOUN'), ('oh', 'INTJ'), ('what', 'PRON'), ('can', 'AUX'), ('do', 'VERB'), ('away', 'ADP'), ('such', 'ADJ'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('that', 'PRON'), ('\n\n', 'SPACE'), ('Many', 'ADJ'), ('many', 'ADJ'), ('circumstances', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('solemnly', 'ADV'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('no', 'INTJ'), ('no', 'INTJ'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('wildly', 'ADV'), ('he', 'PRON'), ('loves', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('only', 'ADV'), ('you', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('CAN', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('grief', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('pleasure', 'NOUN'), ('while', 'SCONJ'), ('I', 'PRON'), ('see', 'VERB'), ('you', 'PRON'), ('in', 'ADP'), ('this', 'DET'), ('state', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('never', 'ADV'), ('see', 'VERB'), ('me', 'PRON'), ('otherwise', 'ADV'), (' ', 'SPACE'), ('Mine', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('misery', 'NOUN'), ('which', 'PRON'), ('nothing', 'PRON'), ('can', 'AUX'), ('do', 'VERB'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('talk', 'VERB'), ('so', 'ADV'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Have', 'VERB'), ('you', 'PRON'), ('no', 'DET'), ('\n', 'SPACE'), ('comforts', 'VERB'), ('no', 'DET'), ('friends', 'NOUN'), (' ', 'SPACE'), ('Is', 'AUX'), ('your', 'PRON'), ('loss', 'NOUN'), ('such', 'ADJ'), ('as', 'ADP'), ('leaves', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('opening', 'NOUN'), ('for', 'ADP'), ('consolation', 'NOUN'), (' ', 'SPACE'), ('Much', 'PROPN'), ('as', 'SCONJ'), ('you', 'PRON'), ('suffer', 'VERB'), ('now', 'ADV'), ('\n', 'SPACE'), ('think', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('you', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('suffered', 'VERB'), ('if', 'SCONJ'), ('the', 'DET'), ('discovery', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('character', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('delayed', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('later', 'ADJ'), ('period', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('your', 'PRON'), ('engagement', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('carried', 'VERB'), ('on', 'ADP'), ('for', 'ADP'), ('months', 'NOUN'), ('and', 'CCONJ'), ('months', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('it', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('before', 'SCONJ'), ('he', 'PRON'), ('chose', 'VERB'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Every', 'DET'), ('additional', 'ADJ'), ('day', 'NOUN'), ('of', 'ADP'), ('unhappy', 'ADJ'), ('confidence', 'NOUN'), ('on', 'ADP'), ('your', 'PRON'), ('side', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('have', 'AUX'), ('made', 'VERB'), ('the', 'DET'), ('blow', 'NOUN'), ('more', 'ADV'), ('dreadful', 'ADJ'), ('\n\n', 'SPACE'), ('Engagement', 'PROPN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('there', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('no', 'DET'), ('engagement', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('engagement', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('unworthy', 'ADJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('believe', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('has', 'AUX'), ('broken', 'VERB'), ('no', 'DET'), ('faith', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('told', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('loved', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Yesnonever', 'PROPN'), ('absolutely', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('every', 'DET'), ('day', 'NOUN'), ('implied', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('never', 'ADV'), ('professedly', 'ADV'), ('declared', 'VERB'), (' ', 'SPACE'), ('Sometimes', 'ADV'), ('I', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('beenbut', 'ADP'), ('it', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('Yet', 'ADV'), ('you', 'PRON'), ('wrote', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Yescould', 'PROPN'), ('that', 'PRON'), ('be', 'AUX'), ('wrong', 'ADJ'), ('after', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('talk', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('and', 'CCONJ'), ('turning', 'VERB'), ('again', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('three', 'NUM'), ('\n', 'SPACE'), ('letters', 'NOUN'), ('which', 'PRON'), ('now', 'ADV'), ('raised', 'VERB'), ('a', 'DET'), ('much', 'ADV'), ('stronger', 'ADJ'), ('curiosity', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('before', 'ADV'), ('directly', 'ADV'), ('ran', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('contents', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('first', 'ADJ'), ('which', 'PRON'), ('was', 'AUX'), ('what', 'PRON'), ('her', 'PRON'), ('sister', 'NOUN'), ('had', 'AUX'), ('sent', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('in', 'ADP'), ('town', 'NOUN'), ('was', 'AUX'), ('to', 'ADP'), ('this', 'DET'), ('effect', 'NOUN'), ('\n\n ', 'SPACE'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('January', 'PROPN'), ('\n\n ', 'SPACE'), ('How', 'SCONJ'), ('surprised', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('Willoughby', 'PROPN'), ('on', 'ADP'), ('\n ', 'SPACE'), ('receiving', 'VERB'), ('this', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('feel', 'VERB'), ('something', 'PRON'), ('\n ', 'SPACE'), ('more', 'ADJ'), ('than', 'ADP'), ('surprise', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('know', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n ', 'SPACE'), ('An', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('coming', 'VERB'), ('hither', 'NOUN'), ('though', 'ADV'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('\n ', 'SPACE'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('temptation', 'NOUN'), ('we', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('resist', 'VERB'), ('\n ', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('you', 'PRON'), ('may', 'AUX'), ('receive', 'VERB'), ('this', 'PRON'), ('in', 'ADP'), ('time', 'NOUN'), ('to', 'PART'), ('come', 'VERB'), ('here', 'ADV'), ('\n ', 'SPACE'), ('tonight', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('depend', 'VERB'), ('on', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('At', 'ADP'), ('any', 'DET'), ('rate', 'NOUN'), ('\n ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('expect', 'VERB'), ('you', 'PRON'), ('tomorrow', 'NOUN'), ('For', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('adieu', 'ADJ'), ('\n\n ', 'SPACE'), ('MD', 'PROPN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('second', 'ADJ'), ('note', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('written', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('after', 'SCONJ'), ('the', 'DET'), ('dance', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('these', 'DET'), ('words', 'NOUN'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('express', 'VERB'), ('my', 'PRON'), ('disappointment', 'NOUN'), ('in', 'ADP'), ('having', 'AUX'), ('\n ', 'SPACE'), ('missed', 'VERB'), ('you', 'PRON'), ('the', 'DET'), ('day', 'NOUN'), ('before', 'ADP'), ('yesterday', 'NOUN'), ('nor', 'CCONJ'), ('my', 'PRON'), ('astonishment', 'NOUN'), ('\n ', 'SPACE'), ('at', 'ADP'), ('not', 'PART'), ('having', 'AUX'), ('received', 'VERB'), ('any', 'DET'), ('answer', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('note', 'NOUN'), ('which', 'PRON'), ('\n ', 'SPACE'), ('I', 'PRON'), ('sent', 'VERB'), ('you', 'PRON'), ('above', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('ago', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('expecting', 'VERB'), ('\n ', 'SPACE'), ('to', 'PART'), ('hear', 'VERB'), ('from', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('still', 'ADV'), ('more', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('every', 'DET'), ('\n ', 'SPACE'), ('hour', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('Pray', 'VERB'), ('call', 'VERB'), ('again', 'ADV'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('explain', 'VERB'), ('the', 'DET'), ('reason', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('having', 'AUX'), ('expected', 'VERB'), ('this', 'PRON'), ('\n ', 'SPACE'), ('in', 'ADP'), ('vain', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('had', 'AUX'), ('better', 'ADV'), ('come', 'VERB'), ('earlier', 'ADV'), ('another', 'DET'), ('time', 'NOUN'), ('\n ', 'SPACE'), ('because', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('generally', 'ADV'), ('out', 'ADV'), ('by', 'ADP'), ('one', 'NUM'), (' ', 'SPACE'), ('We', 'PRON'), ('were', 'AUX'), ('last', 'ADJ'), ('\n ', 'SPACE'), ('night', 'NOUN'), ('at', 'ADP'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('where', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('dance', 'NOUN'), ('\n ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('told', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('asked', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('\n ', 'SPACE'), ('party', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('could', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('so', 'ADV'), (' ', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('\n ', 'SPACE'), ('altered', 'VERB'), ('indeed', 'ADV'), ('since', 'SCONJ'), ('we', 'PRON'), ('parted', 'VERB'), ('if', 'SCONJ'), ('that', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('\n ', 'SPACE'), ('the', 'DET'), ('case', 'NOUN'), ('and', 'CCONJ'), ('you', 'PRON'), ('not', 'PART'), ('there', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('\n ', 'SPACE'), ('this', 'PRON'), ('possible', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('very', 'ADV'), ('soon', 'ADV'), ('to', 'PART'), ('receive', 'VERB'), ('your', 'PRON'), ('\n ', 'SPACE'), ('personal', 'ADJ'), ('assurance', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('otherwise', 'ADV'), ('\n\n ', 'SPACE'), ('MD', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('contents', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('last', 'ADJ'), ('note', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('were', 'AUX'), ('these', 'PRON'), ('\n\n ', 'SPACE'), ('What', 'PRON'), ('am', 'AUX'), ('I', 'PRON'), ('to', 'PART'), ('imagine', 'VERB'), ('Willoughby', 'PROPN'), ('by', 'ADP'), ('your', 'PRON'), ('\n ', 'SPACE'), ('behaviour', 'NOUN'), ('last', 'ADJ'), ('night', 'NOUN'), (' ', 'SPACE'), ('Again', 'ADV'), ('I', 'PRON'), ('demand', 'VERB'), ('an', 'DET'), ('explanation', 'NOUN'), ('\n ', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('prepared', 'ADJ'), ('to', 'PART'), ('meet', 'VERB'), ('you', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('pleasure', 'NOUN'), ('\n ', 'SPACE'), ('which', 'DET'), ('our', 'PRON'), ('separation', 'NOUN'), ('naturally', 'ADV'), ('produced', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('\n ', 'SPACE'), ('familiarity', 'NOUN'), ('which', 'PRON'), ('our', 'PRON'), ('intimacy', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('appeared', 'VERB'), ('\n ', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('justify', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('repulsed', 'VERB'), ('indeed', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('\n ', 'SPACE'), ('passed', 'VERB'), ('a', 'DET'), ('wretched', 'ADJ'), ('night', 'NOUN'), ('in', 'ADP'), ('endeavouring', 'VERB'), ('to', 'PART'), ('excuse', 'VERB'), ('\n ', 'SPACE'), ('a', 'DET'), ('conduct', 'NOUN'), ('which', 'PRON'), ('can', 'AUX'), ('scarcely', 'ADV'), ('be', 'AUX'), ('called', 'VERB'), ('less', 'ADJ'), ('than', 'SCONJ'), ('\n ', 'SPACE'), ('insulting', 'ADJ'), ('but', 'CCONJ'), ('though', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('yet', 'ADV'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('\n ', 'SPACE'), ('form', 'VERB'), ('any', 'DET'), ('reasonable', 'ADJ'), ('apology', 'NOUN'), ('for', 'ADP'), ('your', 'PRON'), ('behaviour', 'NOUN'), ('\n ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('perfectly', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('your', 'PRON'), ('justification', 'NOUN'), ('of', 'ADP'), ('\n ', 'SPACE'), ('it', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('perhaps', 'ADV'), ('been', 'AUX'), ('misinformed', 'ADJ'), ('or', 'CCONJ'), ('purposely', 'ADV'), ('\n ', 'SPACE'), ('deceived', 'VERB'), ('in', 'ADP'), ('something', 'PRON'), ('concerning', 'VERB'), ('me', 'PRON'), ('which', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('\n ', 'SPACE'), ('lowered', 'VERB'), ('me', 'PRON'), ('in', 'ADP'), ('your', 'PRON'), ('opinion', 'NOUN'), (' ', 'SPACE'), ('Tell', 'VERB'), ('me', 'PRON'), ('what', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('\n ', 'SPACE'), ('explain', 'VERB'), ('the', 'DET'), ('grounds', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('you', 'PRON'), ('acted', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n ', 'SPACE'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('in', 'ADP'), ('being', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('satisfy', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('\n ', 'SPACE'), ('would', 'AUX'), ('grieve', 'VERB'), ('me', 'PRON'), ('indeed', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('ill', 'ADJ'), ('\n ', 'SPACE'), ('of', 'ADP'), ('you', 'PRON'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('to', 'PART'), ('learn', 'VERB'), ('that', 'SCONJ'), ('\n ', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('what', 'PRON'), ('we', 'PRON'), ('have', 'AUX'), ('hitherto', 'NOUN'), ('believed', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('\n ', 'SPACE'), ('your', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('us', 'PRON'), ('all', 'PRON'), ('was', 'AUX'), ('insincere', 'ADJ'), ('that', 'SCONJ'), ('your', 'PRON'), ('\n ', 'SPACE'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('was', 'AUX'), ('intended', 'VERB'), ('only', 'ADV'), ('to', 'PART'), ('deceive', 'VERB'), ('let', 'VERB'), ('\n ', 'SPACE'), ('it', 'PRON'), ('be', 'AUX'), ('told', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), (' ', 'SPACE'), ('My', 'PRON'), ('feelings', 'NOUN'), ('are', 'AUX'), ('at', 'ADP'), ('\n ', 'SPACE'), ('present', 'ADJ'), ('in', 'ADP'), ('a', 'DET'), ('state', 'NOUN'), ('of', 'ADP'), ('dreadful', 'ADJ'), ('indecision', 'NOUN'), ('I', 'PRON'), ('wish', 'VERB'), ('\n ', 'SPACE'), ('to', 'PART'), ('acquit', 'VERB'), ('you', 'PRON'), ('but', 'CCONJ'), ('certainty', 'NOUN'), ('on', 'ADP'), ('either', 'DET'), ('side', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('\n ', 'SPACE'), ('ease', 'NOUN'), ('to', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('now', 'ADV'), ('suffer', 'VERB'), (' ', 'SPACE'), ('If', 'SCONJ'), ('your', 'PRON'), ('sentiments', 'NOUN'), ('are', 'AUX'), ('\n ', 'SPACE'), ('no', 'ADV'), ('longer', 'ADV'), ('what', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('you', 'PRON'), ('will', 'AUX'), ('return', 'VERB'), ('my', 'PRON'), ('notes', 'NOUN'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('hair', 'NOUN'), ('which', 'PRON'), ('is', 'AUX'), ('in', 'ADP'), ('your', 'PRON'), ('possession', 'NOUN'), ('\n\n ', 'SPACE'), ('MD', 'PROPN'), ('\n\n', 'SPACE'), ('That', 'SCONJ'), ('such', 'ADJ'), ('letters', 'NOUN'), ('so', 'ADV'), ('full', 'ADJ'), ('of', 'ADP'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('confidence', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('for', 'ADP'), ('Willoughbys', 'PROPN'), ('sake', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('unwilling', 'ADJ'), ('to', 'PART'), ('believe', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('her', 'PRON'), ('condemnation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('him', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('blind', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('impropriety', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('having', 'AUX'), ('been', 'AUX'), ('written', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('silently', 'ADV'), ('grieving', 'VERB'), ('\n', 'SPACE'), ('over', 'ADP'), ('the', 'DET'), ('imprudence', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('hazarded', 'VERB'), ('such', 'ADJ'), ('unsolicited', 'ADJ'), ('\n', 'SPACE'), ('proofs', 'NOUN'), ('of', 'ADP'), ('tenderness', 'NOUN'), ('not', 'PART'), ('warranted', 'VERB'), ('by', 'ADP'), ('anything', 'PRON'), ('preceding', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('most', 'ADV'), ('severely', 'ADV'), ('condemned', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('event', 'NOUN'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('perceiving', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('finished', 'VERB'), ('the', 'DET'), ('letters', 'NOUN'), ('observed', 'VERB'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('that', 'SCONJ'), ('they', 'PRON'), ('contained', 'VERB'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('what', 'PRON'), ('any', 'DET'), ('one', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('written', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('situation', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('myself', 'PRON'), ('she', 'PRON'), ('added', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('as', 'ADV'), ('solemnly', 'ADV'), ('\n', 'SPACE'), ('engaged', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('the', 'DET'), ('strictest', 'ADJ'), ('legal', 'ADJ'), ('covenant', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('bound', 'VERB'), ('us', 'PRON'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('believe', 'VERB'), ('it', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('but', 'CCONJ'), ('unfortunately', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('DID', 'AUX'), ('feel', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('Elinorfor', 'NOUN'), ('weeks', 'NOUN'), ('and', 'CCONJ'), ('weeks', 'NOUN'), ('he', 'PRON'), ('\n', 'SPACE'), ('felt', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('he', 'PRON'), ('did', 'VERB'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('changed', 'VERB'), ('him', 'PRON'), ('now', 'ADV'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('the', 'DET'), ('blackest', 'ADJ'), ('art', 'NOUN'), ('employed', 'VERB'), ('against', 'ADP'), ('me', 'PRON'), ('can', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('I', 'PRON'), ('was', 'AUX'), ('once', 'ADV'), ('as', 'ADV'), ('dear', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('my', 'PRON'), ('own', 'ADJ'), ('soul', 'NOUN'), ('could', 'AUX'), ('wish', 'VERB'), ('\n', 'SPACE'), ('This', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('hair', 'NOUN'), ('which', 'PRON'), ('now', 'ADV'), ('he', 'PRON'), ('can', 'AUX'), ('so', 'ADV'), ('readily', 'ADV'), ('give', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('was', 'AUX'), ('begged', 'VERB'), ('of', 'ADP'), ('me', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('earnest', 'ADJ'), ('supplication', 'NOUN'), ('\n', 'SPACE'), ('Had', 'AUX'), ('you', 'PRON'), ('seen', 'VERB'), ('his', 'PRON'), ('look', 'NOUN'), ('his', 'PRON'), ('manner', 'NOUN'), ('had', 'AUX'), ('you', 'PRON'), ('heard', 'VERB'), ('his', 'PRON'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), (' ', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('forgot', 'VERB'), ('the', 'DET'), ('last', 'ADJ'), ('evening', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('\n', 'SPACE'), ('being', 'AUX'), ('together', 'ADV'), ('at', 'ADP'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('morning', 'NOUN'), ('that', 'PRON'), ('we', 'PRON'), ('parted', 'VERB'), ('\n', 'SPACE'), ('too', 'ADV'), (' ', 'SPACE'), ('When', 'SCONJ'), ('he', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('we', 'PRON'), ('met', 'VERB'), ('againhis', 'PRON'), ('distresscan', 'NOUN'), ('I', 'PRON'), ('ever', 'ADV'), ('forget', 'VERB'), ('his', 'PRON'), ('distress', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('she', 'PRON'), ('could', 'AUX'), ('say', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('this', 'DET'), ('emotion', 'NOUN'), ('had', 'AUX'), ('passed', 'VERB'), ('away', 'ADP'), ('she', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('firmer', 'ADJ'), ('tone', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('cruelly', 'ADV'), ('used', 'VERB'), ('but', 'CCONJ'), ('not', 'PART'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Dearest', 'PROPN'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('but', 'CCONJ'), ('himself', 'PRON'), (' ', 'SPACE'), ('By', 'ADP'), ('whom', 'PRON'), ('can', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('instigated', 'VERB'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('rather', 'ADV'), ('than', 'ADP'), ('by', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('rather', 'ADV'), ('believe', 'VERB'), ('every', 'DET'), ('creature', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('leagued', 'VERB'), ('together', 'ADV'), ('to', 'PART'), ('ruin', 'VERB'), ('me', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('opinion', 'NOUN'), ('than', 'SCONJ'), ('believe', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('nature', 'NOUN'), ('capable', 'ADJ'), ('of', 'ADP'), ('such', 'ADJ'), ('cruelty', 'NOUN'), (' ', 'SPACE'), ('This', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('whom', 'PRON'), ('he', 'PRON'), ('\n', 'SPACE'), ('writeswhoever', 'NOUN'), ('she', 'PRON'), ('beor', 'NOUN'), ('any', 'DET'), ('one', 'NUM'), ('in', 'ADP'), ('short', 'ADJ'), ('but', 'CCONJ'), ('your', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('dear', 'ADJ'), ('self', 'NOUN'), ('mama', 'PROPN'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('may', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('barbarous', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('bely', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('Beyond', 'ADP'), ('you', 'PRON'), ('three', 'NUM'), ('is', 'AUX'), ('there', 'PRON'), ('a', 'DET'), ('creature', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('whom', 'PRON'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('rather', 'ADV'), ('suspect', 'VERB'), ('of', 'ADP'), ('evil', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('Willoughby', 'PROPN'), ('whose', 'DET'), ('heart', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('so', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('contend', 'VERB'), ('and', 'CCONJ'), ('only', 'ADV'), ('replied', 'VERB'), ('\n', 'SPACE'), ('Whoever', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('detestably', 'ADV'), ('your', 'PRON'), ('enemy', 'NOUN'), ('let', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('cheated', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('malignant', 'ADJ'), ('triumph', 'NOUN'), ('my', 'PRON'), ('dear', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('seeing', 'VERB'), ('how', 'SCONJ'), ('nobly', 'ADV'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('innocence', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('intentions', 'NOUN'), ('supports', 'VERB'), ('your', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('reasonable', 'ADJ'), ('and', 'CCONJ'), ('laudable', 'ADJ'), ('pride', 'NOUN'), ('which', 'PRON'), ('resists', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('malevolence', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'NOUN'), ('no', 'DET'), ('cried', 'ADJ'), ('Marianne', 'PROPN'), ('misery', 'NOUN'), ('such', 'ADJ'), ('as', 'ADP'), ('mine', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('no', 'DET'), ('pride', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('care', 'VERB'), ('not', 'PART'), ('who', 'PRON'), ('knows', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('wretched', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('triumph', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), ('may', 'AUX'), ('be', 'AUX'), ('open', 'ADJ'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('Elinor', 'PROPN'), ('they', 'PRON'), ('who', 'PRON'), ('suffer', 'VERB'), ('little', 'ADJ'), ('may', 'AUX'), ('be', 'AUX'), ('proud', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('independent', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('likemay', 'AUX'), ('resist', 'VERB'), ('insult', 'NOUN'), ('or', 'CCONJ'), ('return', 'VERB'), ('\n', 'SPACE'), ('mortificationbut', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), (' ', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('feelI', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('wretchedand', 'ADJ'), ('they', 'PRON'), ('are', 'AUX'), ('welcome', 'ADJ'), ('to', 'PART'), ('enjoy', 'VERB'), ('the', 'DET'), ('consciousness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('that', 'PRON'), ('can', 'AUX'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('for', 'SCONJ'), ('my', 'PRON'), ('mothers', 'NOUN'), ('sake', 'VERB'), ('and', 'CCONJ'), ('mine', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('do', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('for', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('to', 'PART'), ('appear', 'VERB'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('when', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('miserableOh', 'PROPN'), ('who', 'PRON'), ('can', 'AUX'), ('require', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Again', 'ADV'), ('they', 'PRON'), ('were', 'AUX'), ('both', 'PRON'), ('silent', 'ADJ'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('employed', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('walking', 'VERB'), ('thoughtfully', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('without', 'ADP'), ('knowing', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('received', 'VERB'), ('warmth', 'NOUN'), ('from', 'ADP'), ('one', 'NUM'), ('or', 'CCONJ'), ('discerning', 'NOUN'), ('objects', 'NOUN'), ('through', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('seated', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('foot', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('leaning', 'VERB'), ('against', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('its', 'PRON'), ('posts', 'NOUN'), ('\n', 'SPACE'), ('again', 'ADV'), ('took', 'VERB'), ('up', 'ADP'), ('Willoughbys', 'PROPN'), ('letter', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('shuddering', 'VERB'), ('\n', 'SPACE'), ('over', 'ADP'), ('every', 'DET'), ('sentence', 'NOUN'), ('exclaimed', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('Oh', 'INTJ'), ('Willoughby', 'PROPN'), ('Willoughby', 'PROPN'), ('could', 'AUX'), ('this', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('yours', 'PRON'), (' ', 'SPACE'), ('Cruel', 'ADJ'), ('cruelnothing', 'NOUN'), ('can', 'AUX'), ('acquit', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('can', 'AUX'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('he', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('heard', 'VERB'), ('against', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('ought', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('have', 'AUX'), ('suspended', 'VERB'), ('his', 'PRON'), ('belief', 'NOUN'), ('ought', 'AUX'), ('he', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('have', 'AUX'), ('told', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('to', 'PART'), ('have', 'AUX'), ('given', 'VERB'), ('me', 'PRON'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('clearing', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('The', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('hair', 'NOUN'), ('repeating', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('you', 'PRON'), ('so', 'ADV'), ('obligingly', 'ADV'), ('bestowed', 'VERB'), ('on', 'ADP'), ('meThat', 'PRON'), ('is', 'AUX'), ('unpardonable', 'ADJ'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('where', 'SCONJ'), ('was', 'AUX'), ('your', 'PRON'), ('heart', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('wrote', 'VERB'), ('those', 'DET'), ('words', 'NOUN'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('barbarously', 'ADV'), ('insolentElinor', 'NOUN'), ('can', 'AUX'), ('he', 'PRON'), ('be', 'AUX'), ('justified', 'VERB'), ('\n\n', 'SPACE'), ('No', 'DET'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('no', 'DET'), ('possible', 'ADJ'), ('way', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('yet', 'ADV'), ('this', 'DET'), ('womanwho', 'NOUN'), ('knows', 'VERB'), ('what', 'PRON'), ('her', 'PRON'), ('art', 'NOUN'), ('may', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('beenhow', 'NOUN'), ('long', 'ADJ'), ('it', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('premeditated', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('deeply', 'ADV'), ('contrived', 'VERB'), ('by', 'ADP'), ('herWho', 'NOUN'), ('is', 'AUX'), ('sheWho', 'ADJ'), ('can', 'AUX'), ('\n', 'SPACE'), ('she', 'PRON'), ('beWhom', 'PRON'), ('did', 'AUX'), ('I', 'PRON'), ('ever', 'ADV'), ('hear', 'VERB'), ('him', 'PRON'), ('talk', 'VERB'), ('of', 'ADP'), ('as', 'ADV'), ('young', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('attractive', 'ADJ'), ('among', 'ADP'), ('his', 'PRON'), ('female', 'ADJ'), ('acquaintanceOh', 'PROPN'), ('no', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('onehe', 'ADV'), ('talked', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('only', 'ADV'), ('of', 'ADP'), ('myself', 'PRON'), ('\n\n', 'SPACE'), ('Another', 'DET'), ('pause', 'NOUN'), ('ensued', 'VERB'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('greatly', 'ADV'), ('agitated', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('ended', 'VERB'), ('thus', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('must', 'AUX'), ('go', 'VERB'), ('home', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('go', 'VERB'), ('and', 'CCONJ'), ('comfort', 'VERB'), ('mama', 'PROPN'), ('\n', 'SPACE'), ('Can', 'AUX'), ('not', 'PART'), ('we', 'PRON'), ('be', 'AUX'), ('gone', 'VERB'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('Tomorrow', 'PROPN'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('why', 'SCONJ'), ('should', 'AUX'), ('I', 'PRON'), ('stay', 'VERB'), ('here', 'ADV'), ('I', 'PRON'), ('came', 'VERB'), ('only', 'ADV'), ('for', 'ADP'), ('\n', 'SPACE'), ('Willoughbys', 'PROPN'), ('sakeand', 'NOUN'), ('now', 'ADV'), ('who', 'PRON'), ('cares', 'VERB'), ('for', 'ADP'), ('me', 'PRON'), ('Who', 'PRON'), ('regards', 'VERB'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('impossible', 'ADJ'), ('to', 'PART'), ('go', 'VERB'), ('tomorrow', 'NOUN'), ('We', 'PRON'), ('owe', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('much', 'ADV'), ('more', 'ADJ'), ('than', 'ADP'), ('civility', 'NOUN'), ('and', 'CCONJ'), ('civility', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('commonest', 'ADJ'), ('kind', 'NOUN'), ('must', 'AUX'), ('prevent', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('hasty', 'ADJ'), ('removal', 'NOUN'), ('as', 'ADP'), ('that', 'PRON'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('then', 'ADV'), ('another', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('perhaps', 'ADV'), ('but', 'CCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('stay', 'VERB'), ('here', 'ADV'), ('long', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('to', 'PART'), ('endure', 'VERB'), ('the', 'DET'), ('questions', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('remarks', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('these', 'DET'), ('people', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('Middletons', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Palmershow', 'PROPN'), ('am', 'AUX'), ('I', 'PRON'), ('to', 'PART'), ('bear', 'VERB'), ('their', 'PRON'), ('pity', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('pity', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('woman', 'NOUN'), ('as', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('what', 'PRON'), ('would', 'AUX'), ('HE', 'PRON'), ('say', 'VERB'), ('to', 'ADP'), ('that', 'DET'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('advised', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('lie', 'VERB'), ('down', 'ADP'), ('again', 'ADV'), ('and', 'CCONJ'), ('for', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('she', 'PRON'), ('did', 'VERB'), ('so', 'ADV'), ('but', 'CCONJ'), ('no', 'DET'), ('attitude', 'NOUN'), ('could', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('ease', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('restless', 'ADJ'), ('pain', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('body', 'NOUN'), ('she', 'PRON'), ('moved', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('\n', 'SPACE'), ('posture', 'NOUN'), ('to', 'ADP'), ('another', 'PRON'), ('till', 'SCONJ'), ('growing', 'VERB'), ('more', 'ADJ'), ('and', 'CCONJ'), ('more', 'ADV'), ('hysterical', 'ADJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('could', 'AUX'), ('with', 'ADP'), ('difficulty', 'NOUN'), ('keep', 'VERB'), ('her', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('was', 'AUX'), ('fearful', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('constrained', 'VERB'), ('to', 'PART'), ('call', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('assistance', 'NOUN'), (' ', 'SPACE'), ('Some', 'DET'), ('lavender', 'NOUN'), ('drops', 'NOUN'), ('however', 'ADV'), ('which', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('at', 'ADP'), ('length', 'NOUN'), ('persuaded', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('were', 'AUX'), ('of', 'ADP'), ('use', 'NOUN'), ('and', 'CCONJ'), ('from', 'ADP'), ('\n', 'SPACE'), ('that', 'DET'), ('time', 'NOUN'), ('till', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('returned', 'VERB'), ('she', 'PRON'), ('continued', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('quiet', 'ADJ'), ('and', 'CCONJ'), ('motionless', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('30', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('came', 'VERB'), ('immediately', 'ADV'), ('to', 'ADP'), ('their', 'PRON'), ('room', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('return', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('without', 'ADP'), ('waiting', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('her', 'PRON'), ('request', 'NOUN'), ('of', 'ADP'), ('admittance', 'NOUN'), ('answered', 'VERB'), ('\n', 'SPACE'), ('opened', 'VERB'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('walked', 'VERB'), ('in', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('real', 'ADJ'), ('concern', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('do', 'VERB'), ('my', 'PRON'), ('dearsaid', 'NOUN'), ('she', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('\n', 'SPACE'), ('compassion', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('turned', 'VERB'), ('away', 'ADV'), ('her', 'PRON'), ('face', 'NOUN'), ('without', 'ADP'), ('\n', 'SPACE'), ('attempting', 'VERB'), ('to', 'PART'), ('answer', 'VERB'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('is', 'AUX'), ('she', 'PRON'), ('Miss', 'PROPN'), ('DashwoodPoor', 'PROPN'), ('thing', 'NOUN'), ('she', 'PRON'), ('looks', 'VERB'), ('very', 'ADV'), ('bad', 'ADJ'), ('\n', 'SPACE'), ('No', 'DET'), ('wonder', 'NOUN'), (' ', 'SPACE'), ('Ay', 'INTJ'), ('it', 'PRON'), ('is', 'AUX'), ('but', 'CCONJ'), ('too', 'ADV'), ('true', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('soona', 'ADJ'), ('goodfornothing', 'VERB'), ('fellow', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('patience', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Taylor', 'PROPN'), ('told', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('ago', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('told', 'VERB'), ('it', 'PRON'), ('by', 'ADP'), ('a', 'DET'), ('particular', 'ADJ'), ('friend', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Grey', 'PROPN'), ('herself', 'PRON'), ('else', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('believed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('sink', 'VERB'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), (' ', 'SPACE'), ('Well', 'INTJ'), ('said', 'VERB'), ('I', 'PRON'), ('\n', 'SPACE'), ('all', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('say', 'VERB'), ('is', 'AUX'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('this', 'PRON'), ('be', 'VERB'), ('true', 'ADJ'), ('he', 'PRON'), ('has', 'AUX'), ('used', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('acquaintance', 'NOUN'), ('abominably', 'ADV'), ('ill', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('wish', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('soul', 'NOUN'), ('his', 'PRON'), ('wife', 'NOUN'), ('may', 'AUX'), ('plague', 'VERB'), ('his', 'PRON'), ('heart', 'NOUN'), ('out', 'ADP'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('I', 'PRON'), ('shall', 'AUX'), ('always', 'ADV'), ('say', 'VERB'), ('my', 'PRON'), ('dear', 'NOUN'), ('you', 'PRON'), ('may', 'AUX'), ('depend', 'VERB'), ('on', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('notion', 'NOUN'), ('of', 'ADP'), ('mens', 'NOUN'), ('going', 'VERB'), ('on', 'ADP'), ('in', 'ADP'), ('this', 'DET'), ('way', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('ever', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('meet', 'VERB'), ('him', 'PRON'), ('again', 'ADV'), ('I', 'PRON'), ('will', 'AUX'), ('give', 'VERB'), ('him', 'PRON'), ('such', 'DET'), ('a', 'DET'), ('dressing', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('has', 'AUX'), ('not', 'PART'), ('had', 'VERB'), ('this', 'DET'), ('many', 'ADJ'), ('a', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('one', 'NUM'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('my', 'PRON'), ('dear', 'ADJ'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('he', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('only', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('worth', 'ADJ'), ('having', 'VERB'), ('and', 'CCONJ'), ('with', 'ADP'), ('your', 'PRON'), ('pretty', 'ADJ'), ('face', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('will', 'AUX'), ('never', 'ADV'), ('want', 'VERB'), ('admirers', 'NOUN'), (' ', 'SPACE'), ('Well', 'INTJ'), ('poor', 'ADJ'), ('thing', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('\n', 'SPACE'), ('disturb', 'VERB'), ('her', 'PRON'), ('any', 'ADV'), ('longer', 'ADV'), ('for', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('better', 'ADV'), ('have', 'VERB'), ('her', 'PRON'), ('cry', 'NOUN'), ('\n', 'SPACE'), ('out', 'ADP'), ('at', 'ADP'), ('once', 'ADV'), ('and', 'CCONJ'), ('have', 'AUX'), ('done', 'VERB'), ('with', 'ADP'), (' ', 'SPACE'), ('The', 'DET'), ('Parrys', 'PROPN'), ('and', 'CCONJ'), ('Sandersons', 'PROPN'), ('\n', 'SPACE'), ('luckily', 'ADV'), ('are', 'AUX'), ('coming', 'VERB'), ('tonight', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('and', 'CCONJ'), ('that', 'PRON'), ('will', 'AUX'), ('amuse', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('then', 'ADV'), ('went', 'VERB'), ('away', 'ADV'), ('walking', 'VERB'), ('on', 'ADP'), ('tiptoe', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('supposed', 'VERB'), ('her', 'PRON'), ('young', 'ADJ'), ('friends', 'NOUN'), ('affliction', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('increased', 'VERB'), ('by', 'ADP'), ('noise', 'PROPN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('to', 'ADP'), ('the', 'DET'), ('surprise', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('determined', 'VERB'), ('on', 'ADP'), ('dining', 'NOUN'), ('with', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('even', 'ADV'), ('advised', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('against', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('no', 'INTJ'), ('she', 'PRON'), ('would', 'AUX'), ('go', 'VERB'), ('down', 'ADP'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('bear', 'VERB'), ('it', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('bustle', 'NOUN'), ('about', 'ADP'), ('her', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('less', 'ADV'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('pleased', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('her', 'PRON'), ('governed', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('by', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('motive', 'NOUN'), ('though', 'SCONJ'), ('believing', 'VERB'), ('it', 'PRON'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('sit', 'VERB'), ('out', 'ADP'), ('the', 'DET'), ('dinner', 'NOUN'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('adjusting', 'VERB'), ('her', 'PRON'), ('dress', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Marianne', 'PROPN'), ('still', 'ADV'), ('remained', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('bed', 'NOUN'), ('was', 'AUX'), ('ready', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('assist', 'VERB'), ('her', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('dining', 'NOUN'), ('room', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('summoned', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('there', 'ADV'), ('though', 'SCONJ'), ('looking', 'VERB'), ('most', 'ADV'), ('wretchedly', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('ate', 'VERB'), ('more', 'ADV'), ('and', 'CCONJ'), ('was', 'AUX'), ('calmer', 'ADJ'), ('than', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('had', 'AUX'), ('expected', 'VERB'), ('\n', 'SPACE'), ('Had', 'AUX'), ('she', 'PRON'), ('tried', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('or', 'CCONJ'), ('had', 'AUX'), ('she', 'PRON'), ('been', 'AUX'), ('conscious', 'ADJ'), ('of', 'ADP'), ('half', 'DET'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('wellmeant', 'ADJ'), ('but', 'CCONJ'), ('illjudged', 'ADJ'), ('attentions', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('this', 'DET'), ('calmness', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('maintained', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('not', 'PART'), ('a', 'DET'), ('syllable', 'NOUN'), ('escaped', 'VERB'), ('her', 'PRON'), ('lips', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('abstraction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('preserved', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('was', 'AUX'), ('passing', 'VERB'), ('before', 'SCONJ'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('did', 'VERB'), ('justice', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('kindness', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('its', 'PRON'), ('effusions', 'NOUN'), ('were', 'AUX'), ('often', 'ADV'), ('distressing', 'VERB'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('almost', 'ADV'), ('ridiculous', 'ADJ'), ('made', 'VERB'), ('her', 'PRON'), ('those', 'DET'), ('acknowledgments', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('returned', 'VERB'), ('her', 'PRON'), ('those', 'DET'), ('civilities', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('sister', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('make', 'VERB'), ('or', 'CCONJ'), ('return', 'VERB'), ('for', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('Their', 'PRON'), ('good', 'ADJ'), ('friend', 'NOUN'), ('saw', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('unhappy', 'ADJ'), ('and', 'CCONJ'), ('felt', 'VERB'), ('that', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('due', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('which', 'PRON'), ('might', 'AUX'), ('make', 'VERB'), ('her', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('less', 'ADV'), ('so', 'ADV'), ('\n', 'SPACE'), ('She', 'PRON'), ('treated', 'VERB'), ('her', 'PRON'), ('therefore', 'ADV'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('indulgent', 'ADJ'), ('fondness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('parent', 'NOUN'), ('towards', 'ADP'), ('a', 'DET'), ('favourite', 'ADJ'), ('child', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('day', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('its', 'PRON'), ('holidays', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('best', 'ADJ'), ('place', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('tempted', 'VERB'), ('to', 'PART'), ('eat', 'VERB'), ('by', 'ADP'), ('every', 'DET'), ('delicacy', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('amused', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('relation', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('news', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('Had', 'AUX'), ('not', 'PART'), ('Elinor', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('sad', 'ADJ'), ('countenance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('seen', 'VERB'), ('a', 'DET'), ('check', 'NOUN'), ('to', 'ADP'), ('all', 'PRON'), ('mirth', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('entertained', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('endeavours', 'VERB'), ('to', 'PART'), ('cure', 'VERB'), ('a', 'DET'), ('disappointment', 'NOUN'), ('in', 'ADP'), ('love', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('a', 'DET'), ('variety', 'NOUN'), ('of', 'ADP'), ('sweetmeats', 'NOUN'), ('and', 'CCONJ'), ('olives', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('good', 'ADJ'), ('fire', 'NOUN'), ('\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('however', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('this', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('forced', 'VERB'), ('by', 'ADP'), ('continual', 'ADJ'), ('repetition', 'NOUN'), ('on', 'ADP'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('stay', 'VERB'), ('no', 'ADV'), ('longer', 'ADV'), (' ', 'SPACE'), ('With', 'ADP'), ('a', 'DET'), ('hasty', 'ADJ'), ('exclamation', 'NOUN'), ('of', 'ADP'), ('Misery', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('sign', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('follow', 'VERB'), ('her', 'PRON'), ('she', 'PRON'), ('directly', 'ADV'), ('got', 'VERB'), ('\n', 'SPACE'), ('up', 'ADP'), ('and', 'CCONJ'), ('hurried', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'ADJ'), ('soul', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('gone', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('it', 'PRON'), ('grieves', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('declare', 'VERB'), ('if', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('gone', 'VERB'), ('away', 'ADV'), ('without', 'ADP'), ('finishing', 'VERB'), ('her', 'PRON'), ('wine', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('the', 'DET'), ('dried', 'VERB'), ('\n', 'SPACE'), ('cherries', 'NOUN'), ('too', 'ADV'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('nothing', 'PRON'), ('seems', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('her', 'PRON'), ('any', 'DET'), ('good', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('knew', 'VERB'), ('of', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('like', 'VERB'), ('I', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('send', 'VERB'), ('all', 'ADV'), ('over', 'ADP'), ('the', 'DET'), ('town', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Well', 'INTJ'), ('it', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('oddest', 'ADJ'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('that', 'SCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('should', 'AUX'), ('use', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('pretty', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('ill', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('when', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('plenty', 'NOUN'), ('of', 'ADP'), ('money', 'NOUN'), ('on', 'ADP'), ('one', 'NUM'), ('side', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('next', 'ADJ'), ('to', 'ADP'), ('none', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('Lord', 'PROPN'), ('bless', 'VERB'), ('you', 'PRON'), ('they', 'PRON'), ('care', 'VERB'), ('\n', 'SPACE'), ('no', 'PRON'), ('more', 'ADV'), ('about', 'ADP'), ('such', 'ADJ'), ('things', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('lady', 'NOUN'), ('thenMiss', 'ADP'), ('Grey', 'PROPN'), ('I', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('called', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('very', 'ADV'), ('rich', 'ADJ'), ('\n\n', 'SPACE'), ('Fifty', 'PROPN'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('ever', 'ADV'), ('see', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('a', 'DET'), ('smart', 'ADJ'), ('stylish', 'ADJ'), ('girl', 'NOUN'), ('they', 'PRON'), ('say', 'VERB'), ('but', 'CCONJ'), ('not', 'PART'), ('handsome', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('remember', 'VERB'), ('her', 'PRON'), ('aunt', 'NOUN'), ('very', 'ADV'), ('well', 'ADV'), ('Biddy', 'PROPN'), ('Henshawe', 'PROPN'), ('she', 'PRON'), ('married', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('wealthy', 'ADJ'), ('man', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('family', 'NOUN'), ('are', 'AUX'), ('all', 'ADV'), ('rich', 'ADJ'), ('together', 'ADV'), ('\n', 'SPACE'), ('Fifty', 'PROPN'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('and', 'CCONJ'), ('by', 'ADP'), ('all', 'DET'), ('accounts', 'NOUN'), ('it', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('come', 'VERB'), ('\n', 'SPACE'), ('before', 'ADP'), ('its', 'PRON'), ('wanted', 'VERB'), ('for', 'ADP'), ('they', 'PRON'), ('say', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('all', 'ADV'), ('to', 'ADP'), ('pieces', 'NOUN'), ('\n', 'SPACE'), ('No', 'DET'), ('wonder', 'NOUN'), ('dashing', 'VERB'), ('about', 'ADP'), ('with', 'ADP'), ('his', 'PRON'), ('curricle', 'NOUN'), ('and', 'CCONJ'), ('hunters', 'NOUN'), ('\n', 'SPACE'), ('Well', 'INTJ'), ('it', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('signify', 'VERB'), ('talking', 'VERB'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('be', 'AUX'), ('who', 'PRON'), ('he', 'PRON'), ('will', 'AUX'), ('comes', 'VERB'), ('and', 'CCONJ'), ('makes', 'VERB'), ('love', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('pretty', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('promises', 'VERB'), ('marriage', 'NOUN'), ('he', 'PRON'), ('has', 'VERB'), ('no', 'DET'), ('business', 'NOUN'), ('to', 'PART'), ('fly', 'VERB'), ('off', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('his', 'PRON'), ('word', 'NOUN'), ('only', 'ADV'), ('because', 'SCONJ'), ('he', 'PRON'), ('grows', 'VERB'), ('poor', 'ADJ'), ('and', 'CCONJ'), ('a', 'DET'), ('richer', 'ADJ'), ('\n', 'SPACE'), ('girl', 'NOUN'), ('is', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('have', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('do', 'AUX'), ('nt', 'PART'), ('he', 'PRON'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('sell', 'VERB'), ('his', 'PRON'), ('horses', 'NOUN'), ('let', 'VERB'), ('his', 'PRON'), ('house', 'NOUN'), ('turn', 'VERB'), ('off', 'ADP'), ('his', 'PRON'), ('servants', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('make', 'VERB'), ('a', 'DET'), ('thorough', 'ADJ'), ('reform', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), ('I', 'PRON'), ('warrant', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('wait', 'VERB'), ('till', 'SCONJ'), ('matters', 'NOUN'), ('\n', 'SPACE'), ('came', 'VERB'), ('round', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('that', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('do', 'VERB'), ('nowadays', 'ADV'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('way', 'NOUN'), ('of', 'ADP'), ('pleasure', 'NOUN'), ('can', 'AUX'), ('ever', 'ADV'), ('be', 'AUX'), ('given', 'VERB'), ('up', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('young', 'ADJ'), ('men', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('this', 'DET'), ('age', 'NOUN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('kind', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('girl', 'NOUN'), ('Miss', 'PROPN'), ('Grey', 'PROPN'), ('is', 'AUX'), ('\n', 'SPACE'), ('Is', 'AUX'), ('she', 'PRON'), ('said', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('amiable', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('heard', 'VERB'), ('any', 'DET'), ('harm', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('indeed', 'ADV'), ('I', 'PRON'), ('hardly', 'ADV'), ('ever', 'ADV'), ('\n', 'SPACE'), ('heard', 'VERB'), ('her', 'PRON'), ('mentioned', 'VERB'), ('except', 'SCONJ'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Taylor', 'PROPN'), ('did', 'AUX'), ('say', 'VERB'), ('\n', 'SPACE'), ('this', 'DET'), ('morning', 'NOUN'), ('that', 'SCONJ'), ('one', 'NUM'), ('day', 'NOUN'), ('Miss', 'PROPN'), ('Walker', 'PROPN'), ('hinted', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('believed', 'VERB'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ellison', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('sorry', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'VERB'), ('Miss', 'PROPN'), ('Grey', 'PROPN'), ('married', 'VERB'), ('for', 'SCONJ'), ('she', 'PRON'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ellison', 'PROPN'), ('could', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('agree', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('who', 'PRON'), ('are', 'AUX'), ('the', 'DET'), ('Ellisons', 'NOUN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('guardians', 'NOUN'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('now', 'ADV'), ('she', 'PRON'), ('is', 'AUX'), ('of', 'ADP'), ('age', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('may', 'AUX'), ('choose', 'VERB'), ('for', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('a', 'DET'), ('pretty', 'ADJ'), ('choice', 'NOUN'), ('she', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('madeWhat', 'ADV'), ('now', 'ADV'), ('after', 'ADP'), ('pausing', 'VERB'), ('a', 'DET'), ('momentyour', 'ADJ'), ('poor', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('gone', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('to', 'PART'), ('moan', 'VERB'), ('by', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('Is', 'AUX'), ('there', 'PRON'), ('nothing', 'PRON'), ('one', 'PRON'), ('can', 'AUX'), ('get', 'VERB'), ('to', 'PART'), ('comfort', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Poor', 'PROPN'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('seems', 'VERB'), ('quite', 'ADV'), ('cruel', 'ADJ'), ('to', 'PART'), ('let', 'VERB'), ('her', 'PRON'), ('be', 'AUX'), ('alone', 'ADJ'), (' ', 'SPACE'), ('Well', 'INTJ'), ('byandby', 'ADJ'), ('we', 'PRON'), ('\n', 'SPACE'), ('shall', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('friends', 'NOUN'), ('and', 'CCONJ'), ('that', 'PRON'), ('will', 'AUX'), ('amuse', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('What', 'PRON'), ('shall', 'AUX'), ('we', 'PRON'), ('play', 'VERB'), ('at', 'ADP'), (' ', 'SPACE'), ('She', 'PRON'), ('hates', 'VERB'), ('whist', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('but', 'CCONJ'), ('is', 'AUX'), ('there', 'PRON'), ('\n', 'SPACE'), ('no', 'DET'), ('round', 'ADJ'), ('game', 'NOUN'), ('she', 'PRON'), ('cares', 'VERB'), ('for', 'ADP'), ('\n\n', 'SPACE'), ('Dear', 'ADJ'), ('maam', 'NOUN'), ('this', 'DET'), ('kindness', 'NOUN'), ('is', 'AUX'), ('quite', 'ADV'), ('unnecessary', 'ADJ'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('will', 'AUX'), ('not', 'PART'), ('leave', 'VERB'), ('her', 'PRON'), ('room', 'NOUN'), ('again', 'ADV'), ('\n', 'SPACE'), ('this', 'DET'), ('evening', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('persuade', 'VERB'), ('her', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('\n', 'SPACE'), ('early', 'ADV'), ('to', 'ADP'), ('bed', 'NOUN'), ('for', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('she', 'PRON'), ('wants', 'VERB'), ('rest', 'NOUN'), ('\n\n', 'SPACE'), ('Aye', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('that', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('best', 'ADJ'), ('for', 'SCONJ'), ('her', 'PRON'), (' ', 'SPACE'), ('Let', 'VERB'), ('her', 'PRON'), ('name', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('own', 'ADJ'), ('supper', 'NOUN'), ('and', 'CCONJ'), ('go', 'VERB'), ('to', 'ADP'), ('bed', 'NOUN'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('no', 'DET'), ('wonder', 'NOUN'), ('she', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('looking', 'VERB'), ('so', 'ADV'), ('bad', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('cast', 'VERB'), ('down', 'ADP'), ('this', 'DET'), ('last', 'ADJ'), ('week', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('\n', 'SPACE'), ('for', 'ADP'), ('this', 'DET'), ('matter', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('has', 'AUX'), ('been', 'AUX'), ('hanging', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('as', 'ADV'), ('\n', 'SPACE'), ('long', 'ADV'), ('as', 'ADP'), ('that', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('the', 'DET'), ('letter', 'NOUN'), ('that', 'PRON'), ('came', 'VERB'), ('today', 'NOUN'), ('finished', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Poor', 'ADJ'), ('soul', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('had', 'VERB'), ('a', 'DET'), ('notion', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('joked', 'VERB'), ('her', 'PRON'), ('about', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('money', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('then', 'ADV'), ('you', 'PRON'), ('know', 'VERB'), ('how', 'SCONJ'), ('should', 'AUX'), ('I', 'PRON'), ('guess', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('made', 'VERB'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('a', 'DET'), ('common', 'ADJ'), ('love', 'NOUN'), ('letter', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('young', 'ADJ'), ('people', 'NOUN'), ('like', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('laughed', 'VERB'), ('at', 'ADP'), ('about', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('concerned', 'ADJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('my', 'PRON'), ('daughters', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('when', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('hear', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('If', 'SCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('my', 'PRON'), ('senses', 'NOUN'), ('about', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('called', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), ('in', 'ADP'), ('my', 'PRON'), ('way', 'NOUN'), ('home', 'ADV'), ('and', 'CCONJ'), ('told', 'VERB'), ('them', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('them', 'PRON'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('unnecessary', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('for', 'SCONJ'), ('you', 'PRON'), ('to', 'PART'), ('caution', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('against', 'ADP'), ('ever', 'ADV'), ('naming', 'VERB'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('making', 'VERB'), ('the', 'DET'), ('slightest', 'ADJ'), ('allusion', 'NOUN'), ('to', 'ADP'), ('what', 'PRON'), ('has', 'AUX'), ('passed', 'VERB'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('my', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('Their', 'PRON'), ('own', 'ADJ'), ('goodnature', 'NOUN'), ('must', 'AUX'), ('point', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('to', 'ADP'), ('them', 'PRON'), ('the', 'DET'), ('real', 'ADJ'), ('cruelty', 'NOUN'), ('of', 'ADP'), ('appearing', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('about', 'ADP'), ('it', 'PRON'), ('when', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('present', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('less', 'ADJ'), ('that', 'PRON'), ('may', 'AUX'), ('ever', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('said', 'VERB'), ('to', 'ADP'), ('myself', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('the', 'PRON'), ('more', 'ADV'), ('my', 'PRON'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('be', 'AUX'), ('spared', 'VERB'), ('as', 'SCONJ'), ('you', 'PRON'), ('my', 'PRON'), ('dear', 'ADJ'), ('madam', 'NOUN'), ('will', 'AUX'), ('easily', 'ADV'), ('believe', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Lord', 'PROPN'), ('yes', 'INTJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('do', 'VERB'), ('indeed', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('terrible', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('you', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('it', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('and', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('mention', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('about', 'ADP'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('saw', 'VERB'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('all', 'DET'), ('dinner', 'NOUN'), ('time', 'NOUN'), ('\n', 'SPACE'), ('No', 'PRON'), ('more', 'ADV'), ('would', 'AUX'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('nor', 'CCONJ'), ('my', 'PRON'), ('daughters', 'NOUN'), ('for', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('\n', 'SPACE'), ('all', 'PRON'), ('very', 'ADV'), ('thoughtful', 'ADJ'), ('and', 'CCONJ'), ('considerate', 'ADJ'), ('especially', 'ADV'), ('if', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('give', 'VERB'), ('them', 'PRON'), ('a', 'DET'), ('hint', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('certainly', 'ADV'), ('will', 'AUX'), (' ', 'SPACE'), ('For', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('the', 'DET'), ('less', 'ADJ'), ('that', 'PRON'), ('is', 'AUX'), ('said', 'VERB'), ('about', 'ADP'), ('such', 'ADJ'), ('things', 'NOUN'), ('the', 'PRON'), ('better', 'ADJ'), ('\n', 'SPACE'), ('the', 'PRON'), ('sooner', 'ADV'), ('tis', 'NOUN'), ('blown', 'VERB'), ('over', 'ADP'), ('and', 'CCONJ'), ('forgot', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('what', 'PRON'), ('does', 'AUX'), ('\n', 'SPACE'), ('talking', 'VERB'), ('ever', 'ADV'), ('do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('this', 'DET'), ('affair', 'NOUN'), ('it', 'PRON'), ('can', 'AUX'), ('only', 'ADV'), ('do', 'AUX'), ('harm', 'VERB'), ('more', 'ADV'), ('so', 'ADV'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('than', 'ADP'), ('in', 'ADP'), ('many', 'ADJ'), ('cases', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('similar', 'ADJ'), ('kind', 'NOUN'), ('for', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('has', 'AUX'), ('been', 'AUX'), ('attended', 'VERB'), ('by', 'ADP'), ('circumstances', 'NOUN'), ('which', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('one', 'NUM'), ('concerned', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('make', 'VERB'), ('it', 'PRON'), ('unfit', 'ADJ'), ('to', 'PART'), ('become', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('public', 'ADJ'), ('conversation', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('do', 'VERB'), ('THIS', 'DET'), ('justice', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughbyhe', 'PROPN'), ('has', 'AUX'), ('broken', 'VERB'), ('no', 'DET'), ('positive', 'ADJ'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('my', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Law', 'PROPN'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('pretend', 'VERB'), ('to', 'PART'), ('defend', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('No', 'DET'), ('positive', 'ADJ'), ('engagement', 'NOUN'), ('indeed', 'ADV'), ('after', 'ADP'), ('taking', 'VERB'), ('her', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('over', 'ADP'), ('Allenham', 'PROPN'), ('House', 'PROPN'), ('and', 'CCONJ'), ('fixing', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('very', 'ADJ'), ('rooms', 'NOUN'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('to', 'PART'), ('live', 'VERB'), ('in', 'ADP'), ('hereafter', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('for', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('sake', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('press', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('farther', 'ADV'), ('and', 'CCONJ'), ('she', 'PRON'), ('hoped', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('required', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('Willoughbys', 'PROPN'), ('since', 'SCONJ'), ('though', 'SCONJ'), ('Marianne', 'PROPN'), ('might', 'AUX'), ('lose', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('could', 'AUX'), ('gain', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('enforcement', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('real', 'ADJ'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('silence', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('natural', 'ADJ'), ('hilarity', 'NOUN'), ('burst', 'VERB'), ('forth', 'ADV'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('tis', 'NOUN'), ('a', 'DET'), ('true', 'ADJ'), ('saying', 'NOUN'), ('about', 'ADP'), ('an', 'DET'), ('illwind', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('all', 'DET'), ('the', 'PRON'), ('better', 'ADJ'), ('for', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('last', 'ADJ'), ('aye', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('will', 'AUX'), (' ', 'SPACE'), ('Mind', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('now', 'ADV'), ('if', 'SCONJ'), ('they', 'PRON'), ('ant', 'ADV'), ('married', 'VERB'), ('by', 'ADP'), ('Midsummer', 'PROPN'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('how', 'SCONJ'), ('hell', 'NOUN'), ('\n', 'SPACE'), ('chuckle', 'VERB'), ('over', 'ADP'), ('this', 'DET'), ('news', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('he', 'PRON'), ('will', 'AUX'), ('come', 'VERB'), ('tonight', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('all', 'PRON'), ('to', 'ADP'), ('one', 'NUM'), ('a', 'DET'), ('better', 'ADJ'), ('match', 'NOUN'), ('for', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('Two', 'NUM'), ('thousand', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('without', 'ADP'), ('debt', 'NOUN'), ('or', 'CCONJ'), ('drawbackexcept', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('little', 'ADJ'), ('lovechild', 'PROPN'), ('indeed', 'ADV'), ('aye', 'VERB'), ('I', 'PRON'), ('had', 'AUX'), ('forgot', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('prenticed', 'VERB'), ('out', 'ADP'), ('at', 'ADP'), ('a', 'DET'), ('small', 'ADJ'), ('cost', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('what', 'PRON'), ('does', 'AUX'), ('it', 'PRON'), ('signify', 'VERB'), (' ', 'SPACE'), ('Delaford', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('nice', 'ADJ'), ('place', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('tell', 'VERB'), ('you', 'PRON'), ('exactly', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('call', 'VERB'), ('a', 'DET'), ('nice', 'ADJ'), ('old', 'ADJ'), ('fashioned', 'ADJ'), ('place', 'NOUN'), ('\n', 'SPACE'), ('full', 'ADJ'), ('of', 'ADP'), ('comforts', 'NOUN'), ('and', 'CCONJ'), ('conveniences', 'NOUN'), ('quite', 'ADV'), ('shut', 'VERB'), ('in', 'ADP'), ('with', 'ADP'), ('great', 'ADJ'), ('\n', 'SPACE'), ('garden', 'NOUN'), ('walls', 'NOUN'), ('that', 'PRON'), ('are', 'AUX'), ('covered', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('fruittrees', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('and', 'CCONJ'), ('such', 'DET'), ('a', 'DET'), ('mulberry', 'NOUN'), ('tree', 'NOUN'), ('in', 'ADP'), ('one', 'NUM'), ('corner', 'NOUN'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('how', 'SCONJ'), ('Charlotte', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('did', 'AUX'), ('stuff', 'NOUN'), ('the', 'DET'), ('only', 'ADJ'), ('time', 'NOUN'), ('we', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('there', 'PRON'), (' ', 'SPACE'), ('Then', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('a', 'DET'), ('dovecote', 'NOUN'), ('some', 'DET'), ('delightful', 'ADJ'), ('\n', 'SPACE'), ('stewponds', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('very', 'ADV'), ('pretty', 'ADJ'), ('canal', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('short', 'ADJ'), ('that', 'SCONJ'), ('one', 'PRON'), ('could', 'AUX'), ('wish', 'VERB'), ('for', 'ADP'), ('and', 'CCONJ'), ('moreover', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('close', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('church', 'NOUN'), ('and', 'CCONJ'), ('only', 'ADV'), ('a', 'DET'), ('quarter', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('mile', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('turnpikeroad', 'NOUN'), ('so', 'ADV'), ('tis', 'PROPN'), ('never', 'ADV'), ('dull', 'ADJ'), ('for', 'ADP'), ('if', 'SCONJ'), ('you', 'PRON'), ('only', 'ADV'), ('\n', 'SPACE'), ('go', 'VERB'), ('and', 'CCONJ'), ('sit', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('an', 'DET'), ('old', 'ADJ'), ('yew', 'NOUN'), ('arbour', 'NOUN'), ('behind', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('may', 'AUX'), ('see', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('carriages', 'NOUN'), ('that', 'PRON'), ('pass', 'VERB'), ('along', 'ADP'), ('\n', 'SPACE'), ('Oh', 'INTJ'), ('tis', 'NOUN'), ('a', 'DET'), ('nice', 'ADJ'), ('place', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('butcher', 'NOUN'), ('hard', 'ADV'), ('by', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('village', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('parsonagehouse', 'NOUN'), ('within', 'ADP'), ('a', 'DET'), ('stones', 'NOUN'), ('throw', 'VERB'), ('\n', 'SPACE'), ('To', 'ADP'), ('my', 'PRON'), ('fancy', 'NOUN'), ('a', 'DET'), ('thousand', 'NUM'), ('times', 'NOUN'), ('prettier', 'ADJ'), ('than', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('send', 'VERB'), ('three', 'NUM'), ('miles', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('meat', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('have', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('neighbour', 'ADJ'), ('nearer', 'NOUN'), ('than', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('Well', 'INTJ'), ('I', 'PRON'), ('shall', 'AUX'), ('spirit', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('Colonel', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('One', 'NUM'), ('shoulder', 'NOUN'), ('of', 'ADP'), ('mutton', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('drives', 'VERB'), ('another', 'PRON'), ('down', 'ADP'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('we', 'PRON'), ('CAN', 'AUX'), ('but', 'CCONJ'), ('put', 'VERB'), ('Willoughby', 'PROPN'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('\n\n', 'SPACE'), ('Ay', 'INTJ'), ('if', 'SCONJ'), ('we', 'PRON'), ('can', 'AUX'), ('do', 'VERB'), ('THAT', 'DET'), ('Maam', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('we', 'PRON'), ('shall', 'AUX'), ('do', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('with', 'ADP'), ('or', 'CCONJ'), ('without', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('then', 'ADV'), ('rising', 'VERB'), ('she', 'PRON'), ('went', 'VERB'), ('away', 'ADV'), ('to', 'PART'), ('join', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('whom', 'PRON'), ('she', 'PRON'), ('found', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('expected', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('leaning', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('silent', 'ADJ'), ('misery', 'NOUN'), ('over', 'ADP'), ('the', 'DET'), ('small', 'ADJ'), ('remains', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('fire', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('till', 'SCONJ'), ('Elinors', 'PROPN'), ('entrance', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('her', 'PRON'), ('only', 'ADV'), ('light', 'ADJ'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('had', 'AUX'), ('better', 'ADV'), ('leave', 'VERB'), ('me', 'PRON'), ('was', 'AUX'), ('all', 'DET'), ('the', 'DET'), ('notice', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('received', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('leave', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('if', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('go', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('bed', 'NOUN'), ('But', 'CCONJ'), ('this', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('momentary', 'ADJ'), ('perverseness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('impatient', 'ADJ'), ('suffering', 'NOUN'), ('she', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('refused', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('Her', 'PRON'), ('sisters', 'NOUN'), ('earnest', 'ADJ'), ('though', 'SCONJ'), ('gentle', 'ADJ'), ('persuasion', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('soon', 'ADV'), ('softened', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('compliance', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('lay', 'VERB'), ('her', 'PRON'), ('aching', 'VERB'), ('head', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('pillow', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('hoped', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('way', 'NOUN'), ('to', 'PART'), ('get', 'VERB'), ('some', 'DET'), ('quiet', 'ADJ'), ('rest', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('left', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('whither', 'NOUN'), ('she', 'PRON'), ('then', 'ADV'), ('repaired', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('soon', 'ADV'), ('joined', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('wineglass', 'NOUN'), ('\n', 'SPACE'), ('full', 'ADJ'), ('of', 'ADP'), ('something', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('entering', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('just', 'ADV'), ('recollected', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('some', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('finest', 'ADJ'), ('old', 'ADJ'), ('Constantia', 'PROPN'), ('wine', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('house', 'NOUN'), ('that', 'PRON'), ('ever', 'ADV'), ('was', 'AUX'), ('tasted', 'VERB'), ('so', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('a', 'DET'), ('glass', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('poor', 'ADJ'), ('husband', 'NOUN'), ('how', 'SCONJ'), ('fond', 'ADJ'), ('he', 'PRON'), ('was', 'AUX'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Whenever', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('touch', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('old', 'ADJ'), ('colicky', 'ADJ'), ('gout', 'NOUN'), ('he', 'PRON'), ('said', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('did', 'VERB'), ('him', 'PRON'), ('more', 'ADV'), ('good', 'ADJ'), ('than', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('Do', 'AUX'), ('take', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Dear', 'PROPN'), ('Maam', 'PROPN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('smiling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('difference', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('complaints', 'NOUN'), ('for', 'ADP'), ('which', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('recommended', 'VERB'), ('how', 'SCONJ'), ('good', 'ADJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('just', 'ADV'), ('left', 'VERB'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('bed', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('\n', 'SPACE'), ('almost', 'ADV'), ('asleep', 'ADJ'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('nothing', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('service', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'ADP'), ('rest', 'NOUN'), ('if', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('give', 'VERB'), ('me', 'PRON'), ('leave', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('drink', 'VERB'), ('the', 'DET'), ('wine', 'NOUN'), ('myself', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('though', 'SCONJ'), ('regretting', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('\n', 'SPACE'), ('five', 'NUM'), ('minutes', 'NOUN'), ('earlier', 'ADV'), ('was', 'AUX'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('compromise', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('swallowed', 'VERB'), ('the', 'DET'), ('chief', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('reflected', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('its', 'PRON'), ('effects', 'NOUN'), ('on', 'ADP'), ('a', 'DET'), ('colicky', 'ADJ'), ('gout', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('little', 'ADJ'), ('importance', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('its', 'PRON'), ('healing', 'VERB'), ('powers', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('a', 'DET'), ('disappointed', 'ADJ'), ('heart', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('as', 'ADV'), ('reasonably', 'ADV'), ('tried', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('herself', 'PRON'), ('as', 'ADP'), ('on', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('came', 'VERB'), ('in', 'ADP'), ('while', 'SCONJ'), ('the', 'DET'), ('party', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('tea', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('of', 'ADP'), ('looking', 'VERB'), ('round', 'ADV'), ('the', 'DET'), ('room', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('immediately', 'ADV'), ('fancied', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('neither', 'CCONJ'), ('expected', 'VERB'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('wished', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('there', 'ADV'), ('and', 'CCONJ'), ('in', 'ADP'), ('short', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('already', 'ADV'), ('aware', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('occasioned', 'VERB'), ('her', 'PRON'), ('absence', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('struck', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('thought', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('soon', 'ADV'), ('after', 'ADP'), ('his', 'PRON'), ('entrance', 'NOUN'), ('she', 'PRON'), ('walked', 'VERB'), ('across', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('teatable', 'NOUN'), ('where', 'SCONJ'), ('Elinor', 'PROPN'), ('presided', 'VERB'), ('and', 'CCONJ'), ('whispered', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('Colonel', 'PROPN'), ('looks', 'VERB'), ('as', 'ADV'), ('grave', 'ADJ'), ('as', 'ADP'), ('ever', 'ADV'), ('you', 'PRON'), ('see', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('knows', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('do', 'AUX'), ('tell', 'VERB'), ('him', 'PRON'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('shortly', 'ADV'), ('afterwards', 'ADV'), ('drew', 'VERB'), ('a', 'DET'), ('chair', 'NOUN'), ('close', 'ADV'), ('to', 'ADP'), ('hers', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('which', 'PRON'), ('perfectly', 'ADV'), ('assured', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('good', 'ADJ'), ('information', 'NOUN'), ('inquired', 'VERB'), ('after', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('is', 'AUX'), ('not', 'PART'), ('well', 'ADV'), ('said', 'VERB'), ('she', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('indisposed', 'VERB'), ('all', 'DET'), ('day', 'NOUN'), ('and', 'CCONJ'), ('we', 'PRON'), ('have', 'AUX'), ('persuaded', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('bed', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('then', 'ADV'), ('he', 'PRON'), ('hesitatingly', 'ADV'), ('replied', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('heard', 'VERB'), ('this', 'DET'), ('morning', 'NOUN'), ('may', 'AUX'), ('bethere', 'ADV'), ('may', 'AUX'), ('be', 'AUX'), ('more', 'ADJ'), ('truth', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('believe', 'VERB'), ('possible', 'ADJ'), ('at', 'ADP'), ('first', 'ADV'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('did', 'AUX'), ('you', 'PRON'), ('hear', 'VERB'), ('\n\n', 'SPACE'), ('That', 'SCONJ'), ('a', 'DET'), ('gentleman', 'NOUN'), ('whom', 'PRON'), ('I', 'PRON'), ('had', 'VERB'), ('reason', 'NOUN'), ('to', 'ADP'), ('thinkin', 'NOUN'), ('short', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('whom', 'PRON'), ('I', 'PRON'), ('KNEW', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('engagedbut', 'ADV'), ('how', 'SCONJ'), ('shall', 'AUX'), ('I', 'PRON'), ('\n', 'SPACE'), ('tell', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('already', 'ADV'), ('as', 'SCONJ'), ('surely', 'ADV'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('spared', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('mean', 'VERB'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('forced', 'VERB'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('marriage', 'NOUN'), ('with', 'ADP'), ('Miss', 'PROPN'), ('Grey', 'PROPN'), (' ', 'SPACE'), ('Yes', 'INTJ'), ('we', 'PRON'), ('DO', 'AUX'), ('\n', 'SPACE'), ('know', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('seems', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('day', 'NOUN'), ('of', 'ADP'), ('general', 'ADJ'), ('\n', 'SPACE'), ('elucidation', 'NOUN'), ('for', 'ADP'), ('this', 'DET'), ('very', 'ADJ'), ('morning', 'NOUN'), ('first', 'ADV'), ('unfolded', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('is', 'AUX'), ('unfathomable', 'ADJ'), (' ', 'SPACE'), ('Where', 'SCONJ'), ('did', 'AUX'), ('you', 'PRON'), ('hear', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('stationers', 'NOUN'), ('shop', 'NOUN'), ('in', 'ADP'), ('Pall', 'PROPN'), ('Mall', 'PROPN'), ('where', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('business', 'NOUN'), (' ', 'SPACE'), ('Two', 'NUM'), ('ladies', 'NOUN'), ('were', 'AUX'), ('waiting', 'VERB'), ('for', 'ADP'), ('their', 'PRON'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('one', 'NUM'), ('of', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('giving', 'VERB'), ('the', 'DET'), ('other', 'ADJ'), ('an', 'DET'), ('account', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('intended', 'VERB'), ('match', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('so', 'ADV'), ('little', 'ADJ'), ('attempting', 'VERB'), ('concealment', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('me', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('hear', 'VERB'), ('all', 'DET'), (' ', 'SPACE'), ('The', 'DET'), ('name', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('John', 'PROPN'), ('Willoughby', 'PROPN'), ('frequently', 'ADV'), ('repeated', 'VERB'), ('\n', 'SPACE'), ('first', 'ADV'), ('caught', 'VERB'), ('my', 'PRON'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('what', 'PRON'), ('followed', 'VERB'), ('was', 'AUX'), ('a', 'DET'), ('positive', 'ADJ'), ('\n', 'SPACE'), ('assertion', 'NOUN'), ('that', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('finally', 'ADV'), ('settled', 'VERB'), ('\n', 'SPACE'), ('respecting', 'VERB'), ('his', 'PRON'), ('marriage', 'NOUN'), ('with', 'ADP'), ('Miss', 'PROPN'), ('Greyit', 'PROPN'), ('was', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('secretit', 'NOUN'), ('would', 'AUX'), ('take', 'VERB'), ('place', 'NOUN'), ('even', 'ADV'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('many', 'ADJ'), ('particulars', 'NOUN'), ('of', 'ADP'), ('preparations', 'NOUN'), ('and', 'CCONJ'), ('other', 'ADJ'), ('matters', 'NOUN'), ('\n', 'SPACE'), ('One', 'NUM'), ('thing', 'NOUN'), ('especially', 'ADV'), ('I', 'PRON'), ('remember', 'VERB'), ('because', 'SCONJ'), ('it', 'PRON'), ('served', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('identify', 'VERB'), ('the', 'DET'), ('man', 'NOUN'), ('still', 'ADV'), ('moreas', 'NOUN'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('ceremony', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('over', 'ADP'), ('they', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('his', 'PRON'), ('seat', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Somersetshire', 'PROPN'), (' ', 'SPACE'), ('My', 'PRON'), ('astonishmentbut', 'NOUN'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('to', 'PART'), ('describe', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('communicative', 'ADJ'), ('\n', 'SPACE'), ('lady', 'NOUN'), ('I', 'PRON'), ('learnt', 'VERB'), ('on', 'ADP'), ('inquiry', 'NOUN'), ('for', 'ADP'), ('I', 'PRON'), ('stayed', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('shop', 'NOUN'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('gone', 'VERB'), ('was', 'AUX'), ('a', 'DET'), ('Mrs', 'PROPN'), ('Ellison', 'PROPN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('since', 'SCONJ'), ('informed', 'VERB'), ('is', 'AUX'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Greys', 'PROPN'), ('guardian', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), (' ', 'SPACE'), ('But', 'CCONJ'), ('have', 'AUX'), ('you', 'PRON'), ('likewise', 'ADV'), ('heard', 'VERB'), ('that', 'SCONJ'), ('Miss', 'PROPN'), ('Grey', 'PROPN'), ('\n', 'SPACE'), ('has', 'VERB'), ('fifty', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('that', 'PRON'), ('if', 'SCONJ'), ('in', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('we', 'PRON'), ('may', 'AUX'), ('find', 'VERB'), ('an', 'DET'), ('explanation', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('but', 'CCONJ'), ('Willoughby', 'PROPN'), ('is', 'AUX'), ('capableat', 'ADV'), ('least', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('thinkhe', 'VERB'), ('stopped', 'VERB'), ('a', 'DET'), ('moment', 'NOUN'), ('then', 'ADV'), ('added', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('distrust', 'VERB'), ('itself', 'PRON'), ('And', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('did', 'AUX'), ('she', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('sufferings', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('severe', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('to', 'PART'), ('hope', 'VERB'), ('that', 'SCONJ'), ('they', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('proportionately', 'ADV'), ('short', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('most', 'ADV'), ('cruel', 'ADJ'), ('affliction', 'NOUN'), (' ', 'SPACE'), ('Till', 'SCONJ'), ('yesterday', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('she', 'PRON'), ('never', 'ADV'), ('doubted', 'VERB'), ('his', 'PRON'), ('regard', 'NOUN'), ('and', 'CCONJ'), ('even', 'ADV'), ('now', 'ADV'), ('\n', 'SPACE'), ('perhapsbut', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('almost', 'ADV'), ('convinced', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('\n', 'SPACE'), ('really', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('deceitful', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('some', 'DET'), ('points', 'NOUN'), ('there', 'PRON'), ('seems', 'VERB'), ('a', 'DET'), ('hardness', 'NOUN'), ('of', 'ADP'), ('heart', 'NOUN'), ('about', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Ah', 'INTJ'), ('said', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('there', 'PRON'), ('is', 'VERB'), ('indeed', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('\n', 'SPACE'), ('your', 'PRON'), ('sister', 'NOUN'), ('does', 'AUX'), ('notI', 'ADV'), ('think', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('soshe', 'PROPN'), ('does', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('consider', 'VERB'), ('quite', 'ADV'), ('as', 'SCONJ'), ('you', 'PRON'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('her', 'PRON'), ('disposition', 'NOUN'), ('and', 'CCONJ'), ('may', 'AUX'), ('believe', 'VERB'), ('how', 'SCONJ'), ('eagerly', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('still', 'ADV'), ('justify', 'VERB'), ('him', 'PRON'), ('if', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('made', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('and', 'CCONJ'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('removal', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('teathings', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('arrangement', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('card', 'NOUN'), ('parties', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('subject', 'NOUN'), ('was', 'AUX'), ('necessarily', 'ADV'), ('dropped', 'VERB'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('watched', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('while', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('talking', 'VERB'), ('and', 'CCONJ'), ('who', 'PRON'), ('\n', 'SPACE'), ('expected', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('communication', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('instantaneous', 'ADJ'), ('gaiety', 'NOUN'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('side', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('might', 'AUX'), ('have', 'AUX'), ('become', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('bloom', 'NOUN'), ('of', 'ADP'), ('youth', 'NOUN'), ('of', 'ADP'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('happiness', 'NOUN'), ('saw', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('amazement', 'NOUN'), ('remain', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('\n', 'SPACE'), ('evening', 'NOUN'), ('more', 'ADV'), ('serious', 'ADJ'), ('and', 'CCONJ'), ('thoughtful', 'ADJ'), ('than', 'ADP'), ('usual', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('31', 'NUM'), ('\n\n\n', 'SPACE'), ('From', 'ADP'), ('a', 'DET'), ('night', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('sleep', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('expected', 'VERB'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('awoke', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('consciousness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('misery', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('closed', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('encouraged', 'VERB'), ('her', 'PRON'), ('as', 'ADV'), ('much', 'ADJ'), ('as', 'ADP'), ('possible', 'ADJ'), ('to', 'PART'), ('talk', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('felt', 'VERB'), ('and', 'CCONJ'), ('before', 'ADP'), ('breakfast', 'NOUN'), ('was', 'AUX'), ('ready', 'ADJ'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('gone', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('and', 'CCONJ'), ('with', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('\n', 'SPACE'), ('steady', 'ADJ'), ('conviction', 'NOUN'), ('and', 'CCONJ'), ('affectionate', 'ADJ'), ('counsel', 'NOUN'), ('on', 'ADP'), ('Elinors', 'PROPN'), ('side', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('impetuous', 'ADJ'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('varying', 'VERB'), ('opinions', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('as', 'ADP'), ('before', 'ADP'), (' ', 'SPACE'), ('Sometimes', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('believe', 'VERB'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('as', 'ADV'), ('unfortunate', 'ADJ'), ('and', 'CCONJ'), ('as', 'ADV'), ('innocent', 'ADJ'), ('as', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('others', 'NOUN'), ('lost', 'VERB'), ('every', 'DET'), ('consolation', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('impossibility', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('acquitting', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('At', 'ADP'), ('one', 'NUM'), ('moment', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('absolutely', 'ADV'), ('\n', 'SPACE'), ('indifferent', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('observation', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('at', 'ADP'), ('another', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('seclude', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('and', 'CCONJ'), ('at', 'ADP'), ('a', 'DET'), ('third', 'ADJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('resist', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('energy', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('one', 'NUM'), ('thing', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('uniform', 'ADJ'), ('when', 'SCONJ'), ('it', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('in', 'ADP'), ('avoiding', 'VERB'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('possible', 'ADJ'), ('the', 'DET'), ('presence', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('determined', 'ADJ'), ('silence', 'NOUN'), ('when', 'SCONJ'), ('obliged', 'VERB'), ('to', 'PART'), ('endure', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('hardened', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('belief', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('entering', 'VERB'), ('into', 'ADP'), ('her', 'PRON'), ('sorrows', 'NOUN'), ('with', 'ADP'), ('any', 'DET'), ('compassion', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('no', 'INTJ'), ('no', 'INTJ'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('she', 'PRON'), ('cried', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('kindness', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('sympathy', 'ADJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('goodnature', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('tenderness', 'ADJ'), (' ', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('she', 'PRON'), ('wants', 'VERB'), ('\n', 'SPACE'), ('is', 'AUX'), ('gossip', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('only', 'ADV'), ('likes', 'VERB'), ('me', 'PRON'), ('now', 'ADV'), ('because', 'SCONJ'), ('I', 'PRON'), ('supply', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('not', 'PART'), ('needed', 'VERB'), ('this', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('assured', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('injustice', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('which', 'PRON'), ('her', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('often', 'ADV'), ('led', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('irritable', 'ADJ'), ('refinement', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('too', 'ADV'), ('\n', 'SPACE'), ('great', 'ADJ'), ('importance', 'NOUN'), ('placed', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('delicacies', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('strong', 'ADJ'), ('sensibility', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('graces', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('polished', 'ADJ'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('Like', 'ADP'), ('half', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('if', 'SCONJ'), ('more', 'ADJ'), ('than', 'ADP'), ('half', 'DET'), ('there', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('that', 'PRON'), ('are', 'AUX'), ('clever', 'ADJ'), ('and', 'CCONJ'), ('good', 'ADJ'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('excellent', 'ADJ'), ('\n', 'SPACE'), ('abilities', 'NOUN'), ('and', 'CCONJ'), ('an', 'DET'), ('excellent', 'ADJ'), ('disposition', 'NOUN'), ('was', 'AUX'), ('neither', 'PRON'), ('\n', 'SPACE'), ('reasonable', 'ADJ'), ('nor', 'CCONJ'), ('candid', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('expected', 'VERB'), ('from', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('opinions', 'NOUN'), ('and', 'CCONJ'), ('feelings', 'NOUN'), ('as', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('judged', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('motives', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('immediate', 'ADJ'), ('effect', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('actions', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('Thus', 'ADV'), ('a', 'DET'), ('circumstance', 'NOUN'), ('occurred', 'VERB'), ('while', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('were', 'AUX'), ('together', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('after', 'ADP'), ('breakfast', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('sunk', 'VERB'), ('the', 'DET'), ('heart', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('still', 'ADV'), ('lower', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('estimation', 'NOUN'), ('because', 'SCONJ'), ('through', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('weakness', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('chanced', 'VERB'), ('to', 'PART'), ('prove', 'VERB'), ('a', 'DET'), ('source', 'NOUN'), ('of', 'ADP'), ('fresh', 'ADJ'), ('pain', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('governed', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('by', 'ADP'), ('an', 'DET'), ('impulse', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('goodwill', 'NOUN'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('a', 'DET'), ('letter', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('outstretched', 'ADJ'), ('hand', 'NOUN'), ('and', 'CCONJ'), ('countenance', 'NOUN'), ('\n', 'SPACE'), ('gaily', 'ADV'), ('smiling', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('persuasion', 'NOUN'), ('of', 'ADP'), ('bringing', 'VERB'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('entered', 'VERB'), ('their', 'PRON'), ('room', 'NOUN'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Now', 'ADV'), ('my', 'PRON'), ('dear', 'NOUN'), ('I', 'PRON'), ('bring', 'VERB'), ('you', 'PRON'), ('something', 'PRON'), ('that', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('will', 'AUX'), ('do', 'VERB'), ('you', 'PRON'), ('good', 'ADJ'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('heard', 'VERB'), ('enough', 'ADJ'), (' ', 'SPACE'), ('In', 'ADP'), ('one', 'NUM'), ('moment', 'NOUN'), ('her', 'PRON'), ('imagination', 'NOUN'), ('\n', 'SPACE'), ('placed', 'VERB'), ('before', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('Willoughby', 'PROPN'), ('full', 'ADJ'), ('of', 'ADP'), ('tenderness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('contrition', 'VERB'), ('explanatory', 'ADJ'), ('of', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('satisfactory', 'ADJ'), ('\n', 'SPACE'), ('convincing', 'ADJ'), ('and', 'CCONJ'), ('instantly', 'ADV'), ('followed', 'VERB'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('himself', 'PRON'), ('\n', 'SPACE'), ('rushing', 'VERB'), ('eagerly', 'ADV'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('to', 'PART'), ('inforce', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('feet', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('eloquence', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('eyes', 'NOUN'), ('the', 'DET'), ('assurances', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('work', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('moment', 'NOUN'), ('was', 'AUX'), ('destroyed', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('next', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('hand', 'NOUN'), ('writing', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('never', 'ADV'), ('till', 'SCONJ'), ('then', 'ADV'), ('unwelcome', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('before', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('acuteness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('disappointment', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('followed', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('ecstasy', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('felt', 'VERB'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('till', 'SCONJ'), ('that', 'DET'), ('instant', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('suffered', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('cruelty', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('no', 'DET'), ('language', 'NOUN'), ('within', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('reach', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('moments', 'NOUN'), ('of', 'ADP'), ('happiest', 'ADJ'), ('eloquence', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('have', 'AUX'), ('expressed', 'VERB'), ('and', 'CCONJ'), ('now', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('reproach', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('only', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('tears', 'NOUN'), ('which', 'PRON'), ('streamed', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('passionate', 'ADJ'), ('violencea', 'NOUN'), ('reproach', 'NOUN'), ('however', 'ADV'), ('so', 'ADV'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('lost', 'VERB'), ('on', 'ADP'), ('its', 'PRON'), ('object', 'NOUN'), ('that', 'SCONJ'), ('after', 'ADP'), ('many', 'ADJ'), ('expressions', 'NOUN'), ('of', 'ADP'), ('pity', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('withdrew', 'AUX'), ('still', 'ADV'), ('referring', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('letter', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('calm', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('read', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('brought', 'VERB'), ('little', 'ADJ'), ('comfort', 'NOUN'), (' ', 'SPACE'), ('Willoughby', 'PROPN'), ('filled', 'VERB'), ('every', 'DET'), ('page', 'NOUN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('mother', 'NOUN'), ('still', 'ADV'), ('confident', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('and', 'CCONJ'), ('relying', 'VERB'), ('\n', 'SPACE'), ('as', 'ADV'), ('warmly', 'ADV'), ('as', 'ADP'), ('ever', 'ADV'), ('on', 'ADP'), ('his', 'PRON'), ('constancy', 'NOUN'), ('had', 'AUX'), ('only', 'ADV'), ('been', 'AUX'), ('roused', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Elinors', 'PROPN'), ('application', 'NOUN'), ('to', 'ADP'), ('intreat', 'NOUN'), ('from', 'ADP'), ('Marianne', 'PROPN'), ('greater', 'ADJ'), ('\n', 'SPACE'), ('openness', 'NOUN'), ('towards', 'ADP'), ('them', 'PRON'), ('both', 'PRON'), ('and', 'CCONJ'), ('this', 'PRON'), ('with', 'ADP'), ('such', 'ADJ'), ('tenderness', 'NOUN'), ('\n', 'SPACE'), ('towards', 'ADP'), ('her', 'PRON'), ('such', 'ADJ'), ('affection', 'NOUN'), ('for', 'ADP'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('future', 'ADJ'), ('happiness', 'NOUN'), ('in', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('wept', 'VERB'), ('with', 'ADP'), ('agony', 'NOUN'), ('through', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('All', 'DET'), ('her', 'PRON'), ('impatience', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('at', 'ADP'), ('home', 'NOUN'), ('again', 'ADV'), ('now', 'ADV'), ('returned', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('dearer', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('than', 'SCONJ'), ('ever', 'ADV'), ('dearer', 'VERB'), ('through', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('very', 'ADV'), ('excess', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mistaken', 'ADJ'), ('confidence', 'NOUN'), ('in', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('wildly', 'ADV'), ('urgent', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('unable', 'ADJ'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('determine', 'VERB'), ('whether', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('better', 'ADJ'), ('for', 'SCONJ'), ('Marianne', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('London', 'PROPN'), ('or', 'CCONJ'), ('at', 'ADP'), ('Barton', 'PROPN'), ('offered', 'VERB'), ('no', 'DET'), ('counsel', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('of', 'ADP'), ('patience', 'NOUN'), ('till', 'SCONJ'), ('their', 'PRON'), ('mothers', 'NOUN'), ('wishes', 'VERB'), ('could', 'AUX'), ('be', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('length', 'NOUN'), ('she', 'PRON'), ('obtained', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('consent', 'VERB'), ('to', 'PART'), ('wait', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('that', 'DET'), ('knowledge', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('left', 'VERB'), ('them', 'PRON'), ('earlier', 'ADV'), ('than', 'ADP'), ('usual', 'ADJ'), ('for', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('easy', 'ADJ'), ('till', 'SCONJ'), ('the', 'DET'), ('Middletons', 'PROPN'), ('and', 'CCONJ'), ('Palmers', 'PROPN'), ('were', 'AUX'), ('able', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('grieve', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('positively', 'ADV'), ('refusing', 'VERB'), ('\n', 'SPACE'), ('Elinors', 'NOUN'), ('offered', 'VERB'), ('attendance', 'NOUN'), ('went', 'VERB'), ('out', 'ADP'), ('alone', 'ADV'), ('for', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('heavy', 'ADJ'), ('heart', 'NOUN'), ('aware', 'ADJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('pain', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('communicate', 'VERB'), ('and', 'CCONJ'), ('perceiving', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Mariannes', 'PROPN'), ('letter', 'NOUN'), ('how', 'SCONJ'), ('ill', 'ADJ'), ('she', 'PRON'), ('had', 'AUX'), ('succeeded', 'VERB'), ('in', 'ADP'), ('laying', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('foundation', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('then', 'ADV'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'PART'), ('write', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('an', 'DET'), ('account', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('and', 'CCONJ'), ('entreat', 'VERB'), ('her', 'PRON'), ('directions', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('future', 'NOUN'), ('while', 'SCONJ'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('came', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('going', 'VERB'), ('away', 'ADV'), ('remained', 'AUX'), ('fixed', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('Elinor', 'PROPN'), ('wrote', 'VERB'), ('watching', 'VERB'), ('the', 'DET'), ('advancement', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('pen', 'NOUN'), ('\n', 'SPACE'), ('grieving', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('hardship', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('task', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('grieving', 'VERB'), ('still', 'ADV'), ('more', 'ADV'), ('fondly', 'ADV'), ('over', 'ADP'), ('its', 'PRON'), ('effect', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('this', 'DET'), ('manner', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('continued', 'VERB'), ('about', 'ADP'), ('a', 'DET'), ('quarter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('whose', 'DET'), ('nerves', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('then', 'ADV'), ('\n', 'SPACE'), ('bear', 'VERB'), ('any', 'DET'), ('sudden', 'ADJ'), ('noise', 'NOUN'), ('was', 'AUX'), ('startled', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('rap', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n\n', 'SPACE'), ('Who', 'PRON'), ('can', 'AUX'), ('this', 'PRON'), ('be', 'AUX'), ('cried', 'VERB'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('So', 'ADV'), ('early', 'ADV'), ('too', 'ADV'), ('I', 'PRON'), ('\n', 'SPACE'), ('thought', 'VERB'), ('we', 'PRON'), ('HAD', 'AUX'), ('been', 'AUX'), ('safe', 'ADJ'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('moved', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('with', 'ADP'), ('vexation', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('are', 'AUX'), ('never', 'ADV'), ('safe', 'ADJ'), ('from', 'ADP'), ('HIM', 'PROPN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('in', 'ADP'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('is', 'AUX'), ('from', 'ADP'), ('home', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('trust', 'VERB'), ('to', 'ADP'), ('THAT', 'PRON'), ('retreating', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('has', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('time', 'NOUN'), ('has', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('conscience', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('intrusion', 'NOUN'), ('on', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('others', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('event', 'NOUN'), ('proved', 'VERB'), ('her', 'PRON'), ('conjecture', 'NOUN'), ('right', 'ADV'), ('though', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('founded', 'VERB'), ('on', 'ADP'), ('injustice', 'NOUN'), ('and', 'CCONJ'), ('error', 'NOUN'), ('for', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('DID', 'AUX'), ('come', 'VERB'), ('in', 'ADV'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('solicitude', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('brought', 'VERB'), ('him', 'PRON'), ('thither', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('THAT', 'DET'), ('solicitude', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('disturbed', 'ADJ'), ('and', 'CCONJ'), ('melancholy', 'ADJ'), ('look', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('his', 'PRON'), ('anxious', 'ADJ'), ('though', 'SCONJ'), ('brief', 'ADJ'), ('inquiry', 'NOUN'), ('after', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('forgive', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('for', 'ADP'), ('esteeming', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('lightly', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('met', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('in', 'ADP'), ('Bond', 'PROPN'), ('Street', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('\n', 'SPACE'), ('after', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('salutation', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('encouraged', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('come', 'VERB'), ('on', 'ADP'), ('and', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('more', 'ADV'), ('easily', 'ADV'), ('encouraged', 'VERB'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('probable', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('might', 'AUX'), ('find', 'VERB'), ('you', 'PRON'), ('alone', 'ADV'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('desirous', 'ADJ'), ('of', 'ADP'), ('doing', 'VERB'), (' ', 'SPACE'), ('My', 'PRON'), ('objectmy', 'NOUN'), ('\n', 'SPACE'), ('wishmy', 'VERB'), ('sole', 'ADJ'), ('wish', 'NOUN'), ('in', 'ADP'), ('desiring', 'VERB'), ('itI', 'ADJ'), ('hope', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('isis', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('giving', 'VERB'), ('comfortno', 'NOUN'), ('I', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('say', 'VERB'), ('comfortnot', 'ADV'), ('present', 'ADJ'), ('comfortbut', 'NOUN'), ('conviction', 'NOUN'), ('\n', 'SPACE'), ('lasting', 'VERB'), ('conviction', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('sisters', 'NOUN'), ('mind', 'VERB'), (' ', 'SPACE'), ('My', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('yourself', 'PRON'), ('for', 'ADP'), ('your', 'PRON'), ('motherwill', 'NOUN'), ('you', 'PRON'), ('allow', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('prove', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('relating', 'VERB'), ('some', 'DET'), ('circumstances', 'NOUN'), ('which', 'PRON'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('a', 'DET'), ('VERY', 'ADV'), ('\n', 'SPACE'), ('sincere', 'ADJ'), ('regardnothing', 'NOUN'), ('but', 'CCONJ'), ('an', 'DET'), ('earnest', 'ADJ'), ('desire', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('usefulI', 'ADV'), ('think', 'VERB'), ('I', 'PRON'), ('am', 'AUX'), ('justifiedthough', 'ADJ'), ('where', 'SCONJ'), ('so', 'ADV'), ('many', 'ADJ'), ('hours', 'NOUN'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('spent', 'VERB'), ('in', 'ADP'), ('convincing', 'VERB'), ('myself', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('right', 'ADJ'), ('\n', 'SPACE'), ('is', 'AUX'), ('there', 'PRON'), ('not', 'PART'), ('some', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('fear', 'VERB'), ('I', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('He', 'PRON'), ('stopped', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('understand', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('You', 'PRON'), ('have', 'VERB'), ('something', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('tell', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('that', 'PRON'), ('will', 'AUX'), ('open', 'VERB'), ('his', 'PRON'), ('character', 'NOUN'), ('\n', 'SPACE'), ('farther', 'ADV'), (' ', 'SPACE'), ('Your', 'PRON'), ('telling', 'NOUN'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('greatest', 'ADJ'), ('act', 'NOUN'), ('of', 'ADP'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('shewn', 'VERB'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('MY', 'PROPN'), ('gratitude', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('insured', 'VERB'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('by', 'ADP'), ('any', 'DET'), ('information', 'NOUN'), ('tending', 'VERB'), ('to', 'ADP'), ('that', 'DET'), ('end', 'NOUN'), ('and', 'CCONJ'), ('HERS', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('gained', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('time', 'NOUN'), (' ', 'SPACE'), ('Pray', 'PROPN'), ('pray', 'NOUN'), ('let', 'VERB'), ('me', 'PRON'), ('hear', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('shall', 'AUX'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('brief', 'ADJ'), ('when', 'SCONJ'), ('I', 'PRON'), ('quitted', 'VERB'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('last', 'ADJ'), ('Octoberbut', 'PROPN'), ('this', 'PRON'), ('will', 'AUX'), ('give', 'VERB'), ('you', 'PRON'), ('no', 'DET'), ('ideaI', 'PROPN'), ('must', 'AUX'), ('go', 'VERB'), ('\n', 'SPACE'), ('farther', 'ADV'), ('back', 'ADV'), (' ', 'SPACE'), ('You', 'PRON'), ('will', 'AUX'), ('find', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('awkward', 'ADJ'), ('narrator', 'NOUN'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('I', 'PRON'), ('hardly', 'ADV'), ('know', 'VERB'), ('where', 'SCONJ'), ('to', 'PART'), ('begin', 'VERB'), (' ', 'SPACE'), ('A', 'DET'), ('short', 'ADJ'), ('\n', 'SPACE'), ('account', 'NOUN'), ('of', 'ADP'), ('myself', 'PRON'), ('I', 'PRON'), ('believe', 'VERB'), ('will', 'AUX'), ('be', 'AUX'), ('necessary', 'ADJ'), ('and', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('SHALL', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('short', 'ADJ'), ('one', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('subject', 'NOUN'), ('sighing', 'VERB'), ('heavily', 'ADV'), ('\n', 'SPACE'), ('can', 'AUX'), ('I', 'PRON'), ('have', 'VERB'), ('little', 'ADJ'), ('temptation', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('diffuse', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('stopt', 'VERB'), ('a', 'DET'), ('moment', 'NOUN'), ('for', 'ADP'), ('recollection', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('another', 'DET'), ('sigh', 'NOUN'), ('went', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('probably', 'ADV'), ('entirely', 'ADV'), ('forgotten', 'VERB'), ('a', 'DET'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('any', 'DET'), ('impression', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('youa', 'ADJ'), ('conversation', 'NOUN'), ('between', 'ADP'), ('us', 'PRON'), ('one', 'NUM'), ('evening', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('Parkit', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('evening', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('dancein', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('alluded', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('a', 'DET'), ('lady', 'NOUN'), ('I', 'PRON'), ('had', 'AUX'), ('once', 'ADV'), ('known', 'VERB'), ('as', 'ADP'), ('resembling', 'VERB'), ('in', 'ADP'), ('some', 'DET'), ('measure', 'NOUN'), ('\n', 'SPACE'), ('your', 'PRON'), ('sister', 'NOUN'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('have', 'AUX'), ('NOT', 'PART'), ('forgotten', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('looked', 'VERB'), ('pleased', 'ADJ'), ('by', 'ADP'), ('this', 'DET'), ('remembrance', 'NOUN'), ('and', 'CCONJ'), ('added', 'VERB'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('deceived', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('uncertainty', 'NOUN'), ('the', 'DET'), ('partiality', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('tender', 'ADJ'), ('recollection', 'NOUN'), ('there', 'PRON'), ('is', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('strong', 'ADJ'), ('resemblance', 'NOUN'), ('\n', 'SPACE'), ('between', 'ADP'), ('them', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('in', 'ADP'), ('mind', 'NOUN'), ('as', 'ADP'), ('person', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('same', 'ADJ'), ('warmth', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('heart', 'NOUN'), ('the', 'DET'), ('same', 'ADJ'), ('eagerness', 'NOUN'), ('of', 'ADP'), ('fancy', 'NOUN'), ('and', 'CCONJ'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('This', 'DET'), ('lady', 'NOUN'), ('was', 'AUX'), ('one', 'NUM'), ('of', 'ADP'), ('my', 'PRON'), ('nearest', 'ADJ'), ('relations', 'NOUN'), ('an', 'DET'), ('orphan', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('infancy', 'NOUN'), ('and', 'CCONJ'), ('under', 'ADP'), ('the', 'DET'), ('guardianship', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('father', 'NOUN'), ('\n', 'SPACE'), ('Our', 'PRON'), ('ages', 'NOUN'), ('were', 'AUX'), ('nearly', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('and', 'CCONJ'), ('from', 'ADP'), ('our', 'PRON'), ('earliest', 'ADJ'), ('years', 'NOUN'), ('\n', 'SPACE'), ('we', 'PRON'), ('were', 'AUX'), ('playfellows', 'NOUN'), ('and', 'CCONJ'), ('friends', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('remember', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('time', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('love', 'VERB'), ('Eliza', 'PROPN'), ('and', 'CCONJ'), ('my', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('we', 'PRON'), ('grew', 'VERB'), ('up', 'ADP'), ('was', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('perhaps', 'ADV'), ('judging', 'VERB'), ('from', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('present', 'ADJ'), ('forlorn', 'ADJ'), ('and', 'CCONJ'), ('cheerless', 'ADJ'), ('gravity', 'NOUN'), ('you', 'PRON'), ('might', 'AUX'), ('think', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('incapable', 'ADJ'), ('of', 'ADP'), ('having', 'AUX'), ('ever', 'ADV'), ('felt', 'VERB'), (' ', 'SPACE'), ('Hers', 'PROPN'), ('for', 'ADP'), ('me', 'PRON'), ('was', 'AUX'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('fervent', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('attachment', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('though', 'ADV'), ('from', 'ADP'), ('a', 'DET'), ('different', 'ADJ'), ('cause', 'NOUN'), ('no', 'PRON'), ('less', 'ADV'), ('unfortunate', 'ADJ'), ('\n', 'SPACE'), ('At', 'ADP'), ('seventeen', 'NUM'), ('she', 'PRON'), ('was', 'AUX'), ('lost', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('marriedmarried', 'VERB'), ('against', 'ADP'), ('her', 'PRON'), ('inclination', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('fortune', 'NOUN'), ('was', 'AUX'), ('large', 'ADJ'), ('and', 'CCONJ'), ('our', 'PRON'), ('family', 'NOUN'), ('estate', 'NOUN'), ('much', 'ADV'), ('encumbered', 'ADJ'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('this', 'PRON'), ('I', 'PRON'), ('fear', 'VERB'), ('is', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('said', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('conduct', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('who', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('once', 'ADV'), ('her', 'PRON'), ('uncle', 'NOUN'), ('and', 'CCONJ'), ('guardian', 'NOUN'), ('\n', 'SPACE'), ('My', 'PRON'), ('brother', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('deserve', 'VERB'), ('her', 'PRON'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('love', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('hoped', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('would', 'AUX'), ('support', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('under', 'ADP'), ('any', 'DET'), ('difficulty', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('it', 'PRON'), ('did', 'VERB'), ('but', 'CCONJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('last', 'ADJ'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('situation', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('experienced', 'VERB'), ('\n', 'SPACE'), ('great', 'ADJ'), ('unkindness', 'ADJ'), ('overcame', 'NOUN'), ('all', 'DET'), ('her', 'PRON'), ('resolution', 'NOUN'), ('and', 'CCONJ'), ('though', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('promised', 'VERB'), ('me', 'PRON'), ('that', 'DET'), ('nothingbut', 'VERB'), ('how', 'SCONJ'), ('blindly', 'ADV'), ('I', 'PRON'), ('\n', 'SPACE'), ('relate', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('told', 'VERB'), ('you', 'PRON'), ('how', 'SCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('brought', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('We', 'PRON'), ('were', 'AUX'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('hours', 'NOUN'), ('of', 'ADP'), ('eloping', 'VERB'), ('together', 'ADV'), ('for', 'ADP'), ('Scotland', 'PROPN'), ('\n', 'SPACE'), ('The', 'DET'), ('treachery', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('folly', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('cousins', 'NOUN'), ('maid', 'VERB'), ('betrayed', 'VERB'), ('us', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('banished', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('relation', 'NOUN'), ('far', 'ADV'), ('distant', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('allowed', 'VERB'), ('no', 'DET'), ('liberty', 'NOUN'), ('no', 'DET'), ('society', 'NOUN'), ('no', 'DET'), ('amusement', 'NOUN'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('my', 'PRON'), ('fathers', 'NOUN'), ('point', 'NOUN'), ('was', 'AUX'), ('gained', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('depended', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('fortitude', 'NOUN'), ('too', 'ADV'), ('far', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('blow', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('severe', 'ADJ'), ('one', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('had', 'VERB'), ('her', 'PRON'), ('marriage', 'NOUN'), ('been', 'AUX'), ('happy', 'ADJ'), ('so', 'ADV'), ('young', 'ADJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('then', 'ADV'), ('was', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('reconciled', 'VERB'), ('me', 'PRON'), ('to', 'ADP'), ('it', 'PRON'), ('or', 'CCONJ'), ('at', 'ADV'), ('least', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('now', 'ADV'), ('to', 'PART'), ('lament', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('however', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('case', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('brother', 'NOUN'), ('had', 'VERB'), ('no', 'DET'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('his', 'PRON'), ('pleasures', 'NOUN'), ('were', 'AUX'), ('not', 'PART'), ('what', 'PRON'), ('they', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('he', 'PRON'), ('treated', 'VERB'), ('her', 'PRON'), ('unkindly', 'ADV'), (' ', 'SPACE'), ('The', 'DET'), ('consequence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'PRON'), ('upon', 'SCONJ'), ('a', 'DET'), ('mind', 'NOUN'), ('so', 'ADV'), ('young', 'ADJ'), ('so', 'ADV'), ('lively', 'ADV'), ('so', 'ADV'), ('inexperienced', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Brandons', 'PROPN'), ('was', 'AUX'), ('but', 'CCONJ'), ('too', 'ADV'), ('natural', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('resigned', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('happy', 'ADJ'), ('had', 'AUX'), ('it', 'PRON'), ('been', 'AUX'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('lived', 'VERB'), ('to', 'PART'), ('overcome', 'VERB'), ('those', 'DET'), ('\n', 'SPACE'), ('regrets', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('remembrance', 'NOUN'), ('of', 'ADP'), ('me', 'PRON'), ('occasioned', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('can', 'AUX'), ('we', 'PRON'), ('\n', 'SPACE'), ('wonder', 'VERB'), ('that', 'SCONJ'), ('with', 'SCONJ'), ('such', 'DET'), ('a', 'DET'), ('husband', 'NOUN'), ('to', 'PART'), ('provoke', 'VERB'), ('inconstancy', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('without', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('to', 'PART'), ('advise', 'VERB'), ('or', 'CCONJ'), ('restrain', 'VERB'), ('her', 'PRON'), ('for', 'SCONJ'), ('\n', 'SPACE'), ('my', 'PRON'), ('father', 'NOUN'), ('lived', 'VERB'), ('only', 'ADV'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('after', 'ADP'), ('their', 'PRON'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('with', 'ADP'), ('my', 'PRON'), ('regiment', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('East', 'PROPN'), ('Indies', 'PROPN'), ('she', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('fall', 'VERB'), (' ', 'SPACE'), ('Had', 'AUX'), ('I', 'PRON'), ('remained', 'VERB'), ('in', 'ADP'), ('England', 'PROPN'), ('perhapsbut', 'ADP'), ('I', 'PRON'), ('\n', 'SPACE'), ('meant', 'VERB'), ('to', 'PART'), ('promote', 'VERB'), ('the', 'DET'), ('happiness', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('by', 'ADP'), ('removing', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('her', 'PRON'), ('for', 'ADP'), ('years', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('that', 'DET'), ('purpose', 'NOUN'), ('had', 'AUX'), ('procured', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('exchange', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('shock', 'NOUN'), ('which', 'PRON'), ('her', 'PRON'), ('marriage', 'NOUN'), ('had', 'AUX'), ('given', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('continued', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('agitation', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('\n', 'SPACE'), ('trifling', 'NOUN'), ('weightwas', 'VERB'), ('nothing', 'PRON'), ('to', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('when', 'SCONJ'), ('I', 'PRON'), ('heard', 'VERB'), ('\n', 'SPACE'), ('about', 'ADV'), ('two', 'NUM'), ('years', 'NOUN'), ('afterwards', 'ADV'), ('of', 'ADP'), ('her', 'PRON'), ('divorce', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('THAT', 'PRON'), ('which', 'PRON'), ('threw', 'VERB'), ('this', 'PRON'), ('gloomeven', 'VERB'), ('now', 'ADV'), ('the', 'DET'), ('recollection', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('suffered', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('say', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('and', 'CCONJ'), ('rising', 'VERB'), ('hastily', 'ADV'), ('walked', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('\n', 'SPACE'), ('minutes', 'NOUN'), ('about', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('affected', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('relation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('still', 'ADV'), ('more', 'ADJ'), ('by', 'ADP'), ('his', 'PRON'), ('distress', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('concern', 'NOUN'), ('and', 'CCONJ'), ('coming', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('took', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('pressed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('kissed', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('grateful', 'ADJ'), ('respect', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('more', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('silent', 'ADJ'), ('exertion', 'NOUN'), ('enabled', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('proceed', 'VERB'), ('with', 'ADP'), ('composure', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('nearly', 'ADV'), ('three', 'NUM'), ('years', 'NOUN'), ('after', 'ADP'), ('this', 'DET'), ('unhappy', 'ADJ'), ('\n', 'SPACE'), ('period', 'NOUN'), ('before', 'SCONJ'), ('I', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('England', 'PROPN'), (' ', 'SPACE'), ('My', 'PRON'), ('first', 'ADJ'), ('care', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('DID', 'AUX'), ('arrive', 'VERB'), ('was', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('to', 'PART'), ('seek', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('search', 'NOUN'), ('was', 'AUX'), ('as', 'ADV'), ('fruitless', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('melancholy', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('trace', 'VERB'), ('her', 'PRON'), ('beyond', 'ADP'), ('her', 'PRON'), ('first', 'ADJ'), ('seducer', 'NOUN'), ('and', 'CCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('every', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('fear', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('removed', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('only', 'ADV'), ('to', 'PART'), ('sink', 'VERB'), ('deeper', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('life', 'NOUN'), ('of', 'ADP'), ('sin', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('legal', 'ADJ'), ('allowance', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('adequate', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('fortune', 'NOUN'), ('nor', 'CCONJ'), ('sufficient', 'ADJ'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('comfortable', 'ADJ'), ('maintenance', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('learnt', 'VERB'), ('from', 'ADP'), ('my', 'PRON'), ('brother', 'NOUN'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('receiving', 'VERB'), ('it', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('made', 'VERB'), ('over', 'ADP'), ('some', 'DET'), ('months', 'NOUN'), ('\n', 'SPACE'), ('before', 'ADV'), ('to', 'ADP'), ('another', 'DET'), ('person', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('imagined', 'VERB'), ('and', 'CCONJ'), ('calmly', 'ADV'), ('could', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('imagine', 'VERB'), ('it', 'PRON'), ('that', 'SCONJ'), ('her', 'PRON'), ('extravagance', 'NOUN'), ('and', 'CCONJ'), ('consequent', 'NOUN'), ('distress', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('obliged', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('dispose', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('some', 'DET'), ('immediate', 'ADJ'), ('relief', 'NOUN'), ('\n', 'SPACE'), ('At', 'ADP'), ('last', 'ADJ'), ('however', 'ADV'), ('and', 'CCONJ'), ('after', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('six', 'NUM'), ('months', 'NOUN'), ('in', 'ADP'), ('England', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('DID', 'AUX'), ('find', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Regard', 'PROPN'), ('for', 'ADP'), ('a', 'DET'), ('former', 'ADJ'), ('servant', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('since', 'SCONJ'), ('fallen', 'VERB'), ('into', 'ADP'), ('misfortune', 'NOUN'), ('carried', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('visit', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('spunginghouse', 'NOUN'), ('where', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('confined', 'VERB'), ('for', 'ADP'), ('debt', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('there', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('house', 'NOUN'), ('under', 'ADP'), ('a', 'DET'), ('similar', 'ADJ'), ('confinement', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('my', 'PRON'), ('unfortunate', 'ADJ'), ('sister', 'NOUN'), (' ', 'SPACE'), ('So', 'ADV'), ('alteredso', 'VERB'), ('fadedworn', 'VERB'), ('\n', 'SPACE'), ('down', 'ADP'), ('by', 'ADP'), ('acute', 'ADJ'), ('suffering', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('kind', 'NOUN'), ('hardly', 'ADV'), ('could', 'AUX'), ('I', 'PRON'), ('\n', 'SPACE'), ('believe', 'VERB'), ('the', 'DET'), ('melancholy', 'ADJ'), ('and', 'CCONJ'), ('sickly', 'ADJ'), ('figure', 'NOUN'), ('before', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('remains', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('lovely', 'ADJ'), ('blooming', 'VERB'), ('healthful', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('whom', 'PRON'), ('I', 'PRON'), ('had', 'AUX'), ('once', 'ADV'), ('doted', 'VERB'), (' ', 'SPACE'), ('What', 'PRON'), ('I', 'PRON'), ('endured', 'VERB'), ('in', 'ADP'), ('so', 'ADV'), ('beholding', 'NOUN'), ('\n', 'SPACE'), ('herbut', 'NOUN'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('right', 'NOUN'), ('to', 'PART'), ('wound', 'VERB'), ('your', 'PRON'), ('feelings', 'NOUN'), ('by', 'ADP'), ('attempting', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('describe', 'VERB'), ('itI', 'ADV'), ('have', 'AUX'), ('pained', 'VERB'), ('you', 'PRON'), ('too', 'ADV'), ('much', 'ADV'), ('already', 'ADV'), ('\n', 'SPACE'), ('That', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('all', 'DET'), ('appearance', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('stage', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('consumption', 'NOUN'), ('wasyes', 'NOUN'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('situation', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('my', 'PRON'), ('greatest', 'ADJ'), ('comfort', 'NOUN'), (' ', 'SPACE'), ('Life', 'PROPN'), ('could', 'AUX'), ('do', 'VERB'), ('nothing', 'PRON'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('giving', 'VERB'), ('time', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('better', 'ADJ'), ('preparation', 'NOUN'), ('for', 'ADP'), ('death', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('given', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('placed', 'VERB'), ('in', 'ADP'), ('comfortable', 'ADJ'), ('lodgings', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('under', 'ADP'), ('proper', 'ADJ'), ('attendants', 'NOUN'), ('I', 'PRON'), ('visited', 'VERB'), ('her', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('during', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('short', 'ADJ'), ('life', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('with', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('last', 'ADJ'), ('moments', 'NOUN'), ('\n\n', 'SPACE'), ('Again', 'ADV'), ('he', 'PRON'), ('stopped', 'VERB'), ('to', 'PART'), ('recover', 'VERB'), ('himself', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('spoke', 'VERB'), ('her', 'PRON'), ('feelings', 'NOUN'), ('in', 'ADP'), ('an', 'DET'), ('exclamation', 'NOUN'), ('of', 'ADP'), ('tender', 'NOUN'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('fate', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('unfortunate', 'ADJ'), ('friend', 'NOUN'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('I', 'PRON'), ('hope', 'VERB'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('offended', 'VERB'), ('said', 'VERB'), ('he', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('resemblance', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('fancied', 'VERB'), ('between', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('my', 'PRON'), ('\n', 'SPACE'), ('poor', 'ADJ'), ('disgraced', 'VERB'), ('relation', 'NOUN'), (' ', 'SPACE'), ('Their', 'PRON'), ('fates', 'NOUN'), ('their', 'PRON'), ('fortunes', 'NOUN'), ('\n', 'SPACE'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('same', 'ADJ'), ('and', 'CCONJ'), ('had', 'VERB'), ('the', 'DET'), ('natural', 'ADJ'), ('sweet', 'ADJ'), ('\n', 'SPACE'), ('disposition', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('one', 'NOUN'), ('been', 'AUX'), ('guarded', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('firmer', 'ADJ'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('a', 'DET'), ('happier', 'ADJ'), ('marriage', 'NOUN'), ('she', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('you', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('live', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('other', 'ADJ'), ('be', 'AUX'), (' ', 'SPACE'), ('But', 'CCONJ'), ('to', 'ADP'), ('what', 'PRON'), ('does', 'AUX'), ('all', 'DET'), ('this', 'DET'), ('\n', 'SPACE'), ('lead', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('seem', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('distressing', 'VERB'), ('you', 'PRON'), ('for', 'ADP'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('Ah', 'INTJ'), ('Miss', 'PROPN'), ('Dashwooda', 'PROPN'), ('subject', 'NOUN'), ('such', 'ADJ'), ('as', 'ADP'), ('thisuntouched', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('fourteen', 'NUM'), ('yearsit', 'NOUN'), ('is', 'AUX'), ('dangerous', 'ADJ'), ('to', 'PART'), ('handle', 'VERB'), ('it', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('WILL', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('collectedmore', 'ADJ'), ('concise', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('left', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('care', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('only', 'ADJ'), ('child', 'NOUN'), ('a', 'DET'), ('little', 'ADJ'), ('girl', 'NOUN'), ('the', 'DET'), ('offspring', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('first', 'ADJ'), ('\n', 'SPACE'), ('guilty', 'ADJ'), ('connection', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('then', 'ADV'), ('about', 'ADV'), ('three', 'NUM'), ('years', 'NOUN'), ('old', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('loved', 'VERB'), ('the', 'DET'), ('child', 'NOUN'), ('and', 'CCONJ'), ('had', 'AUX'), ('always', 'ADV'), ('kept', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('valued', 'VERB'), ('a', 'DET'), ('precious', 'ADJ'), ('trust', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('gladly', 'ADV'), ('\n', 'SPACE'), ('would', 'AUX'), ('I', 'PRON'), ('have', 'AUX'), ('discharged', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('strictest', 'ADJ'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('watching', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('education', 'NOUN'), ('myself', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('our', 'PRON'), ('situations', 'NOUN'), ('allowed', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('family', 'NOUN'), ('no', 'DET'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('my', 'PRON'), ('little', 'ADJ'), ('Eliza', 'PROPN'), ('was', 'AUX'), ('therefore', 'ADV'), ('placed', 'VERB'), ('at', 'ADP'), ('school', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('there', 'ADV'), ('whenever', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('and', 'CCONJ'), ('after', 'ADP'), ('the', 'DET'), ('death', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('brother', 'NOUN'), ('which', 'PRON'), ('happened', 'VERB'), ('about', 'ADV'), ('five', 'NUM'), ('years', 'NOUN'), ('ago', 'ADV'), ('and', 'CCONJ'), ('which', 'PRON'), ('\n', 'SPACE'), ('left', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('the', 'DET'), ('possession', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('property', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('visited', 'VERB'), ('me', 'PRON'), ('at', 'ADP'), ('Delaford', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('called', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('distant', 'ADJ'), ('relation', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('well', 'ADV'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('in', 'ADP'), ('general', 'ADJ'), ('been', 'AUX'), ('suspected', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('much', 'ADJ'), ('nearer', 'NOUN'), ('connection', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('now', 'ADV'), ('three', 'NUM'), ('\n', 'SPACE'), ('years', 'NOUN'), ('ago', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('reached', 'VERB'), ('her', 'PRON'), ('fourteenth', 'ADJ'), ('year', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('I', 'PRON'), ('removed', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('school', 'NOUN'), ('to', 'PART'), ('place', 'VERB'), ('her', 'PRON'), ('under', 'ADP'), ('the', 'DET'), ('care', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('respectable', 'ADJ'), ('woman', 'NOUN'), ('residing', 'VERB'), ('in', 'ADP'), ('Dorsetshire', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('charge', 'NOUN'), ('of', 'ADP'), ('four', 'NUM'), ('or', 'CCONJ'), ('five', 'NUM'), ('other', 'ADJ'), ('girls', 'NOUN'), ('of', 'ADP'), ('about', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('two', 'NUM'), ('years', 'NOUN'), ('I', 'PRON'), ('had', 'VERB'), ('every', 'DET'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('pleased', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('situation', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('last', 'ADJ'), ('February', 'PROPN'), ('\n', 'SPACE'), ('almost', 'ADV'), ('a', 'DET'), ('twelvemonth', 'NOUN'), ('back', 'ADV'), ('she', 'PRON'), ('suddenly', 'ADV'), ('disappeared', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('allowed', 'VERB'), ('her', 'PRON'), ('imprudently', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('since', 'ADV'), ('turned', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('at', 'ADP'), ('her', 'PRON'), ('earnest', 'ADJ'), ('desire', 'NOUN'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Bath', 'PROPN'), ('with', 'ADP'), ('one', 'NUM'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('young', 'ADJ'), ('friends', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('attending', 'VERB'), ('her', 'PRON'), ('father', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('health', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('knew', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('sort', 'NOUN'), ('of', 'ADP'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('well', 'ADV'), ('of', 'ADP'), ('his', 'PRON'), ('daughterbetter', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('deserved', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('obstinate', 'NOUN'), ('and', 'CCONJ'), ('illjudged', 'VERB'), ('secrecy', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('tell', 'VERB'), ('nothing', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('no', 'DET'), ('clue', 'NOUN'), ('though', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('certainly', 'ADV'), ('knew', 'VERB'), ('all', 'DET'), (' ', 'SPACE'), ('He', 'PRON'), ('her', 'PRON'), ('father', 'NOUN'), ('a', 'DET'), ('wellmeaning', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('not', 'PART'), ('a', 'DET'), ('quicksighted', 'VERB'), ('man', 'NOUN'), ('could', 'AUX'), ('really', 'ADV'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('give', 'VERB'), ('no', 'DET'), ('information', 'NOUN'), ('for', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('generally', 'ADV'), ('confined', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('while', 'SCONJ'), ('the', 'DET'), ('girls', 'NOUN'), ('were', 'AUX'), ('ranging', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('town', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('making', 'VERB'), ('what', 'PRON'), ('acquaintance', 'NOUN'), ('they', 'PRON'), ('chose', 'VERB'), ('and', 'CCONJ'), ('he', 'PRON'), ('tried', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('convince', 'VERB'), ('me', 'PRON'), ('as', 'ADV'), ('thoroughly', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('convinced', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('daughters', 'NOUN'), ('being', 'AUX'), ('entirely', 'ADV'), ('unconcerned', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('business', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('short', 'ADJ'), ('I', 'PRON'), ('could', 'AUX'), ('learn', 'VERB'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('gone', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('for', 'ADP'), ('eight', 'NUM'), ('long', 'ADJ'), ('months', 'NOUN'), ('was', 'AUX'), ('left', 'VERB'), ('to', 'PART'), ('conjecture', 'VERB'), ('\n', 'SPACE'), ('What', 'PRON'), ('I', 'PRON'), ('thought', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('feared', 'VERB'), ('may', 'AUX'), ('be', 'AUX'), ('imagined', 'VERB'), ('and', 'CCONJ'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('suffered', 'VERB'), ('too', 'ADV'), ('\n\n', 'SPACE'), ('Good', 'ADJ'), ('heavens', 'NOUN'), ('cried', 'VERB'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('it', 'PRON'), ('becould', 'AUX'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('first', 'ADJ'), ('news', 'NOUN'), ('that', 'PRON'), ('reached', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('he', 'PRON'), ('continued', 'VERB'), ('\n', 'SPACE'), ('came', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('herself', 'PRON'), ('last', 'ADJ'), ('October', 'PROPN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('forwarded', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('from', 'ADP'), ('Delaford', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('received', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('very', 'ADJ'), ('morning', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('intended', 'VERB'), ('party', 'NOUN'), ('to', 'ADP'), ('Whitwell', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('reason', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('leaving', 'VERB'), ('Barton', 'PROPN'), ('so', 'ADV'), ('suddenly', 'ADV'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('must', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('have', 'AUX'), ('appeared', 'VERB'), ('strange', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('and', 'CCONJ'), ('which', 'PRON'), ('I', 'PRON'), ('believe', 'VERB'), ('gave', 'VERB'), ('offence', 'NOUN'), ('to', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('Little', 'PROPN'), ('did', 'AUX'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('imagine', 'VERB'), ('I', 'PRON'), ('suppose', 'VERB'), ('when', 'SCONJ'), ('his', 'PRON'), ('\n', 'SPACE'), ('looks', 'NOUN'), ('censured', 'VERB'), ('me', 'PRON'), ('for', 'ADP'), ('incivility', 'NOUN'), ('in', 'ADP'), ('breaking', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('called', 'VERB'), ('away', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('relief', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('whom', 'PRON'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('made', 'VERB'), ('poor', 'ADJ'), ('and', 'CCONJ'), ('miserable', 'ADJ'), ('but', 'CCONJ'), ('HAD', 'AUX'), ('he', 'PRON'), ('known', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('what', 'PRON'), ('would', 'AUX'), ('it', 'PRON'), ('have', 'AUX'), ('availed', 'VERB'), (' ', 'SPACE'), ('Would', 'AUX'), ('he', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('less', 'ADJ'), ('\n', 'SPACE'), ('gay', 'NOUN'), ('or', 'CCONJ'), ('less', 'ADV'), ('happy', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('smiles', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('No', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('done', 'VERB'), ('that', 'PRON'), ('which', 'PRON'), ('no', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('CAN', 'AUX'), ('feel', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('another', 'PRON'), ('would', 'AUX'), ('do', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('the', 'DET'), ('girl', 'NOUN'), ('whose', 'DET'), ('\n', 'SPACE'), ('youth', 'NOUN'), ('and', 'CCONJ'), ('innocence', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('seduced', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('situation', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('utmost', 'ADJ'), ('distress', 'NOUN'), ('with', 'ADP'), ('no', 'DET'), ('creditable', 'ADJ'), ('home', 'NOUN'), ('no', 'DET'), ('help', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('friends', 'NOUN'), ('ignorant', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('address', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('promising', 'VERB'), ('to', 'PART'), ('return', 'VERB'), ('he', 'PRON'), ('neither', 'CCONJ'), ('returned', 'VERB'), ('nor', 'CCONJ'), ('wrote', 'VERB'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('relieved', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('beyond', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('exclaimed', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('character', 'NOUN'), ('is', 'AUX'), ('now', 'ADV'), ('before', 'SCONJ'), ('you', 'PRON'), ('expensive', 'ADJ'), ('dissipated', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('worse', 'ADJ'), ('than', 'ADP'), ('both', 'PRON'), (' ', 'SPACE'), ('Knowing', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('as', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('now', 'ADV'), ('\n', 'SPACE'), ('known', 'VERB'), ('it', 'PRON'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('guess', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('felt', 'VERB'), ('on', 'ADP'), ('seeing', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('sister', 'NOUN'), ('as', 'ADP'), ('fond', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('as', 'ADV'), ('ever', 'ADV'), ('and', 'CCONJ'), ('on', 'ADP'), ('being', 'AUX'), ('assured', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('marry', 'VERB'), ('him', 'PRON'), ('guess', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('felt', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('all', 'DET'), ('your', 'PRON'), ('sakes', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('I', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('last', 'ADJ'), ('week', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('found', 'VERB'), ('you', 'PRON'), ('alone', 'ADJ'), ('I', 'PRON'), ('came', 'VERB'), ('determined', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('irresolute', 'VERB'), ('what', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('when', 'SCONJ'), ('it', 'PRON'), ('WAS', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('My', 'PRON'), ('behaviour', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('seemed', 'VERB'), ('strange', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('then', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('now', 'ADV'), ('you', 'PRON'), ('will', 'AUX'), ('comprehend', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('suffer', 'VERB'), ('you', 'PRON'), ('all', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('so', 'ADV'), ('deceived', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('your', 'PRON'), ('sisterbut', 'NOUN'), ('what', 'PRON'), ('could', 'AUX'), ('I', 'PRON'), ('do', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('hope', 'NOUN'), ('of', 'ADP'), ('interfering', 'VERB'), ('with', 'ADP'), ('success', 'NOUN'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('your', 'PRON'), ('sisters', 'NOUN'), ('influence', 'VERB'), ('might', 'AUX'), ('yet', 'ADV'), ('reclaim', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('now', 'ADV'), ('after', 'ADP'), ('such', 'ADJ'), ('dishonorable', 'ADJ'), ('usage', 'NOUN'), ('who', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('his', 'PRON'), ('designs', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('they', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('however', 'ADV'), ('she', 'PRON'), ('may', 'AUX'), ('now', 'ADV'), ('and', 'CCONJ'), ('hereafter', 'ADJ'), ('doubtless', 'ADJ'), ('WILL', 'AUX'), ('\n', 'SPACE'), ('turn', 'VERB'), ('with', 'ADP'), ('gratitude', 'NOUN'), ('towards', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('condition', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('compares', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('my', 'PRON'), ('poor', 'ADJ'), ('Eliza', 'PROPN'), ('when', 'SCONJ'), ('she', 'PRON'), ('considers', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('wretched', 'ADJ'), ('and', 'CCONJ'), ('hopeless', 'ADJ'), ('situation', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('poor', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pictures', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('herself', 'PRON'), ('with', 'ADP'), ('an', 'DET'), ('affection', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('so', 'ADV'), ('strong', 'ADJ'), ('\n', 'SPACE'), ('still', 'ADV'), ('as', 'ADV'), ('strong', 'ADJ'), ('as', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('mind', 'NOUN'), ('tormented', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('selfreproach', 'NOUN'), ('which', 'PRON'), ('must', 'AUX'), ('attend', 'VERB'), ('her', 'PRON'), ('through', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('Surely', 'ADV'), ('this', 'DET'), ('comparison', 'NOUN'), ('must', 'AUX'), ('have', 'VERB'), ('its', 'PRON'), ('use', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('will', 'AUX'), ('feel', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('sufferings', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('nothing', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('\n', 'SPACE'), ('proceed', 'VERB'), ('from', 'ADP'), ('no', 'DET'), ('misconduct', 'NOUN'), ('and', 'CCONJ'), ('can', 'AUX'), ('bring', 'VERB'), ('no', 'DET'), ('disgrace', 'NOUN'), ('\n', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('every', 'DET'), ('friend', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('made', 'VERB'), ('still', 'ADV'), ('more', 'ADJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('friend', 'NOUN'), ('by', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('Concern', 'PROPN'), ('for', 'ADP'), ('her', 'PRON'), ('unhappiness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('respect', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('fortitude', 'NOUN'), ('under', 'ADP'), ('it', 'PRON'), ('must', 'AUX'), ('strengthen', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('attachment', 'NOUN'), (' ', 'SPACE'), ('Use', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('discretion', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('communicating', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('what', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('told', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('know', 'VERB'), ('best', 'ADJ'), ('what', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('its', 'PRON'), ('effect', 'NOUN'), ('but', 'CCONJ'), ('had', 'AUX'), ('I', 'PRON'), ('not', 'PART'), ('seriously', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('believed', 'VERB'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('of', 'ADP'), ('service', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('lessen', 'VERB'), ('her', 'PRON'), ('regrets', 'NOUN'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('suffered', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('to', 'AUX'), ('trouble', 'VERB'), ('you', 'PRON'), ('with', 'ADP'), ('this', 'DET'), ('account', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('afflictions', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('recital', 'NOUN'), ('which', 'PRON'), ('may', 'AUX'), ('seem', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('intended', 'VERB'), ('to', 'PART'), ('raise', 'VERB'), ('myself', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('expense', 'NOUN'), ('of', 'ADP'), ('others', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('thanks', 'NOUN'), ('followed', 'VERB'), ('this', 'DET'), ('speech', 'NOUN'), ('with', 'ADP'), ('grateful', 'ADJ'), ('\n', 'SPACE'), ('earnestness', 'NOUN'), ('attended', 'VERB'), ('too', 'ADV'), ('with', 'ADP'), ('the', 'DET'), ('assurance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('expecting', 'VERB'), ('material', 'NOUN'), ('advantage', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('communication', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('pained', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('endeavors', 'NOUN'), ('to', 'PART'), ('acquit', 'VERB'), ('him', 'PRON'), ('than', 'ADP'), ('by', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('for', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('irritates', 'VERB'), ('her', 'PRON'), ('mind', 'NOUN'), ('more', 'ADJ'), ('than', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('perfect', 'ADJ'), ('conviction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('unworthiness', 'NOUN'), ('can', 'AUX'), ('do', 'VERB'), (' ', 'SPACE'), ('Now', 'ADV'), ('though', 'SCONJ'), ('at', 'ADP'), ('first', 'ADV'), ('she', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('suffer', 'VERB'), ('much', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('she', 'PRON'), ('will', 'AUX'), ('soon', 'ADV'), ('become', 'VERB'), ('easier', 'ADJ'), ('\n', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('she', 'PRON'), ('continued', 'VERB'), ('after', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('silence', 'NOUN'), ('\n', 'SPACE'), ('ever', 'ADV'), ('seen', 'VERB'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('since', 'SCONJ'), ('you', 'PRON'), ('left', 'VERB'), ('him', 'PRON'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('he', 'PRON'), ('replied', 'VERB'), ('gravely', 'ADV'), ('once', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), (' ', 'SPACE'), ('One', 'NUM'), ('meeting', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('unavoidable', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('startled', 'ADJ'), ('by', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('looked', 'VERB'), ('at', 'ADP'), ('him', 'PRON'), ('anxiously', 'ADV'), ('\n', 'SPACE'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('have', 'AUX'), ('you', 'PRON'), ('met', 'VERB'), ('him', 'PRON'), ('to', 'SCONJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('meet', 'VERB'), ('him', 'PRON'), ('no', 'DET'), ('other', 'ADJ'), ('way', 'NOUN'), (' ', 'SPACE'), ('Eliza', 'PROPN'), ('had', 'AUX'), ('confessed', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('though', 'SCONJ'), ('most', 'ADV'), ('reluctantly', 'ADV'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('lover', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('he', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('which', 'PRON'), ('was', 'AUX'), ('within', 'ADP'), ('a', 'DET'), ('fortnight', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('myself', 'PRON'), ('we', 'PRON'), ('met', 'VERB'), ('by', 'ADP'), ('appointment', 'NOUN'), ('he', 'PRON'), ('to', 'PART'), ('defend', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('to', 'PART'), ('punish', 'VERB'), ('his', 'PRON'), ('conduct', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('returned', 'VERB'), ('unwounded', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('meeting', 'NOUN'), ('therefore', 'ADV'), ('never', 'ADV'), ('got', 'VERB'), ('abroad', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('sighed', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('fancied', 'ADJ'), ('necessity', 'NOUN'), ('of', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('to', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('soldier', 'NOUN'), ('she', 'PRON'), ('presumed', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('censure', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Such', 'ADJ'), ('said', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('after', 'SCONJ'), ('a', 'DET'), ('pause', 'NOUN'), ('\n', 'SPACE'), ('has', 'AUX'), ('been', 'AUX'), ('the', 'DET'), ('unhappy', 'ADJ'), ('resemblance', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('fate', 'NOUN'), ('of', 'ADP'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('daughter', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('imperfectly', 'ADV'), ('have', 'AUX'), ('I', 'PRON'), ('discharged', 'VERB'), ('my', 'PRON'), ('trust', 'NOUN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('she', 'PRON'), ('still', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('recovered', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('lyingin', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('found', 'VERB'), ('her', 'PRON'), ('near', 'ADP'), ('her', 'PRON'), ('delivery', 'NOUN'), ('I', 'PRON'), ('removed', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('child', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('and', 'CCONJ'), ('there', 'ADV'), ('she', 'PRON'), ('remains', 'VERB'), ('\n\n', 'SPACE'), ('Recollecting', 'VERB'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('probably', 'ADV'), ('\n', 'SPACE'), ('dividing', 'VERB'), ('Elinor', 'PROPN'), ('from', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('he', 'PRON'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('receiving', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('again', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('grateful', 'ADJ'), ('acknowledgments', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('leaving', 'VERB'), ('her', 'PRON'), ('full', 'ADJ'), ('of', 'ADP'), ('compassion', 'NOUN'), ('and', 'CCONJ'), ('esteem', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('32', 'NUM'), ('\n\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('particulars', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('conversation', 'NOUN'), ('were', 'AUX'), ('repeated', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('very', 'ADV'), ('soon', 'ADV'), ('were', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('effect', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('entirely', 'ADV'), ('such', 'ADJ'), ('as', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('hoped', 'VERB'), ('to', 'PART'), ('see', 'VERB'), (' ', 'SPACE'), ('Not', 'PART'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('appeared', 'VERB'), ('to', 'PART'), ('distrust', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('she', 'PRON'), ('listened', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('steady', 'ADJ'), ('and', 'CCONJ'), ('submissive', 'ADJ'), ('attention', 'NOUN'), ('made', 'VERB'), ('neither', 'DET'), ('\n', 'SPACE'), ('objection', 'NOUN'), ('nor', 'CCONJ'), ('remark', 'NOUN'), ('attempted', 'VERB'), ('no', 'DET'), ('vindication', 'NOUN'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('seemed', 'VERB'), ('to', 'ADP'), ('shew', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('tears', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('felt', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('impossible', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('though', 'SCONJ'), ('this', 'DET'), ('behaviour', 'NOUN'), ('assured', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('guilt', 'NOUN'), ('WAS', 'AUX'), ('carried', 'VERB'), ('home', 'ADV'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('mind', 'NOUN'), ('though', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('with', 'ADP'), ('satisfaction', 'NOUN'), ('the', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), ('avoiding', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('when', 'SCONJ'), ('he', 'PRON'), ('called', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('speaking', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('even', 'ADV'), ('voluntarily', 'ADV'), ('speaking', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('compassionate', 'ADJ'), ('respect', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('saw', 'VERB'), ('her', 'PRON'), ('spirits', 'NOUN'), ('less', 'ADV'), ('violently', 'ADV'), ('irritated', 'ADJ'), ('than', 'ADP'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('less', 'ADV'), ('wretched', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('mind', 'NOUN'), ('did', 'AUX'), ('become', 'AUX'), ('\n', 'SPACE'), ('settled', 'VERB'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('settled', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('gloomy', 'ADJ'), ('dejection', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('felt', 'VERB'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('Willoughbys', 'PROPN'), ('character', 'NOUN'), ('yet', 'ADV'), ('more', 'ADV'), ('heavily', 'ADV'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('felt', 'VERB'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('heart', 'NOUN'), ('his', 'PRON'), ('seduction', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('desertion', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Williams', 'PROPN'), ('the', 'DET'), ('misery', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('poor', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('his', 'PRON'), ('designs', 'NOUN'), ('might', 'AUX'), ('ONCE', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('on', 'ADP'), ('herself', 'PRON'), ('preyed', 'VERB'), ('altogether', 'ADV'), ('so', 'ADV'), ('much', 'ADV'), ('on', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('bring', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('felt', 'VERB'), ('\n', 'SPACE'), ('even', 'ADV'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('brooding', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('sorrows', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), ('\n', 'SPACE'), ('gave', 'VERB'), ('more', 'ADJ'), ('pain', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('than', 'SCONJ'), ('could', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('communicated', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('open', 'ADJ'), ('and', 'CCONJ'), ('most', 'ADV'), ('frequent', 'ADJ'), ('confession', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('To', 'PART'), ('give', 'VERB'), ('the', 'DET'), ('feelings', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('language', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('receiving', 'VERB'), ('and', 'CCONJ'), ('answering', 'VERB'), ('Elinors', 'PROPN'), ('letter', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('a', 'DET'), ('repetition', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('daughters', 'NOUN'), ('had', 'AUX'), ('already', 'ADV'), ('felt', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('said', 'VERB'), ('of', 'ADP'), ('a', 'DET'), ('disappointment', 'NOUN'), ('hardly', 'ADV'), ('less', 'ADV'), ('painful', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('and', 'CCONJ'), ('an', 'DET'), ('indignation', 'NOUN'), ('even', 'ADV'), ('greater', 'ADJ'), ('than', 'ADP'), ('Elinors', 'PROPN'), ('\n', 'SPACE'), ('Long', 'ADJ'), ('letters', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('quickly', 'ADV'), ('succeeding', 'VERB'), ('each', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('arrived', 'VERB'), ('to', 'PART'), ('tell', 'VERB'), ('all', 'PRON'), ('that', 'PRON'), ('she', 'PRON'), ('suffered', 'VERB'), ('and', 'CCONJ'), ('thought', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('express', 'VERB'), ('her', 'PRON'), ('anxious', 'ADJ'), ('solicitude', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('entreat', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('bear', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('fortitude', 'NOUN'), ('under', 'ADP'), ('this', 'DET'), ('misfortune', 'NOUN'), ('\n', 'SPACE'), ('Bad', 'PROPN'), ('indeed', 'ADV'), ('must', 'AUX'), ('the', 'DET'), ('nature', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('affliction', 'NOUN'), ('be', 'AUX'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('could', 'AUX'), ('talk', 'VERB'), ('of', 'ADP'), ('fortitude', 'ADJ'), ('mortifying', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('humiliating', 'ADJ'), ('must', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('origin', 'NOUN'), ('of', 'ADP'), ('those', 'DET'), ('regrets', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('SHE', 'PRON'), ('could', 'AUX'), ('wish', 'VERB'), ('her', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('indulge', 'VERB'), ('\n\n', 'SPACE'), ('Against', 'ADP'), ('the', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('individual', 'ADJ'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('determined', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('better', 'ADJ'), ('for', 'SCONJ'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('any', 'PRON'), ('where', 'SCONJ'), ('at', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('than', 'ADP'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('within', 'ADP'), ('her', 'PRON'), ('view', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('bringing', 'VERB'), ('back', 'ADV'), ('\n', 'SPACE'), ('the', 'DET'), ('past', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('strongest', 'ADJ'), ('and', 'CCONJ'), ('most', 'ADV'), ('afflicting', 'VERB'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('constantly', 'ADV'), ('placing', 'VERB'), ('Willoughby', 'PROPN'), ('before', 'ADP'), ('her', 'PRON'), ('such', 'ADJ'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('seen', 'VERB'), ('him', 'PRON'), ('there', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('recommended', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('daughters', 'NOUN'), ('therefore', 'ADV'), ('by', 'ADP'), ('all', 'DET'), ('means', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('shorten', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('visit', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('the', 'DET'), ('length', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('though', 'SCONJ'), ('never', 'ADV'), ('\n', 'SPACE'), ('exactly', 'ADV'), ('fixed', 'VERB'), ('had', 'AUX'), ('been', 'AUX'), ('expected', 'VERB'), ('by', 'ADP'), ('all', 'PRON'), ('to', 'PART'), ('comprise', 'VERB'), ('at', 'ADV'), ('least', 'ADJ'), ('\n', 'SPACE'), ('five', 'NUM'), ('or', 'CCONJ'), ('six', 'NUM'), ('weeks', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('variety', 'NOUN'), ('of', 'ADP'), ('occupations', 'NOUN'), ('of', 'ADP'), ('objects', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('of', 'ADP'), ('company', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('procured', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('inevitable', 'ADJ'), ('there', 'ADV'), ('and', 'CCONJ'), ('might', 'AUX'), ('yet', 'ADV'), ('she', 'PRON'), ('hoped', 'VERB'), ('\n', 'SPACE'), ('cheat', 'VERB'), ('Marianne', 'PROPN'), ('at', 'ADP'), ('times', 'NOUN'), ('into', 'ADP'), ('some', 'DET'), ('interest', 'NOUN'), ('beyond', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('into', 'ADP'), ('some', 'DET'), ('amusement', 'NOUN'), ('much', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('ideas', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('now', 'ADV'), ('be', 'AUX'), ('spurned', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('From', 'ADP'), ('all', 'DET'), ('danger', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('Willoughby', 'PROPN'), ('again', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('mother', 'NOUN'), ('considered', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('at', 'ADV'), ('least', 'ADJ'), ('equally', 'ADV'), ('safe', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('as', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('since', 'SCONJ'), ('his', 'PRON'), ('acquaintance', 'NOUN'), ('must', 'AUX'), ('\n', 'SPACE'), ('now', 'ADV'), ('be', 'AUX'), ('dropped', 'VERB'), ('by', 'ADP'), ('all', 'PRON'), ('who', 'PRON'), ('called', 'VERB'), ('themselves', 'PRON'), ('her', 'PRON'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('Design', 'PROPN'), ('could', 'AUX'), ('never', 'ADV'), ('bring', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('each', 'DET'), ('others', 'NOUN'), ('way', 'ADV'), ('\n', 'SPACE'), ('negligence', 'NOUN'), ('could', 'AUX'), ('never', 'ADV'), ('leave', 'VERB'), ('them', 'PRON'), ('exposed', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('chance', 'NOUN'), ('had', 'VERB'), ('less', 'ADJ'), ('in', 'ADP'), ('its', 'PRON'), ('favour', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('crowd', 'NOUN'), ('of', 'ADP'), ('London', 'PROPN'), ('\n', 'SPACE'), ('than', 'ADP'), ('even', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('retirement', 'NOUN'), ('of', 'ADP'), ('Barton', 'PROPN'), ('where', 'SCONJ'), ('it', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('force', 'VERB'), ('him', 'PRON'), ('before', 'ADP'), ('her', 'PRON'), ('while', 'SCONJ'), ('paying', 'VERB'), ('that', 'DET'), ('visit', 'NOUN'), ('at', 'ADP'), ('Allenham', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('his', 'PRON'), ('marriage', 'NOUN'), ('which', 'PRON'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('from', 'ADP'), ('foreseeing', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('first', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('probable', 'ADJ'), ('event', 'NOUN'), ('had', 'AUX'), ('brought', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('expect', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('certain', 'ADJ'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('yet', 'ADV'), ('another', 'DET'), ('reason', 'NOUN'), ('for', 'ADP'), ('wishing', 'VERB'), ('her', 'PRON'), ('children', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('remain', 'VERB'), ('where', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('a', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('her', 'PRON'), ('soninlaw', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('told', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('and', 'CCONJ'), ('his', 'PRON'), ('wife', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('before', 'ADP'), ('the', 'DET'), ('middle', 'NOUN'), ('of', 'ADP'), ('February', 'PROPN'), ('and', 'CCONJ'), ('she', 'PRON'), ('judged', 'VERB'), ('it', 'PRON'), ('right', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('sometimes', 'ADV'), ('see', 'VERB'), ('their', 'PRON'), ('brother', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('promised', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('guided', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('submitted', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('therefore', 'ADV'), ('without', 'ADP'), ('opposition', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('it', 'PRON'), ('proved', 'VERB'), ('perfectly', 'ADV'), ('different', 'ADJ'), ('from', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('wished', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('expected', 'VERB'), ('though', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('entirely', 'ADV'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('formed', 'VERB'), ('on', 'ADP'), ('mistaken', 'ADJ'), ('grounds', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('by', 'ADP'), ('requiring', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('longer', 'ADJ'), ('continuance', 'NOUN'), ('in', 'ADP'), ('London', 'PROPN'), ('it', 'PRON'), ('deprived', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('only', 'ADJ'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('alleviation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('wretchedness', 'NOUN'), ('the', 'DET'), ('personal', 'ADJ'), ('\n', 'SPACE'), ('sympathy', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('doomed', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('such', 'ADJ'), ('society', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('such', 'ADJ'), ('scenes', 'NOUN'), ('as', 'SCONJ'), ('must', 'AUX'), ('prevent', 'VERB'), ('her', 'PRON'), ('ever', 'ADV'), ('knowing', 'VERB'), ('a', 'DET'), ('moments', 'NOUN'), ('rest', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('consolation', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('what', 'PRON'), ('brought', 'VERB'), ('evil', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('would', 'AUX'), ('bring', 'VERB'), ('good', 'ADJ'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('on', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('hand', 'NOUN'), ('suspecting', 'NOUN'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('her', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('avoid', 'VERB'), ('Edward', 'PROPN'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('comforted', 'VERB'), ('herself', 'PRON'), ('by', 'ADP'), ('thinking', 'VERB'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('their', 'PRON'), ('longer', 'ADJ'), ('\n', 'SPACE'), ('stay', 'VERB'), ('would', 'AUX'), ('therefore', 'ADV'), ('militate', 'VERB'), ('against', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('better', 'ADJ'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('than', 'ADP'), ('an', 'DET'), ('immediate', 'ADJ'), ('return', 'NOUN'), ('\n', 'SPACE'), ('into', 'ADP'), ('Devonshire', 'PROPN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('carefulness', 'NOUN'), ('in', 'ADP'), ('guarding', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('from', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('hearing', 'VERB'), ('Willoughbys', 'PROPN'), ('name', 'NOUN'), ('mentioned', 'VERB'), ('was', 'AUX'), ('not', 'PART'), ('thrown', 'VERB'), ('away', 'ADP'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('though', 'ADV'), ('without', 'ADP'), ('knowing', 'VERB'), ('it', 'PRON'), ('herself', 'PRON'), ('reaped', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('its', 'PRON'), ('advantage', 'NOUN'), ('for', 'SCONJ'), ('neither', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('nor', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('even', 'ADV'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('herself', 'PRON'), ('ever', 'ADV'), ('spoke', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('before', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('wished', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('same', 'ADJ'), ('forbearance', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('extended', 'VERB'), ('\n', 'SPACE'), ('towards', 'ADP'), ('herself', 'PRON'), ('but', 'CCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('obliged', 'VERB'), ('to', 'PART'), ('listen', 'VERB'), ('day', 'NOUN'), ('after', 'ADP'), ('day', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('indignation', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('all', 'DET'), ('\n\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('thought', 'VERB'), ('it', 'PRON'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('A', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('whom', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('had', 'VERB'), ('such', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('well', 'ADV'), ('\n', 'SPACE'), ('Such', 'DET'), ('a', 'DET'), ('goodnatured', 'ADJ'), ('fellow', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('\n', 'SPACE'), ('bolder', 'NOUN'), ('rider', 'NOUN'), ('in', 'ADP'), ('England', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('unaccountable', 'ADJ'), ('business', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('wished', 'VERB'), ('him', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('devil', 'NOUN'), ('with', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('heart', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('speak', 'VERB'), ('another', 'DET'), ('word', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('meet', 'VERB'), ('him', 'PRON'), ('where', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('for', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('No', 'INTJ'), ('not', 'PART'), ('if', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('by', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Barton', 'PROPN'), ('covert', 'ADJ'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('kept', 'VERB'), ('watching', 'VERB'), ('for', 'ADP'), ('two', 'NUM'), ('\n', 'SPACE'), ('hours', 'NOUN'), ('together', 'ADV'), (' ', 'SPACE'), ('Such', 'DET'), ('a', 'DET'), ('scoundrel', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('fellow', 'ADJ'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('deceitful', 'ADJ'), ('dog', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('last', 'ADJ'), ('time', 'NOUN'), ('they', 'PRON'), ('met', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('offered', 'VERB'), ('him', 'PRON'), ('one', 'NUM'), ('of', 'ADP'), ('Follys', 'PROPN'), ('puppies', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('in', 'ADP'), ('her', 'PRON'), ('way', 'NOUN'), ('was', 'AUX'), ('equally', 'ADV'), ('angry', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('determined', 'ADJ'), ('to', 'PART'), ('drop', 'VERB'), ('his', 'PRON'), ('acquaintance', 'NOUN'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('thankful', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('acquainted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('wished', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('heart', 'NOUN'), ('Combe', 'PROPN'), ('\n', 'SPACE'), ('Magna', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('so', 'ADV'), ('near', 'ADP'), ('Cleveland', 'PROPN'), ('but', 'CCONJ'), ('it', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('signify', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('too', 'ADV'), ('far', 'ADV'), ('off', 'ADV'), ('to', 'PART'), ('visit', 'VERB'), ('she', 'PRON'), ('hated', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('resolved', 'VERB'), ('never', 'ADV'), ('to', 'PART'), ('mention', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('name', 'NOUN'), ('again', 'ADV'), ('and', 'CCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('tell', 'VERB'), ('everybody', 'PRON'), ('she', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('goodfornothing', 'VERB'), ('he', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('The', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('sympathy', 'NOUN'), ('was', 'AUX'), ('shewn', 'VERB'), ('in', 'ADP'), ('procuring', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('particulars', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('power', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('approaching', 'VERB'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('communicating', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('soon', 'ADV'), ('tell', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('what', 'PRON'), ('coachmakers', 'VERB'), ('the', 'DET'), ('new', 'ADJ'), ('carriage', 'NOUN'), ('was', 'AUX'), ('building', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('what', 'PRON'), ('painter', 'NOUN'), ('Mr', 'PROPN'), ('Willoughbys', 'PROPN'), ('portrait', 'NOUN'), ('was', 'AUX'), ('drawn', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('what', 'DET'), ('warehouse', 'NOUN'), ('Miss', 'PROPN'), ('Greys', 'PROPN'), ('clothes', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('seen', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('calm', 'ADJ'), ('and', 'CCONJ'), ('polite', 'ADJ'), ('unconcern', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('happy', 'ADJ'), ('relief', 'NOUN'), ('to', 'ADP'), ('Elinors', 'PROPN'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('oppressed', 'VERB'), ('as', 'SCONJ'), ('they', 'PRON'), ('often', 'ADV'), ('were', 'AUX'), ('by', 'ADP'), ('the', 'DET'), ('clamorous', 'ADJ'), ('kindness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('comfort', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('exciting', 'ADJ'), ('no', 'DET'), ('interest', 'NOUN'), ('in', 'ADP'), ('ONE', 'NUM'), ('person', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('among', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('circle', 'NOUN'), ('of', 'ADP'), ('friends', 'NOUN'), ('a', 'DET'), ('great', 'ADJ'), ('comfort', 'NOUN'), ('to', 'PART'), ('know', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('ONE', 'NUM'), ('who', 'PRON'), ('would', 'AUX'), ('meet', 'VERB'), ('her', 'PRON'), ('without', 'ADP'), ('feeling', 'VERB'), ('any', 'DET'), ('curiosity', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('particulars', 'NOUN'), ('or', 'CCONJ'), ('any', 'DET'), ('anxiety', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('health', 'NOUN'), ('\n\n', 'SPACE'), ('Every', 'DET'), ('qualification', 'NOUN'), ('is', 'AUX'), ('raised', 'VERB'), ('at', 'ADP'), ('times', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('circumstances', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('to', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('its', 'PRON'), ('real', 'ADJ'), ('value', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('sometimes', 'ADV'), ('worried', 'VERB'), ('down', 'ADP'), ('by', 'ADP'), ('officious', 'ADJ'), ('condolence', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('rate', 'VERB'), ('goodbreeding', 'NOUN'), ('as', 'ADP'), ('more', 'ADV'), ('indispensable', 'ADJ'), ('to', 'PART'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('goodnature', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('expressed', 'VERB'), ('her', 'PRON'), ('sense', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('\n', 'SPACE'), ('about', 'ADV'), ('once', 'ADV'), ('every', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('twice', 'ADV'), ('if', 'SCONJ'), ('the', 'DET'), ('subject', 'NOUN'), ('occurred', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('often', 'ADV'), ('by', 'ADP'), ('saying', 'VERB'), ('It', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('shocking', 'ADJ'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('the', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('continual', 'ADJ'), ('though', 'SCONJ'), ('gentle', 'ADJ'), ('vent', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('able', 'ADJ'), ('not', 'PART'), ('only', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('first', 'ADV'), ('without', 'ADP'), ('the', 'DET'), ('smallest', 'ADJ'), ('emotion', 'NOUN'), ('but', 'CCONJ'), ('very', 'ADV'), ('soon', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('without', 'ADP'), ('recollecting', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('having', 'AUX'), ('thus', 'ADV'), ('supported', 'VERB'), ('the', 'DET'), ('dignity', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('sex', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('spoken', 'VERB'), ('her', 'PRON'), ('decided', 'VERB'), ('censure', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('she', 'PRON'), ('thought', 'VERB'), ('herself', 'PRON'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('attend', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('assemblies', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('determined', 'VERB'), ('though', 'ADV'), ('rather', 'ADV'), ('against', 'ADP'), ('the', 'DET'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Willoughby', 'PROPN'), ('would', 'AUX'), ('at', 'ADP'), ('once', 'ADV'), ('be', 'AUX'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('elegance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('fortune', 'NOUN'), ('to', 'PART'), ('leave', 'VERB'), ('her', 'PRON'), ('card', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('married', 'VERB'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('delicate', 'ADJ'), ('unobtrusive', 'ADJ'), ('enquiries', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('never', 'ADV'), ('unwelcome', 'ADJ'), ('to', 'PART'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('abundantly', 'ADV'), ('\n', 'SPACE'), ('earned', 'VERB'), ('the', 'DET'), ('privilege', 'NOUN'), ('of', 'ADP'), ('intimate', 'ADJ'), ('discussion', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('disappointment', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('friendly', 'ADJ'), ('zeal', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('endeavoured', 'VERB'), ('to', 'PART'), ('soften', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('they', 'PRON'), ('always', 'ADV'), ('\n', 'SPACE'), ('conversed', 'VERB'), ('with', 'ADP'), ('confidence', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('chief', 'ADJ'), ('reward', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('painful', 'ADJ'), ('exertion', 'NOUN'), ('of', 'ADP'), ('disclosing', 'VERB'), ('past', 'ADJ'), ('sorrows', 'NOUN'), ('and', 'CCONJ'), ('present', 'ADJ'), ('\n', 'SPACE'), ('humiliations', 'NOUN'), ('was', 'AUX'), ('given', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('pitying', 'NOUN'), ('eye', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('sometimes', 'ADV'), ('observed', 'VERB'), ('him', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('gentleness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('voice', 'NOUN'), ('whenever', 'SCONJ'), ('though', 'SCONJ'), ('it', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('happen', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('or', 'CCONJ'), ('could', 'AUX'), ('oblige', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('THESE', 'PRON'), ('assured', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('his', 'PRON'), ('exertion', 'NOUN'), ('had', 'AUX'), ('produced', 'VERB'), ('an', 'DET'), ('\n', 'SPACE'), ('increase', 'NOUN'), ('of', 'ADP'), ('goodwill', 'NOUN'), ('towards', 'ADP'), ('himself', 'PRON'), ('and', 'CCONJ'), ('THESE', 'PRON'), ('gave', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('hopes', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('farther', 'ADV'), ('augmented', 'VERB'), ('hereafter', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('knew', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('this', 'PRON'), ('who', 'PRON'), ('knew', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('that', 'SCONJ'), ('the', 'DET'), ('Colonel', 'PROPN'), ('continued', 'VERB'), ('as', 'ADP'), ('grave', 'ADJ'), ('as', 'ADP'), ('ever', 'ADV'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('neither', 'ADV'), ('prevail', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('the', 'DET'), ('offer', 'NOUN'), ('himself', 'PRON'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('commission', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('for', 'ADP'), ('him', 'PRON'), ('began', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('end', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('days', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('instead', 'ADV'), ('of', 'ADP'), ('Midsummer', 'PROPN'), ('\n', 'SPACE'), ('they', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('till', 'SCONJ'), ('Michaelmas', 'PROPN'), ('and', 'CCONJ'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('end', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('match', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('The', 'DET'), ('good', 'ADJ'), ('understanding', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('Colonel', 'PROPN'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('seemed', 'VERB'), ('rather', 'ADV'), ('to', 'PART'), ('declare', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('honours', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('mulberrytree', 'NOUN'), ('the', 'DET'), ('canal', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('yew', 'NOUN'), ('arbour', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('all', 'ADV'), ('be', 'AUX'), ('made', 'VERB'), ('over', 'ADP'), ('to', 'ADP'), ('HER', 'PRON'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('\n', 'SPACE'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('ceased', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('at', 'ADP'), ('all', 'PRON'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Early', 'ADV'), ('in', 'ADP'), ('February', 'PROPN'), ('within', 'ADP'), ('a', 'DET'), ('fortnight', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('receipt', 'NOUN'), ('of', 'ADP'), ('Willoughbys', 'PROPN'), ('letter', 'NOUN'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('the', 'DET'), ('painful', 'ADJ'), ('\n', 'SPACE'), ('office', 'NOUN'), ('of', 'ADP'), ('informing', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('married', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('taken', 'VERB'), ('care', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('intelligence', 'NOUN'), ('conveyed', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('herself', 'PRON'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('known', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('ceremony', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('over', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('desirous', 'ADJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('should', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('receive', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('notice', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('public', 'ADJ'), ('papers', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('she', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('eagerly', 'ADV'), ('examining', 'VERB'), ('every', 'DET'), ('morning', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('received', 'VERB'), ('the', 'DET'), ('news', 'NOUN'), ('with', 'ADP'), ('resolute', 'ADJ'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('made', 'VERB'), ('no', 'DET'), ('observation', 'NOUN'), ('on', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('at', 'ADP'), ('first', 'ADV'), ('shed', 'VERB'), ('no', 'DET'), ('tears', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('they', 'PRON'), ('would', 'AUX'), ('burst', 'VERB'), ('out', 'ADV'), ('and', 'CCONJ'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('state', 'NOUN'), ('hardly', 'ADV'), ('less', 'ADV'), ('pitiable', 'ADJ'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('first', 'ADV'), ('learnt', 'VERB'), ('to', 'PART'), ('expect', 'VERB'), ('the', 'DET'), ('event', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Willoughbys', 'PROPN'), ('left', 'VERB'), ('town', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('married', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('now', 'ADV'), ('hoped', 'VERB'), ('as', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('seeing', 'VERB'), ('either', 'CCONJ'), ('of', 'ADP'), ('them', 'PRON'), ('to', 'PART'), ('prevail', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('yet', 'ADV'), ('left', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('since', 'SCONJ'), ('the', 'DET'), ('blow', 'NOUN'), ('first', 'ADV'), ('fell', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('go', 'VERB'), ('out', 'ADP'), ('again', 'ADV'), ('by', 'ADP'), ('degrees', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('before', 'ADP'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('this', 'DET'), ('time', 'NOUN'), ('the', 'DET'), ('two', 'NUM'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('lately', 'ADV'), ('arrived', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('their', 'PRON'), ('cousins', 'NOUN'), ('house', 'NOUN'), ('in', 'ADP'), ('Bartletts', 'PROPN'), ('Buildings', 'PROPN'), ('\n', 'SPACE'), ('Holburn', 'PROPN'), ('presented', 'VERB'), ('themselves', 'PRON'), ('again', 'ADV'), ('before', 'ADP'), ('their', 'PRON'), ('more', 'ADJ'), ('\n', 'SPACE'), ('grand', 'ADJ'), ('relations', 'NOUN'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('and', 'CCONJ'), ('Berkeley', 'PROPN'), ('Streets', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('were', 'AUX'), ('welcomed', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('with', 'ADP'), ('great', 'ADJ'), ('cordiality', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('only', 'ADV'), ('was', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('Their', 'PRON'), ('presence', 'NOUN'), ('\n', 'SPACE'), ('always', 'ADV'), ('gave', 'VERB'), ('her', 'PRON'), ('pain', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('hardly', 'ADV'), ('knew', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('gracious', 'ADJ'), ('return', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('overpowering', 'NOUN'), ('delight', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('finding', 'VERB'), ('her', 'PRON'), ('STILL', 'PROPN'), ('in', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('quite', 'ADV'), ('disappointed', 'ADJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('found', 'VERB'), ('you', 'PRON'), ('here', 'ADV'), ('STILL', 'PROPN'), ('said', 'VERB'), ('she', 'PRON'), ('repeatedly', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('strong', 'ADJ'), ('\n', 'SPACE'), ('emphasis', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('word', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('always', 'ADV'), ('thought', 'VERB'), ('I', 'PRON'), ('SHOULD', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('sure', 'ADJ'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('leave', 'VERB'), ('London', 'PROPN'), ('yet', 'ADV'), ('awhile', 'ADV'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('you', 'PRON'), ('TOLD', 'VERB'), ('me', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('that', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('stay', 'VERB'), ('above', 'ADP'), ('a', 'DET'), ('MONTH', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('would', 'AUX'), ('most', 'ADV'), ('likely', 'ADV'), ('change', 'VERB'), ('your', 'PRON'), ('mind', 'NOUN'), ('when', 'SCONJ'), ('it', 'PRON'), ('came', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('such', 'DET'), ('a', 'DET'), ('great', 'ADJ'), ('pity', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'AUX'), ('went', 'VERB'), ('away', 'ADV'), ('before', 'SCONJ'), ('your', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('came', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('now', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('no', 'DET'), ('hurry', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('amazingly', 'ADV'), ('glad', 'ADJ'), ('you', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('keep', 'VERB'), ('to', 'ADP'), ('YOUR', 'PRON'), ('WORD', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('perfectly', 'ADV'), ('understood', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('was', 'AUX'), ('forced', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('use', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('selfcommand', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('appear', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('did', 'VERB'), ('NOT', 'PART'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('did', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('travel', 'VERB'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('stage', 'NOUN'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('replied', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('quick', 'ADJ'), ('exultation', 'NOUN'), ('we', 'PRON'), ('came', 'VERB'), ('post', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('way', 'NOUN'), ('and', 'CCONJ'), ('had', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('smart', 'ADJ'), ('beau', 'NOUN'), ('to', 'PART'), ('attend', 'VERB'), ('us', 'PRON'), (' ', 'SPACE'), ('Dr', 'PROPN'), ('Davies', 'PROPN'), ('was', 'AUX'), ('coming', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('we', 'PRON'), ('thought', 'VERB'), ('we', 'PRON'), ('d', 'SYM'), ('join', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('postchaise', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('behaved', 'VERB'), ('very', 'ADV'), ('genteelly', 'ADV'), ('and', 'CCONJ'), ('paid', 'VERB'), ('ten', 'NUM'), ('or', 'CCONJ'), ('twelve', 'NUM'), ('\n', 'SPACE'), ('shillings', 'NOUN'), ('more', 'ADJ'), ('than', 'SCONJ'), ('we', 'PRON'), ('did', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('oh', 'INTJ'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('very', 'ADV'), ('pretty', 'ADV'), ('\n', 'SPACE'), ('indeed', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('Doctor', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('single', 'ADJ'), ('man', 'NOUN'), ('I', 'PRON'), ('warrant', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('There', 'ADV'), ('now', 'ADV'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('affectedly', 'ADV'), ('simpering', 'VERB'), ('\n', 'SPACE'), ('everybody', 'PRON'), ('laughs', 'VERB'), ('at', 'ADP'), ('me', 'PRON'), ('so', 'ADV'), ('about', 'ADP'), ('the', 'DET'), ('Doctor', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('why', 'SCONJ'), (' ', 'SPACE'), ('My', 'PRON'), ('cousins', 'NOUN'), ('say', 'VERB'), ('they', 'PRON'), ('are', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('made', 'VERB'), ('a', 'DET'), ('conquest', 'NOUN'), ('but', 'CCONJ'), ('for', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('I', 'PRON'), ('declare', 'VERB'), ('I', 'PRON'), ('never', 'ADV'), ('think', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('him', 'PRON'), ('from', 'ADP'), ('one', 'NUM'), ('hours', 'NOUN'), ('end', 'NOUN'), ('to', 'ADP'), ('another', 'DET'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('here', 'ADV'), ('\n', 'SPACE'), ('comes', 'VERB'), ('your', 'PRON'), ('beau', 'NOUN'), ('Nancy', 'PROPN'), ('my', 'PRON'), ('cousin', 'NOUN'), ('said', 'VERB'), ('tother', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('him', 'PRON'), ('crossing', 'VERB'), ('the', 'DET'), ('street', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('My', 'PRON'), ('beau', 'NOUN'), ('indeed', 'ADV'), ('said', 'VERB'), ('II', 'PROPN'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('who', 'PRON'), ('you', 'PRON'), ('mean', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('Doctor', 'PROPN'), ('is', 'AUX'), ('no', 'DET'), ('beau', 'NOUN'), ('of', 'ADP'), ('mine', 'PRON'), ('\n\n', 'SPACE'), ('Aye', 'NOUN'), ('aye', 'NOUN'), ('that', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('pretty', 'ADV'), ('talkingbut', 'NOUN'), ('it', 'PRON'), ('wo', 'AUX'), ('nt', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('Doctor', 'PROPN'), ('is', 'AUX'), ('the', 'DET'), ('man', 'NOUN'), ('I', 'PRON'), ('see', 'VERB'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('indeed', 'ADV'), ('replied', 'VERB'), ('her', 'PRON'), ('cousin', 'NOUN'), ('with', 'ADP'), ('affected', 'ADJ'), ('earnestness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('beg', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('contradict', 'VERB'), ('it', 'PRON'), ('if', 'SCONJ'), ('you', 'PRON'), ('ever', 'ADV'), ('hear', 'VERB'), ('it', 'PRON'), ('talked', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('directly', 'ADV'), ('gave', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('gratifying', 'VERB'), ('\n', 'SPACE'), ('assurance', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('certainly', 'ADV'), ('would', 'AUX'), ('NOT', 'PART'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('made', 'VERB'), ('completely', 'ADV'), ('happy', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('go', 'VERB'), ('and', 'CCONJ'), ('stay', 'VERB'), ('with', 'ADP'), ('your', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('when', 'SCONJ'), ('they', 'PRON'), ('come', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('returning', 'VERB'), ('after', 'ADP'), ('a', 'DET'), ('cessation', 'NOUN'), ('of', 'ADP'), ('hostile', 'ADJ'), ('hints', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('charge', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('yes', 'INTJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('humour', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('farther', 'ADJ'), ('opposition', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('a', 'DET'), ('charming', 'ADJ'), ('thing', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('can', 'AUX'), ('\n', 'SPACE'), ('spare', 'VERB'), ('you', 'PRON'), ('both', 'CCONJ'), ('for', 'ADP'), ('so', 'ADV'), ('long', 'ADV'), ('a', 'DET'), ('time', 'NOUN'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('Long', 'ADV'), ('a', 'DET'), ('time', 'NOUN'), ('indeed', 'ADV'), ('interposed', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('their', 'PRON'), ('visit', 'NOUN'), ('is', 'AUX'), ('but', 'CCONJ'), ('just', 'ADV'), ('begun', 'VERB'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('silenced', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('we', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('she', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('well', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('good', 'ADJ'), (' ', 'SPACE'), ('My', 'PRON'), ('sister', 'NOUN'), ('will', 'AUX'), ('be', 'AUX'), ('equally', 'ADV'), ('\n', 'SPACE'), ('sorry', 'ADJ'), ('to', 'PART'), ('miss', 'VERB'), ('the', 'DET'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('you', 'PRON'), ('but', 'CCONJ'), ('she', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('plagued', 'VERB'), ('lately', 'ADV'), ('with', 'ADP'), ('nervous', 'ADJ'), ('headaches', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('make', 'VERB'), ('her', 'PRON'), ('unfit', 'ADJ'), ('for', 'ADP'), ('company', 'NOUN'), ('or', 'CCONJ'), ('conversation', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('dear', 'ADJ'), ('that', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('pity', 'NOUN'), ('but', 'CCONJ'), ('such', 'ADJ'), ('old', 'ADJ'), ('\n', 'SPACE'), ('friends', 'NOUN'), ('as', 'ADP'), ('Lucy', 'PROPN'), ('and', 'CCONJ'), ('meI', 'PROPN'), ('think', 'VERB'), ('she', 'PRON'), ('might', 'AUX'), ('see', 'VERB'), ('US', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('we', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('great', 'ADJ'), ('civility', 'NOUN'), ('declined', 'VERB'), ('the', 'DET'), ('proposal', 'NOUN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('perhaps', 'ADV'), ('laid', 'VERB'), ('down', 'ADP'), ('upon', 'SCONJ'), ('the', 'DET'), ('bed', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('dressing', 'NOUN'), ('gown', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('not', 'PART'), ('able', 'ADJ'), ('to', 'PART'), ('come', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('if', 'SCONJ'), ('that', 'PRON'), ('s', 'VERB'), ('all', 'PRON'), ('cried', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('we', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('just', 'ADV'), ('as', 'ADV'), ('well', 'ADV'), ('go', 'VERB'), ('and', 'CCONJ'), ('see', 'VERB'), ('HER', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('began', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('this', 'DET'), ('impertinence', 'NOUN'), ('too', 'ADV'), ('much', 'ADV'), ('for', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('temper', 'NOUN'), ('but', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('saved', 'VERB'), ('the', 'DET'), ('trouble', 'NOUN'), ('of', 'ADP'), ('checking', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('Lucys', 'PROPN'), ('sharp', 'ADJ'), ('reprimand', 'NOUN'), ('which', 'PRON'), ('now', 'ADV'), ('as', 'ADP'), ('on', 'ADP'), ('many', 'ADJ'), ('occasions', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('it', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('much', 'ADJ'), ('sweetness', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('manners', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('one', 'NUM'), ('sister', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('advantage', 'NOUN'), ('in', 'ADP'), ('governing', 'VERB'), ('those', 'PRON'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('33', 'NUM'), ('\n\n\n', 'SPACE'), ('After', 'SCONJ'), ('some', 'DET'), ('opposition', 'NOUN'), ('Marianne', 'PROPN'), ('yielded', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('entreaties', 'VERB'), ('and', 'CCONJ'), ('consented', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('out', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('one', 'NUM'), ('morning', 'NOUN'), ('for', 'ADP'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('She', 'PRON'), ('\n', 'SPACE'), ('expressly', 'ADV'), ('conditioned', 'VERB'), ('however', 'ADV'), ('for', 'ADP'), ('paying', 'VERB'), ('no', 'DET'), ('visits', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('do', 'VERB'), ('no', 'PRON'), ('more', 'ADJ'), ('than', 'SCONJ'), ('accompany', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('Grays', 'PROPN'), ('in', 'ADP'), ('\n', 'SPACE'), ('Sackville', 'PROPN'), ('Street', 'PROPN'), ('where', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('carrying', 'VERB'), ('on', 'ADP'), ('a', 'DET'), ('negotiation', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('exchange', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('oldfashioned', 'ADJ'), ('jewels', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('they', 'PRON'), ('stopped', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('recollected', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('lady', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('end', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('street', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('call', 'VERB'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('business', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('Grays', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('resolved', 'VERB'), ('that', 'SCONJ'), ('while', 'SCONJ'), ('her', 'PRON'), ('young', 'ADJ'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('transacted', 'VERB'), ('theirs', 'PRON'), ('she', 'PRON'), ('should', 'AUX'), ('pay', 'VERB'), ('her', 'PRON'), ('visit', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('return', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('ascending', 'VERB'), ('the', 'DET'), ('stairs', 'NOUN'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('found', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('many', 'ADJ'), ('people', 'NOUN'), ('before', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('that', 'PRON'), ('there', 'PRON'), ('was', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('a', 'DET'), ('person', 'NOUN'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('tend', 'VERB'), ('to', 'ADP'), ('their', 'PRON'), ('orders', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('wait', 'VERB'), (' ', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('was', 'AUX'), ('to', 'PART'), ('sit', 'VERB'), ('\n', 'SPACE'), ('down', 'ADP'), ('at', 'ADP'), ('that', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('counter', 'NOUN'), ('which', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('promise', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('quickest', 'ADJ'), ('succession', 'NOUN'), ('one', 'NUM'), ('gentleman', 'NOUN'), ('only', 'ADV'), ('was', 'AUX'), ('standing', 'VERB'), ('there', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('probable', 'ADJ'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('without', 'ADP'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('exciting', 'VERB'), ('his', 'PRON'), ('politeness', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('quicker', 'ADJ'), ('despatch', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('correctness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('delicacy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('taste', 'NOUN'), ('proved', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('beyond', 'ADP'), ('his', 'PRON'), ('politeness', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('giving', 'VERB'), ('orders', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('toothpickcase', 'NOUN'), ('for', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('its', 'PRON'), ('size', 'NOUN'), ('shape', 'NOUN'), ('and', 'CCONJ'), ('ornaments', 'NOUN'), ('were', 'AUX'), ('determined', 'VERB'), ('\n', 'SPACE'), ('all', 'PRON'), ('of', 'ADP'), ('which', 'PRON'), ('after', 'ADP'), ('examining', 'VERB'), ('and', 'CCONJ'), ('debating', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('quarter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('over', 'ADP'), ('every', 'DET'), ('toothpickcase', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('shop', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('finally', 'ADV'), ('arranged', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('inventive', 'ADJ'), ('fancy', 'NOUN'), ('he', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('leisure', 'NOUN'), ('to', 'PART'), ('bestow', 'VERB'), ('any', 'DET'), ('other', 'ADJ'), ('attention', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('ladies', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('comprised', 'VERB'), ('in', 'ADP'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('very', 'ADV'), ('broad', 'ADJ'), ('stares', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('notice', 'NOUN'), ('which', 'PRON'), ('served', 'VERB'), ('to', 'PART'), ('imprint', 'VERB'), ('on', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('the', 'DET'), ('remembrance', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('person', 'NOUN'), ('and', 'CCONJ'), ('face', 'NOUN'), ('of', 'ADP'), ('strong', 'ADJ'), ('\n', 'SPACE'), ('natural', 'ADJ'), ('sterling', 'NOUN'), ('insignificance', 'NOUN'), ('though', 'ADV'), ('adorned', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('first', 'ADJ'), ('style', 'NOUN'), ('of', 'ADP'), ('fashion', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('spared', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('troublesome', 'ADJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('contempt', 'NOUN'), ('and', 'CCONJ'), ('resentment', 'NOUN'), ('on', 'ADP'), ('this', 'DET'), ('impertinent', 'ADJ'), ('examination', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('features', 'NOUN'), ('and', 'CCONJ'), ('on', 'ADP'), ('the', 'DET'), ('puppyism', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('deciding', 'VERB'), ('on', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('different', 'ADJ'), ('horrors', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('different', 'ADJ'), ('\n', 'SPACE'), ('toothpickcases', 'NOUN'), ('presented', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('inspection', 'NOUN'), ('by', 'ADP'), ('remaining', 'VERB'), ('\n', 'SPACE'), ('unconscious', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('all', 'PRON'), ('for', 'ADP'), ('she', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('collect', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('within', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('be', 'AUX'), ('as', 'ADV'), ('ignorant', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('passing', 'VERB'), ('around', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('Mr', 'PROPN'), ('Grays', 'PROPN'), ('shop', 'NOUN'), ('as', 'ADP'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('bedroom', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('last', 'ADJ'), ('the', 'DET'), ('affair', 'NOUN'), ('was', 'AUX'), ('decided', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('ivory', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('gold', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('pearls', 'NOUN'), ('all', 'PRON'), ('received', 'VERB'), ('their', 'PRON'), ('appointment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('gentleman', 'NOUN'), ('having', 'AUX'), ('named', 'VERB'), ('the', 'DET'), ('last', 'ADJ'), ('day', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('his', 'PRON'), ('\n', 'SPACE'), ('existence', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('continued', 'VERB'), ('without', 'ADP'), ('the', 'DET'), ('possession', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('toothpickcase', 'NOUN'), ('drew', 'VERB'), ('on', 'ADP'), ('his', 'PRON'), ('gloves', 'NOUN'), ('with', 'ADP'), ('leisurely', 'ADJ'), ('care', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('bestowing', 'VERB'), ('another', 'DET'), ('glance', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('but', 'CCONJ'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('one', 'NOUN'), ('as', 'SCONJ'), ('seemed', 'VERB'), ('rather', 'ADV'), ('to', 'PART'), ('demand', 'VERB'), ('than', 'ADP'), ('express', 'VERB'), ('admiration', 'NOUN'), ('\n', 'SPACE'), ('walked', 'VERB'), ('off', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('happy', 'ADJ'), ('air', 'NOUN'), ('of', 'ADP'), ('real', 'ADJ'), ('conceit', 'NOUN'), ('and', 'CCONJ'), ('affected', 'VERB'), ('\n', 'SPACE'), ('indifference', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('lost', 'VERB'), ('no', 'DET'), ('time', 'NOUN'), ('in', 'ADP'), ('bringing', 'VERB'), ('her', 'PRON'), ('business', 'NOUN'), ('forward', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('concluding', 'VERB'), ('it', 'PRON'), ('when', 'SCONJ'), ('another', 'DET'), ('gentleman', 'NOUN'), ('\n', 'SPACE'), ('presented', 'VERB'), ('himself', 'PRON'), ('at', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('turned', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('towards', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('face', 'NOUN'), ('and', 'CCONJ'), ('found', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('her', 'PRON'), ('brother', 'NOUN'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('meeting', 'NOUN'), ('was', 'AUX'), ('just', 'ADV'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('creditable', 'ADJ'), ('appearance', 'NOUN'), ('in', 'ADP'), ('Mr', 'PROPN'), ('Grays', 'PROPN'), ('shop', 'NOUN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('really', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('being', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('sisters', 'NOUN'), ('again', 'ADV'), ('it', 'PRON'), ('rather', 'ADV'), ('gave', 'VERB'), ('them', 'PRON'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('inquiries', 'NOUN'), ('after', 'SCONJ'), ('their', 'PRON'), ('mother', 'NOUN'), ('were', 'AUX'), ('respectful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('attentive', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('and', 'CCONJ'), ('Fanny', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('two', 'NUM'), ('days', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wished', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('call', 'VERB'), ('upon', 'SCONJ'), ('you', 'PRON'), ('yesterday', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('he', 'PRON'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('for', 'SCONJ'), ('we', 'PRON'), ('were', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('take', 'VERB'), ('Harry', 'PROPN'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('wild', 'ADJ'), ('beasts', 'NOUN'), ('at', 'ADP'), ('Exeter', 'PROPN'), ('Exchange', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('spent', 'VERB'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('Harry', 'PROPN'), ('was', 'AUX'), ('vastly', 'ADV'), ('pleased', 'ADJ'), (' ', 'SPACE'), ('THIS', 'DET'), ('morning', 'NOUN'), ('I', 'PRON'), ('had', 'AUX'), ('fully', 'ADV'), ('intended', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('call', 'VERB'), ('on', 'ADP'), ('you', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('possibly', 'ADV'), ('find', 'VERB'), ('a', 'DET'), ('spare', 'ADJ'), ('half', 'ADJ'), ('hour', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('one', 'PRON'), ('has', 'VERB'), ('always', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('on', 'ADP'), ('first', 'ADV'), ('coming', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('come', 'VERB'), ('here', 'ADV'), ('to', 'PART'), ('bespeak', 'VERB'), ('Fanny', 'PROPN'), ('a', 'DET'), ('seal', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('tomorrow', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('think', 'VERB'), ('I', 'PRON'), ('shall', 'AUX'), ('certainly', 'ADV'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('call', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('be', 'AUX'), ('introduced', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('friend', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('understand', 'VERB'), ('she', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('very', 'ADV'), ('good', 'ADJ'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('the', 'DET'), ('Middletons', 'PROPN'), ('too', 'ADV'), ('you', 'PRON'), ('must', 'AUX'), ('introduce', 'VERB'), ('me', 'PRON'), ('to', 'ADP'), ('THEM', 'PRON'), ('\n', 'SPACE'), ('As', 'SCONJ'), ('my', 'PRON'), ('motherinlaws', 'NOUN'), ('relations', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), ('to', 'PART'), ('show', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('every', 'DET'), ('respect', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('excellent', 'ADJ'), ('neighbours', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('country', 'NOUN'), ('I', 'PRON'), ('understand', 'VERB'), ('\n\n', 'SPACE'), ('Excellent', 'PROPN'), ('indeed', 'ADV'), (' ', 'SPACE'), ('Their', 'PRON'), ('attention', 'NOUN'), ('to', 'ADP'), ('our', 'PRON'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('their', 'PRON'), ('friendliness', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('particular', 'ADJ'), ('is', 'AUX'), ('more', 'ADJ'), ('than', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('express', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('extremely', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('it', 'PRON'), ('upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('\n', 'SPACE'), ('extremely', 'ADV'), ('glad', 'ADJ'), ('indeed', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('so', 'ADV'), ('it', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('they', 'PRON'), ('are', 'AUX'), ('\n', 'SPACE'), ('people', 'NOUN'), ('of', 'ADP'), ('large', 'ADJ'), ('fortune', 'NOUN'), ('they', 'PRON'), ('are', 'AUX'), ('related', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('every', 'DET'), ('civility', 'NOUN'), ('and', 'CCONJ'), ('accommodation', 'NOUN'), ('that', 'PRON'), ('can', 'AUX'), ('serve', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('situation', 'NOUN'), ('pleasant', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('reasonably', 'ADV'), ('expected', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('you', 'PRON'), ('are', 'AUX'), ('most', 'ADV'), ('comfortably', 'ADV'), ('settled', 'VERB'), ('in', 'ADP'), ('your', 'PRON'), ('little', 'ADJ'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('want', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('brought', 'VERB'), ('us', 'PRON'), ('a', 'DET'), ('most', 'ADV'), ('charming', 'ADJ'), ('\n', 'SPACE'), ('account', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('place', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('complete', 'ADJ'), ('thing', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('said', 'VERB'), ('that', 'SCONJ'), ('ever', 'ADV'), ('was', 'AUX'), ('and', 'CCONJ'), ('you', 'PRON'), ('all', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('enjoy', 'VERB'), ('it', 'PRON'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('satisfaction', 'NOUN'), ('to', 'ADP'), ('us', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('did', 'AUX'), ('feel', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('ashamed', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('not', 'PART'), ('sorry', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('spared', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('answering', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('servant', 'NOUN'), ('who', 'PRON'), ('came', 'VERB'), ('to', 'PART'), ('tell', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('that', 'SCONJ'), ('his', 'PRON'), ('mistress', 'NOUN'), ('waited', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('attended', 'VERB'), ('them', 'PRON'), ('down', 'ADP'), ('stairs', 'NOUN'), ('was', 'AUX'), ('introduced', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('carriage', 'NOUN'), ('and', 'CCONJ'), ('repeating', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('hope', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('call', 'VERB'), ('on', 'ADP'), ('them', 'PRON'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('took', 'VERB'), ('leave', 'VERB'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('visit', 'NOUN'), ('was', 'AUX'), ('duly', 'ADV'), ('paid', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('came', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('pretence', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('an', 'DET'), ('apology', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('sisterinlaw', 'NOUN'), ('for', 'ADP'), ('not', 'PART'), ('coming', 'VERB'), ('too', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('engaged', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('that', 'PRON'), ('really', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('leisure', 'NOUN'), ('for', 'ADP'), ('going', 'VERB'), ('any', 'PRON'), ('where', 'SCONJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('however', 'ADV'), ('assured', 'VERB'), ('him', 'PRON'), ('directly', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('stand', 'VERB'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('ceremony', 'NOUN'), ('for', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('all', 'PRON'), ('cousins', 'NOUN'), ('or', 'CCONJ'), ('something', 'PRON'), ('\n', 'SPACE'), ('like', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('certainly', 'ADV'), ('wait', 'VERB'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('very', 'ADV'), ('soon', 'ADV'), ('and', 'CCONJ'), ('bring', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('His', 'PRON'), ('manners', 'NOUN'), ('to', 'ADP'), ('THEM', 'PRON'), ('though', 'SCONJ'), ('calm', 'NOUN'), ('were', 'AUX'), ('perfectly', 'ADV'), ('kind', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('most', 'ADV'), ('attentively', 'ADV'), ('civil', 'ADJ'), ('and', 'CCONJ'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandons', 'NOUN'), ('coming', 'VERB'), ('in', 'ADV'), ('soon', 'ADV'), ('after', 'ADP'), ('himself', 'PRON'), ('he', 'PRON'), ('eyed', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('curiosity', 'NOUN'), ('which', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('only', 'ADV'), ('wanted', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('rich', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('equally', 'ADV'), ('civil', 'ADJ'), ('to', 'ADP'), ('HIM', 'PROPN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('staying', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('half', 'DET'), ('an', 'PRON'), ('hour', 'NOUN'), ('he', 'PRON'), ('asked', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('to', 'PART'), ('walk', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('to', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), ('and', 'CCONJ'), ('introduce', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('weather', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('remarkably', 'ADV'), ('fine', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('readily', 'ADV'), ('consented', 'VERB'), (' ', 'SPACE'), ('As', 'ADP'), ('soon', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('his', 'PRON'), ('enquiries', 'NOUN'), ('began', 'VERB'), ('\n\n', 'SPACE'), ('Who', 'PRON'), ('is', 'AUX'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), (' ', 'SPACE'), ('Is', 'AUX'), ('he', 'PRON'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('fortune', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('he', 'PRON'), ('has', 'VERB'), ('very', 'ADV'), ('good', 'ADJ'), ('property', 'NOUN'), ('in', 'ADP'), ('Dorsetshire', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('glad', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('seems', 'VERB'), ('a', 'DET'), ('most', 'ADV'), ('gentlemanlike', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('may', 'AUX'), ('congratulate', 'VERB'), ('you', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('prospect', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('respectable', 'ADJ'), ('establishment', 'NOUN'), ('in', 'ADP'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('Me', 'PRON'), ('brother', 'NOUN'), ('what', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('likes', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('observed', 'VERB'), ('him', 'PRON'), ('narrowly', 'ADV'), ('and', 'CCONJ'), ('am', 'AUX'), ('\n', 'SPACE'), ('convinced', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('What', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('amount', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('fortune', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('about', 'ADP'), ('two', 'NUM'), ('thousand', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('\n\n', 'SPACE'), ('Two', 'NUM'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('working', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('up', 'ADP'), ('to', 'ADP'), ('a', 'DET'), ('pitch', 'NOUN'), ('of', 'ADP'), ('enthusiastic', 'ADJ'), ('generosity', 'NOUN'), ('he', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('wish', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('it', 'PRON'), ('were', 'AUX'), ('TWICE', 'ADV'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('sake', 'NOUN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('I', 'PRON'), ('believe', 'VERB'), ('you', 'PRON'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('very', 'ADV'), ('sure', 'ADJ'), ('that', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('has', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('wish', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('marrying', 'VERB'), ('ME', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('mistaken', 'ADJ'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('mistaken', 'ADJ'), ('\n', 'SPACE'), ('A', 'DET'), ('very', 'ADV'), ('little', 'ADJ'), ('trouble', 'NOUN'), ('on', 'ADP'), ('your', 'PRON'), ('side', 'NOUN'), ('secures', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('Perhaps', 'ADV'), ('just', 'ADV'), ('at', 'ADP'), ('present', 'NOUN'), ('he', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('undecided', 'VERB'), ('the', 'DET'), ('smallness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('fortune', 'NOUN'), ('may', 'AUX'), ('make', 'VERB'), ('him', 'PRON'), ('hang', 'VERB'), ('back', 'ADP'), ('his', 'PRON'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('all', 'PRON'), ('advise', 'VERB'), ('him', 'PRON'), ('against', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('some', 'PRON'), ('of', 'ADP'), ('those', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('attentions', 'NOUN'), ('and', 'CCONJ'), ('encouragements', 'NOUN'), ('which', 'DET'), ('ladies', 'NOUN'), ('can', 'AUX'), ('so', 'ADV'), ('easily', 'ADV'), ('\n', 'SPACE'), ('give', 'VERB'), ('will', 'AUX'), ('fix', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('himself', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('there', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('no', 'DET'), ('reason', 'NOUN'), ('why', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('try', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('supposed', 'VERB'), ('that', 'SCONJ'), ('any', 'DET'), ('prior', 'ADJ'), ('attachment', 'NOUN'), ('on', 'ADP'), ('your', 'PRON'), ('sidein', 'NOUN'), ('short', 'ADJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('as', 'ADP'), ('to', 'ADP'), ('an', 'DET'), ('attachment', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('kind', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('the', 'DET'), ('objections', 'NOUN'), ('are', 'AUX'), ('insurmountable', 'ADJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('have', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('sense', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('see', 'VERB'), ('all', 'DET'), ('that', 'PRON'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('man', 'NOUN'), ('and', 'CCONJ'), ('no', 'DET'), ('civility', 'NOUN'), ('shall', 'AUX'), ('be', 'AUX'), ('wanting', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('my', 'PRON'), ('part', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('him', 'PRON'), ('pleased', 'ADJ'), ('with', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('match', 'NOUN'), ('that', 'PRON'), ('must', 'AUX'), ('give', 'VERB'), ('universal', 'ADJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('short', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('thing', 'NOUN'), ('thatlowering', 'VERB'), ('his', 'PRON'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('an', 'DET'), ('important', 'ADJ'), ('whisperwill', 'NOUN'), ('be', 'AUX'), ('exceedingly', 'ADV'), ('welcome', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('ALL', 'DET'), ('PARTIES', 'NOUN'), ('Recollecting', 'VERB'), ('himself', 'PRON'), ('however', 'ADV'), ('he', 'PRON'), ('added', 'VERB'), ('\n', 'SPACE'), ('That', 'PRON'), ('is', 'ADV'), ('I', 'PRON'), ('mean', 'VERB'), ('to', 'ADP'), ('sayyour', 'ADJ'), ('friends', 'NOUN'), ('are', 'AUX'), ('all', 'PRON'), ('truly', 'ADV'), ('\n', 'SPACE'), ('anxious', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('well', 'ADV'), ('settled', 'VERB'), ('Fanny', 'PROPN'), ('particularly', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('she', 'PRON'), ('has', 'VERB'), ('your', 'PRON'), ('interest', 'NOUN'), ('very', 'ADV'), ('much', 'ADV'), ('at', 'ADP'), ('heart', 'NOUN'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('too', 'ADV'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('a', 'DET'), ('very', 'ADV'), ('goodnatured', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('great', 'ADJ'), ('pleasure', 'NOUN'), ('she', 'PRON'), ('said', 'VERB'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('vouchsafe', 'VERB'), ('any', 'DET'), ('answer', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('something', 'PRON'), ('remarkable', 'ADJ'), ('now', 'ADV'), ('he', 'PRON'), ('continued', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('droll', 'NOUN'), ('if', 'SCONJ'), ('Fanny', 'PROPN'), ('should', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('sister', 'NOUN'), ('settling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('yet', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('very', 'ADV'), ('unlikely', 'ADJ'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('going', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('actually', 'ADV'), ('settled', 'VERB'), ('but', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('agitation', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('has', 'VERB'), ('a', 'DET'), ('most', 'ADV'), ('excellent', 'ADJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('with', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('liberality', 'NOUN'), ('will', 'AUX'), ('come', 'VERB'), ('forward', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('settle', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('a', 'DET'), ('thousand', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('if', 'SCONJ'), ('the', 'DET'), ('match', 'NOUN'), ('\n', 'SPACE'), ('takes', 'VERB'), ('place', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('lady', 'NOUN'), ('is', 'AUX'), ('the', 'DET'), ('Hon', 'PROPN'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('only', 'ADV'), ('daughter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('late', 'ADJ'), ('Lord', 'PROPN'), ('Morton', 'PROPN'), ('with', 'ADP'), ('thirty', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('very', 'ADV'), ('desirable', 'ADJ'), ('connection', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('\n', 'SPACE'), ('a', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('taking', 'NOUN'), ('place', 'NOUN'), ('in', 'ADP'), ('time', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('for', 'SCONJ'), ('a', 'DET'), ('mother', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('away', 'ADP'), ('to', 'PART'), ('make', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('ever', 'ADV'), ('but', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('has', 'VERB'), ('a', 'DET'), ('noble', 'ADJ'), ('spirit', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('another', 'DET'), ('instance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('liberalityThe', 'NUM'), ('other', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('we', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('aware', 'ADJ'), ('that', 'SCONJ'), ('money', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('very', 'ADV'), ('plenty', 'ADJ'), ('with', 'ADP'), ('us', 'PRON'), ('just', 'ADV'), ('now', 'ADV'), ('she', 'PRON'), ('put', 'VERB'), ('banknotes', 'NOUN'), ('\n', 'SPACE'), ('into', 'ADP'), ('Fannys', 'PROPN'), ('hands', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('amount', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('extremely', 'ADV'), ('acceptable', 'ADJ'), ('it', 'PRON'), ('is', 'AUX'), ('for', 'SCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('live', 'VERB'), ('at', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('expense', 'NOUN'), ('while', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('here', 'ADV'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('paused', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('assent', 'NOUN'), ('and', 'CCONJ'), ('compassion', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('forced', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('expenses', 'NOUN'), ('both', 'CCONJ'), ('in', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('country', 'NOUN'), ('must', 'AUX'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('considerable', 'ADJ'), ('but', 'CCONJ'), ('your', 'PRON'), ('income', 'NOUN'), ('is', 'AUX'), ('a', 'DET'), ('large', 'ADJ'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('so', 'ADV'), ('large', 'ADJ'), ('I', 'PRON'), ('dare', 'AUX'), ('say', 'VERB'), ('as', 'ADP'), ('many', 'ADJ'), ('people', 'NOUN'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('complain', 'VERB'), ('however', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('undoubtedly', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('comfortable', 'ADJ'), ('one', 'NUM'), ('and', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('will', 'AUX'), ('in', 'ADP'), ('time', 'NOUN'), ('be', 'AUX'), ('better', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('enclosure', 'NOUN'), ('of', 'ADP'), ('Norland', 'PROPN'), ('Common', 'PROPN'), ('now', 'ADV'), ('carrying', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('is', 'AUX'), ('a', 'DET'), ('most', 'ADV'), ('serious', 'ADJ'), ('drain', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('then', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('made', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('purchase', 'NOUN'), ('within', 'ADP'), ('this', 'DET'), ('half', 'ADJ'), ('year', 'NOUN'), ('East', 'PROPN'), ('Kingham', 'PROPN'), ('Farm', 'PROPN'), ('\n', 'SPACE'), ('you', 'PRON'), ('must', 'AUX'), ('remember', 'VERB'), ('the', 'DET'), ('place', 'NOUN'), ('where', 'SCONJ'), ('old', 'ADJ'), ('Gibson', 'PROPN'), ('used', 'VERB'), ('to', 'PART'), ('live', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('land', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('desirable', 'ADJ'), ('for', 'ADP'), ('me', 'PRON'), ('in', 'ADP'), ('every', 'DET'), ('respect', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('immediately', 'ADV'), ('adjoining', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('property', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('my', 'PRON'), ('duty', 'NOUN'), ('to', 'PART'), ('buy', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('answered', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('conscience', 'NOUN'), ('to', 'PART'), ('let', 'VERB'), ('it', 'PRON'), ('fall', 'VERB'), ('into', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('hands', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('man', 'NOUN'), ('must', 'AUX'), ('\n', 'SPACE'), ('pay', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('convenience', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('HAS', 'AUX'), ('cost', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('vast', 'ADJ'), ('deal', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('money', 'NOUN'), ('\n\n', 'SPACE'), ('More', 'ADJ'), ('than', 'SCONJ'), ('you', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('really', 'ADV'), ('and', 'CCONJ'), ('intrinsically', 'ADV'), ('worth', 'ADJ'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('not', 'PART'), ('that', 'SCONJ'), (' ', 'SPACE'), ('I', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('sold', 'VERB'), ('it', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('for', 'ADP'), ('more', 'ADJ'), ('than', 'SCONJ'), ('I', 'PRON'), ('gave', 'VERB'), ('but', 'CCONJ'), ('with', 'ADP'), ('regard', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('purchasemoney', 'NOUN'), ('I', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('unfortunate', 'ADJ'), ('indeed', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('the', 'DET'), ('stocks', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('so', 'ADV'), ('low', 'ADJ'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('happened', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('the', 'DET'), ('necessary', 'ADJ'), ('sum', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('bankers', 'NOUN'), ('hands', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('sold', 'VERB'), ('out', 'ADP'), ('to', 'ADP'), ('very', 'ADV'), ('great', 'ADJ'), ('loss', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('only', 'ADV'), ('smile', 'VERB'), ('\n\n', 'SPACE'), ('Other', 'ADJ'), ('great', 'ADJ'), ('and', 'CCONJ'), ('inevitable', 'ADJ'), ('expenses', 'NOUN'), ('too', 'ADV'), ('we', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('had', 'VERB'), ('on', 'ADP'), ('first', 'ADV'), ('coming', 'VERB'), ('to', 'ADP'), ('Norland', 'PROPN'), (' ', 'SPACE'), ('Our', 'PRON'), ('respected', 'ADJ'), ('father', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('you', 'PRON'), ('well', 'ADV'), ('know', 'VERB'), ('bequeathed', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('Stanhill', 'PROPN'), ('effects', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('remained', 'VERB'), ('at', 'ADP'), ('Norland', 'PROPN'), ('and', 'CCONJ'), ('very', 'ADV'), ('valuable', 'ADJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('to', 'ADP'), ('your', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('Far', 'ADV'), ('be', 'AUX'), ('it', 'PRON'), ('from', 'ADP'), ('me', 'PRON'), ('to', 'ADP'), ('repine', 'NOUN'), ('at', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('doing', 'VERB'), ('so', 'ADV'), ('he', 'PRON'), ('had', 'VERB'), ('an', 'DET'), ('undoubted', 'ADJ'), ('right', 'NOUN'), ('to', 'PART'), ('dispose', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('property', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('chose', 'VERB'), ('but', 'CCONJ'), ('in', 'ADP'), ('consequence', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('we', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('large', 'ADJ'), ('purchases', 'NOUN'), ('of', 'ADP'), ('linen', 'NOUN'), ('\n', 'SPACE'), ('china', 'PROPN'), ('c', 'PROPN'), ('to', 'PART'), ('supply', 'VERB'), ('the', 'DET'), ('place', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('taken', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('guess', 'VERB'), ('after', 'SCONJ'), ('all', 'DET'), ('these', 'DET'), ('expenses', 'NOUN'), ('how', 'SCONJ'), ('very', 'ADV'), ('far', 'ADV'), ('we', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('from', 'ADP'), ('being', 'AUX'), ('rich', 'ADJ'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('acceptable', 'ADJ'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('\n', 'SPACE'), ('kindness', 'NOUN'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('assisted', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('liberality', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('you', 'PRON'), ('may', 'AUX'), ('yet', 'ADV'), ('live', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('easy', 'ADJ'), ('circumstances', 'NOUN'), ('\n\n', 'SPACE'), ('Another', 'DET'), ('year', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('may', 'AUX'), ('do', 'VERB'), ('much', 'ADJ'), ('towards', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('gravely', 'ADV'), ('replied', 'VERB'), ('but', 'CCONJ'), ('however', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('still', 'ADV'), ('a', 'DET'), ('great', 'ADJ'), ('\n', 'SPACE'), ('deal', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), (' ', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('stone', 'NOUN'), ('laid', 'VERB'), ('of', 'ADP'), ('Fannys', 'PROPN'), ('\n', 'SPACE'), ('greenhouse', 'NOUN'), ('and', 'CCONJ'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('the', 'DET'), ('plan', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('flowergarden', 'PROPN'), ('\n', 'SPACE'), ('marked', 'VERB'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('Where', 'SCONJ'), ('is', 'AUX'), ('the', 'DET'), ('greenhouse', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('the', 'DET'), ('knoll', 'NOUN'), ('behind', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('old', 'ADJ'), ('\n', 'SPACE'), ('walnut', 'NOUN'), ('trees', 'NOUN'), ('are', 'AUX'), ('all', 'PRON'), ('come', 'VERB'), ('down', 'ADP'), ('to', 'PART'), ('make', 'VERB'), ('room', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('fine', 'ADJ'), ('object', 'NOUN'), ('from', 'ADP'), ('many', 'ADJ'), ('parts', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('park', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('flowergarden', 'PROPN'), ('will', 'AUX'), ('slope', 'VERB'), ('down', 'ADP'), ('just', 'ADV'), ('before', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('be', 'AUX'), ('exceedingly', 'ADV'), ('pretty', 'ADJ'), (' ', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('cleared', 'VERB'), ('away', 'ADV'), ('all', 'DET'), ('the', 'DET'), ('old', 'ADJ'), ('\n', 'SPACE'), ('thorns', 'NOUN'), ('that', 'PRON'), ('grew', 'VERB'), ('in', 'ADP'), ('patches', 'NOUN'), ('over', 'ADP'), ('the', 'DET'), ('brow', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('kept', 'VERB'), ('her', 'PRON'), ('concern', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('censure', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('very', 'ADV'), ('thankful', 'ADJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('present', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('share', 'VERB'), ('the', 'DET'), ('provocation', 'NOUN'), ('\n\n', 'SPACE'), ('Having', 'AUX'), ('now', 'ADV'), ('said', 'VERB'), ('enough', 'ADV'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('poverty', 'NOUN'), ('clear', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('do', 'VERB'), ('away', 'ADV'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('buying', 'VERB'), ('a', 'DET'), ('pair', 'NOUN'), ('of', 'ADP'), ('earrings', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('each', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('next', 'ADJ'), ('visit', 'NOUN'), ('at', 'ADP'), ('Grays', 'PROPN'), ('\n', 'SPACE'), ('his', 'PRON'), ('thoughts', 'NOUN'), ('took', 'VERB'), ('a', 'DET'), ('cheerfuller', 'NOUN'), ('turn', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('began', 'VERB'), ('to', 'PART'), ('\n', 'SPACE'), ('congratulate', 'VERB'), ('Elinor', 'PROPN'), ('on', 'ADP'), ('having', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('friend', 'NOUN'), ('as', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('seems', 'VERB'), ('a', 'DET'), ('most', 'ADV'), ('valuable', 'ADJ'), ('woman', 'NOUN'), ('indeedHer', 'PRON'), ('house', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('style', 'NOUN'), ('of', 'ADP'), ('living', 'VERB'), ('all', 'DET'), ('bespeak', 'NOUN'), ('an', 'DET'), ('exceeding', 'VERB'), ('good', 'ADJ'), ('income', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('acquaintance', 'NOUN'), ('that', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('been', 'AUX'), ('\n', 'SPACE'), ('of', 'ADP'), ('great', 'ADJ'), ('use', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('hitherto', 'VERB'), ('but', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('may', 'AUX'), ('prove', 'VERB'), ('\n', 'SPACE'), ('materially', 'ADV'), ('advantageousHer', 'NUM'), ('inviting', 'VERB'), ('you', 'PRON'), ('to', 'ADP'), ('town', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('certainly', 'ADV'), ('a', 'DET'), ('vast', 'ADJ'), ('thing', 'NOUN'), ('in', 'ADP'), ('your', 'PRON'), ('favour', 'NOUN'), ('and', 'CCONJ'), ('indeed', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('speaks', 'VERB'), ('altogether', 'ADV'), ('so', 'ADV'), ('great', 'ADJ'), ('a', 'DET'), ('regard', 'NOUN'), ('for', 'ADP'), ('you', 'PRON'), ('that', 'SCONJ'), ('in', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('probability', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('dies', 'VERB'), ('you', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('forgotten', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('must', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('to', 'PART'), ('leave', 'VERB'), ('\n\n', 'SPACE'), ('Nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('I', 'PRON'), ('should', 'AUX'), ('rather', 'ADV'), ('suppose', 'VERB'), ('for', 'SCONJ'), ('she', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('her', 'PRON'), ('jointure', 'NOUN'), ('which', 'PRON'), ('will', 'AUX'), ('descend', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('imagined', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('lives', 'VERB'), ('up', 'ADP'), ('to', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('income', 'NOUN'), (' ', 'SPACE'), ('Few', 'ADJ'), ('people', 'NOUN'), ('of', 'ADP'), ('common', 'ADJ'), ('prudence', 'NOUN'), ('will', 'AUX'), ('do', 'VERB'), ('THAT', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('whatever', 'PRON'), ('she', 'PRON'), ('saves', 'VERB'), ('she', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('dispose', 'VERB'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('more', 'ADV'), ('likely', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('leave', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('daughters', 'NOUN'), ('than', 'ADP'), ('to', 'ADP'), ('us', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('daughters', 'NOUN'), ('are', 'AUX'), ('both', 'PRON'), ('exceedingly', 'ADV'), ('well', 'ADV'), ('married', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('perceive', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('remembering', 'VERB'), ('them', 'PRON'), ('farther', 'ADV'), (' ', 'SPACE'), ('Whereas', 'SCONJ'), ('in', 'ADP'), ('my', 'PRON'), ('opinion', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('taking', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('notice', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('treating', 'VERB'), ('you', 'PRON'), ('in', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('kind', 'NOUN'), ('of', 'ADP'), ('way', 'NOUN'), ('she', 'PRON'), ('has', 'AUX'), ('given', 'VERB'), ('you', 'PRON'), ('a', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('claim', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('future', 'ADJ'), ('consideration', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('conscientious', 'ADJ'), ('woman', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('disregard', 'VERB'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('kinder', 'ADJ'), ('than', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('do', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('without', 'ADP'), ('being', 'AUX'), ('aware', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('expectation', 'NOUN'), ('it', 'PRON'), ('raises', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('raises', 'VERB'), ('none', 'NOUN'), ('in', 'ADP'), ('those', 'DET'), ('most', 'ADV'), ('concerned', 'ADJ'), ('\n', 'SPACE'), ('Indeed', 'ADV'), ('brother', 'NOUN'), ('your', 'PRON'), ('anxiety', 'NOUN'), ('for', 'ADP'), ('our', 'PRON'), ('welfare', 'NOUN'), ('and', 'CCONJ'), ('prosperity', 'NOUN'), ('\n', 'SPACE'), ('carries', 'VERB'), ('you', 'PRON'), ('too', 'ADV'), ('far', 'ADV'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('he', 'PRON'), ('seeming', 'VERB'), ('to', 'PART'), ('recollect', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('people', 'NOUN'), ('have', 'AUX'), ('little', 'ADJ'), ('have', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('power', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('Elinor', 'PROPN'), ('what', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('matter', 'NOUN'), ('with', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('looks', 'VERB'), ('very', 'ADV'), ('unwell', 'ADJ'), ('has', 'AUX'), ('lost', 'VERB'), ('her', 'PRON'), ('colour', 'NOUN'), ('and', 'CCONJ'), ('is', 'AUX'), ('grown', 'VERB'), ('\n', 'SPACE'), ('quite', 'ADV'), ('thin', 'ADJ'), (' ', 'SPACE'), ('Is', 'AUX'), ('she', 'PRON'), ('ill', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('well', 'ADJ'), ('she', 'PRON'), ('has', 'AUX'), ('had', 'VERB'), ('a', 'DET'), ('nervous', 'ADJ'), ('complaint', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('for', 'ADP'), ('several', 'ADJ'), ('weeks', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('for', 'ADP'), ('that', 'PRON'), (' ', 'SPACE'), ('At', 'ADP'), ('her', 'PRON'), ('time', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('illness', 'NOUN'), ('destroys', 'VERB'), ('the', 'DET'), ('bloom', 'NOUN'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('Hers', 'PROPN'), ('has', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('short', 'ADJ'), ('one', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('handsome', 'ADJ'), ('a', 'DET'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('last', 'ADJ'), ('September', 'PROPN'), ('as', 'SCONJ'), ('I', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), ('and', 'CCONJ'), ('as', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('attract', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('man', 'NOUN'), (' ', 'SPACE'), ('There', 'PRON'), ('was', 'VERB'), ('something', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('style', 'NOUN'), ('of', 'ADP'), ('beauty', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('please', 'VERB'), ('them', 'PRON'), ('particularly', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('remember', 'VERB'), ('Fanny', 'PROPN'), ('used', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('marry', 'VERB'), ('sooner', 'ADV'), ('and', 'CCONJ'), ('better', 'ADJ'), ('than', 'SCONJ'), ('you', 'PRON'), ('did', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('but', 'CCONJ'), ('what', 'PRON'), ('she', 'PRON'), ('is', 'AUX'), ('exceedingly', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('YOU', 'PRON'), ('but', 'CCONJ'), ('so', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('happened', 'VERB'), ('to', 'PART'), ('strike', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('mistaken', 'VERB'), ('however', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('question', 'VERB'), ('whether', 'SCONJ'), ('Marianne', 'PROPN'), ('NOW', 'PROPN'), ('will', 'AUX'), ('marry', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('worth', 'ADJ'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'ADP'), ('five', 'NUM'), ('or', 'CCONJ'), ('six', 'NUM'), ('hundred', 'NUM'), ('ayear', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('utmost', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('deceived', 'VERB'), ('if', 'SCONJ'), ('YOU', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('better', 'ADJ'), ('\n', 'SPACE'), ('Dorsetshire', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('of', 'ADP'), ('Dorsetshire', 'PROPN'), ('but', 'CCONJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('exceedingly', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('more', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('answer', 'VERB'), ('for', 'ADP'), ('your', 'PRON'), ('having', 'VERB'), ('Fanny', 'NOUN'), ('and', 'CCONJ'), ('myself', 'PRON'), ('\n', 'SPACE'), ('among', 'ADP'), ('the', 'DET'), ('earliest', 'ADJ'), ('and', 'CCONJ'), ('best', 'ADV'), ('pleased', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('visitors', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('tried', 'VERB'), ('very', 'ADV'), ('seriously', 'ADV'), ('to', 'PART'), ('convince', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('likelihood', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('marrying', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('too', 'ADV'), ('much', 'ADJ'), ('pleasure', 'NOUN'), ('to', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('relinquished', 'VERB'), ('and', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('really', 'ADV'), ('resolved', 'VERB'), ('on', 'ADP'), ('seeking', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('intimacy', 'NOUN'), ('with', 'ADP'), ('that', 'DET'), ('gentleman', 'NOUN'), ('and', 'CCONJ'), ('promoting', 'VERB'), ('the', 'DET'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('every', 'DET'), ('possible', 'ADJ'), ('attention', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('just', 'ADV'), ('compunction', 'NOUN'), ('\n', 'SPACE'), ('enough', 'ADJ'), ('for', 'ADP'), ('having', 'AUX'), ('done', 'VERB'), ('nothing', 'PRON'), ('for', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), ('himself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('exceedingly', 'ADV'), ('anxious', 'ADJ'), ('that', 'SCONJ'), ('everybody', 'PRON'), ('else', 'ADV'), ('should', 'AUX'), ('\n', 'SPACE'), ('do', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('and', 'CCONJ'), ('an', 'DET'), ('offer', 'NOUN'), ('from', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('a', 'DET'), ('legacy', 'NOUN'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('easiest', 'ADJ'), ('means', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('atoning', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('neglect', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('lucky', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('find', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('home', 'NOUN'), ('and', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('came', 'VERB'), ('in', 'ADP'), ('before', 'SCONJ'), ('their', 'PRON'), ('visit', 'NOUN'), ('ended', 'VERB'), ('\n', 'SPACE'), ('Abundance', 'PROPN'), ('of', 'ADP'), ('civilities', 'NOUN'), ('passed', 'VERB'), ('on', 'ADP'), ('all', 'DET'), ('sides', 'NOUN'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('like', 'VERB'), ('anybody', 'PRON'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('seem', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('much', 'ADJ'), ('about', 'ADP'), ('horses', 'NOUN'), ('he', 'PRON'), ('soon', 'ADV'), ('set', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('down', 'ADP'), ('as', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('goodnatured', 'ADJ'), ('fellow', 'NOUN'), ('while', 'SCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('saw', 'VERB'), ('enough', 'ADJ'), ('of', 'ADP'), ('fashion', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('appearance', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('his', 'PRON'), ('\n', 'SPACE'), ('acquaintance', 'NOUN'), ('worth', 'ADJ'), ('having', 'VERB'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('went', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('delighted', 'VERB'), ('with', 'ADP'), ('both', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('have', 'AUX'), ('a', 'DET'), ('charming', 'ADJ'), ('account', 'NOUN'), ('to', 'PART'), ('carry', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Fanny', 'PROPN'), ('said', 'VERB'), ('he', 'PRON'), ('as', 'SCONJ'), ('he', 'PRON'), ('walked', 'VERB'), ('back', 'ADV'), ('with', 'ADP'), ('his', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('is', 'AUX'), ('really', 'ADV'), ('a', 'DET'), ('most', 'ADV'), ('elegant', 'ADJ'), ('woman', 'NOUN'), (' ', 'SPACE'), ('Such', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('woman', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('Fanny', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('too', 'ADV'), ('an', 'DET'), ('exceedingly', 'ADV'), ('wellbehaved', 'VERB'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('not', 'PART'), ('so', 'ADV'), ('elegant', 'ADJ'), ('as', 'SCONJ'), ('her', 'PRON'), ('daughter', 'NOUN'), (' ', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('need', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('have', 'VERB'), ('any', 'DET'), ('scruple', 'NOUN'), ('even', 'ADV'), ('of', 'ADP'), ('visiting', 'VERB'), ('HER', 'PRON'), ('which', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('truth', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('little', 'ADJ'), ('the', 'DET'), ('case', 'NOUN'), ('and', 'CCONJ'), ('very', 'ADV'), ('naturally', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('we', 'PRON'), ('only', 'ADV'), ('knew', 'VERB'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('widow', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('got', 'VERB'), ('all', 'DET'), ('his', 'PRON'), ('money', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('way', 'NOUN'), ('and', 'CCONJ'), ('Fanny', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('were', 'AUX'), ('both', 'PRON'), ('strongly', 'ADV'), ('prepossessed', 'VERB'), ('that', 'SCONJ'), ('neither', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('nor', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('were', 'AUX'), ('such', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('women', 'NOUN'), ('as', 'SCONJ'), ('Fanny', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('like', 'VERB'), ('to', 'PART'), ('associate', 'VERB'), ('with', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('now', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('carry', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('most', 'ADV'), ('satisfactory', 'ADJ'), ('account', 'NOUN'), ('of', 'ADP'), ('both', 'DET'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('34', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('confidence', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('husbands', 'NOUN'), ('judgment', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('waited', 'VERB'), ('the', 'DET'), ('very', 'ADV'), ('next', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('both', 'CCONJ'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughter', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('confidence', 'NOUN'), ('was', 'AUX'), ('rewarded', 'VERB'), ('by', 'ADP'), ('finding', 'VERB'), ('even', 'ADV'), ('the', 'DET'), ('former', 'ADJ'), ('\n', 'SPACE'), ('even', 'ADV'), ('the', 'DET'), ('woman', 'NOUN'), ('with', 'ADP'), ('whom', 'PRON'), ('her', 'PRON'), ('sisters', 'NOUN'), ('were', 'AUX'), ('staying', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('unworthy', 'ADJ'), ('her', 'PRON'), ('notice', 'NOUN'), ('and', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('found', 'VERB'), ('her', 'PRON'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('charming', 'ADJ'), ('women', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('equally', 'ADV'), ('pleased', 'ADJ'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('There', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('cold', 'ADJ'), ('hearted', 'ADJ'), ('selfishness', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('mutually', 'ADV'), ('attracted', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('they', 'PRON'), ('sympathised', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('in', 'ADP'), ('an', 'DET'), ('insipid', 'ADJ'), ('propriety', 'NOUN'), ('of', 'ADP'), ('demeanor', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('general', 'ADJ'), ('want', 'NOUN'), ('of', 'ADP'), ('understanding', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('same', 'ADJ'), ('manners', 'NOUN'), ('however', 'ADV'), ('which', 'PRON'), ('recommended', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('Dashwood', 'PROPN'), ('to', 'ADP'), ('the', 'DET'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('suit', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('fancy', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('to', 'ADP'), ('HER', 'PRON'), ('she', 'PRON'), ('appeared', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('proudlooking', 'VERB'), ('woman', 'NOUN'), ('of', 'ADP'), ('uncordial', 'ADJ'), ('address', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('met', 'VERB'), ('her', 'PRON'), ('husbands', 'NOUN'), ('sisters', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('almost', 'ADV'), ('without', 'ADP'), ('having', 'VERB'), ('anything', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('quarter', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('bestowed', 'VERB'), ('on', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('sat', 'VERB'), ('at', 'ADV'), ('least', 'ADV'), ('seven', 'NUM'), ('minutes', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('half', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('wanted', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('know', 'VERB'), ('though', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('chuse', 'VERB'), ('to', 'PART'), ('ask', 'VERB'), ('whether', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('then', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('nothing', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('induced', 'VERB'), ('Fanny', 'PROPN'), ('voluntarily', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('mention', 'VERB'), ('his', 'PRON'), ('name', 'NOUN'), ('before', 'ADP'), ('her', 'PRON'), ('till', 'SCONJ'), ('able', 'ADJ'), ('to', 'PART'), ('tell', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('his', 'PRON'), ('marriage', 'NOUN'), ('with', 'ADP'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('was', 'AUX'), ('resolved', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('till', 'SCONJ'), ('her', 'PRON'), ('husbands', 'NOUN'), ('expectations', 'NOUN'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('were', 'AUX'), ('answered', 'VERB'), ('because', 'SCONJ'), ('she', 'PRON'), ('believed', 'VERB'), ('them', 'PRON'), ('still', 'ADV'), ('so', 'ADV'), ('very', 'ADV'), ('\n', 'SPACE'), ('much', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('too', 'ADV'), ('\n', 'SPACE'), ('sedulously', 'ADV'), ('divided', 'VERB'), ('in', 'ADP'), ('word', 'NOUN'), ('and', 'CCONJ'), ('deed', 'NOUN'), ('on', 'ADP'), ('every', 'DET'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('intelligence', 'NOUN'), ('however', 'ADV'), ('which', 'PRON'), ('SHE', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('give', 'AUX'), ('\n', 'SPACE'), ('soon', 'ADV'), ('flowed', 'VERB'), ('from', 'ADP'), ('another', 'DET'), ('quarter', 'NOUN'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('came', 'VERB'), ('very', 'ADV'), ('shortly', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('claim', 'VERB'), ('Elinors', 'PROPN'), ('compassion', 'NOUN'), ('on', 'ADP'), ('being', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('arrived', 'VERB'), ('in', 'ADP'), ('town', 'NOUN'), ('with', 'ADP'), ('Mr', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('dared', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('to', 'ADP'), ('Bartletts', 'PROPN'), ('Buildings', 'PROPN'), ('for', 'ADP'), ('fear', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('detection', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('their', 'PRON'), ('mutual', 'ADJ'), ('impatience', 'NOUN'), ('to', 'PART'), ('meet', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('told', 'VERB'), ('they', 'PRON'), ('could', 'AUX'), ('do', 'VERB'), ('nothing', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('write', 'PROPN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('assured', 'VERB'), ('them', 'PRON'), ('himself', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('within', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('short', 'ADJ'), ('time', 'NOUN'), ('by', 'ADP'), ('twice', 'ADV'), ('calling', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('Twice', 'PROPN'), ('was', 'AUX'), ('his', 'PRON'), ('card', 'NOUN'), ('found', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('their', 'PRON'), ('mornings', 'NOUN'), ('engagements', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('pleased', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('called', 'VERB'), ('and', 'CCONJ'), ('still', 'ADV'), ('more', 'ADV'), ('pleased', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('missed', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('so', 'ADV'), ('prodigiously', 'ADV'), ('delighted', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('not', 'PART'), ('much', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('giving', 'VERB'), ('anything', 'PRON'), ('they', 'PRON'), ('determined', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('dinner', 'NOUN'), ('and', 'CCONJ'), ('soon', 'ADV'), ('after', 'SCONJ'), ('their', 'PRON'), ('acquaintance', 'NOUN'), ('began', 'AUX'), ('\n', 'SPACE'), ('invited', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('dine', 'VERB'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('where', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('taken', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('good', 'ADJ'), ('house', 'NOUN'), ('for', 'ADP'), ('three', 'NUM'), ('months', 'NOUN'), (' ', 'SPACE'), ('Their', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('were', 'AUX'), ('invited', 'VERB'), ('likewise', 'ADV'), ('and', 'CCONJ'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('careful', 'ADJ'), ('to', 'PART'), ('secure', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('who', 'PRON'), ('always', 'ADV'), ('glad', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('where', 'SCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('received', 'VERB'), ('his', 'PRON'), ('eager', 'ADJ'), ('\n', 'SPACE'), ('civilities', 'NOUN'), ('with', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), ('but', 'CCONJ'), ('much', 'ADV'), ('more', 'ADJ'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('meet', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('learn', 'VERB'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('her', 'PRON'), ('sons', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('seeing', 'VERB'), ('HER', 'PRON'), ('however', 'ADV'), ('was', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('interested', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('engagement', 'NOUN'), ('for', 'SCONJ'), ('though', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('now', 'ADV'), ('meet', 'VERB'), ('Edwards', 'PROPN'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('without', 'ADP'), ('that', 'DET'), ('strong', 'ADJ'), ('anxiety', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('once', 'ADV'), ('promised', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('attend', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('introduction', 'NOUN'), ('though', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('now', 'ADV'), ('see', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('with', 'ADP'), ('perfect', 'ADJ'), ('indifference', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('her', 'PRON'), ('desire', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('in', 'ADP'), ('company', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('her', 'PRON'), ('curiosity', 'NOUN'), ('to', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('like', 'INTJ'), ('was', 'AUX'), ('as', 'ADV'), ('lively', 'ADJ'), ('as', 'ADP'), ('ever', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('interest', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('thus', 'ADV'), ('anticipated', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('party', 'NOUN'), ('was', 'AUX'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('increased', 'VERB'), ('more', 'ADV'), ('powerfully', 'ADV'), ('\n', 'SPACE'), ('than', 'ADP'), ('pleasantly', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('hearing', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('were', 'AUX'), ('also', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('at', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('So', 'ADV'), ('well', 'INTJ'), ('had', 'AUX'), ('they', 'PRON'), ('recommended', 'VERB'), ('themselves', 'PRON'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('so', 'ADV'), ('agreeable', 'ADJ'), ('had', 'VERB'), ('their', 'PRON'), ('assiduities', 'NOUN'), ('made', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('certainly', 'ADV'), ('not', 'PART'), ('so', 'ADV'), ('elegant', 'ADJ'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('not', 'PART'), ('even', 'ADV'), ('genteel', 'ADV'), ('she', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('ready', 'ADJ'), ('as', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('ask', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('spend', 'VERB'), ('a', 'DET'), ('week', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('particularly', 'ADV'), ('convenient', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Steeles', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('invitation', 'NOUN'), ('was', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('their', 'PRON'), ('visit', 'NOUN'), ('should', 'AUX'), ('begin', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('before', 'SCONJ'), ('the', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('took', 'VERB'), ('place', 'NOUN'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('claims', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('nieces', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('gentleman', 'NOUN'), ('who', 'PRON'), ('for', 'ADP'), ('many', 'ADJ'), ('years', 'NOUN'), ('had', 'AUX'), ('\n', 'SPACE'), ('had', 'VERB'), ('the', 'DET'), ('care', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('might', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('done', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('however', 'ADV'), ('towards', 'ADP'), ('procuring', 'VERB'), ('them', 'PRON'), ('seats', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('table', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('guests', 'NOUN'), ('they', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('welcome', 'ADJ'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('long', 'ADV'), ('wanted', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('personally', 'ADV'), ('known', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'VERB'), ('a', 'DET'), ('nearer', 'ADJ'), ('view', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('characters', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('difficulties', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('have', 'VERB'), ('an', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('endeavouring', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('please', 'VERB'), ('them', 'PRON'), ('had', 'AUX'), ('seldom', 'ADV'), ('been', 'AUX'), ('happier', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('receiving', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwoods', 'PROPN'), ('card', 'NOUN'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('Elinor', 'PROPN'), ('its', 'PRON'), ('effect', 'NOUN'), ('was', 'AUX'), ('very', 'ADV'), ('different', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('began', 'VERB'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('to', 'PART'), ('determine', 'VERB'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('who', 'PRON'), ('lived', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('mother', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('asked', 'VERB'), ('as', 'SCONJ'), ('his', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('to', 'ADP'), ('a', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('given', 'VERB'), ('by', 'ADP'), ('his', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADV'), ('all', 'PRON'), ('that', 'PRON'), ('passed', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('company', 'NOUN'), ('of', 'ADP'), ('Lucyshe', 'PROPN'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('knew', 'VERB'), ('how', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('bear', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('These', 'DET'), ('apprehensions', 'NOUN'), ('perhaps', 'ADV'), ('were', 'AUX'), ('not', 'PART'), ('founded', 'VERB'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('on', 'ADP'), ('reason', 'NOUN'), ('and', 'CCONJ'), ('certainly', 'ADV'), ('not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), ('on', 'ADP'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('relieved', 'VERB'), ('however', 'ADV'), ('not', 'PART'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('recollection', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('by', 'ADP'), ('the', 'DET'), ('good', 'ADJ'), ('will', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('believed', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('inflicting', 'VERB'), ('a', 'DET'), ('severe', 'ADJ'), ('disappointment', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('told', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('certainly', 'ADV'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('on', 'ADP'), ('Tuesday', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('hoped', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('carrying', 'VERB'), ('the', 'DET'), ('pain', 'NOUN'), ('still', 'ADV'), ('farther', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('persuading', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('kept', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('extreme', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('herself', 'PRON'), ('which', 'PRON'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('conceal', 'VERB'), ('when', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('important', 'ADJ'), ('Tuesday', 'PROPN'), ('came', 'VERB'), ('that', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('introduce', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('two', 'NUM'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('to', 'ADP'), ('this', 'DET'), ('formidable', 'ADJ'), ('motherinlaw', 'NOUN'), ('\n\n', 'SPACE'), ('Pity', 'PROPN'), ('me', 'PRON'), ('dear', 'ADJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('said', 'VERB'), ('Lucy', 'PROPN'), ('as', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('walked', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('stairs', 'NOUN'), ('togetherfor', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('arrived', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('directly', 'ADV'), ('after', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('that', 'SCONJ'), ('they', 'PRON'), ('all', 'PRON'), ('followed', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('servant', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('timeThere', 'PUNCT'), ('is', 'AUX'), ('nobody', 'PRON'), ('here', 'ADV'), ('but', 'CCONJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('that', 'PRON'), ('can', 'AUX'), ('feel', 'VERB'), ('for', 'ADP'), ('meI', 'ADJ'), ('declare', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('stand', 'VERB'), ('\n', 'SPACE'), ('Good', 'PROPN'), ('graciousIn', 'PROPN'), ('a', 'DET'), ('moment', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('the', 'DET'), ('person', 'NOUN'), ('that', 'PRON'), ('all', 'DET'), ('\n', 'SPACE'), ('my', 'PRON'), ('happiness', 'NOUN'), ('depends', 'VERB'), ('onthat', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('my', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('have', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('immediate', 'ADJ'), ('relief', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('suggesting', 'VERB'), ('the', 'DET'), ('possibility', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('Miss', 'PROPN'), ('Mortons', 'PROPN'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('rather', 'ADV'), ('than', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('whom', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('about', 'ADJ'), ('to', 'PART'), ('behold', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('instead', 'ADV'), ('of', 'ADP'), ('doing', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('assured', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('with', 'ADP'), ('\n', 'SPACE'), ('great', 'ADJ'), ('sincerity', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('did', 'AUX'), ('pity', 'NOUN'), ('herto', 'VERB'), ('the', 'DET'), ('utter', 'ADJ'), ('\n', 'SPACE'), ('amazement', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('though', 'SCONJ'), ('really', 'ADV'), ('uncomfortable', 'ADJ'), ('herself', 'PRON'), ('\n', 'SPACE'), ('hoped', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('an', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('irrepressible', 'ADJ'), ('envy', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('little', 'ADJ'), ('thin', 'ADJ'), ('woman', 'NOUN'), ('upright', 'ADJ'), ('\n', 'SPACE'), ('even', 'ADV'), ('to', 'ADP'), ('formality', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('figure', 'NOUN'), ('and', 'CCONJ'), ('serious', 'ADJ'), ('\n', 'SPACE'), ('even', 'ADV'), ('to', 'PART'), ('sourness', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('aspect', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('complexion', 'NOUN'), ('was', 'AUX'), ('sallow', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('features', 'NOUN'), ('small', 'ADJ'), ('without', 'ADP'), ('beauty', 'NOUN'), ('and', 'CCONJ'), ('naturally', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('expression', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('lucky', 'ADJ'), ('contraction', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('brow', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('rescued', 'VERB'), ('her', 'PRON'), ('countenance', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('disgrace', 'NOUN'), ('of', 'ADP'), ('insipidity', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('giving', 'VERB'), ('it', 'PRON'), ('the', 'DET'), ('strong', 'ADJ'), ('characters', 'NOUN'), ('of', 'ADP'), ('pride', 'NOUN'), ('and', 'CCONJ'), ('ill', 'ADJ'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('many', 'ADJ'), ('words', 'NOUN'), ('for', 'ADP'), ('unlike', 'ADP'), ('people', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('general', 'ADJ'), ('she', 'PRON'), ('proportioned', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('number', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('ideas', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('the', 'DET'), ('few', 'ADJ'), ('syllables', 'NOUN'), ('that', 'PRON'), ('did', 'AUX'), ('escape', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('not', 'PART'), ('one', 'NUM'), ('fell', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('share', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('whom', 'PRON'), ('she', 'PRON'), ('eyed', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('spirited', 'ADJ'), ('determination', 'NOUN'), ('of', 'ADP'), ('disliking', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('all', 'DET'), ('events', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('NOW', 'ADV'), ('be', 'AUX'), ('made', 'VERB'), ('unhappy', 'ADJ'), ('by', 'ADP'), ('this', 'DET'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('ago', 'ADV'), ('it', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('hurt', 'VERB'), ('her', 'PRON'), ('exceedingly', 'ADV'), ('but', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('power', 'NOUN'), ('to', 'PART'), ('distress', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('it', 'PRON'), ('now', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('difference', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('manners', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('\n', 'SPACE'), ('a', 'DET'), ('difference', 'NOUN'), ('which', 'PRON'), ('seemed', 'AUX'), ('purposely', 'ADV'), ('made', 'VERB'), ('to', 'PART'), ('humble', 'VERB'), ('her', 'PRON'), ('more', 'ADJ'), ('\n', 'SPACE'), ('only', 'ADV'), ('amused', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('but', 'ADV'), ('smile', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('graciousness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('both', 'DET'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('daughter', 'NOUN'), ('towards', 'ADP'), ('the', 'DET'), ('very', 'ADJ'), ('person', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('particularly', 'ADV'), ('distinguishedwhom', 'ADJ'), ('of', 'ADP'), ('all', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('they', 'PRON'), ('known', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('did', 'VERB'), ('they', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('most', 'ADV'), ('\n', 'SPACE'), ('anxious', 'ADJ'), ('to', 'PART'), ('mortify', 'VERB'), ('while', 'SCONJ'), ('she', 'PRON'), ('herself', 'PRON'), ('who', 'PRON'), ('had', 'VERB'), ('comparatively', 'ADV'), ('\n', 'SPACE'), ('no', 'DET'), ('power', 'NOUN'), ('to', 'PART'), ('wound', 'VERB'), ('them', 'PRON'), ('sat', 'AUX'), ('pointedly', 'ADV'), ('slighted', 'VERB'), ('by', 'ADP'), ('both', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('while', 'SCONJ'), ('she', 'PRON'), ('smiled', 'VERB'), ('at', 'ADP'), ('a', 'DET'), ('graciousness', 'NOUN'), ('so', 'ADV'), ('misapplied', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('reflect', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('meanspirited', 'ADJ'), ('folly', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('it', 'PRON'), ('sprung', 'VERB'), ('nor', 'CCONJ'), ('observe', 'VERB'), ('the', 'DET'), ('studied', 'VERB'), ('attentions', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('which', 'PRON'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('courted', 'VERB'), ('its', 'PRON'), ('continuance', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('thoroughly', 'ADV'), ('despising', 'VERB'), ('them', 'PRON'), ('all', 'DET'), ('four', 'NUM'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('all', 'DET'), ('exultation', 'NOUN'), ('on', 'ADP'), ('being', 'AUX'), ('so', 'ADV'), ('honorably', 'ADV'), ('\n', 'SPACE'), ('distinguished', 'ADJ'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('wanted', 'VERB'), ('only', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('teazed', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('Dr', 'PROPN'), ('Davies', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('perfectly', 'ADV'), ('happy', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('dinner', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('grand', 'ADJ'), ('one', 'NOUN'), ('the', 'DET'), ('servants', 'NOUN'), ('were', 'AUX'), ('numerous', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('bespoke', 'VERB'), ('the', 'DET'), ('Mistresss', 'PROPN'), ('inclination', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('show', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('Masters', 'PROPN'), ('ability', 'NOUN'), ('to', 'PART'), ('support', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('In', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('improvements', 'NOUN'), ('and', 'CCONJ'), ('additions', 'NOUN'), ('which', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('making', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Norland', 'PROPN'), ('estate', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('owner', 'NOUN'), ('\n', 'SPACE'), ('having', 'AUX'), ('once', 'ADV'), ('been', 'AUX'), ('within', 'ADP'), ('some', 'DET'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('obliged', 'VERB'), ('to', 'PART'), ('sell', 'VERB'), ('out', 'ADP'), ('at', 'ADP'), ('a', 'DET'), ('loss', 'NOUN'), ('nothing', 'PRON'), ('gave', 'VERB'), ('any', 'DET'), ('symptom', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('indigence', 'NOUN'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('tried', 'VERB'), ('to', 'PART'), ('infer', 'VERB'), ('from', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('no', 'DET'), ('poverty', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('kind', 'NOUN'), ('except', 'SCONJ'), ('of', 'ADP'), ('conversation', 'NOUN'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('there', 'ADV'), ('the', 'DET'), ('deficiency', 'NOUN'), ('was', 'AUX'), ('considerable', 'ADJ'), (' ', 'SPACE'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('had', 'VERB'), ('not', 'PART'), ('much', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('for', 'ADP'), ('himself', 'PRON'), ('that', 'PRON'), ('was', 'AUX'), ('worth', 'ADJ'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('wife', 'NOUN'), ('had', 'VERB'), ('still', 'ADV'), ('less', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('peculiar', 'ADJ'), ('\n', 'SPACE'), ('disgrace', 'NOUN'), ('in', 'ADP'), ('this', 'PRON'), ('for', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('the', 'DET'), ('case', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('chief', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('visitors', 'NOUN'), ('who', 'PRON'), ('almost', 'ADV'), ('all', 'PRON'), ('laboured', 'VERB'), ('\n', 'SPACE'), ('under', 'ADP'), ('one', 'NUM'), ('or', 'CCONJ'), ('other', 'ADJ'), ('of', 'ADP'), ('these', 'DET'), ('disqualifications', 'NOUN'), ('for', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('agreeableWant', 'ADJ'), ('of', 'ADP'), ('sense', 'NOUN'), ('either', 'CCONJ'), ('natural', 'ADJ'), ('or', 'CCONJ'), ('improvedwant', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('elegancewant', 'NOUN'), ('of', 'ADP'), ('spiritsor', 'NOUN'), ('want', 'NOUN'), ('of', 'ADP'), ('temper', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('ladies', 'NOUN'), ('withdrew', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('dinner', 'NOUN'), ('this', 'DET'), ('poverty', 'NOUN'), ('was', 'AUX'), ('particularly', 'ADV'), ('evident', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('gentlemen', 'NOUN'), ('HAD', 'AUX'), ('supplied', 'VERB'), ('the', 'DET'), ('discourse', 'NOUN'), ('with', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('varietythe', 'ADJ'), ('variety', 'NOUN'), ('of', 'ADP'), ('politics', 'NOUN'), ('inclosing', 'VERB'), ('land', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('breaking', 'VERB'), ('horsesbut', 'INTJ'), ('then', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('all', 'ADV'), ('over', 'ADV'), ('and', 'CCONJ'), ('one', 'NUM'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('only', 'ADV'), ('engaged', 'VERB'), ('the', 'DET'), ('ladies', 'NOUN'), ('till', 'SCONJ'), ('coffee', 'NOUN'), ('came', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('comparative', 'ADJ'), ('heights', 'NOUN'), ('of', 'ADP'), ('Harry', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('second', 'ADJ'), ('son', 'NOUN'), ('William', 'PROPN'), ('who', 'PRON'), ('were', 'AUX'), ('nearly', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('age', 'NOUN'), ('\n\n', 'SPACE'), ('Had', 'AUX'), ('both', 'CCONJ'), ('the', 'DET'), ('children', 'NOUN'), ('been', 'AUX'), ('there', 'ADV'), ('the', 'DET'), ('affair', 'NOUN'), ('might', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('determined', 'VERB'), ('too', 'ADV'), ('easily', 'ADV'), ('by', 'ADP'), ('measuring', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('Harry', 'PROPN'), ('only', 'ADV'), ('was', 'AUX'), ('present', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('all', 'DET'), ('conjectural', 'ADJ'), ('\n', 'SPACE'), ('assertion', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('body', 'NOUN'), ('had', 'VERB'), ('a', 'DET'), ('right', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('be', 'AUX'), ('equally', 'ADV'), ('positive', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('opinion', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('repeat', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('over', 'ADV'), ('and', 'CCONJ'), ('over', 'ADV'), ('again', 'ADV'), ('as', 'ADV'), ('often', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('liked', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('parties', 'NOUN'), ('stood', 'VERB'), ('thus', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('two', 'NUM'), ('mothers', 'NOUN'), ('though', 'SCONJ'), ('each', 'PRON'), ('really', 'ADV'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('own', 'ADJ'), ('son', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('tallest', 'ADJ'), ('politely', 'ADV'), ('decided', 'VERB'), ('in', 'ADP'), ('favour', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('two', 'NUM'), ('grandmothers', 'NOUN'), ('with', 'ADP'), ('not', 'PART'), ('less', 'ADJ'), ('partiality', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('more', 'ADJ'), ('sincerity', 'NOUN'), ('were', 'AUX'), ('equally', 'ADV'), ('earnest', 'ADJ'), ('in', 'ADP'), ('support', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('descendant', 'NOUN'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('hardly', 'ADV'), ('less', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('please', 'VERB'), ('one', 'NUM'), ('parent', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('the', 'DET'), ('other', 'ADJ'), ('thought', 'VERB'), ('the', 'DET'), ('boys', 'NOUN'), ('were', 'AUX'), ('both', 'PRON'), ('remarkably', 'ADV'), ('tall', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('their', 'PRON'), ('age', 'NOUN'), ('and', 'CCONJ'), ('could', 'AUX'), ('not', 'PART'), ('conceive', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('the', 'DET'), ('smallest', 'ADJ'), ('difference', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('with', 'ADP'), ('yet', 'ADV'), ('greater', 'ADJ'), ('address', 'NOUN'), ('gave', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('fast', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('having', 'AUX'), ('once', 'ADV'), ('delivered', 'VERB'), ('her', 'PRON'), ('opinion', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('Williams', 'PROPN'), ('side', 'NOUN'), ('by', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('offended', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('still', 'ADV'), ('more', 'ADV'), ('did', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('enforcing', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('by', 'ADP'), ('any', 'DET'), ('farther', 'ADJ'), ('assertion', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('when', 'SCONJ'), ('called', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('for', 'ADP'), ('hers', 'PRON'), ('offended', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('by', 'ADP'), ('declaring', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('no', 'DET'), ('opinion', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('thought', 'VERB'), ('about', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Before', 'ADP'), ('her', 'PRON'), ('removing', 'VERB'), ('from', 'ADP'), ('Norland', 'PROPN'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('painted', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('pretty', 'ADJ'), ('pair', 'NOUN'), ('of', 'ADP'), ('screens', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sisterinlaw', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('being', 'AUX'), ('now', 'ADV'), ('just', 'ADV'), ('mounted', 'VERB'), ('and', 'CCONJ'), ('brought', 'VERB'), ('home', 'NOUN'), ('\n', 'SPACE'), ('ornamented', 'VERB'), ('her', 'PRON'), ('present', 'ADJ'), ('drawing', 'NOUN'), ('room', 'NOUN'), ('and', 'CCONJ'), ('these', 'DET'), ('screens', 'NOUN'), ('\n', 'SPACE'), ('catching', 'VERB'), ('the', 'DET'), ('eye', 'NOUN'), ('of', 'ADP'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('on', 'ADP'), ('his', 'PRON'), ('following', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('gentlemen', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('were', 'AUX'), ('officiously', 'ADV'), ('\n', 'SPACE'), ('handed', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('to', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('for', 'ADP'), ('his', 'PRON'), ('admiration', 'NOUN'), ('\n\n', 'SPACE'), ('These', 'PRON'), ('are', 'AUX'), ('done', 'VERB'), ('by', 'ADP'), ('my', 'PRON'), ('eldest', 'ADJ'), ('sister', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('and', 'CCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('taste', 'NOUN'), ('will', 'AUX'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('be', 'AUX'), ('pleased', 'ADJ'), ('with', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('whether', 'SCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('ever', 'ADV'), ('happened', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('any', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('performances', 'NOUN'), ('before', 'ADV'), ('but', 'CCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('in', 'ADP'), ('general', 'ADJ'), ('reckoned', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('draw', 'VERB'), ('extremely', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Colonel', 'PROPN'), ('though', 'SCONJ'), ('disclaiming', 'VERB'), ('all', 'DET'), ('pretensions', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('connoisseurship', 'NOUN'), ('warmly', 'ADV'), ('admired', 'VERB'), ('the', 'DET'), ('screens', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('painted', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('on', 'ADP'), ('the', 'DET'), ('curiosity', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('being', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('excited', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('handed', 'VERB'), ('round', 'ADV'), ('for', 'ADP'), ('general', 'ADJ'), ('inspection', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('not', 'PART'), ('aware', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('Elinors', 'NOUN'), ('work', 'VERB'), ('\n', 'SPACE'), ('particularly', 'ADV'), ('requested', 'VERB'), ('to', 'PART'), ('look', 'VERB'), ('at', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('after', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('received', 'VERB'), ('gratifying', 'ADJ'), ('testimony', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middletonss', 'PROPN'), ('approbation', 'NOUN'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('presented', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('considerately', 'ADV'), ('informing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('that', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('done', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n\n', 'SPACE'), ('Humsaid', 'PROPN'), ('Mrs', 'PROPN'), ('Ferrarsvery', 'PROPN'), ('prettyand', 'NOUN'), ('without', 'ADP'), ('\n', 'SPACE'), ('regarding', 'VERB'), ('them', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('returned', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('Fanny', 'PROPN'), ('thought', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('that', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('quite', 'ADV'), ('rude', 'ADJ'), ('enoughfor', 'NOUN'), ('colouring', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('immediately', 'ADV'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('pretty', 'ADV'), ('maamant', 'ADJ'), ('they', 'PRON'), ('But', 'CCONJ'), ('then', 'ADV'), ('again', 'ADV'), ('\n', 'SPACE'), ('the', 'DET'), ('dread', 'NOUN'), ('of', 'ADP'), ('having', 'AUX'), ('been', 'AUX'), ('too', 'ADV'), ('civil', 'ADJ'), ('too', 'ADV'), ('encouraging', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('probably', 'ADV'), ('came', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('for', 'SCONJ'), ('she', 'PRON'), ('presently', 'ADV'), ('added', 'VERB'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('think', 'VERB'), ('they', 'PRON'), ('are', 'AUX'), ('something', 'PRON'), ('in', 'ADP'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Mortons', 'PROPN'), ('style', 'NOUN'), ('of', 'ADP'), ('painting', 'VERB'), ('MaamShe', 'PROPN'), ('DOES', 'AUX'), ('paint', 'VERB'), ('most', 'ADV'), ('\n', 'SPACE'), ('delightfullyHow', 'ADV'), ('beautifully', 'ADV'), ('her', 'PRON'), ('last', 'ADJ'), ('landscape', 'NOUN'), ('is', 'AUX'), ('done', 'VERB'), ('\n\n', 'SPACE'), ('Beautifully', 'ADV'), ('indeed', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('SHE', 'PRON'), ('does', 'AUX'), ('every', 'DET'), ('thing', 'NOUN'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('thisShe', 'NUM'), ('was', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('greatly', 'ADV'), ('displeased', 'ADJ'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('such', 'ADJ'), ('illtimed', 'ADJ'), ('\n', 'SPACE'), ('praise', 'NOUN'), ('of', 'ADP'), ('another', 'PRON'), ('at', 'ADP'), ('Elinors', 'NOUN'), ('expense', 'NOUN'), ('though', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('not', 'PART'), ('any', 'DET'), ('notion', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('principally', 'ADV'), ('meant', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('provoked', 'VERB'), ('her', 'PRON'), ('immediately', 'ADV'), ('to', 'PART'), ('say', 'VERB'), ('with', 'ADP'), ('warmth', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('admiration', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('particular', 'ADJ'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('what', 'PRON'), ('is', 'AUX'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('to', 'AUX'), ('uswho', 'PROPN'), ('knows', 'VERB'), ('or', 'CCONJ'), ('who', 'PRON'), ('cares', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('herit', 'NOUN'), ('is', 'AUX'), ('Elinor', 'PROPN'), ('of', 'ADP'), ('whom', 'PRON'), ('WE', 'PRON'), ('think', 'VERB'), ('and', 'CCONJ'), ('speak', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('saying', 'VERB'), ('she', 'PRON'), ('took', 'VERB'), ('the', 'DET'), ('screens', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisterinlaws', 'VERB'), ('hands', 'NOUN'), ('to', 'PART'), ('admire', 'VERB'), ('them', 'PRON'), ('herself', 'PRON'), ('as', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('ought', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('admired', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('looked', 'VERB'), ('exceedingly', 'ADV'), ('angry', 'ADJ'), ('and', 'CCONJ'), ('drawing', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('up', 'ADP'), ('more', 'ADV'), ('stiffly', 'ADV'), ('than', 'SCONJ'), ('ever', 'ADV'), ('pronounced', 'VERB'), ('in', 'ADP'), ('retort', 'NOUN'), ('\n', 'SPACE'), ('this', 'DET'), ('bitter', 'ADJ'), ('philippic', 'NOUN'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('is', 'AUX'), ('Lord', 'PROPN'), ('Mortons', 'PROPN'), ('daughter', 'NOUN'), ('\n\n', 'SPACE'), ('Fanny', 'PROPN'), ('looked', 'VERB'), ('very', 'ADV'), ('angry', 'ADJ'), ('too', 'ADV'), ('and', 'CCONJ'), ('her', 'PRON'), ('husband', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('all', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('fright', 'NOUN'), ('at', 'ADP'), ('his', 'PRON'), ('sisters', 'NOUN'), ('audacity', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('much', 'ADV'), ('more', 'ADJ'), ('hurt', 'VERB'), ('by', 'ADP'), ('Mariannes', 'PROPN'), ('warmth', 'NOUN'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('by', 'ADP'), ('what', 'PRON'), ('produced', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('eyes', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('Marianne', 'PROPN'), ('declared', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('noticed', 'VERB'), ('only', 'ADV'), ('\n', 'SPACE'), ('what', 'PRON'), ('was', 'AUX'), ('amiable', 'ADJ'), ('in', 'ADP'), ('it', 'PRON'), ('the', 'DET'), ('affectionate', 'ADJ'), ('heart', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('bear', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('a', 'DET'), ('sister', 'NOUN'), ('slighted', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('smallest', 'ADJ'), ('point', 'NOUN'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('feelings', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('stop', 'VERB'), ('here', 'ADV'), (' ', 'SPACE'), ('The', 'DET'), ('cold', 'ADJ'), ('\n', 'SPACE'), ('insolence', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('general', 'ADJ'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('foretell', 'VERB'), ('such', 'ADJ'), ('difficulties', 'NOUN'), ('and', 'CCONJ'), ('distresses', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('as', 'SCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('wounded', 'ADJ'), ('heart', 'NOUN'), ('taught', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('with', 'ADP'), ('horror', 'NOUN'), ('and', 'CCONJ'), ('urged', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('strong', 'ADJ'), ('impulse', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('affectionate', 'ADJ'), ('sensibility', 'NOUN'), ('she', 'PRON'), ('moved', 'VERB'), ('after', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('chair', 'NOUN'), ('and', 'CCONJ'), ('putting', 'VERB'), ('one', 'NUM'), ('arm', 'NOUN'), ('round', 'VERB'), ('her', 'PRON'), ('neck', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('one', 'NUM'), ('cheek', 'NOUN'), ('close', 'ADJ'), ('to', 'ADP'), ('hers', 'PRON'), ('said', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('but', 'CCONJ'), ('eager', 'ADJ'), ('\n', 'SPACE'), ('voice', 'NOUN'), ('\n\n', 'SPACE'), ('Dear', 'ADJ'), ('dear', 'ADJ'), ('Elinor', 'PROPN'), ('do', 'AUX'), ('nt', 'PART'), ('mind', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('Do', 'AUX'), ('nt', 'PART'), ('let', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('make', 'VERB'), ('YOU', 'PRON'), ('unhappy', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('say', 'VERB'), ('no', 'ADV'), ('more', 'ADV'), ('her', 'PRON'), ('spirits', 'NOUN'), ('were', 'AUX'), ('quite', 'ADV'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hiding', 'VERB'), ('her', 'PRON'), ('face', 'NOUN'), ('on', 'ADP'), ('Elinors', 'PROPN'), ('shoulder', 'NOUN'), ('she', 'PRON'), ('burst', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('tears', 'NOUN'), (' ', 'SPACE'), ('Every', 'DET'), ('bodys', 'ADJ'), ('attention', 'NOUN'), ('was', 'AUX'), ('called', 'VERB'), ('and', 'CCONJ'), ('almost', 'ADV'), ('\n', 'SPACE'), ('every', 'DET'), ('body', 'NOUN'), ('was', 'AUX'), ('concernedColonel', 'NOUN'), ('Brandon', 'PROPN'), ('rose', 'VERB'), ('up', 'ADP'), ('and', 'CCONJ'), ('went', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('them', 'PRON'), ('without', 'ADP'), ('knowing', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('didMrs', 'VERB'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('intelligent', 'ADJ'), ('Ah', 'INTJ'), ('poor', 'ADJ'), ('dear', 'NOUN'), ('immediately', 'ADV'), ('gave', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('her', 'PRON'), ('salts', 'NOUN'), ('and', 'CCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('felt', 'VERB'), ('so', 'ADV'), ('desperately', 'ADV'), ('enraged', 'VERB'), ('\n', 'SPACE'), ('against', 'ADP'), ('the', 'DET'), ('author', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('nervous', 'ADJ'), ('distress', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('instantly', 'ADV'), ('changed', 'VERB'), ('his', 'PRON'), ('seat', 'NOUN'), ('to', 'ADP'), ('one', 'NUM'), ('close', 'ADJ'), ('by', 'ADP'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('gave', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('whisper', 'NOUN'), ('a', 'DET'), ('brief', 'ADJ'), ('account', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('whole', 'ADJ'), ('\n', 'SPACE'), ('shocking', 'ADJ'), ('affair', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('however', 'ADV'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('recovered', 'VERB'), ('\n', 'SPACE'), ('enough', 'ADJ'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('bustle', 'NOUN'), ('and', 'CCONJ'), ('sit', 'VERB'), ('down', 'ADP'), ('among', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('rest', 'NOUN'), ('though', 'SCONJ'), ('her', 'PRON'), ('spirits', 'NOUN'), ('retained', 'VERB'), ('the', 'DET'), ('impression', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('evening', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'PROPN'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('her', 'PRON'), ('brother', 'NOUN'), ('to', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('secure', 'VERB'), ('his', 'PRON'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('such', 'ADJ'), ('good', 'ADJ'), ('health', 'NOUN'), ('as', 'SCONJ'), ('her', 'PRON'), ('sistershe', 'NOUN'), ('is', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('nervousshe', 'NOUN'), ('has', 'AUX'), ('not', 'PART'), ('Elinors', 'NOUN'), ('constitutionand', 'VERB'), ('one', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('allow', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('something', 'PRON'), ('very', 'ADV'), ('trying', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('HAS', 'AUX'), ('BEEN', 'AUX'), ('a', 'DET'), ('beauty', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('personal', 'ADJ'), ('attractions', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('perhaps', 'ADV'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('WAS', 'AUX'), ('remarkably', 'ADV'), ('\n', 'SPACE'), ('handsome', 'ADJ'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('ago', 'ADV'), ('quite', 'ADV'), ('as', 'ADV'), ('handsome', 'ADJ'), ('as', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('Now', 'ADV'), ('you', 'PRON'), ('see', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('all', 'PRON'), ('gone', 'VERB'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('35', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('curiosity', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('satisfied', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('found', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('tend', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('farther', 'ADJ'), ('connection', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('families', 'NOUN'), ('undesirable', 'ADJ'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('enough', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('pride', 'NOUN'), ('her', 'PRON'), ('meanness', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('determined', 'ADJ'), ('prejudice', 'NOUN'), ('against', 'ADP'), ('herself', 'PRON'), ('to', 'PART'), ('comprehend', 'VERB'), ('all', 'DET'), ('\n', 'SPACE'), ('the', 'DET'), ('difficulties', 'NOUN'), ('that', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('perplexed', 'VERB'), ('the', 'DET'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('retarded', 'VERB'), ('the', 'DET'), ('marriage', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('herself', 'PRON'), ('had', 'AUX'), ('he', 'PRON'), ('been', 'AUX'), ('\n', 'SPACE'), ('otherwise', 'ADV'), ('freeand', 'ADJ'), ('she', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('almost', 'ADV'), ('enough', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('thankful', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('OWN', 'ADJ'), ('sake', 'NOUN'), ('that', 'SCONJ'), ('one', 'NUM'), ('greater', 'ADJ'), ('obstacle', 'NOUN'), ('preserved', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('suffering', 'VERB'), ('under', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('creation', 'NOUN'), ('\n', 'SPACE'), ('preserved', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('all', 'DET'), ('dependence', 'NOUN'), ('upon', 'SCONJ'), ('her', 'PRON'), ('caprice', 'NOUN'), ('or', 'CCONJ'), ('any', 'DET'), ('\n', 'SPACE'), ('solicitude', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('good', 'ADJ'), ('opinion', 'NOUN'), (' ', 'SPACE'), ('Or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('bring', 'VERB'), ('herself', 'PRON'), ('quite', 'ADV'), ('to', 'PART'), ('rejoice', 'VERB'), ('in', 'ADP'), ('Edwards', 'PROPN'), ('being', 'AUX'), ('fettered', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('she', 'PRON'), ('determined', 'VERB'), ('that', 'PRON'), ('had', 'AUX'), ('Lucy', 'PROPN'), ('been', 'AUX'), ('more', 'ADV'), ('amiable', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('OUGHT', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('rejoiced', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('wondered', 'VERB'), ('that', 'SCONJ'), ('Lucys', 'PROPN'), ('spirits', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('elevated', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('civility', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarsthat', 'PROPN'), ('her', 'PRON'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('vanity', 'NOUN'), ('should', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('much', 'ADV'), ('blind', 'ADJ'), ('her', 'PRON'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('attention', 'NOUN'), ('which', 'PRON'), ('seemed', 'VERB'), ('only', 'ADV'), ('paid', 'VERB'), ('her', 'PRON'), ('because', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('NOT', 'PART'), ('ELINOR', 'PROPN'), ('appear', 'VERB'), ('a', 'DET'), ('compliment', 'NOUN'), ('to', 'PART'), ('herselfor', 'VERB'), ('to', 'PART'), ('allow', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'PART'), ('derive', 'VERB'), ('encouragement', 'NOUN'), ('from', 'ADP'), ('a', 'DET'), ('preference', 'NOUN'), ('only', 'ADV'), ('given', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('her', 'PRON'), ('real', 'ADJ'), ('situation', 'NOUN'), ('was', 'AUX'), ('unknown', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('been', 'AUX'), ('declared', 'VERB'), ('by', 'ADP'), ('Lucys', 'PROPN'), ('eyes', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('was', 'AUX'), ('declared', 'VERB'), ('over', 'ADP'), ('again', 'ADV'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('more', 'ADV'), ('openly', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('at', 'ADP'), ('her', 'PRON'), ('particular', 'ADJ'), ('desire', 'NOUN'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('set', 'VERB'), ('her', 'PRON'), ('down', 'ADP'), ('\n', 'SPACE'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('on', 'ADP'), ('the', 'DET'), ('chance', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('Elinor', 'PROPN'), ('alone', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('tell', 'VERB'), ('her', 'PRON'), ('how', 'SCONJ'), ('happy', 'ADJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('The', 'DET'), ('chance', 'NOUN'), ('proved', 'VERB'), ('a', 'DET'), ('lucky', 'ADJ'), ('one', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('message', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('soon', 'ADV'), ('after', 'SCONJ'), ('she', 'PRON'), ('arrived', 'VERB'), ('carried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('friend', 'NOUN'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('by', 'ADP'), ('themselves', 'PRON'), ('I', 'PRON'), ('come', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('of', 'ADP'), ('my', 'PRON'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('Could', 'AUX'), ('anything', 'PRON'), ('be', 'AUX'), ('so', 'ADV'), ('flattering', 'ADJ'), ('as', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('way', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('treating', 'VERB'), ('me', 'PRON'), ('yesterday', 'NOUN'), (' ', 'SPACE'), ('So', 'ADV'), ('exceeding', 'VERB'), ('affable', 'ADJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('wasYou', 'NOUN'), ('know', 'VERB'), ('how', 'SCONJ'), ('I', 'PRON'), ('dreaded', 'VERB'), ('the', 'DET'), ('thoughts', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('very', 'ADJ'), ('moment', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('introduced', 'VERB'), ('there', 'PRON'), ('was', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('\n', 'SPACE'), ('affability', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('as', 'SCONJ'), ('really', 'ADV'), ('should', 'AUX'), ('seem', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('quite', 'ADV'), ('took', 'VERB'), ('a', 'DET'), ('fancy', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('Now', 'ADV'), ('was', 'AUX'), ('not', 'PART'), ('it', 'PRON'), ('so', 'SCONJ'), ('\n', 'SPACE'), ('You', 'PRON'), ('saw', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('and', 'CCONJ'), ('was', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('quite', 'ADV'), ('struck', 'VERB'), ('with', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('certainly', 'ADV'), ('very', 'ADV'), ('civil', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('CivilDid', 'PROPN'), ('you', 'PRON'), ('see', 'VERB'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('only', 'ADV'), ('civility', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('saw', 'VERB'), ('a', 'DET'), ('vast', 'ADJ'), ('deal', 'NOUN'), ('more', 'ADJ'), (' ', 'SPACE'), ('Such', 'ADJ'), ('kindness', 'NOUN'), ('as', 'SCONJ'), ('fell', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('share', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('nobody', 'PRON'), ('but', 'CCONJ'), ('meNo', 'NOUN'), ('pride', 'NOUN'), ('no', 'DET'), ('hauteur', 'NOUN'), ('and', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('just', 'ADV'), ('the', 'DET'), ('sameall', 'NOUN'), ('sweetness', 'NOUN'), ('and', 'CCONJ'), ('affability', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('wished', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('something', 'PRON'), ('else', 'ADV'), ('but', 'CCONJ'), ('Lucy', 'PROPN'), ('still', 'ADV'), ('\n', 'SPACE'), ('pressed', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('own', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('reason', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('Undoubtedly', 'ADV'), ('if', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('known', 'VERB'), ('your', 'PRON'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('she', 'PRON'), ('nothing', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('flattering', 'ADJ'), ('than', 'SCONJ'), ('their', 'PRON'), ('\n', 'SPACE'), ('treatment', 'NOUN'), ('of', 'ADP'), ('youbut', 'PROPN'), ('as', 'ADP'), ('that', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('case', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('guessed', 'VERB'), ('you', 'PRON'), ('would', 'AUX'), ('say', 'VERB'), ('soreplied', 'ADJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('quicklybut', 'PROPN'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('reason', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('why', 'SCONJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('should', 'AUX'), ('seem', 'VERB'), ('to', 'PART'), ('like', 'VERB'), ('me', 'PRON'), ('if', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('liking', 'VERB'), ('me', 'PRON'), ('is', 'AUX'), ('every', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('sha', 'AUX'), ('nt', 'PART'), ('talk', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('my', 'PRON'), ('satisfaction', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('will', 'AUX'), ('all', 'ADV'), ('end', 'VERB'), ('well', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('there', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('difficulties', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('to', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('used', 'VERB'), ('to', 'PART'), ('think', 'VERB'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('charming', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('is', 'AUX'), ('your', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('both', 'PRON'), ('delightful', 'ADJ'), ('women', 'NOUN'), ('\n', 'SPACE'), ('indeedI', 'ADJ'), ('wonder', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('hear', 'VERB'), ('you', 'PRON'), ('say', 'VERB'), ('how', 'SCONJ'), ('agreeable', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('To', 'ADP'), ('this', 'DET'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('attempt', 'VERB'), ('any', 'PRON'), ('\n\n', 'SPACE'), ('Are', 'AUX'), ('you', 'PRON'), ('ill', 'ADJ'), ('Miss', 'PROPN'), ('Dashwoodyou', 'PROPN'), ('seem', 'VERB'), ('lowyou', 'PRON'), ('\n', 'SPACE'), ('do', 'AUX'), ('nt', 'PART'), ('speaksure', 'VERB'), ('you', 'PRON'), ('ant', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('in', 'ADP'), ('better', 'ADJ'), ('health', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('glad', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('but', 'CCONJ'), ('really', 'ADV'), ('you', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('look', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('have', 'VERB'), ('YOU', 'PRON'), ('ill', 'VERB'), ('you', 'PRON'), ('that', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('the', 'DET'), ('greatest', 'ADJ'), ('comfort', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('worldHeaven', 'NOUN'), ('\n', 'SPACE'), ('knows', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('without', 'ADP'), ('your', 'PRON'), ('friendship', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('tried', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('civil', 'ADJ'), ('answer', 'NOUN'), ('though', 'SCONJ'), ('doubting', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('own', 'ADJ'), ('success', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('satisfy', 'VERB'), ('Lucy', 'PROPN'), ('for', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('directly', 'ADV'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('perfectly', 'ADV'), ('convinced', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('regard', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('next', 'ADJ'), ('to', 'ADP'), ('Edwards', 'PROPN'), ('love', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('greatest', 'ADJ'), ('\n', 'SPACE'), ('comfort', 'NOUN'), ('I', 'PRON'), ('havePoor', 'VERB'), ('EdwardBut', 'CCONJ'), ('now', 'ADV'), ('there', 'PRON'), ('is', 'VERB'), ('one', 'NUM'), ('\n', 'SPACE'), ('good', 'ADJ'), ('thing', 'NOUN'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('meet', 'VERB'), ('and', 'CCONJ'), ('meet', 'VERB'), ('pretty', 'ADV'), ('often', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('delighted', 'VERB'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('so', 'SCONJ'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('good', 'ADJ'), ('deal', 'NOUN'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'INTJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('spends', 'VERB'), ('half', 'DET'), ('his', 'PRON'), ('time', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('sisterbesides', 'NOUN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('will', 'AUX'), ('visit', 'VERB'), ('now', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('were', 'AUX'), ('both', 'PRON'), ('so', 'ADV'), ('good', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'SCONJ'), ('once', 'SCONJ'), ('they', 'PRON'), ('should', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('such', 'ADJ'), ('charming', 'ADJ'), ('womenI', 'NOUN'), ('am', 'AUX'), ('sure', 'ADJ'), ('if', 'SCONJ'), ('ever', 'ADV'), ('you', 'PRON'), ('\n', 'SPACE'), ('tell', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('what', 'PRON'), ('I', 'PRON'), ('think', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('too', 'ADV'), ('high', 'ADJ'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('her', 'PRON'), ('any', 'DET'), ('encouragement', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('hope', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('SHOULD', 'AUX'), ('tell', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('continued', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('seen', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('had', 'AUX'), ('took', 'VERB'), ('a', 'DET'), ('dislike', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('If', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('formal', 'ADJ'), ('courtesy', 'NOUN'), ('for', 'ADP'), ('instance', 'NOUN'), ('without', 'ADP'), ('saying', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('word', 'NOUN'), ('and', 'CCONJ'), ('never', 'ADV'), ('after', 'SCONJ'), ('had', 'AUX'), ('took', 'VERB'), ('any', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('never', 'ADV'), ('looked', 'VERB'), ('at', 'ADP'), ('me', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('pleasant', 'ADJ'), ('wayyou', 'NOUN'), ('know', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('I', 'PRON'), ('meanif', 'VERB'), ('I', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('treated', 'VERB'), ('in', 'ADP'), ('that', 'DET'), ('forbidding', 'VERB'), ('\n', 'SPACE'), ('sort', 'NOUN'), ('of', 'ADP'), ('way', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('gave', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('up', 'ADP'), ('in', 'ADP'), ('despair', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('stood', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('For', 'ADP'), ('where', 'SCONJ'), ('she', 'PRON'), ('DOES', 'AUX'), ('dislike', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('most', 'ADV'), ('violent', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('prevented', 'VERB'), ('from', 'ADP'), ('making', 'VERB'), ('any', 'DET'), ('reply', 'NOUN'), ('to', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('civil', 'ADJ'), ('triumph', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('doors', 'NOUN'), ('being', 'AUX'), ('thrown', 'VERB'), ('open', 'ADJ'), ('the', 'DET'), ('servants', 'NOUN'), ('\n', 'SPACE'), ('announcing', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('Edwards', 'PROPN'), ('immediately', 'ADV'), ('walking', 'VERB'), ('in', 'ADP'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('awkward', 'ADJ'), ('moment', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('countenance', 'NOUN'), ('of', 'ADP'), ('each', 'PRON'), ('\n', 'SPACE'), ('shewed', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('all', 'PRON'), ('looked', 'VERB'), ('exceedingly', 'ADV'), ('foolish', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('seemed', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('as', 'ADV'), ('great', 'ADJ'), ('an', 'DET'), ('inclination', 'NOUN'), ('to', 'PART'), ('walk', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('again', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('advance', 'VERB'), ('farther', 'ADV'), ('into', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('very', 'ADJ'), ('circumstance', 'NOUN'), ('in', 'ADP'), ('its', 'PRON'), ('unpleasantest', 'ADJ'), ('form', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('they', 'PRON'), ('would', 'AUX'), ('each', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('most', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('avoid', 'VERB'), ('\n', 'SPACE'), ('had', 'AUX'), ('fallen', 'VERB'), ('on', 'ADP'), ('themThey', 'PRON'), ('were', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('all', 'DET'), ('three', 'NUM'), ('together', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('were', 'AUX'), ('together', 'ADV'), ('without', 'ADP'), ('the', 'DET'), ('relief', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('person', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('ladies', 'NOUN'), ('recovered', 'VERB'), ('themselves', 'PRON'), ('first', 'ADV'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('Lucys', 'PROPN'), ('\n', 'SPACE'), ('business', 'NOUN'), ('to', 'PART'), ('put', 'VERB'), ('herself', 'PRON'), ('forward', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('secrecy', 'NOUN'), ('must', 'AUX'), ('still', 'ADV'), ('be', 'AUX'), ('kept', 'VERB'), ('up', 'ADP'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('therefore', 'ADV'), ('only', 'ADV'), ('\n', 'SPACE'), ('LOOK', 'VERB'), ('her', 'PRON'), ('tenderness', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('slightly', 'ADV'), ('addressing', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('more', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('and', 'CCONJ'), ('so', 'ADV'), ('anxious', 'ADJ'), ('was', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('sake', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('well', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('forced', 'VERB'), ('herself', 'PRON'), ('after', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('recollection', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('welcome', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('and', 'CCONJ'), ('manner', 'NOUN'), ('that', 'PRON'), ('were', 'AUX'), ('almost', 'ADV'), ('easy', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('almost', 'ADV'), ('open', 'ADJ'), ('and', 'CCONJ'), ('another', 'DET'), ('struggle', 'NOUN'), ('another', 'DET'), ('effort', 'NOUN'), ('still', 'ADV'), ('\n', 'SPACE'), ('improved', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('allow', 'VERB'), ('the', 'DET'), ('presence', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('injustice', 'NOUN'), ('towards', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('deter', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('saying', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('happy', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('regretted', 'VERB'), ('being', 'AUX'), ('from', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('he', 'PRON'), ('called', 'VERB'), ('before', 'ADV'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('frightened', 'ADJ'), ('from', 'ADP'), ('paying', 'VERB'), ('him', 'PRON'), ('those', 'DET'), ('attentions', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('and', 'CCONJ'), ('almost', 'ADV'), ('a', 'DET'), ('relation', 'NOUN'), ('were', 'AUX'), ('his', 'PRON'), ('due', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('observant', 'ADJ'), ('eyes', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('though', 'SCONJ'), ('she', 'PRON'), ('soon', 'ADV'), ('perceived', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('narrowly', 'ADV'), ('watching', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('manners', 'NOUN'), ('gave', 'VERB'), ('some', 'DET'), ('reassurance', 'NOUN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('courage', 'NOUN'), ('enough', 'ADV'), ('to', 'PART'), ('sit', 'VERB'), ('down', 'ADP'), ('but', 'CCONJ'), ('his', 'PRON'), ('embarrassment', 'NOUN'), ('still', 'ADV'), ('\n', 'SPACE'), ('exceeded', 'VERB'), ('that', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('ladies', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('proportion', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('rendered', 'VERB'), ('reasonable', 'ADJ'), ('though', 'SCONJ'), ('his', 'PRON'), ('sex', 'NOUN'), ('might', 'AUX'), ('make', 'VERB'), ('it', 'PRON'), ('rare', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('heart', 'NOUN'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('indifference', 'NOUN'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('nor', 'CCONJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('his', 'PRON'), ('conscience', 'NOUN'), ('have', 'VERB'), ('quite', 'DET'), ('the', 'DET'), ('ease', 'NOUN'), ('of', 'ADP'), ('Elinors', 'PROPN'), ('\n\n', 'SPACE'), ('Lucy', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('demure', 'NOUN'), ('and', 'CCONJ'), ('settled', 'VERB'), ('air', 'NOUN'), ('seemed', 'VERB'), ('determined', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('no', 'DET'), ('contribution', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('not', 'PART'), ('say', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('and', 'CCONJ'), ('almost', 'ADV'), ('every', 'PRON'), ('thing', 'NOUN'), ('that', 'PRON'), ('WAS', 'AUX'), ('\n', 'SPACE'), ('said', 'VERB'), ('proceeded', 'VERB'), ('from', 'ADP'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('volunteer', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('information', 'NOUN'), ('about', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('health', 'VERB'), ('their', 'PRON'), ('coming', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('town', 'NOUN'), ('c', 'NOUN'), ('which', 'PRON'), ('Edward', 'PROPN'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('inquired', 'VERB'), ('about', 'ADP'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('never', 'ADV'), ('did', 'AUX'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('exertions', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('stop', 'VERB'), ('here', 'ADV'), ('for', 'ADP'), ('she', 'PRON'), ('soon', 'ADV'), ('\n', 'SPACE'), ('afterwards', 'ADV'), ('felt', 'VERB'), ('herself', 'PRON'), ('so', 'ADV'), ('heroically', 'ADV'), ('disposed', 'ADJ'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('to', 'PART'), ('determine', 'VERB'), ('under', 'ADP'), ('pretence', 'NOUN'), ('of', 'ADP'), ('fetching', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('leave', 'VERB'), ('the', 'DET'), ('others', 'NOUN'), ('by', 'ADP'), ('themselves', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('really', 'ADV'), ('did', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('THAT', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('handsomest', 'ADJ'), ('manner', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('loitered', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('several', 'ADJ'), ('minutes', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('landingplace', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('highminded', 'VERB'), ('fortitude', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('once', 'ADV'), ('done', 'VERB'), ('however', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('time', 'NOUN'), ('for', 'SCONJ'), ('the', 'DET'), ('raptures', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Edward', 'PROPN'), ('to', 'PART'), ('cease', 'VERB'), ('for', 'SCONJ'), ('Mariannes', 'PROPN'), ('joy', 'NOUN'), ('hurried', 'VERB'), ('her', 'PRON'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('immediately', 'ADV'), (' ', 'SPACE'), ('Her', 'PRON'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('seeing', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('like', 'ADP'), ('every', 'DET'), ('other', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('feelings', 'NOUN'), ('strong', 'ADJ'), ('in', 'ADP'), ('itself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('strongly', 'ADV'), ('spoken', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('met', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('hand', 'NOUN'), ('that', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('taken', 'VERB'), ('and', 'CCONJ'), ('a', 'DET'), ('voice', 'NOUN'), ('that', 'PRON'), ('expressed', 'VERB'), ('the', 'DET'), ('affection', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Dear', 'PROPN'), ('Edward', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('this', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('\n', 'SPACE'), ('happinessThis', 'PRON'), ('would', 'AUX'), ('almost', 'ADV'), ('make', 'VERB'), ('amends', 'NOUN'), ('for', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('tried', 'VERB'), ('to', 'PART'), ('return', 'VERB'), ('her', 'PRON'), ('kindness', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('deserved', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('before', 'ADP'), ('such', 'ADJ'), ('witnesses', 'NOUN'), ('he', 'PRON'), ('dared', 'AUX'), ('not', 'PART'), ('say', 'VERB'), ('half', 'DET'), ('what', 'PRON'), ('he', 'PRON'), ('\n', 'SPACE'), ('really', 'ADV'), ('felt', 'VERB'), (' ', 'SPACE'), ('Again', 'ADV'), ('they', 'PRON'), ('all', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('and', 'CCONJ'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('two', 'NUM'), ('all', 'PRON'), ('were', 'AUX'), ('silent', 'ADJ'), ('while', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('looking', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('most', 'ADV'), ('speaking', 'VERB'), ('tenderness', 'NOUN'), ('sometimes', 'ADV'), ('at', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('Elinor', 'PROPN'), ('regretting', 'VERB'), ('only', 'ADV'), ('that', 'SCONJ'), ('their', 'PRON'), ('delight', 'NOUN'), ('in', 'ADP'), ('each', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('should', 'AUX'), ('be', 'AUX'), ('checked', 'VERB'), ('by', 'ADP'), ('Lucys', 'PROPN'), ('unwelcome', 'ADJ'), ('presence', 'NOUN'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('first', 'ADJ'), ('to', 'PART'), ('speak', 'VERB'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('notice', 'VERB'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('altered', 'VERB'), ('looks', 'NOUN'), ('and', 'CCONJ'), ('express', 'VERB'), ('his', 'PRON'), ('fear', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('not', 'PART'), ('finding', 'VERB'), ('London', 'PROPN'), ('agree', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('do', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('me', 'PRON'), ('she', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('spirited', 'ADJ'), ('\n', 'SPACE'), ('earnestness', 'NOUN'), ('though', 'SCONJ'), ('her', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('filled', 'VERB'), ('with', 'ADP'), ('tears', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('do', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('MY', 'PROPN'), ('health', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('is', 'AUX'), ('well', 'ADV'), ('\n', 'SPACE'), ('you', 'PRON'), ('see', 'VERB'), (' ', 'SPACE'), ('That', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('enough', 'ADJ'), ('for', 'ADP'), ('us', 'PRON'), ('both', 'DET'), ('\n\n', 'SPACE'), ('This', 'DET'), ('remark', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('calculated', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('Edward', 'PROPN'), ('or', 'CCONJ'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('more', 'ADV'), ('easy', 'ADJ'), ('nor', 'CCONJ'), ('to', 'PART'), ('conciliate', 'VERB'), ('the', 'DET'), ('good', 'ADJ'), ('will', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('looked', 'VERB'), ('up', 'ADP'), ('at', 'ADP'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('no', 'DET'), ('very', 'ADV'), ('benignant', 'ADJ'), ('expression', 'NOUN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('like', 'ADP'), ('London', 'PROPN'), ('said', 'VERB'), ('Edward', 'PROPN'), ('willing', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('might', 'AUX'), ('introduce', 'VERB'), ('another', 'DET'), ('subject', 'NOUN'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('expected', 'VERB'), ('much', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('found', 'VERB'), ('none', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('sight', 'NOUN'), ('of', 'ADP'), ('you', 'PRON'), ('Edward', 'PROPN'), ('is', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('only', 'ADV'), ('comfort', 'NOUN'), ('it', 'PRON'), ('has', 'AUX'), ('afforded', 'VERB'), ('and', 'CCONJ'), ('thank', 'VERB'), ('Heaven', 'PROPN'), ('you', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('what', 'PRON'), ('you', 'PRON'), ('always', 'ADV'), ('were', 'AUX'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('pausedno', 'NOUN'), ('one', 'NUM'), ('spoke', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('presently', 'ADV'), ('added', 'VERB'), ('we', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('employ', 'VERB'), ('Edward', 'PROPN'), ('to', 'PART'), ('take', 'VERB'), ('care', 'NOUN'), ('of', 'ADP'), ('us', 'PRON'), ('in', 'ADP'), ('our', 'PRON'), ('return', 'NOUN'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('I', 'PRON'), ('suppose', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('going', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('trust', 'VERB'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('very', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('accept', 'VERB'), ('the', 'DET'), ('charge', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'PROPN'), ('Edward', 'PROPN'), ('muttered', 'VERB'), ('something', 'PRON'), ('but', 'CCONJ'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('nobody', 'PRON'), ('knew', 'VERB'), ('not', 'PART'), ('even', 'ADV'), ('himself', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('agitation', 'NOUN'), ('and', 'CCONJ'), ('could', 'AUX'), ('easily', 'ADV'), ('trace', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('whatever', 'DET'), ('\n', 'SPACE'), ('cause', 'NOUN'), ('best', 'ADV'), ('pleased', 'VERB'), ('herself', 'PRON'), ('was', 'AUX'), ('perfectly', 'ADV'), ('satisfied', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('soon', 'ADV'), ('talked', 'VERB'), ('of', 'ADP'), ('something', 'PRON'), ('else', 'ADV'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('spent', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('day', 'NOUN'), ('Edward', 'PROPN'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('yesterday', 'NOUN'), (' ', 'SPACE'), ('So', 'ADV'), ('dull', 'ADJ'), ('so', 'ADV'), ('wretchedly', 'ADV'), ('dullBut', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('say', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('on', 'ADP'), ('that', 'DET'), ('head', 'NOUN'), ('which', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('said', 'VERB'), ('now', 'ADV'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('with', 'ADP'), ('this', 'DET'), ('admirable', 'ADJ'), ('discretion', 'NOUN'), ('did', 'AUX'), ('she', 'PRON'), ('defer', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('assurance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('finding', 'VERB'), ('their', 'PRON'), ('mutual', 'ADJ'), ('relatives', 'NOUN'), ('more', 'ADV'), ('\n', 'SPACE'), ('disagreeable', 'ADJ'), ('than', 'ADP'), ('ever', 'ADV'), ('and', 'CCONJ'), ('of', 'ADP'), ('her', 'PRON'), ('being', 'AUX'), ('particularly', 'ADV'), ('\n', 'SPACE'), ('disgusted', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('till', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('more', 'ADJ'), ('in', 'ADP'), ('private', 'ADJ'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('were', 'AUX'), ('you', 'PRON'), ('not', 'PART'), ('there', 'ADV'), ('EdwardWhy', 'PROPN'), ('did', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('not', 'PART'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('engaged', 'VERB'), ('elsewhere', 'ADV'), ('\n\n', 'SPACE'), ('Engaged', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('what', 'PRON'), ('was', 'AUX'), ('that', 'PRON'), ('when', 'SCONJ'), ('such', 'ADJ'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('met', 'VERB'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('cried', 'VERB'), ('Lucy', 'PROPN'), ('eager', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('\n', 'SPACE'), ('some', 'DET'), ('revenge', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('you', 'PRON'), ('think', 'VERB'), ('young', 'ADJ'), ('men', 'NOUN'), ('never', 'ADV'), ('stand', 'VERB'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('engagements', 'NOUN'), ('if', 'SCONJ'), ('they', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('mind', 'NOUN'), ('to', 'PART'), ('keep', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('little', 'ADJ'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('great', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('angry', 'ADJ'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('seemed', 'VERB'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('insensible', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('sting', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('calmly', 'ADV'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('so', 'ADV'), ('indeed', 'ADV'), ('for', 'ADP'), ('seriously', 'ADV'), ('speaking', 'VERB'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('that', 'SCONJ'), ('conscience', 'NOUN'), ('only', 'ADV'), ('kept', 'VERB'), ('Edward', 'PROPN'), ('from', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('really', 'ADV'), ('believe', 'VERB'), ('he', 'PRON'), ('HAS', 'VERB'), ('the', 'DET'), ('most', 'ADV'), ('delicate', 'ADJ'), ('conscience', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('the', 'PRON'), ('most', 'ADV'), ('scrupulous', 'ADJ'), ('in', 'ADP'), ('performing', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('engagement', 'NOUN'), ('however', 'ADV'), ('minute', 'NOUN'), ('and', 'CCONJ'), ('however', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('make', 'VERB'), ('against', 'ADP'), ('his', 'PRON'), ('interest', 'NOUN'), ('or', 'CCONJ'), ('pleasure', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('most', 'ADV'), ('fearful', 'ADJ'), ('of', 'ADP'), ('giving', 'VERB'), ('pain', 'NOUN'), ('of', 'ADP'), ('wounding', 'NOUN'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('most', 'ADV'), ('incapable', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('selfish', 'ADJ'), ('of', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('ever', 'ADV'), ('saw', 'VERB'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('it', 'PRON'), ('is', 'AUX'), ('so', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('say', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('What', 'PRON'), ('are', 'AUX'), ('you', 'PRON'), ('never', 'ADV'), ('to', 'PART'), ('hear', 'VERB'), ('yourself', 'PRON'), ('praisedThen', 'INTJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('friend', 'NOUN'), ('of', 'ADP'), ('mine', 'NOUN'), ('for', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('will', 'AUX'), ('accept', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('love', 'NOUN'), ('and', 'CCONJ'), ('esteem', 'NOUN'), ('must', 'AUX'), ('submit', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('open', 'ADJ'), ('commendation', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('nature', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('commendation', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('happened', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('particularly', 'ADV'), ('illsuited', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('thirds', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('auditors', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('\n', 'SPACE'), ('unexhilarating', 'ADJ'), ('to', 'ADP'), ('Edward', 'PROPN'), ('that', 'SCONJ'), ('he', 'PRON'), ('very', 'ADV'), ('soon', 'ADV'), ('got', 'VERB'), ('up', 'ADP'), ('to', 'PART'), ('go', 'VERB'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('Going', 'VERB'), ('so', 'ADV'), ('soon', 'ADV'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('my', 'PRON'), ('dear', 'ADJ'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('this', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('drawing', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('aside', 'ADV'), ('she', 'PRON'), ('whispered', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('persuasion', 'NOUN'), ('that', 'PRON'), ('Lucy', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('much', 'ADV'), ('longer', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('even', 'ADV'), ('this', 'DET'), ('encouragement', 'NOUN'), ('failed', 'VERB'), ('for', 'SCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('go', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('outstaid', 'VERB'), ('him', 'PRON'), ('had', 'VERB'), ('his', 'PRON'), ('visit', 'NOUN'), ('lasted', 'VERB'), ('\n', 'SPACE'), ('two', 'NUM'), ('hours', 'NOUN'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('went', 'VERB'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('can', 'AUX'), ('bring', 'VERB'), ('her', 'PRON'), ('here', 'ADV'), ('so', 'ADV'), ('often', 'ADV'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('leaving', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('Could', 'AUX'), ('not', 'PART'), ('she', 'PRON'), ('see', 'VERB'), ('that', 'SCONJ'), ('we', 'PRON'), ('wanted', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('gonehow', 'NOUN'), ('teazing', 'NOUN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('sowe', 'NOUN'), ('were', 'AUX'), ('all', 'DET'), ('his', 'PRON'), ('friends', 'NOUN'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('longest', 'ADV'), ('known', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('of', 'ADP'), ('any', 'DET'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('but', 'CCONJ'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('like', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('ourselves', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('looked', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('steadily', 'ADV'), ('and', 'CCONJ'), ('said', 'VERB'), ('You', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('talking', 'VERB'), ('which', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('only', 'ADV'), ('hope', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('your', 'PRON'), ('assertion', 'NOUN'), ('contradicted', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('suppose', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('case', 'NOUN'), ('you', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('recollect', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('the', 'DET'), ('last', 'ADJ'), ('person', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('descend', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('tricked', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('assurances', 'NOUN'), ('that', 'PRON'), ('are', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('really', 'ADV'), ('wanted', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('then', 'ADV'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('dared', 'AUX'), ('not', 'PART'), ('follow', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('more', 'ADJ'), ('for', 'ADP'), ('bound', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('by', 'ADP'), ('her', 'PRON'), ('promise', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('secrecy', 'NOUN'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('she', 'PRON'), ('could', 'AUX'), ('give', 'VERB'), ('no', 'DET'), ('information', 'NOUN'), ('that', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('convince', 'VERB'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('painful', 'ADJ'), ('as', 'ADP'), ('the', 'DET'), ('consequences', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('still', 'ADV'), ('continuing', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('error', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('obliged', 'VERB'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('she', 'PRON'), ('could', 'AUX'), ('hope', 'VERB'), ('was', 'AUX'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('often', 'ADV'), ('expose', 'VERB'), ('her', 'PRON'), ('or', 'CCONJ'), ('himself', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('distress', 'NOUN'), ('of', 'ADP'), ('hearing', 'VERB'), ('Mariannes', 'PROPN'), ('mistaken', 'ADJ'), ('warmth', 'NOUN'), ('nor', 'CCONJ'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('repetition', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('part', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('pain', 'NOUN'), ('that', 'PRON'), ('had', 'AUX'), ('attended', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('recent', 'ADJ'), ('meetingand', 'NOUN'), ('this', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('every', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('expect', 'VERB'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('36', 'NUM'), ('\n\n\n', 'SPACE'), ('Within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('after', 'ADP'), ('this', 'DET'), ('meeting', 'NOUN'), ('the', 'DET'), ('newspapers', 'NOUN'), ('\n', 'SPACE'), ('announced', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('lady', 'NOUN'), ('of', 'ADP'), ('Thomas', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('Esq', 'PROPN'), ('was', 'AUX'), ('safely', 'ADV'), ('delivered', 'VERB'), ('of', 'ADP'), ('a', 'DET'), ('son', 'NOUN'), ('and', 'CCONJ'), ('heir', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('interesting', 'ADJ'), ('and', 'CCONJ'), ('satisfactory', 'ADJ'), ('paragraph', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('to', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('those', 'DET'), ('intimate', 'ADJ'), ('connections', 'NOUN'), ('who', 'PRON'), ('knew', 'VERB'), ('it', 'PRON'), ('before', 'ADP'), ('\n\n', 'SPACE'), ('This', 'DET'), ('event', 'NOUN'), ('highly', 'ADV'), ('important', 'ADJ'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('produced', 'VERB'), ('a', 'DET'), ('temporary', 'ADJ'), ('alteration', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('disposal', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('influenced', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('like', 'ADJ'), ('degree', 'NOUN'), ('the', 'DET'), ('engagements', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('young', 'ADJ'), ('friends', 'NOUN'), ('for', 'ADP'), ('as', 'SCONJ'), ('she', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('possible', 'ADJ'), ('with', 'ADP'), ('Charlotte', 'PROPN'), ('she', 'PRON'), ('went', 'VERB'), ('thither', 'NOUN'), ('every', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('dressed', 'VERB'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('return', 'VERB'), ('till', 'SCONJ'), ('late', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('particular', 'ADJ'), ('\n', 'SPACE'), ('request', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('spent', 'VERB'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('every', 'DET'), ('day', 'NOUN'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), (' ', 'SPACE'), ('For', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('would', 'AUX'), ('much', 'ADV'), ('rather', 'ADV'), ('have', 'AUX'), ('remained', 'VERB'), ('at', 'ADV'), ('least', 'ADV'), ('all', 'DET'), ('\n', 'SPACE'), ('the', 'DET'), ('morning', 'NOUN'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('house', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('a', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('urged', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('wishes', 'NOUN'), ('of', 'ADP'), ('everybody', 'PRON'), ('\n', 'SPACE'), ('Their', 'PRON'), ('hours', 'NOUN'), ('were', 'AUX'), ('therefore', 'ADV'), ('made', 'VERB'), ('over', 'ADP'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('two', 'NUM'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('by', 'ADP'), ('whom', 'PRON'), ('their', 'PRON'), ('company', 'NOUN'), ('in', 'ADP'), ('fact', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('as', 'ADV'), ('little', 'ADJ'), ('valued', 'VERB'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('professedly', 'ADV'), ('sought', 'VERB'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('had', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('sense', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('desirable', 'ADJ'), ('companions', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('and', 'CCONJ'), ('by', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('they', 'PRON'), ('were', 'AUX'), ('considered', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('jealous', 'ADJ'), ('eye', 'NOUN'), ('as', 'ADP'), ('intruding', 'VERB'), ('on', 'ADP'), ('THEIR', 'PRON'), ('ground', 'NOUN'), ('and', 'CCONJ'), ('sharing', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('kindness', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('wanted', 'VERB'), ('to', 'PART'), ('monopolize', 'VERB'), (' ', 'SPACE'), ('Though', 'SCONJ'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('polite', 'ADJ'), ('than', 'ADP'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('really', 'ADV'), ('like', 'VERB'), ('them', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('Because', 'SCONJ'), ('they', 'PRON'), ('neither', 'CCONJ'), ('flattered', 'VERB'), ('herself', 'PRON'), ('nor', 'CCONJ'), ('her', 'PRON'), ('children', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('them', 'PRON'), ('goodnatured', 'ADJ'), ('and', 'CCONJ'), ('because', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('fond', 'ADJ'), ('of', 'ADP'), ('reading', 'VERB'), ('she', 'PRON'), ('fancied', 'VERB'), ('them', 'PRON'), ('satirical', 'ADJ'), ('perhaps', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('exactly', 'ADV'), ('knowing', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('satirical', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('THAT', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('signify', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('censure', 'ADJ'), ('in', 'ADP'), ('common', 'ADJ'), ('use', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('easily', 'ADV'), ('given', 'VERB'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('presence', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('restraint', 'NOUN'), ('both', 'CCONJ'), ('on', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('It', 'PRON'), ('checked', 'VERB'), ('the', 'DET'), ('idleness', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('and', 'CCONJ'), ('the', 'DET'), ('business', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('was', 'AUX'), ('ashamed', 'ADJ'), ('of', 'ADP'), ('doing', 'VERB'), ('nothing', 'PRON'), ('before', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('flattery', 'NOUN'), ('which', 'PRON'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('proud', 'ADJ'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('administer', 'NOUN'), ('at', 'ADP'), ('other', 'ADJ'), ('times', 'NOUN'), ('she', 'PRON'), ('feared', 'VERB'), ('they', 'PRON'), ('would', 'AUX'), ('despise', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('for', 'ADP'), ('offering', 'VERB'), (' ', 'SPACE'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('was', 'AUX'), ('the', 'PRON'), ('least', 'ADV'), ('discomposed', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('three', 'NUM'), ('by', 'ADP'), ('their', 'PRON'), ('presence', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('their', 'PRON'), ('power', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('reconcile', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('it', 'PRON'), ('entirely', 'ADV'), (' ', 'SPACE'), ('Would', 'AUX'), ('either', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('only', 'ADV'), ('have', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('full', 'ADJ'), ('and', 'CCONJ'), ('minute', 'NOUN'), ('account', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('whole', 'ADJ'), ('\n', 'SPACE'), ('affair', 'NOUN'), ('between', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('she', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('thought', 'VERB'), ('herself', 'PRON'), ('amply', 'ADV'), ('rewarded', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('sacrifice', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('place', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('after', 'ADP'), ('dinner', 'NOUN'), ('which', 'PRON'), ('their', 'PRON'), ('\n', 'SPACE'), ('arrival', 'NOUN'), ('occasioned', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('this', 'DET'), ('conciliation', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('granted', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('though', 'SCONJ'), ('she', 'PRON'), ('often', 'ADV'), ('threw', 'VERB'), ('out', 'ADP'), ('expressions', 'NOUN'), ('of', 'ADP'), ('pity', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('more', 'ADJ'), ('than', 'SCONJ'), ('once', 'ADV'), ('dropt', 'ADJ'), ('a', 'DET'), ('reflection', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('inconstancy', 'NOUN'), ('of', 'ADP'), ('beaux', 'PROPN'), ('before', 'ADP'), ('Marianne', 'PROPN'), ('no', 'DET'), ('effect', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('produced', 'VERB'), ('but', 'CCONJ'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('indifference', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('former', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('of', 'ADP'), ('disgust', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), (' ', 'SPACE'), ('An', 'DET'), ('effort', 'NOUN'), ('even', 'ADV'), ('yet', 'ADV'), ('lighter', 'ADJ'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('made', 'VERB'), ('her', 'PRON'), ('their', 'PRON'), ('friend', 'NOUN'), (' ', 'SPACE'), ('Would', 'AUX'), ('they', 'PRON'), ('only', 'ADV'), ('have', 'AUX'), ('\n', 'SPACE'), ('laughed', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('about', 'ADP'), ('the', 'DET'), ('Doctor', 'PROPN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('so', 'ADV'), ('little', 'ADJ'), ('were', 'AUX'), ('they', 'PRON'), ('\n', 'SPACE'), ('anymore', 'ADV'), ('than', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('inclined', 'ADJ'), ('to', 'PART'), ('oblige', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('dined', 'VERB'), ('from', 'ADP'), ('home', 'NOUN'), ('she', 'PRON'), ('might', 'AUX'), ('spend', 'VERB'), ('a', 'DET'), ('whole', 'ADJ'), ('\n', 'SPACE'), ('day', 'NOUN'), ('without', 'ADP'), ('hearing', 'VERB'), ('any', 'DET'), ('other', 'ADJ'), ('raillery', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('kind', 'ADJ'), ('enough', 'ADJ'), ('to', 'PART'), ('bestow', 'VERB'), ('on', 'ADP'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('All', 'DET'), ('these', 'DET'), ('jealousies', 'NOUN'), ('and', 'CCONJ'), ('discontents', 'NOUN'), ('however', 'ADV'), ('were', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('totally', 'ADV'), ('unsuspected', 'ADJ'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('that', 'SCONJ'), ('she', 'PRON'), ('thought', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('a', 'DET'), ('delightful', 'ADJ'), ('thing', 'NOUN'), ('for', 'SCONJ'), ('the', 'DET'), ('girls', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('generally', 'ADV'), ('congratulated', 'VERB'), ('her', 'PRON'), ('young', 'ADJ'), ('friends', 'NOUN'), ('every', 'DET'), ('night', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('having', 'AUX'), ('escaped', 'VERB'), ('the', 'DET'), ('company', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('stupid', 'ADJ'), ('old', 'ADJ'), ('woman', 'NOUN'), ('so', 'ADV'), ('long', 'ADV'), ('\n', 'SPACE'), ('She', 'PRON'), ('joined', 'VERB'), ('them', 'PRON'), ('sometimes', 'ADV'), ('at', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('house', 'NOUN'), ('but', 'CCONJ'), ('wherever', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('she', 'PRON'), ('always', 'ADV'), ('came', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('excellent', 'ADJ'), ('spirits', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('delight', 'NOUN'), ('and', 'CCONJ'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('attributing', 'VERB'), ('Charlottes', 'PROPN'), ('well', 'ADV'), ('doing', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('care', 'NOUN'), ('and', 'CCONJ'), ('ready', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('so', 'ADV'), ('exact', 'ADJ'), ('so', 'ADV'), ('minute', 'VERB'), ('a', 'DET'), ('detail', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('only', 'ADV'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('had', 'VERB'), ('curiosity', 'NOUN'), ('enough', 'ADJ'), ('to', 'PART'), ('desire', 'VERB'), ('\n', 'SPACE'), ('One', 'NUM'), ('thing', 'NOUN'), ('DID', 'AUX'), ('disturb', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('of', 'ADP'), ('that', 'PRON'), ('she', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('daily', 'ADJ'), ('complaint', 'NOUN'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('maintained', 'VERB'), ('the', 'DET'), ('common', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('unfatherly', 'ADJ'), ('opinion', 'NOUN'), ('among', 'ADP'), ('his', 'PRON'), ('sex', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('infants', 'NOUN'), ('being', 'AUX'), ('alike', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('plainly', 'ADV'), ('perceive', 'VERB'), ('at', 'ADP'), ('different', 'ADJ'), ('times', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('most', 'ADV'), ('striking', 'ADJ'), ('resemblance', 'NOUN'), ('between', 'ADP'), ('this', 'DET'), ('baby', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('\n', 'SPACE'), ('one', 'NUM'), ('of', 'ADP'), ('his', 'PRON'), ('relations', 'NOUN'), ('on', 'ADP'), ('both', 'DET'), ('sides', 'NOUN'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('convincing', 'ADJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('father', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('no', 'ADV'), ('persuading', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('believe', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('exactly', 'ADV'), ('like', 'ADP'), ('every', 'DET'), ('other', 'ADJ'), ('baby', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('age', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('could', 'AUX'), ('he', 'PRON'), ('even', 'ADV'), ('be', 'AUX'), ('brought', 'VERB'), ('to', 'PART'), ('acknowledge', 'VERB'), ('the', 'DET'), ('simple', 'ADJ'), ('\n', 'SPACE'), ('proposition', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('the', 'DET'), ('finest', 'ADJ'), ('child', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('come', 'VERB'), ('now', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('relation', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('misfortune', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('about', 'ADP'), ('this', 'DET'), ('time', 'NOUN'), ('befell', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('It', 'PRON'), ('so', 'ADV'), ('happened', 'VERB'), ('that', 'SCONJ'), ('while', 'SCONJ'), ('her', 'PRON'), ('two', 'NUM'), ('sisters', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('were', 'AUX'), ('first', 'ADV'), ('calling', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('another', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('acquaintance', 'NOUN'), ('had', 'AUX'), ('dropt', 'VERB'), ('ina', 'PROPN'), ('circumstance', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('itself', 'PRON'), ('not', 'PART'), ('apparently', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('produce', 'VERB'), ('evil', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('while', 'SCONJ'), ('the', 'DET'), ('imaginations', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('will', 'AUX'), ('carry', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('away', 'ADV'), ('to', 'PART'), ('form', 'VERB'), ('wrong', 'ADJ'), ('judgments', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('decide', 'VERB'), ('on', 'ADP'), ('it', 'PRON'), ('by', 'ADP'), ('slight', 'ADJ'), ('appearances', 'NOUN'), ('ones', 'VERB'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('in', 'ADP'), ('some', 'DET'), ('measure', 'NOUN'), ('be', 'AUX'), ('always', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('mercy', 'NOUN'), ('of', 'ADP'), ('chance', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('instance', 'NOUN'), ('this', 'DET'), ('lastarrived', 'ADJ'), ('lady', 'NOUN'), ('allowed', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('fancy', 'NOUN'), ('to', 'ADP'), ('so', 'ADV'), ('far', 'ADV'), ('outrun', 'VERB'), ('truth', 'NOUN'), ('and', 'CCONJ'), ('probability', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('on', 'ADP'), ('merely', 'ADV'), ('hearing', 'VERB'), ('the', 'DET'), ('name', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('understanding', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('Mr', 'PROPN'), ('Dashwoods', 'PROPN'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('immediately', 'ADV'), ('concluded', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('staying', 'VERB'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('this', 'DET'), ('misconstruction', 'NOUN'), ('produced', 'VERB'), ('within', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('two', 'NUM'), ('afterwards', 'ADV'), ('cards', 'NOUN'), ('of', 'ADP'), ('invitation', 'NOUN'), ('for', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('for', 'ADP'), ('their', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('small', 'ADJ'), ('\n', 'SPACE'), ('musical', 'ADJ'), ('party', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('house', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('consequence', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('submit', 'VERB'), ('not', 'PART'), ('only', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('exceedingly', 'ADV'), ('great', 'ADJ'), ('inconvenience', 'NOUN'), ('of', 'ADP'), ('sending', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('carriage', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('but', 'CCONJ'), ('what', 'PRON'), ('was', 'AUX'), ('still', 'ADV'), ('worse', 'ADJ'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('subject', 'ADJ'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('unpleasantness', 'NOUN'), ('of', 'ADP'), ('appearing', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('treat', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('attention', 'NOUN'), ('and', 'CCONJ'), ('who', 'PRON'), ('could', 'AUX'), ('tell', 'VERB'), ('that', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('not', 'PART'), ('expect', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('out', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('second', 'ADJ'), ('time', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('power', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('disappointing', 'VERB'), ('them', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('true', 'ADJ'), ('must', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('hers', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('that', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('enough', 'ADJ'), ('for', 'ADP'), ('when', 'SCONJ'), ('people', 'NOUN'), ('are', 'AUX'), ('determined', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('a', 'DET'), ('mode', 'NOUN'), ('of', 'ADP'), ('conduct', 'NOUN'), ('which', 'PRON'), ('they', 'PRON'), ('know', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('wrong', 'ADJ'), ('they', 'PRON'), ('feel', 'AUX'), ('\n', 'SPACE'), ('injured', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('better', 'ADV'), ('from', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('now', 'ADV'), ('been', 'AUX'), ('brought', 'VERB'), ('by', 'ADP'), ('degrees', 'NOUN'), ('so', 'ADV'), ('much', 'ADV'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('of', 'ADP'), ('going', 'VERB'), ('out', 'ADP'), ('every', 'DET'), ('day', 'NOUN'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('become', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('matter', 'NOUN'), ('of', 'ADP'), ('indifference', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('whether', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('or', 'CCONJ'), ('not', 'PART'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('prepared', 'VERB'), ('quietly', 'ADV'), ('and', 'CCONJ'), ('mechanically', 'ADV'), ('for', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('evenings', 'NOUN'), ('engagement', 'NOUN'), ('though', 'ADV'), ('without', 'ADP'), ('expecting', 'VERB'), ('the', 'DET'), ('smallest', 'ADJ'), ('\n', 'SPACE'), ('amusement', 'NOUN'), ('from', 'ADP'), ('any', 'PRON'), ('and', 'CCONJ'), ('very', 'ADV'), ('often', 'ADV'), ('without', 'ADP'), ('knowing', 'VERB'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('the', 'DET'), ('last', 'ADJ'), ('moment', 'NOUN'), ('where', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('take', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('To', 'ADP'), ('her', 'PRON'), ('dress', 'NOUN'), ('and', 'CCONJ'), ('appearance', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('grown', 'VERB'), ('so', 'ADV'), ('perfectly', 'ADV'), ('\n', 'SPACE'), ('indifferent', 'ADJ'), ('as', 'SCONJ'), ('not', 'PART'), ('to', 'PART'), ('bestow', 'VERB'), ('half', 'DET'), ('the', 'DET'), ('consideration', 'NOUN'), ('on', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('during', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('toilet', 'NOUN'), ('which', 'PRON'), ('it', 'PRON'), ('received', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('five', 'NUM'), ('minutes', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('together', 'ADV'), ('when', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('finished', 'VERB'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('escaped', 'VERB'), ('HER', 'PRON'), ('minute', 'NOUN'), ('\n', 'SPACE'), ('observation', 'NOUN'), ('and', 'CCONJ'), ('general', 'ADJ'), ('curiosity', 'NOUN'), ('she', 'PRON'), ('saw', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('asked', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('never', 'ADV'), ('easy', 'ADJ'), ('till', 'SCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('the', 'DET'), ('price', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('dress', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('guessed', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('number', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('gowns', 'NOUN'), ('altogether', 'ADV'), ('with', 'ADP'), ('better', 'ADJ'), ('judgment', 'NOUN'), ('than', 'ADP'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('herself', 'PRON'), ('and', 'CCONJ'), ('was', 'AUX'), ('not', 'PART'), ('without', 'ADP'), ('hopes', 'NOUN'), ('of', 'ADP'), ('finding', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('they', 'PRON'), ('parted', 'VERB'), ('how', 'SCONJ'), ('much', 'ADJ'), ('her', 'PRON'), ('washing', 'NOUN'), ('cost', 'NOUN'), ('per', 'ADP'), ('week', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('much', 'ADV'), ('she', 'PRON'), ('had', 'VERB'), ('every', 'DET'), ('year', 'NOUN'), ('to', 'PART'), ('spend', 'VERB'), ('upon', 'SCONJ'), ('herself', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('impertinence', 'NOUN'), ('of', 'ADP'), ('these', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('scrutinies', 'NOUN'), ('moreover', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('generally', 'ADV'), ('concluded', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('compliment', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('meant', 'VERB'), ('as', 'ADP'), ('its', 'PRON'), ('douceur', 'NOUN'), ('was', 'AUX'), ('considered', 'VERB'), ('by', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('impertinence', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('for', 'ADP'), ('after', 'ADP'), ('undergoing', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('examination', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('value', 'NOUN'), ('and', 'CCONJ'), ('make', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('gown', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('colour', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('shoes', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('arrangement', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('hair', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('sure', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('told', 'VERB'), ('that', 'SCONJ'), ('upon', 'SCONJ'), ('her', 'PRON'), ('word', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('looked', 'VERB'), ('vastly', 'ADV'), ('smart', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('dared', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('she', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('make', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('many', 'ADJ'), ('conquests', 'NOUN'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('such', 'ADJ'), ('encouragement', 'NOUN'), ('as', 'SCONJ'), ('this', 'PRON'), ('was', 'AUX'), ('she', 'PRON'), ('dismissed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('occasion', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('brothers', 'NOUN'), ('carriage', 'VERB'), ('\n', 'SPACE'), ('which', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('enter', 'VERB'), ('five', 'NUM'), ('minutes', 'NOUN'), ('after', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('stopped', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('a', 'DET'), ('punctuality', 'NOUN'), ('not', 'PART'), ('very', 'ADV'), ('agreeable', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('their', 'PRON'), ('sisterinlaw', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('preceded', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('acquaintance', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('there', 'ADV'), ('hoping', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('delay', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('their', 'PRON'), ('part', 'NOUN'), ('that', 'PRON'), ('might', 'AUX'), ('inconvenience', 'VERB'), ('either', 'CCONJ'), ('herself', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('her', 'PRON'), ('coachman', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('events', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('evening', 'NOUN'), ('were', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('remarkable', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('party', 'NOUN'), ('like', 'ADP'), ('other', 'ADJ'), ('musical', 'ADJ'), ('parties', 'NOUN'), ('comprehended', 'VERB'), ('a', 'DET'), ('\n', 'SPACE'), ('great', 'ADJ'), ('many', 'ADJ'), ('people', 'NOUN'), ('who', 'PRON'), ('had', 'VERB'), ('real', 'ADJ'), ('taste', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('performance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('great', 'ADJ'), ('many', 'ADJ'), ('more', 'ADJ'), ('who', 'PRON'), ('had', 'VERB'), ('none', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('performers', 'NOUN'), ('\n', 'SPACE'), ('themselves', 'PRON'), ('were', 'AUX'), ('as', 'ADV'), ('usual', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('estimation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('immediate', 'ADJ'), ('friends', 'NOUN'), ('the', 'DET'), ('first', 'ADJ'), ('private', 'ADJ'), ('\n', 'SPACE'), ('performers', 'NOUN'), ('in', 'ADP'), ('England', 'PROPN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('neither', 'CCONJ'), ('musical', 'ADJ'), ('nor', 'CCONJ'), ('affecting', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('made', 'VERB'), ('no', 'DET'), ('scruple', 'NOUN'), ('of', 'ADP'), ('turning', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('grand', 'ADJ'), ('\n', 'SPACE'), ('pianoforte', 'NOUN'), ('whenever', 'SCONJ'), ('it', 'PRON'), ('suited', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('unrestrained', 'ADJ'), ('even', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('presence', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('harp', 'NOUN'), ('and', 'CCONJ'), ('violoncello', 'INTJ'), ('would', 'AUX'), ('fix', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('at', 'ADP'), ('pleasure', 'NOUN'), ('on', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('object', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('these', 'DET'), ('excursive', 'ADJ'), ('glances', 'NOUN'), ('she', 'PRON'), ('perceived', 'VERB'), ('among', 'ADP'), ('a', 'DET'), ('group', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('young', 'ADJ'), ('men', 'NOUN'), ('the', 'PRON'), ('very', 'ADV'), ('he', 'PRON'), ('who', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('them', 'PRON'), ('a', 'DET'), ('lecture', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('toothpickcases', 'NOUN'), ('at', 'ADP'), ('Grays', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('perceived', 'VERB'), ('him', 'PRON'), ('soon', 'ADV'), ('\n', 'SPACE'), ('afterwards', 'ADV'), ('looking', 'VERB'), ('at', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('speaking', 'VERB'), ('familiarly', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('had', 'AUX'), ('just', 'ADV'), ('determined', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('out', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('name', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('when', 'SCONJ'), ('they', 'PRON'), ('both', 'PRON'), ('came', 'VERB'), ('towards', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('introduced', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'ADP'), ('Mr', 'PROPN'), ('Robert', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('addressed', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('easy', 'ADJ'), ('civility', 'NOUN'), ('and', 'CCONJ'), ('twisted', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('head', 'NOUN'), ('into', 'ADP'), ('a', 'DET'), ('bow', 'NOUN'), ('which', 'PRON'), ('assured', 'VERB'), ('her', 'PRON'), ('as', 'ADV'), ('plainly', 'ADV'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('words', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('exactly', 'ADV'), ('the', 'DET'), ('coxcomb', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('heard', 'VERB'), ('him', 'PRON'), ('described', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('by', 'ADP'), ('Lucy', 'PROPN'), (' ', 'SPACE'), ('Happy', 'PROPN'), ('had', 'AUX'), ('\n', 'SPACE'), ('it', 'PRON'), ('been', 'AUX'), ('for', 'ADP'), ('her', 'PRON'), ('if', 'SCONJ'), ('her', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('Edward', 'PROPN'), ('had', 'AUX'), ('depended', 'VERB'), ('\n', 'SPACE'), ('less', 'ADJ'), ('on', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('merit', 'NOUN'), ('than', 'ADP'), ('on', 'ADP'), ('the', 'DET'), ('merit', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('nearest', 'ADJ'), ('\n', 'SPACE'), ('relations', 'NOUN'), (' ', 'SPACE'), ('For', 'ADP'), ('then', 'ADV'), ('his', 'PRON'), ('brothers', 'NOUN'), ('bow', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('finishing', 'VERB'), ('stroke', 'NOUN'), ('to', 'ADP'), ('what', 'PRON'), ('the', 'DET'), ('illhumour', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('begun', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('while', 'SCONJ'), ('she', 'PRON'), ('wondered', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('difference', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('young', 'ADJ'), ('men', 'NOUN'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('find', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('emptiness', 'NOUN'), ('of', 'ADP'), ('conceit', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('one', 'NOUN'), ('put', 'VERB'), ('her', 'PRON'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('charity', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('modesty', 'NOUN'), ('and', 'CCONJ'), ('worth', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('they', 'PRON'), ('WERE', 'AUX'), ('different', 'ADJ'), ('Robert', 'PROPN'), ('exclaimed', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('himself', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('quarter', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('hours', 'NOUN'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('talking', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('lamenting', 'VERB'), ('the', 'DET'), ('extreme', 'ADJ'), ('\n', 'SPACE'), ('GAUCHERIE', 'NOUN'), ('which', 'PRON'), ('he', 'PRON'), ('really', 'ADV'), ('believed', 'VERB'), ('kept', 'VERB'), ('him', 'PRON'), ('from', 'ADP'), ('mixing', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('proper', 'ADJ'), ('society', 'NOUN'), ('he', 'PRON'), ('candidly', 'ADV'), ('and', 'CCONJ'), ('generously', 'ADV'), ('attributed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('much', 'ADV'), ('less', 'ADJ'), ('to', 'ADP'), ('any', 'DET'), ('natural', 'ADJ'), ('deficiency', 'NOUN'), ('than', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('misfortune', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('private', 'ADJ'), ('education', 'NOUN'), ('while', 'SCONJ'), ('he', 'PRON'), ('himself', 'PRON'), ('though', 'ADV'), ('probably', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('particular', 'ADJ'), ('any', 'DET'), ('material', 'ADJ'), ('superiority', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('nature', 'NOUN'), ('merely', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('advantage', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('public', 'ADJ'), ('school', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('fitted', 'VERB'), ('to', 'PART'), ('mix', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('as', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('man', 'NOUN'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('soul', 'NOUN'), ('he', 'PRON'), ('added', 'VERB'), ('I', 'PRON'), ('believe', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('nothing', 'PRON'), ('more', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('I', 'PRON'), ('often', 'ADV'), ('tell', 'VERB'), ('my', 'PRON'), ('mother', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('grieving', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('Madam', 'PROPN'), ('I', 'PRON'), ('always', 'ADV'), ('say', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('make', 'VERB'), ('yourself', 'PRON'), ('easy', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('evil', 'NOUN'), ('is', 'AUX'), ('now', 'ADV'), ('irremediable', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('entirely', 'ADV'), ('your', 'PRON'), ('own', 'ADJ'), ('doing', 'VERB'), (' ', 'SPACE'), ('Why', 'SCONJ'), ('would', 'AUX'), ('\n', 'SPACE'), ('you', 'PRON'), ('be', 'AUX'), ('persuaded', 'VERB'), ('by', 'ADP'), ('my', 'PRON'), ('uncle', 'NOUN'), ('Sir', 'PROPN'), ('Robert', 'PROPN'), ('against', 'ADP'), ('your', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('judgment', 'NOUN'), ('to', 'PART'), ('place', 'VERB'), ('Edward', 'PROPN'), ('under', 'ADP'), ('private', 'ADJ'), ('tuition', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('critical', 'ADJ'), ('time', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('life', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('had', 'AUX'), ('only', 'ADV'), ('sent', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'ADP'), ('Westminster', 'PROPN'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('myself', 'PRON'), ('instead', 'ADV'), ('of', 'ADP'), ('sending', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Pratts', 'PROPN'), ('all', 'DET'), ('this', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('way', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('always', 'ADV'), ('consider', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('is', 'AUX'), ('perfectly', 'ADV'), ('convinced', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('error', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('oppose', 'VERB'), ('his', 'PRON'), ('opinion', 'NOUN'), ('because', 'SCONJ'), ('\n', 'SPACE'), ('whatever', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('her', 'PRON'), ('general', 'ADJ'), ('estimation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('public', 'ADJ'), ('school', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('\n', 'SPACE'), ('abode', 'NOUN'), ('in', 'ADP'), ('Mr', 'PROPN'), ('Pratts', 'PROPN'), ('family', 'NOUN'), ('with', 'ADP'), ('any', 'DET'), ('satisfaction', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('reside', 'VERB'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('I', 'PRON'), ('thinkwas', 'VERB'), ('his', 'PRON'), ('\n', 'SPACE'), ('next', 'ADJ'), ('observation', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('cottage', 'NOUN'), ('near', 'ADP'), ('Dawlish', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('set', 'VERB'), ('him', 'PRON'), ('right', 'ADV'), ('as', 'ADP'), ('to', 'ADP'), ('its', 'PRON'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('seemed', 'VERB'), ('rather', 'ADV'), ('surprising', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('that', 'SCONJ'), ('anybody', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('live', 'VERB'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('without', 'ADP'), ('living', 'VERB'), ('near', 'ADP'), ('Dawlish', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('bestowed', 'VERB'), ('his', 'PRON'), ('hearty', 'ADJ'), ('approbation', 'NOUN'), ('however', 'ADV'), ('on', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('species', 'NOUN'), ('of', 'ADP'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('part', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('excessively', 'ADV'), ('fond', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('cottage', 'NOUN'), ('there', 'PRON'), ('is', 'VERB'), ('always', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('comfort', 'NOUN'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('elegance', 'NOUN'), ('about', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('protest', 'VERB'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('any', 'DET'), ('money', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('spare', 'VERB'), ('I', 'PRON'), ('should', 'AUX'), ('buy', 'VERB'), ('a', 'DET'), ('little', 'ADJ'), ('land', 'NOUN'), ('and', 'CCONJ'), ('build', 'VERB'), ('one', 'NUM'), ('myself', 'PRON'), ('\n', 'SPACE'), ('within', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('distance', 'NOUN'), ('of', 'ADP'), ('London', 'PROPN'), ('where', 'SCONJ'), ('I', 'PRON'), ('might', 'AUX'), ('drive', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('down', 'ADP'), ('at', 'ADP'), ('any', 'DET'), ('time', 'NOUN'), ('and', 'CCONJ'), ('collect', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('about', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('be', 'AUX'), ('happy', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('advise', 'VERB'), ('every', 'DET'), ('body', 'NOUN'), ('who', 'PRON'), ('is', 'AUX'), ('going', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('build', 'VERB'), ('to', 'PART'), ('build', 'VERB'), ('a', 'DET'), ('cottage', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('friend', 'NOUN'), ('Lord', 'PROPN'), ('Courtland', 'PROPN'), ('\n', 'SPACE'), ('came', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('the', 'DET'), ('other', 'ADJ'), ('day', 'NOUN'), ('on', 'ADP'), ('purpose', 'NOUN'), ('to', 'PART'), ('ask', 'VERB'), ('my', 'PRON'), ('advice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('laid', 'VERB'), ('before', 'ADP'), ('me', 'PRON'), ('three', 'NUM'), ('different', 'ADJ'), ('plans', 'NOUN'), ('of', 'ADP'), ('Bonomis', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('decide', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('of', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('Courtland', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('I', 'PRON'), ('immediately', 'ADV'), ('throwing', 'VERB'), ('them', 'PRON'), ('all', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('do', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('adopt', 'VERB'), ('either', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('but', 'CCONJ'), ('by', 'ADP'), ('all', 'DET'), ('means', 'NOUN'), ('build', 'VERB'), ('a', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('fancy', 'ADJ'), ('will', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Some', 'DET'), ('people', 'NOUN'), ('imagine', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('accommodations', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('space', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('cottage', 'NOUN'), ('but', 'CCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('all', 'DET'), ('a', 'DET'), ('mistake', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('last', 'ADJ'), ('month', 'NOUN'), ('at', 'ADP'), ('my', 'PRON'), ('friend', 'NOUN'), ('Elliotts', 'PROPN'), ('near', 'ADP'), ('Dartford', 'PROPN'), ('\n', 'SPACE'), ('Lady', 'PROPN'), ('Elliott', 'PROPN'), ('wished', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('a', 'DET'), ('dance', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('how', 'SCONJ'), ('can', 'AUX'), ('it', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('done', 'VERB'), ('said', 'VERB'), ('she', 'PRON'), ('my', 'PRON'), ('dear', 'ADJ'), ('Ferrars', 'NOUN'), ('do', 'AUX'), ('tell', 'VERB'), ('me', 'PRON'), ('how', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('managed', 'VERB'), (' ', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('room', 'NOUN'), ('in', 'ADP'), ('this', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('will', 'AUX'), ('hold', 'VERB'), ('ten', 'NUM'), ('couple', 'NOUN'), ('and', 'CCONJ'), ('where', 'SCONJ'), ('can', 'AUX'), ('the', 'DET'), ('supper', 'NOUN'), ('be', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('immediately', 'ADV'), ('saw', 'VERB'), ('that', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('difficulty', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('I', 'PRON'), ('said', 'VERB'), ('My', 'PRON'), ('dear', 'ADJ'), ('Lady', 'PROPN'), ('Elliott', 'PROPN'), ('do', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('uneasy', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('dining', 'NOUN'), ('parlour', 'NOUN'), ('will', 'AUX'), ('admit', 'VERB'), ('eighteen', 'NUM'), ('couple', 'NOUN'), ('with', 'ADP'), ('ease', 'NOUN'), ('\n', 'SPACE'), ('cardtables', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('placed', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('the', 'DET'), ('library', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('open', 'ADJ'), ('for', 'ADP'), ('tea', 'NOUN'), ('and', 'CCONJ'), ('other', 'ADJ'), ('refreshments', 'NOUN'), ('and', 'CCONJ'), ('let', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('supper', 'NOUN'), ('be', 'AUX'), ('set', 'VERB'), ('out', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('saloon', 'ADJ'), (' ', 'SPACE'), ('Lady', 'PROPN'), ('Elliott', 'PROPN'), ('was', 'AUX'), ('delighted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('thought', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('measured', 'VERB'), ('the', 'DET'), ('diningroom', 'NOUN'), ('and', 'CCONJ'), ('found', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('hold', 'VERB'), ('exactly', 'ADV'), ('eighteen', 'NUM'), ('couple', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('affair', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('arranged', 'VERB'), ('precisely', 'ADV'), ('after', 'ADP'), ('my', 'PRON'), ('plan', 'NOUN'), (' ', 'SPACE'), ('So', 'SCONJ'), ('that', 'SCONJ'), ('in', 'ADP'), ('fact', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('see', 'VERB'), ('if', 'SCONJ'), ('people', 'NOUN'), ('do', 'VERB'), ('but', 'CCONJ'), ('know', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('set', 'VERB'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('every', 'DET'), ('comfort', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('enjoyed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('spacious', 'ADJ'), ('dwelling', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('agreed', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('all', 'PRON'), ('for', 'SCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('deserved', 'VERB'), ('the', 'DET'), ('compliment', 'NOUN'), ('of', 'ADP'), ('rational', 'ADJ'), ('opposition', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('more', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('music', 'NOUN'), ('than', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('eldest', 'ADJ'), ('sister', 'NOUN'), ('his', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('equally', 'ADV'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('fix', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('and', 'CCONJ'), ('a', 'DET'), ('thought', 'NOUN'), ('struck', 'VERB'), ('him', 'PRON'), ('during', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('he', 'PRON'), ('communicated', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('approbation', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('they', 'PRON'), ('got', 'VERB'), ('home', 'ADV'), (' ', 'SPACE'), ('The', 'DET'), ('consideration', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dennisons', 'PROPN'), ('\n', 'SPACE'), ('mistake', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('supposing', 'VERB'), ('his', 'PRON'), ('sisters', 'NOUN'), ('their', 'PRON'), ('guests', 'NOUN'), ('had', 'AUX'), ('suggested', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('propriety', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('really', 'ADV'), ('invited', 'VERB'), ('to', 'PART'), ('become', 'VERB'), ('such', 'ADJ'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('engagements', 'NOUN'), ('kept', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('expense', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('nothing', 'PRON'), ('the', 'DET'), ('inconvenience', 'NOUN'), ('not', 'PART'), ('more', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('altogether', 'ADV'), ('an', 'DET'), ('attention', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('delicacy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('conscience', 'NOUN'), ('pointed', 'VERB'), ('out', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('requisite', 'ADJ'), ('to', 'ADP'), ('its', 'PRON'), ('\n', 'SPACE'), ('complete', 'ADJ'), ('enfranchisement', 'NOUN'), ('from', 'ADP'), ('his', 'PRON'), ('promise', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('father', 'NOUN'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('was', 'AUX'), ('startled', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('proposal', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('how', 'SCONJ'), ('it', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('without', 'ADP'), ('affronting', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('for', 'ADP'), ('they', 'PRON'), ('spend', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('otherwise', 'ADV'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('exceedingly', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('I', 'PRON'), ('am', 'AUX'), ('always', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('pay', 'VERB'), ('them', 'PRON'), ('any', 'DET'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('as', 'ADP'), ('my', 'PRON'), ('taking', 'VERB'), ('them', 'PRON'), ('out', 'ADP'), ('this', 'DET'), ('evening', 'NOUN'), ('shews', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('visitors', 'NOUN'), (' ', 'SPACE'), ('How', 'SCONJ'), ('can', 'AUX'), ('I', 'PRON'), ('ask', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('away', 'ADV'), ('from', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('husband', 'NOUN'), ('but', 'CCONJ'), ('with', 'ADP'), ('great', 'ADJ'), ('humility', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('force', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('objection', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('spent', 'VERB'), ('a', 'DET'), ('week', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('this', 'DET'), ('manner', 'NOUN'), ('in', 'ADP'), ('Conduit', 'PROPN'), ('Street', 'PROPN'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('displeased', 'ADJ'), ('at', 'ADP'), ('their', 'PRON'), ('giving', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('number', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('days', 'NOUN'), ('to', 'ADP'), ('such', 'ADJ'), ('near', 'ADJ'), ('relations', 'NOUN'), ('\n\n', 'SPACE'), ('Fanny', 'PROPN'), ('paused', 'VERB'), ('a', 'DET'), ('moment', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('with', 'ADP'), ('fresh', 'ADJ'), ('vigor', 'NOUN'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('love', 'NOUN'), ('I', 'PRON'), ('would', 'AUX'), ('ask', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('if', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('settled', 'VERB'), ('within', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('ask', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('to', 'PART'), ('spend', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('with', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('They', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('behaved', 'VERB'), ('good', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('girls', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('attention', 'NOUN'), ('is', 'AUX'), ('due', 'ADJ'), ('to', 'ADP'), ('them', 'PRON'), ('as', 'SCONJ'), ('their', 'PRON'), ('uncle', 'NOUN'), ('did', 'VERB'), ('so', 'ADV'), ('very', 'ADV'), ('\n', 'SPACE'), ('well', 'ADV'), ('by', 'ADP'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('We', 'PRON'), ('can', 'AUX'), ('ask', 'VERB'), ('your', 'PRON'), ('sisters', 'NOUN'), ('some', 'DET'), ('other', 'ADJ'), ('year', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('but', 'CCONJ'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('may', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('any', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('like', 'VERB'), ('them', 'PRON'), ('indeed', 'ADV'), ('you', 'PRON'), ('DO', 'VERB'), ('like', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('already', 'ADV'), ('and', 'CCONJ'), ('so', 'ADV'), ('does', 'VERB'), ('my', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('such', 'ADJ'), ('favourites', 'NOUN'), ('with', 'ADP'), ('Harry', 'PROPN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('convinced', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('saw', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('inviting', 'VERB'), ('the', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('immediately', 'ADV'), ('and', 'CCONJ'), ('his', 'PRON'), ('conscience', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('pacified', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('resolution', 'NOUN'), ('of', 'ADP'), ('inviting', 'VERB'), ('his', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('another', 'DET'), ('year', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('however', 'ADV'), ('slyly', 'ADV'), ('suspecting', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('another', 'DET'), ('year', 'NOUN'), ('would', 'AUX'), ('make', 'VERB'), ('the', 'DET'), ('invitation', 'NOUN'), ('needless', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('bringing', 'VERB'), ('Elinor', 'PROPN'), ('to', 'ADP'), ('town', 'NOUN'), ('as', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('as', 'SCONJ'), ('THEIR', 'PRON'), ('visitor', 'NOUN'), ('\n\n', 'SPACE'), ('Fanny', 'PROPN'), ('rejoicing', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('escape', 'NOUN'), ('and', 'CCONJ'), ('proud', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('ready', 'ADJ'), ('\n', 'SPACE'), ('wit', 'NOUN'), ('that', 'PRON'), ('had', 'AUX'), ('procured', 'VERB'), ('it', 'PRON'), ('wrote', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('request', 'VERB'), ('her', 'PRON'), ('company', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('sisters', 'NOUN'), ('for', 'ADP'), ('some', 'DET'), ('days', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('could', 'AUX'), ('spare', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('Lucy', 'PROPN'), ('really', 'ADV'), ('and', 'CCONJ'), ('reasonably', 'ADV'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('seemed', 'VERB'), ('actually', 'ADV'), ('working', 'VERB'), ('for', 'SCONJ'), ('her', 'PRON'), ('herself', 'PRON'), ('\n', 'SPACE'), ('cherishing', 'VERB'), ('all', 'PRON'), ('her', 'PRON'), ('hopes', 'NOUN'), ('and', 'CCONJ'), ('promoting', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('views', 'NOUN'), ('\n', 'SPACE'), ('Such', 'DET'), ('an', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('with', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('his', 'PRON'), ('family', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('above', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('material', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('such', 'DET'), ('an', 'DET'), ('invitation', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('gratifying', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('feelings', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('advantage', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('too', 'ADV'), ('\n', 'SPACE'), ('gratefully', 'ADV'), ('acknowledged', 'VERB'), ('nor', 'CCONJ'), ('too', 'ADV'), ('speedily', 'ADV'), ('made', 'VERB'), ('use', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('visit', 'NOUN'), ('to', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('which', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('before', 'ADV'), ('had', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('precise', 'ADJ'), ('limits', 'NOUN'), ('was', 'AUX'), ('instantly', 'ADV'), ('discovered', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('always', 'ADV'), ('meant', 'VERB'), ('to', 'PART'), ('end', 'VERB'), ('in', 'ADP'), ('two', 'NUM'), ('days', 'NOUN'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('note', 'NOUN'), ('was', 'AUX'), ('shown', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('within', 'ADP'), ('ten', 'NUM'), ('\n', 'SPACE'), ('minutes', 'NOUN'), ('after', 'ADP'), ('its', 'PRON'), ('arrival', 'NOUN'), ('it', 'PRON'), ('gave', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('some', 'DET'), ('share', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('expectations', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('for', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('mark', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('uncommon', 'ADJ'), ('kindness', 'NOUN'), ('vouchsafed', 'VERB'), ('on', 'ADP'), ('so', 'ADV'), ('short', 'ADJ'), ('an', 'DET'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('to', 'PART'), ('declare', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('goodwill', 'NOUN'), ('towards', 'ADP'), ('her', 'PRON'), ('arose', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('something', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('merely', 'ADV'), ('malice', 'NOUN'), ('against', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('might', 'AUX'), ('be', 'AUX'), ('brought', 'VERB'), ('by', 'ADP'), ('time', 'NOUN'), ('and', 'CCONJ'), ('address', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('Lucy', 'PROPN'), ('wished', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('flattery', 'NOUN'), ('had', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('subdued', 'VERB'), ('the', 'DET'), ('pride', 'NOUN'), ('of', 'ADP'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('made', 'VERB'), ('an', 'DET'), ('entry', 'NOUN'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('close', 'ADJ'), ('heart', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('these', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('effects', 'NOUN'), ('that', 'PRON'), ('laid', 'VERB'), ('open', 'VERB'), ('the', 'DET'), ('probability', 'NOUN'), ('of', 'ADP'), ('greater', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('Steeles', 'PROPN'), ('removed', 'VERB'), ('to', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('and', 'CCONJ'), ('all', 'PRON'), ('\n', 'SPACE'), ('that', 'PRON'), ('reached', 'VERB'), ('Elinor', 'PROPN'), ('of', 'ADP'), ('their', 'PRON'), ('influence', 'NOUN'), ('there', 'ADV'), ('strengthened', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('expectation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('event', 'NOUN'), (' ', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('who', 'PRON'), ('called', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('them', 'PRON'), ('more', 'ADV'), ('than', 'SCONJ'), ('once', 'ADV'), ('brought', 'VERB'), ('home', 'ADV'), ('such', 'ADJ'), ('accounts', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('favour', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('in', 'ADV'), ('as', 'SCONJ'), ('must', 'AUX'), ('be', 'AUX'), ('universally', 'ADV'), ('striking', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('pleased', 'ADJ'), ('with', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('young', 'ADJ'), ('women', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('with', 'ADP'), ('them', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('each', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('a', 'DET'), ('needle', 'NOUN'), ('book', 'NOUN'), ('made', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('emigrant', 'NOUN'), ('\n', 'SPACE'), ('called', 'VERB'), ('Lucy', 'PROPN'), ('by', 'ADP'), ('her', 'PRON'), ('Christian', 'ADJ'), ('name', 'NOUN'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('ever', 'ADV'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('part', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('\n\n\n\n\n\n', 'SPACE'), ('At', 'ADP'), ('this', 'DET'), ('point', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('and', 'CCONJ'), ('second', 'ADJ'), ('edtions', 'NOUN'), ('Volume', 'PROPN'), ('II', 'PROPN'), ('ended', 'VERB'), ('\n\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('37', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('was', 'AUX'), ('so', 'ADV'), ('well', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('fortnight', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('felt', 'VERB'), ('it', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), ('necessary', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('up', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('time', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('contenting', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('\n', 'SPACE'), ('visiting', 'VERB'), ('her', 'PRON'), ('once', 'ADV'), ('or', 'CCONJ'), ('twice', 'ADV'), ('a', 'DET'), ('day', 'NOUN'), ('returned', 'VERB'), ('from', 'ADP'), ('that', 'DET'), ('period', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('home', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('habits', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('found', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('very', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('resume', 'VERB'), ('their', 'PRON'), ('former', 'ADJ'), ('share', 'NOUN'), ('\n\n', 'SPACE'), ('About', 'ADP'), ('the', 'DET'), ('third', 'ADJ'), ('or', 'CCONJ'), ('fourth', 'ADJ'), ('morning', 'NOUN'), ('after', 'SCONJ'), ('their', 'PRON'), ('\n', 'SPACE'), ('being', 'AUX'), ('thus', 'ADV'), ('resettled', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('returning', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('ordinary', 'ADJ'), ('visit', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('entered', 'VERB'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('where', 'SCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('sitting', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('herself', 'PRON'), ('with', 'ADP'), ('an', 'DET'), ('air', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('hurrying', 'NOUN'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('prepared', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('something', 'PRON'), ('wonderful', 'ADJ'), ('and', 'CCONJ'), ('giving', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('time', 'NOUN'), ('only', 'ADV'), ('to', 'PART'), ('form', 'VERB'), ('that', 'DET'), ('idea', 'NOUN'), ('began', 'VERB'), ('directly', 'ADV'), ('to', 'PART'), ('justify', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('by', 'ADP'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Lord', 'PROPN'), ('my', 'PRON'), ('dear', 'ADJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('have', 'AUX'), ('you', 'PRON'), ('heard', 'VERB'), ('the', 'DET'), ('news', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maam', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('is', 'AUX'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Something', 'PRON'), ('so', 'ADV'), ('strange', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('shall', 'AUX'), ('hear', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('I', 'PRON'), ('got', 'VERB'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Palmers', 'PROPN'), ('I', 'PRON'), ('found', 'VERB'), ('Charlotte', 'PROPN'), ('quite', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('fuss', 'NOUN'), ('about', 'ADP'), ('the', 'DET'), ('child', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('\n', 'SPACE'), ('illit', 'NOUN'), ('cried', 'VERB'), ('and', 'CCONJ'), ('fretted', 'VERB'), ('and', 'CCONJ'), ('was', 'AUX'), ('all', 'ADV'), ('over', 'ADP'), ('pimples', 'NOUN'), ('\n', 'SPACE'), ('So', 'ADV'), ('I', 'PRON'), ('looked', 'VERB'), ('at', 'ADP'), ('it', 'PRON'), ('directly', 'ADV'), ('and', 'CCONJ'), ('Lord', 'PROPN'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('says', 'VERB'), ('I', 'PRON'), ('it', 'PRON'), ('is', 'AUX'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('red', 'ADJ'), ('gum', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('nurse', 'NOUN'), ('said', 'VERB'), ('just', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Charlotte', 'PROPN'), ('she', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('so', 'ADV'), ('Mr', 'PROPN'), ('Donavan', 'PROPN'), ('was', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('and', 'CCONJ'), ('luckily', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('just', 'ADV'), ('come', 'VERB'), ('in', 'ADP'), ('from', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('so', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('stepped', 'VERB'), ('over', 'ADV'), ('directly', 'ADV'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'ADP'), ('ever', 'ADV'), ('he', 'PRON'), ('saw', 'VERB'), ('the', 'DET'), ('child', 'NOUN'), ('\n', 'SPACE'), ('be', 'AUX'), ('said', 'VERB'), ('just', 'ADV'), ('as', 'SCONJ'), ('we', 'PRON'), ('did', 'VERB'), ('that', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('red', 'ADJ'), ('gum', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('Charlotte', 'PROPN'), ('was', 'AUX'), ('easy', 'ADJ'), (' ', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('\n', 'SPACE'), ('just', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('away', 'ADV'), ('again', 'ADV'), ('it', 'PRON'), ('came', 'VERB'), ('into', 'ADP'), ('my', 'PRON'), ('head', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('how', 'SCONJ'), ('I', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('came', 'VERB'), ('into', 'ADP'), ('my', 'PRON'), ('head', 'NOUN'), ('to', 'PART'), ('ask', 'VERB'), ('him', 'PRON'), ('if', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('any', 'DET'), ('news', 'NOUN'), ('\n', 'SPACE'), ('So', 'ADV'), ('upon', 'SCONJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('smirked', 'VERB'), ('and', 'CCONJ'), ('simpered', 'VERB'), ('and', 'CCONJ'), ('looked', 'VERB'), ('grave', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('seemed', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('something', 'PRON'), ('or', 'CCONJ'), ('other', 'ADJ'), ('and', 'CCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('whisper', 'NOUN'), ('For', 'ADP'), ('fear', 'NOUN'), ('any', 'DET'), ('unpleasant', 'ADJ'), ('report', 'NOUN'), ('\n', 'SPACE'), ('should', 'AUX'), ('reach', 'VERB'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('under', 'ADP'), ('your', 'PRON'), ('care', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('indisposition', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('advisable', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('there', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('great', 'ADJ'), ('reason', 'NOUN'), ('for', 'ADP'), ('alarm', 'NOUN'), ('I', 'PRON'), ('hope', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('will', 'AUX'), ('do', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('is', 'AUX'), ('Fanny', 'PROPN'), ('ill', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('exactly', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('said', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), (' ', 'SPACE'), ('Lord', 'PROPN'), ('says', 'VERB'), ('I', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('ill', 'NOUN'), ('So', 'ADV'), ('then', 'ADV'), ('it', 'PRON'), ('all', 'PRON'), ('came', 'VERB'), ('out', 'ADP'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('long', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('short', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('by', 'ADP'), ('all', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('learn', 'VERB'), ('\n', 'SPACE'), ('seems', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('this', 'DET'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('the', 'DET'), ('very', 'ADV'), ('young', 'ADJ'), ('\n', 'SPACE'), ('man', 'NOUN'), ('I', 'PRON'), ('used', 'VERB'), ('to', 'PART'), ('joke', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('about', 'ADP'), ('but', 'CCONJ'), ('however', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('turns', 'VERB'), ('out', 'ADP'), ('I', 'PRON'), ('am', 'AUX'), ('monstrous', 'ADJ'), ('glad', 'ADJ'), ('there', 'PRON'), ('was', 'VERB'), ('never', 'ADV'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('Ferrars', 'PROPN'), ('it', 'PRON'), ('seems', 'VERB'), ('has', 'AUX'), ('been', 'AUX'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('above', 'ADP'), ('this', 'DET'), ('twelvemonth', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('cousin', 'NOUN'), ('LucyTheres', 'PROPN'), ('for', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('my', 'PRON'), ('dearAnd', 'ADV'), ('not', 'PART'), ('a', 'DET'), ('creature', 'NOUN'), ('knowing', 'VERB'), ('a', 'DET'), ('syllable', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('NancyCould', 'PROPN'), ('you', 'PRON'), ('have', 'AUX'), ('believed', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('great', 'ADJ'), ('wonder', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('liking', 'VERB'), ('one', 'NUM'), ('another', 'DET'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('matters', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('brought', 'VERB'), ('so', 'ADV'), ('forward', 'ADV'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('nobody', 'PRON'), ('suspect', 'VERB'), ('itTHAT', 'PROPN'), ('is', 'AUX'), ('strangeI', 'NOUN'), ('never', 'ADV'), ('happened', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('together', 'ADV'), ('or', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('found', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('out', 'ADP'), ('directly', 'ADV'), (' ', 'SPACE'), ('Well', 'INTJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('this', 'PRON'), ('was', 'AUX'), ('kept', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('secret', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('fear', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('neither', 'CCONJ'), ('she', 'PRON'), ('nor', 'CCONJ'), ('your', 'PRON'), ('\n', 'SPACE'), ('brother', 'NOUN'), ('or', 'CCONJ'), ('sister', 'NOUN'), ('suspected', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('this', 'DET'), ('very', 'ADJ'), ('morning', 'NOUN'), ('poor', 'ADJ'), ('Nancy', 'PROPN'), ('who', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('is', 'AUX'), ('a', 'DET'), ('\n', 'SPACE'), ('wellmeaning', 'VERB'), ('creature', 'NOUN'), ('but', 'CCONJ'), ('no', 'DET'), ('conjurer', 'NOUN'), ('popt', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('out', 'ADP'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('thinks', 'VERB'), ('she', 'PRON'), ('to', 'ADP'), ('herself', 'PRON'), ('they', 'PRON'), ('are', 'AUX'), ('all', 'ADV'), ('so', 'ADV'), ('fond', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('they', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('no', 'DET'), ('difficulty', 'NOUN'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('away', 'ADV'), ('she', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('alone', 'ADJ'), ('at', 'ADP'), ('her', 'PRON'), ('carpetwork', 'NOUN'), ('little', 'ADJ'), ('suspecting', 'NOUN'), ('what', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('\n', 'SPACE'), ('comefor', 'VERB'), ('she', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('been', 'AUX'), ('saying', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('brother', 'NOUN'), ('only', 'ADV'), ('five', 'NUM'), ('\n', 'SPACE'), ('minutes', 'NOUN'), ('before', 'ADP'), ('that', 'PRON'), ('she', 'PRON'), ('thought', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('match', 'NOUN'), ('between', 'ADP'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('some', 'DET'), ('Lords', 'PROPN'), ('daughter', 'NOUN'), ('or', 'CCONJ'), ('other', 'ADJ'), ('I', 'PRON'), ('forget', 'VERB'), ('who', 'PRON'), ('\n', 'SPACE'), ('So', 'ADV'), ('you', 'PRON'), ('may', 'AUX'), ('think', 'VERB'), ('what', 'PRON'), ('a', 'DET'), ('blow', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('all', 'PRON'), ('her', 'PRON'), ('vanity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pride', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('fell', 'VERB'), ('into', 'ADP'), ('violent', 'ADJ'), ('hysterics', 'NOUN'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('such', 'ADJ'), ('screams', 'NOUN'), ('as', 'SCONJ'), ('reached', 'VERB'), ('your', 'PRON'), ('brothers', 'NOUN'), ('ears', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('dressingroom', 'NOUN'), ('down', 'ADP'), ('stairs', 'NOUN'), ('\n', 'SPACE'), ('thinking', 'VERB'), ('about', 'ADP'), ('writing', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('steward', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('\n', 'SPACE'), ('So', 'ADV'), ('up', 'ADV'), ('he', 'PRON'), ('flew', 'VERB'), ('directly', 'ADV'), ('and', 'CCONJ'), ('a', 'DET'), ('terrible', 'ADJ'), ('scene', 'NOUN'), ('took', 'VERB'), ('place', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('come', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('by', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('little', 'ADJ'), ('dreaming', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('Poor', 'ADJ'), ('soul', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('pity', 'VERB'), ('HER', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('say', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('think', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('used', 'VERB'), ('very', 'ADV'), ('hardly', 'ADV'), ('for', 'SCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('scolded', 'VERB'), ('\n', 'SPACE'), ('like', 'ADP'), ('any', 'DET'), ('fury', 'NOUN'), ('and', 'CCONJ'), ('soon', 'ADV'), ('drove', 'VERB'), ('her', 'PRON'), ('into', 'ADP'), ('a', 'DET'), ('fainting', 'NOUN'), ('fit', 'NOUN'), ('\n', 'SPACE'), ('Nancy', 'PROPN'), ('she', 'PRON'), ('fell', 'VERB'), ('upon', 'SCONJ'), ('her', 'PRON'), ('knees', 'NOUN'), ('and', 'CCONJ'), ('cried', 'VERB'), ('bitterly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('your', 'PRON'), ('brother', 'NOUN'), ('he', 'PRON'), ('walked', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('said', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('to', 'PART'), ('do', 'VERB'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('declared', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('a', 'DET'), ('minute', 'NOUN'), ('longer', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('your', 'PRON'), ('brother', 'NOUN'), ('was', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('down', 'ADP'), ('upon', 'SCONJ'), ('HIS', 'PRON'), ('knees', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('persuade', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('let', 'VERB'), ('them', 'PRON'), ('stay', 'VERB'), ('till', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('packed', 'VERB'), ('\n', 'SPACE'), ('up', 'ADP'), ('their', 'PRON'), ('clothes', 'NOUN'), (' ', 'SPACE'), ('THEN', 'ADV'), ('she', 'PRON'), ('fell', 'VERB'), ('into', 'ADP'), ('hysterics', 'NOUN'), ('again', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('frightened', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('send', 'VERB'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Donavan', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Donavan', 'PROPN'), ('found', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('in', 'ADP'), ('all', 'DET'), ('this', 'DET'), ('uproar', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('carriage', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('ready', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('my', 'PRON'), ('poor', 'ADJ'), ('\n', 'SPACE'), ('cousins', 'NOUN'), ('away', 'ADV'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('just', 'ADV'), ('stepping', 'VERB'), ('in', 'ADP'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('came', 'VERB'), ('off', 'ADP'), ('poor', 'ADJ'), ('Lucy', 'PROPN'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('condition', 'NOUN'), ('he', 'PRON'), ('says', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('hardly', 'ADV'), ('walk', 'VERB'), ('and', 'CCONJ'), ('Nancy', 'PROPN'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('as', 'ADV'), ('bad', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('declare', 'VERB'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('patience', 'NOUN'), ('with', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('hope', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('match', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('what', 'PRON'), ('a', 'DET'), ('taking', 'VERB'), ('poor', 'ADJ'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('when', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('hears', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('have', 'VERB'), ('his', 'PRON'), ('love', 'NOUN'), ('used', 'VERB'), ('so', 'ADV'), ('scornfully', 'ADV'), ('for', 'SCONJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('say', 'VERB'), ('he', 'PRON'), ('is', 'AUX'), ('monstrous', 'ADJ'), ('fond', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('he', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('wonder', 'VERB'), ('if', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('\n', 'SPACE'), ('passionand', 'NOUN'), ('Mr', 'PROPN'), ('Donavan', 'PROPN'), ('thinks', 'VERB'), ('just', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('had', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('talk', 'NOUN'), ('about', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('best', 'ADJ'), ('of', 'ADP'), ('all', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('gone', 'VERB'), ('back', 'ADV'), ('again', 'ADV'), ('to', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('that', 'SCONJ'), ('he', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('within', 'ADP'), ('call', 'NOUN'), ('when', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('told', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('for', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('ever', 'ADV'), ('my', 'PRON'), ('cousins', 'NOUN'), ('left', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('sure', 'ADJ'), ('SHE', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('hysterics', 'NOUN'), ('too', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('she', 'PRON'), ('may', 'AUX'), ('for', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('care', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('pity', 'NOUN'), ('for', 'ADP'), ('\n', 'SPACE'), ('either', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('notion', 'NOUN'), ('of', 'ADP'), ('peoples', 'NOUN'), ('making', 'VERB'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('todo', 'NOUN'), ('about', 'ADP'), ('money', 'NOUN'), ('and', 'CCONJ'), ('greatness', 'NOUN'), (' ', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('reason', 'NOUN'), ('on', 'ADP'), ('earth', 'NOUN'), ('why', 'SCONJ'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('should', 'AUX'), ('not', 'PART'), ('marry', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('may', 'AUX'), ('afford', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('her', 'PRON'), ('son', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('Lucy', 'PROPN'), ('has', 'VERB'), ('next', 'ADJ'), ('to', 'ADP'), ('nothing', 'PRON'), ('herself', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('knows', 'VERB'), ('better', 'ADV'), ('than', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('how', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('the', 'DET'), ('most', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('if', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('would', 'AUX'), ('only', 'ADV'), ('\n', 'SPACE'), ('allow', 'VERB'), ('him', 'PRON'), ('five', 'NUM'), ('hundred', 'NUM'), ('ayear', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('make', 'VERB'), ('as', 'ADP'), ('good', 'ADJ'), ('\n', 'SPACE'), ('an', 'DET'), ('appearance', 'NOUN'), ('with', 'ADP'), ('it', 'PRON'), ('as', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('would', 'AUX'), ('with', 'ADP'), ('eight', 'NUM'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('how', 'SCONJ'), ('snug', 'ADJ'), ('they', 'PRON'), ('might', 'AUX'), ('live', 'VERB'), ('in', 'ADP'), ('such', 'DET'), ('another', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('yoursor', 'NOUN'), ('a', 'DET'), ('little', 'ADJ'), ('biggerwith', 'ADP'), ('two', 'NUM'), ('maids', 'NOUN'), ('and', 'CCONJ'), ('two', 'NUM'), ('men', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('I', 'PRON'), ('could', 'AUX'), ('help', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('a', 'DET'), ('housemaid', 'NOUN'), ('for', 'SCONJ'), ('my', 'PRON'), ('\n', 'SPACE'), ('Betty', 'PROPN'), ('has', 'VERB'), ('a', 'DET'), ('sister', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('place', 'NOUN'), ('that', 'PRON'), ('would', 'AUX'), ('fit', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('exactly', 'ADV'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('ceased', 'VERB'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('had', 'VERB'), ('\n', 'SPACE'), ('time', 'NOUN'), ('enough', 'ADJ'), ('to', 'PART'), ('collect', 'VERB'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('able', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('answer', 'NOUN'), ('and', 'CCONJ'), ('make', 'VERB'), ('such', 'ADJ'), ('observations', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('subject', 'NOUN'), ('might', 'AUX'), ('naturally', 'ADV'), ('be', 'AUX'), ('supposed', 'VERB'), ('to', 'PART'), ('produce', 'VERB'), ('\n', 'SPACE'), ('Happy', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('suspected', 'VERB'), ('of', 'ADP'), ('any', 'DET'), ('extraordinary', 'ADJ'), ('\n', 'SPACE'), ('interest', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('of', 'ADP'), ('late', 'ADJ'), ('\n', 'SPACE'), ('often', 'ADV'), ('hoped', 'VERB'), ('might', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('case', 'NOUN'), ('had', 'AUX'), ('ceased', 'VERB'), ('to', 'PART'), ('imagine', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('at', 'ADV'), ('all', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('happy', 'ADJ'), ('above', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('absence', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('felt', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('able', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('without', 'ADP'), ('embarrassment', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('\n', 'SPACE'), ('give', 'VERB'), ('her', 'PRON'), ('judgment', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('believed', 'VERB'), ('with', 'ADP'), ('impartiality', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('conduct', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('one', 'NUM'), ('concerned', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('hardly', 'ADV'), ('determine', 'VERB'), ('what', 'PRON'), ('her', 'PRON'), ('own', 'ADJ'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('its', 'PRON'), ('event', 'NOUN'), ('really', 'ADV'), ('was', 'AUX'), ('though', 'SCONJ'), ('she', 'PRON'), ('earnestly', 'ADV'), ('tried', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('drive', 'VERB'), ('away', 'ADV'), ('the', 'DET'), ('notion', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('possible', 'ADJ'), ('to', 'PART'), ('end', 'VERB'), ('\n', 'SPACE'), ('otherwise', 'ADV'), ('at', 'ADP'), ('last', 'ADJ'), ('than', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('marriage', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('What', 'PRON'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('would', 'AUX'), ('say', 'VERB'), ('and', 'CCONJ'), ('do', 'VERB'), ('though', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('nature', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('anxious', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('still', 'ADV'), ('more', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('how', 'SCONJ'), ('Edward', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('conduct', 'VERB'), ('himself', 'PRON'), (' ', 'SPACE'), ('For', 'ADP'), ('HIM', 'PROPN'), ('she', 'PRON'), ('felt', 'VERB'), ('much', 'ADJ'), ('compassion', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('very', 'ADV'), ('littleand', 'ADV'), ('it', 'PRON'), ('cost', 'VERB'), ('her', 'PRON'), ('some', 'DET'), ('pains', 'NOUN'), ('to', 'PART'), ('procure', 'VERB'), ('\n', 'SPACE'), ('that', 'PRON'), ('littlefor', 'VERB'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('none', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('could', 'AUX'), ('talk', 'VERB'), ('on', 'ADP'), ('no', 'DET'), ('other', 'ADJ'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('soon', 'ADV'), ('saw', 'VERB'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('preparing', 'VERB'), ('Marianne', 'PROPN'), ('for', 'ADP'), ('\n', 'SPACE'), ('its', 'PRON'), ('discussion', 'NOUN'), (' ', 'SPACE'), ('No', 'DET'), ('time', 'NOUN'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('lost', 'VERB'), ('in', 'ADP'), ('undeceiving', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('making', 'VERB'), ('her', 'PRON'), ('acquainted', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('real', 'ADJ'), ('truth', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('\n', 'SPACE'), ('endeavouring', 'VERB'), ('to', 'PART'), ('bring', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('it', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('by', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('betraying', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('any', 'DET'), ('uneasiness', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('any', 'DET'), ('resentment', 'NOUN'), ('against', 'ADP'), ('Edward', 'PROPN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('office', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('painful', 'ADJ'), ('oneShe', 'NOUN'), ('was', 'AUX'), ('going', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('remove', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('really', 'ADV'), ('believed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('her', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('chief', 'ADJ'), ('consolationto', 'NOUN'), ('give', 'VERB'), ('such', 'ADJ'), ('particulars', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('feared', 'VERB'), ('would', 'AUX'), ('ruin', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('good', 'ADJ'), ('opinionand', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('Marianne', 'PROPN'), ('by', 'ADP'), ('a', 'DET'), ('resemblance', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('situations', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('to', 'ADP'), ('HER', 'PRON'), ('fancy', 'NOUN'), ('would', 'AUX'), ('seem', 'VERB'), ('strong', 'ADJ'), ('feel', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('disappointment', 'NOUN'), ('over', 'ADV'), ('again', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('unwelcome', 'ADJ'), ('as', 'SCONJ'), ('such', 'DET'), ('a', 'DET'), ('task', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('it', 'PRON'), ('was', 'AUX'), ('necessary', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('hastened', 'VERB'), ('to', 'PART'), ('perform', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('wishing', 'VERB'), ('to', 'PART'), ('dwell', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('or', 'CCONJ'), ('to', 'PART'), ('represent', 'VERB'), ('herself', 'PRON'), ('as', 'ADP'), ('suffering', 'VERB'), ('much', 'ADV'), ('\n', 'SPACE'), ('any', 'PRON'), ('otherwise', 'ADV'), ('than', 'ADP'), ('as', 'ADP'), ('the', 'DET'), ('selfcommand', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('practised', 'VERB'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('her', 'PRON'), ('first', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('engagement', 'NOUN'), ('might', 'AUX'), ('\n', 'SPACE'), ('suggest', 'VERB'), ('a', 'DET'), ('hint', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('practicable', 'ADJ'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('Her', 'PRON'), ('narration', 'NOUN'), ('was', 'AUX'), ('clear', 'ADJ'), ('and', 'CCONJ'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('given', 'VERB'), ('without', 'ADP'), ('emotion', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('accompanied', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('violent', 'ADJ'), ('agitation', 'NOUN'), ('nor', 'CCONJ'), ('impetuous', 'ADJ'), ('griefTHAT', 'NOUN'), ('belonged', 'VERB'), ('\n', 'SPACE'), ('rather', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('hearer', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('listened', 'VERB'), ('with', 'ADP'), ('horror', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('cried', 'VERB'), ('excessively', 'ADV'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('comforter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('others', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('distresses', 'VERB'), ('no', 'PRON'), ('less', 'ADJ'), ('than', 'ADP'), ('in', 'ADP'), ('theirs', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('all', 'DET'), ('the', 'DET'), ('comfort', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('given', 'VERB'), ('by', 'ADP'), ('assurances', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('composure', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('very', 'ADV'), ('earnest', 'ADJ'), ('\n', 'SPACE'), ('vindication', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('from', 'ADP'), ('every', 'DET'), ('charge', 'NOUN'), ('but', 'CCONJ'), ('of', 'ADP'), ('imprudence', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('readily', 'ADV'), ('offered', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Marianne', 'PROPN'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('would', 'AUX'), ('give', 'VERB'), ('credit', 'NOUN'), ('to', 'ADP'), ('neither', 'DET'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('seemed', 'VERB'), ('a', 'DET'), ('second', 'ADJ'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('acknowledging', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('did', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('HAD', 'AUX'), ('loved', 'VERB'), ('him', 'PRON'), ('most', 'ADV'), ('sincerely', 'ADV'), ('\n', 'SPACE'), ('could', 'AUX'), ('she', 'PRON'), ('feel', 'VERB'), ('less', 'ADJ'), ('than', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('As', 'SCONJ'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('considered', 'VERB'), ('her', 'PRON'), ('so', 'ADV'), ('totally', 'ADV'), ('unamiable', 'ADJ'), ('so', 'ADV'), ('absolutely', 'ADV'), ('\n', 'SPACE'), ('incapable', 'ADJ'), ('of', 'ADP'), ('attaching', 'VERB'), ('a', 'DET'), ('sensible', 'ADJ'), ('man', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('be', 'AUX'), ('persuaded', 'VERB'), ('at', 'ADP'), ('first', 'ADV'), ('to', 'PART'), ('believe', 'VERB'), ('and', 'CCONJ'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('pardon', 'VERB'), ('any', 'DET'), ('former', 'ADJ'), ('affection', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('for', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('admit', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('left', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('that', 'PRON'), ('which', 'PRON'), ('only', 'ADV'), ('could', 'AUX'), ('convince', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('better', 'ADJ'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mankind', 'NOUN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('first', 'ADJ'), ('communication', 'NOUN'), ('had', 'AUX'), ('reached', 'VERB'), ('no', 'PRON'), ('farther', 'ADV'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('to', 'PART'), ('state', 'VERB'), ('the', 'DET'), ('fact', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('engagement', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('length', 'NOUN'), ('of', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'VERB'), ('existedMariannes', 'NOUN'), ('feelings', 'NOUN'), ('had', 'AUX'), ('then', 'ADV'), ('broken', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('regularity', 'NOUN'), ('of', 'ADP'), ('detail', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('time', 'NOUN'), ('all', 'PRON'), ('that', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('was', 'AUX'), ('to', 'PART'), ('soothe', 'VERB'), ('her', 'PRON'), ('distress', 'NOUN'), ('\n', 'SPACE'), ('lessen', 'VERB'), ('her', 'PRON'), ('alarms', 'NOUN'), ('and', 'CCONJ'), ('combat', 'VERB'), ('her', 'PRON'), ('resentment', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('first', 'ADJ'), ('\n', 'SPACE'), ('question', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), ('which', 'PRON'), ('led', 'VERB'), ('to', 'ADP'), ('farther', 'ADJ'), ('particulars', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('long', 'ADV'), ('has', 'AUX'), ('this', 'PRON'), ('been', 'AUX'), ('known', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('Elinor', 'PROPN'), ('has', 'AUX'), ('\n', 'SPACE'), ('he', 'PRON'), ('written', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('known', 'VERB'), ('it', 'PRON'), ('these', 'DET'), ('four', 'NUM'), ('months', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('first', 'ADV'), ('came', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('Park', 'PROPN'), ('last', 'ADJ'), ('November', 'PROPN'), ('she', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('confidence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('engagement', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('these', 'DET'), ('words', 'NOUN'), ('Mariannes', 'PROPN'), ('eyes', 'NOUN'), ('expressed', 'VERB'), ('the', 'DET'), ('astonishment', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('her', 'PRON'), ('lips', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('utter', 'VERB'), (' ', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('pause', 'NOUN'), ('of', 'ADP'), ('wonder', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('exclaimed', 'VERB'), ('\n\n', 'SPACE'), ('Four', 'NUM'), ('monthsHave', 'NOUN'), ('you', 'PRON'), ('known', 'VERB'), ('of', 'ADP'), ('this', 'DET'), ('four', 'NUM'), ('months', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('confirmed', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Whatwhile', 'PROPN'), ('attending', 'VERB'), ('me', 'PRON'), ('in', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('misery', 'NOUN'), ('has', 'VERB'), ('this', 'PRON'), ('\n', 'SPACE'), ('been', 'AUX'), ('on', 'ADP'), ('your', 'PRON'), ('heartAnd', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('reproached', 'VERB'), ('you', 'PRON'), ('for', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('fit', 'ADJ'), ('that', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('then', 'ADV'), ('know', 'VERB'), ('how', 'SCONJ'), ('much', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('reverse', 'NOUN'), ('\n\n', 'SPACE'), ('Four', 'NUM'), ('monthscried', 'VERB'), ('Marianne', 'PROPN'), ('againSo', 'PROPN'), ('calm', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('cheerfulhow', 'VERB'), ('have', 'AUX'), ('you', 'PRON'), ('been', 'AUX'), ('supported', 'VERB'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('feeling', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('doing', 'VERB'), ('my', 'PRON'), ('dutyMy', 'PROPN'), ('promise', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('Lucy', 'PROPN'), ('obliged', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('secret', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('owed', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('avoid', 'VERB'), ('giving', 'VERB'), ('any', 'DET'), ('hint', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('truth', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('owed', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('family', 'NOUN'), ('and', 'CCONJ'), ('friends', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('create', 'VERB'), ('in', 'ADP'), ('them', 'PRON'), ('a', 'DET'), ('solicitude', 'NOUN'), ('about', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('which', 'PRON'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('satisfy', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('seemed', 'VERB'), ('much', 'ADV'), ('struck', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('very', 'ADV'), ('often', 'ADV'), ('wished', 'VERB'), ('to', 'PART'), ('undeceive', 'VERB'), ('yourself', 'PRON'), ('and', 'CCONJ'), ('my', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('added', 'VERB'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('once', 'ADV'), ('or', 'CCONJ'), ('twice', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('attempted', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('without', 'ADP'), ('betraying', 'VERB'), ('my', 'PRON'), ('trust', 'NOUN'), ('I', 'PRON'), ('never', 'ADV'), ('could', 'AUX'), ('have', 'AUX'), ('convinced', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Four', 'NUM'), ('monthsand', 'NOUN'), ('yet', 'ADV'), ('you', 'PRON'), ('loved', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('But', 'CCONJ'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('love', 'VERB'), ('only', 'ADJ'), ('himand', 'NOUN'), ('while', 'SCONJ'), ('the', 'DET'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('others', 'NOUN'), ('was', 'AUX'), ('dear', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('I', 'PRON'), ('was', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('spare', 'VERB'), ('them', 'PRON'), ('from', 'ADP'), ('knowing', 'VERB'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('much', 'ADV'), ('I', 'PRON'), ('felt', 'VERB'), (' ', 'SPACE'), ('Now', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('think', 'VERB'), ('and', 'CCONJ'), ('speak', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('\n', 'SPACE'), ('little', 'ADJ'), ('emotion', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('you', 'PRON'), ('suffer', 'VERB'), ('on', 'ADP'), ('my', 'PRON'), ('account', 'NOUN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), ('suffer', 'VERB'), ('materially', 'ADV'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('many', 'ADJ'), ('things', 'NOUN'), ('to', 'PART'), ('support', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('conscious', 'ADJ'), ('of', 'ADP'), ('having', 'AUX'), ('\n', 'SPACE'), ('provoked', 'VERB'), ('the', 'DET'), ('disappointment', 'NOUN'), ('by', 'ADP'), ('any', 'DET'), ('imprudence', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('borne', 'VERB'), ('it', 'PRON'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('without', 'ADP'), ('spreading', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('farther', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('acquit', 'VERB'), ('Edward', 'PROPN'), ('of', 'ADP'), ('essential', 'ADJ'), ('misconduct', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('him', 'PRON'), ('very', 'ADV'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('sure', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('always', 'ADV'), ('\n', 'SPACE'), ('doing', 'VERB'), ('his', 'PRON'), ('duty', 'NOUN'), ('that', 'PRON'), ('though', 'SCONJ'), ('now', 'ADV'), ('he', 'PRON'), ('may', 'AUX'), ('harbour', 'VERB'), ('some', 'DET'), ('regret', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('he', 'PRON'), ('must', 'AUX'), ('become', 'VERB'), ('so', 'ADV'), (' ', 'SPACE'), ('Lucy', 'PROPN'), ('does', 'AUX'), ('not', 'PART'), ('want', 'VERB'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('foundation', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('every', 'DET'), ('thing', 'NOUN'), ('good', 'ADJ'), ('may', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('builtAnd', 'ADP'), ('after', 'ADP'), ('all', 'ADV'), ('Marianne', 'PROPN'), ('after', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('bewitching', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('single', 'ADJ'), ('and', 'CCONJ'), ('constant', 'ADJ'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('all', 'PRON'), ('that', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('said', 'VERB'), ('of', 'ADP'), ('ones', 'NOUN'), ('happiness', 'NOUN'), ('depending', 'VERB'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('on', 'ADP'), ('any', 'DET'), ('particular', 'ADJ'), ('person', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('meantit', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('fitit', 'NOUN'), ('is', 'AUX'), ('not', 'PART'), ('possible', 'ADJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('so', 'ADV'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('will', 'AUX'), ('marry', 'VERB'), ('Lucy', 'PROPN'), ('he', 'PRON'), ('will', 'AUX'), ('marry', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('superior', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('person', 'NOUN'), ('and', 'CCONJ'), ('understanding', 'NOUN'), ('to', 'AUX'), ('half', 'DET'), ('her', 'PRON'), ('sex', 'NOUN'), ('and', 'CCONJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('habit', 'NOUN'), ('will', 'AUX'), ('teach', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('forget', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('ever', 'ADV'), ('thought', 'VERB'), ('\n', 'SPACE'), ('another', 'DET'), ('superior', 'ADJ'), ('to', 'ADP'), ('HER', 'PRON'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('such', 'ADJ'), ('is', 'AUX'), ('your', 'PRON'), ('way', 'NOUN'), ('of', 'ADP'), ('thinking', 'NOUN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('is', 'AUX'), ('most', 'ADV'), ('valued', 'VERB'), ('is', 'AUX'), ('so', 'ADV'), ('easily', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('made', 'VERB'), ('up', 'ADP'), ('by', 'ADP'), ('something', 'PRON'), ('else', 'ADV'), ('your', 'PRON'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('your', 'PRON'), ('selfcommand', 'NOUN'), ('are', 'AUX'), ('perhaps', 'ADV'), ('a', 'DET'), ('little', 'ADJ'), ('less', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('wondered', 'VERB'), ('atThey', 'PRON'), ('are', 'AUX'), ('brought', 'VERB'), ('more', 'ADV'), ('within', 'ADP'), ('my', 'PRON'), ('comprehension', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('understand', 'VERB'), ('youYou', 'PROPN'), ('do', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('ever', 'ADV'), ('\n', 'SPACE'), ('felt', 'VERB'), ('muchFor', 'PROPN'), ('four', 'NUM'), ('months', 'NOUN'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('\n', 'SPACE'), ('hanging', 'VERB'), ('on', 'ADP'), ('my', 'PRON'), ('mind', 'NOUN'), ('without', 'ADP'), ('being', 'AUX'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('to', 'ADP'), ('a', 'DET'), ('single', 'ADJ'), ('creature', 'NOUN'), ('knowing', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('make', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('and', 'CCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('most', 'ADV'), ('unhappy', 'ADJ'), ('whenever', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('explained', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('you', 'PRON'), ('yet', 'ADV'), ('unable', 'ADJ'), ('to', 'PART'), ('prepare', 'VERB'), ('you', 'PRON'), ('for', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('told', 'VERB'), ('meit', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('manner', 'NOUN'), ('forced', 'VERB'), ('on', 'ADP'), ('me', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('very', 'ADJ'), ('person', 'NOUN'), ('herself', 'PRON'), ('whose', 'DET'), ('prior', 'ADJ'), ('engagement', 'NOUN'), ('ruined', 'VERB'), ('all', 'DET'), ('\n', 'SPACE'), ('my', 'PRON'), ('prospects', 'NOUN'), ('and', 'CCONJ'), ('told', 'VERB'), ('me', 'PRON'), ('as', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('with', 'ADP'), ('triumph', 'NOUN'), ('\n', 'SPACE'), ('This', 'DET'), ('persons', 'NOUN'), ('suspicions', 'NOUN'), ('therefore', 'ADV'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('to', 'PART'), ('oppose', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('endeavouring', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('indifferent', 'ADJ'), ('where', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('most', 'ADV'), ('\n', 'SPACE'), ('deeply', 'ADV'), ('interestedand', 'VERB'), ('it', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('only', 'ADV'), ('onceI', 'NOUN'), ('have', 'AUX'), ('\n', 'SPACE'), ('had', 'VERB'), ('her', 'PRON'), ('hopes', 'NOUN'), ('and', 'CCONJ'), ('exultation', 'NOUN'), ('to', 'PART'), ('listen', 'VERB'), ('to', 'ADP'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('known', 'VERB'), ('myself', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('divided', 'VERB'), ('from', 'ADP'), ('Edward', 'PROPN'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('hearing', 'VERB'), ('one', 'NUM'), ('circumstance', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('me', 'PRON'), ('less', 'ADJ'), ('\n', 'SPACE'), ('desire', 'NOUN'), ('the', 'DET'), ('connectionNothing', 'NOUN'), ('has', 'AUX'), ('proved', 'VERB'), ('him', 'PRON'), ('unworthy', 'ADJ'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('has', 'VERB'), ('anything', 'PRON'), ('declared', 'VERB'), ('him', 'PRON'), ('indifferent', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('to', 'PART'), ('contend', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('unkindness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('insolence', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('have', 'AUX'), ('suffered', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('punishment', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('attachment', 'NOUN'), ('without', 'ADP'), ('enjoying', 'VERB'), ('its', 'PRON'), ('advantages', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('all', 'DET'), ('this', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('going', 'VERB'), ('on', 'ADP'), ('at', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('when', 'SCONJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('know', 'VERB'), ('too', 'ADV'), ('well', 'ADV'), ('it', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('my', 'PRON'), ('only', 'ADJ'), ('unhappiness', 'NOUN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('can', 'AUX'), ('think', 'VERB'), ('me', 'PRON'), ('capable', 'ADJ'), ('of', 'ADP'), ('ever', 'ADV'), ('feelingsurely', 'ADV'), ('you', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('suffered', 'VERB'), ('NOW', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mind', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('brought', 'VERB'), ('myself', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('consider', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('the', 'DET'), ('consolation', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('willing', 'ADJ'), ('to', 'PART'), ('admit', 'VERB'), ('have', 'AUX'), ('been', 'AUX'), ('the', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('constant', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('painful', 'ADJ'), ('exertionthey', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('spring', 'VERB'), ('up', 'ADP'), ('of', 'ADP'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('occur', 'VERB'), ('to', 'PART'), ('relieve', 'VERB'), ('my', 'PRON'), ('spirits', 'NOUN'), ('at', 'ADP'), ('first', 'ADJ'), ('\n', 'SPACE'), ('No', 'DET'), ('MarianneTHEN', 'NOUN'), ('if', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('bound', 'VERB'), ('to', 'PART'), ('silence', 'VERB'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('nothing', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('kept', 'VERB'), ('me', 'PRON'), ('entirelynot', 'ADV'), ('even', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('owed', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('dearest', 'NOUN'), ('friendsfrom', 'ADP'), ('openly', 'ADV'), ('shewing', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('VERY', 'ADV'), ('unhappy', 'ADJ'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('quite', 'ADV'), ('subdued', 'ADJ'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('Elinor', 'PROPN'), ('she', 'PRON'), ('cried', 'VERB'), ('you', 'PRON'), ('have', 'AUX'), ('made', 'VERB'), ('me', 'PRON'), ('hate', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('for', 'ADP'), ('everHow', 'NOUN'), ('barbarous', 'ADJ'), ('have', 'AUX'), ('I', 'PRON'), ('been', 'AUX'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('who', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('my', 'PRON'), ('only', 'ADJ'), ('comfort', 'NOUN'), ('who', 'PRON'), ('have', 'AUX'), ('borne', 'VERB'), ('with', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('misery', 'NOUN'), ('who', 'PRON'), ('have', 'AUX'), ('seemed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('only', 'ADV'), ('suffering', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('meIs', 'NOUN'), ('this', 'PRON'), ('my', 'PRON'), ('gratitudeIs', 'PROPN'), ('this', 'DET'), ('the', 'DET'), ('only', 'ADJ'), ('return', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('make', 'VERB'), ('youBecause', 'PROPN'), ('your', 'PRON'), ('merit', 'NOUN'), ('cries', 'VERB'), ('out', 'ADP'), ('upon', 'SCONJ'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('trying', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('tenderest', 'ADJ'), ('caresses', 'NOUN'), ('followed', 'VERB'), ('this', 'DET'), ('confession', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('frame', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('in', 'ADP'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('difficulty', 'NOUN'), ('in', 'ADP'), ('obtaining', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('whatever', 'DET'), ('promise', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('required', 'VERB'), ('and', 'CCONJ'), ('at', 'ADP'), ('her', 'PRON'), ('request', 'NOUN'), ('Marianne', 'PROPN'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('never', 'ADV'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('to', 'ADP'), ('any', 'DET'), ('one', 'NUM'), ('with', 'ADP'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('appearance', 'NOUN'), ('of', 'ADP'), ('bitternessto', 'NOUN'), ('meet', 'VERB'), ('Lucy', 'PROPN'), ('without', 'ADP'), ('betraying', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('smallest', 'ADJ'), ('increase', 'NOUN'), ('of', 'ADP'), ('dislike', 'NOUN'), ('to', 'PART'), ('herand', 'VERB'), ('even', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('himself', 'PRON'), ('if', 'SCONJ'), ('chance', 'NOUN'), ('should', 'AUX'), ('bring', 'VERB'), ('them', 'PRON'), ('together', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('diminution', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('cordiality', 'NOUN'), ('\n', 'SPACE'), ('These', 'PRON'), ('were', 'AUX'), ('great', 'ADJ'), ('concessionsbut', 'NOUN'), ('where', 'SCONJ'), ('Marianne', 'PROPN'), ('felt', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('injured', 'VERB'), ('no', 'DET'), ('reparation', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('her', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('performed', 'VERB'), ('her', 'PRON'), ('promise', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('discreet', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('admirationShe', 'PRON'), ('attended', 'VERB'), ('to', 'ADP'), ('all', 'PRON'), ('that', 'PRON'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('had', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('upon', 'SCONJ'), ('the', 'DET'), ('subject', 'NOUN'), ('with', 'ADP'), ('an', 'DET'), ('unchanging', 'ADJ'), ('complexion', 'NOUN'), ('\n', 'SPACE'), ('dissented', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('nothing', 'PRON'), ('and', 'CCONJ'), ('was', 'AUX'), ('heard', 'VERB'), ('three', 'NUM'), ('\n', 'SPACE'), ('times', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('Yes', 'INTJ'), ('maamShe', 'PRON'), ('listened', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('praise', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('with', 'ADP'), ('only', 'ADV'), ('moving', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('chair', 'NOUN'), ('to', 'ADP'), ('another', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('talked', 'VERB'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('cost', 'VERB'), ('her', 'PRON'), ('only', 'ADV'), ('a', 'DET'), ('spasm', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('throatSuch', 'ADJ'), ('advances', 'VERB'), ('\n', 'SPACE'), ('towards', 'ADP'), ('heroism', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('made', 'VERB'), ('Elinor', 'PROPN'), ('feel', 'VERB'), ('equal', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('herself', 'PRON'), ('\n\n', 'SPACE'), ('The', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('brought', 'VERB'), ('a', 'DET'), ('farther', 'ADJ'), ('trial', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('visit', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('brother', 'NOUN'), ('who', 'PRON'), ('came', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('serious', 'ADJ'), ('\n', 'SPACE'), ('aspect', 'NOUN'), ('to', 'PART'), ('talk', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('dreadful', 'ADJ'), ('affair', 'NOUN'), ('and', 'CCONJ'), ('bring', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('news', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('I', 'PRON'), ('suppose', 'VERB'), ('said', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('great', 'ADJ'), ('solemnity', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('seated', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('shocking', 'ADJ'), ('discovery', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('took', 'VERB'), ('place', 'NOUN'), ('under', 'ADP'), ('our', 'PRON'), ('roof', 'NOUN'), ('yesterday', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('all', 'PRON'), ('looked', 'VERB'), ('their', 'PRON'), ('assent', 'NOUN'), ('it', 'PRON'), ('seemed', 'VERB'), ('too', 'ADV'), ('awful', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('moment', 'NOUN'), ('for', 'SCONJ'), ('speech', 'NOUN'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('he', 'PRON'), ('continued', 'VERB'), ('has', 'AUX'), ('suffered', 'VERB'), ('dreadfully', 'ADV'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('tooin', 'NOUN'), ('short', 'ADJ'), ('it', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('scene', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('\n', 'SPACE'), ('complicated', 'ADJ'), ('distressbut', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('hope', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('storm', 'NOUN'), ('may', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('weathered', 'VERB'), ('without', 'ADP'), ('our', 'PRON'), ('being', 'AUX'), ('any', 'PRON'), ('of', 'ADP'), ('us', 'PRON'), ('quite', 'ADV'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('Poor', 'ADJ'), ('Fanny', 'PROPN'), ('she', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('hysterics', 'NOUN'), ('all', 'DET'), ('yesterday', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('alarm', 'VERB'), ('you', 'PRON'), ('too', 'ADV'), ('much', 'ADV'), (' ', 'SPACE'), ('Donavan', 'PROPN'), ('says', 'VERB'), ('there', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('nothing', 'PRON'), ('materially', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('apprehended', 'VERB'), ('her', 'PRON'), ('constitution', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('a', 'DET'), ('good', 'ADJ'), ('one', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('resolution', 'NOUN'), ('equal', 'ADJ'), ('to', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('has', 'AUX'), ('borne', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('fortitude', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('angel', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('says', 'VERB'), ('she', 'PRON'), ('never', 'ADV'), ('shall', 'AUX'), ('think', 'VERB'), ('well', 'ADV'), ('of', 'ADP'), ('anybody', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('one', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('wonder', 'VERB'), ('at', 'ADP'), ('it', 'PRON'), ('after', 'ADP'), ('being', 'AUX'), ('so', 'ADV'), ('deceived', 'VERB'), ('\n', 'SPACE'), ('meeting', 'NOUN'), ('with', 'ADP'), ('such', 'ADJ'), ('ingratitude', 'NOUN'), ('where', 'SCONJ'), ('so', 'ADV'), ('much', 'ADJ'), ('kindness', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('shewn', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('confidence', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('placed', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('quite', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('benevolence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('asked', 'VERB'), ('these', 'DET'), ('young', 'ADJ'), ('women', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('house', 'NOUN'), ('merely', 'ADV'), ('because', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('thought', 'VERB'), ('they', 'PRON'), ('deserved', 'VERB'), ('some', 'DET'), ('attention', 'NOUN'), ('were', 'AUX'), ('harmless', 'ADJ'), ('\n', 'SPACE'), ('wellbehaved', 'VERB'), ('girls', 'NOUN'), ('and', 'CCONJ'), ('would', 'AUX'), ('be', 'AUX'), ('pleasant', 'ADJ'), ('companions', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('otherwise', 'ADV'), ('we', 'PRON'), ('both', 'PRON'), ('wished', 'VERB'), ('very', 'ADV'), ('much', 'ADV'), ('to', 'PART'), ('have', 'AUX'), ('invited', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('with', 'ADP'), ('us', 'PRON'), ('while', 'SCONJ'), ('your', 'PRON'), ('kind', 'ADJ'), ('friend', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('attending', 'VERB'), ('her', 'PRON'), ('daughter', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('now', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('rewarded', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('with', 'SCONJ'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('says', 'VERB'), ('poor', 'ADJ'), ('Fanny', 'PROPN'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('affectionate', 'ADJ'), ('way', 'NOUN'), ('that', 'PRON'), ('we', 'PRON'), ('had', 'AUX'), ('asked', 'VERB'), ('your', 'PRON'), ('sisters', 'NOUN'), ('instead', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('he', 'PRON'), ('stopped', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('thanked', 'VERB'), ('which', 'PRON'), ('being', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('went', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('poor', 'ADJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('suffered', 'VERB'), ('when', 'SCONJ'), ('first', 'ADJ'), ('Fanny', 'PROPN'), ('\n', 'SPACE'), ('broke', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('described', 'VERB'), (' ', 'SPACE'), ('While', 'SCONJ'), ('she', 'PRON'), ('with', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('truest', 'ADJ'), ('affection', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('planning', 'VERB'), ('a', 'DET'), ('most', 'ADV'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('connection', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('was', 'AUX'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('all', 'DET'), ('the', 'DET'), ('time', 'NOUN'), ('secretly', 'ADV'), ('engaged', 'VERB'), ('to', 'ADP'), ('another', 'DET'), ('personsuch', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('suspicion', 'NOUN'), ('could', 'AUX'), ('never', 'ADV'), ('have', 'AUX'), ('entered', 'VERB'), ('her', 'PRON'), ('head', 'NOUN'), (' ', 'SPACE'), ('If', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('suspected', 'VERB'), ('ANY', 'DET'), ('prepossession', 'NOUN'), ('elsewhere', 'ADV'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('THAT', 'DET'), ('quarter', 'NOUN'), (' ', 'SPACE'), ('THERE', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('I', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('thought', 'VERB'), ('myself', 'PRON'), ('safe', 'ADJ'), ('She', 'PRON'), ('was', 'AUX'), ('quite', 'ADV'), ('in', 'ADP'), ('an', 'DET'), ('agony', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('consulted', 'VERB'), ('together', 'ADV'), ('however', 'ADV'), ('as', 'ADP'), ('to', 'ADP'), ('what', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('she', 'PRON'), ('determined', 'VERB'), ('to', 'PART'), ('send', 'VERB'), ('for', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('came', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('relate', 'VERB'), ('what', 'PRON'), ('ensued', 'VERB'), ('\n', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('could', 'AUX'), ('say', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('him', 'PRON'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('engagement', 'NOUN'), ('assisted', 'VERB'), ('too', 'ADV'), ('as', 'SCONJ'), ('you', 'PRON'), ('may', 'AUX'), ('well', 'ADV'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('my', 'PRON'), ('arguments', 'NOUN'), ('and', 'CCONJ'), ('Fannys', 'PROPN'), ('entreaties', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('\n', 'SPACE'), ('no', 'DET'), ('avail', 'NOUN'), (' ', 'SPACE'), ('Duty', 'PROPN'), ('affection', 'NOUN'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('disregarded', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('thought', 'VERB'), ('Edward', 'PROPN'), ('so', 'ADV'), ('stubborn', 'ADJ'), ('so', 'ADV'), ('unfeeling', 'VERB'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('His', 'PRON'), ('mother', 'NOUN'), ('explained', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('her', 'PRON'), ('liberal', 'ADJ'), ('designs', 'NOUN'), ('in', 'ADP'), ('case', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('marrying', 'VERB'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('told', 'VERB'), ('him', 'PRON'), ('she', 'PRON'), ('would', 'AUX'), ('settle', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('him', 'PRON'), ('the', 'DET'), ('Norfolk', 'PROPN'), ('estate', 'NOUN'), ('which', 'PRON'), ('clear', 'ADJ'), ('of', 'ADP'), ('landtax', 'NOUN'), ('brings', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('good', 'ADJ'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('offered', 'VERB'), ('even', 'ADV'), ('when', 'SCONJ'), ('matters', 'NOUN'), ('\n', 'SPACE'), ('grew', 'VERB'), ('desperate', 'ADJ'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('twelve', 'NUM'), ('hundred', 'NUM'), ('and', 'CCONJ'), ('in', 'ADP'), ('opposition', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('this', 'PRON'), ('if', 'SCONJ'), ('he', 'PRON'), ('still', 'ADV'), ('persisted', 'VERB'), ('in', 'ADP'), ('this', 'DET'), ('low', 'ADJ'), ('connection', 'NOUN'), ('\n', 'SPACE'), ('represented', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('the', 'DET'), ('certain', 'ADJ'), ('penury', 'NOUN'), ('that', 'PRON'), ('must', 'AUX'), ('attend', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('match', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('own', 'ADJ'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('she', 'PRON'), ('protested', 'VERB'), ('\n', 'SPACE'), ('should', 'AUX'), ('be', 'AUX'), ('his', 'PRON'), ('all', 'PRON'), ('she', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('see', 'VERB'), ('him', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('so', 'ADV'), ('far', 'ADV'), ('\n', 'SPACE'), ('would', 'AUX'), ('she', 'PRON'), ('be', 'AUX'), ('from', 'ADP'), ('affording', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('smallest', 'ADJ'), ('assistance', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('enter', 'VERB'), ('into', 'ADP'), ('any', 'DET'), ('profession', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('view', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('better', 'ADJ'), ('support', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('do', 'VERB'), ('all', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('advancing', 'VERB'), ('in', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('an', 'DET'), ('ecstasy', 'NOUN'), ('of', 'ADP'), ('indignation', 'NOUN'), ('\n', 'SPACE'), ('clapped', 'VERB'), ('her', 'PRON'), ('hands', 'NOUN'), ('together', 'ADV'), ('and', 'CCONJ'), ('cried', 'VERB'), ('Gracious', 'ADJ'), ('God', 'PROPN'), ('\n', 'SPACE'), ('can', 'AUX'), ('this', 'PRON'), ('be', 'AUX'), ('possible', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('may', 'AUX'), ('you', 'PRON'), ('wonder', 'VERB'), ('Marianne', 'PROPN'), ('replied', 'VERB'), ('her', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('obstinacy', 'NOUN'), ('which', 'PRON'), ('could', 'AUX'), ('resist', 'VERB'), ('such', 'ADJ'), ('arguments', 'NOUN'), ('as', 'SCONJ'), ('these', 'DET'), ('\n', 'SPACE'), ('Your', 'PRON'), ('exclamation', 'NOUN'), ('is', 'AUX'), ('very', 'ADV'), ('natural', 'ADJ'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('retort', 'VERB'), ('but', 'CCONJ'), ('she', 'PRON'), ('remembered', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('promises', 'NOUN'), ('and', 'CCONJ'), ('forbore', 'ADJ'), ('\n\n', 'SPACE'), ('All', 'DET'), ('this', 'PRON'), ('however', 'ADV'), ('he', 'PRON'), ('continued', 'VERB'), ('was', 'AUX'), ('urged', 'VERB'), ('in', 'ADP'), ('vain', 'ADJ'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('said', 'VERB'), ('very', 'ADV'), ('little', 'ADJ'), ('but', 'CCONJ'), ('what', 'PRON'), ('he', 'PRON'), ('did', 'AUX'), ('say', 'VERB'), ('was', 'AUX'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('most', 'ADV'), ('determined', 'ADJ'), ('manner', 'NOUN'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('should', 'AUX'), ('prevail', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'PART'), ('give', 'VERB'), ('up', 'ADP'), ('his', 'PRON'), ('engagement', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('would', 'AUX'), ('stand', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('cost', 'VERB'), ('him', 'PRON'), ('what', 'PRON'), ('it', 'PRON'), ('might', 'AUX'), ('\n\n', 'SPACE'), ('Then', 'ADV'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('with', 'ADP'), ('blunt', 'ADJ'), ('sincerity', 'NOUN'), ('\n', 'SPACE'), ('no', 'ADV'), ('longer', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('silent', 'ADJ'), ('he', 'PRON'), ('has', 'AUX'), ('acted', 'VERB'), ('like', 'ADP'), ('an', 'DET'), ('honest', 'ADJ'), ('\n', 'SPACE'), ('man', 'NOUN'), ('I', 'PRON'), ('beg', 'VERB'), ('your', 'PRON'), ('pardon', 'NOUN'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('but', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('done', 'VERB'), ('otherwise', 'ADV'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('thought', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('rascal', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('some', 'DET'), ('little', 'ADJ'), ('concern', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('business', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('as', 'ADP'), ('yourself', 'PRON'), ('for', 'SCONJ'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('is', 'AUX'), ('my', 'PRON'), ('cousin', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('there', 'PRON'), ('is', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('better', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('girl', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('nor', 'CCONJ'), ('one', 'NUM'), ('\n', 'SPACE'), ('who', 'PRON'), ('more', 'ADJ'), ('deserves', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('husband', 'NOUN'), ('\n\n', 'SPACE'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('greatly', 'ADV'), ('astonished', 'VERB'), ('but', 'CCONJ'), ('his', 'PRON'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('calm', 'ADJ'), ('not', 'PART'), ('open', 'ADJ'), ('to', 'ADP'), ('provocation', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('never', 'ADV'), ('wished', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('offend', 'VERB'), ('anybody', 'PRON'), ('especially', 'ADV'), ('anybody', 'PRON'), ('of', 'ADP'), ('good', 'ADJ'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('therefore', 'ADV'), ('replied', 'VERB'), ('without', 'ADP'), ('any', 'DET'), ('resentment', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('speak', 'VERB'), ('disrespectfully', 'ADV'), ('of', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('relation', 'NOUN'), ('of', 'ADP'), ('yours', 'PRON'), ('madam', 'NOUN'), (' ', 'SPACE'), ('Miss', 'PROPN'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('is', 'AUX'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('deserving', 'ADJ'), ('young', 'ADJ'), ('woman', 'NOUN'), ('but', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('the', 'DET'), ('connection', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('impossible', 'ADJ'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('to', 'PART'), ('have', 'AUX'), ('entered', 'VERB'), ('into', 'ADP'), ('a', 'DET'), ('secret', 'ADJ'), ('engagement', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('young', 'ADJ'), ('man', 'NOUN'), ('under', 'ADP'), ('her', 'PRON'), ('uncles', 'NOUN'), ('care', 'VERB'), ('the', 'DET'), ('son', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('especially', 'ADV'), ('of', 'ADP'), ('such', 'ADJ'), ('very', 'ADV'), ('large', 'ADJ'), ('fortune', 'NOUN'), ('as', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('is', 'AUX'), ('perhaps', 'ADV'), ('altogether', 'ADV'), ('a', 'DET'), ('little', 'ADJ'), ('extraordinary', 'ADJ'), ('In', 'ADP'), ('short', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('reflect', 'VERB'), ('upon', 'SCONJ'), ('the', 'DET'), ('behaviour', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('person', 'NOUN'), ('\n', 'SPACE'), ('whom', 'PRON'), ('you', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('regard', 'NOUN'), ('for', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), (' ', 'SPACE'), ('We', 'PRON'), ('all', 'PRON'), ('wish', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('extremely', 'ADV'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('conduct', 'NOUN'), ('throughout', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('whole', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('every', 'DET'), ('conscientious', 'ADJ'), ('good', 'ADJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADV'), ('like', 'ADP'), ('circumstances', 'NOUN'), ('would', 'AUX'), ('adopt', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('dignified', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('liberal', 'ADJ'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('has', 'AUX'), ('drawn', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('lot', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('fear', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('bad', 'ADJ'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('sighed', 'VERB'), ('out', 'ADP'), ('her', 'PRON'), ('similar', 'ADJ'), ('apprehension', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinors', 'PROPN'), ('heart', 'NOUN'), ('wrung', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('braving', 'VERB'), ('his', 'PRON'), ('mothers', 'NOUN'), ('threats', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('reward', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('sir', 'NOUN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('did', 'AUX'), ('it', 'PRON'), ('end', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('maam', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('unhappy', 'ADJ'), ('rupture', 'NOUN'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('is', 'AUX'), ('dismissed', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('from', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('notice', 'VERB'), ('\n', 'SPACE'), ('He', 'PRON'), ('left', 'VERB'), ('her', 'PRON'), ('house', 'NOUN'), ('yesterday', 'NOUN'), ('but', 'CCONJ'), ('where', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('gone', 'VERB'), ('or', 'CCONJ'), ('whether', 'SCONJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('is', 'AUX'), ('still', 'ADV'), ('in', 'ADP'), ('town', 'NOUN'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('for', 'SCONJ'), ('WE', 'PROPN'), ('of', 'ADP'), ('course', 'NOUN'), ('can', 'AUX'), ('\n', 'SPACE'), ('make', 'VERB'), ('no', 'DET'), ('inquiry', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'ADJ'), ('young', 'ADJ'), ('manand', 'NOUN'), ('what', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('become', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('indeed', 'ADV'), ('maam', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('melancholy', 'ADJ'), ('consideration', 'NOUN'), ('\n', 'SPACE'), ('Born', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('prospect', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('affluence', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('conceive', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('situation', 'NOUN'), ('more', 'ADV'), ('deplorable', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('thousand', 'NUM'), ('\n', 'SPACE'), ('poundshow', 'NOUN'), ('can', 'AUX'), ('a', 'DET'), ('man', 'NOUN'), ('live', 'VERB'), ('on', 'ADP'), ('itand', 'PROPN'), ('when', 'SCONJ'), ('to', 'ADP'), ('that', 'PRON'), ('is', 'AUX'), ('added', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('recollection', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('but', 'CCONJ'), ('for', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('folly', 'NOUN'), ('\n', 'SPACE'), ('within', 'ADP'), ('three', 'NUM'), ('months', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('receipt', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('five', 'NUM'), ('hundred', 'NUM'), ('ayear', 'NOUN'), ('for', 'ADP'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('has', 'VERB'), ('\n', 'SPACE'), ('thirty', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('picture', 'VERB'), ('to', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('a', 'DET'), ('more', 'ADV'), ('wretched', 'ADJ'), ('condition', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('must', 'AUX'), ('all', 'ADV'), ('feel', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('more', 'ADV'), ('so', 'ADV'), ('because', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('totally', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('our', 'PRON'), ('power', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('assist', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Poor', 'ADJ'), ('young', 'ADJ'), ('man', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('welcome', 'ADJ'), ('to', 'ADP'), ('bed', 'NOUN'), ('and', 'CCONJ'), ('board', 'NOUN'), ('at', 'ADP'), ('my', 'PRON'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('I', 'PRON'), ('would', 'AUX'), ('tell', 'VERB'), ('him', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('see', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('fit', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('living', 'VERB'), ('about', 'ADP'), ('at', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('charge', 'NOUN'), ('now', 'ADV'), ('\n', 'SPACE'), ('at', 'ADP'), ('lodgings', 'NOUN'), ('and', 'CCONJ'), ('taverns', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('heart', 'NOUN'), ('thanked', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('such', 'ADJ'), ('kindness', 'NOUN'), ('towards', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('forbear', 'VERB'), ('smiling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('form', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('only', 'ADV'), ('have', 'AUX'), ('done', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('by', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('as', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('friends', 'NOUN'), ('were', 'AUX'), ('disposed', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('him', 'PRON'), ('he', 'PRON'), ('might', 'AUX'), ('now', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('in', 'ADP'), ('his', 'PRON'), ('proper', 'ADJ'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('have', 'AUX'), ('wanted', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('it', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('anybodys', 'ADJ'), ('power', 'NOUN'), ('to', 'PART'), ('assist', 'VERB'), ('him', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('one', 'NUM'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('more', 'ADV'), ('preparing', 'VERB'), ('against', 'ADP'), ('him', 'PRON'), ('which', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('worse', 'ADJ'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('allhis', 'DET'), ('mother', 'NOUN'), ('has', 'AUX'), ('determined', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('natural', 'ADJ'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('spirit', 'NOUN'), ('to', 'PART'), ('settle', 'VERB'), ('THAT', 'DET'), ('estate', 'NOUN'), ('upon', 'SCONJ'), ('Robert', 'PROPN'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('which', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('Edwards', 'PROPN'), ('on', 'ADP'), ('proper', 'ADJ'), ('conditions', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('left', 'VERB'), ('her', 'PRON'), ('this', 'DET'), ('morning', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('lawyer', 'NOUN'), ('talking', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('business', 'NOUN'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('that', 'PRON'), ('is', 'AUX'), ('HER', 'PRON'), ('revenge', 'NOUN'), ('\n', 'SPACE'), ('Everybody', 'PRON'), ('has', 'VERB'), ('a', 'DET'), ('way', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('mine', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('to', 'PART'), ('make', 'VERB'), ('one', 'NUM'), ('son', 'NOUN'), ('independent', 'ADJ'), ('because', 'SCONJ'), ('another', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('plagued', 'VERB'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('got', 'VERB'), ('up', 'ADP'), ('and', 'CCONJ'), ('walked', 'VERB'), ('about', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('Can', 'AUX'), ('anything', 'PRON'), ('be', 'AUX'), ('more', 'ADV'), ('galling', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('spirit', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('\n', 'SPACE'), ('continued', 'VERB'), ('John', 'PROPN'), ('than', 'SCONJ'), ('to', 'PART'), ('see', 'VERB'), ('his', 'PRON'), ('younger', 'ADJ'), ('brother', 'NOUN'), ('in', 'ADP'), ('\n', 'SPACE'), ('possession', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('estate', 'NOUN'), ('which', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('his', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('Poor', 'PROPN'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('feel', 'VERB'), ('for', 'SCONJ'), ('him', 'PRON'), ('sincerely', 'ADV'), ('\n\n', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('more', 'ADV'), ('spent', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('effusion', 'NOUN'), ('\n', 'SPACE'), ('concluded', 'VERB'), ('his', 'PRON'), ('visit', 'NOUN'), ('and', 'CCONJ'), ('with', 'ADP'), ('repeated', 'VERB'), ('assurances', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('really', 'ADV'), ('believed', 'VERB'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('material', 'NOUN'), ('\n', 'SPACE'), ('danger', 'NOUN'), ('in', 'ADP'), ('Fannys', 'PROPN'), ('indisposition', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('they', 'PRON'), ('need', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('therefore', 'ADV'), ('be', 'AUX'), ('very', 'ADV'), ('uneasy', 'ADJ'), ('about', 'ADP'), ('it', 'PRON'), ('he', 'PRON'), ('went', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('leaving', 'VERB'), ('the', 'DET'), ('three', 'NUM'), ('ladies', 'NOUN'), ('unanimous', 'ADJ'), ('in', 'ADP'), ('their', 'PRON'), ('sentiments', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('occasion', 'NOUN'), ('as', 'ADV'), ('far', 'ADV'), ('at', 'ADV'), ('least', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('regarded', 'VERB'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('conduct', 'VERB'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('and', 'CCONJ'), ('Edwards', 'PROPN'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('indignation', 'NOUN'), ('burst', 'VERB'), ('forth', 'ADV'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('quitted', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('her', 'PRON'), ('vehemence', 'NOUN'), ('made', 'VERB'), ('reserve', 'NOUN'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('in', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('unnecessary', 'ADJ'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('they', 'PRON'), ('all', 'PRON'), ('joined', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('spirited', 'ADJ'), ('critique', 'NOUN'), ('upon', 'SCONJ'), ('the', 'DET'), ('party', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('38', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('warm', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('praise', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('\n', 'SPACE'), ('conduct', 'NOUN'), ('but', 'CCONJ'), ('only', 'ADV'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('understood', 'VERB'), ('its', 'PRON'), ('\n', 'SPACE'), ('true', 'ADJ'), ('merit', 'NOUN'), (' ', 'SPACE'), ('THEY', 'PRON'), ('only', 'ADV'), ('knew', 'VERB'), ('how', 'SCONJ'), ('little', 'ADJ'), ('he', 'PRON'), ('had', 'AUX'), ('had', 'VERB'), ('to', 'PART'), ('tempt', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('disobedient', 'ADJ'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('small', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('consolation', 'NOUN'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('doing', 'VERB'), ('right', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('remain', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('friends', 'NOUN'), ('and', 'CCONJ'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('gloried', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('integrity', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('forgave', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('his', 'PRON'), ('offences', 'NOUN'), ('in', 'ADP'), ('compassion', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('punishment', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('though', 'SCONJ'), ('\n', 'SPACE'), ('confidence', 'NOUN'), ('between', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('by', 'ADP'), ('this', 'DET'), ('public', 'ADJ'), ('discovery', 'NOUN'), ('\n', 'SPACE'), ('restored', 'VERB'), ('to', 'ADP'), ('its', 'PRON'), ('proper', 'ADJ'), ('state', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('subject', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('either', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('were', 'AUX'), ('fond', 'ADJ'), ('of', 'ADP'), ('dwelling', 'NOUN'), ('when', 'SCONJ'), ('alone', 'ADJ'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('avoided', 'VERB'), ('it', 'PRON'), ('upon', 'SCONJ'), ('principle', 'NOUN'), ('as', 'ADP'), ('tending', 'VERB'), ('to', 'PART'), ('fix', 'VERB'), ('still', 'ADV'), ('\n', 'SPACE'), ('more', 'ADJ'), ('upon', 'SCONJ'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('too', 'ADV'), ('warm', 'ADJ'), ('too', 'ADV'), ('positive', 'ADJ'), ('\n', 'SPACE'), ('assurances', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('that', 'DET'), ('belief', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('continued', 'VERB'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('herself', 'PRON'), ('which', 'PRON'), ('she', 'PRON'), ('rather', 'ADV'), ('wished', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mariannes', 'PROPN'), ('courage', 'NOUN'), ('soon', 'ADV'), ('failed', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('trying', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('converse', 'VERB'), ('upon', 'SCONJ'), ('a', 'DET'), ('topic', 'NOUN'), ('which', 'PRON'), ('always', 'ADV'), ('left', 'VERB'), ('her', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('dissatisfied', 'ADJ'), ('with', 'ADP'), ('herself', 'PRON'), ('than', 'ADP'), ('ever', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('comparison', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('necessarily', 'ADV'), ('produced', 'VERB'), ('between', 'ADP'), ('Elinors', 'NOUN'), ('conduct', 'VERB'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('felt', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('force', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('comparison', 'NOUN'), ('but', 'CCONJ'), ('not', 'PART'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('had', 'AUX'), ('hoped', 'VERB'), ('to', 'PART'), ('urge', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('exertion', 'NOUN'), ('now', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('felt', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('pain', 'NOUN'), ('of', 'ADP'), ('continual', 'ADJ'), ('selfreproach', 'NOUN'), ('\n', 'SPACE'), ('regretted', 'VERB'), ('most', 'ADV'), ('bitterly', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('exerted', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('before', 'ADV'), ('but', 'CCONJ'), ('it', 'PRON'), ('brought', 'VERB'), ('only', 'ADV'), ('the', 'DET'), ('torture', 'NOUN'), ('of', 'ADP'), ('penitence', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('the', 'DET'), ('hope', 'NOUN'), ('of', 'ADP'), ('amendment', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('weakened', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('still', 'ADV'), ('fancied', 'VERB'), ('present', 'ADJ'), ('exertion', 'NOUN'), ('impossible', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('it', 'PRON'), ('only', 'ADV'), ('dispirited', 'VERB'), ('her', 'PRON'), ('more', 'ADJ'), ('\n\n', 'SPACE'), ('Nothing', 'PRON'), ('new', 'ADJ'), ('was', 'AUX'), ('heard', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('affairs', 'NOUN'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('or', 'CCONJ'), ('Bartletts', 'PROPN'), ('Buildings', 'PROPN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('though', 'SCONJ'), ('so', 'ADV'), ('much', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('was', 'AUX'), ('known', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('already', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('might', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('enough', 'ADJ'), ('to', 'PART'), ('do', 'AUX'), ('in', 'ADP'), ('spreading', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('knowledge', 'NOUN'), ('farther', 'ADV'), ('without', 'ADP'), ('seeking', 'VERB'), ('after', 'ADP'), ('more', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('resolved', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('to', 'PART'), ('pay', 'VERB'), ('a', 'DET'), ('visit', 'NOUN'), ('of', 'ADP'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('inquiry', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('cousins', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('the', 'DET'), ('hindrance', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('visitors', 'NOUN'), ('than', 'ADP'), ('usual', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('prevented', 'VERB'), ('her', 'PRON'), ('going', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('within', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('third', 'ADJ'), ('day', 'NOUN'), ('succeeding', 'VERB'), ('their', 'PRON'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('particulars', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('fine', 'ADJ'), ('so', 'ADV'), ('beautiful', 'ADJ'), ('a', 'DET'), ('Sunday', 'PROPN'), ('as', 'SCONJ'), ('to', 'PART'), ('draw', 'VERB'), ('\n', 'SPACE'), ('many', 'ADJ'), ('to', 'ADP'), ('Kensington', 'PROPN'), ('Gardens', 'PROPN'), ('though', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('second', 'ADJ'), ('\n', 'SPACE'), ('week', 'NOUN'), ('in', 'ADP'), ('March', 'PROPN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('were', 'AUX'), ('of', 'ADP'), ('the', 'DET'), ('number', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('knew', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('Willoughbys', 'PROPN'), ('were', 'AUX'), ('again', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('had', 'VERB'), ('a', 'DET'), ('constant', 'ADJ'), ('dread', 'NOUN'), ('of', 'ADP'), ('meeting', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('chose', 'VERB'), ('rather', 'ADV'), ('to', 'PART'), ('stay', 'VERB'), ('at', 'ADP'), ('home', 'NOUN'), ('than', 'ADP'), ('venture', 'NOUN'), ('into', 'ADP'), ('so', 'ADV'), ('public', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('place', 'NOUN'), ('\n\n', 'SPACE'), ('An', 'DET'), ('intimate', 'ADJ'), ('acquaintance', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('joined', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('soon', 'ADV'), ('after', 'SCONJ'), ('they', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('Gardens', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('sorry', 'ADJ'), ('that', 'SCONJ'), ('by', 'ADP'), ('her', 'PRON'), ('continuing', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('engaging', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('conversation', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('herself', 'PRON'), ('left', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('quiet', 'ADJ'), ('reflection', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('nothing', 'PRON'), ('of', 'ADP'), ('anybody', 'PRON'), ('\n', 'SPACE'), ('who', 'PRON'), ('could', 'AUX'), ('by', 'ADP'), ('any', 'DET'), ('chance', 'NOUN'), ('whether', 'SCONJ'), ('grave', 'ADJ'), ('or', 'CCONJ'), ('gay', 'ADJ'), ('be', 'AUX'), ('interesting', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('she', 'PRON'), ('found', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('some', 'DET'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('accosted', 'VERB'), ('by', 'ADP'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('who', 'PRON'), ('though', 'ADV'), ('looking', 'VERB'), ('rather', 'ADV'), ('shy', 'ADJ'), ('\n', 'SPACE'), ('expressed', 'VERB'), ('great', 'ADJ'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('meeting', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('receiving', 'VERB'), ('\n', 'SPACE'), ('encouragement', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('particular', 'ADJ'), ('kindness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('left', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('party', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('to', 'PART'), ('join', 'VERB'), ('theirs', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('immediately', 'ADV'), ('whispered', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Get', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('will', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('any', 'DET'), ('thing', 'NOUN'), ('if', 'SCONJ'), ('you', 'PRON'), ('ask', 'VERB'), (' ', 'SPACE'), ('You', 'PRON'), ('see', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('leave', 'VERB'), ('Mrs', 'PROPN'), ('Clarke', 'PROPN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('lucky', 'ADJ'), ('however', 'ADV'), ('for', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('curiosity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinors', 'NOUN'), ('too', 'ADV'), ('that', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('tell', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('WITHOUT', 'ADP'), ('\n', 'SPACE'), ('being', 'AUX'), ('asked', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), ('would', 'AUX'), ('otherwise', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('learnt', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('so', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('meet', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('taking', 'VERB'), ('her', 'PRON'), ('familiarly', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('armfor', 'NOUN'), ('I', 'PRON'), ('wanted', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('then', 'ADV'), ('lowering', 'VERB'), ('her', 'PRON'), ('voice', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('has', 'AUX'), ('heard', 'VERB'), ('all', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Is', 'AUX'), ('she', 'PRON'), ('angry', 'ADJ'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('at', 'ADV'), ('all', 'ADV'), ('I', 'PRON'), ('believe', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('good', 'ADJ'), ('thing', 'NOUN'), (' ', 'SPACE'), ('And', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('is', 'AUX'), ('SHE', 'PROPN'), ('angry', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('it', 'PRON'), ('possible', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('monstrous', 'ADJ'), ('glad', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Good', 'ADJ'), ('gracious', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('had', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('saw', 'VERB'), ('Lucy', 'PROPN'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('rage', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('vowed', 'VERB'), ('at', 'ADP'), ('first', 'ADV'), ('she', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('trim', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('up', 'ADP'), ('a', 'DET'), ('new', 'ADJ'), ('bonnet', 'NOUN'), ('nor', 'CCONJ'), ('do', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('for', 'ADP'), ('me', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('so', 'ADV'), ('long', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('lived', 'VERB'), ('but', 'CCONJ'), ('now', 'ADV'), ('she', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('come', 'VERB'), ('to', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('as', 'ADV'), ('good', 'ADJ'), ('friends', 'NOUN'), ('as', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('Look', 'VERB'), ('she', 'PRON'), ('made', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('this', 'DET'), ('bow', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('hat', 'NOUN'), ('and', 'CCONJ'), ('put', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('feather', 'NOUN'), ('last', 'ADJ'), ('night', 'NOUN'), ('\n', 'SPACE'), ('There', 'ADV'), ('now', 'ADV'), ('YOU', 'PRON'), ('are', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('laugh', 'VERB'), ('at', 'ADP'), ('me', 'PRON'), ('too', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('\n', 'SPACE'), ('should', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('wear', 'VERB'), ('pink', 'ADJ'), ('ribbons', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('care', 'VERB'), ('if', 'SCONJ'), ('it', 'PRON'), ('IS', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('Doctors', 'NOUN'), ('favourite', 'VERB'), ('colour', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('for', 'SCONJ'), ('my', 'PRON'), ('part', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('have', 'AUX'), ('known', 'VERB'), ('he', 'PRON'), ('DID', 'VERB'), ('like', 'VERB'), ('it', 'PRON'), ('better', 'ADV'), ('than', 'ADP'), ('\n', 'SPACE'), ('any', 'DET'), ('other', 'ADJ'), ('colour', 'NOUN'), ('if', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('happened', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('so', 'ADV'), ('\n', 'SPACE'), ('My', 'PRON'), ('cousins', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('plaguing', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('declare', 'VERB'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('which', 'DET'), ('way', 'NOUN'), ('to', 'PART'), ('look', 'VERB'), ('before', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('wandered', 'VERB'), ('away', 'ADV'), ('to', 'ADP'), ('a', 'DET'), ('subject', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('had', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('soon', 'ADV'), ('judged', 'VERB'), ('it', 'PRON'), ('expedient', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('find', 'VERB'), ('her', 'PRON'), ('way', 'NOUN'), ('back', 'ADV'), ('again', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('but', 'CCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('speaking', 'VERB'), ('triumphantly', 'ADV'), ('\n', 'SPACE'), ('people', 'NOUN'), ('may', 'AUX'), ('say', 'VERB'), ('what', 'PRON'), ('they', 'PRON'), ('chuse', 'VERB'), ('about', 'ADP'), ('Mr', 'PROPN'), ('Ferrarss', 'PROPN'), ('\n', 'SPACE'), ('declaring', 'VERB'), ('he', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('Lucy', 'PROPN'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('no', 'DET'), ('such', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('quite', 'DET'), ('a', 'DET'), ('shame', 'NOUN'), ('for', 'SCONJ'), ('such', 'ADJ'), ('illnatured', 'ADJ'), ('\n', 'SPACE'), ('reports', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('spread', 'VERB'), ('abroad', 'ADV'), (' ', 'SPACE'), ('Whatever', 'PRON'), ('Lucy', 'PROPN'), ('might', 'AUX'), ('think', 'VERB'), ('\n', 'SPACE'), ('about', 'ADP'), ('it', 'PRON'), ('herself', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('no', 'DET'), ('business', 'NOUN'), ('of', 'ADP'), ('other', 'ADJ'), ('\n', 'SPACE'), ('people', 'NOUN'), ('to', 'PART'), ('set', 'VERB'), ('it', 'PRON'), ('down', 'ADP'), ('for', 'ADP'), ('certain', 'ADJ'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('heard', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), ('hinted', 'VERB'), ('at', 'ADP'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('did', 'VERB'), ('not', 'PART'), ('you', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('WAS', 'AUX'), ('said', 'VERB'), ('I', 'PRON'), ('know', 'VERB'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('one', 'NUM'), ('for', 'ADP'), ('Miss', 'PROPN'), ('Godby', 'PROPN'), ('told', 'VERB'), ('Miss', 'PROPN'), ('Sparks', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('nobody', 'PRON'), ('in', 'ADP'), ('their', 'PRON'), ('senses', 'NOUN'), ('could', 'AUX'), ('expect', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('up', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('like', 'ADP'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('with', 'ADP'), ('thirty', 'NUM'), ('thousand', 'NUM'), ('\n', 'SPACE'), ('pounds', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('fortune', 'NOUN'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('that', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('Miss', 'PROPN'), ('Sparks', 'PROPN'), ('myself', 'PRON'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('besides', 'SCONJ'), ('that', 'PRON'), ('my', 'PRON'), ('cousin', 'NOUN'), ('Richard', 'PROPN'), ('said', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('it', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('would', 'AUX'), ('be', 'AUX'), ('off', 'ADV'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Edward', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('near', 'ADP'), ('us', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('three', 'NUM'), ('days', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('what', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('in', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('Lucy', 'PROPN'), ('gave', 'VERB'), ('it', 'PRON'), ('up', 'ADP'), ('all', 'ADV'), ('for', 'ADP'), ('lost', 'VERB'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('we', 'PRON'), ('came', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('your', 'PRON'), ('brothers', 'NOUN'), ('Wednesday', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('saw', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('him', 'PRON'), ('not', 'PART'), ('all', 'PRON'), ('Thursday', 'PROPN'), ('Friday', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Saturday', 'PROPN'), ('and', 'CCONJ'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('was', 'AUX'), ('become', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('Once', 'SCONJ'), ('Lucy', 'PROPN'), ('thought', 'VERB'), ('to', 'PART'), ('write', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('but', 'CCONJ'), ('then', 'ADV'), ('her', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('rose', 'VERB'), ('against', 'ADP'), ('that', 'PRON'), (' ', 'SPACE'), ('However', 'ADV'), ('this', 'DET'), ('morning', 'NOUN'), ('he', 'PRON'), ('came', 'VERB'), ('just', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('we', 'PRON'), ('came', 'VERB'), ('home', 'ADV'), ('from', 'ADP'), ('church', 'NOUN'), ('and', 'CCONJ'), ('then', 'ADV'), ('it', 'PRON'), ('all', 'PRON'), ('came', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('sent', 'VERB'), ('for', 'ADP'), ('Wednesday', 'PROPN'), ('to', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('been', 'AUX'), ('talked', 'VERB'), ('to', 'ADP'), ('by', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('all', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('declared', 'VERB'), ('before', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('that', 'PRON'), ('he', 'PRON'), ('loved', 'VERB'), ('\n', 'SPACE'), ('nobody', 'PRON'), ('but', 'CCONJ'), ('Lucy', 'PROPN'), ('and', 'CCONJ'), ('nobody', 'PRON'), ('but', 'CCONJ'), ('Lucy', 'PROPN'), ('would', 'AUX'), ('he', 'PRON'), ('have', 'VERB'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('worried', 'ADJ'), ('by', 'ADP'), ('what', 'PRON'), ('passed', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('went', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('house', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('got', 'VERB'), ('upon', 'SCONJ'), ('his', 'PRON'), ('horse', 'NOUN'), ('and', 'CCONJ'), ('rid', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('\n', 'SPACE'), ('some', 'DET'), ('where', 'SCONJ'), ('or', 'CCONJ'), ('other', 'ADJ'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('stayed', 'VERB'), ('about', 'ADP'), ('at', 'ADP'), ('an', 'DET'), ('inn', 'PROPN'), ('\n', 'SPACE'), ('all', 'DET'), ('Thursday', 'PROPN'), ('and', 'CCONJ'), ('Friday', 'PROPN'), ('on', 'ADP'), ('purpose', 'NOUN'), ('to', 'PART'), ('get', 'VERB'), ('the', 'DET'), ('better', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('after', 'ADP'), ('thinking', 'VERB'), ('it', 'PRON'), ('all', 'ADV'), ('over', 'ADV'), ('and', 'CCONJ'), ('over', 'ADV'), ('again', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('said', 'VERB'), ('it', 'PRON'), ('seemed', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('now', 'ADV'), ('he', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('no', 'DET'), ('nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('unkind', 'ADJ'), ('to', 'PART'), ('keep', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('on', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('engagement', 'NOUN'), ('because', 'SCONJ'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('for', 'ADP'), ('her', 'PRON'), ('loss', 'NOUN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('and', 'CCONJ'), ('no', 'DET'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('into', 'ADP'), ('orders', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'VERB'), ('some', 'DET'), ('thoughts', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('get', 'VERB'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('a', 'DET'), ('curacy', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('was', 'AUX'), ('they', 'PRON'), ('to', 'PART'), ('live', 'VERB'), ('upon', 'SCONJ'), ('thatHe', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('doing', 'VERB'), ('no', 'PRON'), ('better', 'ADV'), ('and', 'CCONJ'), ('so', 'ADV'), ('he', 'PRON'), ('begged', 'VERB'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('the', 'DET'), ('least', 'ADJ'), ('mind', 'NOUN'), ('for', 'SCONJ'), ('it', 'PRON'), ('to', 'PART'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('matter', 'NOUN'), ('directly', 'ADV'), ('and', 'CCONJ'), ('leave', 'VERB'), ('him', 'PRON'), ('shift', 'NOUN'), ('for', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('heard', 'VERB'), ('him', 'PRON'), ('say', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('as', 'ADV'), ('plain', 'ADV'), ('as', 'SCONJ'), ('could', 'AUX'), ('possibly', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('entirely', 'ADV'), ('for', 'ADP'), ('HER', 'PRON'), ('sake', 'NOUN'), ('and', 'CCONJ'), ('upon', 'SCONJ'), ('HER', 'PRON'), ('account', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('said', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('about', 'ADP'), ('being', 'AUX'), ('off', 'ADV'), ('and', 'CCONJ'), ('not', 'PART'), ('upon', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('take', 'VERB'), ('my', 'PRON'), ('oath', 'NOUN'), ('he', 'PRON'), ('never', 'ADV'), ('dropt', 'VERB'), ('a', 'DET'), ('syllable', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('\n', 'SPACE'), ('tired', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('or', 'CCONJ'), ('of', 'ADP'), ('wishing', 'VERB'), ('to', 'PART'), ('marry', 'VERB'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('or', 'CCONJ'), ('any', 'DET'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('like', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('Lucy', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('ear', 'NOUN'), ('to', 'ADP'), ('such', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('talking', 'VERB'), ('so', 'SCONJ'), ('she', 'PRON'), ('told', 'VERB'), ('him', 'PRON'), ('directly', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('about', 'ADP'), ('sweet', 'ADJ'), ('and', 'CCONJ'), ('love', 'VERB'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('all', 'DET'), ('thatOh', 'PROPN'), ('la', 'DET'), ('one', 'NOUN'), ('ca', 'AUX'), ('nt', 'PART'), ('repeat', 'VERB'), ('such', 'ADJ'), ('kind', 'NOUN'), ('of', 'ADP'), ('things', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('knowshe', 'PROPN'), ('told', 'VERB'), ('him', 'PRON'), ('directly', 'ADV'), ('she', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('mind', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('off', 'ADP'), ('for', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('live', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('a', 'DET'), ('trifle', 'NOUN'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('little', 'ADJ'), ('so', 'ADV'), ('ever', 'ADV'), ('he', 'PRON'), ('might', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('have', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('something', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('kind', 'NOUN'), (' ', 'SPACE'), ('So', 'ADV'), ('then', 'ADV'), ('he', 'PRON'), ('was', 'AUX'), ('monstrous', 'ADJ'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('talked', 'VERB'), ('on', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('about', 'ADP'), ('what', 'PRON'), ('they', 'PRON'), ('should', 'AUX'), ('do', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('agreed', 'VERB'), ('he', 'PRON'), ('should', 'AUX'), ('take', 'VERB'), ('orders', 'NOUN'), ('directly', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('must', 'AUX'), ('wait', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('till', 'SCONJ'), ('he', 'PRON'), ('got', 'VERB'), ('a', 'DET'), ('living', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('just', 'ADV'), ('then', 'ADV'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('any', 'DET'), ('more', 'ADJ'), ('for', 'ADP'), ('my', 'PRON'), ('cousin', 'NOUN'), ('\n', 'SPACE'), ('called', 'VERB'), ('from', 'ADP'), ('below', 'ADV'), ('to', 'PART'), ('tell', 'VERB'), ('me', 'PRON'), ('Mrs', 'PROPN'), ('Richardson', 'PROPN'), ('was', 'AUX'), ('come', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('coach', 'NOUN'), ('and', 'CCONJ'), ('would', 'AUX'), ('take', 'VERB'), ('one', 'NUM'), ('of', 'ADP'), ('us', 'PRON'), ('to', 'ADP'), ('Kensington', 'PROPN'), ('Gardens', 'PROPN'), ('\n', 'SPACE'), ('so', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('interrupt', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('ask', 'VERB'), ('Lucy', 'PROPN'), ('if', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('like', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('but', 'CCONJ'), ('she', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('care', 'VERB'), ('to', 'PART'), ('leave', 'VERB'), ('Edward', 'PROPN'), ('so', 'ADV'), ('I', 'PRON'), ('just', 'ADV'), ('run', 'VERB'), ('up', 'ADP'), ('stairs', 'NOUN'), ('and', 'CCONJ'), ('put', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('a', 'DET'), ('pair', 'NOUN'), ('of', 'ADP'), ('silk', 'NOUN'), ('stockings', 'NOUN'), ('and', 'CCONJ'), ('came', 'VERB'), ('off', 'ADP'), ('with', 'ADP'), ('the', 'DET'), ('Richardsons', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('understand', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('mean', 'VERB'), ('by', 'ADP'), ('interrupting', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('were', 'AUX'), ('all', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('room', 'NOUN'), ('together', 'ADV'), ('\n', 'SPACE'), ('were', 'AUX'), ('not', 'PART'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('indeed', 'ADV'), ('not', 'PART'), ('us', 'PRON'), (' ', 'SPACE'), ('La', 'PROPN'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('do', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('think', 'VERB'), ('people', 'NOUN'), ('make', 'VERB'), ('love', 'NOUN'), ('when', 'SCONJ'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('is', 'AUX'), ('by', 'ADP'), (' ', 'SPACE'), ('Oh', 'INTJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('shameTo', 'PROPN'), ('be', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('must', 'AUX'), ('know', 'VERB'), ('better', 'ADV'), ('than', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('Laughing', 'VERB'), ('affectedlyNo', 'NOUN'), ('no', 'INTJ'), ('they', 'PRON'), ('were', 'AUX'), ('shut', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('drawingroom', 'NOUN'), ('together', 'ADV'), ('and', 'CCONJ'), ('all', 'PRON'), ('I', 'PRON'), ('heard', 'VERB'), ('was', 'AUX'), ('only', 'ADV'), ('by', 'ADP'), ('listening', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('cried', 'VERB'), ('Elinor', 'PROPN'), ('have', 'AUX'), ('you', 'PRON'), ('been', 'AUX'), ('repeating', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('what', 'PRON'), ('you', 'PRON'), ('only', 'ADV'), ('learnt', 'VERB'), ('yourself', 'PRON'), ('by', 'ADP'), ('listening', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('it', 'PRON'), ('before', 'ADV'), ('for', 'SCONJ'), ('I', 'PRON'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('suffered', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('give', 'VERB'), ('me', 'PRON'), ('particulars', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('conversation', 'NOUN'), ('which', 'PRON'), ('you', 'PRON'), ('ought', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('have', 'AUX'), ('known', 'VERB'), ('yourself', 'PRON'), ('\n', 'SPACE'), ('How', 'SCONJ'), ('could', 'AUX'), ('you', 'PRON'), ('behave', 'VERB'), ('so', 'ADV'), ('unfairly', 'ADV'), ('by', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('la', 'INTJ'), ('there', 'PRON'), ('is', 'VERB'), ('nothing', 'PRON'), ('in', 'ADP'), ('THAT', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('only', 'ADV'), ('stood', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('heard', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('could', 'AUX'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('Lucy', 'PROPN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('done', 'VERB'), ('just', 'ADV'), ('the', 'DET'), ('same', 'ADJ'), ('by', 'ADP'), ('me', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('year', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('back', 'ADV'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('Martha', 'PROPN'), ('Sharpe', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('so', 'ADV'), ('many', 'ADJ'), ('secrets', 'NOUN'), ('together', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('never', 'ADV'), ('made', 'VERB'), ('any', 'DET'), ('bones', 'NOUN'), ('of', 'ADP'), ('hiding', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('closet', 'NOUN'), ('or', 'CCONJ'), ('behind', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('chimneyboard', 'NOUN'), ('on', 'ADP'), ('purpose', 'NOUN'), ('to', 'PART'), ('hear', 'VERB'), ('what', 'PRON'), ('we', 'PRON'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('tried', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('something', 'PRON'), ('else', 'ADV'), ('but', 'CCONJ'), ('Miss', 'PROPN'), ('\n', 'SPACE'), ('Steele', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('kept', 'VERB'), ('beyond', 'ADP'), ('a', 'DET'), ('couple', 'NOUN'), ('of', 'ADP'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('what', 'PRON'), ('was', 'AUX'), ('uppermost', 'ADJ'), ('in', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('talks', 'NOUN'), ('of', 'ADP'), ('going', 'VERB'), ('to', 'ADP'), ('Oxford', 'PROPN'), ('soon', 'ADV'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('now', 'ADV'), ('he', 'PRON'), ('is', 'AUX'), ('lodging', 'VERB'), ('at', 'ADP'), ('No', 'DET'), (' ', 'SPACE'), ('Pall', 'PROPN'), ('Mall', 'PROPN'), (' ', 'SPACE'), ('What', 'PRON'), ('an', 'DET'), ('\n', 'SPACE'), ('illnatured', 'VERB'), ('woman', 'NOUN'), ('his', 'PRON'), ('mother', 'NOUN'), ('is', 'AUX'), ('ant', 'ADJ'), ('she', 'PRON'), ('And', 'CCONJ'), ('your', 'PRON'), ('\n', 'SPACE'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('were', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('kind', 'ADV'), ('However', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('sha', 'AUX'), ('nt', 'PART'), ('say', 'VERB'), ('anything', 'PRON'), ('against', 'ADP'), ('them', 'PRON'), ('to', 'ADP'), ('YOU', 'PRON'), ('and', 'CCONJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('did', 'AUX'), ('send', 'VERB'), ('us', 'PRON'), ('home', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('chariot', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('more', 'ADJ'), ('than', 'SCONJ'), ('I', 'PRON'), ('looked', 'VERB'), ('for', 'ADP'), (' ', 'SPACE'), ('And', 'CCONJ'), ('for', 'ADP'), ('my', 'PRON'), ('part', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('all', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('fright', 'NOUN'), ('for', 'ADP'), ('fear', 'NOUN'), ('your', 'PRON'), ('sister', 'NOUN'), ('should', 'AUX'), ('ask', 'VERB'), ('us', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('huswifes', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('gave', 'VERB'), ('us', 'PRON'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('before', 'ADP'), ('but', 'CCONJ'), ('however', 'ADV'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('was', 'AUX'), ('said', 'VERB'), ('about', 'ADP'), ('them', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('took', 'VERB'), ('care', 'NOUN'), ('to', 'PART'), ('keep', 'VERB'), ('mine', 'PRON'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('sight', 'NOUN'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('have', 'AUX'), ('got', 'VERB'), ('some', 'DET'), ('business', 'NOUN'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('says', 'VERB'), ('so', 'ADV'), ('he', 'PRON'), ('must', 'AUX'), ('go', 'VERB'), ('there', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('THAT', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('can', 'AUX'), ('light', 'VERB'), ('upon', 'SCONJ'), ('a', 'DET'), ('Bishop', 'PROPN'), ('he', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('ordained', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('wonder', 'VERB'), ('what', 'PRON'), ('curacy', 'NOUN'), ('he', 'PRON'), ('will', 'AUX'), ('getGood', 'VERB'), ('gracious', 'ADJ'), ('\n', 'SPACE'), ('giggling', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('I', 'PROPN'), ('d', 'PROPN'), ('lay', 'VERB'), ('my', 'PRON'), ('life', 'NOUN'), ('I', 'PRON'), ('know', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('my', 'PRON'), ('cousins', 'NOUN'), ('will', 'AUX'), ('say', 'VERB'), ('when', 'SCONJ'), ('they', 'PRON'), ('hear', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('tell', 'VERB'), ('me', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('write', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Doctor', 'PROPN'), ('to', 'PART'), ('get', 'VERB'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('the', 'DET'), ('curacy', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('new', 'ADJ'), ('living', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('they', 'PRON'), ('will', 'AUX'), ('but', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('I', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('do', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), ('for', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('La', 'PROPN'), ('I', 'PRON'), ('shall', 'AUX'), ('say', 'VERB'), ('directly', 'ADV'), ('I', 'PRON'), ('wonder', 'VERB'), ('how', 'SCONJ'), ('you', 'PRON'), ('could', 'AUX'), ('think', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('write', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('Doctor', 'PROPN'), ('indeed', 'ADV'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('comfort', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('prepared', 'VERB'), ('\n', 'SPACE'), ('against', 'ADP'), ('the', 'DET'), ('worst', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('got', 'VERB'), ('your', 'PRON'), ('answer', 'NOUN'), ('ready', 'ADJ'), ('\n\n', 'SPACE'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('was', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('reply', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('approach', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('party', 'NOUN'), ('made', 'VERB'), ('another', 'PRON'), ('more', 'ADV'), ('necessary', 'ADJ'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('la', 'PROPN'), ('here', 'ADV'), ('come', 'VERB'), ('the', 'DET'), ('Richardsons', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('vast', 'ADJ'), ('deal', 'NOUN'), ('\n', 'SPACE'), ('more', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('them', 'PRON'), ('not', 'PART'), ('\n', 'SPACE'), ('any', 'ADV'), ('longer', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('they', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('genteel', 'ADJ'), ('people', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('makes', 'VERB'), ('a', 'DET'), ('monstrous', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('money', 'NOUN'), ('and', 'CCONJ'), ('they', 'PRON'), ('keep', 'VERB'), ('their', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('coach', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('time', 'NOUN'), ('to', 'PART'), ('speak', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('about', 'ADP'), ('\n', 'SPACE'), ('it', 'PRON'), ('myself', 'PRON'), ('but', 'CCONJ'), ('pray', 'VERB'), ('tell', 'VERB'), ('her', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('quite', 'ADV'), ('happy', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('anger', 'NOUN'), ('against', 'ADP'), ('us', 'PRON'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('the', 'DET'), ('same', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('anything', 'PRON'), ('should', 'AUX'), ('happen', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('away', 'ADV'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('should', 'AUX'), ('want', 'VERB'), ('company', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('we', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('come', 'VERB'), ('and', 'CCONJ'), ('stay', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('as', 'ADV'), ('long', 'ADV'), ('a', 'DET'), ('time', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('likes', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('\n', 'SPACE'), ('wo', 'AUX'), ('nt', 'PART'), ('ask', 'VERB'), ('us', 'PRON'), ('any', 'PRON'), ('more', 'ADV'), ('this', 'DET'), ('bout', 'NOUN'), (' ', 'SPACE'), ('Goodby', 'PROPN'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('here', 'ADV'), (' ', 'SPACE'), ('Remember', 'VERB'), ('me', 'PRON'), ('kindly', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('La', 'PROPN'), ('if', 'SCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('got', 'VERB'), ('your', 'PRON'), ('spotted', 'ADJ'), ('muslin', 'NOUN'), ('onI', 'NOUN'), ('wonder', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('afraid', 'ADJ'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('torn', 'VERB'), ('\n\n', 'SPACE'), ('Such', 'ADJ'), ('was', 'AUX'), ('her', 'PRON'), ('parting', 'NOUN'), ('concern', 'NOUN'), ('for', 'ADP'), ('after', 'ADP'), ('this', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('time', 'NOUN'), ('only', 'ADV'), ('to', 'PART'), ('pay', 'VERB'), ('her', 'PRON'), ('farewell', 'NOUN'), ('compliments', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('her', 'PRON'), ('company', 'NOUN'), ('was', 'AUX'), ('claimed', 'VERB'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Richardson', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('left', 'VERB'), ('in', 'ADP'), ('possession', 'NOUN'), ('of', 'ADP'), ('knowledge', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('feed', 'VERB'), ('her', 'PRON'), ('powers', 'NOUN'), ('of', 'ADP'), ('reflection', 'NOUN'), ('some', 'DET'), ('time', 'NOUN'), ('though', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('learnt', 'VERB'), ('very', 'ADV'), ('little', 'ADV'), ('more', 'ADJ'), ('than', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('foreseen', 'VERB'), ('and', 'CCONJ'), ('foreplanned', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('mind', 'NOUN'), (' ', 'SPACE'), ('Edwards', 'PROPN'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('as', 'ADV'), ('firmly', 'ADV'), ('determined', 'ADJ'), ('on', 'ADP'), ('and', 'CCONJ'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('its', 'PRON'), ('taking', 'NOUN'), ('place', 'NOUN'), ('remained', 'VERB'), ('as', 'ADP'), ('absolutely', 'ADV'), ('uncertain', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('concluded', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('beevery', 'NOUN'), ('thing', 'NOUN'), ('depended', 'VERB'), ('\n', 'SPACE'), ('exactly', 'ADV'), ('after', 'SCONJ'), ('her', 'PRON'), ('expectation', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('getting', 'VERB'), ('that', 'DET'), ('preferment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('which', 'PRON'), ('at', 'ADP'), ('present', 'NOUN'), ('there', 'PRON'), ('seemed', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('chance', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('eager', 'ADJ'), ('for', 'ADP'), ('information', 'NOUN'), ('but', 'CCONJ'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('wished', 'VERB'), ('to', 'PART'), ('spread', 'VERB'), ('as', 'ADV'), ('little', 'ADJ'), ('as', 'ADP'), ('possible', 'ADJ'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('had', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('place', 'NOUN'), ('been', 'AUX'), ('so', 'ADV'), ('unfairly', 'ADV'), ('obtained', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('confined', 'VERB'), ('herself', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('brief', 'ADJ'), ('repetition', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('\n', 'SPACE'), ('simple', 'ADJ'), ('particulars', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('assured', 'VERB'), ('that', 'SCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('consequence', 'NOUN'), ('would', 'AUX'), ('choose', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'AUX'), ('known', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('continuance', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('means', 'NOUN'), ('that', 'PRON'), ('were', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('taken', 'VERB'), ('for', 'ADP'), ('promoting', 'VERB'), ('\n', 'SPACE'), ('its', 'PRON'), ('end', 'NOUN'), ('was', 'AUX'), ('all', 'DET'), ('her', 'PRON'), ('communication', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('produced', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('the', 'DET'), ('following', 'VERB'), ('natural', 'ADJ'), ('remark', 'NOUN'), ('\n\n', 'SPACE'), ('Wait', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('having', 'VERB'), ('a', 'DET'), ('livingay', 'NOUN'), ('we', 'PRON'), ('all', 'PRON'), ('know', 'VERB'), ('how', 'SCONJ'), ('\n', 'SPACE'), ('THAT', 'PRON'), ('will', 'AUX'), ('endthey', 'PROPN'), ('will', 'AUX'), ('wait', 'VERB'), ('a', 'DET'), ('twelvemonth', 'NOUN'), ('and', 'CCONJ'), ('finding', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('good', 'ADJ'), ('comes', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('will', 'AUX'), ('set', 'VERB'), ('down', 'ADP'), ('upon', 'SCONJ'), ('a', 'DET'), ('curacy', 'NOUN'), ('of', 'ADP'), ('fifty', 'NUM'), ('\n', 'SPACE'), ('pounds', 'NOUN'), ('ayear', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('interest', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('what', 'PRON'), ('little', 'ADJ'), ('matter', 'NOUN'), ('Mr', 'PROPN'), ('Steele', 'PROPN'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Pratt', 'PROPN'), ('can', 'AUX'), ('\n', 'SPACE'), ('give', 'VERB'), ('herThen', 'ADV'), ('they', 'PRON'), ('will', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('child', 'NOUN'), ('every', 'DET'), ('year', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Lord', 'PROPN'), ('help', 'VERB'), ('em', 'PRON'), ('how', 'SCONJ'), ('poor', 'ADJ'), ('they', 'PRON'), ('will', 'AUX'), ('beI', 'PROPN'), ('must', 'AUX'), ('see', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('give', 'VERB'), ('them', 'PRON'), ('towards', 'ADP'), ('furnishing', 'VERB'), ('their', 'PRON'), ('house', 'NOUN'), ('\n', 'SPACE'), ('Two', 'NUM'), ('maids', 'NOUN'), ('and', 'CCONJ'), ('two', 'NUM'), ('men', 'NOUN'), ('indeedas', 'PROPN'), ('I', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('tother', 'ADJ'), ('\n', 'SPACE'), ('dayNo', 'PROPN'), ('no', 'INTJ'), ('they', 'PRON'), ('must', 'AUX'), ('get', 'VERB'), ('a', 'DET'), ('stout', 'ADJ'), ('girl', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), ('works', 'NOUN'), ('\n', 'SPACE'), ('Bettys', 'PROPN'), ('sister', 'NOUN'), ('would', 'AUX'), ('never', 'ADV'), ('do', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('NOW', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('brought', 'VERB'), ('Elinor', 'PROPN'), ('a', 'DET'), ('letter', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('twopenny', 'ADJ'), ('post', 'NOUN'), ('from', 'ADP'), ('Lucy', 'PROPN'), ('herself', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('as', 'SCONJ'), ('follows', 'VERB'), ('\n\n ', 'SPACE'), ('Bartletts', 'PROPN'), ('Building', 'PROPN'), ('March', 'PROPN'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('hope', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('will', 'AUX'), ('excuse', 'VERB'), ('the', 'DET'), ('\n ', 'SPACE'), ('liberty', 'NOUN'), ('I', 'PRON'), ('take', 'VERB'), ('of', 'ADP'), ('writing', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('your', 'PRON'), ('\n ', 'SPACE'), ('friendship', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('will', 'AUX'), ('make', 'VERB'), ('you', 'PRON'), ('pleased', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('such', 'ADJ'), ('\n ', 'SPACE'), ('a', 'DET'), ('good', 'ADJ'), ('account', 'NOUN'), ('of', 'ADP'), ('myself', 'PRON'), ('and', 'CCONJ'), ('my', 'PRON'), ('dear', 'ADJ'), ('Edward', 'PROPN'), ('after', 'SCONJ'), ('\n ', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('troubles', 'NOUN'), ('we', 'PRON'), ('have', 'AUX'), ('went', 'VERB'), ('through', 'ADV'), ('lately', 'ADV'), ('\n ', 'SPACE'), ('therefore', 'ADV'), ('will', 'AUX'), ('make', 'VERB'), ('no', 'DET'), ('more', 'ADJ'), ('apologies', 'NOUN'), ('but', 'CCONJ'), ('proceed', 'VERB'), ('\n ', 'SPACE'), ('to', 'PART'), ('say', 'VERB'), ('that', 'PRON'), ('thank', 'VERB'), ('God', 'PROPN'), ('though', 'SCONJ'), ('we', 'PRON'), ('have', 'AUX'), ('suffered', 'VERB'), ('\n ', 'SPACE'), ('dreadfully', 'ADV'), ('we', 'PRON'), ('are', 'AUX'), ('both', 'PRON'), ('quite', 'ADV'), ('well', 'ADV'), ('now', 'ADV'), ('and', 'CCONJ'), ('as', 'ADV'), ('happy', 'ADJ'), ('\n ', 'SPACE'), ('as', 'SCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('one', 'NUM'), ('anothers', 'NOUN'), ('love', 'VERB'), (' ', 'SPACE'), ('We', 'PRON'), ('have', 'AUX'), ('\n ', 'SPACE'), ('had', 'VERB'), ('great', 'ADJ'), ('trials', 'NOUN'), ('and', 'CCONJ'), ('great', 'ADJ'), ('persecutions', 'NOUN'), ('but', 'CCONJ'), ('\n ', 'SPACE'), ('however', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('gratefully', 'ADV'), ('acknowledge', 'VERB'), ('\n ', 'SPACE'), ('many', 'ADJ'), ('friends', 'NOUN'), ('yourself', 'PRON'), ('not', 'PART'), ('the', 'DET'), ('least', 'ADJ'), ('among', 'ADP'), ('them', 'PRON'), ('\n ', 'SPACE'), ('whose', 'DET'), ('great', 'ADJ'), ('kindness', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('always', 'ADV'), ('thankfully', 'ADV'), ('\n ', 'SPACE'), ('remember', 'VERB'), ('as', 'SCONJ'), ('will', 'AUX'), ('Edward', 'VERB'), ('too', 'ADV'), ('who', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('told', 'VERB'), ('of', 'ADP'), ('\n ', 'SPACE'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('as', 'ADP'), ('likewise', 'ADV'), ('\n ', 'SPACE'), ('dear', 'ADJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('I', 'PRON'), ('spent', 'VERB'), ('two', 'NUM'), ('happy', 'ADJ'), ('hours', 'NOUN'), ('with', 'ADP'), ('\n ', 'SPACE'), ('him', 'PRON'), ('yesterday', 'NOUN'), ('afternoon', 'NOUN'), ('he', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('of', 'ADP'), ('our', 'PRON'), ('\n ', 'SPACE'), ('parting', 'NOUN'), ('though', 'SCONJ'), ('earnestly', 'ADV'), ('did', 'AUX'), ('I', 'PRON'), ('as', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('my', 'PRON'), ('\n ', 'SPACE'), ('duty', 'NOUN'), ('required', 'VERB'), ('urge', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('prudence', 'NOUN'), ('sake', 'NOUN'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('have', 'AUX'), ('parted', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('spot', 'NOUN'), ('would', 'AUX'), ('\n ', 'SPACE'), ('he', 'PRON'), ('consent', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('but', 'CCONJ'), ('he', 'PRON'), ('said', 'VERB'), ('it', 'PRON'), ('should', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('\n ', 'SPACE'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('regard', 'VERB'), ('his', 'PRON'), ('mothers', 'NOUN'), ('anger', 'NOUN'), ('while', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n ', 'SPACE'), ('have', 'VERB'), ('my', 'PRON'), ('affections', 'NOUN'), ('our', 'PRON'), ('prospects', 'NOUN'), ('are', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('\n ', 'SPACE'), ('bright', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('but', 'CCONJ'), ('we', 'PRON'), ('must', 'AUX'), ('wait', 'VERB'), ('and', 'CCONJ'), ('hope', 'VERB'), ('for', 'ADP'), ('\n ', 'SPACE'), ('the', 'DET'), ('best', 'ADJ'), ('he', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('ordained', 'VERB'), ('shortly', 'ADV'), ('and', 'CCONJ'), ('should', 'AUX'), ('\n ', 'SPACE'), ('it', 'PRON'), ('ever', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('your', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('recommend', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('any', 'DET'), ('\n ', 'SPACE'), ('body', 'NOUN'), ('that', 'PRON'), ('has', 'VERB'), ('a', 'DET'), ('living', 'NOUN'), ('to', 'PART'), ('bestow', 'VERB'), ('am', 'AUX'), ('very', 'ADV'), ('sure', 'ADJ'), ('you', 'PRON'), ('\n ', 'SPACE'), ('will', 'AUX'), ('not', 'PART'), ('forget', 'VERB'), ('us', 'PRON'), ('and', 'CCONJ'), ('dear', 'ADJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('too', 'ADV'), ('\n ', 'SPACE'), ('trust', 'NOUN'), ('she', 'PRON'), ('will', 'AUX'), ('speak', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('word', 'NOUN'), ('for', 'ADP'), ('us', 'PRON'), ('to', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n ', 'SPACE'), ('or', 'CCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('or', 'CCONJ'), ('any', 'DET'), ('friend', 'NOUN'), ('that', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('\n ', 'SPACE'), ('assist', 'VERB'), ('usPoor', 'ADJ'), ('Anne', 'PROPN'), ('was', 'AUX'), ('much', 'ADJ'), ('to', 'PART'), ('blame', 'VERB'), ('for', 'ADP'), ('what', 'PRON'), ('\n ', 'SPACE'), ('she', 'PRON'), ('did', 'AUX'), ('but', 'CCONJ'), ('she', 'PRON'), ('did', 'VERB'), ('it', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('so', 'SCONJ'), ('I', 'PRON'), ('say', 'VERB'), ('\n ', 'SPACE'), ('nothing', 'PRON'), ('hope', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('wo', 'AUX'), ('nt', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('too', 'ADV'), ('much', 'ADJ'), ('\n ', 'SPACE'), ('trouble', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('us', 'PRON'), ('a', 'DET'), ('call', 'NOUN'), ('should', 'AUX'), ('she', 'PRON'), ('come', 'VERB'), ('this', 'DET'), ('way', 'NOUN'), ('\n ', 'SPACE'), ('any', 'DET'), ('morning', 'NOUN'), ('twould', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('kindness', 'NOUN'), ('and', 'CCONJ'), ('my', 'PRON'), ('\n ', 'SPACE'), ('cousins', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('proud', 'ADJ'), ('to', 'PART'), ('know', 'VERB'), ('herMy', 'PROPN'), ('paper', 'NOUN'), ('reminds', 'VERB'), ('\n ', 'SPACE'), ('me', 'PRON'), ('to', 'PART'), ('conclude', 'VERB'), ('and', 'CCONJ'), ('begging', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('most', 'ADV'), ('gratefully', 'ADV'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('respectfully', 'ADV'), ('remembered', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('to', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('Lady', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('dear', 'ADJ'), ('children', 'NOUN'), ('when', 'SCONJ'), ('you', 'PRON'), ('\n ', 'SPACE'), ('chance', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('love', 'VERB'), ('to', 'ADP'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('c', 'X'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('finished', 'VERB'), ('it', 'PRON'), ('she', 'PRON'), ('performed', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('she', 'PRON'), ('concluded', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('its', 'PRON'), ('writers', 'NOUN'), ('real', 'ADJ'), ('design', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('placing', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('hands', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('read', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('aloud', 'ADV'), ('with', 'ADP'), ('many', 'ADJ'), ('comments', 'NOUN'), ('of', 'ADP'), ('satisfaction', 'NOUN'), ('and', 'CCONJ'), ('praise', 'NOUN'), ('\n\n', 'SPACE'), ('Very', 'ADV'), ('well', 'ADV'), ('indeedhow', 'VERB'), ('prettily', 'ADV'), ('she', 'PRON'), ('writesaye', 'VERB'), ('\n', 'SPACE'), ('that', 'PRON'), ('was', 'AUX'), ('quite', 'ADV'), ('proper', 'ADJ'), ('to', 'PART'), ('let', 'VERB'), ('him', 'PRON'), ('be', 'AUX'), ('off', 'ADP'), ('if', 'SCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('That', 'PRON'), ('was', 'AUX'), ('just', 'ADV'), ('like', 'ADP'), ('LucyPoor', 'PROPN'), ('soul', 'NOUN'), ('I', 'PRON'), ('wish', 'VERB'), ('I', 'PRON'), ('COULD', 'AUX'), ('get', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('a', 'DET'), ('living', 'NOUN'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heartShe', 'NOUN'), ('calls', 'VERB'), ('me', 'PRON'), ('dear', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('you', 'PRON'), ('see', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('goodhearted', 'ADJ'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('ever', 'ADV'), ('livedVery', 'NOUN'), ('well', 'ADV'), ('upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), (' ', 'SPACE'), ('That', 'DET'), ('sentence', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('very', 'ADV'), ('prettily', 'ADV'), ('turned', 'VERB'), (' ', 'SPACE'), ('Yes', 'INTJ'), ('yes', 'INTJ'), ('I', 'PRON'), ('will', 'AUX'), ('go', 'VERB'), ('and', 'CCONJ'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('sure', 'ADJ'), ('enough', 'ADJ'), (' ', 'SPACE'), ('How', 'SCONJ'), ('attentive', 'ADJ'), ('she', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('bodyThank', 'NOUN'), ('you', 'PRON'), ('my', 'PRON'), ('dear', 'NOUN'), ('for', 'ADP'), ('shewing', 'VERB'), ('it', 'PRON'), ('me', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('as', 'ADV'), ('pretty', 'ADJ'), ('a', 'DET'), ('letter', 'NOUN'), ('as', 'ADP'), ('ever', 'ADV'), ('I', 'PRON'), ('saw', 'VERB'), ('and', 'CCONJ'), ('does', 'AUX'), ('Lucys', 'PROPN'), ('head', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('heart', 'VERB'), ('great', 'ADJ'), ('credit', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('39', 'NUM'), ('\n\n\n', 'SPACE'), ('The', 'DET'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('had', 'AUX'), ('now', 'ADV'), ('been', 'AUX'), ('rather', 'ADV'), ('more', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('two', 'NUM'), ('months', 'NOUN'), ('in', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('Mariannes', 'PROPN'), ('impatience', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('gone', 'AUX'), ('\n', 'SPACE'), ('increased', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('sighed', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('air', 'NOUN'), ('the', 'DET'), ('liberty', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('quiet', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('and', 'CCONJ'), ('fancied', 'VERB'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('any', 'DET'), ('place', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('ease', 'NOUN'), ('Barton', 'PROPN'), ('must', 'AUX'), ('do', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('less', 'ADV'), ('anxious', 'ADJ'), ('than', 'ADP'), ('herself', 'PRON'), ('for', 'ADP'), ('their', 'PRON'), ('removal', 'NOUN'), ('and', 'CCONJ'), ('only', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('less', 'ADV'), ('bent', 'ADJ'), ('on', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('effected', 'VERB'), ('immediately', 'ADV'), ('as', 'SCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('conscious', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('difficulties', 'NOUN'), ('of', 'ADP'), ('so', 'ADV'), ('long', 'ADV'), ('a', 'DET'), ('journey', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('brought', 'VERB'), ('to', 'PART'), ('acknowledge', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('began', 'VERB'), ('however', 'ADV'), ('seriously', 'ADV'), ('to', 'PART'), ('turn', 'VERB'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('towards', 'ADP'), ('\n', 'SPACE'), ('its', 'PRON'), ('accomplishment', 'NOUN'), ('and', 'CCONJ'), ('had', 'AUX'), ('already', 'ADV'), ('mentioned', 'VERB'), ('their', 'PRON'), ('wishes', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('their', 'PRON'), ('kind', 'NOUN'), ('hostess', 'NOUN'), ('who', 'PRON'), ('resisted', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('eloquence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('goodwill', 'NOUN'), ('when', 'SCONJ'), ('a', 'DET'), ('plan', 'NOUN'), ('was', 'AUX'), ('suggested', 'VERB'), ('\n', 'SPACE'), ('which', 'PRON'), ('though', 'ADV'), ('detaining', 'VERB'), ('them', 'PRON'), ('from', 'ADP'), ('home', 'NOUN'), ('yet', 'ADV'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('\n', 'SPACE'), ('longer', 'ADV'), ('appeared', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('altogether', 'ADV'), ('much', 'ADV'), ('more', 'ADV'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('The', 'DET'), ('Palmers', 'PROPN'), ('were', 'AUX'), ('to', 'PART'), ('remove', 'VERB'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('about', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('March', 'PROPN'), ('for', 'ADP'), ('the', 'DET'), ('Easter', 'PROPN'), ('holidays', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('with', 'ADP'), ('both', 'CCONJ'), ('her', 'PRON'), ('friends', 'NOUN'), ('received', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('warm', 'ADJ'), ('invitation', 'NOUN'), ('from', 'ADP'), ('Charlotte', 'PROPN'), ('to', 'PART'), ('go', 'VERB'), ('with', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('This', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('in', 'ADP'), ('itself', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('sufficient', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('delicacy', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwoodbut', 'PROPN'), ('it', 'PRON'), ('was', 'AUX'), ('inforced', 'VERB'), ('with', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('real', 'ADJ'), ('\n', 'SPACE'), ('politeness', 'NOUN'), ('by', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('himself', 'PRON'), ('as', 'SCONJ'), ('joined', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('great', 'ADJ'), ('amendment', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manners', 'NOUN'), ('towards', 'ADP'), ('them', 'PRON'), ('since', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('known', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('unhappy', 'ADJ'), ('induced', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('accept', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('she', 'PRON'), ('told', 'VERB'), ('Marianne', 'PROPN'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('however', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('first', 'ADJ'), ('reply', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('auspicious', 'ADJ'), ('\n\n', 'SPACE'), ('Clevelandshe', 'PROPN'), ('cried', 'VERB'), ('with', 'ADP'), ('great', 'ADJ'), ('agitation', 'NOUN'), ('\n', 'SPACE'), ('No', 'INTJ'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('forget', 'AUX'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('gently', 'ADV'), ('that', 'SCONJ'), ('its', 'PRON'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('notthat', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('in', 'ADP'), ('SomersetshireI', 'PROPN'), ('can', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('SomersetshireThere', 'PROPN'), ('where', 'SCONJ'), ('I', 'PRON'), ('looked', 'VERB'), ('forward', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('goingNo', 'PROPN'), ('Elinor', 'PROPN'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('expect', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('go', 'VERB'), ('there', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('argue', 'VERB'), ('upon', 'SCONJ'), ('the', 'DET'), ('propriety', 'NOUN'), ('of', 'ADP'), ('overcoming', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('feelingsshe', 'NOUN'), ('only', 'ADV'), ('endeavoured', 'VERB'), ('to', 'PART'), ('counteract', 'VERB'), ('them', 'PRON'), ('by', 'ADP'), ('\n', 'SPACE'), ('working', 'VERB'), ('on', 'ADP'), ('othersrepresented', 'VERB'), ('it', 'PRON'), ('therefore', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('measure', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('would', 'AUX'), ('fix', 'VERB'), ('the', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('returning', 'VERB'), ('to', 'ADP'), ('that', 'DET'), ('dear', 'ADJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('whom', 'PRON'), ('she', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('wished', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('more', 'ADV'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('more', 'ADV'), ('comfortable', 'ADJ'), ('manner', 'NOUN'), ('than', 'SCONJ'), ('any', 'DET'), ('other', 'ADJ'), ('plan', 'NOUN'), ('could', 'AUX'), ('do', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('perhaps', 'ADV'), ('without', 'ADP'), ('any', 'DET'), ('greater', 'ADJ'), ('delay', 'NOUN'), (' ', 'SPACE'), ('From', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('within', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('miles', 'NOUN'), ('of', 'ADP'), ('Bristol', 'PROPN'), ('the', 'DET'), ('distance', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('Barton', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('beyond', 'ADP'), ('one', 'NUM'), ('day', 'NOUN'), ('though', 'SCONJ'), ('a', 'DET'), ('long', 'ADJ'), ('days', 'NOUN'), ('journey', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('their', 'PRON'), ('mothers', 'NOUN'), ('servant', 'NOUN'), ('might', 'AUX'), ('easily', 'ADV'), ('come', 'VERB'), ('there', 'ADV'), ('to', 'PART'), ('attend', 'VERB'), ('\n', 'SPACE'), ('them', 'PRON'), ('down', 'ADP'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('occasion', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('staying', 'VERB'), ('above', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('they', 'PRON'), ('might', 'AUX'), ('now', 'ADV'), ('be', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('home', 'NOUN'), ('in', 'ADP'), ('little', 'ADJ'), ('more', 'ADJ'), ('than', 'ADP'), ('three', 'NUM'), ('weeks', 'NOUN'), ('time', 'NOUN'), (' ', 'SPACE'), ('As', 'SCONJ'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('sincere', 'ADJ'), ('it', 'PRON'), ('must', 'AUX'), ('triumph', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('little', 'ADJ'), ('difficulty', 'NOUN'), ('over', 'ADP'), ('the', 'DET'), ('imaginary', 'ADJ'), ('evils', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('started', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('being', 'AUX'), ('weary', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('guest', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('pressed', 'VERB'), ('them', 'PRON'), ('very', 'ADV'), ('earnestly', 'ADV'), ('to', 'PART'), ('return', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('Cleveland', 'PROPN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('grateful', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('alter', 'VERB'), ('her', 'PRON'), ('design', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('mothers', 'NOUN'), ('\n', 'SPACE'), ('concurrence', 'NOUN'), ('being', 'AUX'), ('readily', 'ADV'), ('gained', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('relative', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('their', 'PRON'), ('return', 'NOUN'), ('was', 'AUX'), ('arranged', 'VERB'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('found', 'VERB'), ('some', 'DET'), ('relief', 'NOUN'), ('in', 'ADP'), ('drawing', 'VERB'), ('up', 'ADP'), ('a', 'DET'), ('statement', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('hours', 'NOUN'), ('that', 'PRON'), ('were', 'AUX'), ('yet', 'ADV'), ('to', 'PART'), ('divide', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('Ah', 'INTJ'), ('Colonel', 'PROPN'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('do', 'AUX'), ('without', 'ADP'), ('the', 'DET'), ('Miss', 'PROPN'), ('Dashwoodswas', 'PROPN'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('address', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('when', 'SCONJ'), ('he', 'PRON'), ('first', 'ADV'), ('called', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('after', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('leaving', 'VERB'), ('her', 'PRON'), ('was', 'AUX'), ('settledfor', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('quite', 'ADV'), ('resolved', 'VERB'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('going', 'VERB'), ('home', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('Palmersand', 'PROPN'), ('how', 'SCONJ'), ('forlorn', 'ADJ'), ('we', 'PRON'), ('\n', 'SPACE'), ('shall', 'AUX'), ('be', 'AUX'), ('when', 'SCONJ'), ('I', 'PRON'), ('come', 'VERB'), ('backLord', 'ADJ'), ('we', 'PRON'), ('shall', 'AUX'), ('sit', 'VERB'), ('and', 'CCONJ'), ('gape', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('one', 'NUM'), ('another', 'DET'), ('as', 'ADV'), ('dull', 'ADJ'), ('as', 'ADP'), ('two', 'NUM'), ('cats', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('hopes', 'NOUN'), ('by', 'ADP'), ('this', 'DET'), ('vigorous', 'ADJ'), ('\n', 'SPACE'), ('sketch', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('future', 'ADJ'), ('ennui', 'NOUN'), ('to', 'PART'), ('provoke', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('offer', 'VERB'), ('which', 'PRON'), ('might', 'AUX'), ('give', 'VERB'), ('himself', 'PRON'), ('an', 'DET'), ('escape', 'NOUN'), ('from', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('so', 'ADV'), ('she', 'PRON'), ('had', 'VERB'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('good', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('object', 'NOUN'), ('gained', 'VERB'), ('for', 'ADP'), ('on', 'ADP'), ('Elinors', 'NOUN'), ('moving', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('take', 'VERB'), ('more', 'ADV'), ('expeditiously', 'ADV'), ('the', 'DET'), ('dimensions', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('print', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('to', 'PART'), ('copy', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('friend', 'NOUN'), ('he', 'PRON'), ('followed', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('particular', 'ADJ'), ('meaning', 'NOUN'), ('and', 'CCONJ'), ('conversed', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('there', 'ADV'), ('for', 'ADP'), ('several', 'ADJ'), ('minutes', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('discourse', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('lady', 'NOUN'), ('too', 'ADV'), ('could', 'AUX'), ('not', 'PART'), ('escape', 'VERB'), ('her', 'PRON'), ('observation', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('though', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('honorable', 'ADJ'), ('to', 'PART'), ('listen', 'VERB'), ('and', 'CCONJ'), ('had', 'AUX'), ('even', 'ADV'), ('\n', 'SPACE'), ('changed', 'VERB'), ('her', 'PRON'), ('seat', 'NOUN'), ('on', 'ADP'), ('purpose', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('NOT', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('one', 'NUM'), ('close', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('piano', 'NOUN'), ('forte', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('playing', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('keep', 'VERB'), ('herself', 'PRON'), ('from', 'ADP'), ('seeing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('changed', 'VERB'), ('colour', 'NOUN'), ('attended', 'VERB'), ('with', 'ADP'), ('agitation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('too', 'ADV'), ('intent', 'ADJ'), ('on', 'ADP'), ('what', 'PRON'), ('he', 'PRON'), ('said', 'VERB'), ('to', 'PART'), ('pursue', 'VERB'), ('her', 'PRON'), ('employment', 'NOUN'), ('\n', 'SPACE'), ('Still', 'ADV'), ('farther', 'ADV'), ('in', 'ADP'), ('confirmation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('hopes', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('interval', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('turning', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('lesson', 'NOUN'), ('to', 'ADP'), ('another', 'DET'), ('\n', 'SPACE'), ('some', 'DET'), ('words', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('inevitably', 'ADV'), ('reached', 'VERB'), ('her', 'PRON'), ('ear', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('apologising', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('badness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('house', 'NOUN'), (' ', 'SPACE'), ('This', 'PRON'), ('set', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('beyond', 'ADP'), ('a', 'DET'), ('doubt', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('wondered', 'VERB'), ('indeed', 'ADV'), ('at', 'ADP'), ('his', 'PRON'), ('thinking', 'NOUN'), ('it', 'PRON'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('do', 'VERB'), ('so', 'ADV'), ('but', 'CCONJ'), ('supposed', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('proper', 'ADJ'), ('etiquette', 'NOUN'), ('\n', 'SPACE'), ('What', 'PRON'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('in', 'ADP'), ('reply', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('distinguish', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('judged', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('motion', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('lips', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('think', 'VERB'), ('THAT', 'SCONJ'), ('any', 'DET'), ('material', 'ADJ'), ('objectionand', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('commended', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('for', 'ADP'), ('being', 'AUX'), ('so', 'ADV'), ('honest', 'ADJ'), ('\n', 'SPACE'), ('They', 'PRON'), ('then', 'ADV'), ('talked', 'VERB'), ('on', 'ADP'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('longer', 'ADV'), ('without', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('catching', 'VERB'), ('a', 'DET'), ('syllable', 'NOUN'), ('when', 'SCONJ'), ('another', 'DET'), ('lucky', 'ADJ'), ('stop', 'NOUN'), ('in', 'ADP'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('performance', 'NOUN'), ('brought', 'VERB'), ('her', 'PRON'), ('these', 'DET'), ('words', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('calm', 'ADJ'), ('voice', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('take', 'VERB'), ('place', 'NOUN'), ('very', 'ADV'), ('soon', 'ADV'), ('\n\n', 'SPACE'), ('Astonished', 'VERB'), ('and', 'CCONJ'), ('shocked', 'VERB'), ('at', 'ADP'), ('so', 'ADV'), ('unloverlike', 'ADP'), ('a', 'DET'), ('speech', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('cry', 'VERB'), ('out', 'ADP'), ('Lord', 'PROPN'), ('what', 'PRON'), ('should', 'AUX'), ('\n', 'SPACE'), ('hinder', 'VERB'), ('itbut', 'ADJ'), ('checking', 'VERB'), ('her', 'PRON'), ('desire', 'NOUN'), ('confined', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('this', 'DET'), ('silent', 'ADJ'), ('ejaculation', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('strangesure', 'NOUN'), ('he', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('wait', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('older', 'ADJ'), ('\n\n', 'SPACE'), ('This', 'DET'), ('delay', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('side', 'NOUN'), ('however', 'ADV'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('seem', 'VERB'), ('to', 'PART'), ('offend', 'VERB'), ('or', 'CCONJ'), ('mortify', 'VERB'), ('his', 'PRON'), ('fair', 'ADJ'), ('companion', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('on', 'ADP'), ('their', 'PRON'), ('breaking', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('conference', 'NOUN'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('moving', 'VERB'), ('different', 'ADJ'), ('ways', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('very', 'ADV'), ('plainly', 'ADV'), ('heard', 'VERB'), ('\n', 'SPACE'), ('Elinor', 'NOUN'), ('say', 'VERB'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('which', 'PRON'), ('shewed', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('feel', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('always', 'ADV'), ('think', 'VERB'), ('myself', 'PRON'), ('very', 'ADV'), ('much', 'ADV'), ('obliged', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('delighted', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('gratitude', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('only', 'ADV'), ('wondered', 'VERB'), ('that', 'SCONJ'), ('after', 'ADP'), ('hearing', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('sentence', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('Colonel', 'PROPN'), ('should', 'AUX'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('leave', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('did', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('sangfroid', 'NOUN'), ('and', 'CCONJ'), ('go', 'VERB'), ('away', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('making', 'VERB'), ('her', 'PRON'), ('any', 'DET'), ('replyShe', 'NOUN'), ('had', 'AUX'), ('not', 'PART'), ('thought', 'VERB'), ('her', 'PRON'), ('old', 'ADJ'), ('\n', 'SPACE'), ('friend', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('made', 'VERB'), ('so', 'ADV'), ('indifferent', 'ADJ'), ('a', 'DET'), ('suitor', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('had', 'AUX'), ('really', 'ADV'), ('passed', 'VERB'), ('between', 'ADP'), ('them', 'PRON'), ('was', 'AUX'), ('to', 'ADP'), ('this', 'DET'), ('effect', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('said', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('great', 'ADJ'), ('compassion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('injustice', 'NOUN'), ('your', 'PRON'), ('friend', 'NOUN'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('has', 'AUX'), ('suffered', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('his', 'PRON'), ('family', 'NOUN'), ('for', 'SCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('understand', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('right', 'ADJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('entirely', 'ADV'), ('cast', 'VERB'), ('off', 'ADP'), ('by', 'ADP'), ('them', 'PRON'), ('for', 'ADP'), ('persevering', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('engagement', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('deserving', 'ADJ'), ('young', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('Have', 'AUX'), ('I', 'PRON'), ('been', 'AUX'), ('rightly', 'ADV'), ('informedIs', 'VERB'), ('it', 'PRON'), ('so', 'SCONJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('told', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('The', 'DET'), ('cruelty', 'NOUN'), ('the', 'DET'), ('impolitic', 'ADJ'), ('crueltyhe', 'NOUN'), ('replied', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('great', 'ADJ'), ('feelingof', 'ADJ'), ('dividing', 'NOUN'), ('or', 'CCONJ'), ('attempting', 'VERB'), ('to', 'PART'), ('divide', 'VERB'), ('\n', 'SPACE'), ('two', 'NUM'), ('young', 'ADJ'), ('people', 'NOUN'), ('long', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('is', 'AUX'), ('terrible', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('does', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('doingwhat', 'VERB'), ('\n', 'SPACE'), ('she', 'PRON'), ('may', 'AUX'), ('drive', 'VERB'), ('her', 'PRON'), ('son', 'NOUN'), ('to', 'ADP'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('two', 'NUM'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('three', 'NUM'), ('times', 'NOUN'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('and', 'CCONJ'), ('am', 'AUX'), ('much', 'ADV'), ('pleased', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('young', 'ADJ'), ('man', 'NOUN'), ('with', 'ADP'), ('whom', 'PRON'), ('one', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('intimately', 'ADV'), ('acquainted', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('but', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('seen', 'VERB'), ('enough', 'ADJ'), ('of', 'ADP'), ('him', 'PRON'), ('to', 'PART'), ('wish', 'VERB'), ('him', 'PRON'), ('well', 'ADV'), ('for', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('sake', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('of', 'ADP'), ('yours', 'NOUN'), ('I', 'PRON'), ('wish', 'VERB'), ('it', 'PRON'), ('still', 'ADV'), ('more', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('understand', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('intends', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('orders', 'NOUN'), (' ', 'SPACE'), ('Will', 'AUX'), ('you', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('so', 'ADV'), ('good', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('tell', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('the', 'DET'), ('living', 'NOUN'), ('of', 'ADP'), ('Delaford', 'PROPN'), ('\n', 'SPACE'), ('now', 'ADV'), ('just', 'ADV'), ('vacant', 'ADJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('informed', 'VERB'), ('by', 'ADP'), ('this', 'DET'), ('days', 'NOUN'), ('post', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('his', 'PRON'), ('if', 'SCONJ'), ('he', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('worth', 'ADJ'), ('his', 'PRON'), ('acceptancebut', 'NOUN'), ('THAT', 'PRON'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('so', 'ADV'), ('unfortunately', 'ADV'), ('circumstanced', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('is', 'AUX'), ('now', 'ADV'), ('\n', 'SPACE'), ('it', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('nonsense', 'NOUN'), ('to', 'PART'), ('appear', 'VERB'), ('to', 'PART'), ('doubt', 'VERB'), ('I', 'PRON'), ('only', 'ADV'), ('wish', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('more', 'ADV'), (' ', 'SPACE'), ('valuable', 'ADJ'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('rectory', 'NOUN'), ('but', 'CCONJ'), ('a', 'DET'), ('small', 'ADJ'), ('one', 'NUM'), ('\n', 'SPACE'), ('the', 'DET'), ('late', 'ADJ'), ('incumbent', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('did', 'AUX'), ('not', 'PART'), ('make', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('200', 'NUM'), ('L', 'PROPN'), ('per', 'ADP'), ('annum', 'PROPN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('certainly', 'ADV'), ('capable', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('improvement', 'NOUN'), ('I', 'PRON'), ('fear', 'VERB'), ('not', 'PART'), ('to', 'ADP'), ('such', 'DET'), ('an', 'DET'), ('amount', 'NOUN'), ('as', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('afford', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('very', 'ADV'), ('comfortable', 'ADJ'), ('income', 'NOUN'), (' ', 'SPACE'), ('Such', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('however', 'ADV'), ('my', 'PRON'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('presenting', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('will', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('great', 'ADJ'), (' ', 'SPACE'), ('Pray', 'PROPN'), ('assure', 'VERB'), ('him', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinors', 'NOUN'), ('astonishment', 'NOUN'), ('at', 'ADP'), ('this', 'DET'), ('commission', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('hardly', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('greater', 'ADJ'), ('had', 'AUX'), ('the', 'DET'), ('Colonel', 'PROPN'), ('been', 'AUX'), ('really', 'ADV'), ('\n', 'SPACE'), ('making', 'VERB'), ('her', 'PRON'), ('an', 'DET'), ('offer', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('hand', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('preferment', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('only', 'ADV'), ('two', 'NUM'), ('days', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('considered', 'VERB'), ('as', 'ADV'), ('hopeless', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('Edward', 'PROPN'), ('was', 'AUX'), ('already', 'ADV'), ('provided', 'VERB'), ('to', 'PART'), ('enable', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('marry', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('SHE', 'PROPN'), ('of', 'ADP'), ('all', 'DET'), ('people', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('was', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('to', 'PART'), ('\n', 'SPACE'), ('bestow', 'VERB'), ('itHer', 'ADJ'), ('emotion', 'NOUN'), ('was', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('\n', 'SPACE'), ('attributed', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('different', 'ADJ'), ('causebut', 'NOUN'), ('whatever', 'DET'), ('minor', 'ADJ'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('less', 'ADV'), ('pure', 'ADJ'), ('less', 'ADV'), ('pleasing', 'ADJ'), ('might', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('share', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('that', 'DET'), ('emotion', 'NOUN'), ('her', 'PRON'), ('esteem', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('general', 'ADJ'), ('benevolence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('gratitude', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('particular', 'ADJ'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('together', 'ADV'), ('prompted', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('to', 'ADP'), ('this', 'DET'), ('act', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('strongly', 'ADV'), ('felt', 'VERB'), ('and', 'CCONJ'), ('warmly', 'ADV'), ('expressed', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('thanked', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('heart', 'NOUN'), ('spoke', 'VERB'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('principles', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('disposition', 'NOUN'), ('with', 'ADP'), ('that', 'DET'), ('praise', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('knew', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('deserve', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('promised', 'VERB'), ('to', 'PART'), ('undertake', 'VERB'), ('the', 'DET'), ('commission', 'NOUN'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('really', 'ADV'), ('his', 'PRON'), ('wish', 'NOUN'), ('to', 'PART'), ('put', 'VERB'), ('off', 'ADP'), ('so', 'ADV'), ('agreeable', 'ADJ'), ('an', 'DET'), ('office', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('another', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('\n', 'SPACE'), ('thinking', 'VERB'), ('that', 'SCONJ'), ('no', 'DET'), ('one', 'PRON'), ('could', 'AUX'), ('so', 'ADV'), ('well', 'ADV'), ('perform', 'VERB'), ('it', 'PRON'), ('as', 'SCONJ'), ('himself', 'PRON'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('office', 'NOUN'), ('in', 'ADP'), ('short', 'ADJ'), ('from', 'ADP'), ('which', 'PRON'), ('unwilling', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('the', 'DET'), ('pain', 'NOUN'), ('of', 'ADP'), ('receiving', 'VERB'), ('an', 'DET'), ('obligation', 'NOUN'), ('from', 'ADP'), ('HER', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('spared', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('on', 'ADP'), ('motives', 'NOUN'), ('of', 'ADP'), ('equal', 'ADJ'), ('delicacy', 'NOUN'), ('\n', 'SPACE'), ('declining', 'VERB'), ('it', 'PRON'), ('likewise', 'ADV'), ('still', 'ADV'), ('seemed', 'VERB'), ('so', 'ADV'), ('desirous', 'ADJ'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('given', 'VERB'), ('through', 'ADP'), ('her', 'PRON'), ('means', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('on', 'ADP'), ('any', 'DET'), ('account', 'NOUN'), ('\n', 'SPACE'), ('make', 'VERB'), ('farther', 'ADJ'), ('opposition', 'NOUN'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('she', 'PRON'), ('believed', 'VERB'), ('was', 'AUX'), ('still', 'ADV'), ('in', 'ADP'), ('\n', 'SPACE'), ('town', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('fortunately', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('heard', 'VERB'), ('his', 'PRON'), ('address', 'NOUN'), ('from', 'ADP'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('undertake', 'VERB'), ('therefore', 'ADV'), ('to', 'PART'), ('inform', 'VERB'), ('him', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('After', 'SCONJ'), ('this', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('settled', 'VERB'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('began', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('advantage', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('securing', 'VERB'), ('so', 'ADV'), ('respectable', 'ADJ'), ('and', 'CCONJ'), ('agreeable', 'ADJ'), ('a', 'DET'), ('neighbour', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('THEN', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('that', 'SCONJ'), ('he', 'PRON'), ('mentioned', 'VERB'), ('with', 'ADP'), ('regret', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('house', 'NOUN'), ('was', 'AUX'), ('small', 'ADJ'), ('and', 'CCONJ'), ('indifferentan', 'ADJ'), ('evil', 'NOUN'), ('which', 'DET'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('supposed', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('do', 'AUX'), ('made', 'VERB'), ('very', 'ADJ'), ('light', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('at', 'ADV'), ('least', 'ADJ'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('regarded', 'VERB'), ('its', 'PRON'), ('size', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('smallness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('imagine', 'VERB'), ('any', 'DET'), ('inconvenience', 'NOUN'), ('to', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('proportion', 'NOUN'), ('to', 'ADP'), ('their', 'PRON'), ('family', 'NOUN'), ('and', 'CCONJ'), ('income', 'NOUN'), ('\n\n', 'SPACE'), ('By', 'ADP'), ('which', 'PRON'), ('the', 'DET'), ('Colonel', 'PROPN'), ('was', 'AUX'), ('surprised', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('that', 'SCONJ'), ('SHE', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('considering', 'VERB'), ('Mr', 'PROPN'), ('Ferrarss', 'PROPN'), ('marriage', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('certain', 'ADJ'), ('\n', 'SPACE'), ('consequence', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('presentation', 'NOUN'), ('for', 'ADP'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('suppose', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('possible', 'ADJ'), ('that', 'SCONJ'), ('Delaford', 'PROPN'), ('living', 'NOUN'), ('could', 'AUX'), ('supply', 'VERB'), ('such', 'DET'), ('an', 'DET'), ('income', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('anybody', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('style', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('would', 'AUX'), ('venture', 'VERB'), ('to', 'PART'), ('settle', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('said', 'VERB'), ('so', 'ADV'), ('\n\n', 'SPACE'), ('This', 'DET'), ('little', 'ADJ'), ('rectory', 'NOUN'), ('CAN', 'AUX'), ('do', 'VERB'), ('no', 'DET'), ('more', 'ADJ'), ('than', 'SCONJ'), ('make', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'NOUN'), ('\n', 'SPACE'), ('comfortable', 'ADJ'), ('as', 'ADP'), ('a', 'DET'), ('bachelor', 'NOUN'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('enable', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('marry', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('sorry', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('patronage', 'NOUN'), ('ends', 'VERB'), ('with', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('my', 'PRON'), ('interest', 'NOUN'), ('is', 'AUX'), ('hardly', 'ADV'), ('more', 'ADV'), ('extensive', 'ADJ'), (' ', 'SPACE'), ('If', 'SCONJ'), ('however', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('an', 'DET'), ('unforeseen', 'ADJ'), ('chance', 'NOUN'), ('it', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('serve', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('farther', 'ADV'), ('I', 'PRON'), ('must', 'AUX'), ('think', 'VERB'), ('very', 'ADV'), ('differently', 'ADV'), ('of', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('now', 'ADV'), ('do', 'AUX'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('as', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('useful', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('him', 'PRON'), ('then', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('sincerely', 'ADV'), ('wish', 'VERB'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('What', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('now', 'ADV'), ('doing', 'VERB'), ('indeed', 'ADV'), ('seems', 'VERB'), ('nothing', 'PRON'), ('at', 'ADV'), ('all', 'ADV'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('it', 'PRON'), ('can', 'AUX'), ('advance', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('little', 'ADJ'), ('towards', 'ADP'), ('what', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('his', 'PRON'), ('principal', 'NOUN'), ('his', 'PRON'), ('only', 'ADJ'), ('object', 'NOUN'), ('of', 'ADP'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('marriage', 'NOUN'), ('must', 'AUX'), ('still', 'ADV'), ('be', 'AUX'), ('a', 'DET'), ('distant', 'ADJ'), ('goodat', 'NOUN'), ('least', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('afraid', 'ADJ'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('take', 'VERB'), ('place', 'NOUN'), ('very', 'ADV'), ('soon', 'ADV'), ('\n\n', 'SPACE'), ('Such', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('sentence', 'NOUN'), ('which', 'PRON'), ('when', 'SCONJ'), ('misunderstood', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('justly', 'ADV'), ('offended', 'VERB'), ('the', 'DET'), ('delicate', 'ADJ'), ('feelings', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('after', 'ADP'), ('this', 'DET'), ('narration', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('really', 'ADV'), ('passed', 'VERB'), ('between', 'ADP'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('while', 'SCONJ'), ('they', 'PRON'), ('stood', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('gratitude', 'NOUN'), ('expressed', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('on', 'ADP'), ('their', 'PRON'), ('parting', 'NOUN'), ('may', 'AUX'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('appear', 'VERB'), ('in', 'ADP'), ('general', 'ADJ'), ('not', 'PART'), ('less', 'ADV'), ('reasonably', 'ADV'), ('excited', 'ADJ'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('less', 'ADV'), ('properly', 'ADV'), ('worded', 'VERB'), ('than', 'SCONJ'), ('if', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('arisen', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('an', 'DET'), ('offer', 'NOUN'), ('of', 'ADP'), ('marriage', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('40', 'NUM'), ('\n\n\n', 'SPACE'), ('Well', 'INTJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('sagaciously', 'ADV'), ('smiling', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('gentleman', 'NOUN'), ('had', 'AUX'), ('withdrawn', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('you', 'PRON'), ('what', 'PRON'), ('the', 'DET'), ('Colonel', 'PROPN'), ('has', 'AUX'), ('been', 'AUX'), ('saying', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('though', 'ADV'), ('upon', 'SCONJ'), ('my', 'PRON'), ('honour', 'NOUN'), ('I', 'PRON'), ('TRIED', 'VERB'), ('to', 'PART'), ('keep', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('hearing', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('help', 'VERB'), ('catching', 'VERB'), ('enough', 'ADV'), ('to', 'PART'), ('understand', 'VERB'), ('his', 'PRON'), ('business', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('assure', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('better', 'ADV'), ('pleased', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('wish', 'VERB'), ('you', 'PRON'), ('joy', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('my', 'PRON'), ('heart', 'NOUN'), ('\n\n', 'SPACE'), ('Thank', 'VERB'), ('you', 'PRON'), ('maam', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('great', 'ADJ'), ('joy', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('feel', 'VERB'), ('the', 'DET'), ('goodness', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('most', 'ADV'), ('sensibly', 'ADV'), (' ', 'SPACE'), ('There', 'PRON'), ('are', 'VERB'), ('not', 'PART'), ('many', 'ADJ'), ('men', 'NOUN'), ('who', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('act', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('done', 'VERB'), (' ', 'SPACE'), ('Few', 'ADJ'), ('people', 'NOUN'), ('who', 'PRON'), ('have', 'AUX'), ('so', 'ADV'), ('compassionate', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('heart', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('more', 'ADV'), ('astonished', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('Lord', 'PROPN'), ('my', 'PRON'), ('dear', 'NOUN'), ('you', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('modest', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('ant', 'VERB'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('astonished', 'VERB'), ('at', 'ADP'), ('it', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('for', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('often', 'ADV'), ('thought', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('late', 'ADV'), ('there', 'PRON'), ('was', 'VERB'), ('nothing', 'PRON'), ('more', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('happen', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('judged', 'VERB'), ('from', 'ADP'), ('your', 'PRON'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('\n', 'SPACE'), ('general', 'ADJ'), ('benevolence', 'NOUN'), ('but', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('you', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('foresee', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('opportunity', 'NOUN'), ('would', 'AUX'), ('so', 'ADV'), ('very', 'ADV'), ('soon', 'ADV'), ('occur', 'VERB'), ('\n\n', 'SPACE'), ('Opportunity', 'NOUN'), ('repeated', 'VERB'), ('Mrs', 'PROPN'), ('JenningsOh', 'PROPN'), ('as', 'ADP'), ('to', 'ADP'), ('that', 'PRON'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('has', 'AUX'), ('once', 'ADV'), ('made', 'VERB'), ('up', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('to', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('somehow', 'ADV'), ('or', 'CCONJ'), ('other', 'ADJ'), ('he', 'PRON'), ('will', 'AUX'), ('soon', 'ADV'), ('find', 'VERB'), ('an', 'DET'), ('opportunity', 'NOUN'), ('\n', 'SPACE'), ('Well', 'INTJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('I', 'PRON'), ('wish', 'VERB'), ('you', 'PRON'), ('joy', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('ever', 'ADV'), ('there', 'PRON'), ('was', 'VERB'), ('a', 'DET'), ('happy', 'ADJ'), ('couple', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('soon', 'ADV'), ('know', 'VERB'), ('where', 'SCONJ'), ('to', 'PART'), ('look', 'VERB'), ('for', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('mean', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('to', 'ADP'), ('Delaford', 'PROPN'), ('after', 'ADP'), ('them', 'PRON'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('faint', 'ADJ'), ('smile', 'NOUN'), ('\n\n', 'SPACE'), ('Aye', 'VERB'), ('my', 'PRON'), ('dear', 'NOUN'), ('that', 'SCONJ'), ('I', 'PRON'), ('do', 'VERB'), ('indeed', 'ADV'), (' ', 'SPACE'), ('And', 'CCONJ'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('being', 'AUX'), ('a', 'DET'), ('bad', 'ADJ'), ('one', 'NOUN'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('the', 'DET'), ('Colonel', 'PROPN'), ('would', 'AUX'), ('be', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('it', 'PRON'), ('is', 'AUX'), ('as', 'ADV'), ('good', 'ADJ'), ('a', 'DET'), ('one', 'NUM'), ('as', 'ADP'), ('ever', 'ADV'), ('I', 'PRON'), ('saw', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('spoke', 'VERB'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('repair', 'NOUN'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('and', 'CCONJ'), ('whose', 'DET'), ('fault', 'NOUN'), ('is', 'AUX'), ('that', 'PRON'), ('why', 'SCONJ'), ('do', 'AUX'), ('nt', 'PART'), ('he', 'PRON'), ('repair', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('who', 'PRON'), ('should', 'AUX'), ('do', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('himself', 'PRON'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('interrupted', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('servants', 'NOUN'), ('coming', 'VERB'), ('in', 'ADP'), ('to', 'PART'), ('\n', 'SPACE'), ('announce', 'VERB'), ('the', 'DET'), ('carriage', 'NOUN'), ('being', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('preparing', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('I', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('gone', 'VERB'), ('before', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('half', 'DET'), ('\n', 'SPACE'), ('my', 'PRON'), ('talk', 'NOUN'), ('out', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('however', 'ADV'), ('we', 'PRON'), ('may', 'AUX'), ('have', 'VERB'), ('it', 'PRON'), ('all', 'ADV'), ('over', 'ADV'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('evening', 'NOUN'), ('for', 'SCONJ'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('alone', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('to', 'PART'), ('go', 'VERB'), ('with', 'ADP'), ('me', 'PRON'), ('for', 'SCONJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('your', 'PRON'), ('mind', 'NOUN'), ('is', 'AUX'), ('too', 'ADV'), ('full', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('to', 'PART'), ('care', 'VERB'), ('for', 'ADP'), ('company', 'NOUN'), ('and', 'CCONJ'), ('besides', 'SCONJ'), ('you', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('long', 'ADJ'), ('to', 'PART'), ('tell', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('all', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('left', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('before', 'SCONJ'), ('the', 'DET'), ('conversation', 'NOUN'), ('began', 'VERB'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('maam', 'PROPN'), ('I', 'PRON'), ('shall', 'AUX'), ('tell', 'VERB'), ('Marianne', 'PROPN'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('mention', 'VERB'), ('it', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('to', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('very', 'ADV'), ('well', 'ADV'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('rather', 'ADV'), ('disappointed', 'VERB'), ('\n', 'SPACE'), ('Then', 'ADV'), ('you', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('me', 'PRON'), ('tell', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('for', 'ADP'), ('I', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('going', 'VERB'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'ADP'), ('Holborn', 'PROPN'), ('today', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maam', 'PROPN'), ('not', 'PART'), ('even', 'ADV'), ('Lucy', 'PROPN'), ('if', 'SCONJ'), ('you', 'PRON'), ('please', 'VERB'), ('\n', 'SPACE'), ('One', 'NUM'), ('days', 'NOUN'), ('delay', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('very', 'ADV'), ('material', 'ADJ'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'AUX'), ('written', 'VERB'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('I', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('ought', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('mentioned', 'VERB'), ('to', 'ADP'), ('any', 'DET'), ('body', 'NOUN'), ('else', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('do', 'VERB'), ('THAT', 'PRON'), ('directly', 'ADV'), ('\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('of', 'ADP'), ('importance', 'NOUN'), ('that', 'SCONJ'), ('no', 'DET'), ('time', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('lost', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('he', 'PRON'), ('will', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('have', 'VERB'), ('much', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('relative', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('ordination', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('speech', 'NOUN'), ('at', 'ADP'), ('first', 'ADV'), ('puzzled', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('exceedingly', 'ADV'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('written', 'VERB'), ('to', 'ADP'), ('about', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('hurry', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('immediately', 'ADV'), ('comprehend', 'VERB'), ('\n', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('reflection', 'NOUN'), ('however', 'ADV'), ('produced', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('happy', 'ADJ'), ('idea', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('exclaimed', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('hoI', 'INTJ'), ('understand', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('man', 'NOUN'), (' ', 'SPACE'), ('Well', 'INTJ'), ('so', 'ADV'), ('much', 'ADV'), ('the', 'DET'), ('better', 'ADJ'), ('for', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('Ay', 'INTJ'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('ordained', 'VERB'), ('in', 'ADP'), ('readiness', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('find', 'VERB'), ('things', 'NOUN'), ('are', 'AUX'), ('so', 'ADV'), ('forward', 'ADV'), ('between', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('this', 'PRON'), ('rather', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('character', 'NOUN'), (' ', 'SPACE'), ('Should', 'AUX'), ('not', 'PART'), ('the', 'DET'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('write', 'NOUN'), ('himselfsure', 'NOUN'), ('he', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('proper', 'ADJ'), ('person', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('quite', 'ADV'), ('understand', 'VERB'), ('the', 'DET'), ('beginning', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('speech', 'NOUN'), ('neither', 'CCONJ'), ('did', 'AUX'), ('she', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('worth', 'ADJ'), ('\n', 'SPACE'), ('inquiring', 'VERB'), ('into', 'ADP'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('only', 'ADV'), ('replied', 'VERB'), ('to', 'ADP'), ('its', 'PRON'), ('conclusion', 'NOUN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('is', 'AUX'), ('so', 'ADV'), ('delicate', 'ADJ'), ('a', 'DET'), ('man', 'NOUN'), ('that', 'PRON'), ('he', 'PRON'), ('rather', 'ADV'), ('\n', 'SPACE'), ('wished', 'VERB'), ('any', 'DET'), ('one', 'NOUN'), ('to', 'PART'), ('announce', 'VERB'), ('his', 'PRON'), ('intentions', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('than', 'ADP'), ('himself', 'PRON'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('so', 'ADV'), ('YOU', 'PRON'), ('are', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('Well', 'INTJ'), ('THAT', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('odd', 'ADJ'), ('\n', 'SPACE'), ('kind', 'NOUN'), ('of', 'ADP'), ('delicacy', 'NOUN'), (' ', 'SPACE'), ('However', 'ADV'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('disturb', 'VERB'), ('you', 'PRON'), ('seeing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('preparing', 'VERB'), ('to', 'PART'), ('write', 'VERB'), (' ', 'SPACE'), ('You', 'PRON'), ('know', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('concerns', 'NOUN'), ('best', 'ADV'), ('\n', 'SPACE'), ('So', 'ADV'), ('goodby', 'NOUN'), ('my', 'PRON'), ('dear', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('heard', 'VERB'), ('of', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('please', 'VERB'), ('me', 'PRON'), ('so', 'ADV'), ('well', 'ADV'), ('since', 'SCONJ'), ('Charlotte', 'PROPN'), ('was', 'AUX'), ('brought', 'VERB'), ('to', 'ADP'), ('bed', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('away', 'ADV'), ('she', 'PRON'), ('went', 'VERB'), ('but', 'CCONJ'), ('returning', 'VERB'), ('again', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('just', 'ADV'), ('been', 'AUX'), ('thinking', 'VERB'), ('of', 'ADP'), ('Bettys', 'PROPN'), ('sister', 'NOUN'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('get', 'VERB'), ('her', 'PRON'), ('so', 'ADV'), ('good', 'ADJ'), ('a', 'DET'), ('mistress', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('whether', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('do', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('ladys', 'ADJ'), ('maid', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('ca', 'AUX'), ('nt', 'PART'), ('tell', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('is', 'AUX'), ('an', 'DET'), ('excellent', 'ADJ'), ('housemaid', 'NOUN'), ('and', 'CCONJ'), ('works', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('well', 'ADV'), ('at', 'ADP'), ('her', 'PRON'), ('needle', 'NOUN'), (' ', 'SPACE'), ('However', 'ADV'), ('you', 'PRON'), ('will', 'AUX'), ('think', 'VERB'), ('of', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('at', 'ADP'), ('your', 'PRON'), ('leisure', 'NOUN'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('maam', 'PROPN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('not', 'PART'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('much', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('said', 'VERB'), ('and', 'CCONJ'), ('more', 'ADV'), ('anxious', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('alone', 'ADV'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('mistress', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('beginhow', 'VERB'), ('she', 'PRON'), ('should', 'AUX'), ('express', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('note', 'NOUN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('was', 'AUX'), ('now', 'ADV'), ('all', 'DET'), ('her', 'PRON'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('particular', 'ADJ'), ('circumstances', 'NOUN'), ('between', 'ADP'), ('them', 'PRON'), ('made', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('difficulty', 'NOUN'), ('of', 'ADP'), ('that', 'PRON'), ('which', 'PRON'), ('to', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('person', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('the', 'DET'), ('easiest', 'ADJ'), ('thing', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('but', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('equally', 'ADV'), ('feared', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('or', 'CCONJ'), ('too', 'ADV'), ('little', 'ADJ'), ('and', 'CCONJ'), ('sat', 'VERB'), ('\n', 'SPACE'), ('deliberating', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('paper', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('pen', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('band', 'NOUN'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('broken', 'VERB'), ('in', 'ADP'), ('on', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('himself', 'PRON'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('met', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('way', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('carriage', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('came', 'VERB'), ('to', 'PART'), ('leave', 'VERB'), ('his', 'PRON'), ('farewell', 'NOUN'), ('card', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('after', 'ADP'), ('apologising', 'VERB'), ('for', 'ADP'), ('not', 'PART'), ('returning', 'VERB'), ('herself', 'PRON'), ('had', 'AUX'), ('obliged', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('to', 'PART'), ('enter', 'VERB'), ('by', 'ADP'), ('saying', 'VERB'), ('that', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('above', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('wanted', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('on', 'ADP'), ('very', 'ADV'), ('particular', 'ADJ'), ('business', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('just', 'ADV'), ('been', 'AUX'), ('congratulating', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('midst', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('perplexity', 'NOUN'), ('that', 'SCONJ'), ('however', 'ADV'), ('difficult', 'ADJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('to', 'PART'), ('express', 'VERB'), ('herself', 'PRON'), ('properly', 'ADV'), ('by', 'ADP'), ('letter', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('at', 'ADP'), ('least', 'ADJ'), ('preferable', 'ADJ'), ('to', 'ADP'), ('giving', 'VERB'), ('the', 'DET'), ('information', 'NOUN'), ('by', 'ADP'), ('word', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mouth', 'NOUN'), ('when', 'SCONJ'), ('her', 'PRON'), ('visitor', 'NOUN'), ('entered', 'VERB'), ('to', 'PART'), ('force', 'VERB'), ('her', 'PRON'), ('upon', 'SCONJ'), ('this', 'DET'), ('\n', 'SPACE'), ('greatest', 'ADJ'), ('exertion', 'NOUN'), ('of', 'ADP'), ('all', 'DET'), (' ', 'SPACE'), ('Her', 'PRON'), ('astonishment', 'NOUN'), ('and', 'CCONJ'), ('confusion', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('very', 'ADV'), ('great', 'ADJ'), ('on', 'ADP'), ('his', 'PRON'), ('so', 'ADV'), ('sudden', 'ADJ'), ('appearance', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('seen', 'VERB'), ('him', 'PRON'), ('before', 'ADV'), ('since', 'SCONJ'), ('his', 'PRON'), ('engagement', 'NOUN'), ('became', 'VERB'), ('public', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('not', 'PART'), ('since', 'SCONJ'), ('his', 'PRON'), ('knowing', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('acquainted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('it', 'PRON'), ('which', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('thinking', 'VERB'), ('of', 'ADP'), ('and', 'CCONJ'), ('what', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('to', 'PART'), ('tell', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('made', 'VERB'), ('her', 'PRON'), ('feel', 'VERB'), ('particularly', 'ADV'), ('uncomfortable', 'ADJ'), ('for', 'ADP'), ('some', 'DET'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('too', 'ADV'), ('was', 'AUX'), ('much', 'ADV'), ('distressed', 'ADJ'), ('and', 'CCONJ'), ('they', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('together', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('promising', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('embarrassmentWhether', 'NOUN'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('asked', 'VERB'), ('her', 'PRON'), ('pardon', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('intrusion', 'NOUN'), ('on', 'ADP'), ('first', 'ADV'), ('coming', 'VERB'), ('\n', 'SPACE'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('recollect', 'VERB'), ('but', 'CCONJ'), ('determining', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('safe', 'ADJ'), ('side', 'NOUN'), ('he', 'PRON'), ('made', 'VERB'), ('his', 'PRON'), ('apology', 'NOUN'), ('in', 'ADP'), ('form', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('say', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('after', 'ADP'), ('taking', 'VERB'), ('a', 'DET'), ('chair', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('told', 'VERB'), ('me', 'PRON'), ('said', 'VERB'), ('he', 'PRON'), ('that', 'SCONJ'), ('you', 'PRON'), ('wished', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('speak', 'VERB'), ('with', 'ADP'), ('me', 'PRON'), ('at', 'ADP'), ('least', 'ADJ'), ('I', 'PRON'), ('understood', 'VERB'), ('her', 'PRON'), ('soor', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('certainly', 'ADV'), ('should', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('intruded', 'VERB'), ('on', 'ADP'), ('you', 'PRON'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('though', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('extremely', 'ADV'), ('\n', 'SPACE'), ('sorry', 'ADJ'), ('to', 'PART'), ('leave', 'VERB'), ('London', 'PROPN'), ('without', 'ADP'), ('seeing', 'VERB'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('especially', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('will', 'AUX'), ('most', 'ADV'), ('likely', 'ADV'), ('be', 'AUX'), ('some', 'DET'), ('timeit', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('not', 'PART'), ('probable', 'ADJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('soon', 'ADV'), ('have', 'VERB'), ('the', 'DET'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('meeting', 'VERB'), ('you', 'PRON'), ('again', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('go', 'VERB'), ('to', 'ADP'), ('Oxford', 'PROPN'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('gone', 'VERB'), ('however', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('recovering', 'VERB'), ('herself', 'PRON'), ('and', 'CCONJ'), ('determined', 'VERB'), ('to', 'PART'), ('get', 'VERB'), ('over', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('much', 'ADV'), ('dreaded', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('without', 'ADP'), ('receiving', 'VERB'), ('\n', 'SPACE'), ('our', 'PRON'), ('good', 'ADJ'), ('wishes', 'NOUN'), ('even', 'ADV'), ('if', 'SCONJ'), ('we', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('person', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('quite', 'ADV'), ('right', 'ADJ'), ('in', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('said', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('something', 'PRON'), ('of', 'ADP'), ('consequence', 'NOUN'), ('to', 'PART'), ('inform', 'VERB'), ('you', 'PRON'), ('of', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('communicating', 'NOUN'), ('by', 'ADP'), ('paper', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('charged', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('agreeable', 'ADJ'), ('office', 'NOUN'), ('breathing', 'NOUN'), ('\n', 'SPACE'), ('rather', 'ADV'), ('faster', 'ADV'), ('than', 'ADP'), ('usual', 'ADJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('was', 'AUX'), ('here', 'ADV'), ('only', 'ADV'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('ago', 'ADV'), ('has', 'AUX'), ('desired', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('understanding', 'NOUN'), ('you', 'PRON'), ('mean', 'VERB'), ('to', 'PART'), ('take', 'VERB'), ('orders', 'NOUN'), ('he', 'PRON'), ('has', 'VERB'), ('\n', 'SPACE'), ('great', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('offering', 'VERB'), ('you', 'PRON'), ('the', 'DET'), ('living', 'NOUN'), ('of', 'ADP'), ('Delaford', 'PROPN'), ('\n', 'SPACE'), ('now', 'ADV'), ('just', 'ADV'), ('vacant', 'ADJ'), ('and', 'CCONJ'), ('only', 'ADV'), ('wishes', 'VERB'), ('it', 'PRON'), ('were', 'AUX'), ('more', 'ADV'), ('valuable', 'ADJ'), ('\n', 'SPACE'), ('Allow', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('congratulate', 'VERB'), ('you', 'PRON'), ('on', 'ADP'), ('having', 'VERB'), ('so', 'ADV'), ('respectable', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('welljudging', 'VERB'), ('a', 'DET'), ('friend', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('join', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('wish', 'NOUN'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('livingit', 'NOUN'), ('is', 'AUX'), ('about', 'ADV'), ('two', 'NUM'), ('hundred', 'NUM'), ('ayearwere', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('more', 'ADV'), ('considerable', 'ADJ'), ('and', 'CCONJ'), ('such', 'ADJ'), ('as', 'ADP'), ('might', 'AUX'), ('better', 'ADV'), ('enable', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('toas', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('more', 'ADJ'), ('than', 'ADP'), ('a', 'DET'), ('temporary', 'ADJ'), ('accommodation', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('yourselfsuch', 'NOUN'), ('in', 'ADV'), ('short', 'ADJ'), ('as', 'SCONJ'), ('might', 'AUX'), ('establish', 'VERB'), ('all', 'DET'), ('your', 'PRON'), ('views', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('happiness', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('Edward', 'PROPN'), ('felt', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('say', 'VERB'), ('it', 'PRON'), ('himself', 'PRON'), ('\n', 'SPACE'), ('it', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('expected', 'VERB'), ('that', 'SCONJ'), ('any', 'DET'), ('one', 'NOUN'), ('else', 'ADV'), ('should', 'AUX'), ('say', 'VERB'), ('for', 'SCONJ'), ('him', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('LOOKED', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('astonishment', 'NOUN'), ('which', 'PRON'), ('such', 'ADJ'), ('unexpected', 'ADJ'), ('\n', 'SPACE'), ('such', 'ADJ'), ('unthoughtof', 'ADJ'), ('information', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('fail', 'VERB'), ('of', 'ADP'), ('exciting', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('he', 'PRON'), ('said', 'VERB'), ('only', 'ADV'), ('these', 'DET'), ('two', 'NUM'), ('words', 'NOUN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'VERB'), ('continued', 'VERB'), ('Elinor', 'PROPN'), ('gathering', 'VERB'), ('more', 'ADJ'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('some', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('worst', 'ADJ'), ('was', 'AUX'), ('over', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('means', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('as', 'ADP'), ('a', 'DET'), ('testimony', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('concern', 'NOUN'), ('for', 'ADP'), ('what', 'PRON'), ('has', 'AUX'), ('lately', 'ADV'), ('\n', 'SPACE'), ('passedfor', 'VERB'), ('the', 'DET'), ('cruel', 'ADJ'), ('situation', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('the', 'DET'), ('unjustifiable', 'ADJ'), ('\n', 'SPACE'), ('conduct', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('family', 'NOUN'), ('has', 'AUX'), ('placed', 'VERB'), ('youa', 'ADJ'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('Marianne', 'PROPN'), ('myself', 'PRON'), ('and', 'CCONJ'), ('all', 'DET'), ('your', 'PRON'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('share', 'VERB'), ('and', 'CCONJ'), ('likewise', 'ADV'), ('as', 'ADP'), ('a', 'DET'), ('proof', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('high', 'ADJ'), ('esteem', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('general', 'ADJ'), ('character', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('particular', 'ADJ'), ('approbation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('your', 'PRON'), ('behaviour', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('occasion', 'NOUN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('give', 'VERB'), ('ME', 'PRON'), ('a', 'DET'), ('livingCan', 'NOUN'), ('it', 'PRON'), ('be', 'AUX'), ('possible', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('unkindness', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('relations', 'NOUN'), ('has', 'AUX'), ('made', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('astonished', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('friendship', 'NOUN'), ('any', 'PRON'), ('where', 'SCONJ'), ('\n\n', 'SPACE'), ('No', 'PRON'), ('replied', 'VERB'), ('be', 'AUX'), ('with', 'ADP'), ('sudden', 'ADJ'), ('consciousness', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('\n', 'SPACE'), ('find', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('YOU', 'PRON'), ('for', 'ADP'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('ignorant', 'ADJ'), ('that', 'SCONJ'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('your', 'PRON'), ('goodness', 'NOUN'), ('I', 'PRON'), ('owe', 'VERB'), ('it', 'PRON'), ('allI', 'NOUN'), ('feel', 'VERB'), ('itI', 'ADJ'), ('would', 'AUX'), ('express', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('if', 'SCONJ'), ('I', 'PRON'), ('couldbut', 'VERB'), ('as', 'SCONJ'), ('you', 'PRON'), ('well', 'ADV'), ('know', 'VERB'), ('I', 'PRON'), ('am', 'AUX'), ('no', 'DET'), ('orator', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('much', 'ADV'), ('mistaken', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('owe', 'VERB'), ('it', 'PRON'), ('entirely', 'ADV'), ('at', 'ADP'), ('least', 'ADJ'), ('almost', 'ADV'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('to', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('merit', 'NOUN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('discernment', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('hand', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('know', 'VERB'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('I', 'PRON'), ('understood', 'VERB'), ('his', 'PRON'), ('design', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('living', 'NOUN'), ('was', 'AUX'), ('vacant', 'ADJ'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('had', 'AUX'), ('it', 'PRON'), ('ever', 'ADV'), ('occurred', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('had', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('living', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('gift', 'NOUN'), (' ', 'SPACE'), ('As', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('of', 'ADP'), ('mine', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('family', 'NOUN'), ('he', 'PRON'), ('may', 'AUX'), ('perhapsindeed', 'VERB'), ('I', 'PRON'), ('know', 'VERB'), ('he', 'PRON'), ('HAS', 'VERB'), ('\n', 'SPACE'), ('still', 'ADV'), ('greater', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('bestowing', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('upon', 'SCONJ'), ('my', 'PRON'), ('word', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('owe', 'VERB'), ('nothing', 'PRON'), ('to', 'ADP'), ('my', 'PRON'), ('solicitation', 'NOUN'), ('\n\n', 'SPACE'), ('Truth', 'PROPN'), ('obliged', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('acknowledge', 'VERB'), ('some', 'DET'), ('small', 'ADJ'), ('share', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('action', 'NOUN'), ('but', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('so', 'ADV'), ('unwilling', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('appear', 'VERB'), ('as', 'ADP'), ('the', 'DET'), ('benefactress', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('that', 'SCONJ'), ('she', 'PRON'), ('acknowledged', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('with', 'ADP'), ('hesitation', 'NOUN'), ('which', 'PRON'), ('probably', 'ADV'), ('contributed', 'VERB'), ('to', 'PART'), ('fix', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('suspicion', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('recently', 'ADV'), ('entered', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('For', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('time', 'NOUN'), ('he', 'PRON'), ('sat', 'VERB'), ('deep', 'ADV'), ('in', 'ADP'), ('thought', 'NOUN'), ('after', 'SCONJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('ceased', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('speakat', 'PROPN'), ('last', 'ADJ'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('it', 'PRON'), ('were', 'AUX'), ('rather', 'ADV'), ('an', 'DET'), ('effort', 'NOUN'), ('he', 'PRON'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('seems', 'VERB'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('great', 'ADJ'), ('worth', 'NOUN'), ('and', 'CCONJ'), ('respectability', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('always', 'ADV'), ('heard', 'VERB'), ('him', 'PRON'), ('spoken', 'VERB'), ('of', 'ADP'), ('as', 'ADP'), ('such', 'ADJ'), ('and', 'CCONJ'), ('your', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('esteems', 'VERB'), ('him', 'PRON'), ('highly', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('is', 'AUX'), ('undoubtedly', 'ADV'), ('a', 'DET'), ('sensible', 'ADJ'), ('man', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('his', 'PRON'), ('manners', 'NOUN'), ('perfectly', 'ADV'), ('the', 'DET'), ('gentleman', 'NOUN'), ('\n\n', 'SPACE'), ('Indeed', 'ADV'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('find', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('farther', 'ADJ'), ('acquaintance', 'NOUN'), ('all', 'PRON'), ('that', 'PRON'), ('you', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('such', 'ADJ'), ('very', 'ADV'), ('near', 'ADP'), ('neighbours', 'NOUN'), ('for', 'SCONJ'), ('I', 'PRON'), ('understand', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('parsonage', 'NOUN'), ('is', 'AUX'), ('almost', 'ADV'), ('close', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('mansionhouse', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('particularly', 'ADV'), ('important', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('SHOULD', 'AUX'), ('be', 'AUX'), ('all', 'DET'), ('this', 'DET'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('made', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('turned', 'VERB'), ('\n', 'SPACE'), ('away', 'ADV'), ('her', 'PRON'), ('head', 'NOUN'), ('gave', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('look', 'NOUN'), ('so', 'ADV'), ('serious', 'ADJ'), ('so', 'ADV'), ('earnest', 'ADJ'), ('\n', 'SPACE'), ('so', 'ADV'), ('uncheerful', 'ADJ'), ('as', 'SCONJ'), ('seemed', 'VERB'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('hereafter', 'ADV'), ('wish', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('distance', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('parsonage', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('mansionhouse', 'NOUN'), ('\n', 'SPACE'), ('much', 'ADV'), ('greater', 'ADJ'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('I', 'PRON'), ('think', 'VERB'), ('lodges', 'NOUN'), ('in', 'ADP'), ('St', 'PROPN'), ('James', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('said', 'VERB'), ('he', 'PRON'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('rising', 'VERB'), ('from', 'ADP'), ('his', 'PRON'), ('chair', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('told', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('number', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('hurry', 'VERB'), ('away', 'ADV'), ('then', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('him', 'PRON'), ('those', 'DET'), ('thanks', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('you', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('allow', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('give', 'VERB'), ('YOU', 'PRON'), ('to', 'PART'), ('assure', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('made', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('veryan', 'NOUN'), ('exceedingly', 'ADV'), ('happy', 'ADJ'), ('man', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('offer', 'VERB'), ('to', 'PART'), ('detain', 'VERB'), ('him', 'PRON'), ('and', 'CCONJ'), ('they', 'PRON'), ('parted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('earnest', 'ADJ'), ('assurance', 'NOUN'), ('on', 'ADP'), ('HER', 'PRON'), ('side', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('unceasing', 'VERB'), ('\n', 'SPACE'), ('good', 'ADJ'), ('wishes', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('happiness', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('change', 'NOUN'), ('of', 'ADP'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('might', 'AUX'), ('befall', 'VERB'), ('him', 'PRON'), ('on', 'ADP'), ('HIS', 'PRON'), ('with', 'ADP'), ('rather', 'ADV'), ('an', 'DET'), ('attempt', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('return', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('good', 'ADJ'), ('will', 'NOUN'), ('than', 'ADP'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('expressing', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('I', 'PRON'), ('see', 'VERB'), ('him', 'PRON'), ('again', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('door', 'NOUN'), ('shut', 'VERB'), ('him', 'PRON'), ('out', 'ADP'), ('I', 'PRON'), ('shall', 'AUX'), ('see', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('husband', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('with', 'ADP'), ('this', 'DET'), ('pleasing', 'ADJ'), ('anticipation', 'NOUN'), ('she', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('\n', 'SPACE'), ('to', 'PART'), ('reconsider', 'VERB'), ('the', 'DET'), ('past', 'NOUN'), ('recall', 'VERB'), ('the', 'DET'), ('words', 'NOUN'), ('and', 'CCONJ'), ('endeavour', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('comprehend', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('feelings', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('of', 'ADP'), ('course', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('reflect', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('with', 'ADP'), ('discontent', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('came', 'VERB'), ('home', 'ADV'), ('though', 'SCONJ'), ('she', 'PRON'), ('returned', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('seeing', 'VERB'), ('people', 'NOUN'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('seen', 'VERB'), ('before', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('of', 'ADP'), ('whom', 'PRON'), ('therefore', 'ADV'), ('she', 'PRON'), ('must', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('mind', 'NOUN'), ('was', 'AUX'), ('so', 'ADV'), ('much', 'ADV'), ('more', 'ADV'), ('occupied', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('important', 'ADJ'), ('secret', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('possession', 'NOUN'), ('than', 'ADP'), ('by', 'ADP'), ('anything', 'PRON'), ('else', 'ADV'), ('that', 'PRON'), ('she', 'PRON'), ('\n', 'SPACE'), ('reverted', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('again', 'ADV'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('appeared', 'VERB'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('she', 'PRON'), ('cried', 'VERB'), ('I', 'PRON'), ('sent', 'VERB'), ('you', 'PRON'), ('up', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('young', 'ADJ'), ('man', 'NOUN'), (' ', 'SPACE'), ('Did', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('do', 'VERB'), ('rightAnd', 'CCONJ'), ('I', 'PRON'), ('suppose', 'VERB'), ('you', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('no', 'PRON'), ('great', 'ADJ'), ('difficultyYou', 'INTJ'), ('did', 'AUX'), ('not', 'PART'), ('find', 'VERB'), ('him', 'PRON'), ('very', 'ADV'), ('unwilling', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('accept', 'VERB'), ('your', 'PRON'), ('proposal', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maam', 'NOUN'), ('THAT', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('likely', 'ADJ'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('soon', 'ADV'), ('will', 'AUX'), ('he', 'PRON'), ('be', 'AUX'), ('readyFor', 'ADP'), ('it', 'PRON'), ('seems', 'VERB'), ('\n', 'SPACE'), ('all', 'PRON'), ('to', 'PART'), ('depend', 'VERB'), ('upon', 'SCONJ'), ('that', 'SCONJ'), ('\n\n', 'SPACE'), ('Really', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('I', 'PRON'), ('know', 'VERB'), ('so', 'ADV'), ('little', 'ADJ'), ('of', 'ADP'), ('these', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('forms', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('can', 'AUX'), ('hardly', 'ADV'), ('even', 'ADV'), ('conjecture', 'VERB'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('the', 'DET'), ('preparation', 'NOUN'), ('necessary', 'ADJ'), ('but', 'CCONJ'), ('I', 'PRON'), ('suppose', 'VERB'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('\n', 'SPACE'), ('months', 'NOUN'), ('will', 'AUX'), ('complete', 'VERB'), ('his', 'PRON'), ('ordination', 'NOUN'), ('\n\n', 'SPACE'), ('Two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('months', 'NOUN'), ('cried', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('Lord', 'PROPN'), ('my', 'PRON'), ('dear', 'NOUN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('calmly', 'ADV'), ('you', 'PRON'), ('talk', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('can', 'AUX'), ('the', 'DET'), ('Colonel', 'PROPN'), ('wait', 'VERB'), ('two', 'NUM'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('three', 'NUM'), ('months', 'NOUN'), ('Lord', 'PROPN'), ('bless', 'VERB'), ('meI', 'PROPN'), ('am', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('would', 'AUX'), ('put', 'VERB'), ('ME', 'PRON'), ('\n', 'SPACE'), ('quite', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('patienceAnd', 'PROPN'), ('though', 'SCONJ'), ('one', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('do', 'VERB'), ('a', 'DET'), ('kindness', 'NOUN'), ('by', 'ADP'), ('poor', 'ADJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('I', 'PRON'), ('do', 'AUX'), ('think', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('worth', 'ADJ'), ('while', 'SCONJ'), ('to', 'PART'), ('wait', 'VERB'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('months', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('Sure', 'INTJ'), ('somebody', 'PRON'), ('else', 'ADV'), ('might', 'AUX'), ('be', 'AUX'), ('found', 'VERB'), ('that', 'PRON'), ('would', 'AUX'), ('do', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('somebody', 'PRON'), ('that', 'PRON'), ('is', 'AUX'), ('in', 'ADP'), ('orders', 'NOUN'), ('already', 'ADV'), ('\n\n', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('maam', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('what', 'PRON'), ('can', 'AUX'), ('you', 'PRON'), ('be', 'AUX'), ('thinking', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('only', 'ADV'), ('object', 'NOUN'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('of', 'ADP'), ('use', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Lord', 'PROPN'), ('bless', 'VERB'), ('you', 'PRON'), ('my', 'PRON'), ('dearSure', 'ADJ'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('persuade', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('that', 'SCONJ'), ('the', 'DET'), ('Colonel', 'PROPN'), ('only', 'ADV'), ('marries', 'VERB'), ('you', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('giving', 'VERB'), ('\n', 'SPACE'), ('ten', 'NUM'), ('guineas', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('deception', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('continue', 'VERB'), ('after', 'ADP'), ('this', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('an', 'DET'), ('explanation', 'NOUN'), ('immediately', 'ADV'), ('took', 'VERB'), ('place', 'NOUN'), ('by', 'ADP'), ('which', 'PRON'), ('both', 'PRON'), ('\n', 'SPACE'), ('gained', 'VERB'), ('considerable', 'ADJ'), ('amusement', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('without', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('material', 'NOUN'), ('loss', 'NOUN'), ('of', 'ADP'), ('happiness', 'NOUN'), ('to', 'ADP'), ('either', 'CCONJ'), ('for', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('only', 'ADV'), ('exchanged', 'VERB'), ('one', 'NUM'), ('form', 'NOUN'), ('of', 'ADP'), ('delight', 'NOUN'), ('for', 'ADP'), ('another', 'PRON'), ('and', 'CCONJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('without', 'ADP'), ('forfeiting', 'VERB'), ('her', 'PRON'), ('expectation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('\n\n', 'SPACE'), ('Aye', 'NOUN'), ('aye', 'VERB'), ('the', 'DET'), ('parsonage', 'NOUN'), ('is', 'AUX'), ('but', 'CCONJ'), ('a', 'DET'), ('small', 'ADJ'), ('one', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('after', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('ebullition', 'NOUN'), ('of', 'ADP'), ('surprise', 'NOUN'), ('and', 'CCONJ'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('over', 'ADV'), ('and', 'CCONJ'), ('very', 'ADV'), ('likely', 'ADV'), ('MAY', 'AUX'), ('be', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('repair', 'NOUN'), ('but', 'CCONJ'), ('to', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('man', 'NOUN'), ('apologising', 'VERB'), ('as', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('house', 'NOUN'), ('that', 'PRON'), ('to', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('knowledge', 'NOUN'), ('has', 'VERB'), ('five', 'NUM'), ('sitting', 'VERB'), ('rooms', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('groundfloor', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('think', 'VERB'), ('the', 'DET'), ('housekeeper', 'NOUN'), ('told', 'VERB'), ('me', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('up', 'ADP'), ('fifteen', 'NUM'), ('beds', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('you', 'PRON'), ('too', 'ADV'), ('that', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('used', 'VERB'), ('to', 'PART'), ('live', 'VERB'), ('in', 'ADP'), ('Barton', 'PROPN'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('seems', 'VERB'), ('quite', 'ADV'), ('ridiculous', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('we', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('touch', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('Colonel', 'PROPN'), ('to', 'PART'), ('do', 'VERB'), ('some', 'DET'), ('thing', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('parsonage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('make', 'VERB'), ('it', 'PRON'), ('comfortable', 'ADJ'), ('for', 'ADP'), ('them', 'PRON'), ('before', 'SCONJ'), ('Lucy', 'PROPN'), ('goes', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('does', 'AUX'), ('not', 'PART'), ('seem', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('any', 'DET'), ('idea', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('livings', 'NOUN'), ('being', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('allow', 'VERB'), ('them', 'PRON'), ('to', 'PART'), ('marry', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Colonel', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('ninny', 'ADJ'), ('my', 'PRON'), ('dear', 'NOUN'), ('because', 'SCONJ'), ('he', 'PRON'), ('has', 'VERB'), ('two', 'NUM'), ('\n', 'SPACE'), ('thousand', 'NUM'), ('ayear', 'NOUN'), ('himself', 'PRON'), ('he', 'PRON'), ('thinks', 'VERB'), ('that', 'SCONJ'), ('nobody', 'PRON'), ('else', 'ADV'), ('can', 'AUX'), ('marry', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('less', 'ADJ'), (' ', 'SPACE'), ('Take', 'VERB'), ('my', 'PRON'), ('word', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('alive', 'ADJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('paying', 'VERB'), ('a', 'DET'), ('visit', 'NOUN'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('Parsonage', 'PROPN'), ('before', 'ADP'), ('Michaelmas', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('I', 'PRON'), ('sha', 'AUX'), ('nt', 'PART'), ('go', 'VERB'), ('if', 'SCONJ'), ('Lucy', 'PROPN'), ('ant', 'NOUN'), ('there', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('quite', 'ADV'), ('of', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('probability', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('not', 'PART'), ('waiting', 'VERB'), ('for', 'SCONJ'), ('any', 'DET'), ('thing', 'NOUN'), ('more', 'ADV'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('41', 'NUM'), ('\n\n\n', 'SPACE'), ('Edward', 'PROPN'), ('having', 'AUX'), ('carried', 'VERB'), ('his', 'PRON'), ('thanks', 'NOUN'), ('to', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('proceeded', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('happiness', 'NOUN'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('and', 'CCONJ'), ('such', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('\n', 'SPACE'), ('excess', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('he', 'PRON'), ('reached', 'VERB'), ('Bartletts', 'PROPN'), ('Buildings', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('assure', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('called', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('again', 'ADV'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('congratulations', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('seen', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('such', 'ADJ'), ('spirits', 'NOUN'), ('before', 'ADP'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('own', 'ADJ'), ('happiness', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('own', 'ADJ'), ('spirits', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('least', 'ADJ'), ('very', 'ADV'), ('certain', 'ADJ'), ('and', 'CCONJ'), ('she', 'PRON'), ('joined', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('most', 'ADV'), ('\n', 'SPACE'), ('heartily', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('expectation', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('all', 'ADV'), ('comfortably', 'ADV'), ('\n', 'SPACE'), ('together', 'ADV'), ('in', 'ADP'), ('Delaford', 'PROPN'), ('Parsonage', 'PROPN'), ('before', 'ADP'), ('Michaelmas', 'PROPN'), ('\n', 'SPACE'), ('So', 'ADV'), ('far', 'ADV'), ('was', 'AUX'), ('she', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('from', 'ADP'), ('any', 'DET'), ('backwardness', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('Elinor', 'PROPN'), ('that', 'DET'), ('credit', 'NOUN'), ('which', 'PRON'), ('Edward', 'PROPN'), ('WOULD', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('friendship', 'NOUN'), ('for', 'ADP'), ('them', 'PRON'), ('both', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('grateful', 'ADJ'), ('warmth', 'NOUN'), ('was', 'AUX'), ('ready', 'ADJ'), ('to', 'PART'), ('own', 'VERB'), ('all', 'DET'), ('their', 'PRON'), ('obligation', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('openly', 'ADV'), ('declared', 'VERB'), ('that', 'SCONJ'), ('no', 'DET'), ('exertion', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('good', 'NOUN'), ('on', 'ADP'), ('Miss', 'PROPN'), ('Dashwoods', 'PROPN'), ('part', 'NOUN'), ('either', 'CCONJ'), ('present', 'ADJ'), ('or', 'CCONJ'), ('future', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('ever', 'ADV'), ('surprise', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('she', 'PRON'), ('believed', 'VERB'), ('her', 'PRON'), ('capable', 'ADJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('doing', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('for', 'ADP'), ('those', 'PRON'), ('she', 'PRON'), ('really', 'ADV'), ('valued', 'VERB'), ('\n', 'SPACE'), ('As', 'ADP'), ('for', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('worship', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('as', 'ADP'), ('a', 'DET'), ('saint', 'NOUN'), ('but', 'CCONJ'), ('was', 'AUX'), ('moreover', 'ADV'), ('truly', 'ADV'), ('anxious', 'ADJ'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('treated', 'VERB'), ('as', 'ADP'), ('one', 'NUM'), ('in', 'ADP'), ('all', 'DET'), ('worldly', 'ADJ'), ('concerns', 'NOUN'), ('\n', 'SPACE'), ('anxious', 'ADJ'), ('that', 'SCONJ'), ('his', 'PRON'), ('tithes', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('raised', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('scarcely', 'ADV'), ('resolved', 'VERB'), ('to', 'PART'), ('avail', 'VERB'), ('herself', 'PRON'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('possibly', 'ADV'), ('could', 'AUX'), ('of', 'ADP'), ('his', 'PRON'), ('servants', 'NOUN'), ('his', 'PRON'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('cows', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('poultry', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('above', 'ADP'), ('a', 'DET'), ('week', 'NOUN'), ('since', 'SCONJ'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('\n', 'SPACE'), ('called', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('and', 'CCONJ'), ('as', 'ADV'), ('since', 'SCONJ'), ('that', 'DET'), ('time', 'NOUN'), ('no', 'DET'), ('notice', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('taken', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('wifes', 'NOUN'), ('indisposition', 'NOUN'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('one', 'NUM'), ('verbal', 'ADJ'), ('enquiry', 'NOUN'), ('Elinor', 'PROPN'), ('began', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('necessary', 'ADJ'), ('to', 'PART'), ('pay', 'VERB'), ('her', 'PRON'), ('a', 'PRON'), ('visitThis', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('obligation', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('which', 'PRON'), ('not', 'PART'), ('only', 'ADV'), ('opposed', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('inclination', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('which', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('assistance', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('encouragement', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('her', 'PRON'), ('companions', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('not', 'PART'), ('contented', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('absolutely', 'ADV'), ('refusing', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('herself', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('urgent', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('prevent', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('going', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('her', 'PRON'), ('carriage', 'NOUN'), ('was', 'AUX'), ('always', 'ADV'), ('at', 'ADP'), ('Elinors', 'PROPN'), ('service', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('very', 'ADV'), ('much', 'ADV'), ('disliked', 'VERB'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('that', 'SCONJ'), ('not', 'PART'), ('even', 'ADV'), ('her', 'PRON'), ('\n', 'SPACE'), ('curiosity', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('how', 'SCONJ'), ('she', 'PRON'), ('looked', 'VERB'), ('after', 'ADP'), ('the', 'DET'), ('late', 'ADJ'), ('discovery', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('her', 'PRON'), ('strong', 'ADJ'), ('desire', 'NOUN'), ('to', 'PART'), ('affront', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('taking', 'VERB'), ('Edwards', 'PROPN'), ('part', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('overcome', 'VERB'), ('her', 'PRON'), ('unwillingness', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('her', 'PRON'), ('company', 'NOUN'), ('again', 'ADV'), ('\n', 'SPACE'), ('The', 'DET'), ('consequence', 'NOUN'), ('was', 'AUX'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('set', 'VERB'), ('out', 'ADP'), ('by', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('pay', 'VERB'), ('a', 'DET'), ('visit', 'NOUN'), ('for', 'ADP'), ('which', 'PRON'), ('no', 'DET'), ('one', 'NOUN'), ('could', 'AUX'), ('really', 'ADV'), ('have', 'VERB'), ('\n', 'SPACE'), ('less', 'ADJ'), ('inclination', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('run', 'VERB'), ('the', 'DET'), ('risk', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('teteatete', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('whom', 'PRON'), ('neither', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('had', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('reason', 'NOUN'), ('to', 'PART'), ('dislike', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('denied', 'VERB'), ('but', 'CCONJ'), ('before', 'SCONJ'), ('the', 'DET'), ('carriage', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('turn', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('her', 'PRON'), ('husband', 'NOUN'), ('accidentally', 'ADV'), ('came', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('He', 'PRON'), ('expressed', 'VERB'), ('great', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('meeting', 'VERB'), ('Elinor', 'PROPN'), ('told', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('just', 'ADV'), ('going', 'VERB'), ('to', 'PART'), ('call', 'VERB'), ('in', 'ADP'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('assuring', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('Fanny', 'PROPN'), ('would', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('invited', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('come', 'VERB'), ('in', 'ADP'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('walked', 'VERB'), ('up', 'ADP'), ('stairs', 'NOUN'), ('in', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('drawingroomNobody', 'NOUN'), ('was', 'AUX'), ('there', 'PRON'), ('\n\n', 'SPACE'), ('Fanny', 'PROPN'), ('is', 'AUX'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('said', 'VERB'), ('heI', 'ADP'), ('\n', 'SPACE'), ('will', 'AUX'), ('go', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('presently', 'ADV'), ('for', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('she', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('have', 'VERB'), ('the', 'DET'), ('least', 'ADJ'), ('objection', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'ADP'), ('seeing', 'VERB'), ('YOU', 'PRON'), ('\n', 'SPACE'), ('Very', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('it', 'PRON'), ('indeed', 'ADV'), (' ', 'SPACE'), ('NOW', 'ADV'), ('especially', 'ADV'), ('there', 'PRON'), ('\n', 'SPACE'), ('can', 'AUX'), ('not', 'PART'), ('bebut', 'VERB'), ('however', 'ADV'), ('you', 'PRON'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('were', 'AUX'), ('always', 'ADV'), ('\n', 'SPACE'), ('great', 'ADJ'), ('favouritesWhy', 'ADJ'), ('would', 'AUX'), ('not', 'PART'), ('Marianne', 'PROPN'), ('come', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('made', 'VERB'), ('what', 'PRON'), ('excuse', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('for', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('sorry', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('you', 'PRON'), ('alone', 'ADV'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('a', 'DET'), ('good', 'ADJ'), ('deal', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('This', 'DET'), ('living', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandonscan', 'PROPN'), ('it', 'PRON'), ('be', 'AUX'), ('truehas', 'NOUN'), ('he', 'PRON'), ('really', 'ADV'), ('given', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('to', 'ADP'), ('EdwardI', 'CCONJ'), ('heard', 'VERB'), ('it', 'PRON'), ('yesterday', 'NOUN'), ('by', 'ADP'), ('chance', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('\n', 'SPACE'), ('coming', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('on', 'ADP'), ('purpose', 'NOUN'), ('to', 'PART'), ('enquire', 'VERB'), ('farther', 'ADV'), ('about', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('perfectly', 'ADV'), ('trueColonel', 'ADJ'), ('Brandon', 'PROPN'), ('has', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('living', 'NOUN'), ('of', 'ADP'), ('Delaford', 'PROPN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('\n\n', 'SPACE'), ('ReallyWell', 'PROPN'), ('this', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('astonishingno', 'NOUN'), ('\n', 'SPACE'), ('relationshipno', 'PROPN'), ('connection', 'NOUN'), ('between', 'ADP'), ('themand', 'PROPN'), ('now', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('livings', 'NOUN'), ('fetch', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('pricewhat', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('value', 'NOUN'), ('of', 'ADP'), ('this', 'PRON'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('two', 'NUM'), ('hundred', 'NUM'), ('a', 'DET'), ('year', 'NOUN'), ('\n\n', 'SPACE'), ('Very', 'ADV'), ('welland', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('next', 'ADJ'), ('presentation', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('living', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'PRON'), ('valuesupposing', 'VERB'), ('the', 'DET'), ('late', 'ADJ'), ('incumbent', 'NOUN'), ('to', 'PART'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('old', 'ADJ'), ('and', 'CCONJ'), ('sickly', 'ADJ'), ('and', 'CCONJ'), ('likely', 'ADJ'), ('to', 'PART'), ('vacate', 'VERB'), ('it', 'PRON'), ('soonhe', 'NOUN'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('got', 'VERB'), ('I', 'PRON'), ('dare', 'VERB'), ('sayfourteen', 'NUM'), ('hundred', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('came', 'VERB'), ('he', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('have', 'AUX'), ('settled', 'VERB'), ('that', 'DET'), ('matter', 'NOUN'), ('before', 'ADP'), ('this', 'DET'), ('\n', 'SPACE'), ('persons', 'NOUN'), ('deathNOW', 'ADV'), ('indeed', 'ADV'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('too', 'ADV'), ('late', 'ADJ'), ('to', 'PART'), ('sell', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('senseI', 'PROPN'), ('wonder', 'VERB'), ('he', 'PRON'), ('should', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('so', 'ADV'), ('improvident', 'ADJ'), ('in', 'ADP'), ('a', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('common', 'ADJ'), ('such', 'ADJ'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('concernWell', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('convinced', 'ADJ'), ('that', 'SCONJ'), ('there', 'PRON'), ('is', 'VERB'), ('a', 'DET'), ('vast', 'ADJ'), ('deal', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('inconsistency', 'NOUN'), ('in', 'ADP'), ('almost', 'ADV'), ('every', 'PRON'), ('human', 'ADJ'), ('character', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('howeveron', 'NOUN'), ('recollectionthat', 'SCONJ'), ('the', 'DET'), ('case', 'NOUN'), ('may', 'AUX'), ('probably', 'ADV'), ('be', 'AUX'), ('THIS', 'DET'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('is', 'AUX'), ('only', 'ADV'), ('to', 'PART'), ('hold', 'VERB'), ('the', 'DET'), ('living', 'NOUN'), ('till', 'SCONJ'), ('the', 'DET'), ('person', 'NOUN'), ('to', 'ADP'), ('whom', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('Colonel', 'PROPN'), ('has', 'AUX'), ('really', 'ADV'), ('sold', 'VERB'), ('the', 'DET'), ('presentation', 'NOUN'), ('is', 'AUX'), ('old', 'ADJ'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('take', 'VERB'), ('itAye', 'NOUN'), ('aye', 'NOUN'), ('that', 'PRON'), ('is', 'AUX'), ('the', 'DET'), ('fact', 'NOUN'), ('depend', 'VERB'), ('upon', 'SCONJ'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('contradicted', 'VERB'), ('it', 'PRON'), ('however', 'ADV'), ('very', 'ADV'), ('positively', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('relating', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('herself', 'PRON'), ('been', 'AUX'), ('employed', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('conveying', 'VERB'), ('the', 'DET'), ('offer', 'NOUN'), ('from', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('to', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('must', 'AUX'), ('understand', 'VERB'), ('the', 'DET'), ('terms', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('given', 'VERB'), ('obliged', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('submit', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('authority', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('truly', 'ADV'), ('astonishinghe', 'ADV'), ('cried', 'VERB'), ('after', 'ADP'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('she', 'PRON'), ('saidwhat', 'VERB'), ('could', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('Colonels', 'PROPN'), ('motive', 'VERB'), ('\n\n', 'SPACE'), ('A', 'DET'), ('very', 'ADV'), ('simple', 'ADJ'), ('oneto', 'NOUN'), ('be', 'AUX'), ('of', 'ADP'), ('use', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('well', 'INTJ'), ('whatever', 'PRON'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('may', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('is', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('lucky', 'ADJ'), ('manYou', 'NOUN'), ('will', 'AUX'), ('not', 'PART'), ('mention', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Fanny', 'PROPN'), ('however', 'ADV'), ('for', 'ADP'), ('though', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('broke', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('bears', 'VERB'), ('it', 'PRON'), ('vastly', 'ADV'), ('wellshe', 'PROPN'), ('will', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('to', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('much', 'ADV'), ('talked', 'VERB'), ('of', 'ADP'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('some', 'DET'), ('difficulty', 'NOUN'), ('here', 'ADV'), ('to', 'PART'), ('refrain', 'VERB'), ('from', 'ADP'), ('observing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('thought', 'VERB'), ('Fanny', 'PROPN'), ('might', 'AUX'), ('have', 'AUX'), ('borne', 'VERB'), ('with', 'ADP'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('an', 'DET'), ('acquisition', 'NOUN'), ('of', 'ADP'), ('wealth', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('by', 'ADP'), ('which', 'PRON'), ('neither', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('nor', 'CCONJ'), ('her', 'PRON'), ('child', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('possibly', 'ADV'), ('impoverished', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('added', 'VERB'), ('he', 'PRON'), ('lowering', 'VERB'), ('his', 'PRON'), ('voice', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('tone', 'NOUN'), ('becoming', 'VERB'), ('so', 'ADV'), ('important', 'ADJ'), ('a', 'DET'), ('subject', 'NOUN'), ('knows', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('about', 'ADP'), ('it', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('best', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('keep', 'VERB'), ('it', 'PRON'), ('entirely', 'ADV'), ('concealed', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('as', 'ADV'), ('long', 'ADV'), ('as', 'SCONJ'), ('may', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('marriage', 'NOUN'), ('takes', 'VERB'), ('place', 'NOUN'), ('I', 'PRON'), ('fear', 'VERB'), ('she', 'PRON'), ('must', 'AUX'), ('hear', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('all', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('why', 'SCONJ'), ('should', 'AUX'), ('such', 'ADJ'), ('precaution', 'NOUN'), ('be', 'AUX'), ('usedThough', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('can', 'AUX'), ('have', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('smallest', 'ADJ'), ('satisfaction', 'NOUN'), ('in', 'ADP'), ('knowing', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('son', 'NOUN'), ('has', 'VERB'), ('\n', 'SPACE'), ('money', 'NOUN'), ('enough', 'ADJ'), ('to', 'PART'), ('live', 'VERB'), ('uponfor', 'SCONJ'), ('THAT', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('quite', 'ADV'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('yet', 'ADV'), ('why', 'SCONJ'), ('upon', 'SCONJ'), ('her', 'PRON'), ('late', 'ADJ'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('she', 'PRON'), ('supposed', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('at', 'ADP'), ('allShe', 'PROPN'), ('has', 'AUX'), ('done', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('son', 'NOUN'), ('she', 'PRON'), ('cast', 'VERB'), ('him', 'PRON'), ('off', 'ADP'), ('for', 'ADP'), ('ever', 'ADV'), ('and', 'CCONJ'), ('has', 'AUX'), ('made', 'VERB'), ('all', 'DET'), ('those', 'PRON'), ('\n', 'SPACE'), ('over', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('any', 'DET'), ('influence', 'NOUN'), ('cast', 'VERB'), ('him', 'PRON'), ('off', 'ADP'), ('likewise', 'ADV'), ('\n', 'SPACE'), ('Surely', 'ADV'), ('after', 'ADP'), ('doing', 'VERB'), ('so', 'ADV'), ('she', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('imagined', 'VERB'), ('liable', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('any', 'DET'), ('impression', 'NOUN'), ('of', 'ADP'), ('sorrow', 'NOUN'), ('or', 'CCONJ'), ('of', 'ADP'), ('joy', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('account', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('interested', 'ADJ'), ('in', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('befalls', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('so', 'ADV'), ('weak', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('throw', 'VERB'), ('away', 'ADV'), ('the', 'DET'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('child', 'NOUN'), ('and', 'CCONJ'), ('yet', 'ADV'), ('retain', 'VERB'), ('the', 'DET'), ('anxiety', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('parent', 'NOUN'), ('\n\n', 'SPACE'), ('Ah', 'INTJ'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('John', 'PROPN'), ('your', 'PRON'), ('reasoning', 'NOUN'), ('is', 'AUX'), ('very', 'ADV'), ('good', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('founded', 'VERB'), ('on', 'ADP'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('human', 'ADJ'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('Edwards', 'PROPN'), ('unhappy', 'ADJ'), ('match', 'NOUN'), ('takes', 'VERB'), ('place', 'NOUN'), ('depend', 'VERB'), ('upon', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('his', 'PRON'), ('mother', 'NOUN'), ('will', 'AUX'), ('feel', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('discarded', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('every', 'DET'), ('circumstance', 'NOUN'), ('that', 'PRON'), ('may', 'AUX'), ('accelerate', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('dreadful', 'ADJ'), ('event', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('concealed', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('as', 'ADV'), ('much', 'ADJ'), ('as', 'ADP'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('can', 'AUX'), ('never', 'ADV'), ('forget', 'VERB'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('is', 'AUX'), ('her', 'PRON'), ('son', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('surprise', 'VERB'), ('me', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('think', 'VERB'), ('it', 'PRON'), ('must', 'AUX'), ('nearly', 'ADV'), ('\n', 'SPACE'), ('have', 'AUX'), ('escaped', 'VERB'), ('her', 'PRON'), ('memory', 'NOUN'), ('by', 'ADP'), ('THIS', 'DET'), ('time', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('wrong', 'VERB'), ('her', 'PRON'), ('exceedingly', 'ADV'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('affectionate', 'ADJ'), ('mothers', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('silent', 'ADJ'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('think', 'VERB'), ('NOWsaid', 'PROPN'), ('Mr', 'PROPN'), ('Dashwood', 'PROPN'), ('after', 'SCONJ'), ('a', 'DET'), ('short', 'ADJ'), ('pause', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('ROBERTS', 'PROPN'), ('marrying', 'VERB'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('smiling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('grave', 'NOUN'), ('and', 'CCONJ'), ('decisive', 'ADJ'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('brothers', 'NOUN'), ('tone', 'NOUN'), ('calmly', 'ADV'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('lady', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('has', 'VERB'), ('no', 'DET'), ('choice', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('\n\n', 'SPACE'), ('Choicehow', 'PROPN'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('only', 'ADV'), ('mean', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('suppose', 'VERB'), ('from', 'ADP'), ('your', 'PRON'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('speaking', 'VERB'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('same', 'ADJ'), ('to', 'ADP'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('whether', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('marry', 'VERB'), ('Edward', 'PROPN'), ('or', 'CCONJ'), ('Robert', 'PROPN'), ('\n\n', 'SPACE'), ('Certainly', 'ADV'), ('there', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('difference', 'NOUN'), ('for', 'ADP'), ('Robert', 'PROPN'), ('\n', 'SPACE'), ('will', 'AUX'), ('now', 'ADV'), ('to', 'ADP'), ('all', 'DET'), ('intents', 'NOUN'), ('and', 'CCONJ'), ('purposes', 'NOUN'), ('be', 'AUX'), ('considered', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('the', 'DET'), ('eldest', 'ADJ'), ('sonand', 'PROPN'), ('as', 'ADP'), ('to', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('else', 'ADV'), ('they', 'PRON'), ('are', 'AUX'), ('\n', 'SPACE'), ('both', 'CCONJ'), ('very', 'ADV'), ('agreeable', 'ADJ'), ('young', 'ADJ'), ('men', 'NOUN'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('that', 'SCONJ'), ('one', 'NUM'), ('\n', 'SPACE'), ('is', 'AUX'), ('superior', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), ('and', 'CCONJ'), ('John', 'PROPN'), ('was', 'AUX'), ('also', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('short', 'ADJ'), ('\n', 'SPACE'), ('time', 'NOUN'), ('silentHis', 'PART'), ('reflections', 'NOUN'), ('ended', 'VERB'), ('thus', 'ADV'), ('\n\n', 'SPACE'), ('Of', 'ADP'), ('ONE', 'NUM'), ('thing', 'NOUN'), ('my', 'PRON'), ('dear', 'ADJ'), ('sister', 'NOUN'), ('kindly', 'ADV'), ('taking', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('speaking', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('awful', 'ADJ'), ('whisperI', 'NOUN'), ('may', 'AUX'), ('assure', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('WILL', 'AUX'), ('do', 'VERB'), ('it', 'PRON'), ('because', 'SCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('must', 'AUX'), ('gratify', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('good', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('thinkindeed', 'VERB'), ('I', 'PRON'), ('have', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('best', 'ADJ'), ('authority', 'NOUN'), ('or', 'CCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('not', 'PART'), ('repeat', 'VERB'), ('it', 'PRON'), ('for', 'ADP'), ('otherwise', 'ADV'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('very', 'ADV'), ('wrong', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('about', 'ADP'), ('itbut', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('best', 'ADJ'), ('authoritynot', 'NOUN'), ('that', 'SCONJ'), ('I', 'PRON'), ('ever', 'ADV'), ('\n', 'SPACE'), ('precisely', 'ADV'), ('heard', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('say', 'VERB'), ('it', 'PRON'), ('herselfbut', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('daughter', 'NOUN'), ('DID', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('herThat', 'PRON'), ('in', 'ADP'), ('short', 'ADJ'), ('\n', 'SPACE'), ('whatever', 'DET'), ('objections', 'NOUN'), ('there', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('against', 'ADP'), ('a', 'DET'), ('certaina', 'NOUN'), ('\n', 'SPACE'), ('certain', 'ADJ'), ('connectionyou', 'NOUN'), ('understand', 'VERB'), ('meit', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('far', 'ADV'), ('preferable', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('given', 'VERB'), ('her', 'PRON'), ('half', 'ADJ'), ('\n', 'SPACE'), ('the', 'DET'), ('vexation', 'NOUN'), ('that', 'SCONJ'), ('THIS', 'PRON'), ('does', 'AUX'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('exceedingly', 'ADV'), ('pleased', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('hear', 'VERB'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('considered', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('that', 'DET'), ('light', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('very', 'ADV'), ('gratifying', 'ADJ'), ('circumstance', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('all', 'DET'), ('\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('beyond', 'ADP'), ('comparison', 'NOUN'), ('she', 'PRON'), ('said', 'VERB'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('evil', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('and', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('glad', 'ADJ'), ('to', 'PART'), ('compound', 'VERB'), ('NOW', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('nothing', 'PRON'), ('worse', 'ADJ'), ('But', 'CCONJ'), ('however', 'ADV'), ('all', 'DET'), ('that', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('out', 'ADP'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('questionnot', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('thought', 'VERB'), ('of', 'ADP'), ('or', 'CCONJ'), ('mentioned', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('to', 'ADP'), ('any', 'DET'), ('attachment', 'NOUN'), ('you', 'PRON'), ('knowit', 'VERB'), ('never', 'ADV'), ('could', 'AUX'), ('beall', 'VERB'), ('\n', 'SPACE'), ('that', 'PRON'), ('is', 'AUX'), ('gone', 'VERB'), ('by', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('I', 'PRON'), ('would', 'AUX'), ('just', 'ADV'), ('tell', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'PRON'), ('because', 'SCONJ'), ('I', 'PRON'), ('knew', 'VERB'), ('how', 'SCONJ'), ('much', 'ADJ'), ('it', 'PRON'), ('must', 'AUX'), ('please', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('Not', 'PART'), ('that', 'SCONJ'), ('you', 'PRON'), ('have', 'VERB'), ('any', 'DET'), ('reason', 'NOUN'), ('to', 'PART'), ('regret', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('There', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('doing', 'VERB'), ('exceedingly', 'ADV'), ('wellquite', 'ADJ'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('better', 'ADJ'), ('perhaps', 'ADV'), ('all', 'DET'), ('things', 'NOUN'), ('considered', 'VERB'), (' ', 'SPACE'), ('Has', 'AUX'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('been', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('lately', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('heard', 'VERB'), ('enough', 'ADJ'), ('if', 'SCONJ'), ('not', 'PART'), ('to', 'PART'), ('gratify', 'VERB'), ('her', 'PRON'), ('vanity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('raise', 'VERB'), ('her', 'PRON'), ('selfimportance', 'NOUN'), ('to', 'PART'), ('agitate', 'VERB'), ('her', 'PRON'), ('nerves', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('fill', 'VERB'), ('her', 'PRON'), ('mindand', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('therefore', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('spared', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('saying', 'VERB'), ('much', 'ADV'), ('in', 'ADP'), ('reply', 'NOUN'), ('herself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('the', 'DET'), ('danger', 'NOUN'), ('of', 'ADP'), ('hearing', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('more', 'ADV'), ('from', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('brother', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Robert', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('After', 'SCONJ'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('chat', 'VERB'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('recollecting', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('was', 'AUX'), ('yet', 'ADV'), ('uninformed', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('being', 'AUX'), ('there', 'PRON'), ('\n', 'SPACE'), ('quitted', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('in', 'ADP'), ('quest', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('left', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('improve', 'VERB'), ('her', 'PRON'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('Robert', 'PROPN'), ('who', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('gay', 'ADJ'), ('unconcern', 'NOUN'), ('the', 'DET'), ('happy', 'ADJ'), ('selfcomplacency', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('enjoying', 'VERB'), ('so', 'ADV'), ('unfair', 'ADJ'), ('a', 'DET'), ('division', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('love', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('liberality', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('prejudice', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('banished', 'ADJ'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('earned', 'VERB'), ('only', 'ADV'), ('by', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('dissipated', 'VERB'), ('course', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('brothers', 'NOUN'), ('integrity', 'NOUN'), ('was', 'AUX'), ('confirming', 'VERB'), ('her', 'PRON'), ('most', 'ADV'), ('unfavourable', 'ADJ'), ('\n', 'SPACE'), ('opinion', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('head', 'NOUN'), ('and', 'CCONJ'), ('heart', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('had', 'AUX'), ('scarcely', 'ADV'), ('been', 'AUX'), ('two', 'NUM'), ('minutes', 'NOUN'), ('by', 'ADP'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('before', 'SCONJ'), ('he', 'PRON'), ('began', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('Edward', 'PROPN'), ('for', 'SCONJ'), ('he', 'PRON'), ('too', 'ADV'), ('had', 'AUX'), ('heard', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('living', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('very', 'ADV'), ('inquisitive', 'ADJ'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('repeated', 'VERB'), ('the', 'DET'), ('particulars', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('John', 'PROPN'), ('and', 'CCONJ'), ('their', 'PRON'), ('effect', 'NOUN'), ('on', 'ADP'), ('Robert', 'PROPN'), ('though', 'SCONJ'), ('very', 'ADV'), ('different', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('less', 'ADV'), ('striking', 'ADJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('on', 'ADP'), ('HIM', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('laughed', 'VERB'), ('\n', 'SPACE'), ('most', 'ADV'), ('immoderately', 'ADV'), (' ', 'SPACE'), ('The', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('being', 'AUX'), ('a', 'DET'), ('clergyman', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('living', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('small', 'ADJ'), ('parsonagehouse', 'NOUN'), ('diverted', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('measureand', 'PROPN'), ('when', 'SCONJ'), ('to', 'ADP'), ('that', 'PRON'), ('was', 'AUX'), ('added', 'VERB'), ('the', 'DET'), ('fanciful', 'ADJ'), ('\n', 'SPACE'), ('imagery', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('reading', 'NOUN'), ('prayers', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('white', 'ADJ'), ('surplice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('publishing', 'VERB'), ('the', 'DET'), ('banns', 'NOUN'), ('of', 'ADP'), ('marriage', 'NOUN'), ('between', 'ADP'), ('John', 'PROPN'), ('Smith', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Mary', 'PROPN'), ('Brown', 'PROPN'), ('he', 'PRON'), ('could', 'AUX'), ('conceive', 'VERB'), ('nothing', 'PRON'), ('more', 'ADV'), ('ridiculous', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('while', 'SCONJ'), ('she', 'PRON'), ('waited', 'VERB'), ('in', 'ADP'), ('silence', 'NOUN'), ('and', 'CCONJ'), ('immovable', 'ADJ'), ('\n', 'SPACE'), ('gravity', 'NOUN'), ('the', 'DET'), ('conclusion', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('folly', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('restrain', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('eyes', 'NOUN'), ('from', 'ADP'), ('being', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('that', 'PRON'), ('spoke', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('contempt', 'NOUN'), ('it', 'PRON'), ('excited', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('look', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('very', 'ADV'), ('well', 'ADV'), ('bestowed', 'VERB'), ('for', 'ADP'), ('it', 'PRON'), ('relieved', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('gave', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('intelligence', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('recalled', 'VERB'), ('from', 'ADP'), ('wit', 'NOUN'), ('to', 'ADP'), ('wisdom', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('by', 'ADP'), ('any', 'DET'), ('reproof', 'NOUN'), ('of', 'ADP'), ('hers', 'NOUN'), ('but', 'CCONJ'), ('by', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('sensibility', 'NOUN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('may', 'AUX'), ('treat', 'VERB'), ('it', 'PRON'), ('as', 'SCONJ'), ('a', 'DET'), ('joke', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('recovering', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('affected', 'ADJ'), ('laugh', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('considerably', 'ADV'), ('\n', 'SPACE'), ('lengthened', 'VERB'), ('out', 'ADP'), ('the', 'DET'), ('genuine', 'ADJ'), ('gaiety', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('momentbut', 'NOUN'), ('upon', 'SCONJ'), ('\n', 'SPACE'), ('my', 'PRON'), ('soul', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('most', 'ADV'), ('serious', 'ADJ'), ('business', 'NOUN'), (' ', 'SPACE'), ('Poor', 'PROPN'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('is', 'AUX'), ('ruined', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('extremely', 'ADV'), ('sorry', 'ADJ'), ('for', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('I', 'PRON'), ('know', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('goodhearted', 'ADJ'), ('creature', 'NOUN'), ('as', 'ADP'), ('\n', 'SPACE'), ('wellmeaning', 'VERB'), ('a', 'DET'), ('fellow', 'NOUN'), ('perhaps', 'ADV'), ('as', 'SCONJ'), ('any', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('judge', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('from', 'ADP'), ('YOUR', 'PRON'), ('\n', 'SPACE'), ('slight', 'NOUN'), ('acquaintancePoor', 'PRON'), ('EdwardHis', 'PROPN'), ('manners', 'NOUN'), ('are', 'AUX'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('not', 'PART'), ('the', 'DET'), ('happiest', 'ADJ'), ('in', 'ADP'), ('natureBut', 'CCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('all', 'PRON'), ('born', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('powersthe', 'NOUN'), ('same', 'ADJ'), ('address', 'NOUN'), ('\n', 'SPACE'), ('Poor', 'ADJ'), ('fellowto', 'NOUN'), ('see', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('circle', 'NOUN'), ('of', 'ADP'), ('strangers', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('pitiable', 'ADJ'), ('enoughbut', 'NOUN'), ('upon', 'SCONJ'), ('my', 'PRON'), ('soul', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('believe', 'VERB'), ('he', 'PRON'), ('has', 'VERB'), ('as', 'ADV'), ('good', 'ADJ'), ('a', 'DET'), ('heart', 'NOUN'), ('as', 'ADP'), ('any', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('kingdom', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('declare', 'VERB'), ('and', 'CCONJ'), ('protest', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('I', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('so', 'ADV'), ('shocked', 'ADJ'), ('in', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('life', 'NOUN'), ('as', 'SCONJ'), ('when', 'SCONJ'), ('it', 'PRON'), ('all', 'PRON'), ('burst', 'VERB'), ('forth', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('believe', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('My', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('first', 'ADJ'), ('person', 'NOUN'), ('who', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('feeling', 'VERB'), ('myself', 'PRON'), ('called', 'VERB'), ('on', 'ADP'), ('to', 'PART'), ('act', 'VERB'), ('with', 'ADP'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('said', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('My', 'PRON'), ('dear', 'ADJ'), ('madam', 'NOUN'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('you', 'PRON'), ('may', 'AUX'), ('intend', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('but', 'CCONJ'), ('as', 'ADP'), ('for', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('say', 'VERB'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('Edward', 'PROPN'), ('does', 'AUX'), ('marry', 'VERB'), ('this', 'DET'), ('young', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('will', 'AUX'), ('see', 'VERB'), ('him', 'PRON'), ('again', 'ADV'), ('That', 'PRON'), ('was', 'AUX'), ('what', 'PRON'), ('I', 'PRON'), ('said', 'VERB'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('most', 'ADV'), ('uncommonly', 'ADV'), ('shocked', 'ADJ'), ('indeedPoor', 'ADJ'), ('Edwardhe', 'PROPN'), ('has', 'AUX'), ('\n', 'SPACE'), ('done', 'VERB'), ('for', 'ADP'), ('himself', 'PRON'), ('completelyshut', 'VERB'), ('himself', 'PRON'), ('out', 'ADP'), ('for', 'ADP'), ('ever', 'ADV'), ('from', 'ADP'), ('\n', 'SPACE'), ('all', 'DET'), ('decent', 'ADJ'), ('societybut', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('directly', 'ADV'), ('said', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('least', 'ADJ'), ('surprised', 'ADJ'), ('at', 'ADP'), ('it', 'PRON'), ('from', 'ADP'), ('his', 'PRON'), ('style', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('education', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('expected', 'VERB'), (' ', 'SPACE'), ('My', 'PRON'), ('poor', 'ADJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('half', 'ADV'), ('frantic', 'ADJ'), ('\n\n', 'SPACE'), ('Have', 'AUX'), ('you', 'PRON'), ('ever', 'ADV'), ('seen', 'VERB'), ('the', 'DET'), ('lady', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('once', 'ADV'), ('while', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('staying', 'VERB'), ('in', 'ADP'), ('this', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('drop', 'VERB'), ('in', 'ADP'), ('for', 'ADP'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('quite', 'ADV'), ('enough', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('merest', 'ADJ'), ('awkward', 'ADJ'), ('country', 'NOUN'), ('girl', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('style', 'NOUN'), ('or', 'CCONJ'), ('elegance', 'NOUN'), ('and', 'CCONJ'), ('almost', 'ADV'), ('without', 'ADP'), ('beauty', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('remember', 'VERB'), ('her', 'PRON'), ('perfectly', 'ADV'), (' ', 'SPACE'), ('Just', 'ADV'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('girl', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('suppose', 'VERB'), ('likely', 'ADJ'), ('to', 'PART'), ('captivate', 'VERB'), ('poor', 'ADJ'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('offered', 'VERB'), ('immediately', 'ADV'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('related', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('affair', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('talk', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('myself', 'PRON'), ('and', 'CCONJ'), ('dissuade', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('match', 'NOUN'), ('but', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('late', 'ADJ'), ('THEN', 'ADV'), ('I', 'PRON'), ('found', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('do', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('for', 'ADP'), ('unluckily', 'ADV'), ('I', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('way', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('first', 'ADV'), ('and', 'CCONJ'), ('knew', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('it', 'PRON'), ('till', 'SCONJ'), ('after', 'SCONJ'), ('the', 'DET'), ('breach', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('taken', 'VERB'), ('place', 'NOUN'), ('when', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('for', 'ADP'), ('me', 'PRON'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('interfere', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('had', 'AUX'), ('I', 'PRON'), ('been', 'AUX'), ('informed', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('\n', 'SPACE'), ('hours', 'NOUN'), ('earlierI', 'PROPN'), ('think', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('most', 'ADV'), ('probablethat', 'ADV'), ('something', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('hit', 'VERB'), ('on', 'ADP'), (' ', 'SPACE'), ('I', 'PRON'), ('certainly', 'ADV'), ('should', 'AUX'), ('have', 'AUX'), ('represented', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('to', 'ADP'), ('Edward', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('strong', 'ADJ'), ('light', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('dear', 'ADJ'), ('fellow', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('said', 'VERB'), ('consider', 'VERB'), ('what', 'PRON'), ('you', 'PRON'), ('are', 'AUX'), ('doing', 'VERB'), ('\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('making', 'VERB'), ('a', 'DET'), ('most', 'ADV'), ('disgraceful', 'ADJ'), ('connection', 'NOUN'), ('and', 'CCONJ'), ('such', 'DET'), ('a', 'DET'), ('one', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('your', 'PRON'), ('family', 'NOUN'), ('are', 'AUX'), ('unanimous', 'ADJ'), ('in', 'ADP'), ('disapproving', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('help', 'VERB'), ('thinking', 'VERB'), ('in', 'ADP'), ('short', 'ADJ'), ('that', 'PRON'), ('means', 'VERB'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('found', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('now', 'ADV'), ('it', 'PRON'), ('is', 'AUX'), ('all', 'ADV'), ('too', 'ADV'), ('late', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('starved', 'VERB'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('that', 'PRON'), ('is', 'AUX'), ('certain', 'ADJ'), ('absolutely', 'ADV'), ('starved', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('just', 'ADV'), ('settled', 'VERB'), ('this', 'DET'), ('point', 'NOUN'), ('with', 'ADP'), ('great', 'ADJ'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('John', 'PROPN'), ('Dashwood', 'PROPN'), ('put', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('though', 'SCONJ'), ('SHE', 'PRON'), ('never', 'ADV'), ('spoke', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('family', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('see', 'VERB'), ('its', 'PRON'), ('influence', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('something', 'PRON'), ('\n', 'SPACE'), ('like', 'ADP'), ('confusion', 'NOUN'), ('of', 'ADP'), ('countenance', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('entered', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('an', 'DET'), ('attempt', 'NOUN'), ('at', 'ADP'), ('cordiality', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('even', 'ADV'), ('proceeded', 'VERB'), ('so', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('concerned', 'VERB'), ('to', 'PART'), ('find', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('were', 'AUX'), ('so', 'ADV'), ('soon', 'ADV'), ('to', 'PART'), ('leave', 'VERB'), ('town', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('hoped', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('more', 'ADJ'), ('of', 'ADP'), ('theman', 'NOUN'), ('exertion', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('which', 'PRON'), ('her', 'PRON'), ('husband', 'NOUN'), ('who', 'PRON'), ('attended', 'VERB'), ('her', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hung', 'VERB'), ('enamoured', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('accents', 'NOUN'), ('seemed', 'VERB'), ('to', 'PART'), ('distinguish', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('was', 'AUX'), ('most', 'ADV'), ('affectionate', 'ADJ'), ('and', 'CCONJ'), ('graceful', 'ADJ'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('42', 'NUM'), ('\n\n\n', 'SPACE'), ('One', 'NUM'), ('other', 'ADJ'), ('short', 'ADJ'), ('call', 'NOUN'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('in', 'ADP'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('received', 'VERB'), ('her', 'PRON'), ('brothers', 'NOUN'), ('congratulations', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('travelling', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('far', 'ADV'), ('towards', 'ADP'), ('Barton', 'PROPN'), ('without', 'ADP'), ('any', 'DET'), ('expense', 'NOUN'), ('and', 'CCONJ'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandons', 'NOUN'), ('being', 'AUX'), ('to', 'PART'), ('follow', 'VERB'), ('them', 'PRON'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('\n', 'SPACE'), ('completed', 'VERB'), ('the', 'DET'), ('intercourse', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('townand', 'NOUN'), ('a', 'DET'), ('faint', 'ADJ'), ('invitation', 'NOUN'), ('from', 'ADP'), ('Fanny', 'PROPN'), ('to', 'PART'), ('come', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Norland', 'PROPN'), ('whenever', 'SCONJ'), ('it', 'PRON'), ('should', 'AUX'), ('happen', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('their', 'PRON'), ('way', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('things', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('unlikely', 'ADJ'), ('to', 'PART'), ('occur', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('more', 'ADV'), ('warm', 'ADJ'), ('though', 'SCONJ'), ('less', 'ADJ'), ('public', 'ADJ'), ('assurance', 'NOUN'), ('from', 'ADP'), ('John', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('of', 'ADP'), ('the', 'DET'), ('promptitude', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('should', 'AUX'), ('come', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('was', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('foretold', 'VERB'), ('any', 'DET'), ('meeting', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('country', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('amused', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('observe', 'VERB'), ('that', 'SCONJ'), ('all', 'DET'), ('her', 'PRON'), ('friends', 'NOUN'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('determined', 'ADJ'), ('to', 'PART'), ('send', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('Delaforda', 'PROPN'), ('place', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('others', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('now', 'ADV'), ('least', 'ADJ'), ('chuse', 'VERB'), ('to', 'PART'), ('visit', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('wish', 'VERB'), ('to', 'PART'), ('reside', 'VERB'), ('for', 'ADP'), ('not', 'PART'), ('only', 'ADV'), ('was', 'AUX'), ('it', 'PRON'), ('considered', 'VERB'), ('as', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('future', 'ADJ'), ('home', 'NOUN'), ('by', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('but', 'CCONJ'), ('even', 'ADV'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('they', 'PRON'), ('parted', 'VERB'), ('gave', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('pressing', 'VERB'), ('invitation', 'NOUN'), ('to', 'PART'), ('visit', 'VERB'), ('her', 'PRON'), ('there', 'ADV'), ('\n\n', 'SPACE'), ('Very', 'ADV'), ('early', 'ADV'), ('in', 'ADP'), ('April', 'PROPN'), ('and', 'CCONJ'), ('tolerably', 'ADV'), ('early', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('two', 'NUM'), ('parties', 'NOUN'), ('from', 'ADP'), ('Hanover', 'PROPN'), ('Square', 'PROPN'), ('and', 'CCONJ'), ('Berkeley', 'PROPN'), ('Street', 'PROPN'), ('set', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('from', 'ADP'), ('their', 'PRON'), ('respective', 'ADJ'), ('homes', 'NOUN'), ('to', 'PART'), ('meet', 'VERB'), ('by', 'ADP'), ('appointment', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('road', 'NOUN'), (' ', 'SPACE'), ('For', 'ADP'), ('the', 'DET'), ('convenience', 'NOUN'), ('of', 'ADP'), ('Charlotte', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('child', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('more', 'ADJ'), ('than', 'ADP'), ('two', 'NUM'), ('days', 'NOUN'), ('on', 'ADP'), ('their', 'PRON'), ('journey', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('travelling', 'VERB'), ('more', 'ADV'), ('expeditiously', 'ADV'), ('with', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('to', 'PART'), ('join', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('soon', 'ADV'), ('after', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('few', 'ADJ'), ('as', 'SCONJ'), ('had', 'AUX'), ('been', 'AUX'), ('her', 'PRON'), ('hours', 'NOUN'), ('of', 'ADP'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('London', 'PROPN'), ('and', 'CCONJ'), ('eager', 'ADJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('long', 'ADV'), ('been', 'AUX'), ('to', 'PART'), ('quit', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('when', 'SCONJ'), ('it', 'PRON'), ('came', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('bid', 'NOUN'), ('adieu', 'ADJ'), ('to', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('time', 'NOUN'), ('enjoyed', 'VERB'), ('\n', 'SPACE'), ('those', 'DET'), ('hopes', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('confidence', 'NOUN'), ('in', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('which', 'PRON'), ('were', 'AUX'), ('now', 'ADV'), ('extinguished', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('without', 'ADP'), ('great', 'ADJ'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('Nor', 'CCONJ'), ('could', 'AUX'), ('she', 'PRON'), ('leave', 'VERB'), ('the', 'DET'), ('place', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('Willoughby', 'PROPN'), ('remained', 'VERB'), ('\n', 'SPACE'), ('busy', 'ADJ'), ('in', 'ADP'), ('new', 'ADJ'), ('engagements', 'NOUN'), ('and', 'CCONJ'), ('new', 'ADJ'), ('schemes', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('SHE', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('have', 'VERB'), ('no', 'DET'), ('share', 'NOUN'), ('without', 'ADP'), ('shedding', 'VERB'), ('many', 'ADJ'), ('tears', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('satisfaction', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('removal', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('more', 'ADV'), ('positive', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('object', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('lingering', 'VERB'), ('\n', 'SPACE'), ('thoughts', 'NOUN'), ('to', 'PART'), ('fix', 'VERB'), ('on', 'ADP'), ('she', 'PRON'), ('left', 'VERB'), ('no', 'DET'), ('creature', 'NOUN'), ('behind', 'ADP'), ('from', 'ADP'), ('whom', 'PRON'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('moments', 'NOUN'), ('regret', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('divided', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('pleased', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('free', 'ADJ'), ('herself', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('persecution', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('friendship', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('grateful', 'ADJ'), ('for', 'ADP'), ('bringing', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('away', 'ADV'), ('unseen', 'ADJ'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('since', 'SCONJ'), ('his', 'PRON'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('looked', 'VERB'), ('forward', 'ADV'), ('with', 'ADP'), ('hope', 'NOUN'), ('to', 'ADP'), ('what', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('tranquility', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('might', 'AUX'), ('do', 'AUX'), ('towards', 'ADP'), ('restoring', 'VERB'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('peace', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('confirming', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('journey', 'NOUN'), ('was', 'AUX'), ('safely', 'ADV'), ('performed', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('second', 'ADJ'), ('\n', 'SPACE'), ('day', 'NOUN'), ('brought', 'VERB'), ('them', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('cherished', 'ADJ'), ('or', 'CCONJ'), ('the', 'DET'), ('prohibited', 'VERB'), ('\n', 'SPACE'), ('county', 'NOUN'), ('of', 'ADP'), ('Somerset', 'PROPN'), ('for', 'ADP'), ('as', 'ADV'), ('such', 'ADJ'), ('was', 'AUX'), ('it', 'PRON'), ('dwelt', 'ADV'), ('on', 'ADP'), ('by', 'ADP'), ('turns', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Mariannes', 'PROPN'), ('imagination', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('forenoon', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('third', 'ADJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('drove', 'VERB'), ('up', 'ADP'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('\n\n', 'SPACE'), ('Cleveland', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('spacious', 'ADJ'), ('modernbuilt', 'NOUN'), ('house', 'NOUN'), ('\n', 'SPACE'), ('situated', 'VERB'), ('on', 'ADP'), ('a', 'DET'), ('sloping', 'VERB'), ('lawn', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('park', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('pleasuregrounds', 'NOUN'), ('were', 'AUX'), ('tolerably', 'ADV'), ('extensive', 'ADJ'), ('and', 'CCONJ'), ('like', 'INTJ'), ('\n', 'SPACE'), ('every', 'DET'), ('other', 'ADJ'), ('place', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('degree', 'NOUN'), ('of', 'ADP'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'VERB'), ('its', 'PRON'), ('open', 'ADJ'), ('shrubbery', 'NOUN'), ('and', 'CCONJ'), ('closer', 'ADJ'), ('wood', 'NOUN'), ('walk', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('road', 'NOUN'), ('of', 'ADP'), ('smooth', 'ADJ'), ('gravel', 'NOUN'), ('winding', 'NOUN'), ('round', 'VERB'), ('a', 'DET'), ('plantation', 'NOUN'), ('\n', 'SPACE'), ('led', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('front', 'NOUN'), ('the', 'DET'), ('lawn', 'NOUN'), ('was', 'AUX'), ('dotted', 'VERB'), ('over', 'ADP'), ('with', 'ADP'), ('timber', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('house', 'NOUN'), ('itself', 'PRON'), ('was', 'AUX'), ('under', 'ADP'), ('the', 'DET'), ('guardianship', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('fir', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('mountainash', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('acacia', 'PROPN'), ('and', 'CCONJ'), ('a', 'DET'), ('thick', 'ADJ'), ('screen', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('them', 'PRON'), ('altogether', 'ADV'), ('interspersed', 'VERB'), ('with', 'ADP'), ('tall', 'ADJ'), ('Lombardy', 'ADJ'), ('poplars', 'NOUN'), ('\n', 'SPACE'), ('shut', 'VERB'), ('out', 'ADP'), ('the', 'DET'), ('offices', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('entered', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('heart', 'NOUN'), ('swelling', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('emotion', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('only', 'ADV'), ('eighty', 'NUM'), ('\n', 'SPACE'), ('miles', 'NOUN'), ('from', 'ADP'), ('Barton', 'PROPN'), ('and', 'CCONJ'), ('not', 'PART'), ('thirty', 'NUM'), ('from', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('before', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('five', 'NUM'), ('minutes', 'NOUN'), ('within', 'ADP'), ('its', 'PRON'), ('walls', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('were', 'AUX'), ('busily', 'ADV'), ('helping', 'VERB'), ('Charlotte', 'PROPN'), ('to', 'PART'), ('show', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('child', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('housekeeper', 'NOUN'), ('she', 'PRON'), ('quitted', 'VERB'), ('it', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('stealing', 'VERB'), ('away', 'ADV'), ('through', 'ADP'), ('the', 'DET'), ('winding', 'VERB'), ('shrubberies', 'NOUN'), ('now', 'ADV'), ('just', 'ADV'), ('\n', 'SPACE'), ('beginning', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('in', 'ADP'), ('beauty', 'NOUN'), ('to', 'PART'), ('gain', 'VERB'), ('a', 'DET'), ('distant', 'ADJ'), ('eminence', 'NOUN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('from', 'ADP'), ('its', 'PRON'), ('Grecian', 'ADJ'), ('temple', 'NOUN'), ('her', 'PRON'), ('eye', 'NOUN'), ('wandering', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('wide', 'ADJ'), ('tract', 'NOUN'), ('of', 'ADP'), ('country', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('southeast', 'NOUN'), ('could', 'AUX'), ('fondly', 'ADV'), ('\n', 'SPACE'), ('rest', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('farthest', 'ADJ'), ('ridge', 'NOUN'), ('of', 'ADP'), ('hills', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('horizon', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('fancy', 'ADJ'), ('that', 'SCONJ'), ('from', 'ADP'), ('their', 'PRON'), ('summits', 'NOUN'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('might', 'AUX'), ('be', 'AUX'), ('seen', 'VERB'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('such', 'ADJ'), ('moments', 'NOUN'), ('of', 'ADP'), ('precious', 'ADJ'), ('invaluable', 'ADJ'), ('misery', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('rejoiced', 'VERB'), ('in', 'ADP'), ('tears', 'NOUN'), ('of', 'ADP'), ('agony', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('returned', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('different', 'ADJ'), ('circuit', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('feeling', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('happy', 'ADJ'), ('privilege', 'NOUN'), ('of', 'ADP'), ('country', 'NOUN'), ('liberty', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('wandering', 'VERB'), ('from', 'ADP'), ('place', 'NOUN'), ('to', 'ADP'), ('place', 'NOUN'), ('in', 'ADP'), ('free', 'ADJ'), ('and', 'CCONJ'), ('luxurious', 'ADJ'), ('solitude', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('resolved', 'VERB'), ('to', 'PART'), ('spend', 'VERB'), ('almost', 'ADV'), ('every', 'PRON'), ('hour', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('she', 'PRON'), ('remained', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('Palmers', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('indulgence', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('such', 'ADJ'), ('solitary', 'ADJ'), ('rambles', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('returned', 'VERB'), ('just', 'ADV'), ('in', 'ADP'), ('time', 'NOUN'), ('to', 'PART'), ('join', 'VERB'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('they', 'PRON'), ('quitted', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('on', 'ADP'), ('an', 'DET'), ('excursion', 'NOUN'), ('through', 'ADP'), ('its', 'PRON'), ('\n', 'SPACE'), ('more', 'ADV'), ('immediate', 'ADJ'), ('premises', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('easily', 'ADV'), ('whiled', 'VERB'), ('away', 'ADV'), ('in', 'ADP'), ('lounging', 'VERB'), ('round', 'ADV'), ('the', 'DET'), ('kitchen', 'NOUN'), ('garden', 'NOUN'), ('\n', 'SPACE'), ('examining', 'VERB'), ('the', 'DET'), ('bloom', 'NOUN'), ('upon', 'SCONJ'), ('its', 'PRON'), ('walls', 'NOUN'), ('and', 'CCONJ'), ('listening', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('gardeners', 'NOUN'), ('lamentations', 'NOUN'), ('upon', 'SCONJ'), ('blights', 'NOUN'), ('in', 'ADP'), ('dawdling', 'VERB'), ('through', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('greenhouse', 'NOUN'), ('where', 'SCONJ'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('favourite', 'ADJ'), ('plants', 'NOUN'), ('\n', 'SPACE'), ('unwarily', 'ADV'), ('exposed', 'VERB'), ('and', 'CCONJ'), ('nipped', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('lingering', 'VERB'), ('frost', 'NOUN'), ('\n', 'SPACE'), ('raised', 'VERB'), ('the', 'DET'), ('laughter', 'NOUN'), ('of', 'ADP'), ('Charlotteand', 'PROPN'), ('in', 'ADP'), ('visiting', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('poultryyard', 'NOUN'), ('where', 'SCONJ'), ('in', 'ADP'), ('the', 'DET'), ('disappointed', 'ADJ'), ('hopes', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('dairymaid', 'VERB'), ('by', 'ADP'), ('hens', 'NOUN'), ('forsaking', 'VERB'), ('their', 'PRON'), ('nests', 'NOUN'), ('or', 'CCONJ'), ('being', 'AUX'), ('\n', 'SPACE'), ('stolen', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('fox', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('rapid', 'ADJ'), ('decrease', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('promising', 'ADJ'), ('\n', 'SPACE'), ('young', 'ADJ'), ('brood', 'NOUN'), ('she', 'PRON'), ('found', 'VERB'), ('fresh', 'ADJ'), ('sources', 'NOUN'), ('of', 'ADP'), ('merriment', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('morning', 'NOUN'), ('was', 'AUX'), ('fine', 'ADJ'), ('and', 'CCONJ'), ('dry', 'ADJ'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('plan', 'NOUN'), ('of', 'ADP'), ('employment', 'NOUN'), ('abroad', 'ADV'), ('had', 'AUX'), ('not', 'PART'), ('calculated', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('any', 'DET'), ('change', 'NOUN'), ('of', 'ADP'), ('weather', 'NOUN'), ('during', 'ADP'), ('their', 'PRON'), ('stay', 'NOUN'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('With', 'ADP'), ('great', 'ADJ'), ('surprise', 'NOUN'), ('therefore', 'ADV'), ('did', 'AUX'), ('she', 'PRON'), ('find', 'VERB'), ('herself', 'PRON'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('a', 'DET'), ('settled', 'VERB'), ('rain', 'NOUN'), ('from', 'ADP'), ('going', 'VERB'), ('out', 'ADP'), ('again', 'ADV'), ('after', 'SCONJ'), ('dinner', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('depended', 'VERB'), ('on', 'ADP'), ('a', 'DET'), ('twilight', 'NOUN'), ('walk', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('Grecian', 'ADJ'), ('temple', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('perhaps', 'ADV'), ('all', 'ADV'), ('over', 'ADP'), ('the', 'DET'), ('grounds', 'NOUN'), ('and', 'CCONJ'), ('an', 'DET'), ('evening', 'NOUN'), ('merely', 'ADV'), ('\n', 'SPACE'), ('cold', 'ADJ'), ('or', 'CCONJ'), ('damp', 'ADJ'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('deterred', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('a', 'DET'), ('heavy', 'ADJ'), ('and', 'CCONJ'), ('settled', 'VERB'), ('rain', 'NOUN'), ('even', 'ADV'), ('SHE', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('fancy', 'VERB'), ('dry', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('pleasant', 'ADJ'), ('weather', 'NOUN'), ('for', 'ADP'), ('walking', 'VERB'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('party', 'NOUN'), ('was', 'AUX'), ('small', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('hours', 'NOUN'), ('passed', 'VERB'), ('quietly', 'ADV'), ('away', 'ADV'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('had', 'VERB'), ('her', 'PRON'), ('child', 'NOUN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('her', 'PRON'), ('carpetwork', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('friends', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('behind', 'ADV'), ('\n', 'SPACE'), ('arranged', 'VERB'), ('Lady', 'PROPN'), ('Middletons', 'PROPN'), ('engagements', 'NOUN'), ('and', 'CCONJ'), ('wondered', 'VERB'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('would', 'AUX'), ('get', 'VERB'), ('farther', 'ADV'), ('\n', 'SPACE'), ('than', 'ADP'), ('Reading', 'VERB'), ('that', 'DET'), ('night', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('however', 'ADV'), ('little', 'ADJ'), ('concerned', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('it', 'PRON'), ('joined', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('discourse', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('who', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('knack', 'NOUN'), ('of', 'ADP'), ('finding', 'VERB'), ('her', 'PRON'), ('way', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('house', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('library', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('avoided', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('in', 'ADP'), ('general', 'ADJ'), ('\n', 'SPACE'), ('soon', 'ADV'), ('procured', 'VERB'), ('herself', 'PRON'), ('a', 'DET'), ('book', 'NOUN'), ('\n\n', 'SPACE'), ('Nothing', 'PRON'), ('was', 'AUX'), ('wanting', 'VERB'), ('on', 'ADP'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('side', 'NOUN'), ('that', 'PRON'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('friendly', 'ADJ'), ('good', 'ADJ'), ('humour', 'NOUN'), ('could', 'AUX'), ('do', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('feel', 'VERB'), ('\n', 'SPACE'), ('themselves', 'PRON'), ('welcome', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('openness', 'NOUN'), ('and', 'CCONJ'), ('heartiness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('manner', 'NOUN'), ('more', 'ADV'), ('than', 'ADP'), ('atoned', 'VERB'), ('for', 'ADP'), ('that', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('recollection', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('elegance', 'NOUN'), ('which', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('often', 'ADV'), ('deficient', 'ADJ'), ('in', 'ADP'), ('the', 'DET'), ('forms', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('politeness', 'NOUN'), ('her', 'PRON'), ('kindness', 'NOUN'), ('recommended', 'VERB'), ('by', 'ADP'), ('so', 'ADV'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('face', 'NOUN'), ('was', 'AUX'), ('engaging', 'VERB'), ('her', 'PRON'), ('folly', 'NOUN'), ('though', 'SCONJ'), ('evident', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('disgusting', 'ADJ'), ('because', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('conceited', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('have', 'AUX'), ('forgiven', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('but', 'CCONJ'), ('her', 'PRON'), ('laugh', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('two', 'NUM'), ('gentlemen', 'NOUN'), ('arrived', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('\n', 'SPACE'), ('late', 'ADJ'), ('dinner', 'NOUN'), ('affording', 'VERB'), ('a', 'DET'), ('pleasant', 'ADJ'), ('enlargement', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('party', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('very', 'ADV'), ('welcome', 'ADJ'), ('variety', 'NOUN'), ('to', 'ADP'), ('their', 'PRON'), ('conversation', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('\n', 'SPACE'), ('long', 'ADJ'), ('morning', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('continued', 'ADJ'), ('rain', 'NOUN'), ('had', 'AUX'), ('reduced', 'VERB'), ('very', 'ADV'), ('low', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('seen', 'VERB'), ('so', 'ADV'), ('little', 'ADJ'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('in', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('little', 'ADJ'), ('had', 'AUX'), ('seen', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('variety', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('address', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('herself', 'PRON'), ('that', 'SCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('not', 'PART'), ('what', 'PRON'), ('to', 'PART'), ('expect', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('find', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('family', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('found', 'VERB'), ('him', 'PRON'), ('however', 'ADV'), ('\n', 'SPACE'), ('perfectly', 'ADV'), ('the', 'DET'), ('gentleman', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('visitors', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('only', 'ADV'), ('occasionally', 'ADV'), ('rude', 'ADJ'), ('to', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('found', 'VERB'), ('him', 'PRON'), ('very', 'ADV'), ('capable', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('a', 'DET'), ('pleasant', 'ADJ'), ('companion', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('only', 'ADV'), ('prevented', 'VERB'), ('from', 'ADP'), ('being', 'AUX'), ('so', 'ADV'), ('always', 'ADV'), ('by', 'ADP'), ('too', 'ADV'), ('great', 'ADJ'), ('\n', 'SPACE'), ('an', 'DET'), ('aptitude', 'NOUN'), ('to', 'PART'), ('fancy', 'VERB'), ('himself', 'PRON'), ('as', 'ADV'), ('much', 'ADJ'), ('superior', 'ADJ'), ('to', 'ADP'), ('people', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('general', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('must', 'AUX'), ('feel', 'VERB'), ('himself', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Charlotte', 'PROPN'), (' ', 'SPACE'), ('For', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('character', 'NOUN'), ('and', 'CCONJ'), ('habits', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('marked', 'VERB'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('perceive', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('no', 'DET'), ('traits', 'NOUN'), ('at', 'ADV'), ('all', 'ADV'), ('unusual', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('sex', 'NOUN'), ('and', 'CCONJ'), ('time', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('nice', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('eating', 'VERB'), ('uncertain', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('hours', 'NOUN'), ('\n', 'SPACE'), ('fond', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('child', 'NOUN'), ('though', 'SCONJ'), ('affecting', 'VERB'), ('to', 'PART'), ('slight', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('idled', 'VERB'), ('away', 'ADV'), ('the', 'DET'), ('mornings', 'NOUN'), ('at', 'ADP'), ('billiards', 'NOUN'), ('which', 'PRON'), ('ought', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('devoted', 'VERB'), ('to', 'ADP'), ('business', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('liked', 'VERB'), ('him', 'PRON'), ('however', 'ADV'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('the', 'DET'), ('whole', 'ADJ'), ('much', 'ADV'), ('better', 'ADV'), ('than', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('expected', 'VERB'), ('and', 'CCONJ'), ('in', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('sorry', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('like', 'VERB'), ('him', 'PRON'), ('no', 'PRON'), ('more', 'ADV'), ('\n', 'SPACE'), ('not', 'PART'), ('sorry', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('driven', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('observation', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('Epicurism', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('selfishness', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('conceit', 'NOUN'), ('to', 'PART'), ('rest', 'VERB'), ('with', 'ADP'), ('complacency', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('remembrance', 'NOUN'), ('of', 'ADP'), ('Edwards', 'PROPN'), ('generous', 'ADJ'), ('temper', 'NOUN'), ('simple', 'ADJ'), ('taste', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('diffident', 'VERB'), ('feelings', 'NOUN'), ('\n\n', 'SPACE'), ('Of', 'ADP'), ('Edward', 'PROPN'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('of', 'ADP'), ('some', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('concerns', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('now', 'ADV'), ('received', 'VERB'), ('intelligence', 'NOUN'), ('from', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('into', 'ADP'), ('Dorsetshire', 'PROPN'), ('lately', 'ADV'), ('and', 'CCONJ'), ('who', 'PRON'), ('\n', 'SPACE'), ('treating', 'VERB'), ('her', 'PRON'), ('at', 'ADV'), ('once', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('disinterested', 'VERB'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('confidant', 'NOUN'), ('of', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('talked', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('parsonage', 'NOUN'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('\n', 'SPACE'), ('described', 'VERB'), ('its', 'PRON'), ('deficiencies', 'NOUN'), ('and', 'CCONJ'), ('told', 'VERB'), ('her', 'PRON'), ('what', 'PRON'), ('he', 'PRON'), ('meant', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('do', 'VERB'), ('himself', 'PRON'), ('towards', 'ADP'), ('removing', 'VERB'), ('themHis', 'DET'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('this', 'PRON'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('in', 'ADP'), ('every', 'DET'), ('other', 'ADJ'), ('particular', 'ADJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('open', 'ADJ'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('meeting', 'VERB'), ('her', 'PRON'), ('after', 'ADP'), ('an', 'DET'), ('absence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('only', 'ADV'), ('ten', 'NUM'), ('days', 'NOUN'), ('his', 'PRON'), ('readiness', 'NOUN'), ('to', 'PART'), ('converse', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('deference', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('might', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('justify', 'VERB'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('persuasion', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('enough', 'ADV'), ('perhaps', 'ADV'), ('had', 'AUX'), ('not', 'PART'), ('Elinor', 'PROPN'), ('still', 'ADV'), ('\n', 'SPACE'), ('as', 'ADP'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('believed', 'VERB'), ('Marianne', 'PROPN'), ('his', 'PRON'), ('real', 'ADJ'), ('favourite', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('suspect', 'VERB'), ('it', 'PRON'), ('herself', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('such', 'DET'), ('a', 'DET'), ('notion', 'NOUN'), ('had', 'AUX'), ('scarcely', 'ADV'), ('ever', 'ADV'), ('entered', 'VERB'), ('her', 'PRON'), ('head', 'NOUN'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('suggestion', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('help', 'VERB'), ('believing', 'VERB'), ('herself', 'PRON'), ('the', 'DET'), ('nicest', 'ADJ'), ('observer', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('twoshe', 'PRON'), ('watched', 'VERB'), ('his', 'PRON'), ('eyes', 'NOUN'), ('while', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('thought', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('of', 'ADP'), ('his', 'PRON'), ('behaviourand', 'NOUN'), ('while', 'SCONJ'), ('his', 'PRON'), ('looks', 'NOUN'), ('of', 'ADP'), ('anxious', 'ADJ'), ('\n', 'SPACE'), ('solicitude', 'NOUN'), ('on', 'ADP'), ('Mariannes', 'PROPN'), ('feeling', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('and', 'CCONJ'), ('throat', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('beginning', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('heavy', 'ADJ'), ('cold', 'NOUN'), ('because', 'SCONJ'), ('unexpressed', 'VERB'), ('by', 'ADP'), ('words', 'NOUN'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('escaped', 'VERB'), ('the', 'DET'), ('latter', 'ADJ'), ('ladys', 'NOUN'), ('observationSHE', 'PROPN'), ('could', 'AUX'), ('\n', 'SPACE'), ('discover', 'VERB'), ('in', 'ADP'), ('them', 'PRON'), ('the', 'DET'), ('quick', 'ADJ'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('needless', 'ADJ'), ('alarm', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('lover', 'NOUN'), ('\n\n', 'SPACE'), ('Two', 'NUM'), ('delighful', 'ADJ'), ('twilight', 'NOUN'), ('walks', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('third', 'ADJ'), ('and', 'CCONJ'), ('fourth', 'ADJ'), ('\n', 'SPACE'), ('evenings', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('being', 'AUX'), ('there', 'ADV'), ('not', 'PART'), ('merely', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('dry', 'ADJ'), ('gravel', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('shrubbery', 'NOUN'), ('but', 'CCONJ'), ('all', 'ADV'), ('over', 'ADP'), ('the', 'DET'), ('grounds', 'NOUN'), ('and', 'CCONJ'), ('especially', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('distant', 'ADJ'), ('parts', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('where', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('something', 'PRON'), ('\n', 'SPACE'), ('more', 'ADJ'), ('of', 'ADP'), ('wildness', 'NOUN'), ('than', 'ADP'), ('in', 'ADP'), ('the', 'DET'), ('rest', 'NOUN'), ('where', 'SCONJ'), ('the', 'DET'), ('trees', 'NOUN'), ('were', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('oldest', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('grass', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('longest', 'ADJ'), ('and', 'CCONJ'), ('wettest', 'ADJ'), ('\n', 'SPACE'), ('hadassisted', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('still', 'ADV'), ('greater', 'ADJ'), ('imprudence', 'NOUN'), ('of', 'ADP'), ('sitting', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('wet', 'ADJ'), ('shoes', 'NOUN'), ('and', 'CCONJ'), ('stockingsgiven', 'VERB'), ('Marianne', 'PROPN'), ('a', 'DET'), ('cold', 'ADJ'), ('\n', 'SPACE'), ('so', 'ADV'), ('violent', 'ADJ'), ('as', 'ADP'), ('though', 'ADV'), ('for', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('trifled', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('denied', 'VERB'), ('would', 'AUX'), ('force', 'VERB'), ('itself', 'PRON'), ('by', 'ADP'), ('increasing', 'VERB'), ('ailments', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('concern', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('notice', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('Prescriptions', 'PROPN'), ('poured', 'VERB'), ('in', 'ADP'), ('from', 'ADP'), ('all', 'DET'), ('quarters', 'NOUN'), ('and', 'CCONJ'), ('as', 'ADP'), ('usual', 'ADJ'), ('\n', 'SPACE'), ('were', 'AUX'), ('all', 'PRON'), ('declined', 'VERB'), (' ', 'SPACE'), ('Though', 'SCONJ'), ('heavy', 'ADJ'), ('and', 'CCONJ'), ('feverish', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('limbs', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('cough', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('sore', 'ADJ'), ('throat', 'NOUN'), ('a', 'DET'), ('good', 'ADJ'), ('nights', 'NOUN'), ('\n', 'SPACE'), ('rest', 'NOUN'), ('was', 'AUX'), ('to', 'PART'), ('cure', 'VERB'), ('her', 'PRON'), ('entirely', 'ADV'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('with', 'ADP'), ('difficulty', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Elinor', 'PROPN'), ('prevailed', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('when', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('try', 'VERB'), ('one', 'NUM'), ('or', 'CCONJ'), ('two', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('simplest', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('remedies', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('43', 'NUM'), ('\n\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('got', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('at', 'ADP'), ('her', 'PRON'), ('usual', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('every', 'DET'), ('inquiry', 'NOUN'), ('replied', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('better', 'ADJ'), ('and', 'CCONJ'), ('tried', 'VERB'), ('to', 'PART'), ('\n', 'SPACE'), ('prove', 'VERB'), ('herself', 'PRON'), ('so', 'ADV'), ('by', 'ADP'), ('engaging', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('accustomary', 'ADJ'), ('employments', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('a', 'DET'), ('day', 'NOUN'), ('spent', 'VERB'), ('in', 'ADP'), ('sitting', 'VERB'), ('shivering', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('fire', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('book', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('hand', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('read', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('in', 'ADP'), ('lying', 'VERB'), ('weary', 'ADJ'), ('and', 'CCONJ'), ('languid', 'ADJ'), ('on', 'ADP'), ('a', 'DET'), ('sofa', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('much', 'ADJ'), ('in', 'ADP'), ('favour', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('amendment', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('went', 'VERB'), ('early', 'ADV'), ('to', 'ADP'), ('bed', 'NOUN'), ('more', 'ADV'), ('and', 'CCONJ'), ('more', 'ADV'), ('indisposed', 'ADJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('only', 'ADV'), ('astonished', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('composure', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('though', 'SCONJ'), ('attending', 'VERB'), ('and', 'CCONJ'), ('nursing', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('whole', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('against', 'ADP'), ('Marianne', 'PROPN'), ('inclination', 'NOUN'), ('and', 'CCONJ'), ('forcing', 'VERB'), ('proper', 'ADJ'), ('medicines', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('at', 'ADP'), ('night', 'NOUN'), ('trusted', 'VERB'), ('like', 'ADP'), ('Marianne', 'PROPN'), ('to', 'ADP'), ('the', 'DET'), ('certainty', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('efficacy', 'NOUN'), ('of', 'ADP'), ('sleep', 'NOUN'), ('and', 'CCONJ'), ('felt', 'VERB'), ('no', 'DET'), ('real', 'ADJ'), ('alarm', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('very', 'ADV'), ('restless', 'ADJ'), ('and', 'CCONJ'), ('feverish', 'ADJ'), ('night', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('disappointed', 'VERB'), ('the', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('after', 'ADP'), ('persisting', 'VERB'), ('in', 'ADP'), ('rising', 'VERB'), ('confessed', 'VERB'), ('herself', 'PRON'), ('unable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('sit', 'VERB'), ('up', 'ADP'), ('and', 'CCONJ'), ('returned', 'VERB'), ('voluntarily', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('very', 'ADV'), ('ready', 'ADJ'), ('to', 'PART'), ('adopt', 'VERB'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('advice', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('sending', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('Palmers', 'PROPN'), ('apothecary', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('came', 'VERB'), ('examined', 'VERB'), ('his', 'PRON'), ('patient', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('encouraging', 'VERB'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('to', 'PART'), ('expect', 'VERB'), ('that', 'SCONJ'), ('a', 'DET'), ('very', 'ADV'), ('few', 'ADJ'), ('days', 'NOUN'), ('would', 'AUX'), ('restore', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('sister', 'NOUN'), ('to', 'ADP'), ('health', 'NOUN'), ('yet', 'ADV'), ('by', 'ADP'), ('pronouncing', 'VERB'), ('her', 'PRON'), ('disorder', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'VERB'), ('a', 'DET'), ('putrid', 'ADJ'), ('tendency', 'NOUN'), ('and', 'CCONJ'), ('allowing', 'VERB'), ('the', 'DET'), ('word', 'NOUN'), ('infection', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('pass', 'VERB'), ('his', 'PRON'), ('lips', 'NOUN'), ('gave', 'VERB'), ('instant', 'ADJ'), ('alarm', 'NOUN'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('babys', 'NOUN'), ('account', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('inclined', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('to', 'PART'), ('think', 'VERB'), ('Mariannes', 'PROPN'), ('complaint', 'VERB'), ('more', 'ADV'), ('serious', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('Elinor', 'PROPN'), ('now', 'ADV'), ('looked', 'VERB'), ('very', 'ADV'), ('grave', 'NOUN'), ('on', 'ADP'), ('Mr', 'PROPN'), ('Harriss', 'PROPN'), ('report', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('confirming', 'VERB'), ('Charlottes', 'PROPN'), ('fears', 'NOUN'), ('and', 'CCONJ'), ('caution', 'NOUN'), ('urged', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('necessity', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('immediate', 'ADJ'), ('removal', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('infant', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('though', 'SCONJ'), ('treating', 'VERB'), ('their', 'PRON'), ('apprehensions', 'NOUN'), ('as', 'ADP'), ('idle', 'NOUN'), ('\n', 'SPACE'), ('found', 'VERB'), ('the', 'DET'), ('anxiety', 'NOUN'), ('and', 'CCONJ'), ('importunity', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('too', 'ADV'), ('great', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('withstood', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('departure', 'NOUN'), ('therefore', 'ADV'), ('was', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('within', 'ADP'), ('an', 'DET'), ('hour', 'NOUN'), ('after', 'SCONJ'), ('Mr', 'PROPN'), ('Harriss', 'PROPN'), ('arrival', 'NOUN'), ('she', 'PRON'), ('set', 'VERB'), ('off', 'ADP'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('little', 'ADJ'), ('boy', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('nurse', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('near', 'ADJ'), ('relation', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Palmers', 'PROPN'), ('who', 'PRON'), ('lived', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('miles', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('side', 'NOUN'), ('of', 'ADP'), ('Bath', 'PROPN'), ('whither', 'NOUN'), ('her', 'PRON'), ('husband', 'NOUN'), ('promised', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('her', 'PRON'), ('earnest', 'ADJ'), ('entreaty', 'NOUN'), ('to', 'PART'), ('join', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('whither', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('equally', 'ADV'), ('urgent', 'ADJ'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('to', 'PART'), ('accompany', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('however', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('kindness', 'NOUN'), ('of', 'ADP'), ('heart', 'NOUN'), ('which', 'PRON'), ('made', 'VERB'), ('Elinor', 'PROPN'), ('really', 'ADV'), ('love', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('declared', 'VERB'), ('her', 'PRON'), ('resolution', 'NOUN'), ('of', 'ADP'), ('not', 'PART'), ('stirring', 'VERB'), ('from', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADV'), ('long', 'ADV'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('remained', 'VERB'), ('ill', 'ADJ'), ('and', 'CCONJ'), ('of', 'ADP'), ('endeavouring', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('attentive', 'ADJ'), ('care', 'NOUN'), ('to', 'PART'), ('supply', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('the', 'DET'), ('place', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('mother', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('taken', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('every', 'DET'), ('occasion', 'NOUN'), ('a', 'DET'), ('most', 'ADV'), ('willing', 'ADJ'), ('and', 'CCONJ'), ('active', 'ADJ'), ('helpmate', 'ADJ'), ('\n', 'SPACE'), ('desirous', 'ADJ'), ('to', 'PART'), ('share', 'VERB'), ('in', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('fatigues', 'NOUN'), ('and', 'CCONJ'), ('often', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('better', 'ADJ'), ('experience', 'NOUN'), ('in', 'ADP'), ('nursing', 'NOUN'), ('of', 'ADP'), ('material', 'NOUN'), ('use', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'PROPN'), ('Marianne', 'PROPN'), ('languid', 'NOUN'), ('and', 'CCONJ'), ('low', 'ADJ'), ('from', 'ADP'), ('the', 'DET'), ('nature', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('malady', 'ADJ'), ('and', 'CCONJ'), ('feeling', 'VERB'), ('herself', 'PRON'), ('universally', 'ADV'), ('ill', 'ADJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('hope', 'VERB'), ('that', 'SCONJ'), ('tomorrow', 'NOUN'), ('would', 'AUX'), ('find', 'VERB'), ('her', 'PRON'), ('recovered', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('tomorrow', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('produced', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('for', 'ADP'), ('this', 'DET'), ('unlucky', 'ADJ'), ('illness', 'NOUN'), ('made', 'VERB'), ('every', 'DET'), ('ailment', 'ADJ'), ('severe', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('on', 'ADP'), ('that', 'DET'), ('day', 'NOUN'), ('they', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('begun', 'VERB'), ('their', 'PRON'), ('journey', 'NOUN'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('attended', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('way', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('servant', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('were', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('taken', 'VERB'), ('their', 'PRON'), ('mother', 'NOUN'), ('by', 'ADP'), ('surprise', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('following', 'VERB'), ('forenoon', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('little', 'ADJ'), ('she', 'PRON'), ('said', 'VERB'), ('was', 'AUX'), ('all', 'PRON'), ('in', 'ADP'), ('\n', 'SPACE'), ('lamentation', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('inevitable', 'ADJ'), ('delay', 'NOUN'), ('though', 'SCONJ'), ('Elinor', 'PROPN'), ('tried', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('raise', 'VERB'), ('her', 'PRON'), ('spirits', 'NOUN'), ('and', 'CCONJ'), ('make', 'VERB'), ('her', 'PRON'), ('believe', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('THEN', 'ADV'), ('\n', 'SPACE'), ('really', 'ADV'), ('believed', 'VERB'), ('herself', 'PRON'), ('that', 'SCONJ'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('very', 'ADV'), ('short', 'ADJ'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('next', 'ADJ'), ('day', 'NOUN'), ('produced', 'VERB'), ('little', 'ADJ'), ('or', 'CCONJ'), ('no', 'PRON'), ('alteration', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('state', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('patient', 'NOUN'), ('she', 'PRON'), ('certainly', 'ADV'), ('was', 'AUX'), ('not', 'PART'), ('better', 'ADJ'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('except', 'SCONJ'), ('that', 'SCONJ'), ('there', 'PRON'), ('was', 'VERB'), ('no', 'DET'), ('amendment', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('appear', 'VERB'), ('worse', 'ADJ'), ('\n', 'SPACE'), ('Their', 'PRON'), ('party', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('farther', 'ADV'), ('reduced', 'VERB'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('very', 'ADV'), ('unwilling', 'ADJ'), ('to', 'PART'), ('go', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('from', 'ADP'), ('real', 'ADJ'), ('humanity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('goodnature', 'NOUN'), ('as', 'ADP'), ('from', 'ADP'), ('a', 'DET'), ('dislike', 'NOUN'), ('of', 'ADP'), ('appearing', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('frightened', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('was', 'AUX'), ('persuaded', 'VERB'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('by', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('to', 'PART'), ('perform', 'VERB'), ('his', 'PRON'), ('promise', 'NOUN'), ('of', 'ADP'), ('following', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('preparing', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('himself', 'PRON'), ('\n', 'SPACE'), ('with', 'SCONJ'), ('a', 'DET'), ('much', 'ADV'), ('greater', 'ADJ'), ('exertion', 'NOUN'), ('began', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('going', 'VERB'), ('\n', 'SPACE'), ('likewiseHere', 'ADP'), ('however', 'ADV'), ('the', 'DET'), ('kindness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('interposed', 'VERB'), ('most', 'ADV'), ('acceptably', 'ADV'), ('for', 'ADP'), ('to', 'PART'), ('send', 'VERB'), ('the', 'DET'), ('Colonel', 'PROPN'), ('away', 'ADV'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('his', 'PRON'), ('love', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('uneasiness', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('account', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('to', 'PART'), ('deprive', 'VERB'), ('them', 'PRON'), ('both', 'PRON'), ('she', 'PRON'), ('thought', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('comfort', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('telling', 'VERB'), ('him', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('his', 'PRON'), ('stay', 'NOUN'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('was', 'AUX'), ('necessary', 'ADJ'), ('to', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('want', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('play', 'VERB'), ('at', 'ADP'), ('piquet', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('evening', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('above', 'ADV'), ('with', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('c', 'PROPN'), ('she', 'PRON'), ('\n', 'SPACE'), ('urged', 'VERB'), ('him', 'PRON'), ('so', 'ADV'), ('strongly', 'ADV'), ('to', 'PART'), ('remain', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('who', 'PRON'), ('was', 'AUX'), ('gratifying', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('first', 'ADJ'), ('wish', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('compliance', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('long', 'ADV'), ('even', 'ADV'), ('affect', 'VERB'), ('to', 'AUX'), ('demur', 'NOUN'), ('especially', 'ADV'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('entreaty', 'NOUN'), ('was', 'AUX'), ('warmly', 'ADV'), ('seconded', 'VERB'), ('by', 'ADP'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('who', 'PRON'), ('seemed', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('feel', 'VERB'), ('a', 'DET'), ('relief', 'NOUN'), ('to', 'ADP'), ('himself', 'PRON'), ('in', 'ADP'), ('leaving', 'VERB'), ('behind', 'ADP'), ('him', 'PRON'), ('a', 'DET'), ('person', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('well', 'ADV'), ('able', 'ADJ'), ('to', 'PART'), ('assist', 'VERB'), ('or', 'CCONJ'), ('advise', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('in', 'ADP'), ('any', 'DET'), ('emergence', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('kept', 'VERB'), ('in', 'ADP'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('these', 'DET'), ('arrangements', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('knew', 'VERB'), ('not', 'PART'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('the', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('sending', 'VERB'), ('the', 'DET'), ('owners', 'NOUN'), ('of', 'ADP'), ('Cleveland', 'PROPN'), ('away', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('about', 'ADV'), ('seven', 'NUM'), ('days', 'NOUN'), ('from', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('gave', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('surprise', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('gave', 'VERB'), ('her', 'PRON'), ('likewise', 'ADV'), ('no', 'DET'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('never', 'ADV'), ('mentioned', 'VERB'), ('her', 'PRON'), ('name', 'NOUN'), ('\n\n', 'SPACE'), ('Two', 'NUM'), ('days', 'NOUN'), ('passed', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Palmers', 'PROPN'), ('departure', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('situation', 'NOUN'), ('continued', 'VERB'), ('with', 'ADP'), ('little', 'ADJ'), ('variation', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), (' ', 'SPACE'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('who', 'PRON'), ('attended', 'VERB'), ('her', 'PRON'), ('every', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('still', 'ADV'), ('talked', 'VERB'), ('boldly', 'ADV'), ('of', 'ADP'), ('a', 'DET'), ('speedy', 'ADJ'), ('recovery', 'NOUN'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('equally', 'ADV'), ('sanguine', 'ADJ'), ('but', 'CCONJ'), ('the', 'DET'), ('expectation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('so', 'ADV'), ('cheerful', 'ADJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('had', 'AUX'), ('determined', 'VERB'), ('\n', 'SPACE'), ('very', 'ADV'), ('early', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('seizure', 'NOUN'), ('that', 'PRON'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('never', 'ADV'), ('\n', 'SPACE'), ('get', 'VERB'), ('over', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('who', 'PRON'), ('was', 'AUX'), ('chiefly', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('use', 'NOUN'), ('in', 'ADP'), ('listening', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('forebodings', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('a', 'DET'), ('state', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('to', 'PART'), ('resist', 'VERB'), ('their', 'PRON'), ('influence', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('tried', 'VERB'), ('to', 'PART'), ('reason', 'VERB'), ('himself', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('fears', 'NOUN'), ('which', 'PRON'), ('the', 'DET'), ('different', 'ADJ'), ('\n', 'SPACE'), ('judgment', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('apothecary', 'NOUN'), ('seemed', 'VERB'), ('to', 'PART'), ('render', 'VERB'), ('absurd', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('many', 'ADJ'), ('hours', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('day', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('left', 'VERB'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('alone', 'ADJ'), ('were', 'AUX'), ('but', 'CCONJ'), ('too', 'ADV'), ('favourable', 'ADJ'), ('for', 'ADP'), ('the', 'DET'), ('admission', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('melancholy', 'ADJ'), ('idea', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('expel', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('mind', 'NOUN'), ('the', 'DET'), ('persuasion', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('see', 'VERB'), ('Marianne', 'PROPN'), ('no', 'ADV'), ('more', 'ADV'), ('\n\n', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('third', 'ADJ'), ('day', 'NOUN'), ('however', 'ADV'), ('the', 'DET'), ('gloomy', 'ADJ'), ('\n', 'SPACE'), ('anticipations', 'NOUN'), ('of', 'ADP'), ('both', 'PRON'), ('were', 'AUX'), ('almost', 'ADV'), ('done', 'VERB'), ('away', 'ADV'), ('for', 'ADP'), ('when', 'SCONJ'), ('\n', 'SPACE'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('arrived', 'VERB'), ('he', 'PRON'), ('declared', 'VERB'), ('his', 'PRON'), ('patient', 'NOUN'), ('materially', 'ADV'), ('better', 'ADJ'), ('\n', 'SPACE'), ('Her', 'PRON'), ('pulse', 'NOUN'), ('was', 'AUX'), ('much', 'ADV'), ('stronger', 'ADJ'), ('and', 'CCONJ'), ('every', 'DET'), ('symptom', 'NOUN'), ('more', 'ADV'), ('favourable', 'ADJ'), ('\n', 'SPACE'), ('than', 'ADP'), ('on', 'ADP'), ('the', 'DET'), ('preceding', 'VERB'), ('visit', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('confirmed', 'VERB'), ('in', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('pleasant', 'ADJ'), ('hope', 'NOUN'), ('was', 'AUX'), ('all', 'DET'), ('cheerfulness', 'NOUN'), ('rejoicing', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('letters', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('pursued', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('judgment', 'NOUN'), ('rather', 'ADV'), ('than', 'ADP'), ('her', 'PRON'), ('friends', 'NOUN'), ('in', 'ADP'), ('making', 'VERB'), ('very', 'ADV'), ('light', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('indisposition', 'NOUN'), ('which', 'PRON'), ('delayed', 'VERB'), ('them', 'PRON'), ('at', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('almost', 'ADV'), ('fixing', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('able', 'ADJ'), ('to', 'PART'), ('travel', 'VERB'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('day', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('close', 'VERB'), ('so', 'ADV'), ('auspiciously', 'ADV'), ('as', 'SCONJ'), ('it', 'PRON'), ('began', 'VERB'), ('\n', 'SPACE'), ('Towards', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('Marianne', 'PROPN'), ('became', 'VERB'), ('ill', 'ADJ'), ('again', 'ADV'), ('growing', 'VERB'), ('\n', 'SPACE'), ('more', 'ADV'), ('heavy', 'ADJ'), ('restless', 'NOUN'), ('and', 'CCONJ'), ('uncomfortable', 'ADJ'), ('than', 'ADP'), ('before', 'ADP'), ('\n', 'SPACE'), ('Her', 'PRON'), ('sister', 'NOUN'), ('however', 'ADV'), ('still', 'ADV'), ('sanguine', 'ADJ'), ('was', 'AUX'), ('willing', 'ADJ'), ('to', 'PART'), ('\n', 'SPACE'), ('attribute', 'VERB'), ('the', 'DET'), ('change', 'NOUN'), ('to', 'ADP'), ('nothing', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('the', 'DET'), ('fatigue', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('having', 'AUX'), ('sat', 'VERB'), ('up', 'ADP'), ('to', 'PART'), ('have', 'VERB'), ('her', 'PRON'), ('bed', 'NOUN'), ('made', 'VERB'), ('and', 'CCONJ'), ('carefully', 'ADV'), ('\n', 'SPACE'), ('administering', 'VERB'), ('the', 'DET'), ('cordials', 'NOUN'), ('prescribed', 'VERB'), ('saw', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('\n', 'SPACE'), ('satisfaction', 'NOUN'), ('sink', 'NOUN'), ('at', 'ADP'), ('last', 'ADV'), ('into', 'ADP'), ('a', 'DET'), ('slumber', 'NOUN'), ('from', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('expected', 'VERB'), ('the', 'DET'), ('most', 'ADV'), ('beneficial', 'ADJ'), ('effects', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('sleep', 'NOUN'), ('\n', 'SPACE'), ('though', 'ADV'), ('not', 'PART'), ('so', 'ADV'), ('quiet', 'ADJ'), ('as', 'SCONJ'), ('Elinor', 'PROPN'), ('wished', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('lasted', 'VERB'), ('a', 'DET'), ('considerable', 'ADJ'), ('time', 'NOUN'), ('and', 'CCONJ'), ('anxious', 'ADJ'), ('to', 'PART'), ('observe', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('result', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('herself', 'PRON'), ('she', 'PRON'), ('resolved', 'VERB'), ('to', 'PART'), ('sit', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('during', 'ADP'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('knowing', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('any', 'DET'), ('change', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('patient', 'NOUN'), ('went', 'VERB'), ('unusually', 'ADV'), ('early', 'ADV'), ('to', 'PART'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('maid', 'NOUN'), ('who', 'PRON'), ('was', 'AUX'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('principal', 'ADJ'), ('nurses', 'NOUN'), ('was', 'AUX'), ('recreating', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('housekeepers', 'NOUN'), ('room', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('remained', 'VERB'), ('\n', 'SPACE'), ('alone', 'ADJ'), ('with', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('repose', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('became', 'VERB'), ('more', 'ADV'), ('and', 'CCONJ'), ('more', 'ADV'), ('disturbed', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('who', 'PRON'), ('watched', 'VERB'), ('with', 'ADP'), ('unremitting', 'ADJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('continual', 'ADJ'), ('change', 'NOUN'), ('of', 'ADP'), ('posture', 'NOUN'), ('and', 'CCONJ'), ('heard', 'VERB'), ('the', 'DET'), ('frequent', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('inarticulate', 'ADJ'), ('sounds', 'NOUN'), ('of', 'ADP'), ('complaint', 'NOUN'), ('which', 'PRON'), ('passed', 'VERB'), ('her', 'PRON'), ('lips', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('almost', 'ADV'), ('wishing', 'VERB'), ('to', 'PART'), ('rouse', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('so', 'ADV'), ('painful', 'ADJ'), ('a', 'DET'), ('slumber', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('suddenly', 'ADV'), ('awakened', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('accidental', 'ADJ'), ('noise', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('started', 'VERB'), ('hastily', 'ADV'), ('up', 'ADV'), ('and', 'CCONJ'), ('with', 'SCONJ'), ('feverish', 'ADJ'), ('wildness', 'NOUN'), ('\n', 'SPACE'), ('cried', 'VERB'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('mama', 'NOUN'), ('coming', 'VERB'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('yet', 'ADV'), ('cried', 'VERB'), ('the', 'DET'), ('other', 'ADJ'), ('concealing', 'VERB'), ('her', 'PRON'), ('terror', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('assisting', 'VERB'), ('Marianne', 'PROPN'), ('to', 'PART'), ('lie', 'VERB'), ('down', 'ADP'), ('again', 'ADV'), ('but', 'CCONJ'), ('she', 'PRON'), ('will', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('here', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('before', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), ('long', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('way', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('know', 'VERB'), ('from', 'ADP'), ('hence', 'ADV'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('must', 'AUX'), ('not', 'PART'), ('go', 'VERB'), ('round', 'ADV'), ('by', 'ADP'), ('London', 'PROPN'), ('cried', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('hurried', 'ADJ'), ('manner', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('never', 'ADV'), ('see', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('she', 'PRON'), ('goes', 'VERB'), ('by', 'ADP'), ('London', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('perceived', 'VERB'), ('with', 'ADP'), ('alarm', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('quite', 'ADV'), ('herself', 'PRON'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('attempting', 'VERB'), ('to', 'PART'), ('soothe', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('eagerly', 'ADV'), ('felt', 'VERB'), ('her', 'PRON'), ('pulse', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('lower', 'ADJ'), ('and', 'CCONJ'), ('quicker', 'ADJ'), ('than', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('still', 'ADV'), ('talking', 'VERB'), ('wildly', 'ADV'), ('of', 'ADP'), ('mama', 'NOUN'), ('her', 'PRON'), ('alarm', 'NOUN'), ('\n', 'SPACE'), ('increased', 'VERB'), ('so', 'ADV'), ('rapidly', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('determine', 'VERB'), ('her', 'PRON'), ('on', 'ADP'), ('sending', 'VERB'), ('\n', 'SPACE'), ('instantly', 'ADV'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('and', 'CCONJ'), ('despatching', 'VERB'), ('a', 'DET'), ('messenger', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Barton', 'PROPN'), ('for', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('consult', 'VERB'), ('with', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('means', 'NOUN'), ('of', 'ADP'), ('effecting', 'VERB'), ('the', 'DET'), ('latter', 'ADJ'), ('was', 'AUX'), ('a', 'DET'), ('thought', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('immediately', 'ADV'), ('followed', 'VERB'), ('the', 'DET'), ('resolution', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('performance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('rung', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('maid', 'NOUN'), ('to', 'PART'), ('take', 'VERB'), ('her', 'PRON'), ('place', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('she', 'PRON'), ('hastened', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('he', 'PRON'), ('was', 'AUX'), ('generally', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('found', 'VERB'), ('at', 'ADP'), ('a', 'DET'), ('much', 'ADJ'), ('\n', 'SPACE'), ('later', 'ADJ'), ('hour', 'NOUN'), ('than', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('no', 'DET'), ('time', 'NOUN'), ('for', 'ADP'), ('hesitation', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('fears', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('difficulties', 'NOUN'), ('were', 'AUX'), ('immediately', 'ADV'), ('before', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('Her', 'PRON'), ('fears', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('courage', 'NOUN'), ('no', 'DET'), ('confidence', 'NOUN'), ('to', 'PART'), ('attempt', 'VERB'), ('the', 'DET'), ('removal', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('he', 'PRON'), ('listened', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('silent', 'ADJ'), ('despondencebut', 'NOUN'), ('her', 'PRON'), ('\n', 'SPACE'), ('difficulties', 'NOUN'), ('were', 'AUX'), ('instantly', 'ADV'), ('obviated', 'VERB'), ('for', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('readiness', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('seemed', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('the', 'DET'), ('occasion', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('service', 'NOUN'), ('\n', 'SPACE'), ('prearranged', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('he', 'PRON'), ('offered', 'VERB'), ('himself', 'PRON'), ('as', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('messenger', 'NOUN'), ('who', 'PRON'), ('should', 'AUX'), ('fetch', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('made', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('resistance', 'NOUN'), ('that', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('easily', 'ADV'), ('overcome', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('thanked', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('brief', 'ADJ'), ('though', 'SCONJ'), ('fervent', 'ADJ'), ('gratitude', 'NOUN'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('he', 'PRON'), ('went', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('hurry', 'VERB'), ('off', 'ADP'), ('his', 'PRON'), ('servant', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('message', 'NOUN'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('an', 'DET'), ('order', 'NOUN'), ('for', 'ADP'), ('posthorses', 'NOUN'), ('directly', 'ADV'), ('she', 'PRON'), ('wrote', 'VERB'), ('a', 'DET'), ('few', 'ADJ'), ('lines', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('friend', 'NOUN'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('as', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandonor', 'PROPN'), ('such', 'DET'), ('a', 'DET'), ('companion', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('motherhow', 'NOUN'), ('gratefully', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('it', 'PRON'), ('felta', 'NOUN'), ('companion', 'NOUN'), ('whose', 'DET'), ('judgment', 'NOUN'), ('would', 'AUX'), ('guide', 'VERB'), ('\n', 'SPACE'), ('whose', 'DET'), ('attendance', 'NOUN'), ('must', 'AUX'), ('relieve', 'VERB'), ('and', 'CCONJ'), ('whose', 'DET'), ('friendship', 'NOUN'), ('might', 'AUX'), ('\n', 'SPACE'), ('soothe', 'PROPN'), ('heras', 'NOUN'), ('far', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('shock', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('summons', 'NOUN'), ('COULD', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('lessened', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('his', 'PRON'), ('presence', 'NOUN'), ('his', 'PRON'), ('manners', 'NOUN'), ('his', 'PRON'), ('assistance', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('lessen', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('HE', 'PRON'), ('meanwhile', 'ADV'), ('whatever', 'PRON'), ('he', 'PRON'), ('might', 'AUX'), ('feel', 'AUX'), ('acted', 'VERB'), ('with', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('firmness', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('collected', 'VERB'), ('mind', 'NOUN'), ('made', 'VERB'), ('every', 'DET'), ('necessary', 'ADJ'), ('\n', 'SPACE'), ('arrangement', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('despatch', 'NOUN'), ('and', 'CCONJ'), ('calculated', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('exactness', 'ADJ'), ('the', 'DET'), ('time', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('might', 'AUX'), ('look', 'VERB'), ('for', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('return', 'NOUN'), (' ', 'SPACE'), ('Not', 'PART'), ('a', 'DET'), ('moment', 'NOUN'), ('was', 'AUX'), ('lost', 'VERB'), ('in', 'ADP'), ('delay', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('horses', 'NOUN'), ('arrived', 'VERB'), ('even', 'ADV'), ('before', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('expected', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('only', 'ADV'), ('pressing', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('solemnity', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('few', 'ADJ'), ('words', 'NOUN'), ('spoken', 'VERB'), ('too', 'ADV'), ('low', 'ADJ'), ('to', 'PART'), ('reach', 'VERB'), ('her', 'PRON'), ('ear', 'NOUN'), ('\n', 'SPACE'), ('hurried', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('then', 'ADV'), ('about', 'ADV'), ('twelve', 'NUM'), ('\n', 'SPACE'), ('oclock', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('apartment', 'NOUN'), ('to', 'PART'), ('wait', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('apothecary', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('watch', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('night', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('night', 'NOUN'), ('of', 'ADP'), ('almost', 'ADV'), ('equal', 'ADJ'), ('\n', 'SPACE'), ('suffering', 'NOUN'), ('to', 'ADP'), ('both', 'DET'), (' ', 'SPACE'), ('Hour', 'PROPN'), ('after', 'SCONJ'), ('hour', 'NOUN'), ('passed', 'VERB'), ('away', 'ADV'), ('in', 'ADP'), ('sleepless', 'NOUN'), ('\n', 'SPACE'), ('pain', 'NOUN'), ('and', 'CCONJ'), ('delirium', 'NOUN'), ('on', 'ADP'), ('Mariannes', 'PROPN'), ('side', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('cruel', 'ADJ'), ('anxiety', 'NOUN'), ('on', 'ADP'), ('Elinors', 'PROPN'), ('before', 'SCONJ'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('Her', 'PRON'), ('apprehensions', 'NOUN'), ('once', 'ADV'), ('raised', 'AUX'), ('paid', 'VERB'), ('by', 'ADP'), ('their', 'PRON'), ('excess', 'NOUN'), ('for', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('her', 'PRON'), ('former', 'ADJ'), ('security', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('servant', 'NOUN'), ('who', 'PRON'), ('sat', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('she', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('allow', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('called', 'VERB'), ('\n', 'SPACE'), ('only', 'ADV'), ('tortured', 'VERB'), ('her', 'PRON'), ('more', 'ADV'), ('by', 'ADP'), ('hints', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('mistress', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('always', 'ADV'), ('thought', 'VERB'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('ideas', 'NOUN'), ('were', 'AUX'), ('still', 'ADV'), ('at', 'ADP'), ('intervals', 'NOUN'), ('\n', 'SPACE'), ('fixed', 'VERB'), ('incoherently', 'ADV'), ('on', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('whenever', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('mentioned', 'VERB'), ('her', 'PRON'), ('name', 'NOUN'), ('it', 'PRON'), ('gave', 'VERB'), ('a', 'DET'), ('pang', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('heart', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('poor', 'ADJ'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('reproaching', 'VERB'), ('herself', 'PRON'), ('for', 'ADP'), ('having', 'AUX'), ('trifled', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('so', 'ADV'), ('many', 'ADJ'), ('days', 'NOUN'), ('of', 'ADP'), ('illness', 'NOUN'), ('and', 'CCONJ'), ('wretched', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('immediate', 'ADJ'), ('relief', 'NOUN'), ('fancied', 'VERB'), ('that', 'SCONJ'), ('all', 'DET'), ('relief', 'NOUN'), ('might', 'AUX'), ('soon', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('in', 'ADP'), ('vain', 'NOUN'), ('that', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('delayed', 'VERB'), ('too', 'ADV'), ('long', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('pictured', 'VERB'), ('to', 'ADP'), ('herself', 'PRON'), ('her', 'PRON'), ('suffering', 'VERB'), ('mother', 'NOUN'), ('arriving', 'VERB'), ('\n', 'SPACE'), ('too', 'ADV'), ('late', 'ADJ'), ('to', 'PART'), ('see', 'VERB'), ('this', 'DET'), ('darling', 'NOUN'), ('child', 'NOUN'), ('or', 'CCONJ'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('rational', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('sending', 'VERB'), ('again', 'ADV'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('if', 'SCONJ'), ('HE', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('come', 'VERB'), ('for', 'ADP'), ('some', 'DET'), ('other', 'ADJ'), ('advice', 'NOUN'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('the', 'DET'), ('formerbut', 'NOUN'), ('not', 'PART'), ('till', 'SCONJ'), ('after', 'ADP'), ('five', 'NUM'), ('oclockarrived', 'VERB'), ('\n', 'SPACE'), ('His', 'PRON'), ('opinion', 'NOUN'), ('however', 'ADV'), ('made', 'VERB'), ('some', 'DET'), ('little', 'ADJ'), ('amends', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('delay', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('though', 'SCONJ'), ('acknowledging', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('unexpected', 'ADJ'), ('and', 'CCONJ'), ('unpleasant', 'ADJ'), ('\n', 'SPACE'), ('alteration', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('patient', 'NOUN'), ('he', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('allow', 'VERB'), ('the', 'DET'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('material', 'NOUN'), ('and', 'CCONJ'), ('talked', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('relief', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('fresh', 'ADJ'), ('\n', 'SPACE'), ('mode', 'NOUN'), ('of', 'ADP'), ('treatment', 'NOUN'), ('must', 'AUX'), ('procure', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('confidence', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('lesser', 'ADJ'), ('degree', 'NOUN'), ('was', 'AUX'), ('communicated', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('promised', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('call', 'VERB'), ('again', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('hours', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('left', 'VERB'), ('both', 'CCONJ'), ('the', 'DET'), ('patient', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('anxious', 'ADJ'), ('attendant', 'NOUN'), ('more', 'ADV'), ('\n', 'SPACE'), ('composed', 'VERB'), ('than', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('found', 'VERB'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('strong', 'ADJ'), ('concern', 'NOUN'), ('and', 'CCONJ'), ('with', 'ADP'), ('many', 'ADJ'), ('reproaches', 'NOUN'), ('for', 'ADP'), ('not', 'PART'), ('\n', 'SPACE'), ('being', 'AUX'), ('called', 'VERB'), ('to', 'ADP'), ('their', 'PRON'), ('aid', 'NOUN'), ('did', 'AUX'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('hear', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('morning', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('former', 'ADJ'), ('apprehensions', 'NOUN'), ('\n', 'SPACE'), ('now', 'ADV'), ('with', 'ADP'), ('greater', 'ADJ'), ('reason', 'NOUN'), ('restored', 'VERB'), ('left', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('event', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('trying', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('comfort', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('her', 'PRON'), ('conviction', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('danger', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('allow', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('offer', 'VERB'), ('the', 'DET'), ('comfort', 'NOUN'), ('of', 'ADP'), ('hope', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('really', 'ADV'), ('grieved', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('rapid', 'ADJ'), ('decay', 'NOUN'), ('the', 'DET'), ('early', 'ADJ'), ('death', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('girl', 'NOUN'), ('so', 'ADV'), ('young', 'ADJ'), ('\n', 'SPACE'), ('so', 'ADV'), ('lovely', 'ADJ'), ('as', 'SCONJ'), ('Marianne', 'PROPN'), ('must', 'AUX'), ('have', 'AUX'), ('struck', 'VERB'), ('a', 'DET'), ('less', 'ADV'), ('interested', 'ADJ'), ('\n', 'SPACE'), ('person', 'NOUN'), ('with', 'ADP'), ('concern', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('compassion', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'VERB'), ('other', 'ADJ'), ('claims', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('for', 'ADP'), ('three', 'NUM'), ('months', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('companion', 'NOUN'), ('was', 'AUX'), ('still', 'ADV'), ('under', 'ADP'), ('her', 'PRON'), ('care', 'NOUN'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('known', 'VERB'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('greatly', 'ADV'), ('injured', 'VERB'), ('and', 'CCONJ'), ('long', 'ADJ'), ('unhappy', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('distress', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('too', 'ADV'), ('particularly', 'ADV'), ('a', 'DET'), ('favourite', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('before', 'ADP'), ('herand', 'ADV'), ('as', 'ADP'), ('for', 'ADP'), ('their', 'PRON'), ('mother', 'NOUN'), ('when', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('considered', 'VERB'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('might', 'AUX'), ('probably', 'ADV'), ('be', 'AUX'), ('to', 'ADP'), ('HER', 'PRON'), ('what', 'PRON'), ('\n', 'SPACE'), ('Charlotte', 'PROPN'), ('was', 'AUX'), ('to', 'ADP'), ('herself', 'PRON'), ('her', 'PRON'), ('sympathy', 'NOUN'), ('in', 'ADP'), ('HER', 'PRON'), ('sufferings', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('very', 'ADV'), ('sincere', 'ADJ'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('was', 'AUX'), ('punctual', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('second', 'ADJ'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('he', 'PRON'), ('came', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('disappointed', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('hopes', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('the', 'DET'), ('\n', 'SPACE'), ('last', 'ADJ'), ('would', 'AUX'), ('produce', 'VERB'), (' ', 'SPACE'), ('His', 'PRON'), ('medicines', 'NOUN'), ('had', 'VERB'), ('failedthe', 'DET'), ('fever', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('unabated', 'ADJ'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('only', 'ADV'), ('more', 'ADV'), ('quietnot', 'ADV'), ('more', 'ADV'), ('\n', 'SPACE'), ('herselfremained', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('heavy', 'ADJ'), ('stupor', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('catching', 'VERB'), ('all', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('more', 'ADJ'), ('than', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('fears', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('proposed', 'VERB'), ('to', 'PART'), ('call', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('further', 'ADJ'), ('advice', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('judged', 'VERB'), ('it', 'PRON'), ('unnecessary', 'ADJ'), ('he', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('still', 'ADV'), ('something', 'PRON'), ('more', 'ADJ'), ('to', 'PART'), ('try', 'VERB'), ('some', 'DET'), ('more', 'ADV'), ('fresh', 'ADJ'), ('application', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('whose', 'DET'), ('success', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('confident', 'ADJ'), ('as', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('and', 'CCONJ'), ('his', 'PRON'), ('\n', 'SPACE'), ('visit', 'NOUN'), ('concluded', 'VERB'), ('with', 'ADP'), ('encouraging', 'VERB'), ('assurances', 'NOUN'), ('which', 'PRON'), ('reached', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('ear', 'NOUN'), ('but', 'CCONJ'), ('could', 'AUX'), ('not', 'PART'), ('enter', 'VERB'), ('the', 'DET'), ('heart', 'NOUN'), ('of', 'ADP'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('calm', 'ADJ'), ('except', 'SCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('hopeless', 'ADJ'), ('and', 'CCONJ'), ('in', 'ADP'), ('this', 'DET'), ('state', 'NOUN'), ('she', 'PRON'), ('continued', 'VERB'), ('\n', 'SPACE'), ('till', 'SCONJ'), ('noon', 'NOUN'), ('scarcely', 'ADV'), ('stirring', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('bed', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('wandering', 'VERB'), ('from', 'ADP'), ('one', 'NUM'), ('image', 'NOUN'), ('of', 'ADP'), ('grief', 'NOUN'), ('\n', 'SPACE'), ('one', 'NUM'), ('suffering', 'VERB'), ('friend', 'NOUN'), ('to', 'ADP'), ('another', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('spirits', 'NOUN'), ('oppressed', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('utmost', 'NOUN'), ('by', 'ADP'), ('the', 'DET'), ('conversation', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('who', 'PRON'), ('scrupled', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('attribute', 'VERB'), ('the', 'DET'), ('severity', 'NOUN'), ('and', 'CCONJ'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'DET'), ('attack', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('of', 'ADP'), ('previous', 'ADJ'), ('indisposition', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('Mariannes', 'PROPN'), ('disappointment', 'NOUN'), ('had', 'AUX'), ('brought', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('felt', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('reasonableness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('idea', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('gave', 'VERB'), ('fresh', 'ADJ'), ('misery', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('reflections', 'NOUN'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('noon', 'NOUN'), ('however', 'ADV'), ('she', 'PRON'), ('beganbut', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('cautiona', 'NOUN'), ('\n', 'SPACE'), ('dread', 'NOUN'), ('of', 'ADP'), ('disappointment', 'NOUN'), ('which', 'PRON'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('kept', 'VERB'), ('her', 'PRON'), ('silent', 'ADJ'), ('\n', 'SPACE'), ('even', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('friendto', 'ADJ'), ('fancy', 'NOUN'), ('to', 'PART'), ('hope', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('perceive', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('slight', 'ADJ'), ('amendment', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('sisters', 'NOUN'), ('pulseshe', 'AUX'), ('waited', 'VERB'), ('\n', 'SPACE'), ('watched', 'VERB'), ('and', 'CCONJ'), ('examined', 'VERB'), ('it', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('againand', 'VERB'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('an', 'DET'), ('agitation', 'NOUN'), ('more', 'ADV'), ('difficult', 'ADJ'), ('to', 'PART'), ('bury', 'VERB'), ('under', 'ADP'), ('exterior', 'ADJ'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('foregoing', 'VERB'), ('distress', 'NOUN'), ('ventured', 'VERB'), ('to', 'PART'), ('communicate', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('hopes', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('though', 'ADV'), ('forced', 'VERB'), ('on', 'ADP'), ('examination', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('acknowledge', 'VERB'), ('a', 'DET'), ('temporary', 'ADJ'), ('revival', 'NOUN'), ('tried', 'VERB'), ('to', 'PART'), ('keep', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('young', 'ADJ'), ('friend', 'NOUN'), ('from', 'ADP'), ('indulging', 'VERB'), ('a', 'DET'), ('thought', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('continuance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('conning', 'VERB'), ('over', 'ADP'), ('every', 'DET'), ('injunction', 'NOUN'), ('of', 'ADP'), ('distrust', 'NOUN'), ('\n', 'SPACE'), ('told', 'VERB'), ('herself', 'PRON'), ('likewise', 'ADV'), ('not', 'PART'), ('to', 'PART'), ('hope', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('too', 'ADV'), ('late', 'ADJ'), ('\n', 'SPACE'), ('Hope', 'PROPN'), ('had', 'AUX'), ('already', 'ADV'), ('entered', 'VERB'), ('and', 'CCONJ'), ('feeling', 'VERB'), ('all', 'DET'), ('its', 'PRON'), ('anxious', 'ADJ'), ('flutter', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('bent', 'VERB'), ('over', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('to', 'ADP'), ('watchshe', 'PROPN'), ('hardly', 'ADV'), ('knew', 'VERB'), ('for', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('Half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('passed', 'VERB'), ('away', 'ADV'), ('and', 'CCONJ'), ('the', 'DET'), ('favourable', 'ADJ'), ('symptom', 'NOUN'), ('\n', 'SPACE'), ('yet', 'ADV'), ('blessed', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('Others', 'NOUN'), ('even', 'ADV'), ('arose', 'VERB'), ('to', 'PART'), ('confirm', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('Her', 'PRON'), ('breath', 'NOUN'), ('her', 'PRON'), ('skin', 'NOUN'), ('her', 'PRON'), ('lips', 'NOUN'), ('all', 'PRON'), ('flattered', 'ADJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('signs', 'NOUN'), ('of', 'ADP'), ('amendment', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('fixed', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('rational', 'ADJ'), ('though', 'SCONJ'), ('languid', 'ADJ'), ('gaze', 'NOUN'), (' ', 'SPACE'), ('Anxiety', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('hope', 'VERB'), ('now', 'ADV'), ('oppressed', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('equal', 'ADJ'), ('degrees', 'NOUN'), ('and', 'CCONJ'), ('left', 'VERB'), ('her', 'PRON'), ('no', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('of', 'ADP'), ('tranquillity', 'NOUN'), ('till', 'SCONJ'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Harris', 'PROPN'), ('at', 'ADP'), ('\n', 'SPACE'), ('four', 'NUM'), ('oclockwhen', 'ADJ'), ('his', 'PRON'), ('assurances', 'NOUN'), ('his', 'PRON'), ('felicitations', 'NOUN'), ('on', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('recovery', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('even', 'ADV'), ('surpassing', 'VERB'), ('his', 'PRON'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('gave', 'VERB'), ('her', 'PRON'), ('confidence', 'NOUN'), ('comfort', 'NOUN'), ('and', 'CCONJ'), ('tears', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('every', 'DET'), ('respect', 'NOUN'), ('materially', 'ADV'), ('better', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('declared', 'VERB'), ('her', 'PRON'), ('entirely', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('danger', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('partial', 'ADJ'), ('justification', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('forebodings', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('found', 'VERB'), ('in', 'ADP'), ('their', 'PRON'), ('late', 'ADJ'), ('alarm', 'NOUN'), ('\n', 'SPACE'), ('allowed', 'VERB'), ('herself', 'PRON'), ('to', 'PART'), ('trust', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('judgment', 'NOUN'), ('and', 'CCONJ'), ('admitted', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('unfeigned', 'ADJ'), ('joy', 'NOUN'), ('and', 'CCONJ'), ('soon', 'ADV'), ('with', 'ADP'), ('unequivocal', 'ADJ'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('probability', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('entire', 'ADJ'), ('recovery', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('cheerful', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('joy', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('different', 'ADJ'), ('kind', 'NOUN'), ('and', 'CCONJ'), ('led', 'VERB'), ('to', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('rather', 'ADV'), ('than', 'ADP'), ('to', 'ADP'), ('gaiety', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('restored', 'VERB'), ('to', 'ADP'), ('life', 'NOUN'), ('health', 'NOUN'), ('friends', 'NOUN'), ('and', 'CCONJ'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('doting', 'NOUN'), ('mother', 'NOUN'), ('was', 'AUX'), ('an', 'DET'), ('idea', 'NOUN'), ('to', 'PART'), ('fill', 'VERB'), ('her', 'PRON'), ('heart', 'NOUN'), ('with', 'ADP'), ('sensations', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('exquisite', 'ADJ'), ('comfort', 'NOUN'), ('and', 'CCONJ'), ('expand', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('fervent', 'ADJ'), ('gratitude', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('it', 'PRON'), ('lead', 'VERB'), ('to', 'ADP'), ('no', 'DET'), ('outward', 'ADJ'), ('demonstrations', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('no', 'DET'), ('words', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('smiles', 'NOUN'), (' ', 'SPACE'), ('All', 'ADV'), ('within', 'ADP'), ('Elinors', 'PROPN'), ('breast', 'NOUN'), ('was', 'AUX'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('silent', 'ADJ'), ('and', 'CCONJ'), ('strong', 'ADJ'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('continued', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('side', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('with', 'ADP'), ('little', 'ADJ'), ('\n', 'SPACE'), ('intermission', 'NOUN'), ('the', 'DET'), ('whole', 'ADJ'), ('afternoon', 'NOUN'), ('calming', 'VERB'), ('every', 'DET'), ('fear', 'NOUN'), ('\n', 'SPACE'), ('satisfying', 'VERB'), ('every', 'DET'), ('inquiry', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('enfeebled', 'VERB'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('supplying', 'VERB'), ('every', 'DET'), ('succour', 'NOUN'), ('and', 'CCONJ'), ('watching', 'VERB'), ('almost', 'ADV'), ('every', 'PRON'), ('look', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('every', 'DET'), ('breath', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('possibility', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('relapse', 'NOUN'), ('would', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('some', 'DET'), ('moments', 'NOUN'), ('occur', 'VERB'), ('to', 'PART'), ('remind', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('what', 'PRON'), ('anxiety', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('frequent', 'ADJ'), ('and', 'CCONJ'), ('minute', 'NOUN'), ('examination', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('every', 'DET'), ('symptom', 'NOUN'), ('of', 'ADP'), ('recovery', 'NOUN'), ('continued', 'VERB'), ('and', 'CCONJ'), ('saw', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('six', 'NUM'), ('oclock', 'ADJ'), ('sink', 'NOUN'), ('into', 'ADP'), ('a', 'DET'), ('quiet', 'ADJ'), ('steady', 'ADJ'), ('and', 'CCONJ'), ('to', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('appearance', 'NOUN'), ('comfortable', 'ADJ'), ('sleep', 'NOUN'), ('she', 'PRON'), ('silenced', 'VERB'), ('every', 'DET'), ('doubt', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('time', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('drawing', 'VERB'), ('on', 'ADP'), ('when', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('might', 'AUX'), ('be', 'AUX'), ('expected', 'VERB'), ('back', 'ADV'), (' ', 'SPACE'), ('At', 'ADP'), ('ten', 'NUM'), ('oclock', 'NOUN'), ('she', 'PRON'), ('trusted', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('not', 'PART'), ('much', 'ADV'), ('later', 'ADV'), ('her', 'PRON'), ('mother', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('relieved', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('dreadful', 'ADJ'), ('suspense', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('must', 'AUX'), ('now', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('travelling', 'VERB'), ('towards', 'ADP'), ('them', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('Colonel', 'PROPN'), ('tooperhaps', 'NOUN'), ('scarcely', 'ADV'), ('\n', 'SPACE'), ('less', 'ADJ'), ('an', 'DET'), ('object', 'NOUN'), ('of', 'ADP'), ('pityOhhow', 'NOUN'), ('slow', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('progress', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('time', 'NOUN'), ('which', 'PRON'), ('yet', 'ADV'), ('kept', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('ignorance', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('seven', 'NUM'), ('oclock', 'NOUN'), ('leaving', 'VERB'), ('Marianne', 'PROPN'), ('still', 'ADV'), ('sweetly', 'ADV'), ('asleep', 'ADJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('joined', 'VERB'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('to', 'ADP'), ('tea', 'NOUN'), ('\n', 'SPACE'), ('Of', 'ADP'), ('breakfast', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('kept', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('fears', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('\n', 'SPACE'), ('dinner', 'NOUN'), ('by', 'ADP'), ('their', 'PRON'), ('sudden', 'ADJ'), ('reverse', 'NOUN'), ('from', 'ADP'), ('eating', 'VERB'), ('much', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('present', 'ADJ'), ('refreshment', 'NOUN'), ('therefore', 'ADV'), ('with', 'ADP'), ('such', 'ADJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('content', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('brought', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('particularly', 'ADV'), ('welcome', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('would', 'AUX'), ('have', 'AUX'), ('persuaded', 'VERB'), ('her', 'PRON'), ('at', 'ADP'), ('its', 'PRON'), ('conclusion', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('take', 'VERB'), ('some', 'DET'), ('rest', 'NOUN'), ('before', 'SCONJ'), ('her', 'PRON'), ('mothers', 'NOUN'), ('arrival', 'VERB'), ('and', 'CCONJ'), ('allow', 'VERB'), ('HER', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('take', 'VERB'), ('her', 'PRON'), ('place', 'NOUN'), ('by', 'ADP'), ('Marianne', 'PROPN'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('had', 'VERB'), ('no', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('fatigue', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('capability', 'NOUN'), ('of', 'ADP'), ('sleep', 'NOUN'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('about', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('kept', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('an', 'DET'), ('unnecessary', 'ADJ'), ('instant', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('therefore', 'ADV'), ('attending', 'VERB'), ('her', 'PRON'), ('up', 'ADP'), ('stairs', 'NOUN'), ('into', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('sick', 'ADJ'), ('chamber', 'NOUN'), ('to', 'PART'), ('satisfy', 'VERB'), ('herself', 'PRON'), ('that', 'SCONJ'), ('all', 'PRON'), ('continued', 'VERB'), ('right', 'ADV'), ('\n', 'SPACE'), ('left', 'VERB'), ('her', 'PRON'), ('there', 'ADV'), ('again', 'ADV'), ('to', 'ADP'), ('her', 'PRON'), ('charge', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('retired', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('room', 'NOUN'), ('to', 'PART'), ('write', 'VERB'), ('letters', 'NOUN'), ('and', 'CCONJ'), ('sleep', 'VERB'), ('\n\n', 'SPACE'), ('The', 'DET'), ('night', 'NOUN'), ('was', 'AUX'), ('cold', 'ADJ'), ('and', 'CCONJ'), ('stormy', 'ADJ'), (' ', 'SPACE'), ('The', 'DET'), ('wind', 'NOUN'), ('roared', 'VERB'), ('\n', 'SPACE'), ('round', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('rain', 'NOUN'), ('beat', 'VERB'), ('against', 'ADP'), ('the', 'DET'), ('windows', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('all', 'DET'), ('happiness', 'NOUN'), ('within', 'ADP'), ('regarded', 'VERB'), ('it', 'PRON'), ('not', 'PART'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('slept', 'VERB'), ('through', 'ADP'), ('every', 'DET'), ('blast', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('travellers', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('had', 'VERB'), ('a', 'DET'), ('rich', 'ADJ'), ('reward', 'NOUN'), ('in', 'ADP'), ('store', 'NOUN'), ('for', 'ADP'), ('every', 'DET'), ('present', 'ADJ'), ('inconvenience', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('clock', 'NOUN'), ('struck', 'VERB'), ('eight', 'NUM'), (' ', 'SPACE'), ('Had', 'AUX'), ('it', 'PRON'), ('been', 'AUX'), ('ten', 'NUM'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('heard', 'VERB'), ('a', 'DET'), ('carriage', 'NOUN'), ('driving', 'VERB'), ('up', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('so', 'ADV'), ('strong', 'ADJ'), ('was', 'AUX'), ('the', 'DET'), ('persuasion', 'NOUN'), ('that', 'PRON'), ('she', 'PRON'), ('DID', 'VERB'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('ALMOST', 'ADJ'), ('impossibility', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('already', 'ADV'), ('come', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('moved', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('adjoining', 'ADJ'), ('dressingcloset', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('opened', 'VERB'), ('a', 'DET'), ('window', 'NOUN'), ('shutter', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('instantly', 'ADV'), ('saw', 'VERB'), ('that', 'SCONJ'), ('her', 'PRON'), ('ears', 'NOUN'), ('had', 'AUX'), ('not', 'PART'), ('deceived', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('flaring', 'VERB'), ('lamps', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('carriage', 'NOUN'), ('were', 'AUX'), ('immediately', 'ADV'), ('in', 'ADP'), ('view', 'NOUN'), ('\n', 'SPACE'), ('By', 'ADP'), ('their', 'PRON'), ('uncertain', 'ADJ'), ('light', 'NOUN'), ('she', 'PRON'), ('thought', 'VERB'), ('she', 'PRON'), ('could', 'AUX'), ('discern', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('drawn', 'VERB'), ('by', 'ADP'), ('four', 'NUM'), ('horses', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('while', 'SCONJ'), ('it', 'PRON'), ('told', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('excess', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('poor', 'ADJ'), ('mothers', 'NOUN'), ('alarm', 'NOUN'), ('gave', 'VERB'), ('some', 'DET'), ('explanation', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('such', 'ADJ'), ('unexpected', 'ADJ'), ('rapidity', 'NOUN'), ('\n\n', 'SPACE'), ('Never', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('had', 'AUX'), ('Elinor', 'PROPN'), ('found', 'VERB'), ('it', 'PRON'), ('so', 'ADV'), ('difficult', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('calm', 'ADJ'), ('as', 'ADP'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('feeling', 'VERB'), ('as', 'SCONJ'), ('the', 'DET'), ('carriage', 'NOUN'), ('stopt', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('doubther', 'NOUN'), ('dreadperhaps', 'VERB'), ('her', 'PRON'), ('despairand', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('SHE', 'PRON'), ('had', 'AUX'), ('to', 'PART'), ('tellwith', 'ADP'), ('such', 'ADJ'), ('knowledge', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('impossible', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('calm', 'ADJ'), (' ', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('remained', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('speedy', 'ADJ'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('staying', 'VERB'), ('only', 'ADV'), ('till', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('could', 'AUX'), ('leave', 'VERB'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('maid', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('hurried', 'VERB'), ('down', 'ADP'), ('stairs', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('bustle', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('vestibule', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('passed', 'VERB'), ('along', 'ADP'), ('\n', 'SPACE'), ('an', 'DET'), ('inner', 'ADJ'), ('lobby', 'NOUN'), ('assured', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('rushed', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('drawingroomshe', 'NOUN'), ('\n', 'SPACE'), ('entered', 'VERB'), ('itand', 'PROPN'), ('saw', 'VERB'), ('only', 'ADV'), ('Willoughby', 'PROPN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('44', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('starting', 'VERB'), ('back', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('horror', 'NOUN'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('sight', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('obeyed', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('impulse', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('turning', 'VERB'), ('instantly', 'ADV'), ('to', 'PART'), ('quit', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('already', 'ADV'), ('on', 'ADP'), ('the', 'DET'), ('lock', 'NOUN'), ('when', 'SCONJ'), ('its', 'PRON'), ('action', 'NOUN'), ('was', 'AUX'), ('suspended', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('his', 'PRON'), ('hastily', 'ADV'), ('advancing', 'VERB'), ('and', 'CCONJ'), ('saying', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('voice', 'NOUN'), ('rather', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('command', 'NOUN'), ('than', 'ADP'), ('supplication', 'NOUN'), ('\n\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('for', 'ADP'), ('half', 'DET'), ('an', 'DET'), ('hourfor', 'NOUN'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('entreat', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('stay', 'VERB'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('sir', 'NOUN'), ('she', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('firmness', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('NOT', 'PART'), ('stay', 'VERB'), ('\n', 'SPACE'), ('Your', 'PRON'), ('business', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('with', 'ADP'), ('ME', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('servants', 'NOUN'), ('I', 'PRON'), ('suppose', 'VERB'), ('\n', 'SPACE'), ('forgot', 'NOUN'), ('to', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('Had', 'AUX'), ('they', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('he', 'PRON'), ('cried', 'VERB'), ('with', 'ADP'), ('vehemence', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Palmer', 'PROPN'), ('and', 'CCONJ'), ('all', 'DET'), ('his', 'PRON'), ('relations', 'NOUN'), ('were', 'AUX'), ('at', 'ADP'), ('the', 'DET'), ('devil', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('turned', 'VERB'), ('me', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('business', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('with', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('only', 'ADV'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('mein', 'PROPN'), ('the', 'DET'), ('utmost', 'ADJ'), ('amazementwell', 'NOUN'), ('sir', 'NOUN'), ('\n', 'SPACE'), ('be', 'AUX'), ('quickand', 'ADJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('canless', 'ADJ'), ('violent', 'ADJ'), ('\n\n', 'SPACE'), ('Sit', 'VERB'), ('down', 'ADP'), ('and', 'CCONJ'), ('I', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('both', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('hesitated', 'VERB'), ('she', 'PRON'), ('knew', 'VERB'), ('not', 'PART'), ('what', 'PRON'), ('to', 'PART'), ('do', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('possibility', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('arriving', 'VERB'), ('and', 'CCONJ'), ('finding', 'VERB'), ('her', 'PRON'), ('there', 'PRON'), ('\n', 'SPACE'), ('came', 'VERB'), ('across', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('promised', 'VERB'), ('to', 'PART'), ('hear', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('curiosity', 'NOUN'), ('no', 'ADV'), ('less', 'ADJ'), ('than', 'SCONJ'), ('her', 'PRON'), ('honor', 'NOUN'), ('was', 'AUX'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('recollection', 'NOUN'), ('therefore', 'ADV'), ('concluding', 'VERB'), ('that', 'DET'), ('\n', 'SPACE'), ('prudence', 'NOUN'), ('required', 'VERB'), ('dispatch', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('her', 'PRON'), ('acquiescence', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('best', 'ADJ'), ('promote', 'VERB'), ('it', 'PRON'), ('she', 'PRON'), ('walked', 'VERB'), ('silently', 'ADV'), ('towards', 'ADP'), ('the', 'DET'), ('table', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sat', 'VERB'), ('down', 'ADP'), (' ', 'SPACE'), ('He', 'PRON'), ('took', 'VERB'), ('the', 'DET'), ('opposite', 'ADJ'), ('chair', 'NOUN'), ('and', 'CCONJ'), ('for', 'ADP'), ('half', 'DET'), ('\n', 'SPACE'), ('a', 'DET'), ('minute', 'NOUN'), ('not', 'PART'), ('a', 'DET'), ('word', 'NOUN'), ('was', 'AUX'), ('said', 'VERB'), ('by', 'ADP'), ('either', 'PRON'), ('\n\n', 'SPACE'), ('Pray', 'VERB'), ('be', 'AUX'), ('quick', 'ADJ'), ('sirsaid', 'NOUN'), ('Elinor', 'PROPN'), ('impatiently', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('no', 'DET'), ('time', 'NOUN'), ('to', 'PART'), ('spare', 'VERB'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('sitting', 'VERB'), ('in', 'ADP'), ('an', 'DET'), ('attitude', 'NOUN'), ('of', 'ADP'), ('deep', 'ADJ'), ('meditation', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('seemed', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('hear', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('abruptness', 'ADV'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('afterwardsis', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('danger', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('heard', 'VERB'), ('it', 'PRON'), ('from', 'ADP'), ('the', 'DET'), ('servant', 'NOUN'), ('\n', 'SPACE'), ('God', 'PROPN'), ('be', 'AUX'), ('praisedBut', 'NUM'), ('is', 'AUX'), ('it', 'PRON'), ('true', 'ADJ'), ('is', 'AUX'), ('it', 'PRON'), ('really', 'ADV'), ('true', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), (' ', 'SPACE'), ('He', 'PRON'), ('repeated', 'VERB'), ('the', 'DET'), ('inquiry', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('yet', 'ADV'), ('greater', 'ADJ'), ('eagerness', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'SCONJ'), ('Gods', 'PROPN'), ('sake', 'NOUN'), ('tell', 'VERB'), ('me', 'PRON'), ('is', 'AUX'), ('she', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('danger', 'NOUN'), ('or', 'CCONJ'), ('is', 'AUX'), ('she', 'PRON'), ('not', 'PART'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('hope', 'VERB'), ('she', 'PRON'), ('is', 'AUX'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('rose', 'VERB'), ('up', 'ADP'), ('and', 'CCONJ'), ('walked', 'VERB'), ('across', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n', 'SPACE'), ('Had', 'AUX'), ('I', 'PRON'), ('known', 'VERB'), ('as', 'ADV'), ('much', 'ADJ'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('agoBut', 'NOUN'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('I', 'PRON'), ('AM', 'AUX'), ('herespeaking', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('forced', 'VERB'), ('vivacity', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('returned', 'VERB'), ('to', 'ADP'), ('his', 'PRON'), ('seatwhat', 'NOUN'), ('does', 'VERB'), ('it', 'PRON'), ('signifyFor', 'PUNCT'), ('once', 'ADV'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwoodit', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('last', 'ADJ'), ('time', 'NOUN'), ('perhapslet', 'VERB'), ('us', 'PRON'), ('\n', 'SPACE'), ('be', 'AUX'), ('cheerful', 'ADJ'), ('togetherI', 'PROPN'), ('am', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('fine', 'ADJ'), ('mood', 'NOUN'), ('for', 'ADP'), ('gaiety', 'NOUN'), ('\n', 'SPACE'), ('Tell', 'VERB'), ('me', 'PRON'), ('honestlya', 'VERB'), ('deeper', 'ADJ'), ('glow', 'NOUN'), ('overspreading', 'VERB'), ('his', 'PRON'), ('cheeks', 'NOUN'), ('\n', 'SPACE'), ('do', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('me', 'PRON'), ('most', 'ADV'), ('a', 'DET'), ('knave', 'NOUN'), ('or', 'CCONJ'), ('a', 'DET'), ('fool', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('looked', 'VERB'), ('at', 'ADP'), ('him', 'PRON'), ('with', 'ADP'), ('greater', 'ADJ'), ('astonishment', 'NOUN'), ('than', 'SCONJ'), ('ever', 'ADV'), ('\n', 'SPACE'), ('She', 'PRON'), ('began', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('that', 'PRON'), ('be', 'AUX'), ('must', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('liquorthe', 'NOUN'), ('\n', 'SPACE'), ('strangeness', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('visit', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('such', 'ADJ'), ('manners', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('no', 'DET'), ('otherwise', 'ADV'), ('intelligible', 'ADJ'), ('and', 'CCONJ'), ('with', 'ADP'), ('this', 'DET'), ('impression', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('immediately', 'ADV'), ('rose', 'VERB'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('I', 'PRON'), ('advise', 'VERB'), ('you', 'PRON'), ('at', 'ADP'), ('present', 'ADJ'), ('to', 'PART'), ('return', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('CombeI', 'VERB'), ('am', 'AUX'), ('not', 'PART'), ('at', 'ADP'), ('leisure', 'NOUN'), ('to', 'PART'), ('remain', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('longer', 'ADV'), ('\n', 'SPACE'), ('Whatever', 'PRON'), ('your', 'PRON'), ('business', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('with', 'ADP'), ('me', 'PRON'), ('will', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('better', 'ADJ'), ('\n', 'SPACE'), ('recollected', 'VERB'), ('and', 'CCONJ'), ('explained', 'VERB'), ('tomorrow', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('understand', 'VERB'), ('you', 'PRON'), ('he', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('an', 'DET'), ('expressive', 'ADJ'), ('smile', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('voice', 'NOUN'), ('perfectly', 'ADV'), ('calm', 'ADJ'), ('yes', 'INTJ'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('drunk', 'ADJ'), ('\n', 'SPACE'), ('A', 'DET'), ('pint', 'NOUN'), ('of', 'ADP'), ('porter', 'NOUN'), ('with', 'ADP'), ('my', 'PRON'), ('cold', 'ADJ'), ('beef', 'NOUN'), ('at', 'ADP'), ('Marlborough', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('enough', 'ADJ'), ('to', 'PART'), ('overset', 'VERB'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('Marlboroughcried', 'PROPN'), ('Elinor', 'PROPN'), ('more', 'ADV'), ('and', 'CCONJ'), ('more', 'ADV'), ('at', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('loss', 'NOUN'), ('to', 'PART'), ('understand', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('at', 'ADP'), ('\n\n', 'SPACE'), ('YesI', 'PROPN'), ('left', 'VERB'), ('London', 'PROPN'), ('this', 'DET'), ('morning', 'NOUN'), ('at', 'ADP'), ('eight', 'NUM'), ('oclock', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('only', 'ADJ'), ('ten', 'NUM'), ('minutes', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('spent', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('my', 'PRON'), ('chaise', 'NOUN'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('that', 'DET'), ('time', 'NOUN'), ('procured', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('nuncheon', 'NOUN'), ('at', 'ADP'), ('Marlborough', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('steadiness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('manner', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('eye', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('spoke', 'VERB'), ('convincing', 'VERB'), ('Elinor', 'PROPN'), ('that', 'SCONJ'), ('whatever', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('unpardonable', 'ADJ'), ('folly', 'NOUN'), ('might', 'AUX'), ('bring', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('Cleveland', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('brought', 'VERB'), ('there', 'ADV'), ('by', 'ADP'), ('intoxication', 'NOUN'), ('she', 'PRON'), ('said', 'VERB'), ('\n', 'SPACE'), ('after', 'ADP'), ('a', 'DET'), ('moments', 'NOUN'), ('recollection', 'NOUN'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('you', 'PRON'), ('OUGHT', 'AUX'), ('to', 'PART'), ('feel', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('certainly', 'ADV'), ('\n', 'SPACE'), ('DOthat', 'PROPN'), ('after', 'ADP'), ('what', 'PRON'), ('has', 'AUX'), ('passedyour', 'PRON'), ('coming', 'VERB'), ('here', 'ADV'), ('in', 'ADP'), ('\n', 'SPACE'), ('this', 'DET'), ('manner', 'NOUN'), ('and', 'CCONJ'), ('forcing', 'VERB'), ('yourself', 'PRON'), ('upon', 'SCONJ'), ('my', 'PRON'), ('notice', 'NOUN'), ('\n', 'SPACE'), ('requires', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('particular', 'ADJ'), ('excuseWhat', 'ADP'), ('is', 'AUX'), ('it', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('mean', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('meansaid', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('serious', 'ADJ'), ('energyif', 'NOUN'), ('I', 'PRON'), ('can', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('you', 'PRON'), ('hate', 'VERB'), ('me', 'PRON'), ('one', 'NUM'), ('degree', 'NOUN'), ('less', 'ADJ'), ('than', 'SCONJ'), ('you', 'PRON'), ('do', 'VERB'), ('NOW', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('mean', 'VERB'), ('to', 'PART'), ('offer', 'VERB'), ('some', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('explanation', 'NOUN'), ('some', 'DET'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('apology', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('to', 'PART'), ('open', 'VERB'), ('my', 'PRON'), ('whole', 'ADJ'), ('heart', 'NOUN'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('convincing', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('blockhead', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('always', 'ADV'), ('a', 'DET'), ('rascal', 'NOUN'), ('to', 'PART'), ('obtain', 'VERB'), ('\n', 'SPACE'), ('something', 'PRON'), ('like', 'ADP'), ('forgiveness', 'NOUN'), ('from', 'ADP'), ('Mafrom', 'PROPN'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('this', 'PRON'), ('the', 'DET'), ('real', 'ADJ'), ('reason', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('coming', 'VERB'), ('\n\n', 'SPACE'), ('Upon', 'SCONJ'), ('my', 'PRON'), ('soul', 'NOUN'), ('it', 'PRON'), ('iswas', 'VERB'), ('his', 'PRON'), ('answer', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('warmth', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('brought', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('former', 'ADJ'), ('Willoughby', 'PROPN'), ('to', 'ADP'), ('her', 'PRON'), ('remembrance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('think', 'VERB'), ('him', 'PRON'), ('sincere', 'ADJ'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('that', 'PRON'), ('is', 'AUX'), ('all', 'PRON'), ('you', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('already', 'ADV'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('Marianne', 'PROPN'), ('DOESshe', 'PROPN'), ('has', 'AUX'), ('LONG', 'ADV'), ('forgiven', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Has', 'AUX'), ('shehe', 'ADV'), ('cried', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('eager', 'ADJ'), ('tone', 'NOUN'), ('\n', 'SPACE'), ('Then', 'ADV'), ('she', 'PRON'), ('has', 'AUX'), ('forgiven', 'VERB'), ('me', 'PRON'), ('before', 'SCONJ'), ('she', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('done', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('shall', 'AUX'), ('forgive', 'VERB'), ('me', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('on', 'ADP'), ('more', 'ADV'), ('reasonable', 'ADJ'), ('\n', 'SPACE'), ('groundsNOW', 'PRON'), ('will', 'AUX'), ('you', 'PRON'), ('listen', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('bowed', 'VERB'), ('her', 'PRON'), ('assent', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('said', 'VERB'), ('he', 'PRON'), ('after', 'ADP'), ('a', 'DET'), ('pause', 'NOUN'), ('of', 'ADP'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), ('and', 'CCONJ'), ('thoughtfulness', 'ADJ'), ('on', 'ADP'), ('his', 'PRON'), ('ownhow', 'NOUN'), ('YOU', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('have', 'AUX'), ('accounted', 'VERB'), ('for', 'ADP'), ('my', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('what', 'PRON'), ('diabolical', 'ADJ'), ('motive', 'NOUN'), ('you', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('imputed', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('Perhaps', 'ADV'), ('you', 'PRON'), ('will', 'AUX'), ('hardly', 'ADV'), ('think', 'VERB'), ('the', 'DET'), ('better', 'ADJ'), ('of', 'ADP'), ('meit', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('worth', 'ADJ'), ('the', 'DET'), ('trial', 'NOUN'), ('however', 'ADV'), ('and', 'CCONJ'), ('you', 'PRON'), ('shall', 'AUX'), ('hear', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('When', 'SCONJ'), ('I', 'PRON'), ('first', 'ADV'), ('became', 'VERB'), ('intimate', 'ADJ'), ('in', 'ADP'), ('your', 'PRON'), ('family', 'NOUN'), ('I', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('intention', 'NOUN'), ('no', 'DET'), ('other', 'ADJ'), ('view', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('to', 'PART'), ('pass', 'VERB'), ('my', 'PRON'), ('time', 'NOUN'), ('pleasantly', 'ADV'), ('while', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('remain', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('more', 'ADV'), ('pleasantly', 'ADV'), ('than', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('done', 'VERB'), ('before', 'ADP'), ('\n', 'SPACE'), ('Your', 'PRON'), ('sisters', 'NOUN'), ('lovely', 'ADJ'), ('person', 'NOUN'), ('and', 'CCONJ'), ('interesting', 'ADJ'), ('manners', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('but', 'CCONJ'), ('please', 'VERB'), ('me', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('almost', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('was', 'AUX'), ('of', 'ADP'), ('a', 'DET'), ('kindIt', 'PROPN'), ('is', 'AUX'), ('astonishing', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('reflect', 'VERB'), ('on', 'ADP'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('and', 'CCONJ'), ('what', 'PRON'), ('SHE', 'PRON'), ('was', 'AUX'), ('that', 'SCONJ'), ('my', 'PRON'), ('\n', 'SPACE'), ('heart', 'NOUN'), ('should', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('insensible', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('first', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('must', 'AUX'), ('confess', 'VERB'), ('my', 'PRON'), ('vanity', 'NOUN'), ('only', 'ADV'), ('was', 'AUX'), ('elevated', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('Careless', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('happiness', 'NOUN'), ('thinking', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('amusement', 'NOUN'), ('\n', 'SPACE'), ('giving', 'VERB'), ('way', 'NOUN'), ('to', 'ADP'), ('feelings', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('been', 'AUX'), ('too', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('of', 'ADP'), ('indulging', 'VERB'), ('I', 'PRON'), ('endeavoured', 'VERB'), ('by', 'ADP'), ('every', 'DET'), ('means', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('myself', 'PRON'), ('pleasing', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('without', 'ADP'), ('any', 'DET'), ('\n', 'SPACE'), ('design', 'NOUN'), ('of', 'ADP'), ('returning', 'VERB'), ('her', 'PRON'), ('affection', 'NOUN'), ('\n\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('at', 'ADP'), ('this', 'DET'), ('point', 'NOUN'), ('turning', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('on', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('angry', 'ADJ'), ('contempt', 'NOUN'), ('stopped', 'VERB'), ('him', 'PRON'), ('by', 'ADP'), ('saying', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('hardly', 'ADV'), ('worth', 'ADJ'), ('while', 'SCONJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('you', 'PRON'), ('to', 'PART'), ('relate', 'VERB'), ('or', 'CCONJ'), ('for', 'SCONJ'), ('me', 'PRON'), ('to', 'PART'), ('listen', 'VERB'), ('any', 'ADV'), ('longer', 'ADV'), ('\n', 'SPACE'), ('Such', 'DET'), ('a', 'DET'), ('beginning', 'NOUN'), ('as', 'SCONJ'), ('this', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('followed', 'VERB'), ('by', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('let', 'VERB'), ('me', 'PRON'), ('be', 'AUX'), ('pained', 'VERB'), ('by', 'ADP'), ('hearing', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('more', 'ADV'), ('on', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('subject', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('insist', 'VERB'), ('on', 'ADP'), ('you', 'PRON'), ('hearing', 'VERB'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('he', 'PRON'), ('replied', 'VERB'), ('\n', 'SPACE'), ('My', 'PRON'), ('fortune', 'NOUN'), ('was', 'AUX'), ('never', 'ADV'), ('large', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('been', 'AUX'), ('expensive', 'ADJ'), ('\n', 'SPACE'), ('always', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('habit', 'NOUN'), ('of', 'ADP'), ('associating', 'VERB'), ('with', 'ADP'), ('people', 'NOUN'), ('of', 'ADP'), ('better', 'ADJ'), ('\n', 'SPACE'), ('income', 'NOUN'), ('than', 'ADP'), ('myself', 'PRON'), (' ', 'SPACE'), ('Every', 'DET'), ('year', 'NOUN'), ('since', 'SCONJ'), ('my', 'PRON'), ('coming', 'NOUN'), ('of', 'ADP'), ('age', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('even', 'ADV'), ('before', 'SCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('had', 'AUX'), ('added', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('debts', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('death', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('old', 'ADJ'), ('cousin', 'NOUN'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('set', 'VERB'), ('me', 'PRON'), ('free', 'ADJ'), ('\n', 'SPACE'), ('yet', 'ADV'), ('that', 'DET'), ('event', 'NOUN'), ('being', 'AUX'), ('uncertain', 'ADJ'), ('and', 'CCONJ'), ('possibly', 'ADV'), ('far', 'ADV'), ('distant', 'ADJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('my', 'PRON'), ('intention', 'NOUN'), ('to', 'PART'), ('reestablish', 'VERB'), ('my', 'PRON'), ('\n', 'SPACE'), ('circumstances', 'NOUN'), ('by', 'ADP'), ('marrying', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('fortune', 'NOUN'), (' ', 'SPACE'), ('To', 'PART'), ('attach', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('therefore', 'ADV'), ('was', 'AUX'), ('not', 'PART'), ('a', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('thought', 'VERB'), ('ofand', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('meanness', 'NOUN'), ('selfishness', 'NOUN'), ('cruelty', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('no', 'DET'), ('indignant', 'NOUN'), ('no', 'DET'), ('contemptuous', 'ADJ'), ('look', 'NOUN'), ('even', 'ADV'), ('of', 'ADP'), ('yours', 'PRON'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('can', 'AUX'), ('ever', 'ADV'), ('reprobate', 'VERB'), ('too', 'ADV'), ('muchI', 'PROPN'), ('was', 'AUX'), ('acting', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('this', 'DET'), ('manner', 'NOUN'), ('trying', 'VERB'), ('to', 'PART'), ('engage', 'VERB'), ('her', 'PRON'), ('regard', 'NOUN'), ('without', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('thought', 'NOUN'), ('of', 'ADP'), ('returning', 'VERB'), ('itBut', 'ADJ'), ('one', 'NUM'), ('thing', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('said', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('me', 'PRON'), ('even', 'ADV'), ('in', 'ADP'), ('that', 'DET'), ('horrid', 'PROPN'), ('state', 'NOUN'), ('of', 'ADP'), ('selfish', 'ADJ'), ('vanity', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('the', 'DET'), ('extent', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('injury', 'NOUN'), ('I', 'PRON'), ('meditated', 'VERB'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('THEN', 'ADV'), ('know', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('love', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('have', 'AUX'), ('I', 'PRON'), ('ever', 'ADV'), ('known', 'VERB'), ('itWell', 'ADV'), ('may', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('doubted', 'VERB'), ('for', 'SCONJ'), ('had', 'AUX'), ('I', 'PRON'), ('\n', 'SPACE'), ('really', 'ADV'), ('loved', 'VERB'), ('could', 'AUX'), ('I', 'PRON'), ('have', 'AUX'), ('sacrificed', 'VERB'), ('my', 'PRON'), ('feelings', 'NOUN'), ('to', 'ADP'), ('vanity', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('avariceor', 'NOUN'), ('what', 'PRON'), ('is', 'AUX'), ('more', 'ADJ'), ('could', 'AUX'), ('I', 'PRON'), ('have', 'AUX'), ('sacrificed', 'VERB'), ('hers', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('done', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('avoid', 'VERB'), ('a', 'DET'), ('comparative', 'ADJ'), ('poverty', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('her', 'PRON'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('society', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('deprived', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('its', 'PRON'), ('horrors', 'NOUN'), ('I', 'PRON'), ('have', 'VERB'), ('by', 'ADP'), ('raising', 'VERB'), ('myself', 'PRON'), ('to', 'ADP'), ('affluence', 'NOUN'), ('\n', 'SPACE'), ('lost', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('blessing', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('did', 'AUX'), ('then', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('a', 'DET'), ('little', 'ADJ'), ('softened', 'ADJ'), ('\n', 'SPACE'), ('believe', 'VERB'), ('yourself', 'PRON'), ('at', 'ADP'), ('one', 'NUM'), ('time', 'NOUN'), ('attached', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('To', 'PART'), ('have', 'AUX'), ('resisted', 'VERB'), ('such', 'ADJ'), ('attractions', 'NOUN'), ('to', 'PART'), ('have', 'AUX'), ('withstood', 'NOUN'), ('\n', 'SPACE'), ('such', 'ADJ'), ('tendernessIs', 'PROPN'), ('there', 'ADV'), ('a', 'DET'), ('man', 'NOUN'), ('on', 'ADP'), ('earth', 'NOUN'), ('who', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('done', 'VERB'), ('itYes', 'PUNCT'), ('I', 'PRON'), ('found', 'VERB'), ('myself', 'PRON'), ('by', 'ADP'), ('insensible', 'ADJ'), ('degrees', 'NOUN'), ('\n', 'SPACE'), ('sincerely', 'ADV'), ('fond', 'ADJ'), ('of', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('the', 'DET'), ('happiest', 'ADJ'), ('hours', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('life', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('what', 'PRON'), ('I', 'PRON'), ('spent', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('when', 'SCONJ'), ('I', 'PRON'), ('felt', 'VERB'), ('my', 'PRON'), ('intentions', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('strictly', 'ADV'), ('honourable', 'ADJ'), ('and', 'CCONJ'), ('my', 'PRON'), ('feelings', 'NOUN'), ('blameless', 'ADJ'), ('\n', 'SPACE'), ('Even', 'ADV'), ('THEN', 'ADV'), ('however', 'ADV'), ('when', 'SCONJ'), ('fully', 'ADV'), ('determined', 'VERB'), ('on', 'ADP'), ('paying', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('addresses', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('I', 'PRON'), ('allowed', 'VERB'), ('myself', 'PRON'), ('most', 'ADV'), ('improperly', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('put', 'VERB'), ('off', 'ADP'), ('from', 'ADP'), ('day', 'NOUN'), ('to', 'ADP'), ('day', 'NOUN'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('doing', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('an', 'DET'), ('unwillingness', 'NOUN'), ('to', 'PART'), ('enter', 'VERB'), ('into', 'ADP'), ('an', 'DET'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('my', 'PRON'), ('circumstances', 'NOUN'), ('were', 'AUX'), ('so', 'ADV'), ('greatly', 'ADV'), ('embarrassed', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('reason', 'VERB'), ('herenor', 'NOUN'), ('will', 'AUX'), ('I', 'PRON'), ('stop', 'VERB'), ('for', 'SCONJ'), ('YOU', 'PRON'), ('to', 'PART'), ('expatiate', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('absurdity', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('worse', 'ADJ'), ('than', 'ADP'), ('absurdity', 'NOUN'), ('of', 'ADP'), ('scrupling', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('engage', 'VERB'), ('my', 'PRON'), ('faith', 'NOUN'), ('where', 'SCONJ'), ('my', 'PRON'), ('honour', 'NOUN'), ('was', 'AUX'), ('already', 'ADV'), ('bound', 'VERB'), ('\n', 'SPACE'), ('The', 'DET'), ('event', 'NOUN'), ('has', 'AUX'), ('proved', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('cunning', 'ADJ'), ('fool', 'NOUN'), ('\n', 'SPACE'), ('providing', 'VERB'), ('with', 'ADP'), ('great', 'ADJ'), ('circumspection', 'NOUN'), ('for', 'ADP'), ('a', 'DET'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('making', 'VERB'), ('myself', 'PRON'), ('contemptible', 'ADJ'), ('and', 'CCONJ'), ('wretched', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('At', 'ADP'), ('last', 'ADJ'), ('however', 'ADV'), ('my', 'PRON'), ('resolution', 'NOUN'), ('was', 'AUX'), ('taken', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('determined', 'VERB'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('engage', 'VERB'), ('her', 'PRON'), ('alone', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('justify', 'VERB'), ('the', 'DET'), ('attentions', 'NOUN'), ('I', 'PRON'), ('had', 'AUX'), ('so', 'ADV'), ('invariably', 'ADV'), ('paid', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('openly', 'ADV'), ('assure', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('an', 'DET'), ('affection', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('taken', 'VERB'), ('such', 'ADJ'), ('pains', 'NOUN'), ('to', 'PART'), ('display', 'VERB'), (' ', 'SPACE'), ('But', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('interimin', 'NOUN'), ('the', 'DET'), ('\n', 'SPACE'), ('interim', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('few', 'ADJ'), ('hours', 'NOUN'), ('that', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('pass', 'VERB'), ('before', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('have', 'VERB'), ('an', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('speaking', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('private', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('circumstance', 'NOUN'), ('occurredan', 'ADJ'), ('unlucky', 'ADJ'), ('circumstance', 'NOUN'), ('to', 'PART'), ('ruin', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('my', 'PRON'), ('resolution', 'NOUN'), ('and', 'CCONJ'), ('with', 'ADP'), ('it', 'PRON'), ('all', 'DET'), ('my', 'PRON'), ('comfort', 'NOUN'), (' ', 'SPACE'), ('A', 'DET'), ('discovery', 'NOUN'), ('\n', 'SPACE'), ('took', 'VERB'), ('placehere', 'NOUN'), ('he', 'PRON'), ('hesitated', 'VERB'), ('and', 'CCONJ'), ('looked', 'VERB'), ('downMrs', 'PROPN'), ('Smith', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('somehow', 'ADV'), ('or', 'CCONJ'), ('other', 'ADJ'), ('been', 'AUX'), ('informed', 'VERB'), ('I', 'PRON'), ('imagine', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('distant', 'ADJ'), ('relation', 'NOUN'), ('whose', 'DET'), ('interest', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('deprive', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('favour', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('affair', 'NOUN'), ('a', 'DET'), ('connectionbut', 'NOUN'), ('I', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('explain', 'VERB'), ('myself', 'PRON'), ('farther', 'ADV'), ('he', 'PRON'), ('added', 'VERB'), ('looking', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('with', 'ADP'), ('an', 'DET'), ('\n', 'SPACE'), ('heightened', 'VERB'), ('colour', 'NOUN'), ('and', 'CCONJ'), ('an', 'DET'), ('enquiring', 'VERB'), ('eyeyour', 'NOUN'), ('particular', 'ADJ'), ('\n', 'SPACE'), ('intimacyyou', 'PRON'), ('have', 'AUX'), ('probably', 'ADV'), ('heard', 'VERB'), ('the', 'DET'), ('whole', 'ADJ'), ('story', 'NOUN'), ('long', 'ADV'), ('ago', 'ADP'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('returned', 'VERB'), ('Elinor', 'PROPN'), ('colouring', 'VERB'), ('likewise', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hardening', 'VERB'), ('her', 'PRON'), ('heart', 'NOUN'), ('anew', 'ADV'), ('against', 'ADP'), ('any', 'DET'), ('compassion', 'NOUN'), ('for', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('heard', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('how', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('explain', 'VERB'), ('away', 'ADV'), ('any', 'DET'), ('\n', 'SPACE'), ('part', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('guilt', 'NOUN'), ('in', 'ADP'), ('that', 'DET'), ('dreadful', 'ADJ'), ('business', 'NOUN'), ('I', 'PRON'), ('confess', 'VERB'), ('\n', 'SPACE'), ('is', 'AUX'), ('beyond', 'ADP'), ('my', 'PRON'), ('comprehension', 'NOUN'), ('\n\n', 'SPACE'), ('Remember', 'VERB'), ('cried', 'VERB'), ('Willoughby', 'PROPN'), ('from', 'ADP'), ('whom', 'PRON'), ('you', 'PRON'), ('received', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('account', 'NOUN'), (' ', 'SPACE'), ('Could', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('an', 'DET'), ('impartial', 'ADJ'), ('one', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('acknowledge', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('her', 'PRON'), ('situation', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('character', 'NOUN'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('respected', 'VERB'), ('by', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('justify', 'VERB'), ('myself', 'PRON'), ('but', 'CCONJ'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('can', 'AUX'), ('not', 'PART'), ('leave', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('have', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('to', 'ADP'), ('urgethat', 'PRON'), ('because', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('injured', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('irreproachable', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('because', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('libertine', 'NOUN'), ('SHE', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('a', 'DET'), ('saint', 'NOUN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('the', 'DET'), ('violence', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('passions', 'NOUN'), ('the', 'DET'), ('weakness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('understandingI', 'PROPN'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('however', 'ADV'), ('to', 'PART'), ('defend', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('Her', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('me', 'PRON'), ('deserved', 'VERB'), ('better', 'ADJ'), ('treatment', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('often', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('great', 'ADJ'), ('selfreproach', 'NOUN'), ('recall', 'VERB'), ('the', 'DET'), ('tenderness', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('very', 'ADV'), ('short', 'ADJ'), ('time', 'NOUN'), ('had', 'VERB'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('creating', 'VERB'), ('any', 'DET'), ('return', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('wishI', 'VERB'), ('heartily', 'ADV'), ('wish', 'VERB'), ('it', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('injured', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('injured', 'VERB'), ('one', 'NUM'), ('whose', 'DET'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('memay', 'PROPN'), ('I', 'PRON'), ('say', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('scarcely', 'ADV'), ('less', 'ADV'), ('warm', 'ADJ'), ('than', 'ADP'), ('hers', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('whose', 'DET'), ('mindOh', 'VERB'), ('how', 'SCONJ'), ('infinitely', 'ADV'), ('superior', 'ADJ'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('indifference', 'NOUN'), ('however', 'ADV'), ('towards', 'ADP'), ('that', 'DET'), ('unfortunate', 'ADJ'), ('\n', 'SPACE'), ('girlI', 'NOUN'), ('must', 'AUX'), ('say', 'VERB'), ('it', 'PRON'), ('unpleasant', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('as', 'ADP'), ('the', 'DET'), ('discussion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('subject', 'NOUN'), ('may', 'AUX'), ('well', 'ADV'), ('beyour', 'NUM'), ('indifference', 'NOUN'), ('is', 'AUX'), ('no', 'DET'), ('\n', 'SPACE'), ('apology', 'NOUN'), ('for', 'ADP'), ('your', 'PRON'), ('cruel', 'ADJ'), ('neglect', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), (' ', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('yourself', 'PRON'), ('\n', 'SPACE'), ('excused', 'VERB'), ('by', 'ADP'), ('any', 'DET'), ('weakness', 'NOUN'), ('any', 'DET'), ('natural', 'ADJ'), ('defect', 'NOUN'), ('of', 'ADP'), ('understanding', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('her', 'PRON'), ('side', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('wanton', 'NOUN'), ('cruelty', 'NOUN'), ('so', 'ADV'), ('evident', 'ADJ'), ('on', 'ADP'), ('yours', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('known', 'VERB'), ('that', 'SCONJ'), ('while', 'SCONJ'), ('you', 'PRON'), ('were', 'AUX'), ('enjoying', 'VERB'), ('yourself', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('pursuing', 'VERB'), ('fresh', 'ADJ'), ('schemes', 'NOUN'), ('always', 'ADV'), ('gay', 'VERB'), ('\n', 'SPACE'), ('always', 'ADV'), ('happy', 'ADJ'), ('she', 'PRON'), ('was', 'AUX'), ('reduced', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('extremest', 'ADJ'), ('indigence', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('upon', 'SCONJ'), ('my', 'PRON'), ('soul', 'NOUN'), ('I', 'PRON'), ('did', 'AUX'), ('NOT', 'PART'), ('know', 'VERB'), ('it', 'PRON'), ('he', 'PRON'), ('warmly', 'ADV'), ('\n', 'SPACE'), ('replied', 'VERB'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('recollect', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('omitted', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('my', 'PRON'), ('direction', 'NOUN'), ('and', 'CCONJ'), ('common', 'ADJ'), ('sense', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('told', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('to', 'PART'), ('find', 'VERB'), ('it', 'PRON'), ('out', 'ADP'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('sir', 'NOUN'), ('and', 'CCONJ'), ('what', 'PRON'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('taxed', 'VERB'), ('me', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('offence', 'NOUN'), ('at', 'ADP'), ('once', 'ADV'), ('and', 'CCONJ'), ('my', 'PRON'), ('confusion', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('guessed', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('purity', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('the', 'DET'), ('formality', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('notions', 'NOUN'), ('her', 'PRON'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('worldevery', 'ADJ'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('against', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('The', 'DET'), ('matter', 'NOUN'), ('itself', 'PRON'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('deny', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('vain', 'ADJ'), ('was', 'AUX'), ('every', 'DET'), ('endeavour', 'NOUN'), ('to', 'PART'), ('soften', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('previously', 'ADV'), ('disposed', 'VERB'), ('I', 'PRON'), ('believe', 'VERB'), ('to', 'PART'), ('doubt', 'VERB'), ('the', 'DET'), ('morality', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('conduct', 'NOUN'), ('in', 'ADP'), ('general', 'ADJ'), ('and', 'CCONJ'), ('was', 'AUX'), ('moreover', 'ADV'), ('discontented', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('very', 'ADV'), ('little', 'ADJ'), ('attention', 'NOUN'), ('the', 'DET'), ('very', 'ADV'), ('little', 'ADJ'), ('portion', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('time', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('had', 'AUX'), ('bestowed', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('my', 'PRON'), ('present', 'ADJ'), ('visit', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('short', 'ADJ'), ('it', 'PRON'), ('ended', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('total', 'ADJ'), ('breach', 'NOUN'), (' ', 'SPACE'), ('By', 'ADP'), ('one', 'NUM'), ('measure', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'AUX'), ('saved', 'VERB'), ('myself', 'PRON'), (' ', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('height', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('morality', 'NOUN'), ('\n', 'SPACE'), ('good', 'ADJ'), ('woman', 'NOUN'), ('she', 'PRON'), ('offered', 'VERB'), ('to', 'PART'), ('forgive', 'VERB'), ('the', 'DET'), ('past', 'NOUN'), ('if', 'SCONJ'), ('I', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('marry', 'VERB'), ('Eliza', 'PROPN'), (' ', 'SPACE'), ('That', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('beand', 'VERB'), ('I', 'PRON'), ('was', 'AUX'), ('formally', 'ADV'), ('\n', 'SPACE'), ('dismissed', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('favour', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('house', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('night', 'NOUN'), ('\n', 'SPACE'), ('following', 'VERB'), ('this', 'DET'), ('affairI', 'PROPN'), ('was', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('the', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('spent', 'VERB'), ('by', 'ADP'), ('me', 'PRON'), ('in', 'ADP'), ('deliberating', 'VERB'), ('on', 'ADP'), ('what', 'PRON'), ('my', 'PRON'), ('future', 'ADJ'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('should', 'AUX'), ('be', 'AUX'), (' ', 'SPACE'), ('The', 'DET'), ('struggle', 'NOUN'), ('was', 'AUX'), ('greatbut', 'NOUN'), ('it', 'PRON'), ('ended', 'VERB'), ('too', 'ADV'), ('soon', 'ADV'), ('\n', 'SPACE'), ('My', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('my', 'PRON'), ('thorough', 'ADJ'), ('conviction', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('attachment', 'NOUN'), ('to', 'ADP'), ('meit', 'NOUN'), ('was', 'AUX'), ('all', 'ADV'), ('insufficient', 'ADJ'), ('to', 'PART'), ('outweigh', 'VERB'), ('\n', 'SPACE'), ('that', 'DET'), ('dread', 'NOUN'), ('of', 'ADP'), ('poverty', 'NOUN'), ('or', 'CCONJ'), ('get', 'VERB'), ('the', 'DET'), ('better', 'ADJ'), ('of', 'ADP'), ('those', 'DET'), ('false', 'ADJ'), ('\n', 'SPACE'), ('ideas', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('necessity', 'NOUN'), ('of', 'ADP'), ('riches', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('was', 'AUX'), ('naturally', 'ADV'), ('\n', 'SPACE'), ('inclined', 'ADJ'), ('to', 'PART'), ('feel', 'VERB'), ('and', 'CCONJ'), ('expensive', 'ADJ'), ('society', 'NOUN'), ('had', 'AUX'), ('increased', 'VERB'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('reason', 'NOUN'), ('to', 'PART'), ('believe', 'VERB'), ('myself', 'PRON'), ('secure', 'ADJ'), ('of', 'ADP'), ('my', 'PRON'), ('present', 'ADJ'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('I', 'PRON'), ('chose', 'VERB'), ('to', 'PART'), ('address', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('persuaded', 'VERB'), ('myself', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('nothing', 'PRON'), ('else', 'ADV'), ('in', 'ADP'), ('common', 'ADJ'), ('prudence', 'NOUN'), ('remained', 'VERB'), ('for', 'SCONJ'), ('me', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('A', 'DET'), ('heavy', 'ADJ'), ('scene', 'NOUN'), ('however', 'ADV'), ('awaited', 'VERB'), ('me', 'PRON'), ('before', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('leave', 'VERB'), ('\n', 'SPACE'), ('DevonshireI', 'PUNCT'), ('was', 'AUX'), ('engaged', 'VERB'), ('to', 'PART'), ('dine', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('on', 'ADP'), ('that', 'DET'), ('very', 'ADJ'), ('day', 'NOUN'), ('\n', 'SPACE'), ('some', 'DET'), ('apology', 'NOUN'), ('was', 'AUX'), ('therefore', 'ADV'), ('necessary', 'ADJ'), ('for', 'ADP'), ('my', 'PRON'), ('breaking', 'NOUN'), ('\n', 'SPACE'), ('this', 'DET'), ('engagement', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('whether', 'SCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('write', 'VERB'), ('this', 'DET'), ('apology', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('deliver', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('person', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('long', 'ADJ'), ('debate', 'NOUN'), ('\n', 'SPACE'), ('To', 'PART'), ('see', 'VERB'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('felt', 'VERB'), ('would', 'AUX'), ('be', 'AUX'), ('dreadful', 'ADJ'), ('and', 'CCONJ'), ('I', 'PRON'), ('even', 'ADV'), ('doubted', 'VERB'), ('\n', 'SPACE'), ('whether', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('see', 'VERB'), ('her', 'PRON'), ('again', 'ADV'), ('and', 'CCONJ'), ('keep', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('In', 'ADP'), ('that', 'DET'), ('point', 'NOUN'), ('however', 'ADV'), ('I', 'PRON'), ('undervalued', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('magnanimity', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('event', 'NOUN'), ('declared', 'VERB'), ('for', 'ADP'), ('I', 'PRON'), ('went', 'VERB'), ('I', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('saw', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('miserable', 'NOUN'), ('and', 'CCONJ'), ('left', 'VERB'), ('her', 'PRON'), ('miserableand', 'NOUN'), ('left', 'VERB'), ('her', 'PRON'), ('hoping', 'VERB'), ('\n', 'SPACE'), ('never', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('her', 'PRON'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('Why', 'SCONJ'), ('did', 'AUX'), ('you', 'PRON'), ('call', 'VERB'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('reproachfully', 'ADV'), ('a', 'DET'), ('note', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('answered', 'VERB'), ('every', 'DET'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('Why', 'SCONJ'), ('was', 'AUX'), ('it', 'PRON'), ('necessary', 'ADJ'), ('to', 'PART'), ('call', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('necessary', 'ADJ'), ('to', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('pride', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('bear', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('leave', 'VERB'), ('the', 'DET'), ('country', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('manner', 'NOUN'), ('that', 'PRON'), ('might', 'AUX'), ('lead', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('the', 'DET'), ('rest', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('neighbourhood', 'NOUN'), ('to', 'PART'), ('suspect', 'VERB'), ('any', 'DET'), ('part', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('really', 'ADV'), ('passed', 'VERB'), ('between', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('and', 'CCONJ'), ('myself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('resolved', 'VERB'), ('therefore', 'ADV'), ('on', 'ADP'), ('calling', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('way', 'NOUN'), ('to', 'ADP'), ('Honiton', 'PROPN'), (' ', 'SPACE'), ('The', 'DET'), ('sight', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('dear', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('however', 'ADV'), ('was', 'AUX'), ('really', 'ADV'), ('dreadful', 'ADJ'), ('and', 'CCONJ'), ('to', 'PART'), ('heighten', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('found', 'VERB'), ('her', 'PRON'), ('alone', 'ADJ'), (' ', 'SPACE'), ('You', 'PRON'), ('were', 'AUX'), ('all', 'PRON'), ('gone', 'VERB'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('where', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('left', 'VERB'), ('her', 'PRON'), ('only', 'ADV'), ('the', 'DET'), ('evening', 'NOUN'), ('before', 'SCONJ'), ('so', 'ADV'), ('fully', 'ADV'), ('\n', 'SPACE'), ('so', 'ADV'), ('firmly', 'ADV'), ('resolved', 'VERB'), ('within', 'ADP'), ('my', 'PRON'), ('self', 'NOUN'), ('on', 'ADP'), ('doing', 'VERB'), ('right', 'NOUN'), ('\n', 'SPACE'), ('A', 'DET'), ('few', 'ADJ'), ('hours', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('engaged', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('me', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('remember', 'VERB'), ('how', 'SCONJ'), ('happy', 'ADJ'), ('how', 'SCONJ'), ('gay', 'ADJ'), ('were', 'AUX'), ('my', 'PRON'), ('spirits', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('walked', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('to', 'ADP'), ('Allenham', 'PROPN'), ('satisfied', 'ADJ'), ('with', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('delighted', 'VERB'), ('with', 'ADP'), ('every', 'DET'), ('body', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('in', 'ADP'), ('this', 'PRON'), ('our', 'PRON'), ('last', 'ADJ'), ('interview', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('friendship', 'NOUN'), ('I', 'PRON'), ('approached', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('sense', 'NOUN'), ('of', 'ADP'), ('guilt', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('almost', 'ADV'), ('took', 'VERB'), ('from', 'ADP'), ('me', 'PRON'), ('the', 'DET'), ('power', 'NOUN'), ('of', 'ADP'), ('dissembling', 'VERB'), ('\n', 'SPACE'), ('Her', 'PRON'), ('sorrow', 'NOUN'), ('her', 'PRON'), ('disappointment', 'NOUN'), ('her', 'PRON'), ('deep', 'ADJ'), ('regret', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('told', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('leave', 'VERB'), ('Devonshire', 'PROPN'), ('so', 'ADV'), ('immediatelyI', 'PROPN'), ('\n', 'SPACE'), ('never', 'ADV'), ('shall', 'AUX'), ('forget', 'AUX'), ('itunited', 'VERB'), ('too', 'ADV'), ('with', 'ADP'), ('such', 'ADJ'), ('reliance', 'NOUN'), ('\n', 'SPACE'), ('such', 'ADJ'), ('confidence', 'NOUN'), ('in', 'ADP'), ('meOh', 'PROPN'), ('Godwhat', 'PROPN'), ('a', 'DET'), ('hardhearted', 'VERB'), ('\n', 'SPACE'), ('rascal', 'ADJ'), ('I', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('both', 'ADV'), ('silent', 'ADJ'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('moments', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('first', 'ADV'), ('spoke', 'VERB'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('tell', 'VERB'), ('her', 'PRON'), ('that', 'SCONJ'), ('you', 'PRON'), ('should', 'AUX'), ('soon', 'ADV'), ('return', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('told', 'VERB'), ('her', 'PRON'), ('he', 'PRON'), ('replied', 'VERB'), ('impatiently', 'ADV'), ('\n', 'SPACE'), ('less', 'ADJ'), ('than', 'SCONJ'), ('was', 'AUX'), ('due', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('beyond', 'ADP'), ('a', 'DET'), ('doubt', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('likelihood', 'NOUN'), ('much', 'ADV'), ('more', 'ADJ'), ('than', 'SCONJ'), ('was', 'AUX'), ('justified', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('future', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('think', 'VERB'), ('of', 'ADP'), ('itIt', 'PROPN'), ('wo', 'AUX'), ('nt', 'PART'), ('doThen', 'VERB'), ('came', 'VERB'), ('your', 'PRON'), ('dear', 'ADJ'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('torture', 'VERB'), ('me', 'PRON'), ('farther', 'ADV'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('kindness', 'NOUN'), ('and', 'CCONJ'), ('confidence', 'NOUN'), ('\n', 'SPACE'), ('Thank', 'VERB'), ('Heaven', 'PROPN'), ('it', 'PRON'), ('DID', 'AUX'), ('torture', 'VERB'), ('me', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('miserable', 'ADJ'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('you', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('have', 'VERB'), ('an', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('comfort', 'NOUN'), ('it', 'PRON'), ('\n', 'SPACE'), ('gives', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('look', 'VERB'), ('back', 'ADV'), ('on', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('misery', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('owe', 'VERB'), ('such', 'DET'), ('a', 'DET'), ('grudge', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('myself', 'PRON'), ('for', 'ADP'), ('the', 'DET'), ('stupid', 'ADJ'), ('rascally', 'ADV'), ('folly', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('all', 'DET'), ('my', 'PRON'), ('past', 'ADJ'), ('sufferings', 'NOUN'), ('under', 'ADP'), ('it', 'PRON'), ('are', 'AUX'), ('only', 'ADV'), ('triumph', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('exultation', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('now', 'ADV'), (' ', 'SPACE'), ('Well', 'INTJ'), ('I', 'PRON'), ('went', 'VERB'), ('left', 'VERB'), ('all', 'PRON'), ('that', 'PRON'), ('I', 'PRON'), ('loved', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('went', 'VERB'), ('to', 'ADP'), ('those', 'PRON'), ('to', 'ADP'), ('whom', 'PRON'), ('at', 'ADP'), ('best', 'ADJ'), ('I', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('indifferent', 'ADJ'), ('\n', 'SPACE'), ('My', 'PRON'), ('journey', 'NOUN'), ('to', 'ADP'), ('towntravelling', 'NOUN'), ('with', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('horses', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('so', 'ADV'), ('tediouslyno', 'VERB'), ('creature', 'NOUN'), ('to', 'PART'), ('speak', 'VERB'), ('tomy', 'NOUN'), ('\n', 'SPACE'), ('own', 'ADJ'), ('reflections', 'NOUN'), ('so', 'ADV'), ('cheerfulwhen', 'ADV'), ('I', 'PRON'), ('looked', 'VERB'), ('forward', 'ADV'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('so', 'ADV'), ('invitingwhen', 'ADV'), ('I', 'PRON'), ('looked', 'VERB'), ('back', 'ADV'), ('at', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('the', 'DET'), ('picture', 'NOUN'), ('so', 'ADV'), ('soothingoh', 'INTJ'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('blessed', 'ADJ'), ('journey', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('stopped', 'VERB'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('sir', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('though', 'ADV'), ('pitying', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('grew', 'VERB'), ('impatient', 'ADJ'), ('for', 'ADP'), ('his', 'PRON'), ('departure', 'NOUN'), ('and', 'CCONJ'), ('this', 'PRON'), ('is', 'AUX'), ('all', 'DET'), ('\n\n', 'SPACE'), ('Ahnohave', 'VERB'), ('you', 'PRON'), ('forgot', 'VERB'), ('what', 'PRON'), ('passed', 'VERB'), ('in', 'ADP'), ('town', 'NOUN'), ('\n', 'SPACE'), ('That', 'PRON'), ('infamous', 'ADJ'), ('letterDid', 'INTJ'), ('she', 'PRON'), ('shew', 'VERB'), ('it', 'PRON'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('I', 'PRON'), ('saw', 'VERB'), ('every', 'DET'), ('note', 'NOUN'), ('that', 'PRON'), ('passed', 'VERB'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('first', 'ADJ'), ('of', 'ADP'), ('hers', 'PRON'), ('reached', 'VERB'), ('me', 'PRON'), ('as', 'SCONJ'), ('it', 'PRON'), ('immediately', 'ADV'), ('did', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('the', 'DET'), ('whole', 'ADJ'), ('time', 'NOUN'), ('what', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('is', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('common', 'ADJ'), ('phrase', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('expressed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('more', 'ADV'), ('\n', 'SPACE'), ('simple', 'ADJ'), ('oneperhaps', 'NOUN'), ('too', 'ADV'), ('simple', 'ADJ'), ('to', 'PART'), ('raise', 'VERB'), ('any', 'DET'), ('emotion', 'NOUN'), ('\n', 'SPACE'), ('my', 'PRON'), ('feelings', 'NOUN'), ('were', 'AUX'), ('very', 'ADV'), ('very', 'ADV'), ('painfulEvery', 'ADJ'), ('line', 'NOUN'), ('every', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('wasin', 'VERB'), ('the', 'DET'), ('hackneyed', 'ADJ'), ('metaphor', 'NOUN'), ('which', 'PRON'), ('their', 'PRON'), ('dear', 'ADJ'), ('writer', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('she', 'PRON'), ('here', 'ADV'), ('would', 'AUX'), ('forbida', 'VERB'), ('dagger', 'PROPN'), ('to', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('To', 'PART'), ('know', 'VERB'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('wasin', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('language', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('thunderboltThunderbolts', 'NOUN'), ('and', 'CCONJ'), ('daggerswhat', 'VERB'), ('a', 'DET'), ('reproof', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('she', 'PRON'), ('have', 'AUX'), ('given', 'VERB'), ('meher', 'NOUN'), ('taste', 'VERB'), ('her', 'PRON'), ('opinionsI', 'NOUN'), ('believe', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('are', 'AUX'), ('better', 'ADV'), ('known', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('than', 'ADP'), ('my', 'PRON'), ('ownand', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('they', 'PRON'), ('are', 'AUX'), ('dearer', 'PROPN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('heart', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('undergone', 'VERB'), ('many', 'ADJ'), ('changes', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('this', 'DET'), ('extraordinary', 'ADJ'), ('conversation', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('now', 'ADV'), ('softened', 'VERB'), ('againyet', 'ADV'), ('she', 'PRON'), ('felt', 'VERB'), ('it', 'PRON'), ('her', 'PRON'), ('duty', 'NOUN'), ('to', 'PART'), ('check', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('ideas', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('companion', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('is', 'AUX'), ('not', 'PART'), ('right', 'ADJ'), ('Mr', 'PROPN'), ('WilloughbyRemember', 'PROPN'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('are', 'AUX'), ('married', 'VERB'), (' ', 'SPACE'), ('Relate', 'PROPN'), ('only', 'ADV'), ('what', 'PRON'), ('in', 'ADP'), ('your', 'PRON'), ('conscience', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('think', 'VERB'), ('necessary', 'ADJ'), ('for', 'SCONJ'), ('me', 'PRON'), ('to', 'PART'), ('hear', 'VERB'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('note', 'NOUN'), ('by', 'ADP'), ('assuring', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('still', 'ADV'), ('\n', 'SPACE'), ('as', 'ADV'), ('dear', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'ADP'), ('in', 'ADP'), ('former', 'ADJ'), ('days', 'NOUN'), ('that', 'SCONJ'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('many', 'ADJ'), ('\n', 'SPACE'), ('many', 'ADJ'), ('weeks', 'NOUN'), ('we', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('separated', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('feelings', 'NOUN'), ('and', 'CCONJ'), ('as', 'ADP'), ('full', 'ADJ'), ('of', 'ADP'), ('faith', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('constancy', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('mine', 'NOUN'), ('as', 'ADP'), ('ever', 'ADV'), ('awakened', 'VERB'), ('all', 'DET'), ('my', 'PRON'), ('remorse', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('say', 'VERB'), ('awakened', 'VERB'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('time', 'NOUN'), ('and', 'CCONJ'), ('London', 'PROPN'), ('business', 'NOUN'), ('and', 'CCONJ'), ('dissipation', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('in', 'ADP'), ('some', 'DET'), ('measure', 'NOUN'), ('quieted', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('growing', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('fine', 'ADJ'), ('hardened', 'VERB'), ('villain', 'NOUN'), ('fancying', 'VERB'), ('myself', 'PRON'), ('indifferent', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('chusing', 'VERB'), ('to', 'ADP'), ('fancy', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('too', 'ADV'), ('must', 'AUX'), ('have', 'AUX'), ('become', 'VERB'), ('\n', 'SPACE'), ('indifferent', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('talking', 'VERB'), ('to', 'ADP'), ('myself', 'PRON'), ('of', 'ADP'), ('our', 'PRON'), ('past', 'ADJ'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('a', 'DET'), ('mere', 'ADJ'), ('idle', 'ADJ'), ('trifling', 'NOUN'), ('business', 'NOUN'), ('shrugging', 'VERB'), ('up', 'ADP'), ('my', 'PRON'), ('shoulders', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('proof', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('so', 'ADV'), ('and', 'CCONJ'), ('silencing', 'VERB'), ('every', 'DET'), ('reproach', 'NOUN'), ('\n', 'SPACE'), ('overcoming', 'VERB'), ('every', 'DET'), ('scruple', 'NOUN'), ('by', 'ADP'), ('secretly', 'ADV'), ('saying', 'VERB'), ('now', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('heartily', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('she', 'PRON'), ('is', 'AUX'), ('well', 'ADV'), ('married', 'ADJ'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('this', 'DET'), ('note', 'NOUN'), ('made', 'VERB'), ('me', 'PRON'), ('know', 'VERB'), ('myself', 'PRON'), ('better', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('was', 'AUX'), ('infinitely', 'ADV'), ('dearer', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('than', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('using', 'VERB'), ('her', 'PRON'), ('infamously', 'ADV'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('then', 'ADV'), ('just', 'ADV'), ('settled', 'VERB'), ('between', 'ADP'), ('Miss', 'PROPN'), ('Grey', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('me', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('retreat', 'NOUN'), ('was', 'AUX'), ('impossible', 'ADJ'), (' ', 'SPACE'), ('All', 'PRON'), ('that', 'PRON'), ('I', 'PRON'), ('had', 'VERB'), ('to', 'PART'), ('do', 'AUX'), ('\n', 'SPACE'), ('was', 'AUX'), ('to', 'PART'), ('avoid', 'VERB'), ('you', 'PRON'), ('both', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('sent', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), ('to', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('intending', 'VERB'), ('by', 'ADP'), ('that', 'PRON'), ('to', 'PART'), ('preserve', 'VERB'), ('myself', 'PRON'), ('from', 'ADP'), ('her', 'PRON'), ('farther', 'ADJ'), ('notice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('even', 'ADV'), ('determined', 'ADJ'), ('not', 'PART'), ('to', 'PART'), ('call', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('Berkeley', 'PROPN'), ('Streetbut', 'PROPN'), ('at', 'ADP'), ('last', 'ADJ'), ('judging', 'VERB'), ('it', 'PRON'), ('wiser', 'ADJ'), ('to', 'PART'), ('affect', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('air', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('cool', 'ADJ'), ('common', 'ADJ'), ('acquaintance', 'NOUN'), ('than', 'ADP'), ('anything', 'PRON'), ('else', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('watched', 'VERB'), ('you', 'PRON'), ('all', 'PRON'), ('safely', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('one', 'NUM'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('left', 'VERB'), ('my', 'PRON'), ('name', 'NOUN'), ('\n\n', 'SPACE'), ('Watched', 'VERB'), ('us', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('Even', 'ADV'), ('so', 'SCONJ'), (' ', 'SPACE'), ('You', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('surprised', 'ADJ'), ('to', 'PART'), ('hear', 'VERB'), ('how', 'SCONJ'), ('often', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('watched', 'VERB'), ('you', 'PRON'), ('how', 'SCONJ'), ('often', 'ADV'), ('I', 'PRON'), ('was', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('point', 'NOUN'), ('of', 'ADP'), ('falling', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('with', 'ADP'), ('you', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('entered', 'VERB'), ('many', 'DET'), ('a', 'DET'), ('shop', 'NOUN'), ('to', 'PART'), ('avoid', 'VERB'), ('your', 'PRON'), ('sight', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('carriage', 'NOUN'), ('drove', 'VERB'), ('by', 'ADP'), (' ', 'SPACE'), ('Lodging', 'PROPN'), ('as', 'SCONJ'), ('I', 'PRON'), ('did', 'VERB'), ('in', 'ADP'), ('Bond', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('there', 'PRON'), ('was', 'VERB'), ('hardly', 'ADV'), ('a', 'DET'), ('day', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('catch', 'VERB'), ('a', 'DET'), ('glimpse', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('one', 'NUM'), ('or', 'CCONJ'), ('other', 'ADJ'), ('of', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('the', 'DET'), ('most', 'ADV'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('watchfulness', 'NOUN'), ('on', 'ADP'), ('my', 'PRON'), ('side', 'NOUN'), ('a', 'DET'), ('most', 'ADV'), ('invariably', 'ADV'), ('prevailing', 'VERB'), ('\n', 'SPACE'), ('desire', 'NOUN'), ('to', 'PART'), ('keep', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('your', 'PRON'), ('sight', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('separated', 'VERB'), ('us', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('long', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('avoided', 'VERB'), ('the', 'DET'), ('Middletons', 'PROPN'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('everybody', 'PRON'), ('else', 'ADV'), ('who', 'PRON'), ('was', 'AUX'), ('likely', 'ADJ'), ('to', 'PART'), ('prove', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('acquaintance', 'NOUN'), ('in', 'ADP'), ('common', 'ADJ'), (' ', 'SPACE'), ('Not', 'PART'), ('aware', 'ADJ'), ('of', 'ADP'), ('their', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('town', 'NOUN'), ('however', 'ADV'), ('I', 'PRON'), ('blundered', 'VERB'), ('on', 'ADP'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('I', 'PRON'), ('believe', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('first', 'ADJ'), ('day', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('coming', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('day', 'NOUN'), ('after', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('called', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('asked', 'VERB'), ('me', 'PRON'), ('to', 'ADP'), ('a', 'DET'), ('party', 'NOUN'), ('a', 'DET'), ('dance', 'NOUN'), ('at', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('house', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('eveningHad', 'PUNCT'), ('he', 'PRON'), ('NOT', 'PART'), ('told', 'VERB'), ('me', 'PRON'), ('as', 'ADP'), ('an', 'DET'), ('inducement', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('there', 'ADV'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('felt', 'VERB'), ('it', 'PRON'), ('too', 'ADV'), ('certain', 'ADJ'), ('a', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('trust', 'VERB'), ('myself', 'PRON'), ('near', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('brought', 'VERB'), ('another', 'DET'), ('short', 'ADJ'), ('note', 'NOUN'), ('from', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('still', 'ADV'), ('affectionate', 'VERB'), ('open', 'ADJ'), ('artless', 'NOUN'), ('confidingeverything', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('MY', 'PRON'), ('conduct', 'NOUN'), ('most', 'ADV'), ('hateful', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('answer', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('triedbut', 'VERB'), ('could', 'AUX'), ('not', 'PART'), ('frame', 'VERB'), ('a', 'DET'), ('sentence', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('I', 'PRON'), ('believe', 'VERB'), ('every', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('day', 'NOUN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('CAN', 'AUX'), ('pity', 'VERB'), ('me', 'PRON'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('pity', 'NOUN'), ('my', 'PRON'), ('situation', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('THEN', 'ADV'), (' ', 'SPACE'), ('With', 'ADP'), ('my', 'PRON'), ('head', 'NOUN'), ('and', 'CCONJ'), ('heart', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('play', 'VERB'), ('the', 'DET'), ('happy', 'ADJ'), ('lover', 'NOUN'), ('to', 'ADP'), ('another', 'DET'), ('womanThose', 'PROPN'), ('\n', 'SPACE'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('weeks', 'NOUN'), ('were', 'AUX'), ('worse', 'ADJ'), ('than', 'ADP'), ('all', 'DET'), (' ', 'SPACE'), ('Well', 'INTJ'), ('at', 'ADP'), ('last', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('need', 'AUX'), ('not', 'PART'), ('tell', 'VERB'), ('you', 'PRON'), ('you', 'PRON'), ('were', 'AUX'), ('forced', 'VERB'), ('on', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('what', 'PRON'), ('a', 'DET'), ('\n', 'SPACE'), ('sweet', 'ADJ'), ('figure', 'NOUN'), ('I', 'PRON'), ('cutwhat', 'ADP'), ('an', 'DET'), ('evening', 'NOUN'), ('of', 'ADP'), ('agony', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('beautiful', 'ADJ'), ('as', 'ADP'), ('an', 'DET'), ('angel', 'NOUN'), ('on', 'ADP'), ('one', 'NUM'), ('side', 'NOUN'), ('calling', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('toneOh', 'PROPN'), ('Godholding', 'PROPN'), ('out', 'ADP'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('asking', 'VERB'), ('me', 'PRON'), ('for', 'ADP'), ('an', 'DET'), ('explanation', 'NOUN'), ('with', 'ADP'), ('those', 'DET'), ('bewitching', 'VERB'), ('\n', 'SPACE'), ('eyes', 'NOUN'), ('fixed', 'VERB'), ('in', 'ADP'), ('such', 'ADJ'), ('speaking', 'VERB'), ('solicitude', 'NOUN'), ('on', 'ADP'), ('my', 'PRON'), ('faceand', 'NOUN'), ('\n', 'SPACE'), ('Sophia', 'PROPN'), ('jealous', 'ADJ'), ('as', 'SCONJ'), ('the', 'DET'), ('devil', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('hand', 'NOUN'), ('looking', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('that', 'PRON'), ('wasWell', 'NOUN'), ('it', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('signify', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('over', 'ADV'), ('now', 'ADV'), ('\n', 'SPACE'), ('Such', 'DET'), ('an', 'DET'), ('eveningI', 'PROPN'), ('ran', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('you', 'PRON'), ('all', 'PRON'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('not', 'PART'), ('before', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('Mariannes', 'PROPN'), ('sweet', 'ADJ'), ('face', 'NOUN'), ('as', 'ADP'), ('white', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('deathTHAT', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('last', 'ADJ'), ('last', 'ADJ'), ('look', 'NOUN'), ('I', 'PRON'), ('ever', 'ADV'), ('had', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('last', 'ADJ'), ('manner', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('appeared', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('horrid', 'NOUN'), ('\n', 'SPACE'), ('sightyet', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('thought', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('today', 'NOUN'), ('as', 'ADP'), ('really', 'ADV'), ('dying', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('kind', 'NOUN'), ('of', 'ADP'), ('comfort', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('to', 'PART'), ('imagine', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('knew', 'VERB'), ('\n', 'SPACE'), ('exactly', 'ADV'), ('how', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('appear', 'VERB'), ('to', 'ADP'), ('those', 'PRON'), ('who', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('last', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('this', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('before', 'ADP'), ('me', 'PRON'), ('constantly', 'ADV'), ('before', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('travelled', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('look', 'NOUN'), ('and', 'CCONJ'), ('hue', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('short', 'ADJ'), ('pause', 'NOUN'), ('of', 'ADP'), ('mutual', 'ADJ'), ('thoughtfulness', 'NOUN'), ('succeeded', 'VERB'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('first', 'ADV'), ('rousing', 'VERB'), ('himself', 'PRON'), ('broke', 'VERB'), ('it', 'PRON'), ('thus', 'ADV'), ('\n\n', 'SPACE'), ('Well', 'INTJ'), ('let', 'VERB'), ('me', 'PRON'), ('make', 'VERB'), ('haste', 'NOUN'), ('and', 'CCONJ'), ('be', 'AUX'), ('gone', 'VERB'), (' ', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('certainly', 'ADV'), ('better', 'ADV'), ('certainly', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('danger', 'NOUN'), ('\n\n', 'SPACE'), ('We', 'PRON'), ('are', 'AUX'), ('assured', 'VERB'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('poor', 'ADJ'), ('mother', 'NOUN'), ('toodoting', 'VERB'), ('on', 'ADP'), ('Marianne', 'PROPN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('letter', 'NOUN'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('your', 'PRON'), ('own', 'ADJ'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('have', 'VERB'), ('you', 'PRON'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('say', 'VERB'), ('about', 'ADP'), ('that', 'SCONJ'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('yes', 'INTJ'), ('THAT', 'PRON'), ('in', 'ADP'), ('particular', 'ADJ'), (' ', 'SPACE'), ('Your', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('wrote', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('again', 'ADV'), ('you', 'PRON'), ('know', 'VERB'), ('the', 'DET'), ('very', 'ADV'), ('next', 'ADJ'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('saw', 'VERB'), ('what', 'PRON'), ('she', 'PRON'), ('said', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('breakfasting', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('Ellisonsand', 'PROPN'), ('her', 'PRON'), ('letter', 'NOUN'), ('with', 'ADP'), ('some', 'DET'), ('others', 'NOUN'), ('was', 'AUX'), ('brought', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('there', 'ADV'), ('from', 'ADP'), ('my', 'PRON'), ('lodgings', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('happened', 'VERB'), ('to', 'PART'), ('catch', 'VERB'), ('\n', 'SPACE'), ('Sophias', 'PROPN'), ('eye', 'NOUN'), ('before', 'SCONJ'), ('it', 'PRON'), ('caught', 'VERB'), ('mineand', 'VERB'), ('its', 'PRON'), ('size', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('elegance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('paper', 'NOUN'), ('the', 'DET'), ('handwriting', 'NOUN'), ('altogether', 'ADV'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('gave', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('suspicion', 'NOUN'), (' ', 'SPACE'), ('Some', 'DET'), ('vague', 'ADJ'), ('report', 'NOUN'), ('had', 'AUX'), ('\n', 'SPACE'), ('reached', 'VERB'), ('her', 'PRON'), ('before', 'ADV'), ('of', 'ADP'), ('my', 'PRON'), ('attachment', 'NOUN'), ('to', 'ADP'), ('some', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Devonshire', 'PROPN'), ('and', 'CCONJ'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('within', 'ADP'), ('her', 'PRON'), ('observation', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('preceding', 'VERB'), ('evening', 'NOUN'), ('had', 'AUX'), ('marked', 'VERB'), ('who', 'PRON'), ('the', 'DET'), ('young', 'ADJ'), ('lady', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('made', 'VERB'), ('her', 'PRON'), ('more', 'ADV'), ('jealous', 'ADJ'), ('than', 'ADP'), ('ever', 'ADV'), (' ', 'SPACE'), ('Affecting', 'VERB'), ('that', 'DET'), ('air', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('playfulness', 'NOUN'), ('therefore', 'ADV'), ('which', 'PRON'), ('is', 'AUX'), ('delightful', 'ADJ'), ('in', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('one', 'NOUN'), ('loves', 'VERB'), ('she', 'PRON'), ('opened', 'VERB'), ('the', 'DET'), ('letter', 'NOUN'), ('directly', 'ADV'), ('and', 'CCONJ'), ('read', 'VERB'), ('\n', 'SPACE'), ('its', 'PRON'), ('contents', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('well', 'ADV'), ('paid', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('impudence', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('read', 'VERB'), ('what', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('wretched', 'ADJ'), (' ', 'SPACE'), ('Her', 'PRON'), ('wretchedness', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('borne', 'VERB'), ('but', 'CCONJ'), ('her', 'PRON'), ('passionher', 'NOUN'), ('maliceAt', 'VERB'), ('all', 'DET'), ('events', 'NOUN'), ('it', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('be', 'AUX'), ('appeased', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('in', 'ADP'), ('shortwhat', 'NOUN'), ('do', 'AUX'), ('you', 'PRON'), ('think', 'VERB'), ('of', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('wifes', 'NOUN'), ('style', 'NOUN'), ('of', 'ADP'), ('letterwritingdelicatetender', 'PROPN'), ('\n', 'SPACE'), ('truly', 'ADV'), ('femininewas', 'VERB'), ('it', 'PRON'), ('not', 'PART'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('wifeThe', 'PROPN'), ('letter', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('handwriting', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('but', 'CCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('only', 'ADV'), ('the', 'DET'), ('credit', 'NOUN'), ('of', 'ADP'), ('servilely', 'ADV'), ('copying', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('sentences', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('ashamed', 'ADJ'), ('to', 'PART'), ('put', 'VERB'), ('my', 'PRON'), ('name', 'NOUN'), ('to', 'ADP'), ('\n', 'SPACE'), ('The', 'DET'), ('original', 'NOUN'), ('was', 'AUX'), ('all', 'DET'), ('her', 'PRON'), ('ownher', 'NOUN'), ('own', 'VERB'), ('happy', 'ADJ'), ('thoughts', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('gentle', 'ADJ'), ('diction', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('what', 'PRON'), ('could', 'AUX'), ('I', 'PRON'), ('dowe', 'VERB'), ('were', 'AUX'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('in', 'ADP'), ('preparation', 'NOUN'), ('the', 'DET'), ('day', 'NOUN'), ('almost', 'ADV'), ('fixedBut', 'CCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('\n', 'SPACE'), ('talking', 'VERB'), ('like', 'ADP'), ('a', 'DET'), ('fool', 'NOUN'), (' ', 'SPACE'), ('PreparationdayIn', 'PROPN'), ('honest', 'ADJ'), ('words', 'NOUN'), ('\n', 'SPACE'), ('her', 'PRON'), ('money', 'NOUN'), ('was', 'AUX'), ('necessary', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('situation', 'NOUN'), ('like', 'ADP'), ('\n', 'SPACE'), ('mine', 'NOUN'), ('any', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('done', 'VERB'), ('to', 'PART'), ('prevent', 'VERB'), ('a', 'DET'), ('rupture', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('after', 'ADP'), ('all', 'PRON'), ('what', 'PRON'), ('did', 'AUX'), ('it', 'PRON'), ('signify', 'VERB'), ('to', 'ADP'), ('my', 'PRON'), ('character', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('friends', 'NOUN'), ('in', 'ADP'), ('what', 'DET'), ('language', 'NOUN'), ('\n', 'SPACE'), ('my', 'PRON'), ('answer', 'NOUN'), ('was', 'AUX'), ('couchedIt', 'PROPN'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('only', 'ADV'), ('to', 'ADP'), ('one', 'NUM'), ('end', 'NOUN'), ('\n', 'SPACE'), ('My', 'PRON'), ('business', 'NOUN'), ('was', 'AUX'), ('to', 'PART'), ('declare', 'VERB'), ('myself', 'PRON'), ('a', 'DET'), ('scoundrel', 'NOUN'), ('and', 'CCONJ'), ('whether', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('did', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('bow', 'NOUN'), ('or', 'CCONJ'), ('a', 'DET'), ('bluster', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('little', 'ADJ'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('ruined', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('in', 'ADP'), ('their', 'PRON'), ('opinion', 'NOUN'), ('said', 'VERB'), ('I', 'PRON'), ('to', 'ADP'), ('\n', 'SPACE'), ('myselfI', 'PROPN'), ('am', 'AUX'), ('shut', 'VERB'), ('out', 'ADP'), ('for', 'ADP'), ('ever', 'ADV'), ('from', 'ADP'), ('their', 'PRON'), ('society', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('already', 'ADV'), ('think', 'VERB'), ('me', 'PRON'), ('an', 'DET'), ('unprincipled', 'ADJ'), ('fellow', 'NOUN'), ('this', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('only', 'ADV'), ('make', 'VERB'), ('them', 'PRON'), ('think', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('blackguard', 'ADJ'), ('one', 'NOUN'), ('Such', 'ADJ'), ('were', 'AUX'), ('\n', 'SPACE'), ('my', 'PRON'), ('reasonings', 'NOUN'), ('as', 'ADP'), ('in', 'ADP'), ('a', 'DET'), ('sort', 'NOUN'), ('of', 'ADP'), ('desperate', 'ADJ'), ('carelessness', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('copied', 'VERB'), ('my', 'PRON'), ('wifes', 'NOUN'), ('words', 'NOUN'), ('and', 'CCONJ'), ('parted', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('last', 'ADJ'), ('relics', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Her', 'PRON'), ('three', 'NUM'), ('notesunluckily', 'ADV'), ('they', 'PRON'), ('were', 'AUX'), ('all', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('my', 'PRON'), ('pocketbook', 'NOUN'), ('or', 'CCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('denied', 'VERB'), ('their', 'PRON'), ('existence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('hoarded', 'VERB'), ('them', 'PRON'), ('for', 'ADP'), ('everI', 'PROPN'), ('was', 'AUX'), ('forced', 'VERB'), ('to', 'PART'), ('put', 'VERB'), ('them', 'PRON'), ('up', 'ADP'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('could', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('kiss', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('And', 'CCONJ'), ('the', 'DET'), ('lock', 'NOUN'), ('of', 'ADP'), ('hairthat', 'PRON'), ('too', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('carried', 'VERB'), ('about', 'ADP'), ('me', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('pocketbook', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('searched', 'VERB'), ('by', 'ADP'), ('Madam', 'PROPN'), ('with', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('ingratiating', 'ADJ'), ('\n', 'SPACE'), ('virulencethe', 'ADJ'), ('dear', 'ADJ'), ('lockall', 'NOUN'), ('every', 'DET'), ('memento', 'NOUN'), ('was', 'AUX'), ('torn', 'VERB'), ('from', 'ADP'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('wrong', 'ADJ'), ('Mr', 'PROPN'), ('Willoughby', 'PROPN'), ('very', 'ADV'), ('blamable', 'ADJ'), ('\n', 'SPACE'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('while', 'SCONJ'), ('her', 'PRON'), ('voice', 'NOUN'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('betrayed', 'VERB'), ('her', 'PRON'), ('compassionate', 'ADJ'), ('emotion', 'NOUN'), ('you', 'PRON'), ('ought', 'AUX'), ('not', 'PART'), ('to', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('this', 'DET'), ('way', 'NOUN'), ('either', 'CCONJ'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Willoughby', 'PROPN'), ('or', 'CCONJ'), ('my', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('You', 'PRON'), ('had', 'AUX'), ('made', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('choice', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('forced', 'VERB'), ('on', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('Your', 'PRON'), ('wife', 'NOUN'), ('has', 'VERB'), ('a', 'DET'), ('claim', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('politeness', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('respect', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('least', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('attached', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('or', 'CCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('have', 'AUX'), ('married', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('To', 'PART'), ('treat', 'VERB'), ('her', 'PRON'), ('with', 'ADP'), ('unkindness', 'ADJ'), ('to', 'PART'), ('speak', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('slightingly', 'ADV'), ('is', 'AUX'), ('no', 'DET'), ('atonement', 'NOUN'), ('to', 'ADP'), ('Mariannenor', 'PROPN'), ('can', 'AUX'), ('I', 'PRON'), ('\n', 'SPACE'), ('suppose', 'VERB'), ('it', 'PRON'), ('a', 'DET'), ('relief', 'NOUN'), ('to', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('conscience', 'NOUN'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('not', 'PART'), ('talk', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('of', 'ADP'), ('my', 'PRON'), ('wife', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('heavy', 'ADJ'), ('sigh', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('deserve', 'VERB'), ('your', 'PRON'), ('compassionShe', 'PRON'), ('knew', 'VERB'), ('I', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('when', 'SCONJ'), ('we', 'PRON'), ('marriedWell', 'VERB'), ('married', 'VERB'), ('we', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('came', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('returned', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('gayAnd', 'ADP'), ('now', 'ADV'), ('do', 'AUX'), ('you', 'PRON'), ('pity', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwoodor', 'PROPN'), ('have', 'AUX'), ('I', 'PRON'), ('said', 'VERB'), ('all', 'DET'), ('this', 'PRON'), ('to', 'ADP'), ('no', 'DET'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('Am', 'AUX'), ('Ibe', 'PROPN'), ('it', 'PRON'), ('only', 'ADV'), ('one', 'NUM'), ('degreeam', 'NOUN'), ('I', 'PRON'), ('less', 'ADV'), ('guilty', 'ADJ'), ('in', 'ADP'), ('your', 'PRON'), ('opinion', 'NOUN'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('beforeMy', 'NOUN'), ('intentions', 'NOUN'), ('were', 'AUX'), ('not', 'PART'), ('always', 'ADV'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('Have', 'AUX'), ('I', 'PRON'), ('explained', 'VERB'), ('away', 'ADP'), ('any', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('guilt', 'NOUN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('you', 'PRON'), ('have', 'AUX'), ('certainly', 'ADV'), ('removed', 'VERB'), ('somethinga', 'ADJ'), ('little', 'ADJ'), ('\n', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('proved', 'VERB'), ('yourself', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('whole', 'ADJ'), ('less', 'ADV'), ('faulty', 'ADJ'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('believed', 'VERB'), ('you', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('have', 'AUX'), ('proved', 'VERB'), ('your', 'PRON'), ('heart', 'NOUN'), ('less', 'ADV'), ('wicked', 'ADJ'), ('\n', 'SPACE'), ('much', 'ADV'), ('less', 'ADV'), ('wicked', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('hardly', 'ADV'), ('knowthe', 'VERB'), ('misery', 'NOUN'), ('that', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('have', 'VERB'), ('inflictedI', 'PROPN'), ('hardly', 'ADV'), ('know', 'VERB'), ('what', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('made', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('worse', 'ADJ'), ('\n\n', 'SPACE'), ('Will', 'AUX'), ('you', 'PRON'), ('repeat', 'VERB'), ('to', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('recovered', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('I', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('telling', 'VERB'), ('youLet', 'PROPN'), ('me', 'PRON'), ('be', 'AUX'), ('a', 'DET'), ('little', 'ADJ'), ('lightened', 'ADJ'), ('\n', 'SPACE'), ('too', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('opinion', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('in', 'ADP'), ('yours', 'PRON'), (' ', 'SPACE'), ('You', 'PRON'), ('tell', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('has', 'AUX'), ('forgiven', 'VERB'), ('me', 'PRON'), ('already', 'ADV'), (' ', 'SPACE'), ('Let', 'VERB'), ('me', 'PRON'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('fancy', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('a', 'DET'), ('better', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('my', 'PRON'), ('present', 'ADJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('will', 'AUX'), ('draw', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('a', 'DET'), ('more', 'ADV'), ('spontaneous', 'ADJ'), ('more', 'ADV'), ('natural', 'ADJ'), ('more', 'ADJ'), ('\n', 'SPACE'), ('gentle', 'ADJ'), ('less', 'ADV'), ('dignified', 'ADJ'), ('forgiveness', 'NOUN'), (' ', 'SPACE'), ('Tell', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('my', 'PRON'), ('misery', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('my', 'PRON'), ('penitencetell', 'NOUN'), ('her', 'PRON'), ('that', 'SCONJ'), ('my', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('never', 'ADV'), ('inconstant', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('you', 'PRON'), ('will', 'AUX'), ('that', 'PRON'), ('at', 'ADP'), ('this', 'DET'), ('moment', 'NOUN'), ('she', 'PRON'), ('is', 'AUX'), ('dearer', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('me', 'PRON'), ('than', 'ADP'), ('ever', 'ADV'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('tell', 'VERB'), ('her', 'PRON'), ('all', 'PRON'), ('that', 'PRON'), ('is', 'AUX'), ('necessary', 'ADJ'), ('to', 'ADP'), ('what', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('comparatively', 'ADV'), ('be', 'AUX'), ('called', 'VERB'), ('your', 'PRON'), ('justification', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('you', 'PRON'), ('have', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('explained', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('the', 'DET'), ('particular', 'ADJ'), ('reason', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('coming', 'VERB'), ('now', 'ADV'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('how', 'SCONJ'), ('you', 'PRON'), ('heard', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('illness', 'NOUN'), ('\n\n', 'SPACE'), ('Last', 'ADJ'), ('night', 'NOUN'), ('in', 'ADP'), ('Drury', 'PROPN'), ('Lane', 'PROPN'), ('lobby', 'NOUN'), ('I', 'PRON'), ('ran', 'VERB'), ('against', 'ADP'), ('Sir', 'PROPN'), ('\n', 'SPACE'), ('John', 'PROPN'), ('Middleton', 'PROPN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('he', 'PRON'), ('saw', 'VERB'), ('who', 'PRON'), ('I', 'PRON'), ('wasfor', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('\n', 'SPACE'), ('time', 'NOUN'), ('these', 'DET'), ('two', 'NUM'), ('monthshe', 'NOUN'), ('spoke', 'VERB'), ('to', 'ADP'), ('meThat', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('cut', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('ever', 'ADV'), ('since', 'SCONJ'), ('my', 'PRON'), ('marriage', 'NOUN'), ('I', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('without', 'ADP'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('resentment', 'NOUN'), (' ', 'SPACE'), ('Now', 'ADV'), ('however', 'ADV'), ('his', 'PRON'), ('goodnatured', 'ADJ'), ('honest', 'ADJ'), ('\n', 'SPACE'), ('stupid', 'ADJ'), ('soul', 'NOUN'), ('full', 'ADJ'), ('of', 'ADP'), ('indignation', 'NOUN'), ('against', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('your', 'PRON'), ('sister', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('resist', 'VERB'), ('the', 'DET'), ('temptation', 'NOUN'), ('of', 'ADP'), ('telling', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('what', 'PRON'), ('he', 'PRON'), ('knew', 'VERB'), ('ought', 'AUX'), ('tothough', 'ADV'), ('probably', 'ADV'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('think', 'VERB'), ('it', 'PRON'), ('WOULDvex', 'PROPN'), ('me', 'PRON'), ('horridly', 'ADV'), (' ', 'SPACE'), ('As', 'ADV'), ('bluntly', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('speak', 'VERB'), ('it', 'PRON'), ('therefore', 'ADV'), ('he', 'PRON'), ('told', 'VERB'), ('me', 'PRON'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('dying', 'VERB'), ('of', 'ADP'), ('a', 'DET'), ('putrid', 'ADJ'), ('fever', 'NOUN'), ('at', 'ADP'), ('Clevelanda', 'PROPN'), ('letter', 'NOUN'), ('that', 'PRON'), ('\n', 'SPACE'), ('morning', 'NOUN'), ('received', 'VERB'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('declared', 'VERB'), ('her', 'PRON'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('most', 'ADJ'), ('imminentthe', 'PRON'), ('Palmers', 'PROPN'), ('are', 'AUX'), ('all', 'PRON'), ('gone', 'VERB'), ('off', 'ADP'), ('in', 'ADP'), ('a', 'DET'), ('fright', 'ADJ'), ('\n', 'SPACE'), ('cI', 'PROPN'), ('was', 'AUX'), ('too', 'ADV'), ('much', 'ADV'), ('shocked', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('pass', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('off', 'ADP'), ('as', 'ADV'), ('insensible', 'ADJ'), ('even', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('undiscerning', 'VERB'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('\n', 'SPACE'), ('His', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('softened', 'VERB'), ('in', 'ADP'), ('seeing', 'VERB'), ('mine', 'PRON'), ('suffer', 'VERB'), ('and', 'CCONJ'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('illwill', 'NOUN'), ('was', 'AUX'), ('done', 'VERB'), ('away', 'ADV'), ('that', 'SCONJ'), ('when', 'SCONJ'), ('we', 'PRON'), ('parted', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('almost', 'ADV'), ('shook', 'VERB'), ('me', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('hand', 'NOUN'), ('while', 'SCONJ'), ('he', 'PRON'), ('reminded', 'VERB'), ('me', 'PRON'), ('of', 'ADP'), ('an', 'DET'), ('\n', 'SPACE'), ('old', 'ADJ'), ('promise', 'NOUN'), ('about', 'ADP'), ('a', 'DET'), ('pointer', 'NOUN'), ('puppy', 'ADJ'), (' ', 'SPACE'), ('What', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('on', 'ADP'), ('hearing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('your', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('dyingand', 'NOUN'), ('dying', 'VERB'), ('too', 'ADV'), ('believing', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('greatest', 'ADJ'), ('villain', 'NOUN'), ('upon', 'SCONJ'), ('earth', 'NOUN'), ('scorning', 'VERB'), ('hating', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('latest', 'ADJ'), ('momentsfor', 'NOUN'), ('how', 'SCONJ'), ('could', 'AUX'), ('I', 'PRON'), ('tell', 'VERB'), ('what', 'PRON'), ('horrid', 'NOUN'), ('\n', 'SPACE'), ('projects', 'NOUN'), ('might', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('imputed', 'VERB'), (' ', 'SPACE'), ('ONE', 'NUM'), ('person', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('sure', 'ADJ'), ('would', 'AUX'), ('represent', 'VERB'), ('me', 'PRON'), ('as', 'ADP'), ('capable', 'ADJ'), ('of', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('What', 'PRON'), ('I', 'PRON'), ('felt', 'VERB'), ('was', 'AUX'), ('dreadfulMy', 'PROPN'), ('resolution', 'NOUN'), ('was', 'AUX'), ('soon', 'ADV'), ('made', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('eight', 'NUM'), ('oclock', 'NOUN'), ('this', 'DET'), ('morning', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('my', 'PRON'), ('carriage', 'NOUN'), ('\n', 'SPACE'), ('Now', 'ADV'), ('you', 'PRON'), ('know', 'VERB'), ('all', 'DET'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('made', 'VERB'), ('no', 'DET'), ('answer', 'NOUN'), (' ', 'SPACE'), ('Her', 'PRON'), ('thoughts', 'NOUN'), ('were', 'AUX'), ('silently', 'ADV'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('irreparable', 'ADJ'), ('injury', 'NOUN'), ('which', 'PRON'), ('too', 'ADV'), ('early', 'ADV'), ('an', 'DET'), ('independence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('its', 'PRON'), ('consequent', 'ADJ'), ('habits', 'NOUN'), ('of', 'ADP'), ('idleness', 'ADJ'), ('dissipation', 'NOUN'), ('and', 'CCONJ'), ('luxury', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('made', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('mind', 'NOUN'), ('the', 'DET'), ('character', 'NOUN'), ('the', 'DET'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('to', 'ADP'), ('every', 'DET'), ('advantage', 'NOUN'), ('of', 'ADP'), ('person', 'NOUN'), ('and', 'CCONJ'), ('talents', 'NOUN'), ('\n', 'SPACE'), ('united', 'VERB'), ('a', 'DET'), ('disposition', 'NOUN'), ('naturally', 'ADV'), ('open', 'ADJ'), ('and', 'CCONJ'), ('honest', 'ADJ'), ('and', 'CCONJ'), ('a', 'DET'), ('\n', 'SPACE'), ('feeling', 'NOUN'), ('affectionate', 'ADJ'), ('temper', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('world', 'NOUN'), ('had', 'AUX'), ('made', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('extravagant', 'NOUN'), ('and', 'CCONJ'), ('vainExtravagance', 'NOUN'), ('and', 'CCONJ'), ('vanity', 'NOUN'), ('had', 'AUX'), ('made', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('coldhearted', 'VERB'), ('and', 'CCONJ'), ('selfish', 'ADJ'), (' ', 'SPACE'), ('Vanity', 'PROPN'), ('while', 'SCONJ'), ('seeking', 'VERB'), ('its', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('guilty', 'ADJ'), ('triumph', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('expense', 'NOUN'), ('of', 'ADP'), ('another', 'PRON'), ('had', 'AUX'), ('involved', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('real', 'ADJ'), ('attachment', 'NOUN'), ('which', 'DET'), ('extravagance', 'NOUN'), ('or', 'CCONJ'), ('at', 'ADP'), ('least', 'ADJ'), ('\n', 'SPACE'), ('its', 'PRON'), ('offspring', 'NOUN'), ('necessity', 'NOUN'), ('had', 'AUX'), ('required', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('sacrificed', 'VERB'), ('\n', 'SPACE'), ('Each', 'DET'), ('faulty', 'ADJ'), ('propensity', 'NOUN'), ('in', 'ADP'), ('leading', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('evil', 'NOUN'), ('had', 'AUX'), ('led', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('likewise', 'ADV'), ('to', 'PART'), ('punishment', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('attachment', 'NOUN'), ('from', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('against', 'ADP'), ('honour', 'NOUN'), ('against', 'ADP'), ('feeling', 'VERB'), ('against', 'ADP'), ('every', 'DET'), ('better', 'ADJ'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('outwardly', 'ADV'), ('torn', 'VERB'), ('himself', 'PRON'), ('now', 'ADV'), ('when', 'SCONJ'), ('no', 'ADV'), ('longer', 'ADV'), ('allowable', 'ADJ'), ('\n', 'SPACE'), ('governed', 'VERB'), ('every', 'DET'), ('thought', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('connection', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'VERB'), ('with', 'ADP'), ('little', 'ADJ'), ('scruple', 'NOUN'), ('left', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('misery', 'NOUN'), ('was', 'AUX'), ('likely', 'ADJ'), ('to', 'PART'), ('prove', 'VERB'), ('a', 'DET'), ('source', 'NOUN'), ('of', 'ADP'), ('unhappiness', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('himself', 'PRON'), ('of', 'ADP'), ('a', 'DET'), ('far', 'ADV'), ('more', 'ADV'), ('incurable', 'ADJ'), ('nature', 'NOUN'), (' ', 'SPACE'), ('From', 'ADP'), ('a', 'DET'), ('reverie', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('this', 'DET'), ('kind', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('recalled', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('minutes', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('who', 'PRON'), ('rousing', 'VERB'), ('himself', 'PRON'), ('from', 'ADP'), ('a', 'DET'), ('reverie', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('\n', 'SPACE'), ('equally', 'ADV'), ('painful', 'ADJ'), ('started', 'VERB'), ('up', 'ADP'), ('in', 'ADP'), ('preparation', 'NOUN'), ('for', 'ADP'), ('going', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('There', 'PRON'), ('is', 'VERB'), ('no', 'DET'), ('use', 'NOUN'), ('in', 'ADP'), ('staying', 'VERB'), ('here', 'ADV'), ('I', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('off', 'ADP'), ('\n\n', 'SPACE'), ('Are', 'AUX'), ('you', 'PRON'), ('going', 'VERB'), ('back', 'ADV'), ('to', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('Noto', 'PROPN'), ('Combe', 'PROPN'), ('Magna', 'PROPN'), (' ', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('business', 'NOUN'), ('there', 'ADV'), ('\n', 'SPACE'), ('from', 'ADP'), ('thence', 'NOUN'), ('to', 'ADP'), ('town', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), (' ', 'SPACE'), ('Good', 'ADJ'), ('bye', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('held', 'VERB'), ('out', 'ADP'), ('his', 'PRON'), ('hand', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('refuse', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('hersshe', 'PRON'), ('pressed', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('affection', 'NOUN'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('you', 'PRON'), ('DO', 'AUX'), ('think', 'VERB'), ('something', 'PRON'), ('better', 'ADJ'), ('of', 'ADP'), ('me', 'PRON'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('you', 'PRON'), ('didsaid', 'VERB'), ('he', 'PRON'), ('letting', 'VERB'), ('it', 'PRON'), ('fall', 'VERB'), ('and', 'CCONJ'), ('leaning', 'VERB'), ('against', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('mantelpiece', 'NOUN'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('forgetting', 'VERB'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('assured', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('she', 'PRON'), ('didthat', 'SCONJ'), ('she', 'PRON'), ('forgave', 'VERB'), ('\n', 'SPACE'), ('pitied', 'VERB'), ('wished', 'VERB'), ('him', 'PRON'), ('wellwas', 'VERB'), ('even', 'ADV'), ('interested', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('happinessand', 'NOUN'), ('added', 'VERB'), ('some', 'DET'), ('gentle', 'ADJ'), ('counsel', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('behaviour', 'NOUN'), ('\n', 'SPACE'), ('most', 'ADV'), ('likely', 'ADJ'), ('to', 'PART'), ('promote', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('His', 'PRON'), ('answer', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('very', 'ADV'), ('encouraging', 'ADJ'), ('\n\n', 'SPACE'), ('As', 'ADP'), ('to', 'ADP'), ('that', 'PRON'), ('said', 'VERB'), ('he', 'PRON'), ('I', 'PRON'), ('must', 'AUX'), ('rub', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), (' ', 'SPACE'), ('Domestic', 'ADJ'), ('happiness', 'NOUN'), ('is', 'AUX'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('If', 'SCONJ'), ('however', 'ADV'), ('I', 'PRON'), ('am', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('you', 'PRON'), ('and', 'CCONJ'), ('yours', 'PRON'), ('feel', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('interest', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('fate', 'NOUN'), ('and', 'CCONJ'), ('actions', 'NOUN'), ('it', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('meansit', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('put', 'VERB'), ('me', 'PRON'), ('on', 'ADP'), ('my', 'PRON'), ('guardat', 'NOUN'), ('least', 'ADV'), ('it', 'PRON'), ('may', 'AUX'), ('be', 'AUX'), ('something', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('live', 'VERB'), ('for', 'SCONJ'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('to', 'PART'), ('be', 'AUX'), ('sure', 'ADJ'), ('is', 'AUX'), ('lost', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('for', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('Were', 'AUX'), ('I', 'PRON'), ('even', 'ADV'), ('by', 'ADP'), ('any', 'DET'), ('blessed', 'VERB'), ('chance', 'NOUN'), ('at', 'ADP'), ('liberty', 'NOUN'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('stopped', 'VERB'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('reproof', 'NOUN'), ('\n\n', 'SPACE'), ('Wellhe', 'NOUN'), ('repliedonce', 'NOUN'), ('more', 'ADV'), ('good', 'ADJ'), ('bye', 'INTJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('now', 'ADV'), ('go', 'VERB'), ('away', 'ADV'), ('and', 'CCONJ'), ('live', 'VERB'), ('in', 'ADP'), ('dread', 'NOUN'), ('of', 'ADP'), ('one', 'NUM'), ('event', 'NOUN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('do', 'AUX'), ('you', 'PRON'), ('mean', 'VERB'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('sisters', 'NOUN'), ('marriage', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('wrong', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('can', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('more', 'ADV'), ('lost', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('you', 'PRON'), ('than', 'SCONJ'), ('she', 'PRON'), ('is', 'AUX'), ('now', 'ADV'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('gained', 'VERB'), ('by', 'ADP'), ('some', 'DET'), ('one', 'NUM'), ('else', 'ADV'), (' ', 'SPACE'), ('And', 'CCONJ'), ('if', 'SCONJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('some', 'DET'), ('one', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('very', 'ADV'), ('he', 'PRON'), ('whom', 'PRON'), ('of', 'ADP'), ('all', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('could', 'AUX'), ('least', 'ADV'), ('bearbut', 'VERB'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('stay', 'VERB'), ('to', 'PART'), ('rob', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('your', 'PRON'), ('compassionate', 'ADJ'), ('goodwill', 'NOUN'), ('by', 'ADP'), ('shewing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('where', 'SCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('most', 'ADV'), ('injured', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('least', 'ADV'), ('forgive', 'VERB'), ('\n', 'SPACE'), ('Good', 'ADJ'), ('byeGod', 'PROPN'), ('bless', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('with', 'ADP'), ('these', 'DET'), ('words', 'NOUN'), ('he', 'PRON'), ('almost', 'ADV'), ('ran', 'VERB'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('45', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('after', 'SCONJ'), ('he', 'PRON'), ('left', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('even', 'ADV'), ('after', 'SCONJ'), ('the', 'DET'), ('sound', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('carriage', 'NOUN'), ('had', 'AUX'), ('died', 'VERB'), ('away', 'ADV'), ('remained', 'VERB'), ('\n', 'SPACE'), ('too', 'ADV'), ('much', 'ADV'), ('oppressed', 'VERB'), ('by', 'ADP'), ('a', 'DET'), ('crowd', 'NOUN'), ('of', 'ADP'), ('ideas', 'NOUN'), ('widely', 'ADV'), ('differing', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('themselves', 'PRON'), ('but', 'SCONJ'), ('of', 'ADP'), ('which', 'PRON'), ('sadness', 'NOUN'), ('was', 'AUX'), ('the', 'DET'), ('general', 'ADJ'), ('result', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('even', 'ADV'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('Willoughby', 'PROPN'), ('he', 'PRON'), ('whom', 'PRON'), ('only', 'ADV'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('ago', 'ADV'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('abhorred', 'VERB'), ('as', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('worthless', 'ADJ'), ('of', 'ADP'), ('men', 'NOUN'), ('Willoughby', 'PROPN'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('faults', 'NOUN'), ('excited', 'VERB'), ('a', 'DET'), ('degree', 'NOUN'), ('of', 'ADP'), ('commiseration', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('sufferings', 'NOUN'), ('produced', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('which', 'PRON'), ('made', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('think', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('as', 'ADV'), ('now', 'ADV'), ('separated', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('from', 'ADP'), ('her', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('tenderness', 'NOUN'), ('a', 'DET'), ('regret', 'NOUN'), ('rather', 'ADV'), ('in', 'ADP'), ('proportion', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('soon', 'ADV'), ('acknowledged', 'VERB'), ('within', 'ADP'), ('herselfto', 'NOUN'), ('his', 'PRON'), ('wishes', 'NOUN'), ('than', 'ADP'), ('to', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('merits', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('felt', 'VERB'), ('that', 'SCONJ'), ('his', 'PRON'), ('influence', 'NOUN'), ('over', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('heightened', 'VERB'), ('by', 'ADP'), ('circumstances', 'NOUN'), ('which', 'PRON'), ('ought', 'AUX'), ('not', 'PART'), ('in', 'ADP'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('have', 'VERB'), ('weight', 'NOUN'), ('by', 'ADP'), ('that', 'DET'), ('person', 'NOUN'), ('of', 'ADP'), ('uncommon', 'ADJ'), ('attraction', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('open', 'ADJ'), ('affectionate', 'NOUN'), ('and', 'CCONJ'), ('lively', 'ADJ'), ('manner', 'NOUN'), ('which', 'PRON'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('no', 'DET'), ('merit', 'NOUN'), ('to', 'PART'), ('possess', 'VERB'), ('and', 'CCONJ'), ('by', 'ADP'), ('that', 'DET'), ('still', 'ADV'), ('ardent', 'ADJ'), ('love', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('which', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('innocent', 'ADJ'), ('to', 'PART'), ('indulge', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('felt', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('so', 'ADV'), ('long', 'ADV'), ('long', 'ADV'), ('before', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('feel', 'VERB'), ('his', 'PRON'), ('influence', 'NOUN'), ('less', 'ADV'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('she', 'PRON'), ('returned', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('unconscious', 'ADJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('found', 'VERB'), ('her', 'PRON'), ('just', 'ADV'), ('awaking', 'VERB'), ('refreshed', 'VERB'), ('by', 'ADP'), ('so', 'ADV'), ('long', 'ADJ'), ('and', 'CCONJ'), ('sweet', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('sleep', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('extent', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('hopes', 'NOUN'), (' ', 'SPACE'), ('Elinors', 'PROPN'), ('heart', 'NOUN'), ('was', 'AUX'), ('full', 'ADJ'), ('\n', 'SPACE'), ('The', 'DET'), ('past', 'NOUN'), ('the', 'DET'), ('present', 'ADJ'), ('the', 'DET'), ('future', 'ADJ'), ('Willoughbys', 'PROPN'), ('visit', 'VERB'), ('\n', 'SPACE'), ('Mariannes', 'PROPN'), ('safety', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mothers', 'NOUN'), ('expected', 'VERB'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('threw', 'VERB'), ('her', 'PRON'), ('altogether', 'ADV'), ('into', 'ADP'), ('an', 'DET'), ('agitation', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('kept', 'VERB'), ('off', 'ADP'), ('every', 'DET'), ('indication', 'NOUN'), ('of', 'ADP'), ('fatigue', 'NOUN'), ('and', 'CCONJ'), ('made', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('only', 'ADV'), ('fearful', 'ADJ'), ('of', 'ADP'), ('betraying', 'VERB'), ('herself', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('Short', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('time', 'NOUN'), ('however', 'ADV'), ('in', 'ADP'), ('which', 'PRON'), ('that', 'DET'), ('fear', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('affect', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('within', 'ADP'), ('half', 'DET'), ('an', 'DET'), ('hour', 'NOUN'), ('after', 'SCONJ'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('leaving', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('again', 'ADV'), ('called', 'VERB'), ('down', 'ADP'), ('stairs', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('sound', 'NOUN'), ('of', 'ADP'), ('another', 'DET'), ('carriageEager', 'NOUN'), ('to', 'PART'), ('save', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('from', 'ADP'), ('every', 'DET'), ('unnecessary', 'ADJ'), ('moments', 'NOUN'), ('horrible', 'ADJ'), ('suspense', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('ran', 'VERB'), ('immediately', 'ADV'), ('into', 'ADP'), ('the', 'DET'), ('hall', 'NOUN'), ('and', 'CCONJ'), ('reached', 'VERB'), ('the', 'DET'), ('outward', 'ADJ'), ('\n', 'SPACE'), ('door', 'NOUN'), ('just', 'ADV'), ('in', 'ADP'), ('time', 'NOUN'), ('to', 'PART'), ('receive', 'VERB'), ('and', 'CCONJ'), ('support', 'VERB'), ('her', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('entered', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('whose', 'DET'), ('terror', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('drew', 'VERB'), ('near', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('house', 'NOUN'), ('had', 'AUX'), ('produced', 'VERB'), ('almost', 'ADV'), ('the', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('being', 'AUX'), ('no', 'ADV'), ('more', 'ADV'), ('had', 'VERB'), ('no', 'DET'), ('voice', 'NOUN'), ('to', 'PART'), ('inquire', 'VERB'), ('after', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('no', 'DET'), ('voice', 'NOUN'), ('even', 'ADV'), ('for', 'ADP'), ('Elinor', 'PROPN'), ('but', 'CCONJ'), ('SHE', 'PRON'), ('waiting', 'VERB'), ('neither', 'CCONJ'), ('for', 'ADP'), ('\n', 'SPACE'), ('salutation', 'NOUN'), ('nor', 'CCONJ'), ('inquiry', 'NOUN'), ('instantly', 'ADV'), ('gave', 'VERB'), ('the', 'DET'), ('joyful', 'ADJ'), ('relief', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('catching', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('all', 'DET'), ('her', 'PRON'), ('usual', 'ADJ'), ('warmth', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('as', 'ADP'), ('much', 'ADJ'), ('overcome', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('happiness', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('before', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('fears', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('supported', 'VERB'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('drawingroom', 'NOUN'), ('between', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('there', 'ADV'), ('shedding', 'VERB'), ('tears', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('though', 'SCONJ'), ('still', 'ADV'), ('unable', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('speak', 'VERB'), ('embraced', 'VERB'), ('Elinor', 'PROPN'), ('again', 'ADV'), ('and', 'CCONJ'), ('again', 'ADV'), ('turning', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('at', 'ADP'), ('intervals', 'NOUN'), ('to', 'PART'), ('press', 'VERB'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('hand', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('spoke', 'VERB'), ('at', 'ADP'), ('once', 'ADV'), ('her', 'PRON'), ('gratitude', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('conviction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('sharing', 'NOUN'), ('with', 'ADP'), ('herself', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('bliss', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('shared', 'VERB'), ('it', 'PRON'), ('however', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('silence', 'NOUN'), ('even', 'ADV'), ('greater', 'ADJ'), ('than', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('had', 'AUX'), ('recovered', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('her', 'PRON'), ('first', 'ADJ'), ('desire', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('two', 'NUM'), ('minutes', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('with', 'ADP'), ('her', 'PRON'), ('beloved', 'ADJ'), ('child', 'NOUN'), ('rendered', 'VERB'), ('dearer', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('than', 'ADP'), ('ever', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('absence', 'NOUN'), ('unhappiness', 'NOUN'), ('and', 'CCONJ'), ('danger', 'NOUN'), (' ', 'SPACE'), ('Elinors', 'NOUN'), ('delight', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('what', 'PRON'), ('each', 'PRON'), ('felt', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('meeting', 'NOUN'), ('was', 'AUX'), ('only', 'ADV'), ('checked', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('an', 'DET'), ('apprehension', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('robbing', 'NOUN'), ('Marianne', 'PROPN'), ('of', 'ADP'), ('farther', 'ADJ'), ('sleep', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('could', 'AUX'), ('be', 'AUX'), ('calm', 'ADJ'), ('could', 'AUX'), ('be', 'AUX'), ('even', 'ADV'), ('prudent', 'ADJ'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('the', 'DET'), ('life', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('child', 'NOUN'), ('was', 'AUX'), ('at', 'ADP'), ('stake', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('satisfied', 'VERB'), ('in', 'ADP'), ('knowing', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('near', 'ADP'), ('her', 'PRON'), ('and', 'CCONJ'), ('conscious', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('being', 'AUX'), ('too', 'ADV'), ('weak', 'ADJ'), ('for', 'ADP'), ('conversation', 'NOUN'), ('submitted', 'VERB'), ('readily', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('silence', 'NOUN'), ('and', 'CCONJ'), ('quiet', 'ADJ'), ('prescribed', 'VERB'), ('by', 'ADP'), ('every', 'DET'), ('nurse', 'NOUN'), ('around', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('WOULD', 'AUX'), ('sit', 'VERB'), ('up', 'ADP'), ('with', 'ADP'), ('her', 'PRON'), ('all', 'DET'), ('night', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('compliance', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('entreaty', 'PROPN'), ('went', 'VERB'), ('to', 'ADP'), ('bed', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('rest', 'NOUN'), ('which', 'PRON'), ('one', 'NUM'), ('night', 'NOUN'), ('entirely', 'ADV'), ('sleepless', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('many', 'ADJ'), ('hours', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('wearing', 'VERB'), ('anxiety', 'NOUN'), ('seemed', 'VERB'), ('to', 'PART'), ('\n', 'SPACE'), ('make', 'VERB'), ('requisite', 'ADJ'), ('was', 'AUX'), ('kept', 'VERB'), ('off', 'ADP'), ('by', 'ADP'), ('irritation', 'NOUN'), ('of', 'ADP'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('Willoughby', 'PROPN'), ('poor', 'ADJ'), ('Willoughby', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('now', 'ADV'), ('allowed', 'VERB'), ('\n', 'SPACE'), ('herself', 'PRON'), ('to', 'PART'), ('call', 'VERB'), ('him', 'PRON'), ('was', 'AUX'), ('constantly', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('thoughts', 'NOUN'), ('she', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('but', 'ADV'), ('have', 'AUX'), ('heard', 'VERB'), ('his', 'PRON'), ('vindication', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('now', 'ADV'), ('blamed', 'VERB'), ('now', 'ADV'), ('acquitted', 'VERB'), ('herself', 'PRON'), ('for', 'ADP'), ('having', 'AUX'), ('judged', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('so', 'ADV'), ('harshly', 'ADV'), ('before', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('her', 'PRON'), ('promise', 'NOUN'), ('of', 'ADP'), ('relating', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('sister', 'NOUN'), ('was', 'AUX'), ('invariably', 'ADV'), ('painful', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('dreaded', 'VERB'), ('the', 'DET'), ('performance', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('dreaded', 'VERB'), ('what', 'PRON'), ('its', 'PRON'), ('effect', 'NOUN'), ('on', 'ADP'), ('Marianne', 'PROPN'), ('might', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('doubted', 'VERB'), ('whether', 'SCONJ'), ('after', 'SCONJ'), ('such', 'DET'), ('an', 'DET'), ('explanation', 'NOUN'), ('she', 'PRON'), ('could', 'AUX'), ('ever', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('happy', 'ADJ'), ('with', 'ADP'), ('another', 'PRON'), ('and', 'CCONJ'), ('for', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('wished', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('a', 'DET'), ('widower', 'NOUN'), (' ', 'SPACE'), ('Then', 'ADV'), ('remembering', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('reproved', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('felt', 'VERB'), ('that', 'SCONJ'), ('to', 'ADP'), ('HIS', 'PRON'), ('sufferings', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('constancy', 'NOUN'), ('far', 'ADV'), ('more', 'ADV'), ('\n', 'SPACE'), ('than', 'ADP'), ('to', 'ADP'), ('his', 'PRON'), ('rivals', 'NOUN'), ('the', 'DET'), ('reward', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('due', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('wished', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('rather', 'ADV'), ('than', 'ADP'), ('Mrs', 'PROPN'), ('Willoughbys', 'PROPN'), ('death', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('shock', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('errand', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('much', 'ADV'), ('softened', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('previous', 'ADJ'), ('alarm', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('so', 'ADV'), ('great', 'ADJ'), ('was', 'AUX'), ('her', 'PRON'), ('uneasiness', 'NOUN'), ('about', 'ADP'), ('Marianne', 'PROPN'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('already', 'ADV'), ('determined', 'VERB'), ('to', 'PART'), ('set', 'VERB'), ('out', 'ADP'), ('for', 'ADP'), ('Cleveland', 'PROPN'), ('on', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('very', 'ADJ'), ('day', 'NOUN'), ('without', 'ADP'), ('waiting', 'VERB'), ('for', 'ADP'), ('any', 'DET'), ('further', 'ADJ'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('had', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('settled', 'VERB'), ('her', 'PRON'), ('journey', 'NOUN'), ('before', 'SCONJ'), ('his', 'PRON'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('the', 'DET'), ('Careys', 'PROPN'), ('were', 'AUX'), ('then', 'ADV'), ('expected', 'VERB'), ('every', 'DET'), ('moment', 'NOUN'), ('to', 'PART'), ('fetch', 'VERB'), ('\n', 'SPACE'), ('Margaret', 'PROPN'), ('away', 'ADV'), ('as', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('unwilling', 'ADJ'), ('to', 'PART'), ('take', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('there', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('infection', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('continued', 'VERB'), ('to', 'PART'), ('mend', 'VERB'), ('every', 'DET'), ('day', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('brilliant', 'ADJ'), ('\n', 'SPACE'), ('cheerfulness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('looks', 'VERB'), ('and', 'CCONJ'), ('spirits', 'NOUN'), ('proved', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('as', 'SCONJ'), ('she', 'PRON'), ('repeatedly', 'ADV'), ('declared', 'VERB'), ('herself', 'PRON'), ('one', 'NUM'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('happiest', 'ADJ'), ('women', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('declaration', 'NOUN'), ('nor', 'CCONJ'), ('witness', 'VERB'), ('its', 'PRON'), ('proofs', 'NOUN'), ('without', 'ADP'), ('sometimes', 'ADV'), ('\n', 'SPACE'), ('wondering', 'VERB'), ('whether', 'SCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('ever', 'ADV'), ('recollected', 'VERB'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('trusting', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('temperate', 'NOUN'), ('account', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('disappointment', 'NOUN'), ('which', 'PRON'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('sent', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('led', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('the', 'DET'), ('exuberance', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('joy', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('only', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('would', 'AUX'), ('increase', 'VERB'), ('it', 'PRON'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('restored', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('a', 'DET'), ('danger', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('now', 'ADV'), ('began', 'VERB'), ('to', 'PART'), ('feel', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('own', 'ADJ'), ('mistaken', 'ADJ'), ('judgment', 'NOUN'), ('in', 'ADP'), ('encouraging', 'VERB'), ('the', 'DET'), ('unfortunate', 'ADJ'), ('\n', 'SPACE'), ('attachment', 'NOUN'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('had', 'AUX'), ('contributed', 'VERB'), ('to', 'PART'), ('place', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('recovery', 'NOUN'), ('she', 'PRON'), ('had', 'VERB'), ('yet', 'ADV'), ('another', 'DET'), ('source', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('\n', 'SPACE'), ('unthought', 'ADJ'), ('of', 'ADP'), ('by', 'ADP'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('thus', 'ADV'), ('imparted', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('any', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('private', 'ADJ'), ('conference', 'NOUN'), ('\n', 'SPACE'), ('between', 'ADP'), ('them', 'PRON'), ('occurred', 'VERB'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('last', 'ADJ'), ('we', 'PRON'), ('are', 'AUX'), ('alone', 'ADJ'), (' ', 'SPACE'), ('My', 'PRON'), ('Elinor', 'NOUN'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('yet', 'ADV'), ('\n', 'SPACE'), ('know', 'VERB'), ('all', 'DET'), ('my', 'PRON'), ('happiness', 'NOUN'), (' ', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('loves', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('He', 'PRON'), ('has', 'AUX'), ('told', 'VERB'), ('me', 'PRON'), ('so', 'SCONJ'), ('himself', 'PRON'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('daughter', 'NOUN'), ('feeling', 'VERB'), ('by', 'ADP'), ('turns', 'NOUN'), ('both', 'CCONJ'), ('pleased', 'ADJ'), ('and', 'CCONJ'), ('pained', 'VERB'), ('\n', 'SPACE'), ('surprised', 'ADJ'), ('and', 'CCONJ'), ('not', 'PART'), ('surprised', 'ADJ'), ('was', 'AUX'), ('all', 'PRON'), ('silent', 'ADJ'), ('attention', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('never', 'ADV'), ('like', 'ADP'), ('me', 'PRON'), ('dear', 'ADJ'), ('Elinor', 'PROPN'), ('or', 'CCONJ'), ('I', 'PRON'), ('should', 'AUX'), ('\n', 'SPACE'), ('wonder', 'VERB'), ('at', 'ADP'), ('your', 'PRON'), ('composure', 'NOUN'), ('now', 'ADV'), (' ', 'SPACE'), ('Had', 'AUX'), ('I', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'PART'), ('wish', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('any', 'DET'), ('possible', 'ADJ'), ('good', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('family', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('have', 'AUX'), ('fixed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('marrying', 'VERB'), ('one', 'NUM'), ('of', 'ADP'), ('you', 'PRON'), ('as', 'ADP'), ('the', 'DET'), ('object', 'NOUN'), ('\n', 'SPACE'), ('most', 'ADV'), ('desirable', 'ADJ'), (' ', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('believe', 'VERB'), ('Marianne', 'PROPN'), ('will', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('with', 'ADP'), ('him', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('was', 'AUX'), ('half', 'ADV'), ('inclined', 'ADJ'), ('to', 'PART'), ('ask', 'VERB'), ('her', 'PRON'), ('reason', 'NOUN'), ('for', 'ADP'), ('thinking', 'VERB'), ('so', 'ADV'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('satisfied', 'VERB'), ('that', 'SCONJ'), ('none', 'NOUN'), ('founded', 'VERB'), ('on', 'ADP'), ('an', 'DET'), ('impartial', 'ADJ'), ('\n', 'SPACE'), ('consideration', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('age', 'NOUN'), ('characters', 'NOUN'), ('or', 'CCONJ'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('be', 'AUX'), ('givenbut', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('must', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('carried', 'VERB'), ('\n', 'SPACE'), ('away', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('imagination', 'NOUN'), ('on', 'ADP'), ('any', 'DET'), ('interesting', 'ADJ'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('instead', 'ADV'), ('of', 'ADP'), ('an', 'DET'), ('inquiry', 'NOUN'), ('she', 'PRON'), ('passed', 'VERB'), ('it', 'PRON'), ('off', 'ADP'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('smile', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('opened', 'VERB'), ('his', 'PRON'), ('whole', 'ADJ'), ('heart', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('yesterday', 'NOUN'), ('as', 'SCONJ'), ('we', 'PRON'), ('travelled', 'VERB'), ('\n', 'SPACE'), ('It', 'PRON'), ('came', 'VERB'), ('out', 'ADP'), ('quite', 'ADV'), ('unawares', 'ADJ'), ('quite', 'ADV'), ('undesignedly', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('you', 'PRON'), ('may', 'AUX'), ('\n', 'SPACE'), ('well', 'ADV'), ('believe', 'VERB'), ('could', 'AUX'), ('talk', 'VERB'), ('of', 'ADP'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('my', 'PRON'), ('childhe', 'NOUN'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('conceal', 'VERB'), ('his', 'PRON'), ('distress', 'NOUN'), ('I', 'PRON'), ('saw', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('equalled', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('perhaps', 'ADV'), ('thinking', 'VERB'), ('that', 'SCONJ'), ('mere', 'ADJ'), ('friendship', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('now', 'ADV'), ('goes', 'VERB'), ('would', 'AUX'), ('not', 'PART'), ('justify', 'VERB'), ('so', 'ADV'), ('warm', 'ADJ'), ('a', 'DET'), ('sympathyor', 'NOUN'), ('rather', 'ADV'), ('\n', 'SPACE'), ('not', 'PART'), ('thinking', 'VERB'), ('at', 'ADV'), ('all', 'ADV'), ('I', 'PRON'), ('supposegiving', 'VERB'), ('way', 'NOUN'), ('to', 'ADP'), ('irresistible', 'ADJ'), ('\n', 'SPACE'), ('feelings', 'NOUN'), ('made', 'VERB'), ('me', 'PRON'), ('acquainted', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('earnest', 'ADJ'), ('tender', 'NOUN'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('affection', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('He', 'PRON'), ('has', 'AUX'), ('loved', 'VERB'), ('her', 'PRON'), ('my', 'PRON'), ('Elinor', 'PROPN'), ('ever', 'ADV'), ('since', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('first', 'ADJ'), ('moment', 'NOUN'), ('of', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('however', 'ADV'), ('Elinor', 'PROPN'), ('perceivednot', 'VERB'), ('the', 'DET'), ('language', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('the', 'DET'), ('professions', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('but', 'CCONJ'), ('the', 'DET'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('embellishments', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('active', 'ADJ'), ('fancy', 'NOUN'), ('which', 'PRON'), ('fashioned', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thing', 'NOUN'), ('delightful', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('as', 'SCONJ'), ('it', 'PRON'), ('chose', 'VERB'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('regard', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('infinitely', 'ADV'), ('surpassing', 'VERB'), ('anything', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Willoughby', 'PROPN'), ('ever', 'ADV'), ('felt', 'VERB'), ('or', 'CCONJ'), ('feigned', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('more', 'ADV'), ('warm', 'ADJ'), ('\n', 'SPACE'), ('as', 'ADP'), ('more', 'ADV'), ('sincere', 'ADJ'), ('or', 'CCONJ'), ('constantwhich', 'VERB'), ('ever', 'ADV'), ('we', 'PRON'), ('are', 'AUX'), ('to', 'PART'), ('call', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('has', 'AUX'), ('subsisted', 'VERB'), ('through', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('dear', 'ADJ'), ('Mariannes', 'PROPN'), ('\n', 'SPACE'), ('unhappy', 'ADJ'), ('prepossession', 'NOUN'), ('for', 'ADP'), ('that', 'DET'), ('worthless', 'ADJ'), ('young', 'ADJ'), ('manand', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('selfishnesswithout', 'NOUN'), ('encouraging', 'VERB'), ('a', 'DET'), ('hopecould', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('have', 'AUX'), ('seen', 'VERB'), ('her', 'PRON'), ('happy', 'ADJ'), ('with', 'ADP'), ('anotherSuch', 'DET'), ('a', 'DET'), ('noble', 'ADJ'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('such', 'ADJ'), ('openness', 'NOUN'), ('such', 'ADJ'), ('sincerityno', 'NOUN'), ('one', 'PRON'), ('can', 'AUX'), ('be', 'AUX'), ('deceived', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('HIM', 'PROPN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('character', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('an', 'DET'), ('excellent', 'ADJ'), ('man', 'NOUN'), ('is', 'AUX'), ('well', 'ADV'), ('established', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('it', 'PRON'), ('isreplied', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('seriously', 'ADV'), ('or', 'CCONJ'), ('\n', 'SPACE'), ('after', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('warning', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('the', 'DET'), ('last', 'ADJ'), ('to', 'PART'), ('encourage', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('affection', 'NOUN'), ('or', 'CCONJ'), ('even', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('pleased', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('his', 'PRON'), ('coming', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('me', 'PRON'), ('as', 'SCONJ'), ('he', 'PRON'), ('did', 'VERB'), ('with', 'ADP'), ('such', 'ADJ'), ('active', 'ADJ'), ('such', 'ADJ'), ('ready', 'ADJ'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('enough', 'ADJ'), ('to', 'PART'), ('prove', 'VERB'), ('him', 'PRON'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('worthiest', 'ADJ'), ('of', 'ADP'), ('men', 'NOUN'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('character', 'NOUN'), ('however', 'ADV'), ('answered', 'VERB'), ('Elinor', 'PROPN'), ('does', 'AUX'), ('not', 'PART'), ('rest', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('ONE', 'NUM'), ('act', 'NOUN'), ('of', 'ADP'), ('kindness', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('his', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('were', 'AUX'), ('humanity', 'NOUN'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('case', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('prompted', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('To', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('to', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('he', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('intimately', 'ADV'), ('known', 'ADJ'), ('they', 'PRON'), ('equally', 'ADV'), ('love', 'VERB'), ('and', 'CCONJ'), ('respect', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('my', 'PRON'), ('own', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('though', 'ADV'), ('lately', 'ADV'), ('acquired', 'VERB'), ('\n', 'SPACE'), ('is', 'AUX'), ('very', 'ADV'), ('considerable', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('highly', 'ADV'), ('do', 'AUX'), ('I', 'PRON'), ('value', 'VERB'), ('and', 'CCONJ'), ('esteem', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('if', 'SCONJ'), ('Marianne', 'PROPN'), ('can', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), ('with', 'ADP'), ('him', 'PRON'), ('I', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('as', 'ADV'), ('ready', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('yourself', 'PRON'), ('to', 'PART'), ('think', 'VERB'), ('our', 'PRON'), ('connection', 'NOUN'), ('the', 'DET'), ('greatest', 'ADJ'), ('blessing', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('us', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('What', 'DET'), ('answer', 'NOUN'), ('did', 'AUX'), ('you', 'PRON'), ('give', 'VERB'), ('himDid', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('allow', 'VERB'), ('him', 'PRON'), ('to', 'PART'), ('hope', 'VERB'), ('\n\n', 'SPACE'), ('Oh', 'INTJ'), ('my', 'PRON'), ('love', 'NOUN'), ('I', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('then', 'ADV'), ('talk', 'VERB'), ('of', 'ADP'), ('hope', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('to', 'ADP'), ('myself', 'PRON'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('might', 'AUX'), ('at', 'ADP'), ('that', 'DET'), ('moment', 'NOUN'), ('be', 'AUX'), ('dying', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('for', 'ADP'), ('hope', 'NOUN'), ('or', 'CCONJ'), ('encouragement', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('an', 'DET'), ('involuntary', 'ADJ'), ('confidence', 'NOUN'), ('an', 'DET'), ('irrepressible', 'ADJ'), ('effusion', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('a', 'DET'), ('soothing', 'VERB'), ('friendnot', 'NOUN'), ('an', 'DET'), ('application', 'NOUN'), ('to', 'ADP'), ('a', 'DET'), ('parent', 'NOUN'), ('\n', 'SPACE'), ('Yet', 'CCONJ'), ('after', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('I', 'PRON'), ('DID', 'AUX'), ('say', 'VERB'), ('for', 'ADP'), ('at', 'ADP'), ('first', 'ADV'), ('I', 'PRON'), ('was', 'AUX'), ('quite', 'ADV'), ('\n', 'SPACE'), ('overcomethat', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('lived', 'VERB'), ('as', 'SCONJ'), ('I', 'PRON'), ('trusted', 'VERB'), ('she', 'PRON'), ('might', 'AUX'), ('\n', 'SPACE'), ('my', 'PRON'), ('greatest', 'ADJ'), ('happiness', 'NOUN'), ('would', 'AUX'), ('lie', 'VERB'), ('in', 'ADP'), ('promoting', 'VERB'), ('their', 'PRON'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('since', 'SCONJ'), ('our', 'PRON'), ('arrival', 'NOUN'), ('since', 'SCONJ'), ('our', 'PRON'), ('delightful', 'ADJ'), ('security', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('repeated', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('him', 'PRON'), ('more', 'ADV'), ('fully', 'ADV'), ('have', 'AUX'), ('given', 'VERB'), ('him', 'PRON'), ('every', 'DET'), ('\n', 'SPACE'), ('encouragement', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('power', 'NOUN'), (' ', 'SPACE'), ('Time', 'PROPN'), ('a', 'DET'), ('very', 'ADV'), ('little', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('tell', 'VERB'), ('him', 'PRON'), ('will', 'AUX'), ('do', 'VERB'), ('everythingMariannes', 'PROPN'), ('heart', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('wasted', 'VERB'), ('for', 'ADP'), ('ever', 'ADV'), ('on', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('man', 'NOUN'), ('as', 'ADP'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('His', 'PRON'), ('own', 'ADJ'), ('merits', 'NOUN'), ('must', 'AUX'), ('soon', 'ADV'), ('secure', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('To', 'PART'), ('judge', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('spirits', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('you', 'PRON'), ('have', 'AUX'), ('not', 'PART'), ('yet', 'ADV'), ('made', 'VERB'), ('him', 'PRON'), ('equally', 'ADV'), ('sanguine', 'ADJ'), ('\n\n', 'SPACE'), ('NoHe', 'PROPN'), ('thinks', 'VERB'), ('Mariannes', 'PROPN'), ('affection', 'NOUN'), ('too', 'ADV'), ('deeply', 'ADV'), ('\n', 'SPACE'), ('rooted', 'VERB'), ('for', 'ADP'), ('any', 'DET'), ('change', 'NOUN'), ('in', 'ADP'), ('it', 'PRON'), ('under', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('length', 'NOUN'), ('of', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('even', 'ADV'), ('supposing', 'VERB'), ('her', 'PRON'), ('heart', 'NOUN'), ('again', 'ADV'), ('free', 'ADJ'), ('is', 'AUX'), ('too', 'ADV'), ('diffident', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('himself', 'PRON'), ('to', 'PART'), ('believe', 'VERB'), ('that', 'SCONJ'), ('with', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('difference', 'NOUN'), ('of', 'ADP'), ('age', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('disposition', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('ever', 'ADV'), ('attach', 'VERB'), ('her', 'PRON'), (' ', 'SPACE'), ('There', 'ADV'), ('however', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('is', 'AUX'), ('quite', 'ADV'), ('mistaken', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('age', 'NOUN'), ('is', 'AUX'), ('only', 'ADV'), ('so', 'ADV'), ('much', 'ADJ'), ('beyond', 'ADP'), ('\n', 'SPACE'), ('hers', 'PRON'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('an', 'DET'), ('advantage', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('character', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('principles', 'NOUN'), ('fixedand', 'VERB'), ('his', 'PRON'), ('disposition', 'NOUN'), ('I', 'PRON'), ('am', 'AUX'), ('well', 'ADV'), ('convinced', 'ADJ'), ('\n', 'SPACE'), ('is', 'AUX'), ('exactly', 'ADV'), ('the', 'DET'), ('very', 'ADJ'), ('one', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('your', 'PRON'), ('sister', 'NOUN'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('his', 'PRON'), ('person', 'NOUN'), ('his', 'PRON'), ('manners', 'NOUN'), ('too', 'ADV'), ('are', 'AUX'), ('all', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('favour', 'NOUN'), ('\n', 'SPACE'), ('My', 'PRON'), ('partiality', 'NOUN'), ('does', 'AUX'), ('not', 'PART'), ('blind', 'VERB'), ('me', 'PRON'), ('he', 'PRON'), ('certainly', 'ADV'), ('is', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('so', 'ADV'), ('handsome', 'ADJ'), ('as', 'ADP'), ('Willoughbybut', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('there', 'PRON'), ('is', 'VERB'), ('something', 'PRON'), ('much', 'ADV'), ('more', 'ADV'), ('pleasing', 'ADJ'), ('in', 'ADP'), ('his', 'PRON'), ('countenance', 'NOUN'), ('\n', 'SPACE'), ('There', 'PRON'), ('was', 'VERB'), ('always', 'ADV'), ('a', 'DET'), ('somethingif', 'NOUN'), ('you', 'PRON'), ('rememberin', 'VERB'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('eyes', 'NOUN'), ('at', 'ADP'), ('times', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('like', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('NOT', 'PART'), ('remember', 'VERB'), ('itbut', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('waiting', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('assent', 'NOUN'), ('continued', 'VERB'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('his', 'PRON'), ('manners', 'NOUN'), ('the', 'DET'), ('Colonels', 'PROPN'), ('manners', 'NOUN'), ('are', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('\n', 'SPACE'), ('more', 'ADV'), ('pleasing', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('than', 'ADP'), ('Willoughbys', 'PROPN'), ('ever', 'ADV'), ('were', 'AUX'), ('but', 'CCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('of', 'ADP'), ('a', 'DET'), ('kind', 'NOUN'), ('I', 'PRON'), ('well', 'ADV'), ('know', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('more', 'ADV'), ('solidly', 'ADV'), ('attaching', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Their', 'PRON'), ('gentleness', 'NOUN'), ('their', 'PRON'), ('genuine', 'ADJ'), ('attention', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('manly', 'ADJ'), ('unstudied', 'ADJ'), ('simplicity', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('much', 'ADV'), ('more', 'ADJ'), ('accordant', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('real', 'ADJ'), ('disposition', 'NOUN'), ('than', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('livelinessoften', 'ADJ'), ('artificial', 'ADJ'), ('and', 'CCONJ'), ('often', 'ADV'), ('illtimed', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('very', 'ADV'), ('sure', 'ADJ'), ('myself', 'PRON'), ('that', 'PRON'), ('had', 'VERB'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('turned', 'VERB'), ('out', 'ADP'), ('as', 'ADV'), ('really', 'ADV'), ('amiable', 'ADJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('proved', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('contrary', 'ADJ'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('yet', 'ADV'), ('never', 'ADV'), ('have', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('HIM', 'PROPN'), ('as', 'SCONJ'), ('she', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('with', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('pausedHer', 'NUM'), ('daughter', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('quite', 'ADV'), ('agree', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('but', 'CCONJ'), ('her', 'PRON'), ('dissent', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('heard', 'VERB'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('gave', 'VERB'), ('no', 'DET'), ('offence', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('Delaford', 'PROPN'), ('she', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('within', 'ADP'), ('an', 'DET'), ('easy', 'ADJ'), ('distance', 'NOUN'), ('of', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('added', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('even', 'ADV'), ('if', 'SCONJ'), ('I', 'PRON'), ('remain', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('and', 'CCONJ'), ('in', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('probabilityfor', 'ADP'), ('I', 'PRON'), ('hear', 'VERB'), ('it', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('large', 'ADJ'), ('villageindeed', 'NOUN'), ('there', 'PRON'), ('\n', 'SPACE'), ('certainly', 'ADV'), ('MUST', 'AUX'), ('be', 'AUX'), ('some', 'DET'), ('small', 'ADJ'), ('house', 'NOUN'), ('or', 'CCONJ'), ('cottage', 'NOUN'), ('close', 'ADV'), ('by', 'ADP'), ('\n', 'SPACE'), ('that', 'PRON'), ('would', 'AUX'), ('suit', 'VERB'), ('us', 'PRON'), ('quite', 'ADV'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('our', 'PRON'), ('present', 'ADJ'), ('situation', 'NOUN'), ('\n\n', 'SPACE'), ('Poor', 'PROPN'), ('Elinorhere', 'PROPN'), ('was', 'AUX'), ('a', 'DET'), ('new', 'ADJ'), ('scheme', 'NOUN'), ('for', 'ADP'), ('getting', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('to', 'AUX'), ('Delafordbut', 'VERB'), ('her', 'PRON'), ('spirit', 'NOUN'), ('was', 'AUX'), ('stubborn', 'ADJ'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('fortune', 'NOUN'), ('toofor', 'NOUN'), ('at', 'ADP'), ('my', 'PRON'), ('time', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('you', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('everybody', 'PRON'), ('cares', 'VERB'), ('about', 'ADP'), ('THATand', 'PROPN'), ('though', 'SCONJ'), ('I', 'PRON'), ('neither', 'CCONJ'), ('know', 'VERB'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('desire', 'VERB'), ('to', 'PART'), ('know', 'VERB'), ('what', 'PRON'), ('it', 'PRON'), ('really', 'ADV'), ('is', 'AUX'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('a', 'DET'), ('good', 'ADJ'), ('one', 'NOUN'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('they', 'PRON'), ('were', 'AUX'), ('interrupted', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('entrance', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('third', 'ADJ'), ('person', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('withdrew', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('it', 'PRON'), ('all', 'PRON'), ('over', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('private', 'ADJ'), ('to', 'PART'), ('wish', 'VERB'), ('success', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('friend', 'NOUN'), ('and', 'CCONJ'), ('yet', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('wishing', 'VERB'), ('it', 'PRON'), ('to', 'PART'), ('feel', 'VERB'), ('a', 'DET'), ('pang', 'NOUN'), ('for', 'ADP'), ('Willoughby', 'PROPN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('46', 'NUM'), ('\n\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('illness', 'NOUN'), ('though', 'SCONJ'), ('weakening', 'VERB'), ('in', 'ADP'), ('its', 'PRON'), ('kind', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('been', 'AUX'), ('long', 'ADV'), ('enough', 'ADV'), ('to', 'PART'), ('make', 'VERB'), ('her', 'PRON'), ('recovery', 'NOUN'), ('slow', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('youth', 'NOUN'), ('natural', 'ADJ'), ('strength', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('mothers', 'NOUN'), ('presence', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('aid', 'NOUN'), ('it', 'PRON'), ('proceeded', 'VERB'), ('so', 'ADV'), ('smoothly', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('enable', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('remove', 'VERB'), ('\n', 'SPACE'), ('within', 'ADP'), ('four', 'NUM'), ('days', 'NOUN'), ('after', 'ADP'), ('the', 'DET'), ('arrival', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('into', 'ADP'), ('Mrs', 'PROPN'), ('Palmers', 'PROPN'), ('dressingroom', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('there', 'PRON'), ('at', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('\n', 'SPACE'), ('particular', 'ADJ'), ('request', 'NOUN'), ('for', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('impatient', 'ADJ'), ('to', 'PART'), ('pour', 'VERB'), ('forth', 'ADV'), ('\n', 'SPACE'), ('her', 'PRON'), ('thanks', 'NOUN'), ('to', 'ADP'), ('him', 'PRON'), ('for', 'ADP'), ('fetching', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('invited', 'VERB'), ('to', 'PART'), ('visit', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('emotion', 'NOUN'), ('on', 'ADP'), ('entering', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('in', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('altered', 'VERB'), ('\n', 'SPACE'), ('looks', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('receiving', 'VERB'), ('the', 'DET'), ('pale', 'ADJ'), ('hand', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('immediately', 'ADV'), ('\n', 'SPACE'), ('held', 'VERB'), ('out', 'ADP'), ('to', 'ADP'), ('him', 'PRON'), ('was', 'AUX'), ('such', 'ADJ'), ('as', 'ADP'), ('in', 'ADP'), ('Elinors', 'PROPN'), ('conjecture', 'VERB'), ('\n', 'SPACE'), ('must', 'AUX'), ('arise', 'VERB'), ('from', 'ADP'), ('something', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('his', 'PRON'), ('affection', 'NOUN'), ('for', 'ADP'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('its', 'PRON'), ('being', 'AUX'), ('known', 'VERB'), ('to', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('soon', 'ADV'), ('discovered', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('melancholy', 'ADJ'), ('eye', 'NOUN'), ('and', 'CCONJ'), ('varying', 'NOUN'), ('\n', 'SPACE'), ('complexion', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('looked', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('the', 'DET'), ('probable', 'ADJ'), ('\n', 'SPACE'), ('recurrence', 'NOUN'), ('of', 'ADP'), ('many', 'ADJ'), ('past', 'ADJ'), ('scenes', 'NOUN'), ('of', 'ADP'), ('misery', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('brought', 'VERB'), ('back', 'ADV'), ('by', 'ADP'), ('that', 'DET'), ('resemblance', 'NOUN'), ('between', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('Eliza', 'PROPN'), ('\n', 'SPACE'), ('already', 'ADV'), ('acknowledged', 'VERB'), ('and', 'CCONJ'), ('now', 'ADV'), ('strengthened', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('hollow', 'ADJ'), ('eye', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('sickly', 'ADJ'), ('skin', 'VERB'), ('the', 'DET'), ('posture', 'NOUN'), ('of', 'ADP'), ('reclining', 'VERB'), ('weakness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('warm', 'ADJ'), ('acknowledgment', 'NOUN'), ('of', 'ADP'), ('peculiar', 'ADJ'), ('obligation', 'NOUN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('not', 'PART'), ('less', 'ADV'), ('watchful', 'ADJ'), ('of', 'ADP'), ('what', 'PRON'), ('passed', 'VERB'), ('than', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('daughter', 'NOUN'), ('but', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('mind', 'NOUN'), ('very', 'ADV'), ('differently', 'ADV'), ('influenced', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('watching', 'VERB'), ('to', 'ADP'), ('very', 'ADV'), ('different', 'ADJ'), ('effect', 'NOUN'), ('\n', 'SPACE'), ('saw', 'VERB'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('Colonels', 'PROPN'), ('behaviour', 'NOUN'), ('but', 'CCONJ'), ('what', 'PRON'), ('arose', 'VERB'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('simple', 'ADJ'), ('and', 'CCONJ'), ('selfevident', 'NOUN'), ('sensations', 'NOUN'), ('while', 'SCONJ'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('actions', 'NOUN'), ('and', 'CCONJ'), ('words', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('she', 'PRON'), ('persuaded', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('something', 'PRON'), ('more', 'ADJ'), ('than', 'ADP'), ('gratitude', 'NOUN'), ('already', 'ADV'), ('dawned', 'VERB'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('another', 'DET'), ('day', 'NOUN'), ('or', 'CCONJ'), ('two', 'NUM'), ('Marianne', 'PROPN'), ('growing', 'VERB'), ('\n', 'SPACE'), ('visibly', 'ADV'), ('stronger', 'ADJ'), ('every', 'DET'), ('twelve', 'NUM'), ('hours', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('urged', 'VERB'), ('equally', 'ADV'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('her', 'PRON'), ('daughters', 'NOUN'), ('wishes', 'AUX'), ('\n', 'SPACE'), ('began', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('removing', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), (' ', 'SPACE'), ('On', 'ADP'), ('HER', 'PRON'), ('measures', 'NOUN'), ('\n', 'SPACE'), ('depended', 'VERB'), ('those', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('two', 'NUM'), ('friends', 'NOUN'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('could', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('quit', 'VERB'), ('Cleveland', 'PROPN'), ('during', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('stay', 'VERB'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('soon', 'ADV'), ('brought', 'VERB'), ('by', 'ADP'), ('their', 'PRON'), ('united', 'ADJ'), ('request', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('consider', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('abode', 'NOUN'), ('there', 'ADV'), ('as', 'SCONJ'), ('equally', 'ADV'), ('determinate', 'VERB'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('not', 'PART'), ('equally', 'ADV'), ('indispensable', 'ADJ'), (' ', 'SPACE'), ('At', 'ADP'), ('his', 'PRON'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('\n', 'SPACE'), ('united', 'ADJ'), ('request', 'NOUN'), ('in', 'ADP'), ('return', 'NOUN'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('prevailed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('to', 'PART'), ('accept', 'VERB'), ('the', 'DET'), ('use', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('carriage', 'NOUN'), ('on', 'ADP'), ('her', 'PRON'), ('journey', 'NOUN'), ('back', 'ADV'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('better', 'ADJ'), ('accommodation', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('sick', 'ADJ'), ('child', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('the', 'DET'), ('joint', 'ADJ'), ('invitation', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('whose', 'DET'), ('active', 'ADJ'), ('goodnature', 'NOUN'), ('made', 'VERB'), ('her', 'PRON'), ('friendly', 'ADJ'), ('and', 'CCONJ'), ('hospitable', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('other', 'ADJ'), ('people', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('herself', 'PRON'), ('engaged', 'VERB'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('redeem', 'VERB'), ('it', 'PRON'), ('by', 'ADP'), ('a', 'DET'), ('visit', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('day', 'NOUN'), ('of', 'ADP'), ('separation', 'NOUN'), ('and', 'CCONJ'), ('departure', 'NOUN'), ('arrived', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('after', 'ADP'), ('taking', 'VERB'), ('so', 'ADV'), ('particular', 'ADJ'), ('and', 'CCONJ'), ('lengthened', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('leave', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('one', 'NUM'), ('so', 'ADV'), ('earnestly', 'ADV'), ('grateful', 'ADJ'), ('so', 'ADV'), ('full', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('respect', 'NOUN'), ('and', 'CCONJ'), ('kind', 'NOUN'), ('wishes', 'NOUN'), ('as', 'SCONJ'), ('seemed', 'VERB'), ('due', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('a', 'DET'), ('secret', 'ADJ'), ('acknowledgment', 'NOUN'), ('of', 'ADP'), ('past', 'ADJ'), ('inattention', 'NOUN'), ('and', 'CCONJ'), ('bidding', 'NOUN'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('farewell', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('cordiality', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('carefully', 'ADV'), ('assisted', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('anxious', 'ADJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('engross', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('half', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('then', 'ADV'), ('followed', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('left', 'VERB'), ('by', 'ADP'), ('themselves', 'PRON'), ('to', 'PART'), ('talk', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('travellers', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('feel', 'VERB'), ('their', 'PRON'), ('own', 'ADJ'), ('dullness', 'NOUN'), ('till', 'SCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('was', 'AUX'), ('summoned', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('chaise', 'NOUN'), ('to', 'PART'), ('take', 'VERB'), ('comfort', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('gossip', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('maid', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('loss', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('two', 'NUM'), ('young', 'ADJ'), ('companions', 'NOUN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('afterwards', 'ADV'), ('took', 'VERB'), ('his', 'PRON'), ('solitary', 'ADJ'), ('way', 'NOUN'), ('to', 'ADP'), ('Delaford', 'PROPN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('two', 'NUM'), ('days', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('road', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('bore', 'VERB'), ('her', 'PRON'), ('journey', 'NOUN'), ('on', 'ADP'), ('both', 'CCONJ'), ('without', 'ADP'), ('essential', 'ADJ'), ('fatigue', 'NOUN'), ('\n', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('the', 'DET'), ('most', 'ADV'), ('zealous', 'ADJ'), ('affection', 'NOUN'), ('the', 'DET'), ('most', 'ADV'), ('\n', 'SPACE'), ('solicitous', 'ADJ'), ('care', 'NOUN'), ('could', 'AUX'), ('do', 'VERB'), ('to', 'PART'), ('render', 'VERB'), ('her', 'PRON'), ('comfortable', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('office', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('watchful', 'ADJ'), ('companion', 'NOUN'), ('and', 'CCONJ'), ('each', 'PRON'), ('\n', 'SPACE'), ('found', 'VERB'), ('their', 'PRON'), ('reward', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('bodily', 'ADJ'), ('ease', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('calmness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('spirits', 'NOUN'), (' ', 'SPACE'), ('To', 'ADP'), ('Elinor', 'PROPN'), ('the', 'DET'), ('observation', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('was', 'AUX'), ('particularly', 'ADV'), ('grateful', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('who', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('her', 'PRON'), ('week', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('week', 'NOUN'), ('so', 'ADV'), ('constantly', 'ADV'), ('suffering', 'VERB'), ('oppressed', 'VERB'), ('by', 'ADP'), ('anguish', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('heart', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('neither', 'DET'), ('courage', 'NOUN'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('fortitude', 'VERB'), ('to', 'PART'), ('conceal', 'VERB'), ('now', 'ADV'), ('saw', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('joy', 'NOUN'), ('which', 'PRON'), ('no', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('could', 'AUX'), ('equally', 'ADV'), ('share', 'VERB'), ('an', 'DET'), ('apparent', 'ADJ'), ('composure', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('being', 'AUX'), ('the', 'DET'), ('result', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('trusted', 'VERB'), ('of', 'ADP'), ('serious', 'ADJ'), ('reflection', 'NOUN'), ('\n', 'SPACE'), ('must', 'AUX'), ('eventually', 'ADV'), ('lead', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('contentment', 'NOUN'), ('and', 'CCONJ'), ('cheerfulness', 'NOUN'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('they', 'PRON'), ('approached', 'VERB'), ('Barton', 'PROPN'), ('indeed', 'ADV'), ('and', 'CCONJ'), ('entered', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('scenes', 'NOUN'), ('of', 'ADP'), ('which', 'PRON'), ('every', 'DET'), ('field', 'NOUN'), ('and', 'CCONJ'), ('every', 'DET'), ('tree', 'NOUN'), ('brought', 'VERB'), ('\n', 'SPACE'), ('some', 'PRON'), ('peculiar', 'ADJ'), ('some', 'DET'), ('painful', 'ADJ'), ('recollection', 'NOUN'), ('she', 'PRON'), ('grew', 'VERB'), ('silent', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('thoughtful', 'ADJ'), ('and', 'CCONJ'), ('turning', 'VERB'), ('away', 'ADV'), ('her', 'PRON'), ('face', 'NOUN'), ('from', 'ADP'), ('their', 'PRON'), ('notice', 'NOUN'), ('\n', 'SPACE'), ('sat', 'VERB'), ('earnestly', 'ADV'), ('gazing', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('here', 'ADV'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('neither', 'CCONJ'), ('wonder', 'VERB'), ('nor', 'CCONJ'), ('blame', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('assisted', 'VERB'), ('Marianne', 'PROPN'), ('from', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('that', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('crying', 'VERB'), ('she', 'PRON'), ('saw', 'VERB'), ('only', 'ADV'), ('an', 'DET'), ('emotion', 'NOUN'), ('too', 'ADV'), ('natural', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('itself', 'PRON'), ('to', 'PART'), ('raise', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('less', 'ADV'), ('tender', 'ADJ'), ('than', 'ADP'), ('pity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('its', 'PRON'), ('unobtrusiveness', 'NOUN'), ('entitled', 'VERB'), ('to', 'PART'), ('praise', 'VERB'), (' ', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('whole', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('subsequent', 'ADJ'), ('manner', 'NOUN'), ('she', 'PRON'), ('traced', 'VERB'), ('the', 'DET'), ('direction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('mind', 'NOUN'), ('awakened', 'VERB'), ('to', 'ADP'), ('reasonable', 'ADJ'), ('exertion', 'NOUN'), ('for', 'ADP'), ('no', 'PRON'), ('sooner', 'ADV'), ('\n', 'SPACE'), ('had', 'AUX'), ('they', 'PRON'), ('entered', 'VERB'), ('their', 'PRON'), ('common', 'ADJ'), ('sittingroom', 'NOUN'), ('than', 'SCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('turned', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('around', 'ADP'), ('it', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('resolute', 'ADJ'), ('firmness', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('determined', 'VERB'), ('at', 'ADP'), ('once', 'ADV'), ('to', 'PART'), ('accustom', 'VERB'), ('herself', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('sight', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('object', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('the', 'DET'), ('remembrance', 'NOUN'), ('of', 'ADP'), ('Willoughby', 'PROPN'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('connectedShe', 'PRON'), ('said', 'VERB'), ('little', 'ADJ'), ('but', 'CCONJ'), ('every', 'PRON'), ('sentence', 'NOUN'), ('aimed', 'VERB'), ('\n', 'SPACE'), ('at', 'ADP'), ('cheerfulness', 'NOUN'), ('and', 'CCONJ'), ('though', 'SCONJ'), ('a', 'DET'), ('sigh', 'NOUN'), ('sometimes', 'ADV'), ('escaped', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('it', 'PRON'), ('never', 'ADV'), ('passed', 'VERB'), ('away', 'ADP'), ('without', 'ADP'), ('the', 'DET'), ('atonement', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('smile', 'NOUN'), ('\n', 'SPACE'), ('After', 'ADP'), ('dinner', 'NOUN'), ('she', 'PRON'), ('would', 'AUX'), ('try', 'VERB'), ('her', 'PRON'), ('pianoforte', 'NOUN'), ('She', 'PRON'), ('went', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('music', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('her', 'PRON'), ('eye', 'NOUN'), ('first', 'ADV'), ('rested', 'VERB'), ('was', 'AUX'), ('an', 'DET'), ('opera', 'NOUN'), ('\n', 'SPACE'), ('procured', 'VERB'), ('for', 'ADP'), ('her', 'PRON'), ('by', 'ADP'), ('Willoughby', 'PROPN'), ('containing', 'VERB'), ('some', 'PRON'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('favourite', 'ADJ'), ('duets', 'NOUN'), ('and', 'CCONJ'), ('bearing', 'VERB'), ('on', 'ADP'), ('its', 'PRON'), ('outward', 'ADJ'), ('leaf', 'NOUN'), ('her', 'PRON'), ('own', 'ADJ'), ('name', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('handwritingThat', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('doShe', 'VERB'), ('shook', 'VERB'), ('her', 'PRON'), ('head', 'NOUN'), ('\n', 'SPACE'), ('put', 'VERB'), ('the', 'DET'), ('music', 'NOUN'), ('aside', 'ADV'), ('and', 'CCONJ'), ('after', 'ADP'), ('running', 'VERB'), ('over', 'ADP'), ('the', 'DET'), ('keys', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('a', 'DET'), ('minute', 'NOUN'), ('complained', 'VERB'), ('of', 'ADP'), ('feebleness', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('fingers', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('closed', 'VERB'), ('the', 'DET'), ('instrument', 'NOUN'), ('again', 'ADV'), ('declaring', 'VERB'), ('however', 'ADV'), ('with', 'ADP'), ('firmness', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('did', 'VERB'), ('so', 'SCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('in', 'ADP'), ('future', 'ADJ'), ('practice', 'NOUN'), ('much', 'ADV'), ('\n\n', 'SPACE'), ('The', 'DET'), ('next', 'ADJ'), ('morning', 'NOUN'), ('produced', 'VERB'), ('no', 'DET'), ('abatement', 'NOUN'), ('in', 'ADP'), ('these', 'DET'), ('\n', 'SPACE'), ('happy', 'ADJ'), ('symptoms', 'NOUN'), (' ', 'SPACE'), ('On', 'ADP'), ('the', 'DET'), ('contrary', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('body', 'NOUN'), ('\n', 'SPACE'), ('alike', 'ADV'), ('strengthened', 'VERB'), ('by', 'ADP'), ('rest', 'NOUN'), ('she', 'PRON'), ('looked', 'VERB'), ('and', 'CCONJ'), ('spoke', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('more', 'ADV'), ('genuine', 'ADJ'), ('spirit', 'NOUN'), ('anticipating', 'VERB'), ('the', 'DET'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('Margarets', 'NOUN'), ('return', 'VERB'), ('and', 'CCONJ'), ('talking', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('dear', 'ADJ'), ('family', 'NOUN'), ('party', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('would', 'AUX'), ('then', 'ADV'), ('be', 'AUX'), ('restored', 'VERB'), ('of', 'ADP'), ('their', 'PRON'), ('mutual', 'ADJ'), ('pursuits', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('cheerful', 'ADJ'), ('society', 'NOUN'), ('as', 'SCONJ'), ('the', 'DET'), ('only', 'ADJ'), ('happiness', 'NOUN'), ('worth', 'ADJ'), ('a', 'DET'), ('wish', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('weather', 'NOUN'), ('is', 'AUX'), ('settled', 'VERB'), ('and', 'CCONJ'), ('I', 'PRON'), ('have', 'AUX'), ('recovered', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('strength', 'NOUN'), ('said', 'VERB'), ('she', 'PRON'), ('we', 'PRON'), ('will', 'AUX'), ('take', 'VERB'), ('long', 'ADJ'), ('walks', 'NOUN'), ('together', 'ADV'), ('\n', 'SPACE'), ('every', 'DET'), ('day', 'NOUN'), (' ', 'SPACE'), ('We', 'PRON'), ('will', 'AUX'), ('walk', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('farm', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('edge', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('down', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('see', 'VERB'), ('how', 'SCONJ'), ('the', 'DET'), ('children', 'NOUN'), ('go', 'VERB'), ('on', 'ADP'), ('we', 'PRON'), ('will', 'AUX'), ('walk', 'VERB'), ('to', 'ADP'), ('Sir', 'PROPN'), ('Johns', 'PROPN'), ('\n', 'SPACE'), ('new', 'ADJ'), ('plantations', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('Cross', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('Abbeyland', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('we', 'PRON'), ('will', 'AUX'), ('often', 'ADV'), ('go', 'VERB'), ('the', 'DET'), ('old', 'ADJ'), ('ruins', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Priory', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('try', 'VERB'), ('to', 'PART'), ('trace', 'VERB'), ('its', 'PRON'), ('foundations', 'NOUN'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('told', 'VERB'), ('\n', 'SPACE'), ('they', 'PRON'), ('once', 'ADV'), ('reached', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('we', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('happy', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('summer', 'NOUN'), ('will', 'AUX'), ('pass', 'VERB'), ('happily', 'ADV'), ('away', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('mean', 'VERB'), ('never', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('later', 'ADV'), ('in', 'ADP'), ('rising', 'VERB'), ('than', 'ADP'), ('six', 'NUM'), ('and', 'CCONJ'), ('from', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('till', 'SCONJ'), ('dinner', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('divide', 'VERB'), ('every', 'DET'), ('moment', 'NOUN'), ('between', 'ADP'), ('music', 'NOUN'), ('and', 'CCONJ'), ('reading', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('formed', 'VERB'), ('my', 'PRON'), ('plan', 'NOUN'), ('and', 'CCONJ'), ('am', 'AUX'), ('determined', 'ADJ'), ('to', 'PART'), ('enter', 'VERB'), ('on', 'ADP'), ('a', 'DET'), ('course', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('serious', 'ADJ'), ('study', 'NOUN'), (' ', 'SPACE'), ('Our', 'PRON'), ('own', 'ADJ'), ('library', 'NOUN'), ('is', 'AUX'), ('too', 'ADV'), ('well', 'ADV'), ('known', 'ADJ'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('resorted', 'VERB'), ('to', 'ADP'), ('for', 'ADP'), ('any', 'DET'), ('thing', 'NOUN'), ('beyond', 'ADP'), ('mere', 'ADJ'), ('amusement', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('there', 'PRON'), ('are', 'VERB'), ('many', 'ADJ'), ('works', 'NOUN'), ('well', 'ADV'), ('worth', 'ADJ'), ('reading', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('there', 'PRON'), ('are', 'VERB'), ('others', 'NOUN'), ('of', 'ADP'), ('more', 'ADJ'), ('modern', 'ADJ'), ('production', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('know', 'VERB'), ('I', 'PRON'), ('can', 'AUX'), ('borrow', 'VERB'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), (' ', 'SPACE'), ('By', 'ADP'), ('reading', 'VERB'), ('only', 'ADV'), ('six', 'NUM'), ('\n', 'SPACE'), ('hours', 'NOUN'), ('aday', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('gain', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('course', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('twelvemonth', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('of', 'ADP'), ('instruction', 'NOUN'), ('which', 'PRON'), ('I', 'PRON'), ('now', 'ADV'), ('feel', 'VERB'), ('myself', 'PRON'), ('to', 'PART'), ('want', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('honoured', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('plan', 'NOUN'), ('which', 'PRON'), ('originated', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('nobly', 'ADV'), ('as', 'SCONJ'), ('this', 'PRON'), ('though', 'SCONJ'), ('smiling', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('eager', 'ADJ'), ('\n', 'SPACE'), ('fancy', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('leading', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('extreme', 'NOUN'), ('of', 'ADP'), ('languid', 'ADJ'), ('\n', 'SPACE'), ('indolence', 'NOUN'), ('and', 'CCONJ'), ('selfish', 'ADJ'), ('repining', 'NOUN'), ('now', 'ADV'), ('at', 'ADP'), ('work', 'NOUN'), ('in', 'ADP'), ('introducing', 'VERB'), ('\n', 'SPACE'), ('excess', 'NOUN'), ('into', 'ADP'), ('a', 'DET'), ('scheme', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('rational', 'ADJ'), ('employment', 'NOUN'), ('and', 'CCONJ'), ('virtuous', 'ADJ'), ('\n', 'SPACE'), ('selfcontrol', 'NOUN'), ('Her', 'PRON'), ('smile', 'NOUN'), ('however', 'ADV'), ('changed', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('sigh', 'NOUN'), ('when', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('remembered', 'VERB'), ('that', 'DET'), ('promise', 'NOUN'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('was', 'AUX'), ('yet', 'ADV'), ('unfulfilled', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('feared', 'VERB'), ('she', 'PRON'), ('had', 'VERB'), ('that', 'PRON'), ('to', 'PART'), ('communicate', 'VERB'), ('which', 'PRON'), ('might', 'AUX'), ('again', 'ADV'), ('\n', 'SPACE'), ('unsettle', 'VERB'), ('the', 'DET'), ('mind', 'NOUN'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('ruin', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('for', 'ADP'), ('a', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('this', 'DET'), ('fair', 'ADJ'), ('prospect', 'NOUN'), ('of', 'ADP'), ('busy', 'ADJ'), ('tranquillity', 'NOUN'), (' ', 'SPACE'), ('Willing', 'PROPN'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('delay', 'VERB'), ('the', 'DET'), ('evil', 'ADJ'), ('hour', 'NOUN'), ('she', 'PRON'), ('resolved', 'VERB'), ('to', 'PART'), ('wait', 'VERB'), ('till', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('sisters', 'NOUN'), ('health', 'NOUN'), ('were', 'AUX'), ('more', 'ADV'), ('secure', 'ADJ'), ('before', 'SCONJ'), ('she', 'PRON'), ('appointed', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('resolution', 'NOUN'), ('was', 'AUX'), ('made', 'VERB'), ('only', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('broken', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('been', 'AUX'), ('two', 'NUM'), ('or', 'CCONJ'), ('three', 'NUM'), ('days', 'NOUN'), ('at', 'ADP'), ('home', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('the', 'DET'), ('weather', 'NOUN'), ('was', 'AUX'), ('fine', 'ADJ'), ('enough', 'ADV'), ('for', 'ADP'), ('an', 'DET'), ('invalid', 'ADJ'), ('like', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('venture', 'VERB'), ('out', 'ADP'), (' ', 'SPACE'), ('But', 'CCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('a', 'DET'), ('soft', 'ADJ'), ('genial', 'ADJ'), ('morning', 'NOUN'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('such', 'ADJ'), ('as', 'SCONJ'), ('might', 'AUX'), ('tempt', 'VERB'), ('the', 'DET'), ('daughters', 'NOUN'), ('wishes', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('confidence', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('leaning', 'VERB'), ('on', 'ADP'), ('Elinors', 'NOUN'), ('arm', 'VERB'), ('\n', 'SPACE'), ('was', 'AUX'), ('authorised', 'VERB'), ('to', 'PART'), ('walk', 'VERB'), ('as', 'ADV'), ('long', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('without', 'ADP'), ('fatigue', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('lane', 'NOUN'), ('before', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('sisters', 'NOUN'), ('set', 'VERB'), ('out', 'ADP'), ('at', 'ADP'), ('a', 'DET'), ('pace', 'NOUN'), ('slow', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('feebleness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('in', 'ADP'), ('an', 'DET'), ('exercise', 'NOUN'), ('hitherto', 'VERB'), ('untried', 'ADJ'), ('since', 'SCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('illness', 'NOUN'), ('requiredand', 'NOUN'), ('they', 'PRON'), ('had', 'AUX'), ('advanced', 'VERB'), ('only', 'ADV'), ('so', 'ADV'), ('far', 'ADV'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('admit', 'VERB'), ('a', 'DET'), ('full', 'ADJ'), ('view', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('hill', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('important', 'ADJ'), ('hill', 'NOUN'), ('behind', 'ADP'), ('when', 'SCONJ'), ('pausing', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('turned', 'VERB'), ('towards', 'ADP'), ('it', 'PRON'), ('Marianne', 'PROPN'), ('calmly', 'ADV'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('There', 'ADV'), ('exactly', 'ADV'), ('therepointing', 'VERB'), ('with', 'ADP'), ('one', 'NUM'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('that', 'DET'), ('projecting', 'VERB'), ('moundthere', 'NOUN'), ('I', 'PRON'), ('fell', 'VERB'), ('and', 'CCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('first', 'ADV'), ('saw', 'VERB'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('voice', 'NOUN'), ('sunk', 'VERB'), ('with', 'ADP'), ('the', 'DET'), ('word', 'NOUN'), ('but', 'CCONJ'), ('presently', 'ADV'), ('reviving', 'VERB'), ('she', 'PRON'), ('added', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('thankful', 'ADJ'), ('to', 'PART'), ('find', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('look', 'VERB'), ('with', 'ADP'), ('so', 'ADV'), ('little', 'ADJ'), ('pain', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('spotshall', 'NOUN'), ('we', 'PRON'), ('ever', 'ADV'), ('talk', 'VERB'), ('on', 'ADP'), ('that', 'DET'), ('subject', 'NOUN'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('hesitatingly', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('saidOr', 'NOUN'), ('will', 'AUX'), ('it', 'PRON'), ('be', 'AUX'), ('wrongI', 'ADJ'), ('can', 'AUX'), ('talk', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('now', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('as', 'SCONJ'), ('I', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('tenderly', 'ADV'), ('invited', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('open', 'ADJ'), ('\n\n', 'SPACE'), ('As', 'SCONJ'), ('for', 'ADP'), ('regret', 'NOUN'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('I', 'PRON'), ('have', 'AUX'), ('done', 'VERB'), ('with', 'ADP'), ('that', 'PRON'), ('\n', 'SPACE'), ('as', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('HE', 'PRON'), ('is', 'AUX'), ('concerned', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('mean', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('my', 'PRON'), ('feelings', 'NOUN'), ('have', 'AUX'), ('been', 'AUX'), ('for', 'ADP'), ('him', 'PRON'), ('but', 'CCONJ'), ('what', 'PRON'), ('they', 'PRON'), ('\n', 'SPACE'), ('are', 'AUX'), ('NOWAt', 'NOUN'), ('present', 'ADJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('satisfied', 'ADJ'), ('on', 'ADP'), ('one', 'NUM'), ('point', 'NOUN'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('ALWAYS', 'ADV'), ('\n', 'SPACE'), ('acting', 'VERB'), ('a', 'DET'), ('part', 'NOUN'), ('not', 'PART'), ('ALWAYS', 'ADV'), ('deceiving', 'VERB'), ('mebut', 'ADV'), ('above', 'ADP'), ('all', 'PRON'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('assured', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('never', 'ADV'), ('was', 'AUX'), ('so', 'ADV'), ('VERY', 'ADV'), ('wicked', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('my', 'PRON'), ('fears', 'NOUN'), ('have', 'AUX'), ('sometimes', 'ADV'), ('fancied', 'VERB'), ('him', 'PRON'), ('since', 'SCONJ'), ('the', 'DET'), ('story', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('that', 'DET'), ('unfortunate', 'ADJ'), ('girl', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('stopt', 'VERB'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('joyfully', 'ADV'), ('treasured', 'VERB'), ('her', 'PRON'), ('words', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('answered', 'VERB'), ('\n\n', 'SPACE'), ('If', 'SCONJ'), ('you', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('assured', 'VERB'), ('of', 'ADP'), ('that', 'PRON'), ('you', 'PRON'), ('think', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('be', 'AUX'), ('easy', 'ADJ'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('My', 'PRON'), ('peace', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('is', 'AUX'), ('doubly', 'ADV'), ('involved', 'ADJ'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('not', 'PART'), ('only', 'ADV'), ('is', 'AUX'), ('it', 'PRON'), ('horrible', 'ADJ'), ('to', 'PART'), ('suspect', 'VERB'), ('a', 'DET'), ('person', 'NOUN'), ('who', 'PRON'), ('has', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('what', 'PRON'), ('HE', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('to', 'ADP'), ('ME', 'PRON'), ('of', 'ADP'), ('such', 'ADJ'), ('designsbut', 'NOUN'), ('what', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('it', 'PRON'), ('make', 'VERB'), ('me', 'PRON'), ('appear', 'VERB'), ('to', 'PART'), ('myselfWhat', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('situation', 'NOUN'), ('like', 'ADP'), ('mine', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('a', 'DET'), ('most', 'ADV'), ('shamefully', 'ADV'), ('unguarded', 'VERB'), ('affection', 'NOUN'), ('could', 'AUX'), ('expose', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('to', 'ADP'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('then', 'ADV'), ('asked', 'VERB'), ('her', 'PRON'), ('sister', 'NOUN'), ('would', 'AUX'), ('you', 'PRON'), ('account', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('would', 'AUX'), ('suppose', 'VERB'), ('himOh', 'ADV'), ('how', 'SCONJ'), ('gladly', 'ADV'), ('would', 'AUX'), ('I', 'PRON'), ('suppose', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('only', 'ADV'), ('fickle', 'ADJ'), ('very', 'ADV'), ('very', 'ADV'), ('fickle', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('said', 'VERB'), ('no', 'PRON'), ('more', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('debating', 'VERB'), ('within', 'ADP'), ('herself', 'PRON'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('eligibility', 'NOUN'), ('of', 'ADP'), ('beginning', 'VERB'), ('her', 'PRON'), ('story', 'NOUN'), ('directly', 'ADV'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('postponing', 'VERB'), ('it', 'PRON'), ('till', 'SCONJ'), ('Marianne', 'PROPN'), ('were', 'AUX'), ('in', 'ADP'), ('stronger', 'ADJ'), ('health', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('they', 'PRON'), ('crept', 'VERB'), ('on', 'ADP'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('minutes', 'NOUN'), ('in', 'ADP'), ('silence', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('am', 'AUX'), ('not', 'PART'), ('wishing', 'VERB'), ('him', 'PRON'), ('too', 'ADV'), ('much', 'ADV'), ('good', 'ADJ'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('last', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('sigh', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('wish', 'VERB'), ('his', 'PRON'), ('secret', 'ADJ'), ('reflections', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('no', 'PRON'), ('more', 'ADV'), ('unpleasant', 'ADJ'), ('than', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('will', 'AUX'), ('suffer', 'VERB'), ('\n', 'SPACE'), ('enough', 'ADJ'), ('in', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('compare', 'VERB'), ('your', 'PRON'), ('conduct', 'NOUN'), ('with', 'ADP'), ('his', 'PRON'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('I', 'PRON'), ('compare', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('what', 'PRON'), ('it', 'PRON'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('I', 'PRON'), ('compare', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('yours', 'NOUN'), ('\n\n', 'SPACE'), ('Our', 'PRON'), ('situations', 'NOUN'), ('have', 'AUX'), ('borne', 'VERB'), ('little', 'ADJ'), ('resemblance', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('have', 'AUX'), ('borne', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('our', 'PRON'), ('conductDo', 'ADJ'), ('not', 'PART'), ('\n', 'SPACE'), ('my', 'PRON'), ('dearest', 'ADJ'), ('Elinor', 'PROPN'), ('let', 'VERB'), ('your', 'PRON'), ('kindness', 'NOUN'), ('defend', 'VERB'), ('what', 'PRON'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('your', 'PRON'), ('judgment', 'NOUN'), ('must', 'AUX'), ('censure', 'VERB'), (' ', 'SPACE'), ('My', 'PRON'), ('illness', 'NOUN'), ('has', 'AUX'), ('made', 'VERB'), ('me', 'PRON'), ('think', 'VERB'), ('\n', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('given', 'VERB'), ('me', 'PRON'), ('leisure', 'NOUN'), ('and', 'CCONJ'), ('calmness', 'NOUN'), ('for', 'ADP'), ('serious', 'ADJ'), ('recollection', 'NOUN'), ('\n', 'SPACE'), ('Long', 'ADV'), ('before', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('enough', 'ADV'), ('recovered', 'VERB'), ('to', 'PART'), ('talk', 'VERB'), ('I', 'PRON'), ('was', 'AUX'), ('perfectly', 'ADV'), ('\n', 'SPACE'), ('able', 'ADJ'), ('to', 'PART'), ('reflect', 'VERB'), (' ', 'SPACE'), ('I', 'PRON'), ('considered', 'VERB'), ('the', 'DET'), ('past', 'NOUN'), ('I', 'PRON'), ('saw', 'VERB'), ('in', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('behaviour', 'NOUN'), ('since', 'SCONJ'), ('the', 'DET'), ('beginning', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), ('last', 'ADJ'), ('autumn', 'NOUN'), ('nothing', 'PRON'), ('but', 'CCONJ'), ('a', 'DET'), ('series', 'NOUN'), ('of', 'ADP'), ('imprudence', 'NOUN'), ('\n', 'SPACE'), ('towards', 'ADP'), ('myself', 'PRON'), ('and', 'CCONJ'), ('want', 'VERB'), ('of', 'ADP'), ('kindness', 'NOUN'), ('to', 'ADP'), ('others', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('saw', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('own', 'ADJ'), ('feelings', 'NOUN'), ('had', 'AUX'), ('prepared', 'VERB'), ('my', 'PRON'), ('sufferings', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('my', 'PRON'), ('want', 'NOUN'), ('of', 'ADP'), ('fortitude', 'NOUN'), ('under', 'ADP'), ('them', 'PRON'), ('had', 'AUX'), ('almost', 'ADV'), ('led', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('grave', 'NOUN'), (' ', 'SPACE'), ('My', 'PRON'), ('illness', 'NOUN'), ('I', 'PRON'), ('well', 'ADV'), ('knew', 'VERB'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('brought', 'VERB'), ('on', 'ADP'), ('by', 'ADP'), ('myself', 'PRON'), ('by', 'ADP'), ('such', 'ADJ'), ('negligence', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('health', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('felt', 'VERB'), ('even', 'ADV'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('wrong', 'ADJ'), ('\n', 'SPACE'), ('Had', 'AUX'), ('I', 'PRON'), ('diedit', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('selfdestruction', 'NOUN'), ('I', 'PRON'), ('\n', 'SPACE'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('my', 'PRON'), ('danger', 'NOUN'), ('till', 'SCONJ'), ('the', 'DET'), ('danger', 'NOUN'), ('was', 'AUX'), ('removed', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('with', 'ADP'), ('such', 'ADJ'), ('feelings', 'NOUN'), ('as', 'SCONJ'), ('these', 'DET'), ('reflections', 'NOUN'), ('gave', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('wonder', 'VERB'), ('at', 'ADP'), ('my', 'PRON'), ('recoverywonder', 'NOUN'), ('that', 'SCONJ'), ('the', 'DET'), ('very', 'ADJ'), ('eagerness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('desire', 'NOUN'), ('to', 'PART'), ('live', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('time', 'NOUN'), ('for', 'ADP'), ('atonement', 'NOUN'), ('to', 'ADP'), ('my', 'PRON'), ('God', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('you', 'PRON'), ('all', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('kill', 'VERB'), ('me', 'PRON'), ('at', 'ADP'), ('once', 'ADV'), (' ', 'SPACE'), ('Had', 'AUX'), ('I', 'PRON'), ('died', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('what', 'PRON'), ('peculiar', 'ADJ'), ('misery', 'NOUN'), ('should', 'AUX'), ('I', 'PRON'), ('have', 'AUX'), ('left', 'VERB'), ('you', 'PRON'), ('my', 'PRON'), ('nurse', 'NOUN'), ('\n', 'SPACE'), ('my', 'PRON'), ('friend', 'NOUN'), ('my', 'PRON'), ('sisterYou', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('fretful', 'ADJ'), ('\n', 'SPACE'), ('selfishness', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('latter', 'ADJ'), ('days', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('known', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('\n', 'SPACE'), ('murmurings', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('heartHow', 'PROPN'), ('should', 'AUX'), ('I', 'PRON'), ('have', 'AUX'), ('lived', 'VERB'), ('in', 'ADP'), ('YOUR', 'PRON'), ('\n', 'SPACE'), ('remembranceMy', 'PROPN'), ('mother', 'NOUN'), ('too', 'ADV'), ('How', 'SCONJ'), ('could', 'AUX'), ('you', 'PRON'), ('have', 'AUX'), ('consoled', 'VERB'), ('\n', 'SPACE'), ('herI', 'PROPN'), ('can', 'AUX'), ('not', 'PART'), ('express', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('abhorrence', 'NOUN'), ('of', 'ADP'), ('myself', 'PRON'), ('\n', 'SPACE'), ('Whenever', 'SCONJ'), ('I', 'PRON'), ('looked', 'VERB'), ('towards', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('I', 'PRON'), ('saw', 'VERB'), ('some', 'DET'), ('duty', 'NOUN'), ('neglected', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('some', 'DET'), ('failing', 'VERB'), ('indulged', 'VERB'), (' ', 'SPACE'), ('Every', 'DET'), ('body', 'NOUN'), ('seemed', 'VERB'), ('injured', 'VERB'), ('by', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('The', 'DET'), ('kindness', 'NOUN'), ('the', 'DET'), ('unceasing', 'ADJ'), ('kindness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('repaid', 'VERB'), ('with', 'ADP'), ('ungrateful', 'ADJ'), ('contempt', 'NOUN'), (' ', 'SPACE'), ('To', 'ADP'), ('the', 'DET'), ('Middletons', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('Palmers', 'PROPN'), ('the', 'DET'), ('Steeles', 'PROPN'), ('to', 'ADP'), ('every', 'DET'), ('common', 'ADJ'), ('acquaintance', 'NOUN'), ('even', 'ADV'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('insolent', 'ADJ'), ('and', 'CCONJ'), ('unjust', 'ADJ'), ('with', 'ADP'), ('a', 'DET'), ('heart', 'NOUN'), ('hardened', 'VERB'), ('\n', 'SPACE'), ('against', 'ADP'), ('their', 'PRON'), ('merits', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('temper', 'NOUN'), ('irritated', 'VERB'), ('by', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('very', 'ADJ'), ('attentionTo', 'NOUN'), ('John', 'PROPN'), ('to', 'ADP'), ('Fannyyes', 'PROPN'), ('even', 'ADV'), ('to', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('little', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('deserve', 'VERB'), ('I', 'PRON'), ('had', 'AUX'), ('given', 'VERB'), ('less', 'ADJ'), ('than', 'ADP'), ('their', 'PRON'), ('due', 'NOUN'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('youyou', 'PRON'), ('above', 'ADP'), ('all', 'ADV'), ('above', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('wronged', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('and', 'CCONJ'), ('only', 'ADV'), ('I', 'PRON'), ('knew', 'VERB'), ('your', 'PRON'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('its', 'PRON'), ('sorrows', 'NOUN'), ('\n', 'SPACE'), ('yet', 'ADV'), ('to', 'ADP'), ('what', 'PRON'), ('did', 'AUX'), ('it', 'PRON'), ('influence', 'VERB'), ('menot', 'ADV'), ('to', 'ADP'), ('any', 'DET'), ('compassion', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('could', 'AUX'), ('benefit', 'VERB'), ('you', 'PRON'), ('or', 'CCONJ'), ('myselfYour', 'ADJ'), ('example', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('before', 'ADP'), ('me', 'PRON'), ('but', 'CCONJ'), ('to', 'ADP'), ('what', 'PRON'), ('availWas', 'PROPN'), ('I', 'PRON'), ('more', 'ADV'), ('considerate', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('your', 'PRON'), ('comfort', 'NOUN'), (' ', 'SPACE'), ('Did', 'AUX'), ('I', 'PRON'), ('imitate', 'VERB'), ('your', 'PRON'), ('forbearance', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('lessen', 'VERB'), ('your', 'PRON'), ('restraints', 'NOUN'), ('by', 'ADP'), ('taking', 'VERB'), ('any', 'DET'), ('part', 'NOUN'), ('in', 'ADP'), ('those', 'DET'), ('\n', 'SPACE'), ('offices', 'NOUN'), ('of', 'ADP'), ('general', 'ADJ'), ('complaisance', 'NOUN'), ('or', 'CCONJ'), ('particular', 'ADJ'), ('gratitude', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('you', 'PRON'), ('had', 'VERB'), ('hitherto', 'NOUN'), ('been', 'AUX'), ('left', 'VERB'), ('to', 'PART'), ('discharge', 'VERB'), ('aloneNo', 'PROPN'), ('\n', 'SPACE'), ('not', 'PART'), ('less', 'ADJ'), ('when', 'SCONJ'), ('I', 'PRON'), ('knew', 'VERB'), ('you', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('unhappy', 'ADJ'), ('than', 'ADP'), ('when', 'SCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('believed', 'VERB'), ('you', 'PRON'), ('at', 'ADP'), ('ease', 'NOUN'), ('did', 'AUX'), ('I', 'PRON'), ('turn', 'VERB'), ('away', 'ADV'), ('from', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('exertion', 'NOUN'), ('of', 'ADP'), ('duty', 'NOUN'), ('or', 'CCONJ'), ('friendship', 'NOUN'), ('scarcely', 'ADV'), ('allowing', 'VERB'), ('sorrow', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('exist', 'VERB'), ('but', 'CCONJ'), ('with', 'SCONJ'), ('me', 'PRON'), ('regretting', 'VERB'), ('only', 'ADV'), ('THAT', 'DET'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'AUX'), ('deserted', 'VERB'), ('and', 'CCONJ'), ('wronged', 'VERB'), ('me', 'PRON'), ('and', 'CCONJ'), ('leaving', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('or', 'CCONJ'), ('I', 'PRON'), ('professed', 'VERB'), ('an', 'DET'), ('unbounded', 'ADJ'), ('affection', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('miserable', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('my', 'PRON'), ('sake', 'NOUN'), ('\n\n', 'SPACE'), ('Here', 'ADV'), ('ceased', 'VERB'), ('the', 'DET'), ('rapid', 'ADJ'), ('flow', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('selfreproving', 'ADJ'), ('spirit', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('impatient', 'ADJ'), ('to', 'ADP'), ('soothe', 'PROPN'), ('though', 'SCONJ'), ('too', 'ADV'), ('honest', 'ADJ'), ('\n', 'SPACE'), ('to', 'PART'), ('flatter', 'VERB'), ('gave', 'VERB'), ('her', 'PRON'), ('instantly', 'ADV'), ('that', 'DET'), ('praise', 'NOUN'), ('and', 'CCONJ'), ('support', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('her', 'PRON'), ('frankness', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('contrition', 'NOUN'), ('so', 'ADV'), ('well', 'ADV'), ('deserved', 'VERB'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('pressed', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('and', 'CCONJ'), ('replied', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('goodThe', 'PROPN'), ('future', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('my', 'PRON'), ('proof', 'NOUN'), ('\n', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('laid', 'VERB'), ('down', 'ADP'), ('my', 'PRON'), ('plan', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('capable', 'ADJ'), ('of', 'ADP'), ('adhering', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('itmy', 'NOUN'), ('feelings', 'NOUN'), ('shall', 'AUX'), ('be', 'AUX'), ('governed', 'VERB'), ('and', 'CCONJ'), ('my', 'PRON'), ('temper', 'NOUN'), ('improved', 'VERB'), ('\n', 'SPACE'), ('They', 'PRON'), ('shall', 'AUX'), ('no', 'ADV'), ('longer', 'ADV'), ('worry', 'VERB'), ('others', 'NOUN'), ('nor', 'CCONJ'), ('torture', 'VERB'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('shall', 'AUX'), ('now', 'ADV'), ('live', 'VERB'), ('solely', 'ADV'), ('for', 'ADP'), ('my', 'PRON'), ('family', 'NOUN'), (' ', 'SPACE'), ('You', 'PRON'), ('my', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('must', 'AUX'), ('henceforth', 'ADV'), ('be', 'AUX'), ('all', 'DET'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'ADP'), ('me', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('will', 'AUX'), ('share', 'VERB'), ('my', 'PRON'), ('affections', 'NOUN'), ('entirely', 'ADV'), ('between', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('From', 'ADP'), ('you', 'PRON'), ('from', 'ADP'), ('my', 'PRON'), ('home', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('never', 'ADV'), ('again', 'ADV'), ('have', 'VERB'), ('the', 'DET'), ('smallest', 'ADJ'), ('\n', 'SPACE'), ('incitement', 'NOUN'), ('to', 'PART'), ('move', 'VERB'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('I', 'PRON'), ('do', 'AUX'), ('mix', 'VERB'), ('in', 'ADP'), ('other', 'ADJ'), ('society', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('only', 'ADV'), ('to', 'PART'), ('shew', 'VERB'), ('that', 'SCONJ'), ('my', 'PRON'), ('spirit', 'NOUN'), ('is', 'AUX'), ('humbled', 'VERB'), ('\n', 'SPACE'), ('my', 'PRON'), ('heart', 'NOUN'), ('amended', 'VERB'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('can', 'AUX'), ('practise', 'VERB'), ('the', 'DET'), ('civilities', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('lesser', 'ADJ'), ('duties', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('with', 'ADP'), ('gentleness', 'NOUN'), ('and', 'CCONJ'), ('forbearance', 'NOUN'), ('\n', 'SPACE'), ('As', 'SCONJ'), ('for', 'ADP'), ('Willoughbyto', 'PROPN'), ('say', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('soon', 'ADV'), ('or', 'CCONJ'), ('that', 'SCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('ever', 'ADV'), ('forget', 'VERB'), ('him', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('idle', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('remembrance', 'NOUN'), ('can', 'AUX'), ('be', 'AUX'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('no', 'DET'), ('change', 'NOUN'), ('of', 'ADP'), ('circumstances', 'NOUN'), ('or', 'CCONJ'), ('opinions', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('shall', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('regulated', 'VERB'), ('it', 'PRON'), ('shall', 'AUX'), ('be', 'AUX'), ('checked', 'VERB'), ('by', 'ADP'), ('religion', 'NOUN'), ('by', 'ADP'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('constant', 'ADJ'), ('employment', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('pausedand', 'NOUN'), ('added', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('If', 'SCONJ'), ('I', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('know', 'VERB'), ('HIS', 'PRON'), ('heart', 'NOUN'), ('everything', 'PRON'), ('would', 'AUX'), ('become', 'VERB'), ('easy', 'ADJ'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('now', 'ADV'), ('been', 'AUX'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('reflecting', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('the', 'DET'), ('propriety', 'NOUN'), ('or', 'CCONJ'), ('impropriety', 'NOUN'), ('of', 'ADP'), ('speedily', 'ADV'), ('hazarding', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('narration', 'NOUN'), ('without', 'ADP'), ('feeling', 'VERB'), ('at', 'ADP'), ('all', 'DET'), ('nearer', 'ADJ'), ('decision', 'NOUN'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('first', 'ADV'), ('heard', 'VERB'), ('this', 'PRON'), ('and', 'CCONJ'), ('perceiving', 'VERB'), ('that', 'SCONJ'), ('as', 'SCONJ'), ('reflection', 'NOUN'), ('\n', 'SPACE'), ('did', 'VERB'), ('nothing', 'PRON'), ('resolution', 'NOUN'), ('must', 'AUX'), ('do', 'AUX'), ('all', 'PRON'), ('soon', 'ADV'), ('found', 'VERB'), ('herself', 'PRON'), ('\n', 'SPACE'), ('leading', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('fact', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('managed', 'VERB'), ('the', 'DET'), ('recital', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('hoped', 'VERB'), ('with', 'ADP'), ('address', 'NOUN'), ('\n', 'SPACE'), ('prepared', 'VERB'), ('her', 'PRON'), ('anxious', 'ADJ'), ('listener', 'NOUN'), ('with', 'ADP'), ('caution', 'NOUN'), ('related', 'VERB'), ('simply', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('honestly', 'ADV'), ('the', 'DET'), ('chief', 'ADJ'), ('points', 'NOUN'), ('on', 'ADP'), ('which', 'PRON'), ('Willoughby', 'PROPN'), ('\n', 'SPACE'), ('grounded', 'VERB'), ('his', 'PRON'), ('apology', 'NOUN'), ('did', 'VERB'), ('justice', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('repentance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('softened', 'VERB'), ('only', 'ADV'), ('his', 'PRON'), ('protestations', 'NOUN'), ('of', 'ADP'), ('present', 'ADJ'), ('regard', 'NOUN'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('said', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('wordShe', 'NOUN'), ('trembled', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('ground', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('lips', 'NOUN'), ('became', 'VERB'), ('whiter', 'ADJ'), ('\n', 'SPACE'), ('than', 'SCONJ'), ('even', 'ADV'), ('sickness', 'NOUN'), ('had', 'AUX'), ('left', 'VERB'), ('them', 'PRON'), (' ', 'SPACE'), ('A', 'PRON'), ('thousand', 'NUM'), ('inquiries', 'NOUN'), ('\n', 'SPACE'), ('sprung', 'VERB'), ('up', 'ADP'), ('from', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('but', 'CCONJ'), ('she', 'PRON'), ('dared', 'VERB'), ('not', 'PART'), ('urge', 'VERB'), ('one', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('caught', 'VERB'), ('every', 'DET'), ('syllable', 'NOUN'), ('with', 'ADP'), ('panting', 'VERB'), ('eagerness', 'NOUN'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('unknowingly', 'ADV'), ('to', 'ADP'), ('herself', 'PRON'), ('closely', 'ADV'), ('pressed', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('tears', 'NOUN'), ('covered', 'VERB'), ('her', 'PRON'), ('cheeks', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('dreading', 'VERB'), ('her', 'PRON'), ('being', 'AUX'), ('tired', 'ADJ'), ('led', 'VERB'), ('her', 'PRON'), ('towards', 'ADP'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('they', 'PRON'), ('reached', 'VERB'), ('the', 'DET'), ('door', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('easily', 'ADV'), ('conjecturing', 'VERB'), ('what', 'PRON'), ('her', 'PRON'), ('curiosity', 'NOUN'), ('must', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('no', 'DET'), ('question', 'NOUN'), ('was', 'AUX'), ('suffered', 'VERB'), ('to', 'PART'), ('speak', 'VERB'), ('it', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('but', 'SCONJ'), ('Willoughby', 'PROPN'), ('and', 'CCONJ'), ('their', 'PRON'), ('conversation', 'NOUN'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('carefully', 'ADV'), ('minute', 'ADJ'), ('in', 'ADP'), ('every', 'DET'), ('particular', 'ADJ'), ('of', 'ADP'), ('speech', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('look', 'VERB'), ('where', 'SCONJ'), ('minuteness', 'NOUN'), ('could', 'AUX'), ('be', 'AUX'), ('safely', 'ADV'), ('indulged', 'VERB'), ('\n', 'SPACE'), ('As', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('they', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('house', 'NOUN'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('kiss', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('gratitude', 'NOUN'), ('and', 'CCONJ'), ('these', 'DET'), ('two', 'NUM'), ('words', 'NOUN'), ('just', 'ADV'), ('articulate', 'VERB'), ('through', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('tears', 'NOUN'), ('Tell', 'PROPN'), ('mama', 'PROPN'), ('withdrew', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('walked', 'VERB'), ('slowly', 'ADV'), ('up', 'ADP'), ('stairs', 'NOUN'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('attempt', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('disturb', 'VERB'), ('a', 'DET'), ('solitude', 'NOUN'), ('so', 'ADV'), ('reasonable', 'ADJ'), ('as', 'ADP'), ('what', 'PRON'), ('she', 'PRON'), ('now', 'ADV'), ('sought', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('mind', 'NOUN'), ('anxiously', 'ADV'), ('prearranging', 'VERB'), ('its', 'PRON'), ('result', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('resolution', 'NOUN'), ('of', 'ADP'), ('reviving', 'VERB'), ('the', 'DET'), ('subject', 'NOUN'), ('again', 'ADV'), ('\n', 'SPACE'), ('should', 'AUX'), ('Marianne', 'PROPN'), ('fail', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('it', 'PRON'), ('she', 'PRON'), ('turned', 'VERB'), ('into', 'ADP'), ('the', 'DET'), ('parlour', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('fulfill', 'VERB'), ('her', 'PRON'), ('parting', 'NOUN'), ('injunction', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('47', 'NUM'), ('\n\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('unmoved', 'VERB'), ('the', 'DET'), ('vindication', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('former', 'ADJ'), ('favourite', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('rejoiced', 'VERB'), ('in', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('cleared', 'VERB'), ('from', 'ADP'), ('some', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('imputed', 'ADJ'), ('guiltshe', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('sorry', 'ADJ'), ('for', 'ADP'), ('himshe', 'PROPN'), ('wished', 'VERB'), ('him', 'PRON'), ('happy', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('the', 'DET'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('recalledNothing', 'VERB'), ('could', 'AUX'), ('restore', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('with', 'ADP'), ('a', 'DET'), ('faith', 'NOUN'), ('unbrokena', 'ADJ'), ('character', 'NOUN'), ('unblemished', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('could', 'AUX'), ('do', 'VERB'), ('away', 'ADV'), ('the', 'DET'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('what', 'PRON'), ('the', 'DET'), ('latter', 'ADJ'), ('had', 'AUX'), ('suffered', 'VERB'), ('through', 'ADP'), ('his', 'PRON'), ('means', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('remove', 'VERB'), ('the', 'DET'), ('guilt', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('conduct', 'NOUN'), ('towards', 'ADP'), ('Eliza', 'PROPN'), ('\n', 'SPACE'), ('Nothing', 'PRON'), ('could', 'AUX'), ('replace', 'VERB'), ('him', 'PRON'), ('therefore', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('former', 'ADJ'), ('esteem', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('injure', 'VERB'), ('the', 'DET'), ('interests', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n\n', 'SPACE'), ('Had', 'AUX'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('like', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('heard', 'VERB'), ('Willoughbys', 'PROPN'), ('\n', 'SPACE'), ('story', 'NOUN'), ('from', 'ADP'), ('himselfhad', 'PROPN'), ('she', 'PRON'), ('witnessed', 'VERB'), ('his', 'PRON'), ('distress', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('been', 'AUX'), ('under', 'ADP'), ('the', 'DET'), ('influence', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('countenance', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('\n', 'SPACE'), ('manner', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('probable', 'ADJ'), ('that', 'SCONJ'), ('her', 'PRON'), ('compassion', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('greater', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('neither', 'CCONJ'), ('in', 'ADP'), ('Elinors', 'PROPN'), ('power', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('in', 'ADP'), ('her', 'PRON'), ('wish', 'NOUN'), ('to', 'PART'), ('rouse', 'VERB'), ('such', 'ADJ'), ('feelings', 'NOUN'), ('in', 'ADP'), ('another', 'PRON'), ('by', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('retailed', 'ADJ'), ('explanation', 'NOUN'), ('as', 'SCONJ'), ('had', 'AUX'), ('at', 'ADP'), ('first', 'ADV'), ('been', 'AUX'), ('called', 'VERB'), ('forth', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('herself', 'PRON'), (' ', 'SPACE'), ('Reflection', 'PROPN'), ('had', 'AUX'), ('given', 'VERB'), ('calmness', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('judgment', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sobered', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('opinion', 'NOUN'), ('of', 'ADP'), ('Willoughbys', 'PROPN'), ('deserts', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('wished', 'VERB'), ('therefore', 'ADV'), ('to', 'PART'), ('declare', 'VERB'), ('only', 'ADV'), ('the', 'DET'), ('simple', 'ADJ'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('lay', 'VERB'), ('open', 'ADJ'), ('such', 'ADJ'), ('facts', 'NOUN'), ('as', 'SCONJ'), ('were', 'AUX'), ('really', 'ADV'), ('due', 'ADJ'), ('to', 'ADP'), ('his', 'PRON'), ('character', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('embellishment', 'NOUN'), ('of', 'ADP'), ('tenderness', 'NOUN'), ('to', 'PART'), ('lead', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('fancy', 'ADJ'), ('astray', 'NOUN'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('the', 'DET'), ('evening', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('all', 'ADV'), ('three', 'NUM'), ('together', 'ADV'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('began', 'VERB'), ('voluntarily', 'ADV'), ('to', 'PART'), ('speak', 'VERB'), ('of', 'ADP'), ('him', 'PRON'), ('again', 'ADV'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('that', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('without', 'ADP'), ('an', 'DET'), ('effort', 'NOUN'), ('the', 'DET'), ('restless', 'ADJ'), ('\n', 'SPACE'), ('unquiet', 'ADJ'), ('thoughtfulness', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('\n', 'SPACE'), ('previously', 'ADV'), ('sittingher', 'ADJ'), ('rising', 'VERB'), ('colour', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('spoke', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('unsteady', 'ADJ'), ('voice', 'NOUN'), ('plainly', 'ADV'), ('shewed', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('to', 'PART'), ('assure', 'VERB'), ('you', 'PRON'), ('both', 'PRON'), ('said', 'VERB'), ('she', 'PRON'), ('that', 'SCONJ'), ('I', 'PRON'), ('see', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('thingas', 'NOUN'), ('you', 'PRON'), ('can', 'AUX'), ('desire', 'VERB'), ('me', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('would', 'AUX'), ('have', 'AUX'), ('interrupted', 'VERB'), ('her', 'PRON'), ('instantly', 'ADV'), ('\n', 'SPACE'), ('with', 'ADP'), ('soothing', 'VERB'), ('tenderness', 'NOUN'), ('had', 'AUX'), ('not', 'PART'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('really', 'ADV'), ('wished', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('hear', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('unbiased', 'ADJ'), ('opinion', 'NOUN'), ('by', 'ADP'), ('an', 'DET'), ('eager', 'ADJ'), ('sign', 'NOUN'), ('\n', 'SPACE'), ('engaged', 'VERB'), ('her', 'PRON'), ('silence', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('slowly', 'ADV'), ('continued', 'VERB'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('a', 'DET'), ('great', 'ADJ'), ('relief', 'NOUN'), ('to', 'ADP'), ('mewhat', 'NOUN'), ('Elinor', 'PROPN'), ('told', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('this', 'DET'), ('morningI', 'PROPN'), ('have', 'AUX'), ('now', 'ADV'), ('heard', 'VERB'), ('exactly', 'ADV'), ('what', 'PRON'), ('I', 'PRON'), ('\n', 'SPACE'), ('wished', 'VERB'), ('to', 'ADP'), ('hearFor', 'SYM'), ('some', 'DET'), ('moments', 'NOUN'), ('her', 'PRON'), ('voice', 'NOUN'), ('was', 'AUX'), ('lost', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('recovering', 'VERB'), ('herself', 'PRON'), ('she', 'PRON'), ('added', 'VERB'), ('and', 'CCONJ'), ('with', 'ADP'), ('greater', 'ADJ'), ('\n', 'SPACE'), ('calmness', 'NOUN'), ('than', 'ADP'), ('beforeI', 'PROPN'), ('am', 'AUX'), ('now', 'ADV'), ('perfectly', 'ADV'), ('satisfied', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('wish', 'VERB'), ('for', 'ADP'), ('no', 'DET'), ('change', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('never', 'ADV'), ('could', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), ('after', 'ADP'), ('knowing', 'VERB'), ('as', 'ADV'), ('sooner', 'ADV'), ('or', 'CCONJ'), ('later', 'ADV'), ('I', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('known', 'VERB'), ('all', 'DET'), ('thisI', 'PROPN'), ('should', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('confidence', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('esteem', 'NOUN'), (' ', 'SPACE'), ('Nothing', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('it', 'PRON'), ('away', 'ADV'), ('to', 'ADP'), ('my', 'PRON'), ('feelings', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('know', 'VERB'), ('itI', 'ADV'), ('know', 'VERB'), ('it', 'PRON'), ('cried', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('Happy', 'PROPN'), ('with', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('of', 'ADP'), ('libertine', 'NOUN'), ('practicesWith', 'PROPN'), ('one', 'NUM'), ('\n', 'SPACE'), ('who', 'PRON'), ('so', 'ADV'), ('injured', 'VERB'), ('the', 'DET'), ('peace', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('dearest', 'ADJ'), ('of', 'ADP'), ('our', 'PRON'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('best', 'ADJ'), ('of', 'ADP'), ('menNomy', 'NOUN'), ('Marianne', 'PROPN'), ('has', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('made', 'VERB'), ('happy', 'ADJ'), ('with', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('manHer', 'NOUN'), ('conscience', 'NOUN'), ('her', 'PRON'), ('\n', 'SPACE'), ('sensitive', 'ADJ'), ('conscience', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('felt', 'VERB'), ('all', 'PRON'), ('that', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('conscience', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('ought', 'AUX'), ('to', 'PART'), ('have', 'AUX'), ('felt', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('sighed', 'VERB'), ('and', 'CCONJ'), ('repeated', 'VERB'), ('I', 'PRON'), ('wish', 'VERB'), ('for', 'ADP'), ('no', 'DET'), ('change', 'NOUN'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('consider', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('exactly', 'ADV'), ('as', 'SCONJ'), ('\n', 'SPACE'), ('a', 'DET'), ('good', 'ADJ'), ('mind', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('sound', 'ADJ'), ('understanding', 'NOUN'), ('must', 'AUX'), ('consider', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('dare', 'VERB'), ('say', 'VERB'), ('you', 'PRON'), ('perceive', 'VERB'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('myself', 'PRON'), ('not', 'PART'), ('only', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('this', 'PRON'), ('but', 'CCONJ'), ('in', 'ADP'), ('many', 'ADJ'), ('other', 'ADJ'), ('circumstances', 'NOUN'), ('reason', 'NOUN'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('your', 'PRON'), ('marriage', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('involved', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('many', 'ADJ'), ('certain', 'ADJ'), ('troubles', 'NOUN'), ('and', 'CCONJ'), ('disappointments', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('poorly', 'ADV'), ('supported', 'VERB'), ('by', 'ADP'), ('an', 'DET'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('his', 'PRON'), ('side', 'NOUN'), ('much', 'ADV'), ('less', 'ADV'), ('certain', 'ADJ'), (' ', 'SPACE'), ('Had', 'AUX'), ('you', 'PRON'), ('married', 'VERB'), ('\n', 'SPACE'), ('you', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('poor', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('expensiveness', 'NOUN'), ('is', 'AUX'), ('\n', 'SPACE'), ('acknowledged', 'VERB'), ('even', 'ADV'), ('by', 'ADP'), ('himself', 'PRON'), ('and', 'CCONJ'), ('his', 'PRON'), ('whole', 'ADJ'), ('conduct', 'NOUN'), ('declares', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('selfdenial', 'NOUN'), ('is', 'AUX'), ('a', 'DET'), ('word', 'NOUN'), ('hardly', 'ADV'), ('understood', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('His', 'PRON'), ('demands', 'NOUN'), ('and', 'CCONJ'), ('your', 'PRON'), ('inexperience', 'NOUN'), ('together', 'ADV'), ('on', 'ADP'), ('a', 'DET'), ('small', 'ADJ'), ('\n', 'SPACE'), ('very', 'ADV'), ('small', 'ADJ'), ('income', 'NOUN'), ('must', 'AUX'), ('have', 'AUX'), ('brought', 'VERB'), ('on', 'ADP'), ('distresses', 'NOUN'), ('which', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('LESS', 'ADV'), ('grievous', 'ADJ'), ('to', 'ADP'), ('you', 'PRON'), ('from', 'ADP'), ('having', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('entirely', 'ADV'), ('unknown', 'ADJ'), ('and', 'CCONJ'), ('unthought', 'ADJ'), ('of', 'ADP'), ('before', 'SCONJ'), (' ', 'SPACE'), ('YOUR', 'PRON'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('honour', 'NOUN'), ('and', 'CCONJ'), ('honesty', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('led', 'VERB'), ('you', 'PRON'), ('I', 'PRON'), ('know', 'VERB'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('aware', 'ADJ'), ('of', 'ADP'), ('your', 'PRON'), ('situation', 'NOUN'), ('to', 'PART'), ('attempt', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('economy', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('would', 'AUX'), ('appear', 'VERB'), ('to', 'ADP'), ('you', 'PRON'), ('possible', 'ADJ'), ('and', 'CCONJ'), ('perhaps', 'ADV'), ('as', 'ADP'), ('long', 'ADJ'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('your', 'PRON'), ('frugality', 'NOUN'), ('retrenched', 'VERB'), ('only', 'ADV'), ('on', 'ADP'), ('your', 'PRON'), ('own', 'ADJ'), ('comfort', 'NOUN'), ('\n', 'SPACE'), ('you', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('suffered', 'VERB'), ('to', 'PART'), ('practice', 'VERB'), ('it', 'PRON'), ('but', 'CCONJ'), ('beyond', 'ADP'), ('that', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('little', 'ADJ'), ('could', 'AUX'), ('the', 'DET'), ('utmost', 'NOUN'), ('of', 'ADP'), ('your', 'PRON'), ('single', 'ADJ'), ('management', 'NOUN'), ('\n', 'SPACE'), ('do', 'VERB'), ('to', 'PART'), ('stop', 'VERB'), ('the', 'DET'), ('ruin', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('begun', 'VERB'), ('before', 'ADP'), ('your', 'PRON'), ('marriage', 'NOUN'), ('\n', 'SPACE'), ('Beyond', 'ADP'), ('THAT', 'PRON'), ('had', 'AUX'), ('you', 'PRON'), ('endeavoured', 'VERB'), ('however', 'ADV'), ('reasonably', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('abridge', 'VERB'), ('HIS', 'PRON'), ('enjoyments', 'NOUN'), ('is', 'AUX'), ('it', 'PRON'), ('not', 'PART'), ('to', 'PART'), ('be', 'AUX'), ('feared', 'VERB'), ('that', 'SCONJ'), ('instead', 'ADV'), ('\n', 'SPACE'), ('of', 'ADP'), ('prevailing', 'VERB'), ('on', 'ADP'), ('feelings', 'NOUN'), ('so', 'ADV'), ('selfish', 'ADJ'), ('to', 'PART'), ('consent', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('you', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('lessened', 'VERB'), ('your', 'PRON'), ('own', 'ADJ'), ('influence', 'NOUN'), ('on', 'ADP'), ('his', 'PRON'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('made', 'VERB'), ('him', 'PRON'), ('regret', 'VERB'), ('the', 'DET'), ('connection', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('involved', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'ADJ'), ('difficulties', 'NOUN'), ('\n\n', 'SPACE'), ('Mariannes', 'PROPN'), ('lips', 'NOUN'), ('quivered', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('repeated', 'VERB'), ('the', 'DET'), ('word', 'NOUN'), ('\n', 'SPACE'), ('Selfish', 'ADJ'), ('in', 'ADP'), ('a', 'DET'), ('tone', 'NOUN'), ('that', 'PRON'), ('implieddo', 'VERB'), ('you', 'PRON'), ('really', 'ADV'), ('think', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('selfish', 'ADJ'), ('\n\n', 'SPACE'), ('The', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('behaviour', 'NOUN'), ('replied', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('beginning', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('end', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('grounded', 'VERB'), ('on', 'ADP'), ('selfishness', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('selfishness', 'NOUN'), ('which', 'PRON'), ('first', 'ADV'), ('\n', 'SPACE'), ('made', 'VERB'), ('him', 'PRON'), ('sport', 'VERB'), ('with', 'ADP'), ('your', 'PRON'), ('affections', 'NOUN'), ('which', 'PRON'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('were', 'AUX'), ('engaged', 'VERB'), ('made', 'VERB'), ('him', 'PRON'), ('delay', 'VERB'), ('the', 'DET'), ('confession', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('which', 'PRON'), ('finally', 'ADV'), ('carried', 'VERB'), ('him', 'PRON'), ('from', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('His', 'PRON'), ('own', 'ADJ'), ('enjoyment', 'NOUN'), ('or', 'CCONJ'), ('his', 'PRON'), ('own', 'ADJ'), ('ease', 'NOUN'), ('was', 'AUX'), ('in', 'ADP'), ('every', 'DET'), ('particular', 'ADJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('ruling', 'VERB'), ('principle', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('is', 'AUX'), ('very', 'ADV'), ('true', 'ADJ'), (' ', 'SPACE'), ('MY', 'PROPN'), ('happiness', 'NOUN'), ('never', 'ADV'), ('was', 'AUX'), ('his', 'PRON'), ('object', 'NOUN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('present', 'ADJ'), ('continued', 'VERB'), ('Elinor', 'PROPN'), ('he', 'PRON'), ('regrets', 'VERB'), ('what', 'PRON'), ('he', 'PRON'), ('\n', 'SPACE'), ('has', 'AUX'), ('done', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('why', 'SCONJ'), ('does', 'AUX'), ('he', 'PRON'), ('regret', 'VERB'), ('itBecause', 'PROPN'), ('he', 'PRON'), ('finds', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('answered', 'VERB'), ('towards', 'ADP'), ('himself', 'PRON'), (' ', 'SPACE'), ('It', 'PRON'), ('has', 'AUX'), ('not', 'PART'), ('made', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('happy', 'ADJ'), (' ', 'SPACE'), ('His', 'PRON'), ('circumstances', 'NOUN'), ('are', 'AUX'), ('now', 'ADV'), ('unembarrassedhe', 'ADJ'), ('\n', 'SPACE'), ('suffers', 'VERB'), ('from', 'ADP'), ('no', 'DET'), ('evil', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('kind', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('thinks', 'VERB'), ('only', 'ADV'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('has', 'AUX'), ('married', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('less', 'ADV'), ('amiable', 'ADJ'), ('temper', 'NOUN'), ('\n', 'SPACE'), ('than', 'ADP'), ('yourself', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('does', 'AUX'), ('it', 'PRON'), ('follow', 'VERB'), ('that', 'PRON'), ('had', 'AUX'), ('he', 'PRON'), ('married', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('happyThe', 'NUM'), ('inconveniences', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('different', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('would', 'AUX'), ('then', 'ADV'), ('have', 'AUX'), ('suffered', 'VERB'), ('under', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('pecuniary', 'NOUN'), ('distresses', 'VERB'), ('which', 'PRON'), ('because', 'SCONJ'), ('they', 'PRON'), ('are', 'AUX'), ('removed', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('now', 'ADV'), ('reckons', 'VERB'), ('as', 'ADP'), ('nothing', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('had', 'VERB'), ('a', 'DET'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('whose', 'DET'), ('temper', 'NOUN'), ('he', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('no', 'DET'), ('complaint', 'NOUN'), ('but', 'CCONJ'), ('he', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('always', 'ADV'), ('necessitousalways', 'NOUN'), ('poor', 'ADJ'), ('and', 'CCONJ'), ('probably', 'ADV'), ('\n', 'SPACE'), ('would', 'AUX'), ('soon', 'ADV'), ('have', 'AUX'), ('learned', 'VERB'), ('to', 'PART'), ('rank', 'VERB'), ('the', 'DET'), ('innumerable', 'ADJ'), ('comforts', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('clear', 'ADJ'), ('estate', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('income', 'NOUN'), ('as', 'ADP'), ('of', 'ADP'), ('far', 'ADV'), ('more', 'ADJ'), ('importance', 'NOUN'), ('\n', 'SPACE'), ('even', 'ADV'), ('to', 'ADP'), ('domestic', 'ADJ'), ('happiness', 'NOUN'), ('than', 'ADP'), ('the', 'DET'), ('mere', 'ADJ'), ('temper', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('wife', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('have', 'VERB'), ('not', 'PART'), ('a', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('have', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('regretnothing', 'VERB'), ('but', 'CCONJ'), ('my', 'PRON'), ('own', 'ADJ'), ('folly', 'NOUN'), ('\n\n', 'SPACE'), ('Rather', 'ADV'), ('say', 'VERB'), ('your', 'PRON'), ('mothers', 'NOUN'), ('imprudence', 'VERB'), ('my', 'PRON'), ('child', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('SHE', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('answerable', 'ADJ'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('would', 'AUX'), ('not', 'PART'), ('let', 'VERB'), ('her', 'PRON'), ('proceedand', 'NOUN'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('satisfied', 'VERB'), ('that', 'SCONJ'), ('each', 'PRON'), ('felt', 'VERB'), ('their', 'PRON'), ('own', 'ADJ'), ('error', 'NOUN'), ('wished', 'VERB'), ('to', 'PART'), ('avoid', 'VERB'), ('\n', 'SPACE'), ('any', 'DET'), ('survey', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('that', 'PRON'), ('might', 'AUX'), ('weaken', 'VERB'), ('her', 'PRON'), ('sisters', 'NOUN'), ('\n', 'SPACE'), ('spirits', 'NOUN'), ('she', 'PRON'), ('therefore', 'ADV'), ('pursuing', 'VERB'), ('the', 'DET'), ('first', 'ADJ'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('continued', 'VERB'), ('\n\n', 'SPACE'), ('One', 'NUM'), ('observation', 'NOUN'), ('may', 'AUX'), ('I', 'PRON'), ('think', 'VERB'), ('be', 'AUX'), ('fairly', 'ADV'), ('drawn', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('storythat', 'NOUN'), ('all', 'DET'), ('Willoughbys', 'PROPN'), ('difficulties', 'NOUN'), ('\n', 'SPACE'), ('have', 'AUX'), ('arisen', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('offence', 'NOUN'), ('against', 'ADP'), ('virtue', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('behaviour', 'NOUN'), ('to', 'ADP'), ('Eliza', 'PROPN'), ('Williams', 'PROPN'), (' ', 'SPACE'), ('That', 'DET'), ('crime', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('the', 'DET'), ('origin', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('every', 'DET'), ('lesser', 'ADJ'), ('one', 'NUM'), ('and', 'CCONJ'), ('of', 'ADP'), ('all', 'DET'), ('his', 'PRON'), ('present', 'ADJ'), ('discontents', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('assented', 'VERB'), ('most', 'ADV'), ('feelingly', 'ADV'), ('to', 'ADP'), ('the', 'DET'), ('remark', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('was', 'AUX'), ('led', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('to', 'ADP'), ('an', 'DET'), ('enumeration', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandons', 'PROPN'), ('injuries', 'NOUN'), ('and', 'CCONJ'), ('merits', 'NOUN'), ('warm', 'ADJ'), ('as', 'ADP'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('design', 'NOUN'), ('could', 'AUX'), ('unitedly', 'ADV'), ('dictate', 'VERB'), (' ', 'SPACE'), ('Her', 'PRON'), ('daughter', 'NOUN'), ('did', 'AUX'), ('\n', 'SPACE'), ('not', 'PART'), ('look', 'VERB'), ('however', 'ADV'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('much', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('were', 'AUX'), ('heard', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('according', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('expectation', 'NOUN'), ('saw', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('two', 'NUM'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('three', 'NUM'), ('following', 'VERB'), ('days', 'NOUN'), ('that', 'PRON'), ('Marianne', 'PROPN'), ('did', 'AUX'), ('not', 'PART'), ('continue', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('gain', 'VERB'), ('strength', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('but', 'CCONJ'), ('while', 'SCONJ'), ('her', 'PRON'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('unsubdued', 'VERB'), ('and', 'CCONJ'), ('she', 'PRON'), ('still', 'ADV'), ('tried', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('cheerful', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('easy', 'ADJ'), ('her', 'PRON'), ('sister', 'NOUN'), ('could', 'AUX'), ('safely', 'ADV'), ('trust', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('effect', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('time', 'NOUN'), ('upon', 'SCONJ'), ('her', 'PRON'), ('health', 'NOUN'), ('\n\n', 'SPACE'), ('Margaret', 'PROPN'), ('returned', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('family', 'NOUN'), ('were', 'AUX'), ('again', 'ADV'), ('all', 'PRON'), ('\n', 'SPACE'), ('restored', 'VERB'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('again', 'ADV'), ('quietly', 'ADV'), ('settled', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('not', 'PART'), ('pursuing', 'VERB'), ('their', 'PRON'), ('usual', 'ADJ'), ('studies', 'NOUN'), ('with', 'ADP'), ('quite', 'DET'), ('\n', 'SPACE'), ('so', 'ADV'), ('much', 'ADV'), ('vigour', 'ADJ'), ('as', 'ADP'), ('when', 'SCONJ'), ('they', 'PRON'), ('first', 'ADV'), ('came', 'VERB'), ('to', 'ADP'), ('Barton', 'PROPN'), ('\n', 'SPACE'), ('at', 'ADP'), ('least', 'ADJ'), ('planning', 'VERB'), ('a', 'DET'), ('vigorous', 'ADJ'), ('prosecution', 'NOUN'), ('of', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('future', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('grew', 'VERB'), ('impatient', 'ADJ'), ('for', 'ADP'), ('some', 'DET'), ('tidings', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('had', 'AUX'), ('heard', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('him', 'PRON'), ('since', 'SCONJ'), ('her', 'PRON'), ('leaving', 'VERB'), ('London', 'PROPN'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('new', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('plans', 'NOUN'), ('nothing', 'PRON'), ('certain', 'ADJ'), ('even', 'ADV'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('present', 'ADJ'), ('abode', 'NOUN'), (' ', 'SPACE'), ('Some', 'DET'), ('letters', 'NOUN'), ('had', 'AUX'), ('passed', 'VERB'), ('between', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('brother', 'NOUN'), ('in', 'ADP'), ('consequence', 'NOUN'), ('of', 'ADP'), ('Mariannes', 'PROPN'), ('illness', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('of', 'ADP'), ('Johns', 'PROPN'), ('there', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('this', 'DET'), ('sentence', 'NOUN'), ('\n', 'SPACE'), ('We', 'PRON'), ('know', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('our', 'PRON'), ('unfortunate', 'ADJ'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('can', 'AUX'), ('make', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('enquiries', 'NOUN'), ('on', 'ADP'), ('so', 'ADV'), ('prohibited', 'VERB'), ('a', 'DET'), ('subject', 'NOUN'), ('but', 'CCONJ'), ('conclude', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('still', 'ADV'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('which', 'PRON'), ('was', 'AUX'), ('all', 'DET'), ('the', 'DET'), ('intelligence', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Edward', 'PROPN'), ('afforded', 'VERB'), ('her', 'PRON'), ('by', 'ADP'), ('the', 'DET'), ('correspondence', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('name', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('mentioned', 'VERB'), ('in', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('succeeding', 'VERB'), ('letters', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('doomed', 'VERB'), ('however', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('long', 'ADV'), ('in', 'ADP'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('measures', 'NOUN'), ('\n\n', 'SPACE'), ('Their', 'PRON'), ('manservant', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('sent', 'VERB'), ('one', 'NUM'), ('morning', 'NOUN'), ('to', 'ADP'), ('Exeter', 'PROPN'), ('\n', 'SPACE'), ('on', 'ADP'), ('business', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('as', 'SCONJ'), ('he', 'PRON'), ('waited', 'VERB'), ('at', 'ADP'), ('table', 'NOUN'), ('he', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('satisfied', 'VERB'), ('the', 'DET'), ('inquiries', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('mistress', 'NOUN'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('event', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('errand', 'NOUN'), ('this', 'PRON'), ('was', 'AUX'), ('his', 'PRON'), ('voluntary', 'ADJ'), ('communication', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('you', 'PRON'), ('know', 'VERB'), ('maam', 'PROPN'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('is', 'AUX'), ('married', 'VERB'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('gave', 'VERB'), ('a', 'DET'), ('violent', 'ADJ'), ('start', 'NOUN'), ('fixed', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('\n', 'SPACE'), ('upon', 'SCONJ'), ('Elinor', 'PROPN'), ('saw', 'VERB'), ('her', 'PRON'), ('turning', 'NOUN'), ('pale', 'NOUN'), ('and', 'CCONJ'), ('fell', 'VERB'), ('back', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('chair', 'NOUN'), ('in', 'ADP'), ('hysterics', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('whose', 'DET'), ('eyes', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('answered', 'VERB'), ('the', 'DET'), ('servants', 'NOUN'), ('inquiry', 'NOUN'), ('had', 'AUX'), ('intuitively', 'ADV'), ('taken', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('same', 'ADJ'), ('direction', 'NOUN'), ('was', 'AUX'), ('shocked', 'VERB'), ('to', 'PART'), ('perceive', 'VERB'), ('by', 'ADP'), ('Elinors', 'PROPN'), ('\n', 'SPACE'), ('countenance', 'NOUN'), ('how', 'SCONJ'), ('much', 'ADV'), ('she', 'PRON'), ('really', 'ADV'), ('suffered', 'VERB'), ('and', 'CCONJ'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('afterwards', 'ADV'), ('alike', 'ADV'), ('distressed', 'VERB'), ('by', 'ADP'), ('Mariannes', 'PROPN'), ('situation', 'NOUN'), ('\n', 'SPACE'), ('knew', 'VERB'), ('not', 'PART'), ('on', 'ADP'), ('which', 'DET'), ('child', 'NOUN'), ('to', 'PART'), ('bestow', 'VERB'), ('her', 'PRON'), ('principal', 'ADJ'), ('attention', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('servant', 'NOUN'), ('who', 'PRON'), ('saw', 'VERB'), ('only', 'ADV'), ('that', 'SCONJ'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('taken', 'VERB'), ('ill', 'ADJ'), ('had', 'VERB'), ('sense', 'NOUN'), ('enough', 'ADV'), ('to', 'PART'), ('call', 'VERB'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('maids', 'NOUN'), ('\n', 'SPACE'), ('who', 'PRON'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('assistance', 'NOUN'), ('supported', 'VERB'), ('her', 'PRON'), ('into', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('other', 'ADJ'), ('room', 'NOUN'), (' ', 'SPACE'), ('By', 'ADP'), ('that', 'DET'), ('time', 'NOUN'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('rather', 'ADV'), ('better', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('her', 'PRON'), ('mother', 'NOUN'), ('leaving', 'VERB'), ('her', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('care', 'NOUN'), ('of', 'ADP'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('maid', 'NOUN'), ('returned', 'VERB'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('though', 'SCONJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('much', 'ADJ'), ('disordered', 'VERB'), ('had', 'AUX'), ('so', 'ADV'), ('far', 'ADV'), ('recovered', 'VERB'), ('the', 'DET'), ('use', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('reason', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('voice', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('just', 'ADV'), ('beginning', 'VERB'), ('an', 'DET'), ('inquiry', 'NOUN'), ('of', 'ADP'), ('Thomas', 'PROPN'), ('\n', 'SPACE'), ('as', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('source', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('intelligence', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('immediately', 'ADV'), ('took', 'VERB'), ('all', 'DET'), ('that', 'DET'), ('trouble', 'NOUN'), ('on', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('had', 'VERB'), ('the', 'DET'), ('benefit', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('information', 'NOUN'), ('without', 'ADP'), ('the', 'DET'), ('exertion', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('seeking', 'VERB'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Who', 'PRON'), ('told', 'VERB'), ('you', 'PRON'), ('that', 'SCONJ'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('married', 'VERB'), ('Thomas', 'PROPN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('see', 'VERB'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('myself', 'PRON'), ('maam', 'PROPN'), ('this', 'DET'), ('morning', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('Exeter', 'PROPN'), ('and', 'CCONJ'), ('his', 'PRON'), ('lady', 'NOUN'), ('too', 'ADV'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('as', 'SCONJ'), ('was', 'AUX'), (' ', 'SPACE'), ('They', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('stopping', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('chaise', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('door', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('New', 'PROPN'), ('London', 'PROPN'), ('Inn', 'PROPN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('I', 'PRON'), ('went', 'VERB'), ('there', 'ADV'), ('with', 'ADP'), ('a', 'DET'), ('message', 'NOUN'), ('from', 'ADP'), ('Sally', 'PROPN'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('brother', 'NOUN'), ('who', 'PRON'), ('is', 'AUX'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('postboys', 'NOUN'), ('I', 'PRON'), ('happened', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('look', 'VERB'), ('up', 'ADP'), ('as', 'SCONJ'), ('I', 'PRON'), ('went', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('chaise', 'NOUN'), ('and', 'CCONJ'), ('so', 'ADV'), ('I', 'PRON'), ('see', 'VERB'), ('directly', 'ADV'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('the', 'DET'), ('youngest', 'ADJ'), ('Miss', 'PROPN'), ('Steele', 'PROPN'), ('so', 'ADV'), ('I', 'PRON'), ('took', 'VERB'), ('off', 'ADP'), ('my', 'PRON'), ('hat', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('knew', 'VERB'), ('me', 'PRON'), ('and', 'CCONJ'), ('called', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('and', 'CCONJ'), ('inquired', 'VERB'), ('after', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('maam', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('young', 'ADJ'), ('ladies', 'NOUN'), ('especially', 'ADV'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('bid', 'VERB'), ('me', 'PRON'), ('I', 'PRON'), ('should', 'AUX'), ('give', 'VERB'), ('her', 'PRON'), ('compliments', 'NOUN'), ('and', 'CCONJ'), ('Mr', 'PROPN'), ('Ferrarss', 'PROPN'), ('\n', 'SPACE'), ('their', 'PRON'), ('best', 'ADJ'), ('compliments', 'NOUN'), ('and', 'CCONJ'), ('service', 'NOUN'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('sorry', 'ADJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('they', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('time', 'NOUN'), ('to', 'PART'), ('come', 'VERB'), ('on', 'ADP'), ('and', 'CCONJ'), ('see', 'VERB'), ('you', 'PRON'), ('but', 'CCONJ'), ('they', 'PRON'), ('was', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('hurry', 'NOUN'), ('to', 'PART'), ('go', 'VERB'), ('forwards', 'ADV'), ('for', 'SCONJ'), ('they', 'PRON'), ('was', 'AUX'), ('going', 'VERB'), ('further', 'ADV'), ('\n', 'SPACE'), ('down', 'ADP'), ('for', 'ADP'), ('a', 'DET'), ('little', 'ADJ'), ('while', 'NOUN'), ('but', 'CCONJ'), ('howsever', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('come', 'VERB'), ('back', 'ADV'), ('\n', 'SPACE'), ('they', 'PRON'), ('d', 'PROPN'), ('make', 'VERB'), ('sure', 'ADJ'), ('to', 'PART'), ('come', 'VERB'), ('and', 'CCONJ'), ('see', 'VERB'), ('you', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('did', 'AUX'), ('she', 'PRON'), ('tell', 'VERB'), ('you', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('married', 'VERB'), ('Thomas', 'PROPN'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('maam', 'NOUN'), ('She', 'PRON'), ('smiled', 'VERB'), ('and', 'CCONJ'), ('said', 'VERB'), ('how', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('changed', 'VERB'), ('her', 'PRON'), ('name', 'NOUN'), ('since', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('these', 'DET'), ('parts', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('a', 'DET'), ('very', 'ADV'), ('affable', 'ADJ'), ('and', 'CCONJ'), ('freespoken', 'ADJ'), ('young', 'ADJ'), ('lady', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('very', 'ADV'), ('civil', 'ADJ'), ('behaved', 'VERB'), (' ', 'SPACE'), ('So', 'ADV'), ('I', 'PRON'), ('made', 'VERB'), ('free', 'ADJ'), ('to', 'PART'), ('wish', 'VERB'), ('her', 'PRON'), ('joy', 'NOUN'), ('\n\n', 'SPACE'), ('Was', 'AUX'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('maam', 'NOUN'), ('I', 'PRON'), ('just', 'ADV'), ('see', 'VERB'), ('him', 'PRON'), ('leaning', 'VERB'), ('back', 'ADV'), ('in', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('look', 'VERB'), ('uphe', 'ADJ'), ('never', 'ADV'), ('was', 'AUX'), ('a', 'DET'), ('gentleman', 'NOUN'), ('much', 'ADJ'), ('\n', 'SPACE'), ('for', 'ADP'), ('talking', 'VERB'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('heart', 'NOUN'), ('could', 'AUX'), ('easily', 'ADV'), ('account', 'VERB'), ('for', 'ADP'), ('his', 'PRON'), ('not', 'PART'), ('\n', 'SPACE'), ('putting', 'VERB'), ('himself', 'PRON'), ('forward', 'ADV'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('probably', 'ADV'), ('\n', 'SPACE'), ('found', 'VERB'), ('the', 'DET'), ('same', 'ADJ'), ('explanation', 'NOUN'), ('\n\n', 'SPACE'), ('Was', 'AUX'), ('there', 'PRON'), ('no', 'DET'), ('one', 'NOUN'), ('else', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('carriage', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maam', 'NOUN'), ('only', 'ADV'), ('they', 'PRON'), ('two', 'NUM'), ('\n\n', 'SPACE'), ('Do', 'AUX'), ('you', 'PRON'), ('know', 'VERB'), ('where', 'SCONJ'), ('they', 'PRON'), ('came', 'VERB'), ('from', 'ADP'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('come', 'VERB'), ('straight', 'ADV'), ('from', 'ADP'), ('town', 'NOUN'), ('as', 'SCONJ'), ('Miss', 'PROPN'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('told', 'VERB'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('are', 'AUX'), ('they', 'PRON'), ('going', 'VERB'), ('farther', 'ADV'), ('westward', 'ADV'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('maambut', 'ADV'), ('not', 'PART'), ('to', 'PART'), ('bide', 'VERB'), ('long', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('will', 'AUX'), ('soon', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('back', 'ADV'), ('again', 'ADV'), ('and', 'CCONJ'), ('then', 'ADV'), ('they', 'PRON'), ('d', 'AUX'), ('be', 'AUX'), ('sure', 'ADJ'), ('and', 'CCONJ'), ('call', 'VERB'), ('here', 'ADV'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('now', 'ADV'), ('looked', 'VERB'), ('at', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Elinor', 'PROPN'), ('knew', 'VERB'), ('better', 'ADV'), ('than', 'SCONJ'), ('to', 'PART'), ('expect', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('recognised', 'VERB'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('Lucy', 'PROPN'), ('in', 'ADP'), ('the', 'DET'), ('message', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('\n', 'SPACE'), ('very', 'ADV'), ('confident', 'ADJ'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('would', 'AUX'), ('never', 'ADV'), ('come', 'VERB'), ('near', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('She', 'PRON'), ('observed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('low', 'ADJ'), ('voice', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('that', 'SCONJ'), ('they', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('probably', 'ADV'), ('going', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('Mr', 'PROPN'), ('Pratts', 'PROPN'), ('near', 'ADP'), ('Plymouth', 'PROPN'), ('\n\n', 'SPACE'), ('Thomass', 'PROPN'), ('intelligence', 'NOUN'), ('seemed', 'VERB'), ('over', 'ADP'), (' ', 'SPACE'), ('Elinor', 'PROPN'), ('looked', 'VERB'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('if', 'SCONJ'), ('she', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('hear', 'VERB'), ('more', 'ADJ'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('you', 'PRON'), ('see', 'VERB'), ('them', 'PRON'), ('off', 'ADP'), ('before', 'SCONJ'), ('you', 'PRON'), ('came', 'VERB'), ('away', 'ADV'), ('\n\n', 'SPACE'), ('No', 'DET'), ('maamthe', 'ADJ'), ('horses', 'NOUN'), ('were', 'AUX'), ('just', 'ADV'), ('coming', 'VERB'), ('out', 'ADP'), ('but', 'CCONJ'), ('I', 'PRON'), ('\n', 'SPACE'), ('could', 'AUX'), ('not', 'PART'), ('bide', 'VERB'), ('any', 'ADV'), ('longer', 'ADV'), ('I', 'PRON'), ('was', 'AUX'), ('afraid', 'ADJ'), ('of', 'ADP'), ('being', 'AUX'), ('late', 'ADV'), ('\n\n', 'SPACE'), ('Did', 'AUX'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('look', 'VERB'), ('well', 'ADV'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('maam', 'NOUN'), ('she', 'PRON'), ('said', 'VERB'), ('how', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'ADP'), ('my', 'PRON'), ('mind', 'NOUN'), ('she', 'PRON'), ('was', 'AUX'), ('always', 'ADV'), ('a', 'DET'), ('very', 'ADV'), ('handsome', 'ADJ'), ('young', 'ADJ'), ('\n', 'SPACE'), ('ladyand', 'NOUN'), ('she', 'PRON'), ('seemed', 'VERB'), ('vastly', 'ADV'), ('contented', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('could', 'AUX'), ('think', 'VERB'), ('of', 'ADP'), ('no', 'DET'), ('other', 'ADJ'), ('question', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Thomas', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('tablecloth', 'NOUN'), ('now', 'ADV'), ('alike', 'ADJ'), ('needless', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('dismissed', 'VERB'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('already', 'ADV'), ('sent', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('eat', 'VERB'), ('nothing', 'PRON'), ('more', 'ADJ'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Elinors', 'PROPN'), ('appetites', 'NOUN'), ('were', 'AUX'), ('equally', 'ADV'), ('lost', 'VERB'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('might', 'AUX'), ('think', 'VERB'), ('herself', 'PRON'), ('very', 'ADV'), ('well', 'ADV'), ('off', 'ADP'), ('that', 'PRON'), ('with', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('uneasiness', 'NOUN'), ('as', 'SCONJ'), ('both', 'PRON'), ('her', 'PRON'), ('sisters', 'NOUN'), ('had', 'AUX'), ('lately', 'ADV'), ('experienced', 'VERB'), ('\n', 'SPACE'), ('so', 'ADV'), ('much', 'ADJ'), ('reason', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('had', 'AUX'), ('often', 'ADV'), ('had', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('careless', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('their', 'PRON'), ('meals', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('been', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('without', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('dinner', 'NOUN'), ('before', 'ADP'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('the', 'DET'), ('dessert', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('wine', 'NOUN'), ('were', 'AUX'), ('arranged', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('were', 'AUX'), ('left', 'VERB'), ('by', 'ADP'), ('themselves', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('remained', 'VERB'), ('long', 'ADV'), ('together', 'ADV'), ('in', 'ADP'), ('a', 'DET'), ('similarity', 'NOUN'), ('of', 'ADP'), ('thoughtfulness', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('silence', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('feared', 'VERB'), ('to', 'PART'), ('hazard', 'VERB'), ('any', 'DET'), ('remark', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('ventured', 'VERB'), ('not', 'PART'), ('to', 'PART'), ('offer', 'VERB'), ('consolation', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('now', 'ADV'), ('found', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('erred', 'VERB'), ('in', 'ADP'), ('relying', 'VERB'), ('on', 'ADP'), ('Elinors', 'PROPN'), ('representation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('justly', 'ADV'), ('concluded', 'VERB'), ('that', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('expressly', 'ADV'), ('softened', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('to', 'PART'), ('spare', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('from', 'ADP'), ('an', 'DET'), ('increase', 'NOUN'), ('of', 'ADP'), ('unhappiness', 'NOUN'), ('suffering', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('then', 'ADV'), ('\n', 'SPACE'), ('had', 'AUX'), ('suffered', 'VERB'), ('for', 'ADP'), ('Marianne', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('found', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('misled', 'VERB'), ('by', 'ADP'), ('the', 'DET'), ('careful', 'NOUN'), ('the', 'DET'), ('considerate', 'ADJ'), ('attention', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('daughter', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('the', 'DET'), ('attachment', 'NOUN'), ('which', 'PRON'), ('once', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('so', 'ADV'), ('well', 'ADV'), ('understood', 'VERB'), ('much', 'ADJ'), ('slighter', 'NOUN'), ('in', 'ADP'), ('reality', 'NOUN'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('wo', 'AUX'), ('nt', 'PART'), ('to', 'PART'), ('believe', 'VERB'), ('or', 'CCONJ'), ('than', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('proved', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), (' ', 'SPACE'), ('She', 'PRON'), ('feared', 'VERB'), ('that', 'SCONJ'), ('under', 'ADP'), ('this', 'DET'), ('persuasion', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('unjust', 'ADJ'), ('inattentive', 'ADJ'), ('nay', 'INTJ'), ('almost', 'ADV'), ('unkind', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Mariannes', 'PROPN'), ('affliction', 'NOUN'), ('because', 'SCONJ'), ('more', 'ADV'), ('acknowledged', 'VERB'), ('\n', 'SPACE'), ('more', 'ADV'), ('immediately', 'ADV'), ('before', 'SCONJ'), ('her', 'PRON'), ('had', 'VERB'), ('too', 'ADV'), ('much', 'ADV'), ('engrossed', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('tenderness', 'NOUN'), ('and', 'CCONJ'), ('led', 'VERB'), ('her', 'PRON'), ('away', 'ADV'), ('to', 'PART'), ('forget', 'VERB'), ('that', 'SCONJ'), ('in', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('might', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('daughter', 'NOUN'), ('suffering', 'VERB'), ('almost', 'ADV'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('certainly', 'ADV'), ('with', 'ADP'), ('less', 'ADJ'), ('selfprovocation', 'NOUN'), ('and', 'CCONJ'), ('greater', 'ADJ'), ('fortitude', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('48', 'NUM'), ('\n\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('now', 'ADV'), ('found', 'VERB'), ('the', 'DET'), ('difference', 'NOUN'), ('between', 'ADP'), ('the', 'DET'), ('expectation', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('an', 'DET'), ('unpleasant', 'ADJ'), ('event', 'NOUN'), ('however', 'ADV'), ('certain', 'ADJ'), ('the', 'DET'), ('mind', 'NOUN'), ('may', 'AUX'), ('be', 'AUX'), ('told', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('consider', 'VERB'), ('it', 'PRON'), ('and', 'CCONJ'), ('certainty', 'VERB'), ('itself', 'PRON'), (' ', 'SPACE'), ('She', 'PRON'), ('now', 'ADV'), ('found', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('herself', 'PRON'), ('she', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('admitted', 'VERB'), ('a', 'DET'), ('hope', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Edward', 'PROPN'), ('remained', 'VERB'), ('single', 'ADJ'), ('that', 'SCONJ'), ('something', 'PRON'), ('would', 'AUX'), ('occur', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('prevent', 'VERB'), ('his', 'PRON'), ('marrying', 'VERB'), ('Lucy', 'PROPN'), ('that', 'SCONJ'), ('some', 'DET'), ('resolution', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('his', 'PRON'), ('own', 'ADJ'), ('some', 'DET'), ('mediation', 'NOUN'), ('of', 'ADP'), ('friends', 'NOUN'), ('or', 'CCONJ'), ('some', 'DET'), ('more', 'ADV'), ('eligible', 'ADJ'), ('\n', 'SPACE'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('establishment', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('lady', 'NOUN'), ('would', 'AUX'), ('arise', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('assist', 'VERB'), ('the', 'DET'), ('happiness', 'NOUN'), ('of', 'ADP'), ('all', 'PRON'), (' ', 'SPACE'), ('But', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('married', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('condemned', 'VERB'), ('her', 'PRON'), ('heart', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('lurking', 'VERB'), ('flattery', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('heightened', 'VERB'), ('the', 'DET'), ('pain', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('intelligence', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('be', 'AUX'), ('married', 'VERB'), ('soon', 'ADV'), ('before', 'ADV'), ('as', 'SCONJ'), ('she', 'PRON'), ('imagined', 'VERB'), ('\n', 'SPACE'), ('he', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('in', 'ADP'), ('orders', 'NOUN'), ('and', 'CCONJ'), ('consequently', 'ADV'), ('before', 'SCONJ'), ('he', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('in', 'ADP'), ('possession', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('living', 'NOUN'), ('surprised', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('little', 'ADJ'), ('\n', 'SPACE'), ('at', 'ADP'), ('first', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('she', 'PRON'), ('soon', 'ADV'), ('saw', 'VERB'), ('how', 'SCONJ'), ('likely', 'ADJ'), ('it', 'PRON'), ('was', 'AUX'), ('that', 'SCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('selfprovident', 'ADJ'), ('care', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('haste', 'NOUN'), ('to', 'PART'), ('secure', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('should', 'AUX'), ('overlook', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('risk', 'NOUN'), ('of', 'ADP'), ('delay', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('married', 'VERB'), ('married', 'ADJ'), ('in', 'ADP'), ('town', 'NOUN'), ('and', 'CCONJ'), ('now', 'ADV'), ('hastening', 'VERB'), ('\n', 'SPACE'), ('down', 'ADP'), ('to', 'ADP'), ('her', 'PRON'), ('uncles', 'NOUN'), (' ', 'SPACE'), ('What', 'PRON'), ('had', 'AUX'), ('Edward', 'PROPN'), ('felt', 'VERB'), ('on', 'ADP'), ('being', 'AUX'), ('within', 'ADP'), ('\n', 'SPACE'), ('four', 'NUM'), ('miles', 'NOUN'), ('from', 'ADP'), ('Barton', 'PROPN'), ('on', 'ADP'), ('seeing', 'VERB'), ('her', 'PRON'), ('mothers', 'NOUN'), ('servant', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('hearing', 'VERB'), ('Lucys', 'PROPN'), ('message', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('would', 'AUX'), ('soon', 'ADV'), ('she', 'PRON'), ('supposed', 'AUX'), ('be', 'AUX'), ('settled', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('DelafordDelafordthat', 'PROPN'), ('place', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('so', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('conspired', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('her', 'PRON'), ('an', 'DET'), ('interest', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('wished', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('be', 'AUX'), ('acquainted', 'VERB'), ('with', 'ADP'), ('and', 'CCONJ'), ('yet', 'ADV'), ('desired', 'VERB'), ('to', 'PART'), ('avoid', 'VERB'), ('\n', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('an', 'DET'), ('instant', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('parsonagehouse', 'NOUN'), ('saw', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('Lucy', 'PROPN'), ('the', 'DET'), ('active', 'ADJ'), ('contriving', 'VERB'), ('manager', 'NOUN'), ('uniting', 'VERB'), ('at', 'ADP'), ('once', 'ADV'), ('\n', 'SPACE'), ('a', 'DET'), ('desire', 'NOUN'), ('of', 'ADP'), ('smart', 'ADJ'), ('appearance', 'NOUN'), ('with', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('frugality', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('ashamed', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('suspected', 'VERB'), ('of', 'ADP'), ('half', 'DET'), ('her', 'PRON'), ('economical', 'ADJ'), ('practices', 'NOUN'), ('\n', 'SPACE'), ('pursuing', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('interest', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('thought', 'NOUN'), ('courting', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('favour', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('and', 'CCONJ'), ('of', 'ADP'), ('every', 'DET'), ('\n', 'SPACE'), ('wealthy', 'ADJ'), ('friend', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('Edwardshe', 'PROPN'), ('knew', 'VERB'), ('not', 'PART'), ('what', 'PRON'), ('she', 'PRON'), ('saw', 'VERB'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('what', 'PRON'), ('she', 'PRON'), ('wished', 'VERB'), ('to', 'PART'), ('seehappy', 'ADJ'), ('or', 'CCONJ'), ('unhappynothing', 'NOUN'), ('\n', 'SPACE'), ('pleased', 'VERB'), ('her', 'PRON'), ('she', 'PRON'), ('turned', 'VERB'), ('away', 'ADV'), ('her', 'PRON'), ('head', 'NOUN'), ('from', 'ADP'), ('every', 'DET'), ('sketch', 'NOUN'), ('of', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('flattered', 'VERB'), ('herself', 'PRON'), ('that', 'SCONJ'), ('some', 'DET'), ('one', 'NUM'), ('of', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('connections', 'NOUN'), ('in', 'ADP'), ('London', 'PROPN'), ('would', 'AUX'), ('write', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('to', 'PART'), ('announce', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('event', 'NOUN'), ('and', 'CCONJ'), ('give', 'VERB'), ('farther', 'ADV'), ('particularsbut', 'ADJ'), ('day', 'NOUN'), ('after', 'SCONJ'), ('\n', 'SPACE'), ('day', 'NOUN'), ('passed', 'VERB'), ('off', 'ADP'), ('and', 'CCONJ'), ('brought', 'VERB'), ('no', 'DET'), ('letter', 'NOUN'), ('no', 'DET'), ('tidings', 'NOUN'), ('\n', 'SPACE'), ('Though', 'SCONJ'), ('uncertain', 'ADJ'), ('that', 'SCONJ'), ('any', 'DET'), ('one', 'NOUN'), ('were', 'AUX'), ('to', 'PART'), ('blame', 'VERB'), ('she', 'PRON'), ('found', 'VERB'), ('\n', 'SPACE'), ('fault', 'NOUN'), ('with', 'ADP'), ('every', 'DET'), ('absent', 'ADJ'), ('friend', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('all', 'ADV'), ('thoughtless', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('indolent', 'ADJ'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('do', 'AUX'), ('you', 'PRON'), ('write', 'VERB'), ('to', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('maam', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('an', 'DET'), ('inquiry', 'NOUN'), ('which', 'PRON'), ('sprung', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('impatience', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('to', 'PART'), ('have', 'VERB'), ('something', 'PRON'), ('going', 'VERB'), ('on', 'ADP'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('wrote', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('my', 'PRON'), ('love', 'NOUN'), ('last', 'ADJ'), ('week', 'NOUN'), ('and', 'CCONJ'), ('rather', 'ADV'), ('\n', 'SPACE'), ('expect', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('than', 'SCONJ'), ('to', 'PART'), ('hear', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('again', 'ADV'), (' ', 'SPACE'), ('I', 'PRON'), ('earnestly', 'ADV'), ('\n', 'SPACE'), ('pressed', 'VERB'), ('his', 'PRON'), ('coming', 'VERB'), ('to', 'ADP'), ('us', 'PRON'), ('and', 'CCONJ'), ('should', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('surprised', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('see', 'VERB'), ('him', 'PRON'), ('walk', 'VERB'), ('in', 'ADP'), ('today', 'NOUN'), ('or', 'CCONJ'), ('tomorrow', 'NOUN'), ('or', 'CCONJ'), ('any', 'DET'), ('day', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'PRON'), ('was', 'AUX'), ('gaining', 'VERB'), ('something', 'PRON'), ('something', 'PRON'), ('to', 'PART'), ('look', 'VERB'), ('forward', 'ADV'), ('to', 'ADP'), ('\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('must', 'AUX'), ('have', 'VERB'), ('some', 'DET'), ('information', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('\n\n', 'SPACE'), ('Scarcely', 'PROPN'), ('had', 'AUX'), ('she', 'PRON'), ('so', 'ADV'), ('determined', 'VERB'), ('it', 'PRON'), ('when', 'SCONJ'), ('the', 'DET'), ('figure', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('on', 'ADP'), ('horseback', 'NOUN'), ('drew', 'VERB'), ('her', 'PRON'), ('eyes', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('stopt', 'VERB'), ('at', 'ADP'), ('their', 'PRON'), ('gate', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('gentleman', 'NOUN'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('himself', 'PRON'), (' ', 'SPACE'), ('Now', 'ADV'), ('she', 'PRON'), ('could', 'AUX'), ('hear', 'VERB'), ('more', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('trembled', 'VERB'), ('in', 'ADP'), ('expectation', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), (' ', 'SPACE'), ('Butit', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('NOT', 'PART'), ('Colonel', 'PROPN'), ('Brandonneither', 'PROPN'), ('his', 'PRON'), ('airnor', 'NOUN'), ('his', 'PRON'), ('height', 'NOUN'), ('\n', 'SPACE'), ('Were', 'AUX'), ('it', 'PRON'), ('possible', 'ADJ'), ('she', 'PRON'), ('must', 'AUX'), ('say', 'VERB'), ('it', 'PRON'), ('must', 'AUX'), ('be', 'AUX'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('She', 'PRON'), ('looked', 'VERB'), ('again', 'ADV'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('just', 'ADV'), ('dismountedshe', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('mistakenit', 'ADJ'), ('WAS', 'PROPN'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('She', 'PRON'), ('moved', 'VERB'), ('away', 'ADV'), ('and', 'CCONJ'), ('sat', 'VERB'), ('down', 'ADP'), ('\n', 'SPACE'), ('He', 'PRON'), ('comes', 'VERB'), ('from', 'ADP'), ('Mr', 'PROPN'), ('Pratts', 'PROPN'), ('purposely', 'ADV'), ('to', 'PART'), ('see', 'VERB'), ('us', 'PRON'), (' ', 'SPACE'), ('I', 'PRON'), ('WILL', 'AUX'), ('be', 'AUX'), ('\n', 'SPACE'), ('calm', 'ADJ'), ('I', 'PRON'), ('WILL', 'AUX'), ('be', 'AUX'), ('mistress', 'NOUN'), ('of', 'ADP'), ('myself', 'PRON'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('she', 'PRON'), ('perceived', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('others', 'NOUN'), ('were', 'AUX'), ('likewise', 'ADV'), ('\n', 'SPACE'), ('aware', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('mistake', 'NOUN'), (' ', 'SPACE'), ('She', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('change', 'NOUN'), ('colour', 'NOUN'), ('saw', 'VERB'), ('them', 'PRON'), ('look', 'VERB'), ('at', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('whisper', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('few', 'ADJ'), ('sentences', 'NOUN'), ('to', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('speakand', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('them', 'PRON'), ('understand', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('she', 'PRON'), ('hoped', 'VERB'), ('no', 'DET'), ('coolness', 'NOUN'), ('no', 'DET'), ('slight', 'NOUN'), ('would', 'AUX'), ('appear', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('their', 'PRON'), ('behaviour', 'NOUN'), ('to', 'PART'), ('himbut', 'INTJ'), ('she', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('utterance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('obliged', 'VERB'), ('to', 'PART'), ('leave', 'VERB'), ('all', 'PRON'), ('to', 'ADP'), ('their', 'PRON'), ('own', 'ADJ'), ('discretion', 'NOUN'), ('\n\n', 'SPACE'), ('Not', 'PART'), ('a', 'DET'), ('syllable', 'NOUN'), ('passed', 'VERB'), ('aloud', 'ADV'), (' ', 'SPACE'), ('They', 'PRON'), ('all', 'PRON'), ('waited', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('silence', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('appearance', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('visitor', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('footsteps', 'NOUN'), ('were', 'AUX'), ('heard', 'VERB'), ('along', 'ADP'), ('the', 'DET'), ('gravel', 'NOUN'), ('path', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('the', 'DET'), ('passage', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('another', 'PRON'), ('he', 'PRON'), ('was', 'AUX'), ('before', 'ADP'), ('them', 'PRON'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('countenance', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('entered', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('\n', 'SPACE'), ('too', 'ADV'), ('happy', 'ADJ'), ('even', 'ADV'), ('for', 'ADP'), ('Elinor', 'PROPN'), (' ', 'SPACE'), ('His', 'PRON'), ('complexion', 'NOUN'), ('was', 'AUX'), ('white', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('agitation', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('looked', 'VERB'), ('as', 'ADP'), ('if', 'SCONJ'), ('fearful', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('reception', 'NOUN'), ('and', 'CCONJ'), ('conscious', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('merited', 'VERB'), ('no', 'DET'), ('kind', 'ADV'), ('one', 'NUM'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('however', 'ADV'), ('conforming', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('trusted', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('wishes', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('daughter', 'NOUN'), ('by', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('then', 'ADV'), ('meant', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('warmth', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('guided', 'VERB'), ('in', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('met', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('look', 'NOUN'), ('of', 'ADP'), ('forced', 'VERB'), ('complacency', 'NOUN'), ('gave', 'VERB'), ('him', 'PRON'), ('her', 'PRON'), ('hand', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('wished', 'VERB'), ('him', 'PRON'), ('joy', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('coloured', 'VERB'), ('and', 'CCONJ'), ('stammered', 'VERB'), ('out', 'ADP'), ('an', 'DET'), ('unintelligible', 'ADJ'), ('reply', 'NOUN'), ('\n', 'SPACE'), ('Elinors', 'PROPN'), ('lips', 'NOUN'), ('had', 'AUX'), ('moved', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('and', 'CCONJ'), ('when', 'SCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('moment', 'NOUN'), ('of', 'ADP'), ('action', 'NOUN'), ('was', 'AUX'), ('over', 'ADP'), ('she', 'PRON'), ('wished', 'VERB'), ('that', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('shaken', 'VERB'), ('\n', 'SPACE'), ('hands', 'NOUN'), ('with', 'ADP'), ('him', 'PRON'), ('too', 'ADV'), (' ', 'SPACE'), ('But', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('then', 'ADV'), ('too', 'ADV'), ('late', 'ADJ'), ('and', 'CCONJ'), ('with', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('countenance', 'NOUN'), ('meaning', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('open', 'ADJ'), ('she', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('again', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('talked', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('weather', 'NOUN'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('had', 'AUX'), ('retreated', 'VERB'), ('as', 'ADV'), ('much', 'ADV'), ('as', 'ADP'), ('possible', 'ADJ'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('sight', 'NOUN'), ('to', 'PART'), ('conceal', 'VERB'), ('her', 'PRON'), ('distress', 'NOUN'), ('and', 'CCONJ'), ('Margaret', 'PROPN'), ('\n', 'SPACE'), ('understanding', 'VERB'), ('some', 'DET'), ('part', 'NOUN'), ('but', 'CCONJ'), ('not', 'PART'), ('the', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('case', 'NOUN'), ('\n', 'SPACE'), ('thought', 'VERB'), ('it', 'PRON'), ('incumbent', 'ADJ'), ('on', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('dignified', 'ADJ'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('took', 'VERB'), ('a', 'DET'), ('seat', 'NOUN'), ('as', 'ADV'), ('far', 'ADV'), ('from', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('she', 'PRON'), ('could', 'AUX'), ('and', 'CCONJ'), ('maintained', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('strict', 'ADJ'), ('silence', 'NOUN'), ('\n\n', 'SPACE'), ('When', 'SCONJ'), ('Elinor', 'PROPN'), ('had', 'AUX'), ('ceased', 'VERB'), ('to', 'PART'), ('rejoice', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('dryness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('season', 'NOUN'), ('a', 'DET'), ('very', 'ADV'), ('awful', 'ADJ'), ('pause', 'NOUN'), ('took', 'VERB'), ('place', 'NOUN'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('put', 'VERB'), ('\n', 'SPACE'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('who', 'PRON'), ('felt', 'VERB'), ('obliged', 'VERB'), ('to', 'PART'), ('hope', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('left', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('very', 'ADV'), ('well', 'ADV'), (' ', 'SPACE'), ('In', 'ADP'), ('a', 'DET'), ('hurried', 'ADJ'), ('manner', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('replied', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('affirmative', 'ADJ'), ('\n\n', 'SPACE'), ('Another', 'DET'), ('pause', 'NOUN'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('resolving', 'VERB'), ('to', 'PART'), ('exert', 'VERB'), ('herself', 'PRON'), ('though', 'ADV'), ('fearing', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('sound', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('voice', 'NOUN'), ('now', 'ADV'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Is', 'AUX'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('at', 'ADP'), ('Longstaple', 'PROPN'), ('\n\n', 'SPACE'), ('At', 'ADP'), ('Longstaple', 'PROPN'), ('he', 'PRON'), ('replied', 'VERB'), ('with', 'ADP'), ('an', 'DET'), ('air', 'NOUN'), ('of', 'ADP'), ('surprise', 'NOUN'), ('\n', 'SPACE'), ('No', 'INTJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('is', 'AUX'), ('in', 'ADP'), ('town', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('meant', 'VERB'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('taking', 'VERB'), ('up', 'ADP'), ('some', 'DET'), ('work', 'NOUN'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('table', 'NOUN'), ('to', 'PART'), ('inquire', 'VERB'), ('for', 'ADP'), ('Mrs', 'PROPN'), ('EDWARD', 'PROPN'), ('Ferrars', 'NOUN'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('dared', 'AUX'), ('not', 'PART'), ('look', 'VERB'), ('upbut', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('both', 'PRON'), ('\n', 'SPACE'), ('turned', 'VERB'), ('their', 'PRON'), ('eyes', 'NOUN'), ('on', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('coloured', 'VERB'), ('seemed', 'VERB'), ('perplexed', 'VERB'), ('\n', 'SPACE'), ('looked', 'VERB'), ('doubtingly', 'ADV'), ('and', 'CCONJ'), ('after', 'SCONJ'), ('some', 'DET'), ('hesitation', 'NOUN'), ('said', 'VERB'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('you', 'PRON'), ('meanmy', 'PROPN'), ('brotheryou', 'PROPN'), ('mean', 'VERB'), ('MrsMrs', 'PROPN'), ('\n', 'SPACE'), ('ROBERT', 'PROPN'), ('Ferrars', 'PROPN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Robert', 'PROPN'), ('Ferrarswas', 'PROPN'), ('repeated', 'VERB'), ('by', 'ADP'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('mother', 'NOUN'), ('in', 'ADP'), ('an', 'DET'), ('accent', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('amazementand', 'NOUN'), ('though', 'SCONJ'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('speak', 'VERB'), ('even', 'ADV'), ('HER', 'PRON'), ('eyes', 'NOUN'), ('were', 'AUX'), ('fixed', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('impatient', 'ADJ'), ('wonder', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('rose', 'VERB'), ('from', 'ADP'), ('his', 'PRON'), ('seat', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('walked', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('window', 'NOUN'), ('apparently', 'ADV'), ('from', 'ADP'), ('not', 'PART'), ('knowing', 'VERB'), ('\n', 'SPACE'), ('what', 'PRON'), ('to', 'PART'), ('do', 'VERB'), ('took', 'VERB'), ('up', 'ADP'), ('a', 'DET'), ('pair', 'NOUN'), ('of', 'ADP'), ('scissors', 'NOUN'), ('that', 'PRON'), ('lay', 'VERB'), ('there', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('spoiling', 'VERB'), ('both', 'CCONJ'), ('them', 'PRON'), ('and', 'CCONJ'), ('their', 'PRON'), ('sheath', 'NOUN'), ('by', 'ADP'), ('cutting', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('latter', 'ADJ'), ('to', 'ADP'), ('pieces', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('spoke', 'VERB'), ('said', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('hurried', 'ADJ'), ('voice', 'NOUN'), ('\n\n', 'SPACE'), ('Perhaps', 'ADV'), ('you', 'PRON'), ('do', 'AUX'), ('not', 'PART'), ('knowyou', 'VERB'), ('may', 'AUX'), ('not', 'PART'), ('have', 'AUX'), ('heard', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('my', 'PRON'), ('brother', 'NOUN'), ('is', 'AUX'), ('lately', 'ADV'), ('married', 'VERB'), ('toto', 'NOUN'), ('the', 'DET'), ('youngestto', 'NOUN'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('words', 'NOUN'), ('were', 'AUX'), ('echoed', 'VERB'), ('with', 'ADP'), ('unspeakable', 'ADJ'), ('astonishment', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('all', 'PRON'), ('but', 'SCONJ'), ('Elinor', 'PROPN'), ('who', 'PRON'), ('sat', 'VERB'), ('with', 'ADP'), ('her', 'PRON'), ('head', 'NOUN'), ('leaning', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('work', 'NOUN'), ('in', 'ADP'), ('a', 'DET'), ('state', 'NOUN'), ('of', 'ADP'), ('such', 'ADJ'), ('agitation', 'NOUN'), ('as', 'SCONJ'), ('made', 'VERB'), ('her', 'PRON'), ('hardly', 'ADV'), ('\n', 'SPACE'), ('know', 'VERB'), ('where', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('\n\n', 'SPACE'), ('Yes', 'INTJ'), ('said', 'VERB'), ('he', 'PRON'), ('they', 'PRON'), ('were', 'AUX'), ('married', 'VERB'), ('last', 'ADJ'), ('week', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('are', 'AUX'), ('now', 'ADV'), ('at', 'ADP'), ('Dawlish', 'PROPN'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('could', 'AUX'), ('sit', 'VERB'), ('it', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), (' ', 'SPACE'), ('She', 'PRON'), ('almost', 'ADV'), ('ran', 'VERB'), ('\n', 'SPACE'), ('out', 'ADP'), ('of', 'ADP'), ('the', 'DET'), ('room', 'NOUN'), ('and', 'CCONJ'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('door', 'NOUN'), ('was', 'AUX'), ('closed', 'VERB'), ('\n', 'SPACE'), ('burst', 'NOUN'), ('into', 'ADP'), ('tears', 'NOUN'), ('of', 'ADP'), ('joy', 'NOUN'), ('which', 'PRON'), ('at', 'ADP'), ('first', 'ADV'), ('she', 'PRON'), ('thought', 'VERB'), ('would', 'AUX'), ('\n', 'SPACE'), ('never', 'ADV'), ('cease', 'VERB'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('who', 'PRON'), ('had', 'VERB'), ('till', 'SCONJ'), ('then', 'ADV'), ('looked', 'VERB'), ('any', 'PRON'), ('where', 'SCONJ'), ('\n', 'SPACE'), ('rather', 'ADV'), ('than', 'ADP'), ('at', 'ADP'), ('her', 'PRON'), ('saw', 'VERB'), ('her', 'PRON'), ('hurry', 'VERB'), ('away', 'ADV'), ('and', 'CCONJ'), ('perhaps', 'ADV'), ('saw', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('even', 'ADV'), ('heard', 'VERB'), ('her', 'PRON'), ('emotion', 'NOUN'), ('for', 'ADP'), ('immediately', 'ADV'), ('afterwards', 'ADV'), ('\n', 'SPACE'), ('he', 'PRON'), ('fell', 'VERB'), ('into', 'ADP'), ('a', 'DET'), ('reverie', 'NOUN'), ('which', 'PRON'), ('no', 'PRON'), ('remarks', 'VERB'), ('no', 'DET'), ('inquiries', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('affectionate', 'ADJ'), ('address', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('could', 'AUX'), ('penetrate', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('without', 'ADP'), ('saying', 'VERB'), ('a', 'DET'), ('word', 'NOUN'), ('quitted', 'VERB'), ('the', 'DET'), ('room', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('walked', 'VERB'), ('out', 'ADP'), ('towards', 'ADP'), ('the', 'DET'), ('villageleaving', 'VERB'), ('the', 'DET'), ('others', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('greatest', 'ADJ'), ('astonishment', 'NOUN'), ('and', 'CCONJ'), ('perplexity', 'NOUN'), ('on', 'ADP'), ('a', 'DET'), ('change', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('situation', 'NOUN'), ('so', 'ADV'), ('wonderful', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('suddena', 'NOUN'), ('perplexity', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('they', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('lessening', 'NOUN'), ('but', 'CCONJ'), ('by', 'ADP'), ('their', 'PRON'), ('\n', 'SPACE'), ('own', 'ADJ'), ('conjectures', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('49', 'NUM'), ('\n\n\n', 'SPACE'), ('Unaccountable', 'ADJ'), ('however', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('circumstances', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('release', 'NOUN'), ('might', 'AUX'), ('appear', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('whole', 'ADJ'), ('family', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('certain', 'ADJ'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('free', 'ADJ'), ('and', 'CCONJ'), ('to', 'ADP'), ('what', 'DET'), ('purpose', 'NOUN'), ('that', 'SCONJ'), ('freedom', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('be', 'AUX'), ('employed', 'VERB'), ('was', 'AUX'), ('easily', 'ADV'), ('predetermined', 'VERB'), ('by', 'ADP'), ('allfor', 'PROPN'), ('after', 'ADP'), ('\n', 'SPACE'), ('experiencing', 'VERB'), ('the', 'DET'), ('blessings', 'NOUN'), ('of', 'ADP'), ('ONE', 'NUM'), ('imprudent', 'NOUN'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('contracted', 'VERB'), ('without', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('consent', 'VERB'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('already', 'ADV'), ('\n', 'SPACE'), ('done', 'VERB'), ('for', 'ADP'), ('more', 'ADJ'), ('than', 'ADP'), ('four', 'NUM'), ('years', 'NOUN'), ('nothing', 'PRON'), ('less', 'ADJ'), ('could', 'AUX'), ('be', 'AUX'), ('expected', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('failure', 'NOUN'), ('of', 'ADP'), ('THAT', 'PRON'), ('than', 'ADP'), ('the', 'DET'), ('immediate', 'ADJ'), ('contraction', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('another', 'DET'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('errand', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('in', 'ADP'), ('fact', 'NOUN'), ('was', 'AUX'), ('a', 'DET'), ('simple', 'ADJ'), ('one', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('to', 'PART'), ('ask', 'VERB'), ('Elinor', 'PROPN'), ('to', 'PART'), ('marry', 'VERB'), ('himand', 'NOUN'), ('considering', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('altogether', 'ADV'), ('inexperienced', 'ADJ'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('question', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('strange', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('should', 'AUX'), ('feel', 'VERB'), ('so', 'ADV'), ('uncomfortable', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('present', 'ADJ'), ('case', 'NOUN'), ('as', 'SCONJ'), ('he', 'PRON'), ('really', 'ADV'), ('did', 'VERB'), ('so', 'ADV'), ('much', 'ADV'), ('in', 'ADP'), ('need', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('encouragement', 'NOUN'), ('and', 'CCONJ'), ('fresh', 'ADJ'), ('air', 'NOUN'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('soon', 'ADV'), ('he', 'PRON'), ('had', 'AUX'), ('walked', 'VERB'), ('himself', 'PRON'), ('into', 'ADP'), ('the', 'DET'), ('proper', 'ADJ'), ('\n', 'SPACE'), ('resolution', 'NOUN'), ('however', 'ADV'), ('how', 'SCONJ'), ('soon', 'ADV'), ('an', 'DET'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('exercising', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('occurred', 'VERB'), ('in', 'ADP'), ('what', 'DET'), ('manner', 'NOUN'), ('he', 'PRON'), ('expressed', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('how', 'SCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('received', 'VERB'), ('need', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('particularly', 'ADV'), ('told', 'VERB'), ('\n', 'SPACE'), ('This', 'PRON'), ('only', 'ADV'), ('need', 'VERB'), ('be', 'AUX'), ('saidthat', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('all', 'PRON'), ('sat', 'VERB'), ('down', 'ADP'), ('to', 'ADP'), ('\n', 'SPACE'), ('table', 'NOUN'), ('at', 'ADP'), ('four', 'NUM'), ('oclock', 'NOUN'), ('about', 'ADV'), ('three', 'NUM'), ('hours', 'NOUN'), ('after', 'SCONJ'), ('his', 'PRON'), ('arrival', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('secured', 'VERB'), ('his', 'PRON'), ('lady', 'NOUN'), ('engaged', 'VERB'), ('her', 'PRON'), ('mothers', 'NOUN'), ('consent', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('was', 'AUX'), ('not', 'PART'), ('only', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('rapturous', 'ADJ'), ('profession', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('lover', 'NOUN'), ('but', 'CCONJ'), ('in', 'ADP'), ('the', 'DET'), ('reality', 'NOUN'), ('of', 'ADP'), ('reason', 'NOUN'), ('and', 'CCONJ'), ('truth', 'NOUN'), ('\n', 'SPACE'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('happiest', 'ADJ'), ('of', 'ADP'), ('men', 'NOUN'), (' ', 'SPACE'), ('His', 'PRON'), ('situation', 'NOUN'), ('indeed', 'ADV'), ('was', 'AUX'), ('\n', 'SPACE'), ('more', 'ADJ'), ('than', 'SCONJ'), ('commonly', 'ADV'), ('joyful', 'ADJ'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('more', 'ADJ'), ('than', 'ADP'), ('the', 'DET'), ('ordinary', 'ADJ'), ('\n', 'SPACE'), ('triumph', 'NOUN'), ('of', 'ADP'), ('accepted', 'VERB'), ('love', 'NOUN'), ('to', 'PART'), ('swell', 'VERB'), ('his', 'PRON'), ('heart', 'NOUN'), ('and', 'CCONJ'), ('raise', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('spirits', 'NOUN'), (' ', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('released', 'VERB'), ('without', 'ADP'), ('any', 'DET'), ('reproach', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('himself', 'PRON'), ('from', 'ADP'), ('an', 'DET'), ('entanglement', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('long', 'ADV'), ('formed', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('misery', 'NOUN'), ('from', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('whom', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('long', 'ADV'), ('ceased', 'VERB'), ('to', 'PART'), ('love', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('elevated', 'VERB'), ('at', 'ADP'), ('once', 'ADV'), ('to', 'ADP'), ('that', 'DET'), ('security', 'NOUN'), ('with', 'ADP'), ('another', 'PRON'), ('\n', 'SPACE'), ('which', 'PRON'), ('he', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('thought', 'VERB'), ('of', 'ADP'), ('almost', 'ADV'), ('with', 'ADP'), ('despair', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('learnt', 'VERB'), ('to', 'PART'), ('consider', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('desire', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('brought', 'VERB'), ('not', 'PART'), ('from', 'ADP'), ('doubt', 'NOUN'), ('or', 'CCONJ'), ('suspense', 'NOUN'), ('but', 'CCONJ'), ('from', 'ADP'), ('\n', 'SPACE'), ('misery', 'NOUN'), ('to', 'PART'), ('happinessand', 'VERB'), ('the', 'DET'), ('change', 'NOUN'), ('was', 'AUX'), ('openly', 'ADV'), ('spoken', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('genuine', 'ADJ'), ('flowing', 'VERB'), ('grateful', 'ADJ'), ('cheerfulness', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('his', 'PRON'), ('friends', 'NOUN'), ('had', 'AUX'), ('never', 'ADV'), ('witnessed', 'VERB'), ('in', 'ADP'), ('him', 'PRON'), ('before', 'SCONJ'), ('\n\n', 'SPACE'), ('His', 'PRON'), ('heart', 'NOUN'), ('was', 'AUX'), ('now', 'ADV'), ('open', 'ADJ'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('all', 'DET'), ('its', 'PRON'), ('weaknesses', 'NOUN'), ('\n', 'SPACE'), ('all', 'DET'), ('its', 'PRON'), ('errors', 'NOUN'), ('confessed', 'VERB'), ('and', 'CCONJ'), ('his', 'PRON'), ('first', 'ADJ'), ('boyish', 'ADJ'), ('attachment', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Lucy', 'PROPN'), ('treated', 'VERB'), ('with', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('philosophic', 'ADJ'), ('dignity', 'NOUN'), ('of', 'ADP'), ('twentyfour', 'NOUN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('foolish', 'ADJ'), ('idle', 'ADJ'), ('inclination', 'NOUN'), ('on', 'ADP'), ('my', 'PRON'), ('side', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('he', 'PRON'), ('the', 'DET'), ('consequence', 'NOUN'), ('of', 'ADP'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('want', 'VERB'), ('of', 'ADP'), ('employment', 'NOUN'), (' ', 'SPACE'), ('Had', 'AUX'), ('my', 'PRON'), ('brother', 'NOUN'), ('given', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('some', 'DET'), ('active', 'ADJ'), ('profession', 'NOUN'), ('when', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('removed', 'VERB'), ('at', 'ADP'), ('eighteen', 'NUM'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('care', 'NOUN'), ('of', 'ADP'), ('Mr', 'PROPN'), ('Pratt', 'PROPN'), ('I', 'PRON'), ('thinknay', 'VERB'), ('I', 'PRON'), ('am', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('never', 'ADV'), ('have', 'AUX'), ('happened', 'VERB'), ('for', 'ADP'), ('though', 'SCONJ'), ('I', 'PRON'), ('left', 'VERB'), ('Longstaple', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('what', 'PRON'), ('I', 'PRON'), ('thought', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('a', 'DET'), ('most', 'ADV'), ('unconquerable', 'ADJ'), ('\n', 'SPACE'), ('preference', 'NOUN'), ('for', 'ADP'), ('his', 'PRON'), ('niece', 'NOUN'), ('yet', 'ADV'), ('had', 'AUX'), ('I', 'PRON'), ('then', 'ADV'), ('had', 'VERB'), ('any', 'DET'), ('pursuit', 'NOUN'), ('\n', 'SPACE'), ('any', 'DET'), ('object', 'NOUN'), ('to', 'PART'), ('engage', 'VERB'), ('my', 'PRON'), ('time', 'NOUN'), ('and', 'CCONJ'), ('keep', 'VERB'), ('me', 'PRON'), ('at', 'ADP'), ('a', 'DET'), ('distance', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('her', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('months', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('very', 'ADV'), ('soon', 'ADV'), ('have', 'AUX'), ('\n', 'SPACE'), ('outgrown', 'VERB'), ('the', 'DET'), ('fancied', 'ADJ'), ('attachment', 'NOUN'), ('especially', 'ADV'), ('by', 'ADP'), ('mixing', 'VERB'), ('\n', 'SPACE'), ('more', 'ADJ'), ('with', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('as', 'SCONJ'), ('in', 'ADP'), ('such', 'ADJ'), ('case', 'NOUN'), ('I', 'PRON'), ('must', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('But', 'CCONJ'), ('instead', 'ADV'), ('of', 'ADP'), ('having', 'VERB'), ('any', 'DET'), ('thing', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('instead', 'ADV'), ('of', 'ADP'), ('having', 'VERB'), ('any', 'DET'), ('\n', 'SPACE'), ('profession', 'NOUN'), ('chosen', 'VERB'), ('for', 'ADP'), ('me', 'PRON'), ('or', 'CCONJ'), ('being', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('chuse', 'VERB'), ('any', 'DET'), ('myself', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('returned', 'VERB'), ('home', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('completely', 'ADV'), ('idle', 'ADJ'), ('and', 'CCONJ'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('\n', 'SPACE'), ('twelvemonth', 'NOUN'), ('afterwards', 'ADV'), ('I', 'PRON'), ('had', 'AUX'), ('not', 'PART'), ('even', 'ADV'), ('the', 'DET'), ('nominal', 'ADJ'), ('employment', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('belonging', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('university', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('given', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('I', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('entered', 'VERB'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('till', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('nineteen', 'NUM'), ('\n', 'SPACE'), ('I', 'PRON'), ('had', 'VERB'), ('therefore', 'ADV'), ('nothing', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('but', 'CCONJ'), ('to', 'PART'), ('fancy', 'VERB'), ('\n', 'SPACE'), ('myself', 'PRON'), ('in', 'ADP'), ('love', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('my', 'PRON'), ('mother', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('make', 'VERB'), ('my', 'PRON'), ('home', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('every', 'DET'), ('respect', 'NOUN'), ('comfortable', 'ADJ'), ('as', 'SCONJ'), ('I', 'PRON'), ('had', 'VERB'), ('no', 'DET'), ('friend', 'NOUN'), ('\n', 'SPACE'), ('no', 'DET'), ('companion', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('disliked', 'VERB'), ('new', 'ADJ'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('unnatural', 'ADJ'), ('for', 'SCONJ'), ('me', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('very', 'ADV'), ('often', 'ADV'), ('at', 'ADP'), ('Longstaple', 'PROPN'), ('\n', 'SPACE'), ('where', 'SCONJ'), ('I', 'PRON'), ('always', 'ADV'), ('felt', 'VERB'), ('myself', 'PRON'), ('at', 'ADP'), ('home', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('always', 'ADV'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('a', 'DET'), ('welcome', 'NOUN'), ('and', 'CCONJ'), ('accordingly', 'ADV'), ('I', 'PRON'), ('spent', 'VERB'), ('the', 'DET'), ('greatest', 'ADJ'), ('part', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('my', 'PRON'), ('time', 'NOUN'), ('there', 'ADV'), ('from', 'ADP'), ('eighteen', 'NUM'), ('to', 'PART'), ('nineteen', 'NUM'), ('Lucy', 'PROPN'), ('appeared', 'VERB'), ('\n', 'SPACE'), ('everything', 'PRON'), ('that', 'PRON'), ('was', 'AUX'), ('amiable', 'ADJ'), ('and', 'CCONJ'), ('obliging', 'ADJ'), (' ', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('pretty', 'ADJ'), ('\n', 'SPACE'), ('tooat', 'NOUN'), ('least', 'ADJ'), ('I', 'PRON'), ('thought', 'VERB'), ('so', 'ADV'), ('THEN', 'ADV'), ('and', 'CCONJ'), ('I', 'PRON'), ('had', 'AUX'), ('seen', 'VERB'), ('so', 'ADV'), ('little', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('other', 'ADJ'), ('women', 'NOUN'), ('that', 'PRON'), ('I', 'PRON'), ('could', 'AUX'), ('make', 'VERB'), ('no', 'DET'), ('comparisons', 'NOUN'), ('and', 'CCONJ'), ('see', 'VERB'), ('\n', 'SPACE'), ('no', 'DET'), ('defects', 'NOUN'), (' ', 'SPACE'), ('Considering', 'VERB'), ('everything', 'PRON'), ('therefore', 'ADV'), ('I', 'PRON'), ('hope', 'VERB'), ('\n', 'SPACE'), ('foolish', 'ADJ'), ('as', 'SCONJ'), ('our', 'PRON'), ('engagement', 'NOUN'), ('was', 'AUX'), ('foolish', 'ADJ'), ('as', 'SCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('since', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('every', 'DET'), ('way', 'NOUN'), ('been', 'AUX'), ('proved', 'VERB'), ('it', 'PRON'), ('was', 'AUX'), ('not', 'PART'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('an', 'DET'), ('unnatural', 'ADJ'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('an', 'DET'), ('inexcusable', 'ADJ'), ('piece', 'NOUN'), ('of', 'ADP'), ('folly', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('change', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('hours', 'NOUN'), ('had', 'AUX'), ('wrought', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('minds', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('happiness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('was', 'AUX'), ('suchso', 'PROPN'), ('greatas', 'NOUN'), ('\n', 'SPACE'), ('promised', 'VERB'), ('them', 'PRON'), ('all', 'DET'), ('the', 'DET'), ('satisfaction', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('sleepless', 'ADJ'), ('night', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('too', 'ADV'), ('happy', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('comfortable', 'ADJ'), ('knew', 'VERB'), ('not', 'PART'), ('how', 'SCONJ'), ('\n', 'SPACE'), ('to', 'PART'), ('love', 'VERB'), ('Edward', 'PROPN'), ('nor', 'CCONJ'), ('praise', 'VERB'), ('Elinor', 'PROPN'), ('enough', 'ADV'), ('how', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('enough', 'ADJ'), ('\n', 'SPACE'), ('thankful', 'ADJ'), ('for', 'ADP'), ('his', 'PRON'), ('release', 'NOUN'), ('without', 'ADP'), ('wounding', 'VERB'), ('his', 'PRON'), ('delicacy', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('how', 'SCONJ'), ('at', 'ADP'), ('once', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('them', 'PRON'), ('leisure', 'NOUN'), ('for', 'ADP'), ('unrestrained', 'ADJ'), ('\n', 'SPACE'), ('conversation', 'NOUN'), ('together', 'ADV'), ('and', 'CCONJ'), ('yet', 'ADV'), ('enjoy', 'VERB'), ('as', 'SCONJ'), ('she', 'PRON'), ('wished', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('sight', 'NOUN'), ('and', 'CCONJ'), ('society', 'NOUN'), ('of', 'ADP'), ('both', 'DET'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('speak', 'VERB'), ('HER', 'PRON'), ('happiness', 'NOUN'), ('only', 'ADV'), ('by', 'ADP'), ('tears', 'NOUN'), ('\n', 'SPACE'), ('Comparisons', 'PROPN'), ('would', 'AUX'), ('occurregrets', 'VERB'), ('would', 'AUX'), ('ariseand', 'VERB'), ('her', 'PRON'), ('joy', 'NOUN'), ('\n', 'SPACE'), ('though', 'ADV'), ('sincere', 'ADJ'), ('as', 'ADP'), ('her', 'PRON'), ('love', 'NOUN'), ('for', 'ADP'), ('her', 'PRON'), ('sister', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('a', 'DET'), ('kind', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('give', 'VERB'), ('her', 'PRON'), ('neither', 'PRON'), ('spirits', 'NOUN'), ('nor', 'CCONJ'), ('language', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('Elinorhow', 'PROPN'), ('are', 'AUX'), ('HER', 'PRON'), ('feelings', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('describedFrom', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('learning', 'VERB'), ('that', 'SCONJ'), ('Lucy', 'PROPN'), ('was', 'AUX'), ('married', 'ADJ'), ('to', 'ADP'), ('another', 'DET'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('free', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('moment', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('justifying', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('hopes', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('so', 'ADV'), ('instantly', 'ADV'), ('followed', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('every', 'DET'), ('\n', 'SPACE'), ('thing', 'NOUN'), ('by', 'ADP'), ('turns', 'NOUN'), ('but', 'CCONJ'), ('tranquil', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('when', 'SCONJ'), ('the', 'DET'), ('second', 'ADJ'), ('moment', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('passed', 'VERB'), ('when', 'SCONJ'), ('she', 'PRON'), ('found', 'VERB'), ('every', 'DET'), ('doubt', 'NOUN'), ('every', 'DET'), ('solicitude', 'NOUN'), ('\n', 'SPACE'), ('removed', 'VERB'), ('compared', 'VERB'), ('her', 'PRON'), ('situation', 'NOUN'), ('with', 'ADP'), ('what', 'PRON'), ('so', 'ADV'), ('lately', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('beensaw', 'VERB'), ('him', 'PRON'), ('honourably', 'ADV'), ('released', 'VERB'), ('from', 'ADP'), ('his', 'PRON'), ('former', 'ADJ'), ('\n', 'SPACE'), ('engagement', 'NOUN'), ('saw', 'VERB'), ('him', 'PRON'), ('instantly', 'ADV'), ('profiting', 'ADJ'), ('by', 'ADP'), ('the', 'DET'), ('release', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('address', 'VERB'), ('herself', 'PRON'), ('and', 'CCONJ'), ('declare', 'VERB'), ('an', 'DET'), ('affection', 'NOUN'), ('as', 'ADP'), ('tender', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADV'), ('constant', 'ADJ'), ('as', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('supposed', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('beshe', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('oppressed', 'VERB'), ('she', 'PRON'), ('was', 'AUX'), ('overcome', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('felicity', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('happily', 'ADV'), ('disposed', 'VERB'), ('as', 'SCONJ'), ('is', 'AUX'), ('the', 'DET'), ('human', 'ADJ'), ('mind', 'NOUN'), ('to', 'PART'), ('be', 'AUX'), ('easily', 'ADV'), ('\n', 'SPACE'), ('familiarized', 'VERB'), ('with', 'ADP'), ('any', 'DET'), ('change', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('better', 'ADJ'), ('it', 'PRON'), ('required', 'VERB'), ('\n', 'SPACE'), ('several', 'ADJ'), ('hours', 'NOUN'), ('to', 'PART'), ('give', 'VERB'), ('sedateness', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('spirits', 'NOUN'), ('or', 'CCONJ'), ('any', 'DET'), ('\n', 'SPACE'), ('degree', 'NOUN'), ('of', 'ADP'), ('tranquillity', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('heart', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('was', 'AUX'), ('now', 'ADV'), ('fixed', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('for', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('weekfor', 'NOUN'), ('whatever', 'PRON'), ('other', 'ADJ'), ('claims', 'NOUN'), ('might', 'AUX'), ('be', 'AUX'), ('made', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('that', 'SCONJ'), ('less', 'ADJ'), ('than', 'ADP'), ('a', 'PRON'), ('week', 'NOUN'), ('should', 'AUX'), ('be', 'AUX'), ('given', 'VERB'), ('\n', 'SPACE'), ('up', 'ADP'), ('to', 'ADP'), ('the', 'DET'), ('enjoyment', 'NOUN'), ('of', 'ADP'), ('Elinors', 'PROPN'), ('company', 'NOUN'), ('or', 'CCONJ'), ('suffice', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('say', 'VERB'), ('half', 'NOUN'), ('that', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('said', 'VERB'), ('of', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('the', 'DET'), ('present', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('futurefor', 'NOUN'), ('though', 'SCONJ'), ('a', 'DET'), ('very', 'ADV'), ('few', 'ADJ'), ('hours', 'NOUN'), ('spent', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('hard', 'ADJ'), ('labor', 'NOUN'), ('of', 'ADP'), ('incessant', 'ADJ'), ('talking', 'NOUN'), ('will', 'AUX'), ('despatch', 'VERB'), ('more', 'ADJ'), ('\n', 'SPACE'), ('subjects', 'NOUN'), ('than', 'SCONJ'), ('can', 'AUX'), ('really', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('common', 'ADJ'), ('between', 'ADP'), ('any', 'DET'), ('two', 'NUM'), ('\n', 'SPACE'), ('rational', 'ADJ'), ('creatures', 'NOUN'), ('yet', 'ADV'), ('with', 'ADP'), ('lovers', 'NOUN'), ('it', 'PRON'), ('is', 'AUX'), ('different', 'ADJ'), ('\n', 'SPACE'), ('Between', 'ADP'), ('THEM', 'NOUN'), ('no', 'DET'), ('subject', 'NOUN'), ('is', 'AUX'), ('finished', 'VERB'), ('no', 'DET'), ('communication', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('even', 'ADV'), ('made', 'VERB'), ('till', 'SCONJ'), ('it', 'PRON'), ('has', 'AUX'), ('been', 'AUX'), ('made', 'VERB'), ('at', 'ADP'), ('least', 'ADJ'), ('twenty', 'NUM'), ('\n', 'SPACE'), ('times', 'NOUN'), ('over', 'ADP'), ('\n\n', 'SPACE'), ('Lucys', 'PROPN'), ('marriage', 'NOUN'), ('the', 'DET'), ('unceasing', 'ADJ'), ('and', 'CCONJ'), ('reasonable', 'ADJ'), ('wonder', 'NOUN'), ('\n', 'SPACE'), ('among', 'ADP'), ('them', 'PRON'), ('all', 'PRON'), ('formed', 'VERB'), ('of', 'ADP'), ('course', 'NOUN'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('earliest', 'ADJ'), ('\n', 'SPACE'), ('discussions', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('loversand', 'PROPN'), ('Elinors', 'PROPN'), ('particular', 'ADJ'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('each', 'DET'), ('party', 'NOUN'), ('made', 'VERB'), ('it', 'PRON'), ('appear', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('every', 'DET'), ('view', 'NOUN'), ('as', 'ADP'), ('one', 'NUM'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('extraordinary', 'ADJ'), ('and', 'CCONJ'), ('unaccountable', 'ADJ'), ('circumstances', 'NOUN'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('ever', 'ADV'), ('heard', 'VERB'), (' ', 'SPACE'), ('How', 'SCONJ'), ('they', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('thrown', 'VERB'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('what', 'PRON'), ('attraction', 'NOUN'), ('Robert', 'PROPN'), ('could', 'AUX'), ('be', 'AUX'), ('drawn', 'VERB'), ('on', 'ADP'), ('to', 'PART'), ('marry', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('girl', 'NOUN'), ('of', 'ADP'), ('whose', 'DET'), ('beauty', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('herself', 'PRON'), ('heard', 'VERB'), ('him', 'PRON'), ('speak', 'VERB'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('admirationa', 'NOUN'), ('girl', 'NOUN'), ('too', 'ADV'), ('already', 'ADV'), ('engaged', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('on', 'ADP'), ('whose', 'DET'), ('account', 'NOUN'), ('that', 'DET'), ('brother', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('thrown', 'VERB'), ('off', 'ADP'), ('by', 'ADP'), ('his', 'PRON'), ('familyit', 'NOUN'), ('was', 'AUX'), ('beyond', 'ADP'), ('her', 'PRON'), ('comprehension', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('make', 'VERB'), ('out', 'ADP'), (' ', 'SPACE'), ('To', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('a', 'DET'), ('delightful', 'ADJ'), ('affair', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('imagination', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('even', 'ADV'), ('a', 'DET'), ('ridiculous', 'ADJ'), ('one', 'NUM'), ('but', 'CCONJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('reason', 'NOUN'), ('her', 'PRON'), ('judgment', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('completely', 'ADV'), ('a', 'DET'), ('puzzle', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('could', 'AUX'), ('only', 'ADV'), ('attempt', 'VERB'), ('an', 'DET'), ('explanation', 'NOUN'), ('by', 'ADP'), ('supposing', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('perhaps', 'ADV'), ('at', 'ADP'), ('first', 'ADV'), ('accidentally', 'ADV'), ('meeting', 'VERB'), ('the', 'DET'), ('vanity', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('one', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('so', 'ADV'), ('worked', 'VERB'), ('on', 'ADP'), ('by', 'ADP'), ('the', 'DET'), ('flattery', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('other', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('lead', 'VERB'), ('by', 'ADP'), ('degrees', 'NOUN'), ('to', 'ADP'), ('all', 'DET'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('Elinor', 'PROPN'), ('remembered', 'VERB'), ('what', 'PRON'), ('Robert', 'PROPN'), ('had', 'AUX'), ('told', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('Harley', 'PROPN'), ('Street', 'PROPN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('his', 'PRON'), ('own', 'ADJ'), ('mediation', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('brothers', 'NOUN'), ('\n', 'SPACE'), ('affairs', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('done', 'VERB'), ('if', 'SCONJ'), ('applied', 'VERB'), ('to', 'ADP'), ('in', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('repeated', 'VERB'), ('it', 'PRON'), ('to', 'ADP'), ('Edward', 'PROPN'), ('\n\n', 'SPACE'), ('THAT', 'PRON'), ('was', 'AUX'), ('exactly', 'ADV'), ('like', 'ADP'), ('Robertwas', 'PROPN'), ('his', 'PRON'), ('immediate', 'ADJ'), ('\n', 'SPACE'), ('observationAnd', 'NOUN'), ('THAT', 'PRON'), ('he', 'PRON'), ('presently', 'ADV'), ('added', 'VERB'), ('might', 'AUX'), ('\n', 'SPACE'), ('perhaps', 'ADV'), ('be', 'AUX'), ('in', 'ADP'), ('HIS', 'PRON'), ('head', 'NOUN'), ('when', 'SCONJ'), ('the', 'DET'), ('acquaintance', 'NOUN'), ('between', 'ADP'), ('\n', 'SPACE'), ('them', 'PRON'), ('first', 'ADV'), ('began', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('Lucy', 'PROPN'), ('perhaps', 'ADV'), ('at', 'ADP'), ('first', 'ADV'), ('might', 'AUX'), ('\n', 'SPACE'), ('think', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('procuring', 'VERB'), ('his', 'PRON'), ('good', 'ADJ'), ('offices', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('favour', 'ADJ'), ('\n', 'SPACE'), ('Other', 'ADJ'), ('designs', 'NOUN'), ('might', 'AUX'), ('afterward', 'ADV'), ('arise', 'VERB'), ('\n\n', 'SPACE'), ('How', 'SCONJ'), ('long', 'ADV'), ('it', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('carrying', 'VERB'), ('on', 'ADP'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('however', 'ADV'), ('he', 'PRON'), ('was', 'AUX'), ('equally', 'ADV'), ('at', 'ADP'), ('a', 'DET'), ('loss', 'NOUN'), ('with', 'ADP'), ('herself', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('out', 'ADP'), ('\n', 'SPACE'), ('for', 'ADP'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('where', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('remained', 'VERB'), ('for', 'ADP'), ('choice', 'NOUN'), ('ever', 'ADV'), ('since', 'SCONJ'), ('\n', 'SPACE'), ('his', 'PRON'), ('quitting', 'VERB'), ('London', 'PROPN'), ('he', 'PRON'), ('had', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('hearing', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('from', 'ADP'), ('herself', 'PRON'), ('and', 'CCONJ'), ('her', 'PRON'), ('letters', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('very', 'ADV'), ('last', 'ADJ'), ('were', 'AUX'), ('\n', 'SPACE'), ('neither', 'CCONJ'), ('less', 'ADV'), ('frequent', 'ADJ'), ('nor', 'CCONJ'), ('less', 'ADV'), ('affectionate', 'ADJ'), ('than', 'ADP'), ('usual', 'ADJ'), ('\n', 'SPACE'), ('Not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('suspicion', 'NOUN'), ('therefore', 'ADV'), ('had', 'AUX'), ('ever', 'ADV'), ('occurred', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('prepare', 'VERB'), ('him', 'PRON'), ('for', 'ADP'), ('what', 'PRON'), ('followedand', 'NOUN'), ('when', 'SCONJ'), ('at', 'ADP'), ('last', 'ADJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('burst', 'VERB'), ('on', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('a', 'DET'), ('letter', 'NOUN'), ('from', 'ADP'), ('Lucy', 'PROPN'), ('herself', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('\n', 'SPACE'), ('for', 'ADP'), ('some', 'DET'), ('time', 'NOUN'), ('he', 'PRON'), ('believed', 'VERB'), ('half', 'ADV'), ('stupified', 'VERB'), ('between', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('wonder', 'NOUN'), ('the', 'DET'), ('horror', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('joy', 'NOUN'), ('of', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('deliverance', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('put', 'VERB'), ('the', 'DET'), ('letter', 'NOUN'), ('into', 'ADP'), ('Elinors', 'PROPN'), ('hands', 'NOUN'), ('\n\n ', 'SPACE'), ('DEAR', 'PROPN'), ('SIR', 'PROPN'), ('\n\n ', 'SPACE'), ('Being', 'AUX'), ('very', 'ADV'), ('sure', 'ADJ'), ('I', 'PRON'), ('have', 'AUX'), ('long', 'ADV'), ('lost', 'VERB'), ('your', 'PRON'), ('affections', 'NOUN'), ('\n ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('thought', 'VERB'), ('myself', 'PRON'), ('at', 'ADP'), ('liberty', 'NOUN'), ('to', 'PART'), ('bestow', 'VERB'), ('my', 'PRON'), ('own', 'ADJ'), ('\n ', 'SPACE'), ('on', 'ADP'), ('another', 'PRON'), ('and', 'CCONJ'), ('have', 'VERB'), ('no', 'DET'), ('doubt', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('as', 'ADV'), ('happy', 'ADJ'), ('with', 'ADP'), ('\n ', 'SPACE'), ('him', 'PRON'), ('as', 'SCONJ'), ('I', 'PRON'), ('once', 'ADV'), ('used', 'VERB'), ('to', 'PART'), ('think', 'VERB'), ('I', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('with', 'ADP'), ('you', 'PRON'), ('\n ', 'SPACE'), ('but', 'CCONJ'), ('I', 'PRON'), ('scorn', 'VERB'), ('to', 'PART'), ('accept', 'VERB'), ('a', 'DET'), ('hand', 'NOUN'), ('while', 'SCONJ'), ('the', 'DET'), ('heart', 'NOUN'), ('was', 'AUX'), ('\n ', 'SPACE'), ('anothers', 'NOUN'), (' ', 'SPACE'), ('Sincerely', 'ADV'), ('wish', 'VERB'), ('you', 'PRON'), ('happy', 'ADJ'), ('in', 'ADP'), ('your', 'PRON'), ('choice', 'NOUN'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('it', 'PRON'), ('shall', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('my', 'PRON'), ('fault', 'NOUN'), ('if', 'SCONJ'), ('we', 'PRON'), ('are', 'AUX'), ('not', 'PART'), ('always', 'ADV'), ('\n ', 'SPACE'), ('good', 'ADJ'), ('friends', 'NOUN'), ('as', 'ADP'), ('our', 'PRON'), ('near', 'ADJ'), ('relationship', 'NOUN'), ('now', 'ADV'), ('makes', 'VERB'), ('\n ', 'SPACE'), ('proper', 'ADJ'), (' ', 'SPACE'), ('I', 'PRON'), ('can', 'AUX'), ('safely', 'ADV'), ('say', 'VERB'), ('I', 'PRON'), ('owe', 'VERB'), ('you', 'PRON'), ('no', 'DET'), ('illwill', 'NOUN'), ('\n ', 'SPACE'), ('and', 'CCONJ'), ('am', 'AUX'), ('sure', 'ADJ'), ('you', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('too', 'ADV'), ('generous', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('us', 'PRON'), ('any', 'DET'), ('\n ', 'SPACE'), ('ill', 'ADJ'), ('offices', 'NOUN'), (' ', 'SPACE'), ('Your', 'PRON'), ('brother', 'NOUN'), ('has', 'AUX'), ('gained', 'VERB'), ('my', 'PRON'), ('affections', 'NOUN'), ('\n ', 'SPACE'), ('entirely', 'ADV'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('we', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('live', 'VERB'), ('without', 'ADP'), ('one', 'NUM'), ('\n ', 'SPACE'), ('another', 'DET'), ('we', 'PRON'), ('are', 'AUX'), ('just', 'ADV'), ('returned', 'VERB'), ('from', 'ADP'), ('the', 'DET'), ('altar', 'NOUN'), ('and', 'CCONJ'), ('\n ', 'SPACE'), ('are', 'AUX'), ('now', 'ADV'), ('on', 'ADP'), ('our', 'PRON'), ('way', 'NOUN'), ('to', 'ADP'), ('Dawlish', 'VERB'), ('for', 'ADP'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('which', 'PRON'), ('\n ', 'SPACE'), ('place', 'VERB'), ('your', 'PRON'), ('dear', 'ADJ'), ('brother', 'NOUN'), ('has', 'VERB'), ('great', 'ADJ'), ('curiosity', 'NOUN'), ('to', 'PART'), ('see', 'VERB'), ('\n ', 'SPACE'), ('but', 'CCONJ'), ('thought', 'VERB'), ('I', 'PRON'), ('would', 'AUX'), ('first', 'ADV'), ('trouble', 'VERB'), ('you', 'PRON'), ('with', 'ADP'), ('these', 'DET'), ('\n ', 'SPACE'), ('few', 'ADJ'), ('lines', 'NOUN'), ('and', 'CCONJ'), ('shall', 'AUX'), ('always', 'ADV'), ('remain', 'VERB'), ('\n\n ', 'SPACE'), ('Your', 'PRON'), ('sincere', 'ADJ'), ('wellwisher', 'NOUN'), ('friend', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('\n ', 'SPACE'), ('LUCY', 'PROPN'), ('FERRARS', 'PROPN'), ('\n\n ', 'SPACE'), ('I', 'PRON'), ('have', 'AUX'), ('burnt', 'VERB'), ('all', 'DET'), ('your', 'PRON'), ('letters', 'NOUN'), ('and', 'CCONJ'), ('will', 'AUX'), ('return', 'VERB'), ('\n ', 'SPACE'), ('your', 'PRON'), ('picture', 'NOUN'), ('the', 'DET'), ('first', 'ADJ'), ('opportunity', 'NOUN'), (' ', 'SPACE'), ('Please', 'INTJ'), ('to', 'PART'), ('destroy', 'VERB'), ('\n ', 'SPACE'), ('my', 'PRON'), ('scrawlsbut', 'NOUN'), ('the', 'DET'), ('ring', 'NOUN'), ('with', 'ADP'), ('my', 'PRON'), ('hair', 'NOUN'), ('you', 'PRON'), ('are', 'AUX'), ('very', 'ADV'), ('\n ', 'SPACE'), ('welcome', 'ADJ'), ('to', 'PART'), ('keep', 'VERB'), ('\n\n', 'SPACE'), ('Elinor', 'NOUN'), ('read', 'VERB'), ('and', 'CCONJ'), ('returned', 'VERB'), ('it', 'PRON'), ('without', 'ADP'), ('any', 'DET'), ('comment', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('ask', 'VERB'), ('your', 'PRON'), ('opinion', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('as', 'ADP'), ('a', 'DET'), ('composition', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('EdwardFor', 'PROPN'), ('worlds', 'NOUN'), ('would', 'AUX'), ('not', 'PART'), ('I', 'PRON'), ('have', 'AUX'), ('had', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('hers', 'PRON'), ('seen', 'VERB'), ('by', 'ADP'), ('YOU', 'PRON'), ('in', 'ADP'), ('former', 'ADJ'), ('daysIn', 'PROPN'), ('a', 'DET'), ('sister', 'NOUN'), ('it', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('bad', 'ADJ'), ('enough', 'ADV'), ('but', 'CCONJ'), ('in', 'ADP'), ('a', 'DET'), ('wifehow', 'NOUN'), ('I', 'PRON'), ('have', 'AUX'), ('blushed', 'VERB'), ('over', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('pages', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('writingand', 'NOUN'), ('I', 'PRON'), ('believe', 'VERB'), ('I', 'PRON'), ('may', 'AUX'), ('say', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('the', 'DET'), ('first', 'ADJ'), ('half', 'ADJ'), ('year', 'NOUN'), ('of', 'ADP'), ('our', 'PRON'), ('foolishbusinessthis', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('the', 'DET'), ('only', 'ADJ'), ('letter', 'NOUN'), ('I', 'PRON'), ('ever', 'ADV'), ('received', 'VERB'), ('from', 'ADP'), ('her', 'PRON'), ('of', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('the', 'DET'), ('substance', 'NOUN'), ('made', 'VERB'), ('me', 'PRON'), ('any', 'DET'), ('amends', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('defect', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('style', 'NOUN'), ('\n\n', 'SPACE'), ('However', 'ADV'), ('it', 'PRON'), ('may', 'AUX'), ('have', 'AUX'), ('come', 'VERB'), ('about', 'ADV'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('after', 'SCONJ'), ('a', 'DET'), ('pausethey', 'NOUN'), ('are', 'AUX'), ('certainly', 'ADV'), ('married', 'VERB'), (' ', 'SPACE'), ('And', 'CCONJ'), ('your', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('has', 'AUX'), ('brought', 'VERB'), ('on', 'ADP'), ('herself', 'PRON'), ('a', 'DET'), ('most', 'ADV'), ('appropriate', 'ADJ'), ('punishment', 'NOUN'), ('\n', 'SPACE'), ('The', 'DET'), ('independence', 'NOUN'), ('she', 'PRON'), ('settled', 'VERB'), ('on', 'ADP'), ('Robert', 'PROPN'), ('through', 'ADP'), ('resentment', 'NOUN'), ('\n', 'SPACE'), ('against', 'ADP'), ('you', 'PRON'), ('has', 'AUX'), ('put', 'VERB'), ('it', 'PRON'), ('in', 'ADP'), ('his', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('choice', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('she', 'PRON'), ('has', 'AUX'), ('actually', 'ADV'), ('been', 'AUX'), ('bribing', 'VERB'), ('one', 'NUM'), ('son', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('thousand', 'NUM'), ('\n', 'SPACE'), ('ayear', 'NOUN'), ('to', 'PART'), ('do', 'VERB'), ('the', 'DET'), ('very', 'ADJ'), ('deed', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('disinherited', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('other', 'ADJ'), ('for', 'ADP'), ('intending', 'VERB'), ('to', 'PART'), ('do', 'VERB'), (' ', 'SPACE'), ('She', 'PRON'), ('will', 'AUX'), ('hardly', 'ADV'), ('be', 'AUX'), ('less', 'ADV'), ('hurt', 'ADJ'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('by', 'ADP'), ('Roberts', 'PROPN'), ('marrying', 'VERB'), ('Lucy', 'PROPN'), ('than', 'SCONJ'), ('she', 'PRON'), ('would', 'AUX'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('by', 'ADP'), ('your', 'PRON'), ('marrying', 'VERB'), ('her', 'PRON'), ('\n\n', 'SPACE'), ('She', 'PRON'), ('will', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('hurt', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('for', 'ADP'), ('Robert', 'PROPN'), ('always', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('her', 'PRON'), ('favouriteShe', 'PUNCT'), ('will', 'AUX'), ('be', 'AUX'), ('more', 'ADV'), ('hurt', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('on', 'ADP'), ('the', 'DET'), ('same', 'ADJ'), ('principle', 'NOUN'), ('will', 'AUX'), ('forgive', 'VERB'), ('him', 'PRON'), ('much', 'ADV'), ('sooner', 'ADV'), ('\n\n', 'SPACE'), ('In', 'SCONJ'), ('what', 'PRON'), ('state', 'NOUN'), ('the', 'DET'), ('affair', 'NOUN'), ('stood', 'VERB'), ('at', 'ADP'), ('present', 'ADJ'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('Edward', 'PROPN'), ('knew', 'VERB'), ('not', 'PART'), ('for', 'ADP'), ('no', 'DET'), ('communication', 'NOUN'), ('with', 'ADP'), ('any', 'PRON'), ('of', 'ADP'), ('his', 'PRON'), ('family', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('yet', 'ADV'), ('been', 'AUX'), ('attempted', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), (' ', 'SPACE'), ('He', 'PRON'), ('had', 'AUX'), ('quitted', 'VERB'), ('Oxford', 'PROPN'), ('\n', 'SPACE'), ('within', 'ADP'), ('four', 'NUM'), ('and', 'CCONJ'), ('twenty', 'NUM'), ('hours', 'NOUN'), ('after', 'SCONJ'), ('Lucys', 'PROPN'), ('letter', 'NOUN'), ('arrived', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('with', 'ADP'), ('only', 'ADV'), ('one', 'NUM'), ('object', 'NOUN'), ('before', 'ADP'), ('him', 'PRON'), ('the', 'DET'), ('nearest', 'ADJ'), ('road', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Barton', 'PROPN'), ('had', 'AUX'), ('had', 'VERB'), ('no', 'DET'), ('leisure', 'NOUN'), ('to', 'PART'), ('form', 'VERB'), ('any', 'DET'), ('scheme', 'NOUN'), ('of', 'ADP'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('which', 'PRON'), ('that', 'DET'), ('road', 'NOUN'), ('did', 'AUX'), ('not', 'PART'), ('hold', 'VERB'), ('the', 'DET'), ('most', 'ADV'), ('intimate', 'ADJ'), ('connection', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('do', 'VERB'), ('nothing', 'PRON'), ('till', 'SCONJ'), ('he', 'PRON'), ('were', 'AUX'), ('assured', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('fate', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('and', 'CCONJ'), ('by', 'ADP'), ('his', 'PRON'), ('rapidity', 'NOUN'), ('in', 'ADP'), ('seeking', 'VERB'), ('THAT', 'DET'), ('fate', 'NOUN'), ('\n', 'SPACE'), ('it', 'PRON'), ('is', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('supposed', 'VERB'), ('in', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('jealousy', 'NOUN'), ('with', 'ADP'), ('\n', 'SPACE'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('once', 'ADV'), ('thought', 'VERB'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('in', 'ADP'), ('spite', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('the', 'DET'), ('modesty', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('rated', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('deserts', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('politeness', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('talked', 'VERB'), ('of', 'ADP'), ('his', 'PRON'), ('doubts', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('upon', 'SCONJ'), ('the', 'DET'), ('whole', 'NOUN'), ('expect', 'VERB'), ('a', 'DET'), ('very', 'ADV'), ('cruel', 'ADJ'), ('reception', 'NOUN'), ('\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('his', 'PRON'), ('business', 'NOUN'), ('however', 'ADV'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('DID', 'VERB'), ('and', 'CCONJ'), ('he', 'PRON'), ('\n', 'SPACE'), ('said', 'VERB'), ('it', 'PRON'), ('very', 'ADV'), ('prettily', 'ADV'), (' ', 'SPACE'), ('What', 'PRON'), ('he', 'PRON'), ('might', 'AUX'), ('say', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('a', 'DET'), ('twelvemonth', 'NOUN'), ('after', 'ADV'), ('must', 'AUX'), ('be', 'AUX'), ('referred', 'VERB'), ('to', 'ADP'), ('the', 'DET'), ('imagination', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('husbands', 'NOUN'), ('and', 'CCONJ'), ('wives', 'NOUN'), ('\n\n', 'SPACE'), ('That', 'PRON'), ('Lucy', 'PROPN'), ('had', 'AUX'), ('certainly', 'ADV'), ('meant', 'VERB'), ('to', 'PART'), ('deceive', 'VERB'), ('to', 'PART'), ('go', 'VERB'), ('off', 'ADP'), ('\n', 'SPACE'), ('with', 'ADP'), ('a', 'DET'), ('flourish', 'NOUN'), ('of', 'ADP'), ('malice', 'NOUN'), ('against', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('her', 'PRON'), ('message', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('Thomas', 'PROPN'), ('was', 'AUX'), ('perfectly', 'ADV'), ('clear', 'ADJ'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Edward', 'PROPN'), ('himself', 'PRON'), ('\n', 'SPACE'), ('now', 'ADV'), ('thoroughly', 'ADV'), ('enlightened', 'VERB'), ('on', 'ADP'), ('her', 'PRON'), ('character', 'NOUN'), ('had', 'VERB'), ('no', 'DET'), ('\n', 'SPACE'), ('scruple', 'NOUN'), ('in', 'ADP'), ('believing', 'VERB'), ('her', 'PRON'), ('capable', 'ADJ'), ('of', 'ADP'), ('the', 'DET'), ('utmost', 'ADJ'), ('meanness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('wanton', 'NOUN'), ('illnature', 'NOUN'), ('Though', 'SCONJ'), ('his', 'PRON'), ('eyes', 'NOUN'), ('had', 'AUX'), ('been', 'AUX'), ('long', 'ADV'), ('opened', 'VERB'), ('\n', 'SPACE'), ('even', 'ADV'), ('before', 'SCONJ'), ('his', 'PRON'), ('acquaintance', 'NOUN'), ('with', 'ADP'), ('Elinor', 'PROPN'), ('began', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('ignorance', 'NOUN'), ('and', 'CCONJ'), ('a', 'DET'), ('want', 'NOUN'), ('of', 'ADP'), ('liberality', 'NOUN'), ('in', 'ADP'), ('some', 'PRON'), ('of', 'ADP'), ('her', 'PRON'), ('opinions', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('equally', 'ADV'), ('imputed', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('to', 'ADP'), ('her', 'PRON'), ('want', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('education', 'NOUN'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('her', 'PRON'), ('last', 'ADJ'), ('letter', 'NOUN'), ('reached', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('had', 'AUX'), ('always', 'ADV'), ('believed', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('welldisposed', 'ADJ'), ('\n', 'SPACE'), ('goodhearted', 'ADJ'), ('girl', 'NOUN'), ('and', 'CCONJ'), ('thoroughly', 'ADV'), ('attached', 'VERB'), ('to', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('Nothing', 'PRON'), ('but', 'SCONJ'), ('such', 'DET'), ('a', 'DET'), ('persuasion', 'NOUN'), ('could', 'AUX'), ('have', 'AUX'), ('prevented', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('putting', 'VERB'), ('an', 'DET'), ('end', 'NOUN'), ('to', 'ADP'), ('an', 'DET'), ('engagement', 'NOUN'), ('which', 'PRON'), ('long', 'ADV'), ('before', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('discovery', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('laid', 'VERB'), ('him', 'PRON'), ('open', 'ADJ'), ('to', 'ADP'), ('his', 'PRON'), ('mothers', 'NOUN'), ('anger', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('a', 'DET'), ('continual', 'ADJ'), ('source', 'NOUN'), ('of', 'ADP'), ('disquiet', 'NOUN'), ('and', 'CCONJ'), ('regret', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('thought', 'VERB'), ('it', 'PRON'), ('my', 'PRON'), ('duty', 'NOUN'), ('said', 'VERB'), ('he', 'PRON'), ('independent', 'ADJ'), ('of', 'ADP'), ('my', 'PRON'), ('feelings', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('give', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('option', 'NOUN'), ('of', 'ADP'), ('continuing', 'VERB'), ('the', 'DET'), ('engagement', 'NOUN'), ('or', 'CCONJ'), ('not', 'PART'), ('\n', 'SPACE'), ('when', 'SCONJ'), ('I', 'PRON'), ('was', 'AUX'), ('renounced', 'VERB'), ('by', 'ADP'), ('my', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('stood', 'VERB'), ('to', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('appearance', 'NOUN'), ('without', 'ADP'), ('a', 'DET'), ('friend', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('to', 'PART'), ('assist', 'VERB'), ('me', 'PRON'), ('\n', 'SPACE'), ('In', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('situation', 'NOUN'), ('as', 'ADP'), ('that', 'PRON'), ('where', 'SCONJ'), ('there', 'PRON'), ('seemed', 'VERB'), ('nothing', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('tempt', 'VERB'), ('the', 'DET'), ('avarice', 'NOUN'), ('or', 'CCONJ'), ('the', 'DET'), ('vanity', 'NOUN'), ('of', 'ADP'), ('any', 'DET'), ('living', 'VERB'), ('creature', 'NOUN'), ('\n', 'SPACE'), ('how', 'SCONJ'), ('could', 'AUX'), ('I', 'PRON'), ('suppose', 'VERB'), ('when', 'SCONJ'), ('she', 'PRON'), ('so', 'ADV'), ('earnestly', 'ADV'), ('so', 'ADV'), ('warmly', 'ADV'), ('insisted', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('sharing', 'VERB'), ('my', 'PRON'), ('fate', 'NOUN'), ('whatever', 'PRON'), ('it', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('that', 'SCONJ'), ('any', 'DET'), ('thing', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('most', 'ADV'), ('disinterested', 'ADJ'), ('affection', 'NOUN'), ('was', 'AUX'), ('her', 'PRON'), ('inducement', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('even', 'ADV'), ('now', 'ADV'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('comprehend', 'VERB'), ('on', 'ADP'), ('what', 'PRON'), ('motive', 'NOUN'), ('she', 'PRON'), ('acted', 'VERB'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('what', 'PRON'), ('fancied', 'VERB'), ('advantage', 'NOUN'), ('it', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('to', 'ADP'), ('her', 'PRON'), ('to', 'PART'), ('be', 'AUX'), ('\n', 'SPACE'), ('fettered', 'VERB'), ('to', 'ADP'), ('a', 'DET'), ('man', 'NOUN'), ('for', 'ADP'), ('whom', 'PRON'), ('she', 'PRON'), ('had', 'VERB'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('regard', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('who', 'PRON'), ('had', 'VERB'), ('only', 'ADV'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('foresee', 'VERB'), ('that', 'SCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('would', 'AUX'), ('give', 'VERB'), ('me', 'PRON'), ('a', 'DET'), ('\n', 'SPACE'), ('living', 'NOUN'), ('\n\n', 'SPACE'), ('No', 'INTJ'), ('but', 'CCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('suppose', 'VERB'), ('that', 'SCONJ'), ('something', 'PRON'), ('would', 'AUX'), ('occur', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('your', 'PRON'), ('favour', 'NOUN'), ('that', 'PRON'), ('your', 'PRON'), ('own', 'ADJ'), ('family', 'NOUN'), ('might', 'AUX'), ('in', 'ADP'), ('time', 'NOUN'), ('relent', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('at', 'ADP'), ('any', 'DET'), ('rate', 'NOUN'), ('she', 'PRON'), ('lost', 'VERB'), ('nothing', 'PRON'), ('by', 'ADP'), ('continuing', 'VERB'), ('the', 'DET'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('she', 'PRON'), ('has', 'AUX'), ('proved', 'VERB'), ('that', 'SCONJ'), ('it', 'PRON'), ('fettered', 'VERB'), ('neither', 'CCONJ'), ('her', 'PRON'), ('inclination', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('her', 'PRON'), ('actions', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('connection', 'NOUN'), ('was', 'AUX'), ('certainly', 'ADV'), ('a', 'DET'), ('\n', 'SPACE'), ('respectable', 'ADJ'), ('one', 'NUM'), ('and', 'CCONJ'), ('probably', 'ADV'), ('gained', 'VERB'), ('her', 'PRON'), ('consideration', 'NOUN'), ('among', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('friends', 'NOUN'), ('and', 'CCONJ'), ('if', 'SCONJ'), ('nothing', 'PRON'), ('more', 'ADV'), ('advantageous', 'ADJ'), ('occurred', 'VERB'), ('\n', 'SPACE'), ('it', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('better', 'ADJ'), ('for', 'SCONJ'), ('her', 'PRON'), ('to', 'PART'), ('marry', 'VERB'), ('YOU', 'PRON'), ('than', 'SCONJ'), ('be', 'AUX'), ('single', 'ADJ'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('was', 'AUX'), ('of', 'ADP'), ('course', 'NOUN'), ('immediately', 'ADV'), ('convinced', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('could', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('more', 'ADV'), ('natural', 'ADJ'), ('than', 'SCONJ'), ('Lucys', 'PROPN'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('more', 'ADJ'), ('selfevident', 'NOUN'), ('than', 'ADP'), ('the', 'DET'), ('motive', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('scolded', 'VERB'), ('him', 'PRON'), ('harshly', 'ADV'), ('as', 'SCONJ'), ('ladies', 'NOUN'), ('always', 'ADV'), ('scold', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('imprudence', 'NOUN'), ('which', 'PRON'), ('compliments', 'VERB'), ('themselves', 'PRON'), ('for', 'ADP'), ('having', 'AUX'), ('\n', 'SPACE'), ('spent', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('time', 'NOUN'), ('with', 'ADP'), ('them', 'PRON'), ('at', 'ADP'), ('Norland', 'PROPN'), ('when', 'SCONJ'), ('he', 'PRON'), ('must', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('felt', 'VERB'), ('his', 'PRON'), ('own', 'ADJ'), ('inconstancy', 'NOUN'), ('\n\n', 'SPACE'), ('Your', 'PRON'), ('behaviour', 'NOUN'), ('was', 'AUX'), ('certainly', 'ADV'), ('very', 'ADV'), ('wrong', 'ADJ'), ('said', 'VERB'), ('she', 'PRON'), ('\n', 'SPACE'), ('becauseto', 'NOUN'), ('say', 'VERB'), ('nothing', 'PRON'), ('of', 'ADP'), ('my', 'PRON'), ('own', 'ADJ'), ('conviction', 'NOUN'), ('our', 'PRON'), ('relations', 'NOUN'), ('\n', 'SPACE'), ('were', 'AUX'), ('all', 'PRON'), ('led', 'VERB'), ('away', 'ADV'), ('by', 'ADP'), ('it', 'PRON'), ('to', 'ADP'), ('fancy', 'VERB'), ('and', 'CCONJ'), ('expect', 'VERB'), ('WHAT', 'PRON'), ('as', 'SCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('THEN', 'ADV'), ('situated', 'VERB'), ('could', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('could', 'AUX'), ('only', 'ADV'), ('plead', 'VERB'), ('an', 'DET'), ('ignorance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('a', 'DET'), ('mistaken', 'ADJ'), ('confidence', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('force', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('engagement', 'NOUN'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('was', 'AUX'), ('simple', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('because', 'SCONJ'), ('my', 'PRON'), ('FAITH', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('plighted', 'VERB'), ('to', 'ADP'), ('another', 'PRON'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('no', 'DET'), ('danger', 'NOUN'), ('in', 'ADP'), ('my', 'PRON'), ('being', 'AUX'), ('\n', 'SPACE'), ('with', 'ADP'), ('you', 'PRON'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('the', 'DET'), ('consciousness', 'NOUN'), ('of', 'ADP'), ('my', 'PRON'), ('engagement', 'NOUN'), ('was', 'AUX'), ('\n', 'SPACE'), ('to', 'PART'), ('keep', 'VERB'), ('my', 'PRON'), ('heart', 'NOUN'), ('as', 'ADV'), ('safe', 'ADJ'), ('and', 'CCONJ'), ('sacred', 'ADJ'), ('as', 'ADP'), ('my', 'PRON'), ('honour', 'NOUN'), (' ', 'SPACE'), ('I', 'PRON'), ('felt', 'VERB'), ('\n', 'SPACE'), ('that', 'SCONJ'), ('I', 'PRON'), ('admired', 'VERB'), ('you', 'PRON'), ('but', 'CCONJ'), ('I', 'PRON'), ('told', 'VERB'), ('myself', 'PRON'), ('it', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('till', 'SCONJ'), ('I', 'PRON'), ('began', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('comparisons', 'NOUN'), ('between', 'ADP'), ('yourself', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('I', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('know', 'VERB'), ('how', 'SCONJ'), ('far', 'ADV'), ('I', 'PRON'), ('was', 'AUX'), ('got', 'VERB'), (' ', 'SPACE'), ('After', 'ADP'), ('that', 'PRON'), ('\n', 'SPACE'), ('I', 'PRON'), ('suppose', 'VERB'), ('I', 'PRON'), ('WAS', 'AUX'), ('wrong', 'ADJ'), ('in', 'ADP'), ('remaining', 'VERB'), ('so', 'ADV'), ('much', 'ADV'), ('in', 'ADP'), ('Sussex', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('arguments', 'NOUN'), ('with', 'ADP'), ('which', 'PRON'), ('I', 'PRON'), ('reconciled', 'VERB'), ('myself', 'PRON'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('expediency', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('were', 'AUX'), ('no', 'ADV'), ('better', 'ADJ'), ('than', 'ADP'), ('theseThe', 'PRON'), ('danger', 'NOUN'), ('\n', 'SPACE'), ('is', 'AUX'), ('my', 'PRON'), ('own', 'ADJ'), ('I', 'PRON'), ('am', 'AUX'), ('doing', 'VERB'), ('no', 'DET'), ('injury', 'NOUN'), ('to', 'ADP'), ('anybody', 'PRON'), ('but', 'CCONJ'), ('myself', 'PRON'), ('\n\n', 'SPACE'), ('Elinor', 'PROPN'), ('smiled', 'VERB'), ('and', 'CCONJ'), ('shook', 'VERB'), ('her', 'PRON'), ('head', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('heard', 'VERB'), ('with', 'ADP'), ('pleasure', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('\n', 'SPACE'), ('being', 'AUX'), ('expected', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('Cottage', 'PROPN'), ('as', 'SCONJ'), ('he', 'PRON'), ('really', 'ADV'), ('wished', 'VERB'), ('\n', 'SPACE'), ('not', 'PART'), ('only', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('better', 'ADV'), ('acquainted', 'VERB'), ('with', 'ADP'), ('him', 'PRON'), ('but', 'CCONJ'), ('to', 'PART'), ('have', 'VERB'), ('an', 'DET'), ('\n', 'SPACE'), ('opportunity', 'NOUN'), ('of', 'ADP'), ('convincing', 'VERB'), ('him', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('no', 'ADV'), ('longer', 'ADV'), ('resented', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('giving', 'VERB'), ('him', 'PRON'), ('the', 'DET'), ('living', 'NOUN'), ('of', 'ADP'), ('DelafordWhich', 'PROPN'), ('at', 'ADP'), ('present', 'ADJ'), ('\n', 'SPACE'), ('said', 'VERB'), ('he', 'PRON'), ('after', 'ADP'), ('thanks', 'NOUN'), ('so', 'ADV'), ('ungraciously', 'ADV'), ('delivered', 'VERB'), ('as', 'SCONJ'), ('mine', 'PRON'), ('\n', 'SPACE'), ('were', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('he', 'PRON'), ('must', 'AUX'), ('think', 'VERB'), ('I', 'PRON'), ('have', 'AUX'), ('never', 'ADV'), ('forgiven', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('for', 'ADP'), ('offering', 'VERB'), ('\n\n', 'SPACE'), ('NOW', 'ADV'), ('he', 'PRON'), ('felt', 'AUX'), ('astonished', 'VERB'), ('himself', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('never', 'ADV'), ('yet', 'ADV'), ('\n', 'SPACE'), ('been', 'AUX'), ('to', 'ADP'), ('the', 'DET'), ('place', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('so', 'ADV'), ('little', 'ADJ'), ('interest', 'NOUN'), ('had', 'AUX'), ('be', 'AUX'), ('taken', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('owed', 'VERB'), ('all', 'DET'), ('his', 'PRON'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('\n', 'SPACE'), ('garden', 'NOUN'), ('and', 'CCONJ'), ('glebe', 'NOUN'), ('extent', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('parish', 'ADJ'), ('condition', 'NOUN'), ('of', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('land', 'NOUN'), ('and', 'CCONJ'), ('rate', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('tithes', 'NOUN'), ('to', 'ADP'), ('Elinor', 'PROPN'), ('herself', 'PRON'), ('\n', 'SPACE'), ('who', 'PRON'), ('had', 'AUX'), ('heard', 'VERB'), ('so', 'ADV'), ('much', 'ADJ'), ('of', 'ADP'), ('it', 'PRON'), ('from', 'ADP'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('heard', 'VERB'), ('it', 'PRON'), ('with', 'ADP'), ('so', 'ADV'), ('much', 'ADJ'), ('attention', 'NOUN'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('entirely', 'ADV'), ('\n', 'SPACE'), ('mistress', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('subject', 'NOUN'), ('\n\n', 'SPACE'), ('One', 'NUM'), ('question', 'NOUN'), ('after', 'ADP'), ('this', 'PRON'), ('only', 'ADV'), ('remained', 'VERB'), ('undecided', 'ADJ'), ('\n', 'SPACE'), ('between', 'ADP'), ('them', 'PRON'), ('one', 'NUM'), ('difficulty', 'NOUN'), ('only', 'ADV'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('overcome', 'VERB'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('brought', 'VERB'), ('together', 'ADV'), ('by', 'ADP'), ('mutual', 'ADJ'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('warmest', 'ADJ'), ('approbation', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('real', 'ADJ'), ('friends', 'NOUN'), ('\n', 'SPACE'), ('their', 'PRON'), ('intimate', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('seemed', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('happiness', 'NOUN'), ('certainand', 'NOUN'), ('they', 'PRON'), ('only', 'ADV'), ('wanted', 'VERB'), ('something', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('live', 'VERB'), ('upon', 'SCONJ'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('had', 'VERB'), ('two', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('one', 'NOUN'), ('which', 'PRON'), ('with', 'ADP'), ('Delaford', 'PROPN'), ('living', 'NOUN'), ('was', 'AUX'), ('all', 'PRON'), ('that', 'PRON'), ('they', 'PRON'), ('could', 'AUX'), ('\n', 'SPACE'), ('call', 'VERB'), ('their', 'PRON'), ('own', 'ADJ'), ('for', 'ADP'), ('it', 'PRON'), ('was', 'AUX'), ('impossible', 'ADJ'), ('that', 'SCONJ'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('should', 'AUX'), ('advance', 'VERB'), ('anything', 'PRON'), ('and', 'CCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('neither', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('quite', 'ADV'), ('enough', 'ADV'), ('in', 'ADP'), ('love', 'NOUN'), ('to', 'PART'), ('think', 'VERB'), ('that', 'SCONJ'), ('three', 'NUM'), ('hundred', 'NUM'), ('and', 'CCONJ'), ('fifty', 'NUM'), ('\n', 'SPACE'), ('pounds', 'NOUN'), ('ayear', 'NOUN'), ('would', 'AUX'), ('supply', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('comforts', 'NOUN'), ('of', 'ADP'), ('life', 'NOUN'), ('\n\n', 'SPACE'), ('Edward', 'PROPN'), ('was', 'AUX'), ('not', 'PART'), ('entirely', 'ADV'), ('without', 'ADP'), ('hopes', 'NOUN'), ('of', 'ADP'), ('some', 'DET'), ('\n', 'SPACE'), ('favourable', 'ADJ'), ('change', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('mother', 'NOUN'), ('towards', 'ADP'), ('him', 'PRON'), ('and', 'CCONJ'), ('on', 'ADP'), ('THAT', 'PRON'), ('\n', 'SPACE'), ('he', 'PRON'), ('rested', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('residue', 'NOUN'), ('of', 'ADP'), ('their', 'PRON'), ('income', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('had', 'VERB'), ('no', 'DET'), ('such', 'ADJ'), ('dependence', 'NOUN'), ('for', 'ADP'), ('since', 'SCONJ'), ('Edward', 'PROPN'), ('would', 'AUX'), ('still', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('unable', 'ADJ'), ('to', 'PART'), ('marry', 'VERB'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('and', 'CCONJ'), ('his', 'PRON'), ('chusing', 'NOUN'), ('herself', 'PRON'), ('\n', 'SPACE'), ('had', 'AUX'), ('been', 'AUX'), ('spoken', 'VERB'), ('of', 'ADP'), ('in', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('flattering', 'ADJ'), ('language', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('only', 'ADV'), ('a', 'DET'), ('lesser', 'ADJ'), ('evil', 'NOUN'), ('than', 'ADP'), ('his', 'PRON'), ('chusing', 'VERB'), ('Lucy', 'PROPN'), ('Steele', 'PROPN'), ('\n', 'SPACE'), ('she', 'PRON'), ('feared', 'VERB'), ('that', 'SCONJ'), ('Roberts', 'PROPN'), ('offence', 'NOUN'), ('would', 'AUX'), ('serve', 'VERB'), ('no', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('purpose', 'NOUN'), ('than', 'SCONJ'), ('to', 'PART'), ('enrich', 'VERB'), ('Fanny', 'PROPN'), ('\n\n', 'SPACE'), ('About', 'ADV'), ('four', 'NUM'), ('days', 'NOUN'), ('after', 'SCONJ'), ('Edwards', 'PROPN'), ('arrival', 'NOUN'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('appeared', 'VERB'), ('to', 'PART'), ('complete', 'VERB'), ('Mrs', 'PROPN'), ('Dashwoods', 'PROPN'), ('satisfaction', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('give', 'VERB'), ('her', 'PRON'), ('the', 'DET'), ('dignity', 'NOUN'), ('of', 'ADP'), ('having', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('time', 'NOUN'), ('\n', 'SPACE'), ('since', 'SCONJ'), ('her', 'PRON'), ('living', 'VERB'), ('at', 'ADP'), ('Barton', 'PROPN'), ('more', 'ADJ'), ('company', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('than', 'SCONJ'), ('\n', 'SPACE'), ('her', 'PRON'), ('house', 'NOUN'), ('would', 'AUX'), ('hold', 'VERB'), (' ', 'SPACE'), ('Edward', 'PROPN'), ('was', 'AUX'), ('allowed', 'VERB'), ('to', 'PART'), ('retain', 'VERB'), ('the', 'DET'), ('\n', 'SPACE'), ('privilege', 'NOUN'), ('of', 'ADP'), ('first', 'ADJ'), ('comer', 'NOUN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('walked', 'VERB'), ('every', 'DET'), ('night', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('old', 'ADJ'), ('quarters', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('Park', 'PROPN'), ('\n', 'SPACE'), ('from', 'ADP'), ('whence', 'NOUN'), ('he', 'PRON'), ('usually', 'ADV'), ('returned', 'VERB'), ('in', 'ADP'), ('the', 'DET'), ('morning', 'NOUN'), ('early', 'ADV'), ('enough', 'ADV'), ('\n', 'SPACE'), ('to', 'PART'), ('interrupt', 'VERB'), ('the', 'DET'), ('lovers', 'NOUN'), ('first', 'ADV'), ('teteatete', 'ADV'), ('before', 'ADP'), ('breakfast', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('three', 'NUM'), ('weeks', 'NOUN'), ('residence', 'NOUN'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('where', 'SCONJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('his', 'PRON'), ('evening', 'NOUN'), ('hours', 'NOUN'), ('at', 'ADP'), ('least', 'ADJ'), ('he', 'PRON'), ('had', 'VERB'), ('little', 'ADJ'), ('to', 'PART'), ('do', 'VERB'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('to', 'PART'), ('calculate', 'VERB'), ('the', 'DET'), ('disproportion', 'NOUN'), ('between', 'ADP'), ('thirtysix', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('seventeen', 'NUM'), ('brought', 'VERB'), ('him', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), ('in', 'ADP'), ('a', 'DET'), ('temper', 'NOUN'), ('of', 'ADP'), ('mind', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('needed', 'VERB'), ('all', 'DET'), ('the', 'DET'), ('improvement', 'NOUN'), ('in', 'ADP'), ('Mariannes', 'PROPN'), ('looks', 'VERB'), ('\n', 'SPACE'), ('all', 'DET'), ('the', 'DET'), ('kindness', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('welcome', 'NOUN'), ('and', 'CCONJ'), ('all', 'DET'), ('the', 'DET'), ('encouragement', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('mothers', 'NOUN'), ('language', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('cheerful', 'ADJ'), ('\n', 'SPACE'), ('Among', 'ADP'), ('such', 'ADJ'), ('friends', 'NOUN'), ('however', 'ADV'), ('and', 'CCONJ'), ('such', 'ADJ'), ('flattery', 'NOUN'), ('he', 'PRON'), ('did', 'AUX'), ('revive', 'VERB'), ('\n', 'SPACE'), ('No', 'DET'), ('rumour', 'NOUN'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('marriage', 'NOUN'), ('had', 'AUX'), ('yet', 'ADV'), ('reached', 'VERB'), ('himhe', 'PROPN'), ('knew', 'VERB'), ('\n', 'SPACE'), ('nothing', 'PRON'), ('of', 'ADP'), ('what', 'PRON'), ('had', 'AUX'), ('passed', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('first', 'ADJ'), ('hours', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('\n', 'SPACE'), ('visit', 'NOUN'), ('were', 'AUX'), ('consequently', 'ADV'), ('spent', 'VERB'), ('in', 'ADP'), ('hearing', 'NOUN'), ('and', 'CCONJ'), ('in', 'ADP'), ('wondering', 'VERB'), ('\n', 'SPACE'), ('Every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('explained', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('he', 'PRON'), ('found', 'VERB'), ('fresh', 'ADJ'), ('reason', 'NOUN'), ('to', 'PART'), ('rejoice', 'VERB'), ('in', 'ADP'), ('what', 'PRON'), ('he', 'PRON'), ('had', 'AUX'), ('done', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('Mr', 'PROPN'), ('Ferrars', 'PROPN'), ('since', 'SCONJ'), ('eventually', 'ADV'), ('it', 'PRON'), ('promoted', 'VERB'), ('the', 'DET'), ('interest', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('needless', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('the', 'DET'), ('gentlemen', 'NOUN'), ('advanced', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('good', 'ADJ'), ('opinion', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('as', 'SCONJ'), ('they', 'PRON'), ('advanced', 'VERB'), ('in', 'ADP'), ('each', 'DET'), ('\n', 'SPACE'), ('others', 'NOUN'), ('acquaintance', 'NOUN'), ('for', 'ADP'), ('it', 'PRON'), ('could', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('otherwise', 'ADV'), ('\n', 'SPACE'), ('Their', 'PRON'), ('resemblance', 'NOUN'), ('in', 'ADP'), ('good', 'ADJ'), ('principles', 'NOUN'), ('and', 'CCONJ'), ('good', 'ADJ'), ('sense', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('disposition', 'NOUN'), ('and', 'CCONJ'), ('manner', 'NOUN'), ('of', 'ADP'), ('thinking', 'NOUN'), ('would', 'AUX'), ('probably', 'ADV'), ('\n', 'SPACE'), ('have', 'AUX'), ('been', 'AUX'), ('sufficient', 'ADJ'), ('to', 'PART'), ('unite', 'VERB'), ('them', 'PRON'), ('in', 'ADP'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('attraction', 'NOUN'), ('but', 'CCONJ'), ('their', 'PRON'), ('being', 'AUX'), ('in', 'ADP'), ('love', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('two', 'NUM'), ('sisters', 'NOUN'), ('and', 'CCONJ'), ('two', 'NUM'), ('sisters', 'NOUN'), ('fond', 'ADJ'), ('of', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('made', 'VERB'), ('that', 'SCONJ'), ('mutual', 'ADJ'), ('regard', 'NOUN'), ('inevitable', 'ADJ'), ('and', 'CCONJ'), ('immediate', 'ADJ'), ('\n', 'SPACE'), ('which', 'PRON'), ('might', 'AUX'), ('otherwise', 'ADV'), ('have', 'AUX'), ('waited', 'VERB'), ('the', 'DET'), ('effect', 'NOUN'), ('of', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('judgment', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('letters', 'NOUN'), ('from', 'ADP'), ('town', 'NOUN'), ('which', 'PRON'), ('a', 'DET'), ('few', 'ADJ'), ('days', 'NOUN'), ('before', 'ADV'), ('would', 'AUX'), ('\n', 'SPACE'), ('have', 'AUX'), ('made', 'VERB'), ('every', 'DET'), ('nerve', 'NOUN'), ('in', 'ADP'), ('Elinors', 'PROPN'), ('body', 'NOUN'), ('thrill', 'NOUN'), ('with', 'ADP'), ('transport', 'NOUN'), ('\n', 'SPACE'), ('now', 'ADV'), ('arrived', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('read', 'VERB'), ('with', 'ADP'), ('less', 'ADJ'), ('emotion', 'NOUN'), ('that', 'SCONJ'), ('mirth', 'PROPN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('wrote', 'VERB'), ('to', 'PART'), ('tell', 'VERB'), ('the', 'DET'), ('wonderful', 'ADJ'), ('tale', 'NOUN'), ('to', 'PART'), ('vent', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('honest', 'ADJ'), ('indignation', 'NOUN'), ('against', 'ADP'), ('the', 'DET'), ('jilting', 'VERB'), ('girl', 'NOUN'), ('and', 'CCONJ'), ('pour', 'NOUN'), ('forth', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('compassion', 'NOUN'), ('towards', 'ADP'), ('poor', 'ADJ'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('who', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('sure', 'ADJ'), ('\n', 'SPACE'), ('had', 'AUX'), ('quite', 'ADV'), ('doted', 'VERB'), ('upon', 'SCONJ'), ('the', 'DET'), ('worthless', 'ADJ'), ('hussy', 'NOUN'), ('and', 'CCONJ'), ('was', 'AUX'), ('now', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('all', 'DET'), ('accounts', 'NOUN'), ('almost', 'ADV'), ('brokenhearted', 'VERB'), ('at', 'ADP'), ('Oxford', 'PROPN'), ('\n', 'SPACE'), ('I', 'PRON'), ('do', 'AUX'), ('think', 'VERB'), ('she', 'PRON'), ('continued', 'VERB'), ('nothing', 'PRON'), ('was', 'AUX'), ('ever', 'ADV'), ('carried', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('so', 'ADV'), ('sly', 'ADV'), ('for', 'SCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('but', 'CCONJ'), ('two', 'NUM'), ('days', 'NOUN'), ('before', 'SCONJ'), ('Lucy', 'PROPN'), ('called', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sat', 'VERB'), ('a', 'DET'), ('couple', 'NOUN'), ('of', 'ADP'), ('hours', 'NOUN'), ('with', 'ADP'), ('me', 'PRON'), (' ', 'SPACE'), ('Not', 'PART'), ('a', 'DET'), ('soul', 'NOUN'), ('suspected', 'VERB'), ('\n', 'SPACE'), ('anything', 'PRON'), ('of', 'ADP'), ('the', 'DET'), ('matter', 'NOUN'), ('not', 'PART'), ('even', 'ADV'), ('Nancy', 'PROPN'), ('who', 'PRON'), ('poor', 'ADJ'), ('soul', 'NOUN'), ('\n', 'SPACE'), ('came', 'AUX'), ('crying', 'VERB'), ('to', 'ADP'), ('me', 'PRON'), ('the', 'DET'), ('day', 'NOUN'), ('after', 'ADP'), ('in', 'ADP'), ('a', 'DET'), ('great', 'ADJ'), ('fright', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('fear', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('as', 'ADV'), ('well', 'ADV'), ('as', 'ADP'), ('not', 'PART'), ('knowing', 'VERB'), ('how', 'SCONJ'), ('to', 'PART'), ('\n', 'SPACE'), ('get', 'VERB'), ('to', 'ADP'), ('Plymouth', 'PROPN'), ('for', 'ADP'), ('Lucy', 'PROPN'), ('it', 'PRON'), ('seems', 'VERB'), ('borrowed', 'VERB'), ('all', 'DET'), ('her', 'PRON'), ('\n', 'SPACE'), ('money', 'NOUN'), ('before', 'SCONJ'), ('she', 'PRON'), ('went', 'VERB'), ('off', 'ADP'), ('to', 'PART'), ('be', 'AUX'), ('married', 'VERB'), ('on', 'ADP'), ('purpose', 'NOUN'), ('\n', 'SPACE'), ('we', 'PRON'), ('suppose', 'VERB'), ('to', 'PART'), ('make', 'VERB'), ('a', 'DET'), ('show', 'NOUN'), ('with', 'ADP'), ('and', 'CCONJ'), ('poor', 'ADJ'), ('Nancy', 'PROPN'), ('had', 'VERB'), ('not', 'PART'), ('\n', 'SPACE'), ('seven', 'NUM'), ('shillings', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('worldso', 'NOUN'), ('I', 'PRON'), ('was', 'AUX'), ('very', 'ADV'), ('glad', 'ADJ'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('five', 'NUM'), ('guineas', 'NOUN'), ('to', 'PART'), ('take', 'VERB'), ('her', 'PRON'), ('down', 'ADP'), ('to', 'ADP'), ('Exeter', 'PROPN'), ('where', 'SCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('thinks', 'VERB'), ('of', 'ADP'), ('staying', 'VERB'), ('three', 'NUM'), ('or', 'CCONJ'), ('four', 'NUM'), ('weeks', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Burgess', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('hopes', 'NOUN'), ('as', 'SCONJ'), ('I', 'PRON'), ('tell', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('fall', 'VERB'), ('in', 'ADP'), ('with', 'ADP'), ('the', 'DET'), ('Doctor', 'PROPN'), ('again', 'ADV'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('I', 'PRON'), ('must', 'AUX'), ('say', 'VERB'), ('that', 'SCONJ'), ('Lucys', 'PROPN'), ('crossness', 'NOUN'), ('not', 'PART'), ('to', 'PART'), ('take', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('along', 'ADP'), ('with', 'ADP'), ('them', 'PRON'), ('in', 'ADP'), ('the', 'DET'), ('chaise', 'NOUN'), ('is', 'AUX'), ('worse', 'ADJ'), ('than', 'ADP'), ('all', 'DET'), ('\n', 'SPACE'), ('Poor', 'PROPN'), ('Mr', 'PROPN'), ('Edward', 'PROPN'), ('I', 'PRON'), ('can', 'AUX'), ('not', 'PART'), ('get', 'VERB'), ('him', 'PRON'), ('out', 'ADP'), ('of', 'ADP'), ('my', 'PRON'), ('head', 'NOUN'), ('but', 'CCONJ'), ('you', 'PRON'), ('\n', 'SPACE'), ('must', 'AUX'), ('send', 'VERB'), ('for', 'ADP'), ('him', 'PRON'), ('to', 'ADP'), ('Barton', 'PROPN'), ('and', 'CCONJ'), ('Miss', 'PROPN'), ('Marianne', 'PROPN'), ('must', 'AUX'), ('try', 'VERB'), ('to', 'PART'), ('\n', 'SPACE'), ('comfort', 'VERB'), ('him', 'PRON'), ('\n\n', 'SPACE'), ('Mr', 'PROPN'), ('Dashwoods', 'PROPN'), ('strains', 'NOUN'), ('were', 'AUX'), ('more', 'ADV'), ('solemn', 'ADJ'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('was', 'AUX'), ('the', 'DET'), ('most', 'ADV'), ('unfortunate', 'ADJ'), ('of', 'ADP'), ('womenpoor', 'PROPN'), ('\n', 'SPACE'), ('Fanny', 'PROPN'), ('had', 'AUX'), ('suffered', 'VERB'), ('agonies', 'NOUN'), ('of', 'ADP'), ('sensibilityand', 'NOUN'), ('he', 'PRON'), ('\n', 'SPACE'), ('considered', 'VERB'), ('the', 'DET'), ('existence', 'NOUN'), ('of', 'ADP'), ('each', 'PRON'), ('under', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('blow', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('grateful', 'ADJ'), ('wonder', 'NOUN'), (' ', 'SPACE'), ('Roberts', 'PROPN'), ('offence', 'NOUN'), ('was', 'AUX'), ('unpardonable', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('Lucys', 'PROPN'), ('was', 'AUX'), ('infinitely', 'ADV'), ('worse', 'ADJ'), (' ', 'SPACE'), ('Neither', 'PRON'), ('of', 'ADP'), ('them', 'PRON'), ('were', 'AUX'), ('\n', 'SPACE'), ('ever', 'ADV'), ('again', 'ADV'), ('to', 'PART'), ('be', 'AUX'), ('mentioned', 'VERB'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('and', 'CCONJ'), ('even', 'ADV'), ('\n', 'SPACE'), ('if', 'SCONJ'), ('she', 'PRON'), ('might', 'AUX'), ('hereafter', 'ADV'), ('be', 'AUX'), ('induced', 'VERB'), ('to', 'PART'), ('forgive', 'VERB'), ('her', 'PRON'), ('son', 'NOUN'), ('\n', 'SPACE'), ('his', 'PRON'), ('wife', 'NOUN'), ('should', 'AUX'), ('never', 'ADV'), ('be', 'AUX'), ('acknowledged', 'VERB'), ('as', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('be', 'AUX'), ('permitted', 'VERB'), ('to', 'PART'), ('appear', 'VERB'), ('in', 'ADP'), ('her', 'PRON'), ('presence', 'NOUN'), (' ', 'SPACE'), ('The', 'DET'), ('secrecy', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('which', 'PRON'), ('everything', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('carried', 'VERB'), ('on', 'ADP'), ('between', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('rationally', 'ADV'), ('treated', 'VERB'), ('as', 'ADP'), ('enormously', 'ADV'), ('heightening', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('crime', 'NOUN'), ('because', 'SCONJ'), ('had', 'VERB'), ('any', 'DET'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('it', 'PRON'), ('occurred', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('the', 'DET'), ('others', 'NOUN'), ('proper', 'ADJ'), ('measures', 'NOUN'), ('would', 'AUX'), ('have', 'AUX'), ('been', 'AUX'), ('taken', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('prevent', 'VERB'), ('the', 'DET'), ('marriage', 'NOUN'), ('and', 'CCONJ'), ('he', 'PRON'), ('called', 'VERB'), ('on', 'ADP'), ('Elinor', 'PROPN'), ('to', 'PART'), ('join', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('regretting', 'VERB'), ('that', 'SCONJ'), ('Lucys', 'PROPN'), ('engagement', 'NOUN'), ('with', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('not', 'PART'), ('rather', 'ADV'), ('been', 'AUX'), ('fulfilled', 'VERB'), ('than', 'SCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('should', 'AUX'), ('thus', 'ADV'), ('\n', 'SPACE'), ('be', 'AUX'), ('the', 'DET'), ('means', 'NOUN'), ('of', 'ADP'), ('spreading', 'VERB'), ('misery', 'NOUN'), ('farther', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('family', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('thus', 'ADV'), ('continued', 'VERB'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('has', 'AUX'), ('never', 'ADV'), ('yet', 'ADV'), ('mentioned', 'VERB'), ('Edwards', 'PROPN'), ('name', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('does', 'AUX'), ('not', 'PART'), ('surprise', 'VERB'), ('us', 'PRON'), ('but', 'CCONJ'), ('to', 'ADP'), ('our', 'PRON'), ('great', 'ADJ'), ('astonishment', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('a', 'DET'), ('line', 'NOUN'), ('has', 'AUX'), ('been', 'AUX'), ('received', 'VERB'), ('from', 'ADP'), ('him', 'PRON'), ('on', 'ADP'), ('the', 'DET'), ('occasion', 'NOUN'), ('\n', 'SPACE'), ('Perhaps', 'ADV'), ('however', 'ADV'), ('he', 'PRON'), ('is', 'AUX'), ('kept', 'VERB'), ('silent', 'ADJ'), ('by', 'ADP'), ('his', 'PRON'), ('fear', 'NOUN'), ('of', 'ADP'), ('offending', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('I', 'PRON'), ('shall', 'AUX'), ('therefore', 'ADV'), ('give', 'VERB'), ('him', 'PRON'), ('a', 'DET'), ('hint', 'NOUN'), ('by', 'ADP'), ('a', 'DET'), ('line', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('Oxford', 'PROPN'), ('that', 'SCONJ'), ('his', 'PRON'), ('sister', 'NOUN'), ('and', 'CCONJ'), ('I', 'PRON'), ('both', 'PRON'), ('think', 'VERB'), ('a', 'DET'), ('letter', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('proper', 'ADJ'), ('submission', 'NOUN'), ('from', 'ADP'), ('him', 'PRON'), ('addressed', 'VERB'), ('perhaps', 'ADV'), ('to', 'ADP'), ('Fanny', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('by', 'ADP'), ('her', 'PRON'), ('shewn', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('might', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('taken', 'VERB'), ('amiss', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('we', 'PRON'), ('all', 'PRON'), ('know', 'VERB'), ('the', 'DET'), ('tenderness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrarss', 'PROPN'), ('heart', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('she', 'PRON'), ('wishes', 'VERB'), ('for', 'ADP'), ('nothing', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('be', 'AUX'), ('on', 'ADP'), ('good', 'ADJ'), ('terms', 'NOUN'), ('\n', 'SPACE'), ('with', 'ADP'), ('her', 'PRON'), ('children', 'NOUN'), ('\n\n', 'SPACE'), ('This', 'DET'), ('paragraph', 'NOUN'), ('was', 'AUX'), ('of', 'ADP'), ('some', 'DET'), ('importance', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('prospects', 'NOUN'), ('and', 'CCONJ'), ('conduct', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), (' ', 'SPACE'), ('It', 'PRON'), ('determined', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('to', 'PART'), ('attempt', 'VERB'), ('a', 'DET'), ('reconciliation', 'NOUN'), ('though', 'ADV'), ('not', 'PART'), ('exactly', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('manner', 'NOUN'), ('pointed', 'VERB'), ('out', 'ADP'), ('by', 'ADP'), ('their', 'PRON'), ('brother', 'NOUN'), ('and', 'CCONJ'), ('sister', 'NOUN'), ('\n\n', 'SPACE'), ('A', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('proper', 'ADJ'), ('submission', 'NOUN'), ('repeated', 'VERB'), ('he', 'PRON'), ('\n', 'SPACE'), ('would', 'AUX'), ('they', 'PRON'), ('have', 'VERB'), ('me', 'PRON'), ('beg', 'VERB'), ('my', 'PRON'), ('mothers', 'NOUN'), ('pardon', 'VERB'), ('for', 'ADP'), ('Roberts', 'PROPN'), ('\n', 'SPACE'), ('ingratitude', 'NOUN'), ('to', 'ADP'), ('HER', 'PRON'), ('and', 'CCONJ'), ('breach', 'NOUN'), ('of', 'ADP'), ('honour', 'NOUN'), ('to', 'ADP'), ('MEI', 'PROPN'), ('can', 'AUX'), ('\n', 'SPACE'), ('make', 'VERB'), ('no', 'DET'), ('submissionI', 'NOUN'), ('am', 'AUX'), ('grown', 'VERB'), ('neither', 'CCONJ'), ('humble', 'ADJ'), ('nor', 'CCONJ'), ('\n', 'SPACE'), ('penitent', 'NOUN'), ('by', 'ADP'), ('what', 'PRON'), ('has', 'AUX'), ('passedI', 'NOUN'), ('am', 'AUX'), ('grown', 'VERB'), ('very', 'ADV'), ('happy', 'ADJ'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('that', 'PRON'), ('would', 'AUX'), ('not', 'PART'), ('interestI', 'ADV'), ('know', 'VERB'), ('of', 'ADP'), ('no', 'DET'), ('submission', 'NOUN'), ('\n', 'SPACE'), ('that', 'PRON'), ('IS', 'AUX'), ('proper', 'ADJ'), ('for', 'SCONJ'), ('me', 'PRON'), ('to', 'PART'), ('make', 'VERB'), ('\n\n', 'SPACE'), ('You', 'PRON'), ('may', 'AUX'), ('certainly', 'ADV'), ('ask', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('forgiven', 'VERB'), ('said', 'VERB'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('because', 'SCONJ'), ('you', 'PRON'), ('have', 'VERB'), ('offendedand', 'NOUN'), ('I', 'PRON'), ('should', 'AUX'), ('think', 'VERB'), ('you', 'PRON'), ('\n', 'SPACE'), ('might', 'AUX'), ('NOW', 'ADV'), ('venture', 'VERB'), ('so', 'ADV'), ('far', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('profess', 'VERB'), ('some', 'DET'), ('concern', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('having', 'AUX'), ('ever', 'ADV'), ('formed', 'VERB'), ('the', 'DET'), ('engagement', 'NOUN'), ('which', 'PRON'), ('drew', 'VERB'), ('on', 'ADP'), ('you', 'PRON'), ('\n', 'SPACE'), ('your', 'PRON'), ('mothers', 'NOUN'), ('anger', 'NOUN'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('agreed', 'VERB'), ('that', 'SCONJ'), ('he', 'PRON'), ('might', 'AUX'), ('\n\n', 'SPACE'), ('And', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('has', 'AUX'), ('forgiven', 'VERB'), ('you', 'PRON'), ('perhaps', 'ADV'), ('a', 'DET'), ('little', 'ADJ'), ('humility', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('convenient', 'ADJ'), ('while', 'SCONJ'), ('acknowledging', 'VERB'), ('a', 'DET'), ('second', 'ADJ'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('almost', 'ADV'), ('as', 'ADP'), ('imprudent', 'NOUN'), ('in', 'ADP'), ('HER', 'PRON'), ('eyes', 'NOUN'), ('as', 'SCONJ'), ('the', 'DET'), ('first', 'ADJ'), ('\n\n', 'SPACE'), ('He', 'PRON'), ('had', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('urge', 'VERB'), ('against', 'ADP'), ('it', 'PRON'), ('but', 'CCONJ'), ('still', 'ADV'), ('\n', 'SPACE'), ('resisted', 'VERB'), ('the', 'DET'), ('idea', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('letter', 'NOUN'), ('of', 'ADP'), ('proper', 'ADJ'), ('submission', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('to', 'PART'), ('make', 'VERB'), ('it', 'PRON'), ('easier', 'ADJ'), ('to', 'ADP'), ('him', 'PRON'), ('as', 'SCONJ'), ('he', 'PRON'), ('declared', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('much', 'ADV'), ('greater', 'ADJ'), ('willingness', 'NOUN'), ('to', 'PART'), ('make', 'VERB'), ('mean', 'ADJ'), ('concessions', 'NOUN'), ('\n', 'SPACE'), ('by', 'ADP'), ('word', 'NOUN'), ('of', 'ADP'), ('mouth', 'NOUN'), ('than', 'ADP'), ('on', 'ADP'), ('paper', 'NOUN'), ('it', 'PRON'), ('was', 'AUX'), ('resolved', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('instead', 'ADV'), ('of', 'ADP'), ('writing', 'VERB'), ('to', 'ADP'), ('Fanny', 'PROPN'), ('he', 'PRON'), ('should', 'AUX'), ('go', 'VERB'), ('to', 'ADP'), ('London', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('personally', 'ADV'), ('intreat', 'VERB'), ('her', 'PRON'), ('good', 'ADJ'), ('offices', 'NOUN'), ('in', 'ADP'), ('his', 'PRON'), ('favour', 'NOUN'), ('\n', 'SPACE'), ('And', 'CCONJ'), ('if', 'SCONJ'), ('they', 'PRON'), ('really', 'ADV'), ('DO', 'VERB'), ('interest', 'NOUN'), ('themselves', 'PRON'), ('said', 'VERB'), ('Marianne', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('new', 'ADJ'), ('character', 'NOUN'), ('of', 'ADP'), ('candour', 'NOUN'), ('in', 'ADP'), ('bringing', 'VERB'), ('about', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('reconciliation', 'NOUN'), ('I', 'PRON'), ('shall', 'AUX'), ('think', 'VERB'), ('that', 'SCONJ'), ('even', 'ADV'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Fanny', 'PROPN'), ('\n', 'SPACE'), ('are', 'AUX'), ('not', 'PART'), ('entirely', 'ADV'), ('without', 'ADP'), ('merit', 'NOUN'), ('\n\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('visit', 'NOUN'), ('on', 'ADP'), ('Colonel', 'PROPN'), ('Brandons', 'PROPN'), ('side', 'NOUN'), ('of', 'ADP'), ('only', 'ADV'), ('three', 'NUM'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('four', 'NUM'), ('days', 'NOUN'), ('the', 'DET'), ('two', 'NUM'), ('gentlemen', 'NOUN'), ('quitted', 'VERB'), ('Barton', 'PROPN'), ('together', 'ADV'), ('\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('to', 'PART'), ('go', 'VERB'), ('immediately', 'ADV'), ('to', 'ADP'), ('Delaford', 'PROPN'), ('that', 'SCONJ'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('might', 'AUX'), ('have', 'VERB'), ('some', 'DET'), ('personal', 'ADJ'), ('knowledge', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('future', 'ADJ'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('assist', 'VERB'), ('his', 'PRON'), ('patron', 'NOUN'), ('and', 'CCONJ'), ('friend', 'NOUN'), ('in', 'ADP'), ('deciding', 'VERB'), ('on', 'ADP'), ('what', 'PRON'), ('\n', 'SPACE'), ('improvements', 'NOUN'), ('were', 'AUX'), ('needed', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('and', 'CCONJ'), ('from', 'ADP'), ('thence', 'NOUN'), ('\n', 'SPACE'), ('after', 'ADP'), ('staying', 'VERB'), ('there', 'ADV'), ('a', 'DET'), ('couple', 'NOUN'), ('of', 'ADP'), ('nights', 'NOUN'), ('he', 'PRON'), ('was', 'AUX'), ('to', 'PART'), ('proceed', 'VERB'), ('\n', 'SPACE'), ('on', 'ADP'), ('his', 'PRON'), ('journey', 'NOUN'), ('to', 'ADP'), ('town', 'NOUN'), ('\n\n\n\n', 'SPACE'), ('CHAPTER', 'NOUN'), ('50', 'NUM'), ('\n\n\n', 'SPACE'), ('After', 'ADP'), ('a', 'DET'), ('proper', 'ADJ'), ('resistance', 'NOUN'), ('on', 'ADP'), ('the', 'DET'), ('part', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('just', 'ADV'), ('so', 'ADV'), ('violent', 'ADJ'), ('and', 'CCONJ'), ('so', 'ADV'), ('steady', 'ADJ'), ('as', 'SCONJ'), ('to', 'PART'), ('preserve', 'VERB'), ('her', 'PRON'), ('from', 'ADP'), ('that', 'DET'), ('\n', 'SPACE'), ('reproach', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('always', 'ADV'), ('seemed', 'VERB'), ('fearful', 'ADJ'), ('of', 'ADP'), ('incurring', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('reproach', 'NOUN'), ('of', 'ADP'), ('being', 'AUX'), ('too', 'ADV'), ('amiable', 'ADJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('admitted', 'VERB'), ('\n', 'SPACE'), ('to', 'ADP'), ('her', 'PRON'), ('presence', 'NOUN'), ('and', 'CCONJ'), ('pronounced', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('again', 'ADV'), ('her', 'PRON'), ('son', 'NOUN'), ('\n\n', 'SPACE'), ('Her', 'PRON'), ('family', 'NOUN'), ('had', 'AUX'), ('of', 'ADP'), ('late', 'ADV'), ('been', 'AUX'), ('exceedingly', 'ADV'), ('fluctuating', 'ADJ'), ('\n', 'SPACE'), ('For', 'ADP'), ('many', 'ADJ'), ('years', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('life', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('had', 'VERB'), ('two', 'NUM'), ('sons', 'NOUN'), ('\n', 'SPACE'), ('but', 'CCONJ'), ('the', 'DET'), ('crime', 'NOUN'), ('and', 'CCONJ'), ('annihilation', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('a', 'DET'), ('few', 'ADJ'), ('weeks', 'NOUN'), ('ago', 'ADV'), ('\n', 'SPACE'), ('had', 'AUX'), ('robbed', 'VERB'), ('her', 'PRON'), ('of', 'ADP'), ('one', 'NUM'), ('the', 'DET'), ('similar', 'ADJ'), ('annihilation', 'NOUN'), ('of', 'ADP'), ('Robert', 'PROPN'), ('\n', 'SPACE'), ('had', 'AUX'), ('left', 'VERB'), ('her', 'PRON'), ('for', 'ADP'), ('a', 'DET'), ('fortnight', 'NOUN'), ('without', 'ADP'), ('any', 'PRON'), ('and', 'CCONJ'), ('now', 'ADV'), ('\n', 'SPACE'), ('by', 'ADP'), ('the', 'DET'), ('resuscitation', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('she', 'PRON'), ('had', 'VERB'), ('one', 'NUM'), ('again', 'ADV'), ('\n\n', 'SPACE'), ('In', 'ADP'), ('spite', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('being', 'AUX'), ('allowed', 'VERB'), ('once', 'ADV'), ('more', 'ADJ'), ('to', 'PART'), ('live', 'VERB'), ('\n', 'SPACE'), ('however', 'ADV'), ('he', 'PRON'), ('did', 'AUX'), ('not', 'PART'), ('feel', 'VERB'), ('the', 'DET'), ('continuance', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('existence', 'NOUN'), ('\n', 'SPACE'), ('secure', 'ADJ'), ('till', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('revealed', 'VERB'), ('his', 'PRON'), ('present', 'ADJ'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('for', 'ADP'), ('the', 'DET'), ('publication', 'NOUN'), ('of', 'ADP'), ('that', 'DET'), ('circumstance', 'NOUN'), ('he', 'PRON'), ('feared', 'VERB'), ('\n', 'SPACE'), ('might', 'AUX'), ('give', 'VERB'), ('a', 'DET'), ('sudden', 'ADJ'), ('turn', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('constitution', 'NOUN'), ('and', 'CCONJ'), ('carry', 'VERB'), ('\n', 'SPACE'), ('him', 'PRON'), ('off', 'ADP'), ('as', 'ADV'), ('rapidly', 'ADV'), ('as', 'ADP'), ('before', 'ADV'), (' ', 'SPACE'), ('With', 'ADP'), ('apprehensive', 'ADJ'), ('caution', 'NOUN'), ('\n', 'SPACE'), ('therefore', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), ('revealed', 'VERB'), ('and', 'CCONJ'), ('he', 'PRON'), ('was', 'AUX'), ('listened', 'VERB'), ('to', 'ADP'), ('with', 'ADP'), ('\n', 'SPACE'), ('unexpected', 'ADJ'), ('calmness', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('at', 'ADP'), ('first', 'ADV'), ('reasonably', 'ADV'), ('\n', 'SPACE'), ('endeavoured', 'VERB'), ('to', 'PART'), ('dissuade', 'VERB'), ('him', 'PRON'), ('from', 'ADP'), ('marrying', 'VERB'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('\n', 'SPACE'), ('by', 'ADP'), ('every', 'DET'), ('argument', 'NOUN'), ('in', 'ADP'), ('her', 'PRON'), ('powertold', 'NOUN'), ('him', 'PRON'), ('that', 'SCONJ'), ('in', 'ADP'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('\n', 'SPACE'), ('he', 'PRON'), ('would', 'AUX'), ('have', 'VERB'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('higher', 'ADJ'), ('rank', 'NOUN'), ('and', 'CCONJ'), ('larger', 'ADJ'), ('fortune', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('enforced', 'VERB'), ('the', 'DET'), ('assertion', 'NOUN'), ('by', 'ADP'), ('observing', 'VERB'), ('that', 'SCONJ'), ('Miss', 'PROPN'), ('Morton', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('daughter', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('nobleman', 'NOUN'), ('with', 'ADP'), ('thirty', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('\n', 'SPACE'), ('while', 'SCONJ'), ('Miss', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('only', 'ADV'), ('the', 'DET'), ('daughter', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('private', 'ADJ'), ('\n', 'SPACE'), ('gentleman', 'NOUN'), ('with', 'ADP'), ('no', 'DET'), ('more', 'ADJ'), ('than', 'ADP'), ('THREE', 'NUM'), ('but', 'CCONJ'), ('when', 'SCONJ'), ('she', 'PRON'), ('found', 'VERB'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('perfectly', 'ADV'), ('admitting', 'VERB'), ('the', 'DET'), ('truth', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('representation', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('inclined', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('guided', 'VERB'), ('by', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('judged', 'VERB'), ('it', 'PRON'), ('wisest', 'ADJ'), ('from', 'ADP'), ('the', 'DET'), ('experience', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('past', 'NOUN'), ('\n', 'SPACE'), ('to', 'PART'), ('submitand', 'VERB'), ('therefore', 'ADV'), ('after', 'SCONJ'), ('such', 'DET'), ('an', 'DET'), ('ungracious', 'ADJ'), ('delay', 'NOUN'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('she', 'PRON'), ('owed', 'VERB'), ('to', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('dignity', 'NOUN'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('served', 'VERB'), ('to', 'PART'), ('prevent', 'VERB'), ('\n', 'SPACE'), ('every', 'DET'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('goodwill', 'NOUN'), ('she', 'PRON'), ('issued', 'VERB'), ('her', 'PRON'), ('decree', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('consent', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('marriage', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('she', 'PRON'), ('would', 'AUX'), ('engage', 'VERB'), ('to', 'PART'), ('do', 'VERB'), ('towards', 'ADP'), ('augmenting', 'VERB'), ('\n', 'SPACE'), ('their', 'PRON'), ('income', 'NOUN'), ('was', 'AUX'), ('next', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('considered', 'VERB'), ('and', 'CCONJ'), ('here', 'ADV'), ('it', 'PRON'), ('\n', 'SPACE'), ('plainly', 'ADV'), ('appeared', 'VERB'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('now', 'ADV'), ('her', 'PRON'), ('only', 'ADJ'), ('son', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('by', 'ADP'), ('no', 'DET'), ('means', 'NOUN'), ('her', 'PRON'), ('eldest', 'ADJ'), ('for', 'ADP'), ('while', 'SCONJ'), ('Robert', 'PROPN'), ('was', 'AUX'), ('\n', 'SPACE'), ('inevitably', 'ADV'), ('endowed', 'VERB'), ('with', 'ADP'), ('a', 'DET'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('ayear', 'NOUN'), ('\n', 'SPACE'), ('not', 'PART'), ('the', 'DET'), ('smallest', 'ADJ'), ('objection', 'NOUN'), ('was', 'AUX'), ('made', 'VERB'), ('against', 'ADP'), ('Edwards', 'PROPN'), ('taking', 'VERB'), ('\n', 'SPACE'), ('orders', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('sake', 'NOUN'), ('of', 'ADP'), ('two', 'NUM'), ('hundred', 'NUM'), ('and', 'CCONJ'), ('fifty', 'NUM'), ('at', 'ADP'), ('the', 'DET'), ('utmost', 'NOUN'), ('\n', 'SPACE'), ('nor', 'CCONJ'), ('was', 'AUX'), ('anything', 'PRON'), ('promised', 'VERB'), ('either', 'CCONJ'), ('for', 'ADP'), ('the', 'DET'), ('present', 'NOUN'), ('or', 'CCONJ'), ('in', 'ADP'), ('future', 'NOUN'), ('\n', 'SPACE'), ('beyond', 'ADP'), ('the', 'DET'), ('ten', 'NUM'), ('thousand', 'NUM'), ('pounds', 'NOUN'), ('which', 'PRON'), ('had', 'AUX'), ('been', 'AUX'), ('given', 'VERB'), ('with', 'ADP'), ('Fanny', 'PROPN'), ('\n\n', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('as', 'ADV'), ('much', 'ADV'), ('however', 'ADV'), ('as', 'SCONJ'), ('was', 'AUX'), ('desired', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('more', 'ADJ'), ('than', 'SCONJ'), ('was', 'AUX'), ('expected', 'VERB'), ('by', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('herself', 'PRON'), ('by', 'ADP'), ('her', 'PRON'), ('shuffling', 'VERB'), ('excuses', 'NOUN'), ('\n', 'SPACE'), ('seemed', 'VERB'), ('the', 'DET'), ('only', 'ADJ'), ('person', 'NOUN'), ('surprised', 'ADJ'), ('at', 'ADP'), ('her', 'PRON'), ('not', 'PART'), ('giving', 'VERB'), ('more', 'ADJ'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('an', 'DET'), ('income', 'NOUN'), ('quite', 'ADV'), ('sufficient', 'ADJ'), ('to', 'ADP'), ('their', 'PRON'), ('wants', 'NOUN'), ('\n', 'SPACE'), ('thus', 'ADV'), ('secured', 'VERB'), ('to', 'ADP'), ('them', 'PRON'), ('they', 'PRON'), ('had', 'VERB'), ('nothing', 'PRON'), ('to', 'PART'), ('wait', 'VERB'), ('for', 'SCONJ'), ('\n', 'SPACE'), ('after', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('in', 'ADP'), ('possession', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('living', 'NOUN'), ('but', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('readiness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('house', 'NOUN'), ('to', 'PART'), ('which', 'PRON'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('\n', 'SPACE'), ('with', 'ADP'), ('an', 'DET'), ('eager', 'ADJ'), ('desire', 'NOUN'), ('for', 'ADP'), ('the', 'DET'), ('accommodation', 'NOUN'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('was', 'AUX'), ('making', 'VERB'), ('considerable', 'ADJ'), ('improvements', 'NOUN'), ('and', 'CCONJ'), ('after', 'ADP'), ('waiting', 'VERB'), ('\n', 'SPACE'), ('some', 'DET'), ('time', 'NOUN'), ('for', 'ADP'), ('their', 'PRON'), ('completion', 'NOUN'), ('after', 'ADP'), ('experiencing', 'VERB'), ('\n', 'SPACE'), ('as', 'ADP'), ('usual', 'ADJ'), ('a', 'DET'), ('thousand', 'NUM'), ('disappointments', 'NOUN'), ('and', 'CCONJ'), ('delays', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('the', 'DET'), ('unaccountable', 'ADJ'), ('dilatoriness', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('workmen', 'NOUN'), ('Elinor', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('usual', 'ADJ'), ('broke', 'VERB'), ('through', 'ADP'), ('the', 'DET'), ('first', 'ADJ'), ('positive', 'ADJ'), ('resolution', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('not', 'PART'), ('marrying', 'VERB'), ('till', 'SCONJ'), ('every', 'DET'), ('thing', 'NOUN'), ('was', 'AUX'), ('ready', 'ADJ'), ('and', 'CCONJ'), ('the', 'DET'), ('\n', 'SPACE'), ('ceremony', 'NOUN'), ('took', 'VERB'), ('place', 'NOUN'), ('in', 'ADP'), ('Barton', 'PROPN'), ('church', 'NOUN'), ('early', 'ADV'), ('in', 'ADP'), ('the', 'DET'), ('autumn', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('first', 'ADJ'), ('month', 'NOUN'), ('after', 'SCONJ'), ('their', 'PRON'), ('marriage', 'NOUN'), ('was', 'AUX'), ('spent', 'VERB'), ('\n', 'SPACE'), ('with', 'ADP'), ('their', 'PRON'), ('friend', 'NOUN'), ('at', 'ADP'), ('the', 'DET'), ('Mansionhouse', 'PROPN'), ('from', 'ADP'), ('whence', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('could', 'AUX'), ('superintend', 'VERB'), ('the', 'DET'), ('progress', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('Parsonage', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('direct', 'VERB'), ('every', 'DET'), ('thing', 'NOUN'), ('as', 'SCONJ'), ('they', 'PRON'), ('liked', 'VERB'), ('on', 'ADP'), ('the', 'DET'), ('spot', 'NOUN'), ('\n', 'SPACE'), ('could', 'AUX'), ('chuse', 'VERB'), ('papers', 'NOUN'), ('project', 'NOUN'), ('shrubberies', 'NOUN'), ('and', 'CCONJ'), ('invent', 'VERB'), ('a', 'DET'), ('sweep', 'NOUN'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Jenningss', 'PROPN'), ('prophecies', 'NOUN'), ('though', 'ADV'), ('rather', 'ADV'), ('jumbled', 'VERB'), ('together', 'ADV'), ('\n', 'SPACE'), ('were', 'AUX'), ('chiefly', 'ADV'), ('fulfilled', 'VERB'), ('for', 'SCONJ'), ('she', 'PRON'), ('was', 'AUX'), ('able', 'ADJ'), ('to', 'PART'), ('visit', 'VERB'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('his', 'PRON'), ('wife', 'NOUN'), ('in', 'ADP'), ('their', 'PRON'), ('Parsonage', 'NOUN'), ('by', 'ADP'), ('Michaelmas', 'PROPN'), ('and', 'CCONJ'), ('she', 'PRON'), ('\n', 'SPACE'), ('found', 'VERB'), ('in', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('her', 'PRON'), ('husband', 'NOUN'), ('as', 'SCONJ'), ('she', 'PRON'), ('really', 'ADV'), ('believed', 'VERB'), ('\n', 'SPACE'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('happiest', 'ADJ'), ('couples', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), (' ', 'SPACE'), ('They', 'PRON'), ('had', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('fact', 'NOUN'), ('nothing', 'PRON'), ('to', 'PART'), ('wish', 'VERB'), ('for', 'ADP'), ('but', 'CCONJ'), ('the', 'DET'), ('marriage', 'NOUN'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('rather', 'ADV'), ('better', 'ADJ'), ('pasturage', 'NOUN'), ('for', 'ADP'), ('\n', 'SPACE'), ('their', 'PRON'), ('cows', 'NOUN'), ('\n\n', 'SPACE'), ('They', 'PRON'), ('were', 'AUX'), ('visited', 'VERB'), ('on', 'ADP'), ('their', 'PRON'), ('first', 'ADJ'), ('settling', 'VERB'), ('by', 'ADP'), ('almost', 'ADV'), ('\n', 'SPACE'), ('all', 'DET'), ('their', 'PRON'), ('relations', 'NOUN'), ('and', 'CCONJ'), ('friends', 'NOUN'), (' ', 'SPACE'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('came', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('inspect', 'VERB'), ('the', 'DET'), ('happiness', 'NOUN'), ('which', 'PRON'), ('she', 'PRON'), ('was', 'AUX'), ('almost', 'ADV'), ('ashamed', 'ADJ'), ('\n', 'SPACE'), ('of', 'ADP'), ('having', 'AUX'), ('authorised', 'VERB'), ('and', 'CCONJ'), ('even', 'ADV'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('were', 'AUX'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('expense', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('journey', 'NOUN'), ('from', 'ADP'), ('Sussex', 'PROPN'), ('to', 'PART'), ('do', 'VERB'), ('them', 'PRON'), ('honour', 'VERB'), ('\n\n', 'SPACE'), ('I', 'PRON'), ('will', 'AUX'), ('not', 'PART'), ('say', 'VERB'), ('that', 'SCONJ'), ('I', 'PRON'), ('am', 'AUX'), ('disappointed', 'VERB'), ('my', 'PRON'), ('dear', 'ADJ'), ('sister', 'NOUN'), ('\n', 'SPACE'), ('said', 'VERB'), ('John', 'PROPN'), ('as', 'SCONJ'), ('they', 'PRON'), ('were', 'AUX'), ('walking', 'VERB'), ('together', 'ADV'), ('one', 'NUM'), ('morning', 'NOUN'), ('before', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('gates', 'NOUN'), ('of', 'ADP'), ('Delaford', 'PROPN'), ('House', 'PROPN'), ('THAT', 'PRON'), ('would', 'AUX'), ('be', 'AUX'), ('saying', 'VERB'), ('too', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('certainly', 'ADV'), ('you', 'PRON'), ('have', 'AUX'), ('been', 'AUX'), ('one', 'NUM'), ('of', 'ADP'), ('the', 'DET'), ('most', 'ADV'), ('fortunate', 'ADJ'), ('young', 'ADJ'), ('\n', 'SPACE'), ('women', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('world', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('is', 'AUX'), (' ', 'SPACE'), ('But', 'CCONJ'), ('I', 'PRON'), ('confess', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('\n', 'SPACE'), ('give', 'VERB'), ('me', 'PRON'), ('great', 'ADJ'), ('pleasure', 'NOUN'), ('to', 'PART'), ('call', 'VERB'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('His', 'PRON'), ('property', 'NOUN'), ('here', 'ADV'), ('his', 'PRON'), ('place', 'NOUN'), ('his', 'PRON'), ('house', 'NOUN'), ('every', 'DET'), ('thing', 'NOUN'), ('is', 'AUX'), ('in', 'ADP'), ('\n', 'SPACE'), ('such', 'ADJ'), ('respectable', 'ADJ'), ('and', 'CCONJ'), ('excellent', 'ADJ'), ('conditionand', 'NOUN'), ('his', 'PRON'), ('woodsI', 'PROPN'), ('\n', 'SPACE'), ('have', 'AUX'), ('not', 'PART'), ('seen', 'VERB'), ('such', 'ADJ'), ('timber', 'NOUN'), ('any', 'PRON'), ('where', 'SCONJ'), ('in', 'ADP'), ('Dorsetshire', 'PROPN'), ('as', 'SCONJ'), ('there', 'PRON'), ('\n', 'SPACE'), ('is', 'AUX'), ('now', 'ADV'), ('standing', 'VERB'), ('in', 'ADP'), ('Delaford', 'PROPN'), ('HangerAnd', 'PROPN'), ('though', 'SCONJ'), ('perhaps', 'ADV'), ('\n', 'SPACE'), ('Marianne', 'PROPN'), ('may', 'AUX'), ('not', 'PART'), ('seem', 'VERB'), ('exactly', 'ADV'), ('the', 'DET'), ('person', 'NOUN'), ('to', 'PART'), ('attract', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('yet', 'ADV'), ('I', 'PRON'), ('think', 'VERB'), ('it', 'PRON'), ('would', 'AUX'), ('altogether', 'ADV'), ('be', 'AUX'), ('advisable', 'ADJ'), ('for', 'ADP'), ('you', 'PRON'), ('to', 'PART'), ('\n', 'SPACE'), ('have', 'VERB'), ('them', 'PRON'), ('now', 'ADV'), ('frequently', 'ADV'), ('staying', 'VERB'), ('with', 'ADP'), ('you', 'PRON'), ('for', 'ADP'), ('as', 'SCONJ'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('seems', 'VERB'), ('a', 'DET'), ('great', 'ADJ'), ('deal', 'NOUN'), ('at', 'ADP'), ('home', 'NOUN'), ('nobody', 'PRON'), ('can', 'AUX'), ('tell', 'VERB'), ('what', 'PRON'), ('\n', 'SPACE'), ('may', 'AUX'), ('happenfor', 'VERB'), ('when', 'SCONJ'), ('people', 'NOUN'), ('are', 'AUX'), ('much', 'ADV'), ('thrown', 'VERB'), ('together', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('see', 'VERB'), ('little', 'ADJ'), ('of', 'ADP'), ('anybody', 'PRON'), ('elseand', 'NOUN'), ('it', 'PRON'), ('will', 'AUX'), ('always', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('in', 'ADP'), ('your', 'PRON'), ('power', 'NOUN'), ('to', 'PART'), ('set', 'VERB'), ('her', 'PRON'), ('off', 'ADP'), ('to', 'AUX'), ('advantage', 'VERB'), ('and', 'CCONJ'), ('so', 'ADV'), ('forth', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('short', 'ADJ'), ('you', 'PRON'), ('may', 'AUX'), ('as', 'ADV'), ('well', 'ADV'), ('give', 'VERB'), ('her', 'PRON'), ('a', 'DET'), ('chanceYou', 'X'), ('understand', 'VERB'), ('\n', 'SPACE'), ('me', 'PRON'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('though', 'SCONJ'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('DID', 'AUX'), ('come', 'VERB'), ('to', 'PART'), ('see', 'VERB'), ('them', 'PRON'), ('and', 'CCONJ'), ('always', 'ADV'), ('\n', 'SPACE'), ('treated', 'VERB'), ('them', 'PRON'), ('with', 'ADP'), ('the', 'DET'), ('makebelieve', 'NOUN'), ('of', 'ADP'), ('decent', 'ADJ'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('they', 'PRON'), ('were', 'AUX'), ('never', 'ADV'), ('insulted', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('real', 'ADJ'), ('favour', 'NOUN'), ('and', 'CCONJ'), ('preference', 'NOUN'), ('\n', 'SPACE'), ('THAT', 'PRON'), ('was', 'AUX'), ('due', 'ADJ'), ('to', 'ADP'), ('the', 'DET'), ('folly', 'NOUN'), ('of', 'ADP'), ('Robert', 'PROPN'), ('and', 'CCONJ'), ('the', 'DET'), ('cunning', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('it', 'PRON'), ('was', 'AUX'), ('earned', 'VERB'), ('by', 'ADP'), ('them', 'PRON'), ('before', 'SCONJ'), ('many', 'ADJ'), ('months', 'NOUN'), ('\n', 'SPACE'), ('had', 'AUX'), ('passed', 'VERB'), ('away', 'ADP'), (' ', 'SPACE'), ('The', 'DET'), ('selfish', 'ADJ'), ('sagacity', 'NOUN'), ('of', 'ADP'), ('the', 'DET'), ('latter', 'ADJ'), ('\n', 'SPACE'), ('which', 'PRON'), ('had', 'VERB'), ('at', 'ADP'), ('first', 'ADV'), ('drawn', 'VERB'), ('Robert', 'PROPN'), ('into', 'ADP'), ('the', 'DET'), ('scrape', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('the', 'DET'), ('principal', 'ADJ'), ('instrument', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('deliverance', 'NOUN'), ('from', 'ADP'), ('it', 'PRON'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('respectful', 'ADJ'), ('humility', 'NOUN'), ('assiduous', 'ADJ'), ('attentions', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('endless', 'ADJ'), ('flatteries', 'NOUN'), ('as', 'ADV'), ('soon', 'ADV'), ('as', 'SCONJ'), ('the', 'DET'), ('smallest', 'ADJ'), ('opening', 'NOUN'), ('\n', 'SPACE'), ('was', 'AUX'), ('given', 'VERB'), ('for', 'ADP'), ('their', 'PRON'), ('exercise', 'NOUN'), ('reconciled', 'VERB'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('choice', 'NOUN'), ('and', 'CCONJ'), ('reestablished', 'VERB'), ('him', 'PRON'), ('completely', 'ADV'), ('in', 'ADP'), ('\n', 'SPACE'), ('her', 'PRON'), ('favour', 'NOUN'), ('\n\n', 'SPACE'), ('The', 'DET'), ('whole', 'NOUN'), ('of', 'ADP'), ('Lucys', 'PROPN'), ('behaviour', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('affair', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('the', 'DET'), ('prosperity', 'NOUN'), ('which', 'PRON'), ('crowned', 'VERB'), ('it', 'PRON'), ('therefore', 'ADV'), ('may', 'AUX'), ('be', 'AUX'), ('held', 'VERB'), ('\n', 'SPACE'), ('forth', 'ADP'), ('as', 'ADP'), ('a', 'DET'), ('most', 'ADV'), ('encouraging', 'ADJ'), ('instance', 'NOUN'), ('of', 'ADP'), ('what', 'PRON'), ('an', 'DET'), ('earnest', 'ADJ'), ('\n', 'SPACE'), ('an', 'DET'), ('unceasing', 'VERB'), ('attention', 'NOUN'), ('to', 'ADP'), ('selfinterest', 'NOUN'), ('however', 'ADV'), ('its', 'PRON'), ('progress', 'NOUN'), ('\n', 'SPACE'), ('may', 'AUX'), ('be', 'AUX'), ('apparently', 'ADV'), ('obstructed', 'VERB'), ('will', 'AUX'), ('do', 'VERB'), ('in', 'ADP'), ('securing', 'VERB'), ('every', 'DET'), ('\n', 'SPACE'), ('advantage', 'NOUN'), ('of', 'ADP'), ('fortune', 'NOUN'), ('with', 'ADP'), ('no', 'DET'), ('other', 'ADJ'), ('sacrifice', 'NOUN'), ('than', 'ADP'), ('that', 'PRON'), ('of', 'ADP'), ('time', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('conscience', 'NOUN'), (' ', 'SPACE'), ('When', 'SCONJ'), ('Robert', 'PROPN'), ('first', 'ADV'), ('sought', 'VERB'), ('her', 'PRON'), ('acquaintance', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('privately', 'ADV'), ('visited', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('Bartletts', 'PROPN'), ('Buildings', 'PROPN'), ('\n', 'SPACE'), ('it', 'PRON'), ('was', 'AUX'), ('only', 'ADV'), ('with', 'SCONJ'), ('the', 'DET'), ('view', 'NOUN'), ('imputed', 'VERB'), ('to', 'ADP'), ('him', 'PRON'), ('by', 'ADP'), ('his', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('merely', 'ADV'), ('meant', 'VERB'), ('to', 'PART'), ('persuade', 'VERB'), ('her', 'PRON'), ('to', 'PART'), ('give', 'VERB'), ('up', 'ADP'), ('the', 'DET'), ('engagement', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('as', 'SCONJ'), ('there', 'PRON'), ('could', 'AUX'), ('be', 'AUX'), ('nothing', 'PRON'), ('to', 'PART'), ('overcome', 'VERB'), ('but', 'CCONJ'), ('the', 'DET'), ('affection', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('both', 'PRON'), ('he', 'PRON'), ('naturally', 'ADV'), ('expected', 'VERB'), ('that', 'SCONJ'), ('one', 'NUM'), ('or', 'CCONJ'), ('two', 'NUM'), ('interviews', 'NOUN'), ('\n', 'SPACE'), ('would', 'AUX'), ('settle', 'VERB'), ('the', 'DET'), ('matter', 'NOUN'), (' ', 'SPACE'), ('In', 'ADP'), ('that', 'DET'), ('point', 'NOUN'), ('however', 'ADV'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('only', 'ADV'), ('he', 'PRON'), ('erredfor', 'VERB'), ('though', 'SCONJ'), ('Lucy', 'PROPN'), ('soon', 'ADV'), ('gave', 'VERB'), ('him', 'PRON'), ('\n', 'SPACE'), ('hopes', 'VERB'), ('that', 'SCONJ'), ('his', 'PRON'), ('eloquence', 'NOUN'), ('would', 'AUX'), ('convince', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('TIME', 'PROPN'), ('\n', 'SPACE'), ('another', 'DET'), ('visit', 'NOUN'), ('another', 'DET'), ('conversation', 'NOUN'), ('was', 'AUX'), ('always', 'ADV'), ('wanted', 'VERB'), ('\n', 'SPACE'), ('to', 'PART'), ('produce', 'VERB'), ('this', 'DET'), ('conviction', 'NOUN'), (' ', 'SPACE'), ('Some', 'DET'), ('doubts', 'NOUN'), ('always', 'ADV'), ('lingered', 'VERB'), ('\n', 'SPACE'), ('in', 'ADP'), ('her', 'PRON'), ('mind', 'NOUN'), ('when', 'SCONJ'), ('they', 'PRON'), ('parted', 'VERB'), ('which', 'PRON'), ('could', 'AUX'), ('only', 'ADV'), ('be', 'AUX'), ('\n', 'SPACE'), ('removed', 'VERB'), ('by', 'ADP'), ('another', 'DET'), ('half', 'ADJ'), ('hours', 'NOUN'), ('discourse', 'NOUN'), ('with', 'ADP'), ('himself', 'PRON'), ('\n', 'SPACE'), ('His', 'PRON'), ('attendance', 'NOUN'), ('was', 'AUX'), ('by', 'ADP'), ('this', 'DET'), ('means', 'NOUN'), ('secured', 'VERB'), ('and', 'CCONJ'), ('the', 'DET'), ('rest', 'NOUN'), ('\n', 'SPACE'), ('followed', 'VERB'), ('in', 'ADP'), ('course', 'NOUN'), (' ', 'SPACE'), ('Instead', 'ADV'), ('of', 'ADP'), ('talking', 'VERB'), ('of', 'ADP'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('they', 'PRON'), ('came', 'VERB'), ('gradually', 'ADV'), ('to', 'PART'), ('talk', 'VERB'), ('only', 'ADV'), ('of', 'ADP'), ('Roberta', 'PROPN'), ('subject', 'NOUN'), ('\n', 'SPACE'), ('on', 'ADP'), ('which', 'PRON'), ('he', 'PRON'), ('had', 'VERB'), ('always', 'ADV'), ('more', 'ADJ'), ('to', 'PART'), ('say', 'VERB'), ('than', 'ADP'), ('on', 'ADP'), ('any', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('which', 'PRON'), ('she', 'PRON'), ('soon', 'ADV'), ('betrayed', 'VERB'), ('an', 'DET'), ('interest', 'NOUN'), ('even', 'ADV'), ('equal', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('his', 'PRON'), ('own', 'ADJ'), ('and', 'CCONJ'), ('in', 'ADP'), ('short', 'ADJ'), ('it', 'PRON'), ('became', 'VERB'), ('speedily', 'ADV'), ('evident', 'ADJ'), ('\n', 'SPACE'), ('to', 'ADP'), ('both', 'PRON'), ('that', 'SCONJ'), ('he', 'PRON'), ('had', 'AUX'), ('entirely', 'ADV'), ('supplanted', 'VERB'), ('his', 'PRON'), ('brother', 'NOUN'), ('\n', 'SPACE'), ('He', 'PRON'), ('was', 'AUX'), ('proud', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('conquest', 'NOUN'), ('proud', 'ADJ'), ('of', 'ADP'), ('tricking', 'VERB'), ('Edward', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('very', 'ADV'), ('proud', 'ADJ'), ('of', 'ADP'), ('marrying', 'VERB'), ('privately', 'ADV'), ('without', 'SCONJ'), ('his', 'PRON'), ('\n', 'SPACE'), ('mothers', 'NOUN'), ('consent', 'VERB'), (' ', 'SPACE'), ('What', 'PRON'), ('immediately', 'ADV'), ('followed', 'VERB'), ('is', 'AUX'), ('known', 'VERB'), ('\n', 'SPACE'), ('They', 'PRON'), ('passed', 'VERB'), ('some', 'DET'), ('months', 'NOUN'), ('in', 'ADP'), ('great', 'ADJ'), ('happiness', 'NOUN'), ('at', 'ADP'), ('Dawlish', 'PROPN'), ('\n', 'SPACE'), ('for', 'SCONJ'), ('she', 'PRON'), ('had', 'VERB'), ('many', 'ADJ'), ('relations', 'NOUN'), ('and', 'CCONJ'), ('old', 'ADJ'), ('acquaintances', 'NOUN'), ('to', 'PART'), ('\n', 'SPACE'), ('cutand', 'VERB'), ('he', 'PRON'), ('drew', 'VERB'), ('several', 'ADJ'), ('plans', 'NOUN'), ('for', 'ADP'), ('magnificent', 'ADJ'), ('cottages', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('thence', 'NOUN'), ('returning', 'VERB'), ('to', 'ADP'), ('town', 'NOUN'), ('procured', 'VERB'), ('the', 'DET'), ('forgiveness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('by', 'ADP'), ('the', 'DET'), ('simple', 'ADJ'), ('expedient', 'NOUN'), ('of', 'ADP'), ('asking', 'VERB'), ('it', 'PRON'), ('\n', 'SPACE'), ('which', 'PRON'), ('at', 'ADP'), ('Lucys', 'PROPN'), ('instigation', 'NOUN'), ('was', 'AUX'), ('adopted', 'VERB'), (' ', 'SPACE'), ('The', 'DET'), ('forgiveness', 'NOUN'), ('\n', 'SPACE'), ('at', 'ADP'), ('first', 'ADV'), ('indeed', 'ADV'), ('as', 'SCONJ'), ('was', 'AUX'), ('reasonable', 'ADJ'), ('comprehended', 'VERB'), ('only', 'ADV'), ('Robert', 'PROPN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('who', 'PRON'), ('had', 'AUX'), ('owed', 'VERB'), ('his', 'PRON'), ('mother', 'NOUN'), ('no', 'DET'), ('duty', 'NOUN'), ('and', 'CCONJ'), ('therefore', 'ADV'), ('\n', 'SPACE'), ('could', 'AUX'), ('have', 'AUX'), ('transgressed', 'VERB'), ('none', 'NOUN'), ('still', 'ADV'), ('remained', 'VERB'), ('some', 'DET'), ('weeks', 'NOUN'), ('\n', 'SPACE'), ('longer', 'ADV'), ('unpardoned', 'ADJ'), (' ', 'SPACE'), ('But', 'CCONJ'), ('perseverance', 'NOUN'), ('in', 'ADP'), ('humility', 'NOUN'), ('of', 'ADP'), ('conduct', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('messages', 'NOUN'), ('in', 'ADP'), ('selfcondemnation', 'NOUN'), ('for', 'ADP'), ('Roberts', 'PROPN'), ('offence', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('gratitude', 'VERB'), ('for', 'ADP'), ('the', 'DET'), ('unkindness', 'ADJ'), ('she', 'PRON'), ('was', 'AUX'), ('treated', 'VERB'), ('with', 'ADP'), ('\n', 'SPACE'), ('procured', 'VERB'), ('her', 'PRON'), ('in', 'ADP'), ('time', 'NOUN'), ('the', 'DET'), ('haughty', 'ADJ'), ('notice', 'NOUN'), ('which', 'PRON'), ('overcame', 'VERB'), ('\n', 'SPACE'), ('her', 'PRON'), ('by', 'ADP'), ('its', 'PRON'), ('graciousness', 'NOUN'), ('and', 'CCONJ'), ('led', 'VERB'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('by', 'ADP'), ('rapid', 'ADJ'), ('\n', 'SPACE'), ('degrees', 'NOUN'), ('to', 'ADP'), ('the', 'DET'), ('highest', 'ADJ'), ('state', 'NOUN'), ('of', 'ADP'), ('affection', 'NOUN'), ('and', 'CCONJ'), ('influence', 'NOUN'), ('\n', 'SPACE'), ('Lucy', 'PROPN'), ('became', 'VERB'), ('as', 'ADV'), ('necessary', 'ADJ'), ('to', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('as', 'ADP'), ('either', 'DET'), ('Robert', 'PROPN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('Fanny', 'PROPN'), ('and', 'CCONJ'), ('while', 'SCONJ'), ('Edward', 'PROPN'), ('was', 'AUX'), ('never', 'ADV'), ('cordially', 'ADV'), ('forgiven', 'VERB'), ('\n', 'SPACE'), ('for', 'ADP'), ('having', 'AUX'), ('once', 'ADV'), ('intended', 'VERB'), ('to', 'PART'), ('marry', 'VERB'), ('her', 'PRON'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('though', 'SCONJ'), ('superior', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('in', 'ADP'), ('fortune', 'NOUN'), ('and', 'CCONJ'), ('birth', 'NOUN'), ('was', 'AUX'), ('spoken', 'VERB'), ('\n', 'SPACE'), ('of', 'ADP'), ('as', 'ADP'), ('an', 'DET'), ('intruder', 'NOUN'), ('SHE', 'PRON'), ('was', 'AUX'), ('in', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('considered', 'VERB'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('always', 'ADV'), ('openly', 'ADV'), ('acknowledged', 'VERB'), ('to', 'PART'), ('be', 'AUX'), ('a', 'DET'), ('favourite', 'ADJ'), ('child', 'NOUN'), ('\n', 'SPACE'), ('They', 'PRON'), ('settled', 'VERB'), ('in', 'ADP'), ('town', 'NOUN'), ('received', 'VERB'), ('very', 'ADV'), ('liberal', 'ADJ'), ('assistance', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('Mrs', 'PROPN'), ('Ferrars', 'PROPN'), ('were', 'AUX'), ('on', 'ADP'), ('the', 'DET'), ('best', 'ADJ'), ('terms', 'NOUN'), ('imaginable', 'ADJ'), ('\n', 'SPACE'), ('with', 'ADP'), ('the', 'DET'), ('Dashwoods', 'PROPN'), ('and', 'CCONJ'), ('setting', 'VERB'), ('aside', 'ADP'), ('the', 'DET'), ('jealousies', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('illwill', 'NOUN'), ('continually', 'ADV'), ('subsisting', 'VERB'), ('between', 'ADP'), ('Fanny', 'PROPN'), ('and', 'CCONJ'), ('Lucy', 'PROPN'), ('\n', 'SPACE'), ('in', 'ADP'), ('which', 'PRON'), ('their', 'PRON'), ('husbands', 'NOUN'), ('of', 'ADP'), ('course', 'NOUN'), ('took', 'VERB'), ('a', 'DET'), ('part', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('as', 'SCONJ'), ('the', 'DET'), ('frequent', 'ADJ'), ('domestic', 'ADJ'), ('disagreements', 'NOUN'), ('between', 'ADP'), ('Robert', 'PROPN'), ('and', 'CCONJ'), ('\n', 'SPACE'), ('Lucy', 'PROPN'), ('themselves', 'PRON'), ('nothing', 'PRON'), ('could', 'AUX'), ('exceed', 'VERB'), ('the', 'DET'), ('harmony', 'NOUN'), ('in', 'ADP'), ('which', 'PRON'), ('\n', 'SPACE'), ('they', 'PRON'), ('all', 'PRON'), ('lived', 'VERB'), ('together', 'ADV'), ('\n\n', 'SPACE'), ('What', 'PRON'), ('Edward', 'PROPN'), ('had', 'AUX'), ('done', 'VERB'), ('to', 'PART'), ('forfeit', 'VERB'), ('the', 'DET'), ('right', 'NOUN'), ('of', 'ADP'), ('eldest', 'ADJ'), ('\n', 'SPACE'), ('son', 'NOUN'), ('might', 'AUX'), ('have', 'AUX'), ('puzzled', 'VERB'), ('many', 'ADJ'), ('people', 'NOUN'), ('to', 'PART'), ('find', 'VERB'), ('out', 'ADP'), ('and', 'CCONJ'), ('what', 'PRON'), ('\n', 'SPACE'), ('Robert', 'PROPN'), ('had', 'AUX'), ('done', 'VERB'), ('to', 'PART'), ('succeed', 'VERB'), ('to', 'ADP'), ('it', 'PRON'), ('might', 'AUX'), ('have', 'AUX'), ('puzzled', 'VERB'), ('them', 'PRON'), ('\n', 'SPACE'), ('still', 'ADV'), ('more', 'ADJ'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('an', 'DET'), ('arrangement', 'NOUN'), ('however', 'ADV'), ('justified', 'VERB'), ('in', 'ADP'), ('\n', 'SPACE'), ('its', 'PRON'), ('effects', 'NOUN'), ('if', 'SCONJ'), ('not', 'PART'), ('in', 'ADP'), ('its', 'PRON'), ('cause', 'NOUN'), ('for', 'ADP'), ('nothing', 'PRON'), ('ever', 'ADV'), ('\n', 'SPACE'), ('appeared', 'VERB'), ('in', 'ADP'), ('Roberts', 'PROPN'), ('style', 'NOUN'), ('of', 'ADP'), ('living', 'NOUN'), ('or', 'CCONJ'), ('of', 'ADP'), ('talking', 'VERB'), ('to', 'PART'), ('give', 'VERB'), ('\n', 'SPACE'), ('a', 'DET'), ('suspicion', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('regretting', 'VERB'), ('the', 'DET'), ('extent', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('income', 'NOUN'), ('\n', 'SPACE'), ('as', 'ADP'), ('either', 'ADV'), ('leaving', 'VERB'), ('his', 'PRON'), ('brother', 'NOUN'), ('too', 'ADV'), ('little', 'ADJ'), ('or', 'CCONJ'), ('bringing', 'VERB'), ('\n', 'SPACE'), ('himself', 'PRON'), ('too', 'ADV'), ('muchand', 'PROPN'), ('if', 'SCONJ'), ('Edward', 'PROPN'), ('might', 'AUX'), ('be', 'AUX'), ('judged', 'VERB'), ('from', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('ready', 'ADJ'), ('discharge', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('duties', 'NOUN'), ('in', 'ADP'), ('every', 'DET'), ('particular', 'NOUN'), ('\n', 'SPACE'), ('from', 'ADP'), ('an', 'DET'), ('increasing', 'VERB'), ('attachment', 'NOUN'), ('to', 'ADP'), ('his', 'PRON'), ('wife', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('home', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('from', 'ADP'), ('the', 'DET'), ('regular', 'ADJ'), ('cheerfulness', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('he', 'PRON'), ('might', 'AUX'), ('be', 'AUX'), ('supposed', 'VERB'), ('no', 'PRON'), ('less', 'ADV'), ('contented', 'VERB'), ('with', 'ADP'), ('his', 'PRON'), ('lot', 'NOUN'), ('\n', 'SPACE'), ('no', 'PRON'), ('less', 'ADV'), ('free', 'ADJ'), ('from', 'ADP'), ('every', 'DET'), ('wish', 'NOUN'), ('of', 'ADP'), ('an', 'DET'), ('exchange', 'NOUN'), ('\n\n', 'SPACE'), ('Elinors', 'PROPN'), ('marriage', 'NOUN'), ('divided', 'VERB'), ('her', 'PRON'), ('as', 'ADV'), ('little', 'ADJ'), ('from', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('family', 'NOUN'), ('as', 'SCONJ'), ('could', 'AUX'), ('well', 'ADV'), ('be', 'AUX'), ('contrived', 'VERB'), ('without', 'ADP'), ('rendering', 'VERB'), ('\n', 'SPACE'), ('the', 'DET'), ('cottage', 'NOUN'), ('at', 'ADP'), ('Barton', 'PROPN'), ('entirely', 'ADV'), ('useless', 'ADJ'), ('for', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('sisters', 'NOUN'), ('spent', 'VERB'), ('much', 'ADV'), ('more', 'ADJ'), ('than', 'ADP'), ('half', 'DET'), ('their', 'PRON'), ('time', 'NOUN'), ('with', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('acting', 'VERB'), ('on', 'ADP'), ('motives', 'NOUN'), ('of', 'ADP'), ('policy', 'NOUN'), ('as', 'ADV'), ('well', 'ADV'), ('\n', 'SPACE'), ('as', 'ADP'), ('pleasure', 'NOUN'), ('in', 'ADP'), ('the', 'DET'), ('frequency', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('visits', 'NOUN'), ('at', 'ADP'), ('Delaford', 'PROPN'), ('\n', 'SPACE'), ('for', 'ADP'), ('her', 'PRON'), ('wish', 'NOUN'), ('of', 'ADP'), ('bringing', 'VERB'), ('Marianne', 'PROPN'), ('and', 'CCONJ'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('together', 'ADV'), ('\n', 'SPACE'), ('was', 'AUX'), ('hardly', 'ADV'), ('less', 'ADV'), ('earnest', 'ADJ'), ('though', 'SCONJ'), ('rather', 'ADV'), ('more', 'ADV'), ('liberal', 'ADJ'), ('than', 'ADP'), ('\n', 'SPACE'), ('what', 'PRON'), ('John', 'PROPN'), ('had', 'AUX'), ('expressed', 'VERB'), (' ', 'SPACE'), ('It', 'PRON'), ('was', 'AUX'), ('now', 'ADV'), ('her', 'PRON'), ('darling', 'NOUN'), ('object', 'NOUN'), ('\n', 'SPACE'), ('Precious', 'ADJ'), ('as', 'SCONJ'), ('was', 'AUX'), ('the', 'DET'), ('company', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('daughter', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('she', 'PRON'), ('desired', 'VERB'), ('nothing', 'PRON'), ('so', 'ADV'), ('much', 'ADV'), ('as', 'SCONJ'), ('to', 'PART'), ('give', 'VERB'), ('up', 'ADP'), ('its', 'PRON'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('enjoyment', 'NOUN'), ('to', 'ADP'), ('her', 'PRON'), ('valued', 'VERB'), ('friend', 'NOUN'), ('and', 'CCONJ'), ('to', 'PART'), ('see', 'VERB'), ('Marianne', 'PROPN'), ('settled', 'VERB'), ('at', 'ADP'), ('\n', 'SPACE'), ('the', 'DET'), ('mansionhouse', 'NOUN'), ('was', 'AUX'), ('equally', 'ADV'), ('the', 'DET'), ('wish', 'NOUN'), ('of', 'ADP'), ('Edward', 'PROPN'), ('and', 'CCONJ'), ('Elinor', 'PROPN'), ('\n', 'SPACE'), ('They', 'PRON'), ('each', 'PRON'), ('felt', 'VERB'), ('his', 'PRON'), ('sorrows', 'NOUN'), ('and', 'CCONJ'), ('their', 'PRON'), ('own', 'ADJ'), ('obligations', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('by', 'ADP'), ('general', 'ADJ'), ('consent', 'NOUN'), ('was', 'AUX'), ('to', 'PART'), ('be', 'AUX'), ('the', 'DET'), ('reward', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('all', 'PRON'), ('\n\n', 'SPACE'), ('With', 'ADP'), ('such', 'DET'), ('a', 'DET'), ('confederacy', 'NOUN'), ('against', 'ADP'), ('herwith', 'PROPN'), ('a', 'DET'), ('knowledge', 'NOUN'), ('\n', 'SPACE'), ('so', 'ADV'), ('intimate', 'ADJ'), ('of', 'ADP'), ('his', 'PRON'), ('goodnesswith', 'ADP'), ('a', 'DET'), ('conviction', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('fond', 'ADJ'), ('\n', 'SPACE'), ('attachment', 'NOUN'), ('to', 'ADP'), ('herself', 'PRON'), ('which', 'PRON'), ('at', 'ADP'), ('last', 'ADJ'), ('though', 'ADV'), ('long', 'ADV'), ('after', 'SCONJ'), ('it', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('observable', 'ADJ'), ('to', 'ADP'), ('everybody', 'PRON'), ('elseburst', 'ADV'), ('on', 'ADP'), ('herwhat', 'PROPN'), ('could', 'AUX'), ('she', 'PRON'), ('\n', 'SPACE'), ('do', 'AUX'), ('\n\n', 'SPACE'), ('Marianne', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('born', 'VERB'), ('to', 'ADP'), ('an', 'DET'), ('extraordinary', 'ADJ'), ('fate', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('born', 'VERB'), ('to', 'PART'), ('discover', 'VERB'), ('the', 'DET'), ('falsehood', 'NOUN'), ('of', 'ADP'), ('her', 'PRON'), ('own', 'ADJ'), ('opinions', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('to', 'PART'), ('counteract', 'VERB'), ('by', 'ADP'), ('her', 'PRON'), ('conduct', 'NOUN'), ('her', 'PRON'), ('most', 'ADV'), ('favourite', 'ADJ'), ('maxims', 'NOUN'), ('\n', 'SPACE'), ('She', 'PRON'), ('was', 'AUX'), ('born', 'VERB'), ('to', 'PART'), ('overcome', 'VERB'), ('an', 'DET'), ('affection', 'NOUN'), ('formed', 'VERB'), ('so', 'ADV'), ('late', 'ADV'), ('\n', 'SPACE'), ('in', 'ADP'), ('life', 'NOUN'), ('as', 'ADP'), ('at', 'ADP'), ('seventeen', 'NUM'), ('and', 'CCONJ'), ('with', 'ADP'), ('no', 'DET'), ('sentiment', 'NOUN'), ('\n', 'SPACE'), ('superior', 'ADJ'), ('to', 'ADP'), ('strong', 'ADJ'), ('esteem', 'NOUN'), ('and', 'CCONJ'), ('lively', 'ADJ'), ('friendship', 'NOUN'), ('\n', 'SPACE'), ('voluntarily', 'ADV'), ('to', 'PART'), ('give', 'VERB'), ('her', 'PRON'), ('hand', 'NOUN'), ('to', 'PART'), ('anotherand', 'VERB'), ('THAT', 'DET'), ('other', 'ADJ'), ('\n', 'SPACE'), ('a', 'DET'), ('man', 'NOUN'), ('who', 'PRON'), ('had', 'AUX'), ('suffered', 'VERB'), ('no', 'DET'), ('less', 'ADJ'), ('than', 'ADP'), ('herself', 'PRON'), ('under', 'ADP'), ('the', 'DET'), ('\n', 'SPACE'), ('event', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('former', 'ADJ'), ('attachment', 'NOUN'), ('whom', 'PRON'), ('two', 'NUM'), ('years', 'NOUN'), ('before', 'SCONJ'), ('\n', 'SPACE'), ('she', 'PRON'), ('had', 'AUX'), ('considered', 'VERB'), ('too', 'ADV'), ('old', 'ADJ'), ('to', 'PART'), ('be', 'AUX'), ('marriedand', 'VERB'), ('who', 'PRON'), ('still', 'ADV'), ('\n', 'SPACE'), ('sought', 'VERB'), ('the', 'DET'), ('constitutional', 'ADJ'), ('safeguard', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('flannel', 'NOUN'), ('waistcoat', 'NOUN'), ('\n\n', 'SPACE'), ('But', 'CCONJ'), ('so', 'ADV'), ('it', 'PRON'), ('was', 'AUX'), (' ', 'SPACE'), ('Instead', 'ADV'), ('of', 'ADP'), ('falling', 'VERB'), ('a', 'DET'), ('sacrifice', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('an', 'DET'), ('irresistible', 'ADJ'), ('passion', 'NOUN'), ('as', 'SCONJ'), ('once', 'SCONJ'), ('she', 'PRON'), ('had', 'AUX'), ('fondly', 'ADV'), ('\n', 'SPACE'), ('flattered', 'VERB'), ('herself', 'PRON'), ('with', 'ADP'), ('expectinginstead', 'NOUN'), ('of', 'ADP'), ('remaining', 'VERB'), ('\n', 'SPACE'), ('even', 'ADV'), ('for', 'ADP'), ('ever', 'ADV'), ('with', 'ADP'), ('her', 'PRON'), ('mother', 'NOUN'), ('and', 'CCONJ'), ('finding', 'VERB'), ('her', 'PRON'), ('only', 'ADJ'), ('\n', 'SPACE'), ('pleasures', 'NOUN'), ('in', 'ADP'), ('retirement', 'NOUN'), ('and', 'CCONJ'), ('study', 'NOUN'), ('as', 'ADP'), ('afterwards', 'ADV'), ('in', 'ADP'), ('her', 'PRON'), ('\n', 'SPACE'), ('more', 'ADV'), ('calm', 'ADJ'), ('and', 'CCONJ'), ('sober', 'ADJ'), ('judgment', 'NOUN'), ('she', 'PRON'), ('had', 'AUX'), ('determined', 'VERB'), ('on', 'ADP'), ('\n', 'SPACE'), ('she', 'PRON'), ('found', 'VERB'), ('herself', 'PRON'), ('at', 'ADP'), ('nineteen', 'NUM'), ('submitting', 'VERB'), ('to', 'ADP'), ('new', 'ADJ'), ('attachments', 'NOUN'), ('\n', 'SPACE'), ('entering', 'VERB'), ('on', 'ADP'), ('new', 'ADJ'), ('duties', 'NOUN'), ('placed', 'VERB'), ('in', 'ADP'), ('a', 'DET'), ('new', 'ADJ'), ('home', 'NOUN'), ('a', 'DET'), ('wife', 'NOUN'), ('\n', 'SPACE'), ('the', 'DET'), ('mistress', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('family', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('patroness', 'NOUN'), ('of', 'ADP'), ('a', 'DET'), ('village', 'NOUN'), ('\n\n', 'SPACE'), ('Colonel', 'PROPN'), ('Brandon', 'PROPN'), ('was', 'AUX'), ('now', 'ADV'), ('as', 'ADV'), ('happy', 'ADJ'), ('as', 'ADP'), ('all', 'DET'), ('those', 'PRON'), ('who', 'PRON'), ('best', 'ADV'), ('\n', 'SPACE'), ('loved', 'VERB'), ('him', 'PRON'), ('believed', 'VERB'), ('he', 'PRON'), ('deserved', 'VERB'), ('to', 'PART'), ('bein', 'VERB'), ('Marianne', 'PROPN'), ('he', 'PRON'), ('\n', 'SPACE'), ('was', 'AUX'), ('consoled', 'VERB'), ('for', 'SCONJ'), ('every', 'DET'), ('past', 'NOUN'), ('afflictionher', 'ADV'), ('regard', 'VERB'), ('and', 'CCONJ'), ('her', 'PRON'), ('\n', 'SPACE'), ('society', 'NOUN'), ('restored', 'VERB'), ('his', 'PRON'), ('mind', 'NOUN'), ('to', 'ADP'), ('animation', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('spirits', 'NOUN'), ('\n', 'SPACE'), ('to', 'ADP'), ('cheerfulness', 'NOUN'), ('and', 'CCONJ'), ('that', 'SCONJ'), ('Marianne', 'PROPN'), ('found', 'VERB'), ('her', 'PRON'), ('own', 'ADJ'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('forming', 'VERB'), ('his', 'PRON'), ('was', 'AUX'), ('equally', 'ADV'), ('the', 'DET'), ('persuasion', 'NOUN'), ('and', 'CCONJ'), ('delight', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('each', 'DET'), ('observing', 'VERB'), ('friend', 'NOUN'), (' ', 'SPACE'), ('Marianne', 'PROPN'), ('could', 'AUX'), ('never', 'ADV'), ('love', 'VERB'), ('\n', 'SPACE'), ('by', 'ADP'), ('halves', 'NOUN'), ('and', 'CCONJ'), ('her', 'PRON'), ('whole', 'ADJ'), ('heart', 'NOUN'), ('became', 'VERB'), ('in', 'ADP'), ('time', 'NOUN'), ('as', 'ADV'), ('much', 'ADJ'), ('\n', 'SPACE'), ('devoted', 'ADJ'), ('to', 'ADP'), ('her', 'PRON'), ('husband', 'NOUN'), ('as', 'SCONJ'), ('it', 'PRON'), ('had', 'AUX'), ('once', 'ADV'), ('been', 'AUX'), ('to', 'ADP'), ('Willoughby', 'PROPN'), ('\n\n', 'SPACE'), ('Willoughby', 'PROPN'), ('could', 'AUX'), ('not', 'PART'), ('hear', 'VERB'), ('of', 'ADP'), ('her', 'PRON'), ('marriage', 'NOUN'), ('without', 'ADP'), ('\n', 'SPACE'), ('a', 'DET'), ('pang', 'NOUN'), ('and', 'CCONJ'), ('his', 'PRON'), ('punishment', 'NOUN'), ('was', 'AUX'), ('soon', 'ADV'), ('afterwards', 'ADV'), ('complete', 'ADJ'), ('\n', 'SPACE'), ('in', 'ADP'), ('the', 'DET'), ('voluntary', 'ADJ'), ('forgiveness', 'NOUN'), ('of', 'ADP'), ('Mrs', 'PROPN'), ('Smith', 'PROPN'), ('who', 'PRON'), ('by', 'ADP'), ('stating', 'VERB'), ('\n', 'SPACE'), ('his', 'PRON'), ('marriage', 'NOUN'), ('with', 'ADP'), ('a', 'DET'), ('woman', 'NOUN'), ('of', 'ADP'), ('character', 'NOUN'), ('as', 'ADP'), ('the', 'DET'), ('source', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('her', 'PRON'), ('clemency', 'NOUN'), ('gave', 'VERB'), ('him', 'PRON'), ('reason', 'NOUN'), ('for', 'ADP'), ('believing', 'VERB'), ('that', 'PRON'), ('had', 'AUX'), ('he', 'PRON'), ('\n', 'SPACE'), ('behaved', 'VERB'), ('with', 'ADP'), ('honour', 'NOUN'), ('towards', 'ADP'), ('Marianne', 'PROPN'), ('he', 'PRON'), ('might', 'AUX'), ('at', 'ADP'), ('once', 'ADV'), ('have', 'AUX'), ('\n', 'SPACE'), ('been', 'AUX'), ('happy', 'ADJ'), ('and', 'CCONJ'), ('rich', 'ADJ'), (' ', 'SPACE'), ('That', 'SCONJ'), ('his', 'PRON'), ('repentance', 'NOUN'), ('of', 'ADP'), ('misconduct', 'NOUN'), ('\n', 'SPACE'), ('which', 'PRON'), ('thus', 'ADV'), ('brought', 'VERB'), ('its', 'PRON'), ('own', 'ADJ'), ('punishment', 'NOUN'), ('was', 'AUX'), ('sincere', 'ADJ'), ('\n', 'SPACE'), ('need', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('doubtednor', 'NOUN'), ('that', 'SCONJ'), ('he', 'PRON'), ('long', 'ADV'), ('thought', 'VERB'), ('of', 'ADP'), ('Colonel', 'PROPN'), ('\n', 'SPACE'), ('Brandon', 'PROPN'), ('with', 'ADP'), ('envy', 'NOUN'), ('and', 'CCONJ'), ('of', 'ADP'), ('Marianne', 'PROPN'), ('with', 'ADP'), ('regret', 'NOUN'), (' ', 'SPACE'), ('But', 'CCONJ'), ('that', 'SCONJ'), ('\n', 'SPACE'), ('he', 'PRON'), ('was', 'AUX'), ('for', 'ADP'), ('ever', 'ADV'), ('inconsolable', 'ADJ'), ('that', 'SCONJ'), ('he', 'PRON'), ('fled', 'VERB'), ('from', 'ADP'), ('society', 'NOUN'), ('\n', 'SPACE'), ('or', 'CCONJ'), ('contracted', 'VERB'), ('an', 'DET'), ('habitual', 'ADJ'), ('gloom', 'NOUN'), ('of', 'ADP'), ('temper', 'NOUN'), ('or', 'CCONJ'), ('died', 'VERB'), ('of', 'ADP'), ('a', 'DET'), ('\n', 'SPACE'), ('broken', 'VERB'), ('heart', 'NOUN'), ('must', 'AUX'), ('not', 'PART'), ('be', 'AUX'), ('depended', 'VERB'), ('onfor', 'SCONJ'), ('he', 'PRON'), ('did', 'AUX'), ('neither', 'PRON'), ('\n', 'SPACE'), ('He', 'PRON'), ('lived', 'VERB'), ('to', 'PART'), ('exert', 'VERB'), ('and', 'CCONJ'), ('frequently', 'ADV'), ('to', 'PART'), ('enjoy', 'VERB'), ('himself', 'PRON'), ('\n', 'SPACE'), ('His', 'PRON'), ('wife', 'NOUN'), ('was', 'AUX'), ('not', 'PART'), ('always', 'ADV'), ('out', 'ADP'), ('of', 'ADP'), ('humour', 'NOUN'), ('nor', 'CCONJ'), ('his', 'PRON'), ('home', 'NOUN'), ('\n', 'SPACE'), ('always', 'ADV'), ('uncomfortable', 'ADJ'), ('and', 'CCONJ'), ('in', 'ADP'), ('his', 'PRON'), ('breed', 'NOUN'), ('of', 'ADP'), ('horses', 'NOUN'), ('and', 'CCONJ'), ('dogs', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('in', 'ADP'), ('sporting', 'NOUN'), ('of', 'ADP'), ('every', 'DET'), ('kind', 'NOUN'), ('he', 'PRON'), ('found', 'VERB'), ('no', 'DET'), ('inconsiderable', 'ADJ'), ('\n', 'SPACE'), ('degree', 'NOUN'), ('of', 'ADP'), ('domestic', 'ADJ'), ('felicity', 'NOUN'), ('\n\n', 'SPACE'), ('For', 'ADP'), ('Marianne', 'PROPN'), ('howeverin', 'NOUN'), ('spite', 'NOUN'), ('of', 'ADP'), ('his', 'PRON'), ('incivility', 'NOUN'), ('\n', 'SPACE'), ('in', 'ADP'), ('surviving', 'VERB'), ('her', 'PRON'), ('losshe', 'NOUN'), ('always', 'ADV'), ('retained', 'VERB'), ('that', 'PRON'), ('decided', 'VERB'), ('\n', 'SPACE'), ('regard', 'NOUN'), ('which', 'PRON'), ('interested', 'VERB'), ('him', 'PRON'), ('in', 'ADP'), ('every', 'DET'), ('thing', 'NOUN'), ('that', 'PRON'), ('befell', 'VERB'), ('her', 'PRON'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('made', 'VERB'), ('her', 'PRON'), ('his', 'PRON'), ('secret', 'ADJ'), ('standard', 'NOUN'), ('of', 'ADP'), ('perfection', 'NOUN'), ('in', 'ADP'), ('woman', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('many', 'DET'), ('a', 'DET'), ('rising', 'VERB'), ('beauty', 'NOUN'), ('would', 'AUX'), ('be', 'AUX'), ('slighted', 'VERB'), ('by', 'ADP'), ('him', 'PRON'), ('in', 'ADP'), ('\n', 'SPACE'), ('afterdays', 'NOUN'), ('as', 'ADP'), ('bearing', 'VERB'), ('no', 'DET'), ('comparison', 'NOUN'), ('with', 'ADP'), ('Mrs', 'PROPN'), ('Brandon', 'PROPN'), ('\n\n', 'SPACE'), ('Mrs', 'PROPN'), ('Dashwood', 'PROPN'), ('was', 'AUX'), ('prudent', 'ADJ'), ('enough', 'ADV'), ('to', 'PART'), ('remain', 'VERB'), ('at', 'ADP'), ('the', 'DET'), ('cottage', 'NOUN'), ('\n', 'SPACE'), ('without', 'ADP'), ('attempting', 'VERB'), ('a', 'DET'), ('removal', 'NOUN'), ('to', 'ADP'), ('Delaford', 'PROPN'), ('and', 'CCONJ'), ('fortunately', 'ADV'), ('for', 'ADP'), ('\n', 'SPACE'), ('Sir', 'PROPN'), ('John', 'PROPN'), ('and', 'CCONJ'), ('Mrs', 'PROPN'), ('Jennings', 'PROPN'), ('when', 'SCONJ'), ('Marianne', 'PROPN'), ('was', 'AUX'), ('taken', 'VERB'), ('from', 'ADP'), ('them', 'PRON'), ('\n', 'SPACE'), ('Margaret', 'PROPN'), ('had', 'AUX'), ('reached', 'VERB'), ('an', 'DET'), ('age', 'NOUN'), ('highly', 'ADV'), ('suitable', 'ADJ'), ('for', 'ADP'), ('dancing', 'NOUN'), ('\n', 'SPACE'), ('and', 'CCONJ'), ('not', 'PART'), ('very', 'ADV'), ('ineligible', 'ADJ'), ('for', 'ADP'), ('being', 'AUX'), ('supposed', 'VERB'), ('to', 'PART'), ('have', 'VERB'), ('a', 'DET'), ('lover', 'NOUN'), ('\n\n', 'SPACE'), ('Between', 'ADP'), ('Barton', 'PROPN'), ('and', 'CCONJ'), ('Delaford', 'PROPN'), ('there', 'PRON'), ('was', 'VERB'), ('that', 'DET'), ('constant', 'ADJ'), ('\n', 'SPACE'), ('communication', 'NOUN'), ('which', 'PRON'), ('strong', 'ADJ'), ('family', 'NOUN'), ('affection', 'NOUN'), ('would', 'AUX'), ('\n', 'SPACE'), ('naturally', 'ADV'), ('dictateand', 'VERB'), ('among', 'ADP'), ('the', 'DET'), ('merits', 'NOUN'), ('and', 'CCONJ'), ('the', 'DET'), ('happiness', 'NOUN'), ('\n', 'SPACE'), ('of', 'ADP'), ('Elinor', 'PROPN'), ('and', 'CCONJ'), ('Marianne', 'PROPN'), ('let', 'VERB'), ('it', 'PRON'), ('not', 'PART'), ('be', 'AUX'), ('ranked', 'VERB'), ('as', 'ADP'), ('the', 'DET'), ('least', 'ADJ'), ('\n', 'SPACE'), ('considerable', 'ADJ'), ('that', 'SCONJ'), ('though', 'SCONJ'), ('sisters', 'NOUN'), ('and', 'CCONJ'), ('living', 'VERB'), ('almost', 'ADV'), ('within', 'ADP'), ('\n', 'SPACE'), ('sight', 'NOUN'), ('of', 'ADP'), ('each', 'DET'), ('other', 'ADJ'), ('they', 'PRON'), ('could', 'AUX'), ('live', 'VERB'), ('without', 'ADP'), ('disagreement', 'NOUN'), ('\n', 'SPACE'), ('between', 'ADP'), ('themselves', 'PRON'), ('or', 'CCONJ'), ('producing', 'VERB'), ('coolness', 'NOUN'), ('between', 'ADP'), ('their', 'PRON'), ('husbands', 'NOUN'), ('\n\n', 'SPACE'), ('THE', 'DET'), ('END', 'PROPN'), ('\n\n\n', 'SPACE')]
#spacy lemmas with no punct
no_punct_lemm = re.sub(r'[^\w\s]', '', spacy_raw)
doc = nlp(no_punct_lemm)
spacy_lemmas = [token.lemma_ for token in doc]
print(spacy_lemmas)
['sense', 'and', 'Sensibility', 'by', 'Jane', 'Austen', '1811', '\n\n', 'chapter', '1', '\n\n\n', 'the', 'family', 'of', 'Dashwood', 'have', 'long', 'be', 'settle', 'in', 'Sussex', '\n', 'their', 'estate', 'be', 'large', 'and', 'their', 'residence', 'be', 'at', 'Norland', 'Park', '\n', 'in', 'the', 'centre', 'of', 'their', 'property', 'where', 'for', 'many', 'generation', '\n', 'they', 'have', 'live', 'in', 'so', 'respectable', 'a', 'manner', 'as', 'to', 'engage', '\n', 'the', 'general', 'good', 'opinion', 'of', 'their', 'surround', 'acquaintance', '\n', 'the', 'late', 'owner', 'of', 'this', 'estate', 'be', 'a', 'single', 'man', 'who', 'live', '\n', 'to', 'a', 'very', 'advanced', 'age', 'and', 'who', 'for', 'many', 'year', 'of', 'his', 'life', '\n', 'have', 'a', 'constant', 'companion', 'and', 'housekeeper', 'in', 'his', 'sister', '\n', 'but', 'her', 'death', 'which', 'happen', 'ten', 'year', 'before', 'his', 'own', '\n', 'produce', 'a', 'great', 'alteration', 'in', 'his', 'home', 'for', 'to', 'supply', '\n', 'her', 'loss', 'he', 'invite', 'and', 'receive', 'into', 'his', 'house', 'the', 'family', '\n', 'of', 'his', 'nephew', 'Mr', 'Henry', 'Dashwood', 'the', 'legal', 'inheritor', '\n', 'of', 'the', 'Norland', 'estate', 'and', 'the', 'person', 'to', 'whom', 'he', 'intend', '\n', 'to', 'bequeath', 'it', ' ', 'in', 'the', 'society', 'of', 'his', 'nephew', 'and', 'niece', '\n', 'and', 'their', 'child', 'the', 'old', 'Gentlemans', 'day', 'be', '\n', 'comfortably', 'spend', ' ', 'his', 'attachment', 'to', 'they', 'all', 'increase', '\n', 'the', 'constant', 'attention', 'of', 'Mr', 'and', 'Mrs', 'Henry', 'Dashwood', '\n', 'to', 'his', 'wish', 'which', 'proceed', 'not', 'merely', 'from', 'interest', '\n', 'but', 'from', 'goodness', 'of', 'heart', 'give', 'he', 'every', 'degree', 'of', 'solid', '\n', 'comfort', 'which', 'his', 'age', 'could', 'receive', 'and', 'the', 'cheerfulness', '\n', 'of', 'the', 'child', 'add', 'a', 'relish', 'to', 'his', 'existence', '\n\n', 'by', 'a', 'former', 'marriage', 'Mr', 'Henry', 'Dashwood', 'have', 'one', '\n', 'son', 'by', 'his', 'present', 'lady', 'three', 'daughter', ' ', 'the', 'son', '\n', 'a', 'steady', 'respectable', 'young', 'man', 'be', 'amply', 'provide', '\n', 'for', 'by', 'the', 'fortune', 'of', 'his', 'mother', 'which', 'have', 'be', 'large', '\n', 'and', 'half', 'of', 'which', 'devolve', 'on', 'he', 'on', 'his', 'coming', 'of', 'age', '\n', 'by', 'his', 'own', 'marriage', 'likewise', 'which', 'happen', 'soon', 'afterwards', '\n', 'he', 'add', 'to', 'his', 'wealth', ' ', 'to', 'he', 'therefore', 'the', 'succession', '\n', 'to', 'the', 'Norland', 'estate', 'be', 'not', 'so', 'really', 'important', 'as', 'to', '\n', 'his', 'sister', 'for', 'their', 'fortune', 'independent', 'of', 'what', 'might', '\n', 'arise', 'to', 'they', 'from', 'their', 'father', 'inherit', 'that', 'property', '\n', 'could', 'be', 'but', 'small', ' ', 'their', 'mother', 'have', 'nothing', 'and', 'their', '\n', 'father', 'only', 'seven', 'thousand', 'pound', 'in', 'his', 'own', 'disposal', '\n', 'for', 'the', 'remain', 'moiety', 'of', 'his', 'first', 'wife', 'fortune', 'be', '\n', 'also', 'secure', 'to', 'her', 'child', 'and', 'he', 'have', 'only', 'a', 'lifeinter', '\n', 'in', 'it', '\n\n', 'the', 'old', 'gentleman', 'die', 'his', 'will', 'be', 'read', 'and', '\n', 'like', 'almost', 'every', 'other', 'will', 'give', 'as', 'much', 'disappointment', '\n', 'as', 'pleasure', ' ', 'he', 'be', 'neither', 'so', 'unjust', 'nor', 'so', 'ungrateful', '\n', 'as', 'to', 'leave', 'his', 'estate', 'from', 'his', 'nephewbut', 'he', 'leave', 'it', 'to', 'he', '\n', 'on', 'such', 'term', 'as', 'destroy', 'half', 'the', 'value', 'of', 'the', 'bequest', '\n', 'Mr', 'Dashwood', 'have', 'wish', 'for', 'it', 'more', 'for', 'the', 'sake', 'of', 'his', '\n', 'wife', 'and', 'daughter', 'than', 'for', 'himself', 'or', 'his', 'sonbut', 'to', '\n', 'his', 'son', 'and', 'his', 'son', 'son', 'a', 'child', 'of', 'four', 'year', 'old', '\n', 'it', 'be', 'secure', 'in', 'such', 'a', 'way', 'as', 'to', 'leave', 'to', 'himself', '\n', 'no', 'power', 'of', 'provide', 'for', 'those', 'who', 'be', 'most', 'dear', '\n', 'to', 'he', 'and', 'who', 'most', 'need', 'a', 'provision', 'by', 'any', 'charge', '\n', 'on', 'the', 'estate', 'or', 'by', 'any', 'sale', 'of', 'its', 'valuable', 'wood', '\n', 'the', 'whole', 'be', 'tie', 'up', 'for', 'the', 'benefit', 'of', 'this', 'child', 'who', '\n', 'in', 'occasional', 'visit', 'with', 'his', 'father', 'and', 'mother', 'at', 'Norland', '\n', 'have', 'so', 'far', 'gain', 'on', 'the', 'affection', 'of', 'his', 'uncle', '\n', 'by', 'such', 'attraction', 'as', 'be', 'by', 'no', 'mean', 'unusual', 'in', 'child', '\n', 'of', 'two', 'or', 'three', 'year', 'old', 'an', 'imperfect', 'articulation', '\n', 'an', 'earnest', 'desire', 'of', 'have', 'his', 'own', 'way', 'many', 'cunning', 'trick', '\n', 'and', 'a', 'great', 'deal', 'of', 'noise', 'as', 'to', 'outweigh', 'all', 'the', 'value', '\n', 'of', 'all', 'the', 'attention', 'which', 'for', 'year', 'he', 'have', 'receive', '\n', 'from', 'his', 'niece', 'and', 'her', 'daughter', ' ', 'he', 'mean', 'not', 'to', '\n', 'be', 'unkind', 'however', 'and', 'as', 'a', 'mark', 'of', 'his', 'affection', '\n', 'for', 'the', 'three', 'girl', 'he', 'leave', 'they', 'a', 'thousand', 'pound', 'apiece', '\n\n', 'Mr', 'Dashwoods', 'disappointment', 'be', 'at', 'first', 'severe', '\n', 'but', 'his', 'temper', 'be', 'cheerful', 'and', 'sanguine', 'and', 'he', 'might', '\n', 'reasonably', 'hope', 'to', 'live', 'many', 'year', 'and', 'by', 'live', 'economically', '\n', 'lie', 'by', 'a', 'considerable', 'sum', 'from', 'the', 'produce', 'of', 'an', 'estate', '\n', 'already', 'large', 'and', 'capable', 'of', 'almost', 'immediate', 'improvement', '\n', 'but', 'the', 'fortune', 'which', 'have', 'be', 'so', 'tardy', 'in', 'come', 'be', 'his', '\n', 'only', 'one', 'twelvemonth', ' ', 'he', 'survive', 'his', 'uncle', 'no', 'long', '\n', 'and', 'ten', 'thousand', 'pound', 'include', 'the', 'late', 'legacy', '\n', 'be', 'all', 'that', 'remain', 'for', 'his', 'widow', 'and', 'daughter', '\n\n', 'his', 'son', 'be', 'send', 'for', 'as', 'soon', 'as', 'his', 'danger', 'be', 'know', '\n', 'and', 'to', 'he', 'Mr', 'Dashwood', 'recommend', 'with', 'all', 'the', 'strength', '\n', 'and', 'urgency', 'which', 'illness', 'could', 'command', 'the', 'interest', '\n', 'of', 'his', 'motherinlaw', 'and', 'sister', '\n\n', 'Mr', 'John', 'Dashwood', 'have', 'not', 'the', 'strong', 'feeling', 'of', 'the', '\n', 'rest', 'of', 'the', 'family', 'but', 'he', 'be', 'affect', 'by', 'a', 'recommendation', '\n', 'of', 'such', 'a', 'nature', 'at', 'such', 'a', 'time', 'and', 'he', 'promise', 'to', 'do', '\n', 'every', 'thing', 'in', 'his', 'power', 'to', 'make', 'they', 'comfortable', '\n', 'his', 'father', 'be', 'render', 'easy', 'by', 'such', 'an', 'assurance', '\n', 'and', 'Mr', 'John', 'Dashwood', 'have', 'then', 'leisure', 'to', 'consider', 'how', '\n', 'much', 'there', 'might', 'prudently', 'be', 'in', 'his', 'power', 'to', 'do', 'for', 'they', '\n\n', 'he', 'be', 'not', 'an', 'illdisposed', 'young', 'man', 'unless', 'to', '\n', 'be', 'rather', 'cold', 'hearted', 'and', 'rather', 'selfish', 'be', 'to', 'be', '\n', 'illdispose', 'but', 'he', 'be', 'in', 'general', 'well', 'respect', '\n', 'for', 'he', 'conduct', 'himself', 'with', 'propriety', 'in', 'the', 'discharge', '\n', 'of', 'his', 'ordinary', 'duty', ' ', 'have', 'he', 'marry', 'a', 'more', 'amiable', 'woman', '\n', 'he', 'might', 'have', 'be', 'make', 'still', 'more', 'respectable', 'than', 'he', '\n', 'washe', 'might', 'even', 'have', 'be', 'make', 'amiable', 'himself', 'for', 'he', '\n', 'be', 'very', 'young', 'when', 'he', 'marry', 'and', 'very', 'fond', 'of', 'his', 'wife', '\n', 'but', 'Mrs', 'John', 'Dashwood', 'be', 'a', 'strong', 'caricature', 'of', 'himself', '\n', 'more', 'narrowminded', 'and', 'selfish', '\n\n', 'when', 'he', 'give', 'his', 'promise', 'to', 'his', 'father', 'he', 'meditate', '\n', 'within', 'himself', 'to', 'increase', 'the', 'fortune', 'of', 'his', 'sister', '\n', 'by', 'the', 'present', 'of', 'a', 'thousand', 'pound', 'apiece', ' ', 'he', 'then', '\n', 'really', 'think', 'himself', 'equal', 'to', 'it', ' ', 'the', 'prospect', 'of', 'four', '\n', 'thousand', 'ayear', 'in', 'addition', 'to', 'his', 'present', 'income', '\n', 'besides', 'the', 'remain', 'half', 'of', 'his', 'own', 'mother', 'fortune', '\n', 'warm', 'his', 'heart', 'and', 'make', 'he', 'feel', 'capable', 'of', 'generosity', '\n', 'yes', 'he', 'would', 'give', 'they', 'three', 'thousand', 'pound', 'it', 'would', '\n', 'be', 'liberal', 'and', 'handsome', 'it', 'would', 'be', 'enough', 'to', 'make', '\n', 'they', 'completely', 'easy', ' ', 'three', 'thousand', 'pound', 'he', 'could', '\n', 'spare', 'so', 'considerable', 'a', 'sum', 'with', 'little', 'inconvenience', '\n', 'he', 'think', 'of', 'it', 'all', 'day', 'long', 'and', 'for', 'many', 'day', 'successively', '\n', 'and', 'he', 'do', 'not', 'repent', '\n\n', 'no', 'soon', 'be', 'his', 'father', 'funeral', 'over', 'than', 'Mrs', 'John', '\n', 'Dashwood', 'without', 'send', 'any', 'notice', 'of', 'her', 'intention', 'to', 'her', '\n', 'motherinlaw', 'arrive', 'with', 'her', 'child', 'and', 'their', 'attendant', '\n', 'no', 'one', 'could', 'dispute', 'she', 'right', 'to', 'come', 'the', 'house', 'be', '\n', 'her', 'husband', 'from', 'the', 'moment', 'of', 'his', 'father', 'decease', '\n', 'but', 'the', 'indelicacy', 'of', 'her', 'conduct', 'be', 'so', 'much', 'the', 'great', '\n', 'and', 'to', 'a', 'woman', 'in', 'Mrs', 'Dashwoods', 'situation', 'with', 'only', '\n', 'common', 'feeling', 'must', 'have', 'be', 'highly', 'unpleasing', '\n', 'but', 'in', 'her', 'mind', 'there', 'be', 'a', 'sense', 'of', 'honor', 'so', 'keen', '\n', 'a', 'generosity', 'so', 'romantic', 'that', 'any', 'offence', 'of', 'the', 'kind', '\n', 'by', 'whomsoever', 'give', 'or', 'receive', 'be', 'to', 'she', 'a', 'source', '\n', 'of', 'immoveable', 'disgust', ' ', 'Mrs', 'John', 'Dashwood', 'have', 'never', '\n', 'be', 'a', 'favourite', 'with', 'any', 'of', 'her', 'husband', 'family', '\n', 'but', 'she', 'have', 'have', 'no', 'opportunity', 'till', 'the', 'present', '\n', 'of', 'shew', 'they', 'with', 'how', 'little', 'attention', 'to', 'the', 'comfort', '\n', 'of', 'other', 'people', 'she', 'could', 'act', 'when', 'occasion', 'require', 'it', '\n\n', 'so', 'acutely', 'do', 'Mrs', 'Dashwood', 'feel', 'this', 'ungracious', '\n', 'behaviour', 'and', 'so', 'earnestly', 'do', 'she', 'despise', 'her', '\n', 'daughterinlaw', 'for', 'it', 'that', 'on', 'the', 'arrival', 'of', 'the', 'latter', '\n', 'she', 'would', 'have', 'quit', 'the', 'house', 'for', 'ever', 'have', 'not', 'the', '\n', 'entreaty', 'of', 'her', 'eld', 'girl', 'induce', 'she', 'first', 'to', 'reflect', '\n', 'on', 'the', 'propriety', 'of', 'go', 'and', 'her', 'own', 'tender', 'love', 'for', 'all', '\n', 'her', 'three', 'child', 'determine', 'she', 'afterwards', 'to', 'stay', '\n', 'and', 'for', 'their', 'sake', 'avoid', 'a', 'breach', 'with', 'their', 'brother', '\n\n', 'Elinor', 'this', 'eld', 'daughter', 'whose', 'advice', 'be', '\n', 'so', 'effectual', 'possess', 'a', 'strength', 'of', 'understanding', '\n', 'and', 'coolness', 'of', 'judgment', 'which', 'qualify', 'she', '\n', 'though', 'only', 'nineteen', 'to', 'be', 'the', 'counsellor', 'of', 'her', 'mother', '\n', 'and', 'enable', 'she', 'frequently', 'to', 'counteract', 'to', 'the', 'advantage', '\n', 'of', 'they', 'all', 'that', 'eagerness', 'of', 'mind', 'in', 'Mrs', 'Dashwood', '\n', 'which', 'must', 'generally', 'have', 'lead', 'to', 'imprudence', ' ', 'she', 'have', '\n', 'an', 'excellent', 'hearther', 'disposition', 'be', 'affectionate', '\n', 'and', 'her', 'feeling', 'be', 'strong', 'but', 'she', 'know', 'how', 'to', 'govern', '\n', 'they', 'it', 'be', 'a', 'knowledge', 'which', 'her', 'mother', 'have', 'yet', 'to', 'learn', '\n', 'and', 'which', 'one', 'of', 'her', 'sister', 'have', 'resolve', 'never', 'to', 'be', 'teach', '\n\n', 'Mariannes', 'ability', 'be', 'in', 'many', 'respect', '\n', 'quite', 'equal', 'to', 'Elinors', 'she', 'be', 'sensible', 'and', 'clever', '\n', 'but', 'eager', 'in', 'everything', 'she', 'sorrow', 'her', 'joy', 'could', 'have', '\n', 'no', 'moderation', ' ', 'she', 'be', 'generous', 'amiable', 'interesting', 'she', '\n', 'be', 'everything', 'but', 'prudent', ' ', 'the', 'resemblance', 'between', '\n', 'she', 'and', 'her', 'mother', 'be', 'strikingly', 'great', '\n\n', 'Elinor', 'see', 'with', 'concern', 'the', 'excess', 'of', 'her', '\n', 'sister', 'sensibility', 'but', 'by', 'Mrs', 'Dashwood', 'it', 'be', 'value', '\n', 'and', 'cherish', ' ', 'they', 'encourage', 'each', 'other', 'now', 'in', 'the', '\n', 'violence', 'of', 'their', 'affliction', ' ', 'the', 'agony', 'of', 'grief', '\n', 'which', 'overpower', 'they', 'at', 'first', 'be', 'voluntarily', 'renew', '\n', 'be', 'seek', 'for', 'be', 'create', 'again', 'and', 'again', ' ', 'they', 'give', '\n', 'themselves', 'up', 'wholly', 'to', 'their', 'sorrow', 'seek', 'increase', '\n', 'of', 'wretchedness', 'in', 'every', 'reflection', 'that', 'could', 'afford', 'it', '\n', 'and', 'resolve', 'against', 'ever', 'admit', 'consolation', '\n', 'in', 'future', ' ', 'Elinor', 'too', 'be', 'deeply', 'afflict', 'but', 'still', '\n', 'she', 'could', 'struggle', 'she', 'could', 'exert', 'herself', ' ', 'she', 'could', '\n', 'consult', 'with', 'her', 'brother', 'could', 'receive', 'her', 'sisterinlaw', '\n', 'on', 'her', 'arrival', 'and', 'treat', 'she', 'with', 'proper', 'attention', '\n', 'and', 'could', 'strive', 'to', 'rouse', 'her', 'mother', 'to', 'similar', 'exertion', '\n', 'and', 'encourage', 'she', 'to', 'similar', 'forbearance', '\n\n', 'Margaret', 'the', 'other', 'sister', 'be', 'a', 'goodhumore', '\n', 'welldisposed', 'girl', 'but', 'as', 'she', 'have', 'already', 'imbibe', '\n', 'a', 'good', 'deal', 'of', 'Mariannes', 'romance', 'without', 'have', '\n', 'much', 'of', 'her', 'sense', 'she', 'do', 'not', 'at', 'thirteen', 'bid', 'fair', '\n', 'to', 'equal', 'her', 'sister', 'at', 'a', 'more', 'advanced', 'period', 'of', 'life', '\n\n\n\n', 'chapter', '2', '\n\n\n', 'Mrs', 'John', 'Dashwood', 'now', 'instal', 'herself', 'mistress', '\n', 'of', 'Norland', 'and', 'her', 'mother', 'and', 'sistersinlaw', 'be', 'degrade', '\n', 'to', 'the', 'condition', 'of', 'visitor', ' ', 'as', 'such', 'however', 'they', 'be', '\n', 'treat', 'by', 'she', 'with', 'quiet', 'civility', 'and', 'by', 'her', 'husband', '\n', 'with', 'as', 'much', 'kindness', 'as', 'he', 'could', 'feel', 'towards', 'anybody', '\n', 'beyond', 'himself', 'his', 'wife', 'and', 'their', 'child', ' ', 'he', 'really', '\n', 'press', 'they', 'with', 'some', 'earnestness', 'to', 'consider', 'Norland', '\n', 'as', 'their', 'home', 'and', 'as', 'no', 'plan', 'appear', 'so', 'eligible', '\n', 'to', 'Mrs', 'Dashwood', 'as', 'remain', 'there', 'till', 'she', 'could', '\n', 'accommodate', 'herself', 'with', 'a', 'house', 'in', 'the', 'neighbourhood', '\n', 'his', 'invitation', 'be', 'accept', '\n\n', 'a', 'continuance', 'in', 'a', 'place', 'where', 'everything', 'remind', '\n', 'she', 'of', 'former', 'delight', 'be', 'exactly', 'what', 'suit', 'her', 'mind', '\n', 'in', 'season', 'of', 'cheerfulness', 'no', 'temper', 'could', 'be', 'more', 'cheerful', '\n', 'than', 'hers', 'or', 'possess', 'in', 'a', 'great', 'degree', 'that', 'sanguine', '\n', 'expectation', 'of', 'happiness', 'which', 'be', 'happiness', 'itself', '\n', 'but', 'in', 'sorrow', 'she', 'must', 'be', 'equally', 'carry', 'away', 'by', 'her', 'fancy', '\n', 'and', 'as', 'far', 'beyond', 'consolation', 'as', 'in', 'pleasure', 'she', 'be', '\n', 'beyond', 'alloy', '\n\n', 'Mrs', 'John', 'Dashwood', 'do', 'not', 'at', 'all', 'approve', 'of', 'what', 'her', '\n', 'husband', 'intend', 'to', 'do', 'for', 'his', 'sister', ' ', 'to', 'take', 'three', '\n', 'thousand', 'pound', 'from', 'the', 'fortune', 'of', 'their', 'dear', 'little', 'boy', '\n', 'would', 'be', 'impoverish', 'he', 'to', 'the', 'most', 'dreadful', 'degree', '\n', 'she', 'beg', 'he', 'to', 'think', 'again', 'on', 'the', 'subject', ' ', 'how', 'could', '\n', 'he', 'answer', 'it', 'to', 'himself', 'to', 'rob', 'his', 'child', 'and', 'his', 'only', '\n', 'child', 'too', 'of', 'so', 'large', 'a', 'sum', ' ', 'and', 'what', 'possible', 'claim', '\n', 'could', 'the', 'Miss', 'Dashwoods', 'who', 'be', 'relate', 'to', 'he', 'only', 'by', '\n', 'half', 'blood', 'which', 'she', 'consider', 'as', 'no', 'relationship', 'at', 'all', '\n', 'have', 'on', 'his', 'generosity', 'to', 'so', 'large', 'an', 'amount', ' ', 'it', 'be', 'very', '\n', 'well', 'know', 'that', 'no', 'affection', 'be', 'ever', 'suppose', 'to', 'exist', '\n', 'between', 'the', 'child', 'of', 'any', 'man', 'by', 'different', 'marriage', '\n', 'and', 'why', 'be', 'he', 'to', 'ruin', 'himself', 'and', 'their', 'poor', 'little', 'Harry', '\n', 'by', 'give', 'away', 'all', 'his', 'money', 'to', 'his', 'half', 'sister', '\n\n', 'it', 'be', 'my', 'father', 'last', 'request', 'to', 'I', 'reply', '\n', 'her', 'husband', 'that', 'I', 'should', 'assist', 'his', 'widow', 'and', 'daughter', '\n\n', 'he', 'do', 'not', 'know', 'what', 'he', 'be', 'talk', 'of', 'I', 'dare', 'say', '\n', 'ten', 'to', 'one', 'but', 'he', 'be', 'lightheade', 'at', 'the', 'time', '\n', 'have', 'he', 'be', 'in', 'his', 'right', 'sense', 'he', 'could', 'not', 'have', 'think', '\n', 'of', 'such', 'a', 'thing', 'as', 'beg', 'you', 'to', 'give', 'away', 'half', 'your', '\n', 'fortune', 'from', 'your', 'own', 'child', '\n\n', 'he', 'do', 'not', 'stipulate', 'for', 'any', 'particular', 'sum', '\n', 'my', 'dear', 'Fanny', 'he', 'only', 'request', 'I', 'in', 'general', 'term', '\n', 'to', 'assist', 'they', 'and', 'make', 'their', 'situation', 'more', 'comfortable', '\n', 'than', 'it', 'be', 'in', 'his', 'power', 'to', 'do', ' ', 'perhaps', 'it', 'would', '\n', 'have', 'be', 'as', 'well', 'if', 'he', 'have', 'leave', 'it', 'wholly', 'to', 'myself', '\n', 'he', 'could', 'hardly', 'suppose', 'I', 'should', 'neglect', 'they', '\n', 'but', 'as', 'he', 'require', 'the', 'promise', 'I', 'could', 'not', 'do', 'less', '\n', 'than', 'give', 'it', 'at', 'least', 'I', 'think', 'so', 'at', 'the', 'time', '\n', 'the', 'promise', 'therefore', 'be', 'give', 'and', 'must', 'be', 'perform', '\n', 'something', 'must', 'be', 'do', 'for', 'they', 'whenever', 'they', 'leave', 'Norland', '\n', 'and', 'settle', 'in', 'a', 'new', 'home', '\n\n', 'well', 'then', 'let', 'something', 'be', 'do', 'for', 'they', '\n', 'but', 'that', 'something', 'need', 'not', 'be', 'three', 'thousand', 'pound', '\n', 'consider', 'she', 'add', 'that', 'when', 'the', 'money', 'be', 'once', '\n', 'part', 'with', 'it', 'never', 'can', 'return', ' ', 'your', 'sister', 'will', 'marry', '\n', 'and', 'it', 'will', 'be', 'go', 'for', 'ever', ' ', 'if', 'indeed', 'it', 'could', '\n', 'be', 'restore', 'to', 'our', 'poor', 'little', 'boy', '\n\n', 'why', 'to', 'be', 'sure', 'say', 'her', 'husband', 'very', 'gravely', '\n', 'that', 'would', 'make', 'great', 'difference', ' ', 'the', 'time', 'may', 'come', 'when', '\n', 'Harry', 'will', 'regret', 'that', 'so', 'large', 'a', 'sum', 'be', 'part', 'with', '\n', 'if', 'he', 'should', 'have', 'a', 'numerous', 'family', 'for', 'instance', 'it', 'would', '\n', 'be', 'a', 'very', 'convenient', 'addition', '\n\n', 'to', 'be', 'sure', 'it', 'would', '\n\n', 'perhaps', 'then', 'it', 'would', 'be', 'well', 'for', 'all', 'party', '\n', 'if', 'the', 'sum', 'be', 'diminish', 'one', 'halffive', 'hundred', 'pound', '\n', 'would', 'be', 'a', 'prodigious', 'increase', 'to', 'their', 'fortune', '\n\n', 'oh', 'beyond', 'anything', 'great', ' ', 'what', 'brother', 'on', 'earth', '\n', 'would', 'do', 'half', 'so', 'much', 'for', 'his', 'sister', 'even', 'if', 'REALLY', '\n', 'his', 'sister', ' ', 'and', 'as', 'it', 'isonly', 'half', 'bloodbut', 'you', '\n', 'have', 'such', 'a', 'generous', 'spirit', '\n\n', 'I', 'would', 'not', 'wish', 'to', 'do', 'any', 'thing', 'mean', 'he', 'reply', '\n', 'one', 'have', 'rather', 'on', 'such', 'occasion', 'do', 'too', 'much', 'than', '\n', 'too', 'little', ' ', 'no', 'one', 'at', 'least', 'can', 'think', 'I', 'have', 'not', '\n', 'do', 'enough', 'for', 'they', 'even', 'themselves', 'they', 'can', 'hardly', '\n', 'expect', 'more', '\n\n', 'there', 'be', 'no', 'know', 'what', 'they', 'may', 'expect', '\n', 'say', 'the', 'lady', 'but', 'we', 'be', 'not', 'to', 'think', 'of', 'their', '\n', 'expectation', 'the', 'question', 'be', 'what', 'you', 'can', 'afford', 'to', 'do', '\n\n', 'Certainlyand', 'I', 'think', 'I', 'may', 'afford', 'to', 'give', 'they', 'five', '\n', 'hundred', 'pound', 'apiece', ' ', 'as', 'it', 'be', 'without', 'any', 'addition', '\n', 'of', 'mine', 'they', 'will', 'each', 'have', 'about', 'three', 'thousand', 'pound', '\n', 'on', 'their', 'mother', 'deatha', 'very', 'comfortable', 'fortune', '\n', 'for', 'any', 'young', 'woman', '\n\n', 'to', 'be', 'sure', 'it', 'be', 'and', 'indeed', 'it', 'strike', 'I', 'that', '\n', 'they', 'can', 'want', 'no', 'addition', 'at', 'all', ' ', 'they', 'will', 'have', 'ten', '\n', 'thousand', 'pound', 'divide', 'amongst', 'they', ' ', 'if', 'they', 'marry', '\n', 'they', 'will', 'be', 'sure', 'of', 'do', 'well', 'and', 'if', 'they', 'do', 'not', '\n', 'they', 'may', 'all', 'live', 'very', 'comfortably', 'together', 'on', 'the', 'interest', '\n', 'of', 'ten', 'thousand', 'pound', '\n\n', 'that', 'be', 'very', 'true', 'and', 'therefore', 'I', 'do', 'not', 'know', 'whether', '\n', 'upon', 'the', 'whole', 'it', 'would', 'not', 'be', 'more', 'advisable', 'to', 'do', '\n', 'something', 'for', 'their', 'mother', 'while', 'she', 'live', 'rather', 'than', '\n', 'for', 'themsomethe', 'of', 'the', 'annuity', 'kind', 'I', 'meanMy', 'sister', '\n', 'would', 'feel', 'the', 'good', 'effect', 'of', 'it', 'as', 'well', 'as', 'herself', '\n', 'a', 'hundred', 'a', 'year', 'would', 'make', 'they', 'all', 'perfectly', 'comfortable', '\n\n', 'his', 'wife', 'hesitate', 'a', 'little', 'however', 'in', 'give', '\n', 'her', 'consent', 'to', 'this', 'plan', '\n\n', 'to', 'be', 'sure', 'say', 'she', 'it', 'be', 'well', 'than', 'part', 'with', '\n', 'fifteen', 'hundred', 'pound', 'at', 'once', ' ', 'but', 'then', 'if', 'Mrs', 'Dashwood', '\n', 'should', 'live', 'fifteen', 'year', 'we', 'shall', 'be', 'completely', 'take', 'in', '\n\n', 'fifteen', 'year', 'my', 'dear', 'fanny', 'her', 'life', 'can', 'not', '\n', 'be', 'worth', 'half', 'that', 'purchase', '\n\n', 'certainly', 'not', 'but', 'if', 'you', 'observe', 'people', 'always', '\n', 'live', 'for', 'ever', 'when', 'there', 'be', 'an', 'annuity', 'to', 'be', 'pay', 'they', '\n', 'and', 'she', 'be', 'very', 'stout', 'and', 'healthy', 'and', 'hardly', 'forty', '\n', 'an', 'annuity', 'be', 'a', 'very', 'serious', 'business', 'it', 'come', 'over', '\n', 'and', 'over', 'every', 'year', 'and', 'there', 'be', 'no', 'getting', 'rid', '\n', 'of', 'it', ' ', 'you', 'be', 'not', 'aware', 'of', 'what', 'you', 'be', 'do', '\n', 'I', 'have', 'know', 'a', 'great', 'deal', 'of', 'the', 'trouble', 'of', 'annuity', '\n', 'for', 'my', 'mother', 'be', 'clog', 'with', 'the', 'payment', 'of', 'three', '\n', 'to', 'old', 'superannuated', 'servant', 'by', 'my', 'father', 'will', '\n', 'and', 'it', 'be', 'amazing', 'how', 'disagreeable', 'she', 'find', 'it', '\n', 'twice', 'every', 'year', 'these', 'annuity', 'be', 'to', 'be', 'pay', 'and', 'then', '\n', 'there', 'be', 'the', 'trouble', 'of', 'get', 'it', 'to', 'they', 'and', 'then', 'one', '\n', 'of', 'they', 'be', 'say', 'to', 'have', 'die', 'and', 'afterwards', 'it', 'turn', '\n', 'out', 'to', 'be', 'no', 'such', 'thing', ' ', 'my', 'mother', 'be', 'quite', 'sick', 'of', 'it', '\n', 'her', 'income', 'be', 'not', 'her', 'own', 'she', 'say', 'with', 'such', 'perpetual', '\n', 'claim', 'on', 'it', 'and', 'it', 'be', 'the', 'more', 'unkind', 'in', 'my', 'father', '\n', 'because', 'otherwise', 'the', 'money', 'would', 'have', 'be', 'entirely', 'at', '\n', 'my', 'mother', 'disposal', 'without', 'any', 'restriction', 'whatever', '\n', 'it', 'have', 'give', 'I', 'such', 'an', 'abhorrence', 'of', 'annuity', 'that', 'I', 'be', '\n', 'sure', 'I', 'would', 'not', 'pin', 'myself', 'down', 'to', 'the', 'payment', 'of', 'one', 'for', '\n', 'all', 'the', 'world', '\n\n', 'it', 'be', 'certainly', 'an', 'unpleasant', 'thing', 'reply', 'Mr', 'Dashwood', '\n', 'to', 'have', 'those', 'kind', 'of', 'yearly', 'drain', 'on', 'one', 'income', '\n', 'Ones', 'fortune', 'as', 'your', 'mother', 'justly', 'say', 'be', 'not', 'one', 'own', '\n', 'to', 'be', 'tie', 'down', 'to', 'the', 'regular', 'payment', 'of', 'such', 'a', 'sum', '\n', 'on', 'every', 'rent', 'day', 'be', 'by', 'no', 'means', 'desirable', 'it', 'take', 'away', '\n', 'one', 'independence', '\n\n', 'undoubtedly', 'and', 'after', 'all', 'you', 'have', 'no', 'thank', 'for', 'it', '\n', 'they', 'think', 'themselves', 'secure', 'you', 'do', 'no', 'more', 'than', 'what', '\n', 'be', 'expect', 'and', 'it', 'raise', 'no', 'gratitude', 'at', 'all', ' ', 'if', 'I', 'be', 'you', '\n', 'whatever', 'I', 'do', 'should', 'be', 'do', 'at', 'my', 'own', 'discretion', 'entirely', '\n', 'I', 'would', 'not', 'bind', 'myself', 'to', 'allow', 'they', 'any', 'thing', 'yearly', '\n', 'it', 'may', 'be', 'very', 'inconvenient', 'some', 'year', 'to', 'spare', 'a', 'hundred', '\n', 'or', 'even', 'fifty', 'pound', 'from', 'our', 'own', 'expense', '\n\n', 'I', 'believe', 'you', 'be', 'right', 'my', 'love', 'it', 'will', 'be', 'well', '\n', 'that', 'there', 'should', 'by', 'no', 'annuity', 'in', 'the', 'case', 'whatever', 'I', '\n', 'may', 'give', 'they', 'occasionally', 'will', 'be', 'of', 'far', 'great', 'assistance', '\n', 'than', 'a', 'yearly', 'allowance', 'because', 'they', 'would', 'only', 'enlarge', '\n', 'their', 'style', 'of', 'living', 'if', 'they', 'feel', 'sure', 'of', 'a', 'large', 'income', '\n', 'and', 'would', 'not', 'be', 'sixpence', 'the', 'rich', 'for', 'it', 'at', 'the', 'end', '\n', 'of', 'the', 'year', ' ', 'it', 'will', 'certainly', 'be', 'much', 'the', 'good', 'way', '\n', 'a', 'present', 'of', 'fifty', 'pound', 'now', 'and', 'then', 'will', 'prevent', '\n', 'their', 'ever', 'be', 'distress', 'for', 'money', 'and', 'will', 'I', 'think', '\n', 'be', 'amply', 'discharge', 'my', 'promise', 'to', 'my', 'father', '\n\n', 'to', 'be', 'sure', 'it', 'will', ' ', 'indeed', 'to', 'say', 'the', 'truth', '\n', 'I', 'be', 'convince', 'within', 'myself', 'that', 'your', 'father', 'have', 'no', 'idea', '\n', 'of', 'your', 'give', 'they', 'any', 'money', 'at', 'all', ' ', 'the', 'assistance', '\n', 'he', 'think', 'of', 'I', 'dare', 'say', 'be', 'only', 'such', 'as', 'might', 'be', '\n', 'reasonably', 'expect', 'of', 'you', 'for', 'instance', 'such', 'as', 'look', '\n', 'out', 'for', 'a', 'comfortable', 'small', 'house', 'for', 'they', 'help', 'they', '\n', 'to', 'move', 'their', 'thing', 'and', 'send', 'they', 'present', 'of', 'fish', '\n', 'and', 'game', 'and', 'so', 'forth', 'whenever', 'they', 'be', 'in', 'season', '\n', 'Ill', 'lie', 'my', 'life', 'that', 'he', 'mean', 'nothing', 'far', 'indeed', '\n', 'it', 'would', 'be', 'very', 'strange', 'and', 'unreasonable', 'if', 'he', 'do', '\n', 'do', 'but', 'consider', 'my', 'dear', 'Mr', 'Dashwood', 'how', 'excessively', '\n', 'comfortable', 'your', 'motherinlaw', 'and', 'her', 'daughter', 'may', 'live', '\n', 'on', 'the', 'interest', 'of', 'seven', 'thousand', 'pound', 'besides', 'the', '\n', 'thousand', 'pound', 'belong', 'to', 'each', 'of', 'the', 'girl', 'which', 'bring', '\n', 'they', 'in', 'fifty', 'pound', 'a', 'year', 'apiece', 'and', 'of', 'course', '\n', 'they', 'will', 'pay', 'their', 'mother', 'for', 'their', 'board', 'out', 'of', 'it', '\n', 'altogether', 'they', 'will', 'have', 'five', 'hundred', 'ayear', 'amongst', 'they', '\n', 'and', 'what', 'on', 'earth', 'can', 'four', 'woman', 'want', 'for', 'more', 'than', '\n', 'thatthey', 'will', 'live', 'so', 'cheap', 'their', 'housekeeping', 'will', '\n', 'be', 'nothing', 'at', 'all', ' ', 'they', 'will', 'have', 'no', 'carriage', 'no', 'horse', '\n', 'and', 'hardly', 'any', 'servant', 'they', 'will', 'keep', 'no', 'company', '\n', 'and', 'can', 'have', 'no', 'expense', 'of', 'any', 'kind', ' ', 'only', 'conceive', '\n', 'how', 'comfortable', 'they', 'will', 'be', ' ', 'five', 'hundred', 'a', 'year', 'I', 'be', '\n', 'sure', 'I', 'can', 'not', 'imagine', 'how', 'they', 'will', 'spend', 'half', 'of', 'it', '\n', 'and', 'as', 'to', 'your', 'give', 'they', 'more', 'it', 'be', 'quite', 'absurd', 'to', 'think', '\n', 'of', 'it', ' ', 'they', 'will', 'be', 'much', 'more', 'able', 'to', 'give', 'you', 'something', '\n\n', 'upon', 'my', 'word', 'say', 'Mr', 'Dashwood', 'I', 'believe', 'you', '\n', 'be', 'perfectly', 'right', ' ', 'my', 'father', 'certainly', 'could', 'mean', '\n', 'nothing', 'more', 'by', 'his', 'request', 'to', 'I', 'than', 'what', 'you', 'say', '\n', 'I', 'clearly', 'understand', 'it', 'now', 'and', 'I', 'will', 'strictly', 'fulfil', '\n', 'my', 'engagement', 'by', 'such', 'act', 'of', 'assistance', 'and', 'kindness', '\n', 'to', 'they', 'as', 'you', 'have', 'describe', ' ', 'when', 'my', 'mother', 'remove', '\n', 'into', 'another', 'house', 'my', 'service', 'shall', 'be', 'readily', 'give', '\n', 'to', 'accommodate', 'she', 'as', 'far', 'as', 'I', 'can', ' ', 'some', 'little', 'present', '\n', 'of', 'furniture', 'too', 'may', 'be', 'acceptable', 'then', '\n\n', 'certainly', 'return', 'Mrs', 'John', 'Dashwood', ' ', 'but', 'however', '\n', 'one', 'thing', 'must', 'be', 'consider', ' ', 'when', 'your', 'father', 'and', 'mother', '\n', 'move', 'to', 'Norland', 'though', 'the', 'furniture', 'of', 'Stanhill', '\n', 'be', 'sell', 'all', 'the', 'china', 'plate', 'and', 'linen', 'be', 'save', '\n', 'and', 'be', 'now', 'leave', 'to', 'your', 'mother', ' ', 'her', 'house', 'will', 'therefore', '\n', 'be', 'almost', 'completely', 'fit', 'up', 'as', 'soon', 'as', 'she', 'take', 'it', '\n\n', 'that', 'be', 'a', 'material', 'consideration', 'undoubtedly', '\n', 'a', 'valuable', 'legacy', 'indeed', 'and', 'yet', 'some', 'of', 'the', 'plate', 'would', '\n', 'have', 'be', 'a', 'very', 'pleasant', 'addition', 'to', 'our', 'own', 'stock', 'here', '\n\n', 'yes', 'and', 'the', 'set', 'of', 'breakfast', 'china', 'be', 'twice', '\n', 'as', 'handsome', 'as', 'what', 'belong', 'to', 'this', 'house', ' ', 'a', 'great', '\n', 'deal', 'too', 'handsome', 'in', 'my', 'opinion', 'for', 'any', 'place', 'they', '\n', 'can', 'ever', 'afford', 'to', 'live', 'in', ' ', 'but', 'however', 'so', 'it', 'be', '\n', 'your', 'father', 'think', 'only', 'of', 'they', ' ', 'and', 'I', 'must', 'say', 'this', '\n', 'that', 'you', 'owe', 'no', 'particular', 'gratitude', 'to', 'he', 'nor', 'attention', '\n', 'to', 'his', 'wish', 'for', 'we', 'very', 'well', 'know', 'that', 'if', 'he', 'could', '\n', 'he', 'would', 'have', 'leave', 'almost', 'everything', 'in', 'the', 'world', 'to', 'they', '\n\n', 'this', 'argument', 'be', 'irresistible', ' ', 'it', 'give', 'to', 'his', '\n', 'intention', 'whatever', 'of', 'decision', 'be', 'want', 'before', 'and', 'he', '\n', 'finally', 'resolve', 'that', 'it', 'would', 'be', 'absolutely', 'unnecessary', '\n', 'if', 'not', 'highly', 'indecorous', 'to', 'do', 'more', 'for', 'the', 'widow', '\n', 'and', 'child', 'of', 'his', 'father', 'than', 'such', 'kind', 'of', 'neighbourly', '\n', 'act', 'as', 'his', 'own', 'wife', 'point', 'out', '\n\n\n\n', 'chapter', '3', '\n\n\n', 'Mrs', 'Dashwood', 'remain', 'at', 'Norland', 'several', 'month', '\n', 'not', 'from', 'any', 'disinclination', 'to', 'move', 'when', 'the', 'sight', 'of', 'every', '\n', 'well', 'know', 'spot', 'cease', 'to', 'raise', 'the', 'violent', 'emotion', 'which', 'it', '\n', 'produce', 'for', 'a', 'while', 'for', 'when', 'her', 'spirit', 'begin', 'to', 'revive', '\n', 'and', 'her', 'mind', 'become', 'capable', 'of', 'some', 'other', 'exertion', 'than', 'that', '\n', 'of', 'heighten', 'its', 'affliction', 'by', 'melancholy', 'remembrance', '\n', 'she', 'be', 'impatient', 'to', 'be', 'go', 'and', 'indefatigable', 'in', 'her', 'inquiry', '\n', 'for', 'a', 'suitable', 'dwelling', 'in', 'the', 'neighbourhood', 'of', 'Norland', '\n', 'for', 'to', 'remove', 'far', 'from', 'that', 'beloved', 'spot', 'be', 'impossible', '\n', 'but', 'she', 'could', 'hear', 'of', 'no', 'situation', 'that', 'at', 'once', 'answer', '\n', 'her', 'notion', 'of', 'comfort', 'and', 'ease', 'and', 'suit', 'the', 'prudence', '\n', 'of', 'her', 'eld', 'daughter', 'whose', 'steady', 'judgment', 'reject', '\n', 'several', 'house', 'as', 'too', 'large', 'for', 'their', 'income', 'which', 'her', '\n', 'mother', 'would', 'have', 'approve', '\n\n', 'Mrs', 'Dashwood', 'have', 'be', 'inform', 'by', 'her', 'husband', 'of', 'the', '\n', 'solemn', 'promise', 'on', 'the', 'part', 'of', 'his', 'son', 'in', 'their', 'favour', '\n', 'which', 'give', 'comfort', 'to', 'his', 'last', 'earthly', 'reflection', '\n', 'she', 'doubt', 'the', 'sincerity', 'of', 'this', 'assurance', 'no', 'more', 'than', 'he', '\n', 'have', 'doubt', 'it', 'himself', 'and', 'she', 'think', 'of', 'it', 'for', 'her', 'daughter', '\n', 'sake', 'with', 'satisfaction', 'though', 'as', 'for', 'herself', 'she', 'be', '\n', 'persuade', 'that', 'a', 'much', 'small', 'provision', 'than', '7000L', 'would', '\n', 'support', 'she', 'in', 'affluence', ' ', 'for', 'their', 'brother', 'sake', 'too', '\n', 'for', 'the', 'sake', 'of', 'his', 'own', 'heart', 'she', 'rejoice', 'and', 'she', '\n', 'reproach', 'herself', 'for', 'be', 'unjust', 'to', 'his', 'merit', 'before', '\n', 'in', 'believe', 'he', 'incapable', 'of', 'generosity', ' ', 'his', 'attentive', '\n', 'behaviour', 'to', 'herself', 'and', 'his', 'sister', 'convince', 'she', 'that', '\n', 'their', 'welfare', 'be', 'dear', 'to', 'he', 'and', 'for', 'a', 'long', 'time', '\n', 'she', 'firmly', 'rely', 'on', 'the', 'liberality', 'of', 'his', 'intention', '\n\n', 'the', 'contempt', 'which', 'she', 'have', 'very', 'early', 'in', 'their', 'acquaintance', '\n', 'feel', 'for', 'her', 'daughterinlaw', 'be', 'very', 'much', 'increase', '\n', 'by', 'the', 'farther', 'knowledge', 'of', 'her', 'character', 'which', 'half', '\n', 'a', 'year', 'residence', 'in', 'her', 'family', 'afford', 'and', 'perhaps', '\n', 'in', 'spite', 'of', 'every', 'consideration', 'of', 'politeness', 'or', 'maternal', '\n', 'affection', 'on', 'the', 'side', 'of', 'the', 'former', 'the', 'two', 'lady', 'might', '\n', 'have', 'find', 'it', 'impossible', 'to', 'have', 'live', 'together', 'so', 'long', '\n', 'have', 'not', 'a', 'particular', 'circumstance', 'occur', 'to', 'give', '\n', 'still', 'great', 'eligibility', 'accord', 'to', 'the', 'opinion', '\n', 'of', 'Mrs', 'Dashwood', 'to', 'her', 'daughter', 'continuance', 'at', 'Norland', '\n\n', 'this', 'circumstance', 'be', 'a', 'grow', 'attachment', 'between', '\n', 'her', 'eld', 'girl', 'and', 'the', 'brother', 'of', 'Mrs', 'John', 'Dashwood', '\n', 'a', 'gentlemanlike', 'and', 'pleasing', 'young', 'man', 'who', 'be', 'introduce', '\n', 'to', 'their', 'acquaintance', 'soon', 'after', 'his', 'sister', 'establishment', '\n', 'at', 'Norland', 'and', 'who', 'have', 'since', 'spend', 'the', 'great', 'part', '\n', 'of', 'his', 'time', 'there', '\n\n', 'some', 'mother', 'might', 'have', 'encourage', 'the', 'intimacy', 'from', '\n', 'motive', 'of', 'interest', 'for', 'Edward', 'Ferrars', 'be', 'the', 'eld', 'son', '\n', 'of', 'a', 'man', 'who', 'have', 'die', 'very', 'rich', 'and', 'some', 'might', 'have', 'repress', '\n', 'it', 'from', 'motive', 'of', 'prudence', 'for', 'except', 'a', 'trifling', 'sum', '\n', 'the', 'whole', 'of', 'his', 'fortune', 'depend', 'on', 'the', 'will', 'of', 'his', 'mother', '\n', 'but', 'Mrs', 'Dashwood', 'be', 'alike', 'uninfluence', 'by', 'either', 'consideration', '\n', 'it', 'be', 'enough', 'for', 'she', 'that', 'he', 'appear', 'to', 'be', 'amiable', '\n', 'that', 'he', 'love', 'her', 'daughter', 'and', 'that', 'Elinor', 'return', '\n', 'the', 'partiality', ' ', 'it', 'be', 'contrary', 'to', 'every', 'doctrine', 'of', '\n', 'hers', 'that', 'difference', 'of', 'fortune', 'should', 'keep', 'any', 'couple', '\n', 'asunder', 'who', 'be', 'attract', 'by', 'resemblance', 'of', 'disposition', '\n', 'and', 'that', 'elinor', 'merit', 'should', 'not', 'be', 'acknowledge', '\n', 'by', 'every', 'one', 'who', 'know', 'she', 'be', 'to', 'her', 'comprehension', 'impossible', '\n\n', 'Edward', 'Ferrars', 'be', 'not', 'recommend', 'to', 'their', 'good', '\n', 'opinion', 'by', 'any', 'peculiar', 'grace', 'of', 'person', 'or', 'address', '\n', 'he', 'be', 'not', 'handsome', 'and', 'his', 'manner', 'require', 'intimacy', '\n', 'to', 'make', 'they', 'pleasing', ' ', 'he', 'be', 'too', 'diffident', 'to', 'do', 'justice', '\n', 'to', 'himself', 'but', 'when', 'his', 'natural', 'shyness', 'be', 'overcome', '\n', 'his', 'behaviour', 'give', 'every', 'indication', 'of', 'an', 'open', '\n', 'affectionate', 'heart', ' ', 'his', 'understanding', 'be', 'good', '\n', 'and', 'his', 'education', 'have', 'give', 'it', 'solid', 'improvement', '\n', 'but', 'he', 'be', 'neither', 'fit', 'by', 'ability', 'nor', 'disposition', '\n', 'to', 'answer', 'the', 'wish', 'of', 'his', 'mother', 'and', 'sister', 'who', 'long', '\n', 'to', 'see', 'he', 'distinguishedasthey', 'hardly', 'know', 'what', '\n', 'they', 'want', 'he', 'to', 'make', 'a', 'fine', 'figure', 'in', 'the', 'world', 'in', 'some', '\n', 'manner', 'or', 'other', ' ', 'his', 'mother', 'wish', 'to', 'interest', 'he', 'in', '\n', 'political', 'concern', 'to', 'get', 'he', 'into', 'parliament', 'or', 'to', 'see', '\n', 'he', 'connect', 'with', 'some', 'of', 'the', 'great', 'man', 'of', 'the', 'day', '\n', 'Mrs', 'John', 'Dashwood', 'wish', 'it', 'likewise', 'but', 'in', 'the', 'mean', 'while', '\n', 'till', 'one', 'of', 'these', 'superior', 'blessing', 'could', 'be', 'attain', 'it', 'would', '\n', 'have', 'quiet', 'her', 'ambition', 'to', 'see', 'he', 'drive', 'a', 'barouche', '\n', 'but', 'Edward', 'have', 'no', 'turn', 'for', 'great', 'man', 'or', 'barouche', '\n', 'all', 'his', 'wish', 'center', 'in', 'domestic', 'comfort', 'and', 'the', 'quiet', '\n', 'of', 'private', 'life', ' ', 'fortunately', 'he', 'have', 'a', 'young', 'brother', '\n', 'who', 'be', 'more', 'promising', '\n\n', 'Edward', 'have', 'be', 'stay', 'several', 'week', 'in', 'the', 'house', '\n', 'before', 'he', 'engage', 'much', 'of', 'Mrs', 'Dashwoods', 'attention', '\n', 'for', 'she', 'be', 'at', 'that', 'time', 'in', 'such', 'affliction', 'as', 'render', '\n', 'her', 'careless', 'of', 'surround', 'object', ' ', 'she', 'see', 'only', 'that', 'he', '\n', 'be', 'quiet', 'and', 'unobtrusive', 'and', 'she', 'like', 'he', 'for', 'it', '\n', 'he', 'do', 'not', 'disturb', 'the', 'wretchedness', 'of', 'her', 'mind', 'by', '\n', 'illtimed', 'conversation', ' ', 'she', 'be', 'first', 'call', 'to', 'observe', '\n', 'and', 'approve', 'he', 'far', 'by', 'a', 'reflection', 'which', 'Elinor', '\n', 'chance', 'one', 'day', 'to', 'make', 'on', 'the', 'difference', 'between', 'he', '\n', 'and', 'his', 'sister', ' ', 'it', 'be', 'a', 'contrast', 'which', 'recommend', 'he', '\n', 'most', 'forcibly', 'to', 'her', 'mother', '\n\n', 'it', 'be', 'enough', 'say', 'she', 'to', 'say', 'that', 'he', 'be', 'unlike', '\n', 'Fanny', 'be', 'enough', ' ', 'it', 'imply', 'everything', 'amiable', '\n', 'I', 'love', 'he', 'already', '\n\n', 'I', 'think', 'you', 'will', 'like', 'he', 'say', 'Elinor', 'when', 'you', '\n', 'know', 'more', 'of', 'he', '\n\n', 'like', 'he', 'reply', 'her', 'mother', 'with', 'a', 'smile', '\n', 'I', 'feel', 'no', 'sentiment', 'of', 'approbation', 'inferior', 'to', 'love', '\n\n', 'you', 'may', 'esteem', 'he', '\n\n', 'I', 'have', 'never', 'yet', 'know', 'what', 'it', 'be', 'to', 'separate', '\n', 'esteem', 'and', 'love', '\n\n', 'Mrs', 'Dashwood', 'now', 'take', 'pain', 'to', 'get', 'acquaint', 'with', 'he', '\n', 'her', 'manner', 'be', 'attach', 'and', 'soon', 'banish', 'his', 'reserve', '\n', 'she', 'speedily', 'comprehend', 'all', 'his', 'merit', 'the', 'persuasion', '\n', 'of', 'his', 'regard', 'for', 'Elinor', 'perhaps', 'assist', 'her', 'penetration', '\n', 'but', 'she', 'really', 'feel', 'assure', 'of', 'his', 'worth', 'and', 'even', 'that', '\n', 'quietness', 'of', 'manner', 'which', 'militate', 'against', 'all', 'her', '\n', 'establish', 'idea', 'of', 'what', 'a', 'young', 'man', 'address', 'ought', 'to', 'be', '\n', 'be', 'no', 'long', 'uninteresting', 'when', 'she', 'know', 'his', 'heart', 'to', 'be', '\n', 'warm', 'and', 'his', 'temper', 'affectionate', '\n\n', 'no', 'soon', 'do', 'she', 'perceive', 'any', 'symptom', 'of', 'love', '\n', 'in', 'his', 'behaviour', 'to', 'Elinor', 'than', 'she', 'consider', 'their', '\n', 'serious', 'attachment', 'as', 'certain', 'and', 'look', 'forward', '\n', 'to', 'their', 'marriage', 'as', 'rapidly', 'approach', '\n\n', 'in', 'a', 'few', 'month', 'my', 'dear', 'Marianne', 'say', 'she', '\n', 'Elinor', 'will', 'in', 'all', 'probability', 'be', 'settle', 'for', 'life', '\n', 'we', 'shall', 'miss', 'she', 'but', 'she', 'will', 'be', 'happy', '\n\n', 'oh', 'Mamma', 'how', 'shall', 'we', 'do', 'without', 'her', '\n\n', 'my', 'love', 'it', 'will', 'be', 'scarcely', 'a', 'separation', '\n', 'we', 'shall', 'live', 'within', 'a', 'few', 'mile', 'of', 'each', 'other', 'and', 'shall', '\n', 'meet', 'every', 'day', 'of', 'our', 'life', ' ', 'you', 'will', 'gain', 'a', 'brother', '\n', 'a', 'real', 'affectionate', 'brother', ' ', 'I', 'have', 'the', 'high', 'opinion', '\n', 'in', 'the', 'world', 'of', 'Edwards', 'heart', ' ', 'but', 'you', 'look', 'grave', '\n', 'Marianne', 'do', 'you', 'disapprove', 'your', 'sister', 'choice', '\n\n', 'perhaps', 'say', 'Marianne', 'I', 'may', 'consider', 'it', '\n', 'with', 'some', 'surprise', ' ', 'Edward', 'be', 'very', 'amiable', 'and', 'I', 'love', '\n', 'he', 'tenderly', ' ', 'but', 'yethe', 'be', 'not', 'the', 'kind', 'of', 'young', '\n', 'manthere', 'be', 'something', 'wantinghis', 'figure', 'be', 'not', 'strike', '\n', 'it', 'have', 'none', 'of', 'that', 'grace', 'which', 'I', 'should', 'expect', '\n', 'in', 'the', 'man', 'who', 'could', 'seriously', 'attach', 'my', 'sister', '\n', 'his', 'eye', 'want', 'all', 'that', 'spirit', 'that', 'fire', 'which', 'at', 'once', '\n', 'announce', 'virtue', 'and', 'intelligence', ' ', 'and', 'besides', 'all', 'this', '\n', 'I', 'be', 'afraid', 'Mamma', 'he', 'have', 'no', 'real', 'taste', ' ', 'Music', 'seem', '\n', 'scarcely', 'to', 'attract', 'he', 'and', 'though', 'he', 'admire', 'elinor', '\n', 'drawing', 'very', 'much', 'it', 'be', 'not', 'the', 'admiration', 'of', 'a', 'person', '\n', 'who', 'can', 'understand', 'their', 'worth', ' ', 'it', 'be', 'evident', 'in', 'spite', 'of', '\n', 'his', 'frequent', 'attention', 'to', 'she', 'while', 'she', 'draw', 'that', 'in', 'fact', '\n', 'he', 'know', 'nothing', 'of', 'the', 'matter', ' ', 'he', 'admire', 'as', 'a', 'lover', '\n', 'not', 'as', 'a', 'connoisseur', ' ', 'to', 'satisfy', 'I', 'those', 'character', '\n', 'must', 'be', 'unite', ' ', 'I', 'could', 'not', 'be', 'happy', 'with', 'a', 'man', 'whose', '\n', 'taste', 'do', 'not', 'in', 'every', 'point', 'coincide', 'with', 'my', 'own', '\n', 'he', 'must', 'enter', 'into', 'all', 'my', 'feeling', 'the', 'same', 'book', '\n', 'the', 'same', 'music', 'must', 'charm', 'we', 'both', ' ', 'oh', 'mama', 'how', 'spiritless', '\n', 'how', 'tame', 'be', 'Edwards', 'manner', 'in', 'read', 'to', 'we', 'last', 'night', '\n', 'I', 'feel', 'for', 'my', 'sister', 'most', 'severely', ' ', 'yet', 'she', 'bear', 'it', '\n', 'with', 'so', 'much', 'composure', 'she', 'seem', 'scarcely', 'to', 'notice', 'it', '\n', 'I', 'could', 'hardly', 'keep', 'my', 'seat', ' ', 'to', 'hear', 'those', 'beautiful', 'line', '\n', 'which', 'have', 'frequently', 'almost', 'drive', 'I', 'wild', 'pronounce', '\n', 'with', 'such', 'impenetrable', 'calmness', 'such', 'dreadful', 'indifference', '\n\n', 'he', 'would', 'certainly', 'have', 'do', 'more', 'justice', 'to', '\n', 'simple', 'and', 'elegant', 'prose', ' ', 'I', 'think', 'so', 'at', 'the', 'time', '\n', 'but', 'you', 'would', 'give', 'he', 'Cowper', '\n\n', 'Nay', 'Mamma', 'if', 'he', 'be', 'not', 'to', 'be', 'animate', 'by', 'Cowper', '\n', 'but', 'we', 'must', 'allow', 'for', 'difference', 'of', 'taste', ' ', 'Elinor', 'have', '\n', 'not', 'my', 'feeling', 'and', 'therefore', 'she', 'may', 'overlook', 'it', 'and', '\n', 'be', 'happy', 'with', 'he', ' ', 'but', 'it', 'would', 'have', 'break', 'my', 'heart', '\n', 'have', 'I', 'love', 'he', 'to', 'hear', 'he', 'read', 'with', 'so', 'little', 'sensibility', '\n', 'Mama', 'the', 'more', 'I', 'know', 'of', 'the', 'world', 'the', 'more', 'am', 'I', 'convince', '\n', 'that', 'I', 'shall', 'never', 'see', 'a', 'man', 'whom', 'I', 'can', 'really', 'love', '\n', 'I', 'require', 'so', 'much', ' ', 'he', 'must', 'have', 'all', 'Edwards', 'virtue', '\n', 'and', 'his', 'person', 'and', 'manner', 'must', 'ornament', 'his', 'goodness', '\n', 'with', 'every', 'possible', 'charm', '\n\n', 'remember', 'my', 'love', 'that', 'you', 'be', 'not', 'seventeen', '\n', 'it', 'be', 'yet', 'too', 'early', 'in', 'life', 'to', 'despair', 'of', 'such', 'a', 'happiness', '\n', 'why', 'should', 'you', 'be', 'less', 'fortunate', 'than', 'your', 'mother', ' ', 'in', '\n', 'one', 'circumstance', 'only', 'my', 'Marianne', 'may', 'your', 'destiny', 'be', '\n', 'different', 'from', 'hers', '\n\n\n\n', 'chapter', '4', '\n\n\n', 'what', 'a', 'pity', 'it', 'be', 'Elinor', 'say', 'Marianne', '\n', 'that', 'Edward', 'should', 'have', 'no', 'taste', 'for', 'draw', '\n\n', 'no', 'taste', 'for', 'drawing', 'reply', 'Elinor', 'why', 'should', '\n', 'you', 'think', 'so', 'he', 'do', 'not', 'draw', 'himself', 'indeed', 'but', 'he', 'have', '\n', 'great', 'pleasure', 'in', 'see', 'the', 'performance', 'of', 'other', 'people', '\n', 'and', 'I', 'assure', 'you', 'he', 'be', 'by', 'no', 'mean', 'deficient', 'in', 'natural', 'taste', '\n', 'though', 'he', 'have', 'not', 'have', 'opportunity', 'of', 'improve', 'it', '\n', 'have', 'he', 'ever', 'be', 'in', 'the', 'way', 'of', 'learn', 'I', 'think', 'he', 'would', '\n', 'have', 'draw', 'very', 'well', ' ', 'he', 'distrust', 'his', 'own', 'judgment', '\n', 'in', 'such', 'matter', 'so', 'much', 'that', 'he', 'be', 'always', 'unwilling', '\n', 'to', 'give', 'his', 'opinion', 'on', 'any', 'picture', 'but', 'he', 'have', 'an', 'innate', '\n', 'propriety', 'and', 'simplicity', 'of', 'taste', 'which', 'in', 'general', '\n', 'direct', 'he', 'perfectly', 'right', '\n\n', 'Marianne', 'be', 'afraid', 'of', 'offend', 'and', 'say', 'no', 'more', '\n', 'on', 'the', 'subject', 'but', 'the', 'kind', 'of', 'approbation', 'which', 'Elinor', '\n', 'describe', 'as', 'excited', 'in', 'he', 'by', 'the', 'drawing', 'of', 'other', '\n', 'people', 'be', 'very', 'far', 'from', 'that', 'rapturous', 'delight', 'which', '\n', 'in', 'her', 'opinion', 'could', 'alone', 'be', 'call', 'taste', ' ', 'yet', 'though', '\n', 'smile', 'within', 'herself', 'at', 'the', 'mistake', 'she', 'honour', '\n', 'her', 'sister', 'for', 'that', 'blind', 'partiality', 'to', 'Edward', 'which', 'produce', 'it', '\n\n', 'I', 'hope', 'Marianne', 'continue', 'Elinor', 'you', 'do', 'not', '\n', 'consider', 'he', 'as', 'deficient', 'in', 'general', 'taste', ' ', 'indeed', 'I', 'think', '\n', 'I', 'may', 'say', 'that', 'you', 'can', 'not', 'for', 'your', 'behaviour', 'to', 'he', '\n', 'be', 'perfectly', 'cordial', 'and', 'if', 'that', 'be', 'your', 'opinion', '\n', 'I', 'be', 'sure', 'you', 'could', 'never', 'be', 'civil', 'to', 'he', '\n\n', 'Marianne', 'hardly', 'know', 'what', 'to', 'say', ' ', 'she', 'would', '\n', 'not', 'wound', 'the', 'feeling', 'of', 'her', 'sister', 'on', 'any', 'account', '\n', 'and', 'yet', 'to', 'say', 'what', 'she', 'do', 'not', 'believe', 'be', 'impossible', '\n', 'at', 'length', 'she', 'reply', '\n\n', 'do', 'not', 'be', 'offend', 'Elinor', 'if', 'my', 'praise', 'of', 'he', '\n', 'be', 'not', 'in', 'every', 'thing', 'equal', 'to', 'your', 'sense', 'of', 'his', 'merit', '\n', 'I', 'have', 'not', 'have', 'so', 'many', 'opportunity', 'of', 'estimate', 'the', 'minuter', '\n', 'propensity', 'of', 'his', 'mind', 'his', 'inclination', 'and', 'taste', '\n', 'as', 'you', 'have', 'but', 'I', 'have', 'the', 'high', 'opinion', 'in', 'the', 'world', '\n', 'of', 'his', 'goodness', 'and', 'sense', ' ', 'I', 'think', 'he', 'every', 'thing', 'that', 'be', '\n', 'worthy', 'and', 'amiable', '\n\n', 'I', 'be', 'sure', 'reply', 'Elinor', 'with', 'a', 'smile', '\n', 'that', 'his', 'dear', 'friend', 'could', 'not', 'be', 'dissatisfy', '\n', 'with', 'such', 'commendation', 'as', 'that', ' ', 'I', 'do', 'not', 'perceive', '\n', 'how', 'you', 'could', 'express', 'yourself', 'more', 'warmly', '\n\n', 'Marianne', 'be', 'rejoice', 'to', 'find', 'her', 'sister', 'so', 'easily', 'please', '\n\n', 'of', 'his', 'sense', 'and', 'his', 'goodness', 'continue', 'Elinor', '\n', 'no', 'one', 'can', 'I', 'think', 'be', 'in', 'doubt', 'who', 'have', 'see', 'he', '\n', 'often', 'enough', 'to', 'engage', 'he', 'in', 'unreserved', 'conversation', '\n', 'the', 'excellence', 'of', 'his', 'understanding', 'and', 'his', 'principle', '\n', 'can', 'be', 'conceal', 'only', 'by', 'that', 'shyness', 'which', 'too', 'often', '\n', 'keep', 'he', 'silent', ' ', 'you', 'know', 'enough', 'of', 'he', 'to', 'do', 'justice', '\n', 'to', 'his', 'solid', 'worth', ' ', 'but', 'of', 'his', 'minuter', 'propensity', '\n', 'as', 'you', 'call', 'they', 'you', 'have', 'from', 'peculiar', 'circumstance', '\n', 'be', 'keep', 'more', 'ignorant', 'than', 'myself', ' ', 'he', 'and', 'I', 'have', '\n', 'be', 'at', 'time', 'throw', 'a', 'good', 'deal', 'together', 'while', 'you', '\n', 'have', 'be', 'wholly', 'engross', 'on', 'the', 'most', 'affectionate', '\n', 'principle', 'by', 'my', 'mother', ' ', 'I', 'have', 'see', 'a', 'great', 'deal', 'of', 'he', '\n', 'have', 'study', 'his', 'sentiment', 'and', 'hear', 'his', 'opinion', 'on', '\n', 'subject', 'of', 'literature', 'and', 'taste', 'and', 'upon', 'the', 'whole', '\n', 'I', 'venture', 'to', 'pronounce', 'that', 'his', 'mind', 'be', 'wellinforme', '\n', 'enjoyment', 'of', 'book', 'exceedingly', 'great', 'his', 'imagination', 'lively', '\n', 'his', 'observation', 'just', 'and', 'correct', 'and', 'his', 'taste', 'delicate', '\n', 'and', 'pure', ' ', 'his', 'ability', 'in', 'every', 'respect', 'improve', '\n', 'as', 'much', 'upon', 'acquaintance', 'as', 'his', 'manner', 'and', 'person', '\n', 'at', 'first', 'sight', 'his', 'address', 'be', 'certainly', 'not', 'strike', '\n', 'and', 'his', 'person', 'can', 'hardly', 'be', 'call', 'handsome', 'till', 'the', '\n', 'expression', 'of', 'his', 'eye', 'which', 'be', 'uncommonly', 'good', '\n', 'and', 'the', 'general', 'sweetness', 'of', 'his', 'countenance', 'be', 'perceive', '\n', 'at', 'present', 'I', 'know', 'he', 'so', 'well', 'that', 'I', 'think', 'he', '\n', 'really', 'handsome', 'or', 'at', 'least', 'almost', 'so', ' ', 'what', 'say', 'you', '\n', 'Marianne', '\n\n', 'I', 'shall', 'very', 'soon', 'think', 'he', 'handsome', 'Elinor', 'if', 'I', '\n', 'do', 'not', 'now', ' ', 'when', 'you', 'tell', 'I', 'to', 'love', 'he', 'as', 'a', 'brother', '\n', 'I', 'shall', 'no', 'more', 'see', 'imperfection', 'in', 'his', 'face', 'than', 'I', 'now', 'do', '\n', 'in', 'his', 'heart', '\n\n', 'Elinor', 'start', 'at', 'this', 'declaration', 'and', 'be', 'sorry', 'for', '\n', 'the', 'warmth', 'she', 'have', 'be', 'betray', 'into', 'in', 'speak', 'of', 'he', '\n', 'she', 'feel', 'that', 'Edward', 'stand', 'very', 'high', 'in', 'her', 'opinion', '\n', 'she', 'believe', 'the', 'regard', 'to', 'be', 'mutual', 'but', 'she', 'require', '\n', 'great', 'certainty', 'of', 'it', 'to', 'make', 'Mariannes', 'conviction', '\n', 'of', 'their', 'attachment', 'agreeable', 'to', 'her', ' ', 'she', 'know', 'that', '\n', 'what', 'Marianne', 'and', 'her', 'mother', 'conjecture', 'one', 'moment', '\n', 'they', 'believe', 'the', 'nextthat', 'with', 'they', 'to', 'wish', 'be', 'to', 'hope', '\n', 'and', 'to', 'hope', 'be', 'to', 'expect', ' ', 'she', 'try', 'to', 'explain', 'the', 'real', '\n', 'state', 'of', 'the', 'case', 'to', 'her', 'sister', '\n\n', 'I', 'do', 'not', 'attempt', 'to', 'deny', 'say', 'she', 'that', 'I', 'think', '\n', 'very', 'highly', 'of', 'himthat', 'I', 'greatly', 'esteem', 'that', 'I', 'like', 'he', '\n\n', 'Marianne', 'here', 'burst', 'forth', 'with', 'indignation', '\n\n', 'esteem', 'he', 'like', 'he', 'coldhearte', 'Elinor', 'oh', '\n', 'bad', 'than', 'coldhearte', 'Ashamed', 'of', 'be', 'otherwise', '\n', 'use', 'those', 'word', 'again', 'and', 'I', 'will', 'leave', 'the', 'room', 'this', 'moment', '\n\n', 'Elinor', 'could', 'not', 'help', 'laugh', ' ', 'excuse', 'I', '\n', 'say', 'she', 'and', 'be', 'assure', 'that', 'I', 'mean', 'no', 'offence', 'to', 'you', '\n', 'by', 'speak', 'in', 'so', 'quiet', 'a', 'way', 'of', 'my', 'own', 'feeling', '\n', 'believe', 'they', 'to', 'be', 'strong', 'than', 'I', 'have', 'declare', '\n', 'believe', 'they', 'in', 'short', 'to', 'be', 'such', 'as', 'his', 'merit', 'and', 'the', '\n', 'suspicionthe', 'hope', 'of', 'his', 'affection', 'for', 'I', 'may', 'warrant', '\n', 'without', 'imprudence', 'or', 'folly', ' ', 'but', 'far', 'than', 'this', 'you', 'must', '\n', 'not', 'believe', ' ', 'I', 'be', 'by', 'no', 'mean', 'assure', 'of', 'his', 'regard', 'for', 'I', '\n', 'there', 'be', 'moment', 'when', 'the', 'extent', 'of', 'it', 'seem', 'doubtful', '\n', 'and', 'till', 'his', 'sentiment', 'be', 'fully', 'know', 'you', 'can', 'not', 'wonder', '\n', 'at', 'my', 'wishing', 'to', 'avoid', 'any', 'encouragement', 'of', 'my', 'own', 'partiality', '\n', 'by', 'believe', 'or', 'call', 'it', 'more', 'than', 'it', 'be', ' ', 'in', 'my', 'heart', '\n', 'I', 'feel', 'littlescarcely', 'any', 'doubt', 'of', 'his', 'preference', '\n', 'but', 'there', 'be', 'other', 'point', 'to', 'be', 'consider', 'besides', '\n', 'his', 'inclination', ' ', 'he', 'be', 'very', 'far', 'from', 'be', 'independent', '\n', 'what', 'his', 'mother', 'really', 'be', 'we', 'can', 'not', 'know', 'but', 'from', 'Fannys', '\n', 'occasional', 'mention', 'of', 'her', 'conduct', 'and', 'opinion', 'we', 'have', '\n', 'never', 'be', 'dispose', 'to', 'think', 'she', 'amiable', 'and', 'I', 'be', 'very', '\n', 'much', 'mistaken', 'if', 'Edward', 'be', 'not', 'himself', 'aware', 'that', 'there', '\n', 'would', 'be', 'many', 'difficulty', 'in', 'his', 'way', 'if', 'he', 'be', 'to', 'wish', '\n', 'to', 'marry', 'a', 'woman', 'who', 'have', 'not', 'either', 'a', 'great', 'fortune', 'or', '\n', 'high', 'rank', '\n\n', 'Marianne', 'be', 'astonish', 'to', 'find', 'how', 'much', 'the', 'imagination', '\n', 'of', 'her', 'mother', 'and', 'herself', 'have', 'outstrip', 'the', 'truth', '\n\n', 'and', 'you', 'really', 'be', 'not', 'engaged', 'to', 'he', 'say', 'she', '\n', 'yet', 'it', 'certainly', 'soon', 'will', 'happen', ' ', 'but', 'two', 'advantage', '\n', 'will', 'proceed', 'from', 'this', 'delay', ' ', 'I', 'shall', 'not', 'lose', 'you', 'so', 'soon', '\n', 'and', 'Edward', 'will', 'have', 'great', 'opportunity', 'of', 'improve', '\n', 'that', 'natural', 'taste', 'for', 'your', 'favourite', 'pursuit', 'which', 'must', '\n', 'be', 'so', 'indispensably', 'necessary', 'to', 'your', 'future', 'felicity', '\n', 'oh', 'if', 'he', 'should', 'be', 'so', 'far', 'stimulate', 'by', 'your', 'genius', 'as', 'to', '\n', 'learn', 'to', 'draw', 'himself', 'how', 'delightful', 'it', 'would', 'be', '\n\n', 'Elinor', 'have', 'give', 'her', 'real', 'opinion', 'to', 'her', 'sister', '\n', 'she', 'could', 'not', 'consider', 'her', 'partiality', 'for', 'Edward', '\n', 'in', 'so', 'prosperous', 'a', 'state', 'as', 'Marianne', 'have', 'believe', 'it', '\n', 'there', 'be', 'at', 'time', 'a', 'want', 'of', 'spirit', 'about', 'he', 'which', '\n', 'if', 'it', 'do', 'not', 'denote', 'indifference', 'speak', 'of', 'something', 'almost', '\n', 'as', 'unpromise', ' ', 'a', 'doubt', 'of', 'her', 'regard', 'suppose', 'he', '\n', 'to', 'feel', 'it', 'need', 'not', 'give', 'he', 'more', 'than', 'inquietude', '\n', 'it', 'would', 'not', 'be', 'likely', 'to', 'produce', 'that', 'dejection', 'of', 'mind', '\n', 'which', 'frequently', 'attend', 'he', ' ', 'a', 'more', 'reasonable', 'cause', '\n', 'might', 'be', 'find', 'in', 'the', 'dependent', 'situation', 'which', 'forbid', '\n', 'the', 'indulgence', 'of', 'his', 'affection', ' ', 'she', 'know', 'that', 'his', 'mother', '\n', 'neither', 'behave', 'to', 'he', 'so', 'as', 'to', 'make', 'his', 'home', 'comfortable', '\n', 'at', 'present', 'nor', 'to', 'give', 'he', 'any', 'assurance', 'that', 'he', 'might', 'form', '\n', 'a', 'home', 'for', 'himself', 'without', 'strictly', 'attend', 'to', 'her', 'view', '\n', 'for', 'his', 'aggrandizement', ' ', 'with', 'such', 'a', 'knowledge', 'as', 'this', '\n', 'it', 'be', 'impossible', 'for', 'Elinor', 'to', 'feel', 'easy', 'on', 'the', 'subject', '\n', 'she', 'be', 'far', 'from', 'depend', 'on', 'that', 'result', 'of', 'his', 'preference', '\n', 'of', 'she', 'which', 'her', 'mother', 'and', 'sister', 'still', 'consider', '\n', 'as', 'certain', ' ', 'Nay', 'the', 'long', 'they', 'be', 'together', 'the', 'more', '\n', 'doubtful', 'seem', 'the', 'nature', 'of', 'his', 'regard', 'and', 'sometimes', '\n', 'for', 'a', 'few', 'painful', 'minute', 'she', 'believe', 'it', 'to', 'be', 'no', 'more', '\n', 'than', 'friendship', '\n\n', 'but', 'whatever', 'might', 'really', 'be', 'its', 'limit', 'it', 'be', 'enough', '\n', 'when', 'perceive', 'by', 'his', 'sister', 'to', 'make', 'she', 'uneasy', '\n', 'and', 'at', 'the', 'same', 'time', 'which', 'be', 'still', 'more', 'common', '\n', 'to', 'make', 'her', 'uncivil', ' ', 'she', 'take', 'the', 'first', 'opportunity', 'of', '\n', 'affront', 'her', 'motherinlaw', 'on', 'the', 'occasion', 'talk', 'to', '\n', 'she', 'so', 'expressively', 'of', 'her', 'brother', 'great', 'expectation', '\n', 'of', 'Mrs', 'Ferrarss', 'resolution', 'that', 'both', 'her', 'son', 'should', '\n', 'marry', 'well', 'and', 'of', 'the', 'danger', 'attend', 'any', 'young', 'woman', '\n', 'who', 'attempt', 'to', 'draw', 'he', 'in', 'that', 'Mrs', 'Dashwood', 'could', '\n', 'neither', 'pretend', 'to', 'be', 'unconscious', 'nor', 'endeavor', 'to', 'be', 'calm', '\n', 'she', 'give', 'she', 'an', 'answer', 'which', 'mark', 'her', 'contempt', '\n', 'and', 'instantly', 'leave', 'the', 'room', 'resolve', 'that', 'whatever', 'might', '\n', 'be', 'the', 'inconvenience', 'or', 'expense', 'of', 'so', 'sudden', 'a', 'removal', '\n', 'her', 'beloved', 'Elinor', 'should', 'not', 'be', 'expose', 'another', 'week', '\n', 'to', 'such', 'insinuation', '\n\n', 'in', 'this', 'state', 'of', 'her', 'spirit', 'a', 'letter', 'be', 'deliver', '\n', 'to', 'she', 'from', 'the', 'post', 'which', 'contain', 'a', 'proposal', '\n', 'particularly', 'well', 'time', ' ', 'it', 'be', 'the', 'offer', 'of', 'a', 'small', 'house', '\n', 'on', 'very', 'easy', 'term', 'belong', 'to', 'a', 'relation', 'of', 'her', 'own', '\n', 'a', 'gentleman', 'of', 'consequence', 'and', 'property', 'in', 'Devonshire', '\n', 'the', 'letter', 'be', 'from', 'this', 'gentleman', 'himself', 'and', 'write', '\n', 'in', 'the', 'true', 'spirit', 'of', 'friendly', 'accommodation', '\n', 'he', 'understand', 'that', 'she', 'be', 'in', 'need', 'of', 'a', 'dwelling', '\n', 'and', 'though', 'the', 'house', 'he', 'now', 'offer', 'she', 'be', 'merely', 'a', 'cottage', '\n', 'he', 'assure', 'she', 'that', 'everything', 'should', 'be', 'do', 'to', 'it', 'which', '\n', 'she', 'might', 'think', 'necessary', 'if', 'the', 'situation', 'please', 'she', '\n', 'he', 'earnestly', 'press', 'she', 'after', 'give', 'the', 'particular', '\n', 'of', 'the', 'house', 'and', 'garden', 'to', 'come', 'with', 'her', 'daughter', 'to', '\n', 'Barton', 'Park', 'the', 'place', 'of', 'his', 'own', 'residence', 'from', 'whence', '\n', 'she', 'might', 'judge', 'herself', 'whether', 'Barton', 'Cottage', 'for', 'the', '\n', 'house', 'be', 'in', 'the', 'same', 'parish', 'could', 'by', 'any', 'alteration', '\n', 'be', 'make', 'comfortable', 'to', 'her', ' ', 'he', 'seem', 'really', 'anxious', 'to', '\n', 'accommodate', 'they', 'and', 'the', 'whole', 'of', 'his', 'letter', 'be', 'write', '\n', 'in', 'so', 'friendly', 'a', 'style', 'as', 'could', 'not', 'fail', 'of', 'give', 'pleasure', '\n', 'to', 'his', 'cousin', 'more', 'especially', 'at', 'a', 'moment', 'when', 'she', 'be', '\n', 'suffer', 'under', 'the', 'cold', 'and', 'unfeele', 'behaviour', 'of', 'her', '\n', 'nearer', 'connection', ' ', 'she', 'need', 'no', 'time', 'for', 'deliberation', '\n', 'or', 'inquiry', ' ', 'her', 'resolution', 'be', 'form', 'as', 'she', 'read', '\n', 'the', 'situation', 'of', 'Barton', 'in', 'a', 'county', 'so', 'far', 'distant', 'from', '\n', 'Sussex', 'as', 'Devonshire', 'which', 'but', 'a', 'few', 'hour', 'before', '\n', 'would', 'have', 'be', 'a', 'sufficient', 'objection', 'to', 'outweigh', 'every', '\n', 'possible', 'advantage', 'belong', 'to', 'the', 'place', 'be', 'now', 'its', '\n', 'first', 'recommendation', ' ', 'to', 'quit', 'the', 'neighbourhood', 'of', 'Norland', '\n', 'be', 'no', 'long', 'an', 'evil', 'it', 'be', 'an', 'object', 'of', 'desire', '\n', 'it', 'be', 'a', 'blessing', 'in', 'comparison', 'of', 'the', 'misery', 'of', 'continue', '\n', 'her', 'daughterinlaw', 'guest', 'and', 'to', 'remove', 'for', 'ever', '\n', 'from', 'that', 'beloved', 'place', 'would', 'be', 'less', 'painful', 'than', 'to', '\n', 'inhabit', 'or', 'visit', 'it', 'while', 'such', 'a', 'woman', 'be', 'its', 'mistress', '\n', 'she', 'instantly', 'write', 'Sir', 'John', 'Middleton', 'her', 'acknowledgment', '\n', 'of', 'his', 'kindness', 'and', 'her', 'acceptance', 'of', 'his', 'proposal', '\n', 'and', 'then', 'hasten', 'to', 'shew', 'both', 'letter', 'to', 'her', 'daughter', '\n', 'that', 'she', 'might', 'be', 'secure', 'of', 'their', 'approbation', 'before', 'her', '\n', 'answer', 'be', 'send', '\n\n', 'Elinor', 'have', 'always', 'think', 'it', 'would', 'be', 'more', 'prudent', '\n', 'for', 'they', 'to', 'settle', 'at', 'some', 'distance', 'from', 'Norland', '\n', 'than', 'immediately', 'amongst', 'their', 'present', 'acquaintance', '\n', 'on', 'that', 'head', 'therefore', 'it', 'be', 'not', 'for', 'she', 'to', 'oppose', '\n', 'her', 'mother', 'intention', 'of', 'remove', 'into', 'Devonshire', '\n', 'the', 'house', 'too', 'as', 'describe', 'by', 'Sir', 'John', 'be', 'on', 'so', '\n', 'simple', 'a', 'scale', 'and', 'the', 'rent', 'so', 'uncommonly', 'moderate', '\n', 'as', 'to', 'leave', 'she', 'no', 'right', 'of', 'objection', 'on', 'either', 'point', '\n', 'and', 'therefore', 'though', 'it', 'be', 'not', 'a', 'plan', 'which', 'bring', '\n', 'any', 'charm', 'to', 'her', 'fancy', 'though', 'it', 'be', 'a', 'removal', 'from', '\n', 'the', 'vicinity', 'of', 'Norland', 'beyond', 'her', 'wish', 'she', 'make', '\n', 'no', 'attempt', 'to', 'dissuade', 'her', 'mother', 'from', 'send', 'a', 'letter', '\n', 'of', 'acquiescence', '\n\n\n\n', 'chapter', '5', '\n\n\n', 'no', 'soon', 'be', 'her', 'answer', 'dispatch', 'than', 'Mrs', 'Dashwood', '\n', 'indulge', 'herself', 'in', 'the', 'pleasure', 'of', 'announce', 'to', 'her', '\n', 'soninlaw', 'and', 'his', 'wife', 'that', 'she', 'be', 'provide', 'with', 'a', 'house', '\n', 'and', 'should', 'incommode', 'they', 'no', 'long', 'than', 'till', 'every', 'thing', 'be', '\n', 'ready', 'for', 'she', 'inhabit', 'it', ' ', 'they', 'hear', 'she', 'with', 'surprise', '\n', 'Mrs', 'John', 'Dashwood', 'say', 'nothing', 'but', 'her', 'husband', 'civilly', '\n', 'hope', 'that', 'she', 'would', 'not', 'be', 'settle', 'far', 'from', 'Norland', '\n', 'she', 'have', 'great', 'satisfaction', 'in', 'reply', 'that', 'she', 'be', 'go', '\n', 'into', 'DevonshireEdward', 'turn', 'hastily', 'towards', 'she', '\n', 'on', 'hear', 'this', 'and', 'in', 'a', 'voice', 'of', 'surprise', 'and', 'concern', '\n', 'which', 'require', 'no', 'explanation', 'to', 'her', 'repeat', '\n', 'Devonshire', 'be', 'you', 'indeed', 'go', 'there', ' ', 'so', 'far', 'from', 'hence', '\n', 'and', 'to', 'what', 'part', 'of', 'it', ' ', 'she', 'explain', 'the', 'situation', '\n', 'it', 'be', 'within', 'four', 'mile', 'northward', 'of', 'Exeter', '\n\n', 'it', 'be', 'but', 'a', 'cottage', 'she', 'continue', 'but', 'I', 'hope', '\n', 'to', 'see', 'many', 'of', 'my', 'friend', 'in', 'it', ' ', 'a', 'room', 'or', 'two', 'can', '\n', 'easily', 'be', 'add', 'and', 'if', 'my', 'friend', 'find', 'no', 'difficulty', '\n', 'in', 'travel', 'so', 'far', 'to', 'see', 'I', 'I', 'be', 'sure', 'I', 'will', 'find', '\n', 'none', 'in', 'accommodate', 'they', '\n\n', 'she', 'conclude', 'with', 'a', 'very', 'kind', 'invitation', 'to', '\n', 'Mr', 'and', 'Mrs', 'John', 'Dashwood', 'to', 'visit', 'she', 'at', 'Barton', '\n', 'and', 'to', 'Edward', 'she', 'give', 'one', 'with', 'still', 'great', 'affection', '\n', 'though', 'her', 'late', 'conversation', 'with', 'her', 'daughterinlaw', 'have', '\n', 'make', 'her', 'resolve', 'on', 'remain', 'at', 'Norland', 'no', 'long', 'than', '\n', 'be', 'unavoidable', 'it', 'have', 'not', 'produce', 'the', 'small', 'effect', '\n', 'on', 'she', 'in', 'that', 'point', 'to', 'which', 'it', 'principally', 'tend', '\n', 'to', 'separate', 'Edward', 'and', 'Elinor', 'be', 'as', 'far', 'from', 'be', 'her', '\n', 'object', 'as', 'ever', 'and', 'she', 'wish', 'to', 'show', 'Mrs', 'John', 'Dashwood', '\n', 'by', 'this', 'point', 'invitation', 'to', 'her', 'brother', 'how', 'totally', 'she', '\n', 'disregard', 'her', 'disapprobation', 'of', 'the', 'match', '\n\n', 'Mr', 'John', 'Dashwood', 'tell', 'his', 'mother', 'again', 'and', 'again', '\n', 'how', 'exceedingly', 'sorry', 'he', 'be', 'that', 'she', 'have', 'take', 'a', 'house', 'at', '\n', 'such', 'a', 'distance', 'from', 'Norland', 'as', 'to', 'prevent', 'his', 'being', 'of', 'any', '\n', 'service', 'to', 'she', 'in', 'remove', 'her', 'furniture', ' ', 'he', 'really', 'felt', '\n', 'conscientiously', 'vex', 'on', 'the', 'occasion', 'for', 'the', 'very', 'exertion', '\n', 'to', 'which', 'he', 'have', 'limit', 'the', 'performance', 'of', 'his', 'promise', 'to', '\n', 'his', 'father', 'be', 'by', 'this', 'arrangement', 'render', 'impracticable', '\n', 'the', 'furniture', 'be', 'all', 'send', 'around', 'by', 'water', ' ', 'it', 'chiefly', '\n', 'consist', 'of', 'household', 'linen', 'plate', 'china', 'and', 'book', '\n', 'with', 'a', 'handsome', 'pianoforte', 'of', 'Mariannes', ' ', 'Mrs', 'John', '\n', 'Dashwood', 'see', 'the', 'package', 'depart', 'with', 'a', 'sigh', 'she', 'could', '\n', 'not', 'help', 'feel', 'it', 'hard', 'that', 'as', 'Mrs', 'Dashwoods', 'income', '\n', 'would', 'be', 'so', 'trifle', 'in', 'comparison', 'with', 'their', 'own', '\n', 'she', 'should', 'have', 'any', 'handsome', 'article', 'of', 'furniture', '\n\n', 'Mrs', 'Dashwood', 'take', 'the', 'house', 'for', 'a', 'twelvemonth', 'it', 'be', '\n', 'ready', 'furnish', 'and', 'she', 'might', 'have', 'immediate', 'possession', '\n', 'no', 'difficulty', 'arise', 'on', 'either', 'side', 'in', 'the', 'agreement', 'and', 'she', '\n', 'wait', 'only', 'for', 'the', 'disposal', 'of', 'her', 'effect', 'at', 'Norland', '\n', 'and', 'to', 'determine', 'her', 'future', 'household', 'before', 'she', 'set', '\n', 'off', 'for', 'the', 'west', 'and', 'this', 'as', 'she', 'be', 'exceedingly', 'rapid', '\n', 'in', 'the', 'performance', 'of', 'everything', 'that', 'interest', 'she', '\n', 'be', 'soon', 'donethe', 'horse', 'which', 'be', 'leave', 'she', 'by', 'her', 'husband', '\n', 'have', 'be', 'sell', 'soon', 'after', 'his', 'death', 'and', 'an', 'opportunity', '\n', 'now', 'offer', 'of', 'dispose', 'of', 'her', 'carriage', 'she', 'agree', '\n', 'to', 'sell', 'that', 'likewise', 'at', 'the', 'earnest', 'advice', 'of', 'her', '\n', 'eld', 'daughter', ' ', 'for', 'the', 'comfort', 'of', 'her', 'child', 'have', 'she', '\n', 'consult', 'only', 'her', 'own', 'wish', 'she', 'would', 'have', 'keep', 'it', '\n', 'but', 'the', 'discretion', 'of', 'Elinor', 'prevail', ' ', 'her', 'wisdom', '\n', 'too', 'limit', 'the', 'number', 'of', 'their', 'servant', 'to', 'three', '\n', 'two', 'maid', 'and', 'a', 'man', 'with', 'whom', 'they', 'be', 'speedily', 'provide', '\n', 'from', 'amongst', 'those', 'who', 'have', 'form', 'their', 'establishment', '\n', 'at', 'Norland', '\n\n', 'the', 'man', 'and', 'one', 'of', 'the', 'maid', 'be', 'send', 'off', 'immediately', '\n', 'into', 'Devonshire', 'to', 'prepare', 'the', 'house', 'for', 'their', 'mistresss', '\n', 'arrival', 'for', 'as', 'Lady', 'Middleton', 'be', 'entirely', 'unknown', '\n', 'to', 'Mrs', 'Dashwood', 'she', 'prefer', 'go', 'directly', 'to', 'the', '\n', 'cottage', 'to', 'be', 'a', 'visitor', 'at', 'Barton', 'Park', 'and', 'she', 'rely', '\n', 'so', 'undoubtingly', 'on', 'Sir', 'Johns', 'description', 'of', 'the', 'house', '\n', 'as', 'to', 'feel', 'no', 'curiosity', 'to', 'examine', 'it', 'herself', 'till', 'she', '\n', 'enter', 'it', 'as', 'her', 'own', ' ', 'her', 'eagerness', 'to', 'be', 'go', 'from', 'Norland', '\n', 'be', 'preserve', 'from', 'diminution', 'by', 'the', 'evident', 'satisfaction', '\n', 'of', 'her', 'daughterinlaw', 'in', 'the', 'prospect', 'of', 'her', 'removal', '\n', 'a', 'satisfaction', 'which', 'be', 'but', 'feebly', 'attempt', 'to', 'be', 'conceal', '\n', 'under', 'a', 'cold', 'invitation', 'to', 'she', 'to', 'defer', 'her', 'departure', '\n', 'now', 'be', 'the', 'time', 'when', 'her', 'soninlaw', 'promise', 'to', 'his', '\n', 'father', 'might', 'with', 'particular', 'propriety', 'be', 'fulfil', '\n', 'since', 'he', 'have', 'neglect', 'to', 'do', 'it', 'on', 'first', 'come', 'to', '\n', 'the', 'estate', 'their', 'quit', 'his', 'house', 'might', 'be', 'look', '\n', 'on', 'as', 'the', 'most', 'suitable', 'period', 'for', 'its', 'accomplishment', '\n', 'but', 'Mrs', 'Dashwood', 'begin', 'shortly', 'to', 'give', 'over', 'every', '\n', 'hope', 'of', 'the', 'kind', 'and', 'to', 'be', 'convince', 'from', 'the', 'general', '\n', 'drift', 'of', 'his', 'discourse', 'that', 'his', 'assistance', 'extend', 'no', '\n', 'far', 'than', 'their', 'maintenance', 'for', 'six', 'month', 'at', 'Norland', '\n', 'he', 'so', 'frequently', 'talk', 'of', 'the', 'increase', 'expense', '\n', 'of', 'housekeeping', 'and', 'of', 'the', 'perpetual', 'demand', 'upon', 'his', 'purse', '\n', 'which', 'a', 'man', 'of', 'any', 'consequence', 'in', 'the', 'world', 'be', 'beyond', '\n', 'calculation', 'expose', 'to', 'that', 'he', 'seem', 'rather', 'to', 'stand', '\n', 'in', 'need', 'of', 'more', 'money', 'himself', 'than', 'to', 'have', 'any', 'design', 'of', '\n', 'give', 'money', 'away', '\n\n', 'in', 'a', 'very', 'few', 'week', 'from', 'the', 'day', 'which', 'bring', 'Sir', '\n', 'John', 'Middletons', 'first', 'letter', 'to', 'Norland', 'every', 'thing', 'be', '\n', 'so', 'far', 'settle', 'in', 'their', 'future', 'abode', 'as', 'to', 'enable', '\n', 'Mrs', 'Dashwood', 'and', 'her', 'daughter', 'to', 'begin', 'their', 'journey', '\n\n', 'many', 'be', 'the', 'tear', 'shed', 'by', 'they', 'in', 'their', 'last', '\n', 'adieus', 'to', 'a', 'place', 'so', 'much', 'beloved', ' ', 'dear', 'dear', 'Norland', '\n', 'say', 'Marianne', 'as', 'she', 'wander', 'alone', 'before', 'the', 'house', '\n', 'on', 'the', 'last', 'evening', 'of', 'their', 'be', 'there', 'when', 'shall', 'I', 'cease', '\n', 'to', 'regret', 'youwhen', 'learn', 'to', 'feel', 'a', 'home', 'elsewhereOh', '\n', 'happy', 'house', 'could', 'you', 'know', 'what', 'I', 'suffer', 'in', 'now', 'view', '\n', 'you', 'from', 'this', 'spot', 'from', 'whence', 'perhaps', 'I', 'may', 'view', '\n', 'you', 'no', 'moreand', 'you', 'ye', 'wellknown', 'treesbut', 'you', '\n', 'will', 'continue', 'the', 'sameNo', 'leaf', 'will', 'decay', 'because', 'we', '\n', 'be', 'remove', 'nor', 'any', 'branch', 'become', 'motionless', 'although', 'we', '\n', 'can', 'observe', 'you', 'no', 'longerno', 'you', 'will', 'continue', 'the', 'same', '\n', 'unconscious', 'of', 'the', 'pleasure', 'or', 'the', 'regret', 'you', 'occasion', '\n', 'and', 'insensible', 'of', 'any', 'change', 'in', 'those', 'who', 'walk', 'under', 'your', '\n', 'shadebut', 'who', 'will', 'remain', 'to', 'enjoy', 'you', '\n\n\n\n', 'chapter', '6', '\n\n\n', 'the', 'first', 'part', 'of', 'their', 'journey', 'be', 'perform', 'in', 'too', '\n', 'melancholy', 'a', 'disposition', 'to', 'be', 'otherwise', 'than', 'tedious', '\n', 'and', 'unpleasant', ' ', 'but', 'as', 'they', 'draw', 'towards', 'the', 'end', 'of', 'it', '\n', 'their', 'interest', 'in', 'the', 'appearance', 'of', 'a', 'country', 'which', 'they', '\n', 'be', 'to', 'inhabit', 'overcame', 'their', 'dejection', 'and', 'a', 'view', 'of', '\n', 'Barton', 'Valley', 'as', 'they', 'enter', 'it', 'give', 'they', 'cheerfulness', '\n', 'it', 'be', 'a', 'pleasant', 'fertile', 'spot', 'well', 'wooded', 'and', 'rich', '\n', 'in', 'pasture', ' ', 'after', 'wind', 'along', 'it', 'for', 'more', 'than', 'a', 'mile', '\n', 'they', 'reach', 'their', 'own', 'house', ' ', 'a', 'small', 'green', 'court', 'be', '\n', 'the', 'whole', 'of', 'its', 'demesne', 'in', 'front', 'and', 'a', 'neat', 'wicket', 'gate', '\n', 'admit', 'they', 'into', 'it', '\n\n', 'as', 'a', 'house', 'Barton', 'Cottage', 'though', 'small', 'be', 'comfortable', '\n', 'and', 'compact', 'but', 'as', 'a', 'cottage', 'it', 'be', 'defective', 'for', 'the', '\n', 'building', 'be', 'regular', 'the', 'roof', 'be', 'tile', 'the', 'window', '\n', 'shutter', 'be', 'not', 'paint', 'green', 'nor', 'be', 'the', 'wall', 'cover', '\n', 'with', 'honeysuckle', ' ', 'a', 'narrow', 'passage', 'lead', 'directly', 'through', '\n', 'the', 'house', 'into', 'the', 'garden', 'behind', ' ', 'on', 'each', 'side', 'of', 'the', '\n', 'entrance', 'be', 'a', 'sitting', 'room', 'about', 'sixteen', 'foot', 'square', '\n', 'and', 'beyond', 'they', 'be', 'the', 'office', 'and', 'the', 'stair', '\n', 'four', 'bedroom', 'and', 'two', 'garret', 'form', 'the', 'rest', 'of', 'the', 'house', '\n', 'it', 'have', 'not', 'be', 'build', 'many', 'year', 'and', 'be', 'in', 'good', 'repair', '\n', 'in', 'comparison', 'of', 'Norland', 'it', 'be', 'poor', 'and', 'small', 'indeedbut', '\n', 'the', 'tear', 'which', 'recollection', 'call', 'forth', 'as', 'they', 'enter', '\n', 'the', 'house', 'be', 'soon', 'dry', 'away', ' ', 'they', 'be', 'cheer', '\n', 'by', 'the', 'joy', 'of', 'the', 'servant', 'on', 'their', 'arrival', 'and', 'each', '\n', 'for', 'the', 'sake', 'of', 'the', 'other', 'resolve', 'to', 'appear', 'happy', '\n', 'it', 'be', 'very', 'early', 'in', 'September', 'the', 'season', 'be', 'fine', '\n', 'and', 'from', 'first', 'see', 'the', 'place', 'under', 'the', 'advantage', '\n', 'of', 'good', 'weather', 'they', 'receive', 'an', 'impression', 'in', 'its', '\n', 'favour', 'which', 'be', 'of', 'material', 'service', 'in', 'recommend', '\n', 'it', 'to', 'their', 'last', 'approbation', '\n\n', 'the', 'situation', 'of', 'the', 'house', 'be', 'good', ' ', 'high', 'hill', 'rise', '\n', 'immediately', 'behind', 'and', 'at', 'no', 'great', 'distance', 'on', 'each', 'side', '\n', 'some', 'of', 'which', 'be', 'open', 'down', 'the', 'other', 'cultivate', 'and', 'woody', '\n', 'the', 'village', 'of', 'Barton', 'be', 'chiefly', 'on', 'one', 'of', 'these', 'hill', '\n', 'and', 'form', 'a', 'pleasant', 'view', 'from', 'the', 'cottage', 'window', '\n', 'the', 'prospect', 'in', 'front', 'be', 'more', 'extensive', 'it', 'command', 'the', '\n', 'whole', 'of', 'the', 'valley', 'and', 'reach', 'into', 'the', 'country', 'beyond', '\n', 'the', 'hill', 'which', 'surround', 'the', 'cottage', 'terminate', '\n', 'the', 'valley', 'in', 'that', 'direction', 'under', 'another', 'name', '\n', 'and', 'in', 'another', 'course', 'it', 'branch', 'out', 'again', 'between', 'two', '\n', 'of', 'the', 'steep', 'of', 'they', '\n\n', 'with', 'the', 'size', 'and', 'furniture', 'of', 'the', 'house', 'Mrs', 'Dashwood', '\n', 'be', 'upon', 'the', 'whole', 'well', 'satisfied', 'for', 'though', 'her', 'former', '\n', 'style', 'of', 'life', 'render', 'many', 'addition', 'to', 'the', 'latter', '\n', 'indispensable', 'yet', 'to', 'add', 'and', 'improve', 'be', 'a', 'delight', 'to', 'she', '\n', 'and', 'she', 'have', 'at', 'this', 'time', 'ready', 'money', 'enough', 'to', 'supply', 'all', '\n', 'that', 'be', 'want', 'of', 'great', 'elegance', 'to', 'the', 'apartment', '\n', 'as', 'for', 'the', 'house', 'itself', 'to', 'be', 'sure', 'say', 'she', 'it', 'be', '\n', 'too', 'small', 'for', 'our', 'family', 'but', 'we', 'will', 'make', 'ourselves', '\n', 'tolerably', 'comfortable', 'for', 'the', 'present', 'as', 'it', 'be', 'too', 'late', '\n', 'in', 'the', 'year', 'for', 'improvement', ' ', 'perhaps', 'in', 'the', 'spring', '\n', 'if', 'I', 'have', 'plenty', 'of', 'money', 'as', 'I', 'dare', 'say', 'I', 'shall', 'we', 'may', '\n', 'think', 'about', 'build', ' ', 'these', 'parlor', 'be', 'both', 'too', 'small', '\n', 'for', 'such', 'party', 'of', 'our', 'friend', 'as', 'I', 'hope', 'to', 'see', 'often', '\n', 'collect', 'here', 'and', 'I', 'have', 'some', 'thought', 'of', 'throw', 'the', '\n', 'passage', 'into', 'one', 'of', 'they', 'with', 'perhaps', 'a', 'part', 'of', 'the', 'other', '\n', 'and', 'so', 'leave', 'the', 'remainder', 'of', 'that', 'other', 'for', 'an', 'entrance', '\n', 'this', 'with', 'a', 'new', 'drawing', 'room', 'which', 'may', 'be', 'easily', 'add', '\n', 'and', 'a', 'bedchamber', 'and', 'garret', 'above', 'will', 'make', 'it', 'a', 'very', 'snug', '\n', 'little', 'cottage', ' ', 'I', 'could', 'wish', 'the', 'stair', 'be', 'handsome', '\n', 'but', 'one', 'must', 'not', 'expect', 'every', 'thing', 'though', 'I', 'suppose', 'it', '\n', 'would', 'be', 'no', 'difficult', 'matter', 'to', 'widen', 'they', ' ', 'I', 'shall', 'see', '\n', 'how', 'much', 'I', 'be', 'beforehand', 'with', 'the', 'world', 'in', 'the', 'spring', '\n', 'and', 'we', 'will', 'plan', 'our', 'improvement', 'accordingly', '\n\n', 'in', 'the', 'mean', 'time', 'till', 'all', 'these', 'alteration', 'could', '\n', 'be', 'make', 'from', 'the', 'saving', 'of', 'an', 'income', 'of', 'five', 'hundred', '\n', 'ayear', 'by', 'a', 'woman', 'who', 'never', 'save', 'in', 'her', 'life', 'they', 'be', '\n', 'wise', 'enough', 'to', 'be', 'content', 'with', 'the', 'house', 'as', 'it', 'be', '\n', 'and', 'each', 'of', 'they', 'be', 'busy', 'in', 'arrange', 'their', 'particular', '\n', 'concern', 'and', 'endeavor', 'by', 'place', 'around', 'they', 'book', '\n', 'and', 'other', 'possession', 'to', 'form', 'themselves', 'a', 'home', '\n', 'Mariannes', 'pianoforte', 'be', 'unpacked', 'and', 'properly', 'dispose', 'of', '\n', 'and', 'Elinors', 'drawing', 'be', 'affix', 'to', 'the', 'wall', 'of', 'their', '\n', 'sitting', 'room', '\n\n', 'in', 'such', 'employment', 'as', 'these', 'they', 'be', 'interrupt', '\n', 'soon', 'after', 'breakfast', 'the', 'next', 'day', 'by', 'the', 'entrance', 'of', '\n', 'their', 'landlord', 'who', 'call', 'to', 'welcome', 'they', 'to', 'Barton', '\n', 'and', 'to', 'offer', 'they', 'every', 'accommodation', 'from', 'his', 'own', 'house', '\n', 'and', 'garden', 'in', 'which', 'theirs', 'might', 'at', 'present', 'be', 'deficient', '\n', 'Sir', 'John', 'Middleton', 'be', 'a', 'good', 'look', 'man', 'about', 'forty', '\n', 'he', 'have', 'formerly', 'visit', 'at', 'Stanhill', 'but', 'it', 'be', 'too', 'long', '\n', 'for', 'his', 'young', 'cousin', 'to', 'remember', 'he', ' ', 'his', 'countenance', '\n', 'be', 'thoroughly', 'goodhumoure', 'and', 'his', 'manner', 'be', '\n', 'as', 'friendly', 'as', 'the', 'style', 'of', 'his', 'letter', ' ', 'their', 'arrival', '\n', 'seem', 'to', 'afford', 'he', 'real', 'satisfaction', 'and', 'their', 'comfort', '\n', 'to', 'be', 'an', 'object', 'of', 'real', 'solicitude', 'to', 'he', ' ', 'he', 'say', 'much', '\n', 'of', 'his', 'earnest', 'desire', 'of', 'their', 'living', 'in', 'the', 'most', 'sociable', '\n', 'term', 'with', 'his', 'family', 'and', 'press', 'they', 'so', 'cordially', '\n', 'to', 'dine', 'at', 'Barton', 'Park', 'every', 'day', 'till', 'they', 'be', 'well', '\n', 'settle', 'at', 'home', 'that', 'though', 'his', 'entreaty', 'be', 'carry', '\n', 'to', 'a', 'point', 'of', 'perseverance', 'beyond', 'civility', 'they', 'could', '\n', 'not', 'give', 'offence', ' ', 'his', 'kindness', 'be', 'not', 'confine', 'to', 'word', '\n', 'for', 'within', 'an', 'hour', 'after', 'he', 'leave', 'they', 'a', 'large', 'basket', '\n', 'full', 'of', 'garden', 'stuff', 'and', 'fruit', 'arrive', 'from', 'the', 'park', '\n', 'which', 'be', 'follow', 'before', 'the', 'end', 'of', 'the', 'day', 'by', 'a', 'present', '\n', 'of', 'game', ' ', 'he', 'insist', 'moreover', 'on', 'convey', 'all', 'their', '\n', 'letter', 'to', 'and', 'from', 'the', 'post', 'for', 'they', 'and', 'would', 'not', 'be', '\n', 'deny', 'the', 'satisfaction', 'of', 'send', 'they', 'his', 'newspaper', '\n', 'every', 'day', '\n\n', 'Lady', 'Middleton', 'have', 'send', 'a', 'very', 'civil', 'message', 'by', 'he', '\n', 'denote', 'her', 'intention', 'of', 'wait', 'on', 'Mrs', 'Dashwood', 'as', 'soon', 'as', '\n', 'she', 'could', 'be', 'assure', 'that', 'her', 'visit', 'would', 'be', 'no', 'inconvenience', '\n', 'and', 'as', 'this', 'message', 'be', 'answer', 'by', 'an', 'invitation', '\n', 'equally', 'polite', 'her', 'ladyship', 'be', 'introduce', 'to', 'they', 'the', 'next', 'day', '\n\n', 'they', 'be', 'of', 'course', 'very', 'anxious', 'to', 'see', 'a', 'person', 'on', '\n', 'whom', 'so', 'much', 'of', 'their', 'comfort', 'at', 'Barton', 'must', 'depend', 'and', 'the', '\n', 'elegance', 'of', 'her', 'appearance', 'be', 'favourable', 'to', 'their', 'wish', '\n', 'Lady', 'Middleton', 'be', 'not', 'more', 'than', 'six', 'or', 'seven', 'and', 'twenty', '\n', 'her', 'face', 'be', 'handsome', 'her', 'figure', 'tall', 'and', 'striking', '\n', 'and', 'her', 'address', 'graceful', ' ', 'her', 'manner', 'have', 'all', 'the', 'elegance', '\n', 'which', 'her', 'husband', 'want', ' ', 'but', 'they', 'would', 'have', 'be', '\n', 'improve', 'by', 'some', 'share', 'of', 'his', 'frankness', 'and', 'warmth', '\n', 'and', 'her', 'visit', 'be', 'long', 'enough', 'to', 'detract', 'something', 'from', '\n', 'their', 'first', 'admiration', 'by', 'shew', 'that', 'though', 'perfectly', '\n', 'wellbre', 'she', 'be', 'reserve', 'cold', 'and', 'have', 'nothing', 'to', 'say', '\n', 'for', 'herself', 'beyond', 'the', 'most', 'commonplace', 'inquiry', 'or', 'remark', '\n\n', 'Conversation', 'however', 'be', 'not', 'want', 'for', 'Sir', 'John', '\n', 'be', 'very', 'chatty', 'and', 'Lady', 'Middleton', 'have', 'take', 'the', 'wise', '\n', 'precaution', 'of', 'bring', 'with', 'she', 'their', 'eld', 'child', 'a', 'fine', '\n', 'little', 'boy', 'about', 'six', 'year', 'old', 'by', 'which', 'mean', 'there', 'be', '\n', 'one', 'subject', 'always', 'to', 'be', 'recur', 'to', 'by', 'the', 'lady', 'in', 'case', '\n', 'of', 'extremity', 'for', 'they', 'have', 'to', 'enquire', 'his', 'name', 'and', 'age', '\n', 'admire', 'his', 'beauty', 'and', 'ask', 'he', 'question', 'which', 'his', 'mother', '\n', 'answer', 'for', 'he', 'while', 'he', 'hang', 'about', 'she', 'and', 'hold', '\n', 'down', 'his', 'head', 'to', 'the', 'great', 'surprise', 'of', 'her', 'ladyship', '\n', 'who', 'wonder', 'at', 'his', 'be', 'so', 'shy', 'before', 'company', 'as', 'he', '\n', 'could', 'make', 'noise', 'enough', 'at', 'home', ' ', 'on', 'every', 'formal', 'visit', '\n', 'a', 'child', 'ought', 'to', 'be', 'of', 'the', 'party', 'by', 'way', 'of', 'provision', '\n', 'for', 'discourse', ' ', 'in', 'the', 'present', 'case', 'it', 'take', 'up', 'ten', 'minute', '\n', 'to', 'determine', 'whether', 'the', 'boy', 'be', 'most', 'like', 'his', 'father', '\n', 'or', 'mother', 'and', 'in', 'what', 'particular', 'he', 'resemble', 'either', '\n', 'for', 'of', 'course', 'every', 'body', 'differ', 'and', 'every', 'body', 'be', '\n', 'astonish', 'at', 'the', 'opinion', 'of', 'the', 'other', '\n\n', 'an', 'opportunity', 'be', 'soon', 'to', 'be', 'give', 'to', 'the', 'Dashwoods', '\n', 'of', 'debate', 'on', 'the', 'rest', 'of', 'the', 'child', 'as', 'Sir', 'John', '\n', 'would', 'not', 'leave', 'the', 'house', 'without', 'secure', 'their', 'promise', '\n', 'of', 'dining', 'at', 'the', 'park', 'the', 'next', 'day', '\n\n\n\n', 'chapter', '7', '\n\n\n', 'Barton', 'Park', 'be', 'about', 'half', 'a', 'mile', 'from', 'the', 'cottage', '\n', 'the', 'lady', 'have', 'pass', 'near', 'it', 'in', 'their', 'way', 'along', 'the', 'valley', '\n', 'but', 'it', 'be', 'screen', 'from', 'their', 'view', 'at', 'home', 'by', 'the', '\n', 'projection', 'of', 'a', 'hill', ' ', 'the', 'house', 'be', 'large', 'and', 'handsome', '\n', 'and', 'the', 'Middletons', 'live', 'in', 'a', 'style', 'of', 'equal', 'hospitality', '\n', 'and', 'elegance', ' ', 'the', 'former', 'be', 'for', 'Sir', 'Johns', 'gratification', '\n', 'the', 'latter', 'for', 'that', 'of', 'his', 'lady', ' ', 'they', 'be', 'scarcely', '\n', 'ever', 'without', 'some', 'friend', 'stay', 'with', 'they', 'in', 'the', 'house', '\n', 'and', 'they', 'keep', 'more', 'company', 'of', 'every', 'kind', 'than', 'any', 'other', '\n', 'family', 'in', 'the', 'neighbourhood', ' ', 'it', 'be', 'necessary', 'to', 'the', '\n', 'happiness', 'of', 'both', 'for', 'however', 'dissimilar', 'in', 'temper', '\n', 'and', 'outward', 'behaviour', 'they', 'strongly', 'resemble', 'each', 'other', '\n', 'in', 'that', 'total', 'want', 'of', 'talent', 'and', 'taste', 'which', 'confine', '\n', 'their', 'employment', 'unconnected', 'with', 'such', 'as', 'society', 'produce', '\n', 'within', 'a', 'very', 'narrow', 'compass', ' ', 'Sir', 'John', 'be', 'a', 'sportsman', '\n', 'Lady', 'Middleton', 'a', 'mother', ' ', 'he', 'hunt', 'and', 'shoot', 'and', 'she', '\n', 'humour', 'her', 'child', 'and', 'these', 'be', 'their', 'only', 'resource', '\n', 'Lady', 'Middleton', 'have', 'the', 'advantage', 'of', 'be', 'able', 'to', 'spoil', 'her', '\n', 'child', 'all', 'the', 'year', 'round', 'while', 'Sir', 'Johns', 'independent', '\n', 'employment', 'be', 'in', 'existence', 'only', 'half', 'the', 'time', '\n', 'Continual', 'engagement', 'at', 'home', 'and', 'abroad', 'however', '\n', 'supply', 'all', 'the', 'deficiency', 'of', 'nature', 'and', 'education', '\n', 'support', 'the', 'good', 'spirit', 'of', 'Sir', 'John', 'and', 'give', 'exercise', '\n', 'to', 'the', 'good', 'breeding', 'of', 'his', 'wife', '\n\n', 'Lady', 'Middleton', 'pique', 'herself', 'upon', 'the', 'elegance', '\n', 'of', 'her', 'table', 'and', 'of', 'all', 'her', 'domestic', 'arrangement', '\n', 'and', 'from', 'this', 'kind', 'of', 'vanity', 'be', 'her', 'great', 'enjoyment', '\n', 'in', 'any', 'of', 'their', 'party', ' ', 'but', 'Sir', 'Johns', 'satisfaction', '\n', 'in', 'society', 'be', 'much', 'more', 'real', 'he', 'delight', 'in', 'collect', '\n', 'about', 'he', 'more', 'young', 'people', 'than', 'his', 'house', 'would', 'hold', '\n', 'and', 'the', 'noisy', 'they', 'be', 'the', 'well', 'be', 'he', 'please', '\n', 'he', 'be', 'a', 'blessing', 'to', 'all', 'the', 'juvenile', 'part', 'of', 'the', 'neighbourhood', '\n', 'for', 'in', 'summer', 'he', 'be', 'for', 'ever', 'form', 'party', 'to', 'eat', 'cold', '\n', 'ham', 'and', 'chicken', 'out', 'of', 'door', 'and', 'in', 'winter', 'his', 'private', '\n', 'ball', 'be', 'numerous', 'enough', 'for', 'any', 'young', 'lady', 'who', 'be', 'not', '\n', 'suffer', 'under', 'the', 'unsatiable', 'appetite', 'of', 'fifteen', '\n\n', 'the', 'arrival', 'of', 'a', 'new', 'family', 'in', 'the', 'country', 'be', 'always', '\n', 'a', 'matter', 'of', 'joy', 'to', 'he', 'and', 'in', 'every', 'point', 'of', 'view', 'he', 'be', '\n', 'charm', 'with', 'the', 'inhabitant', 'he', 'have', 'now', 'procure', 'for', 'his', '\n', 'cottage', 'at', 'Barton', ' ', 'the', 'Miss', 'Dashwoods', 'be', 'young', 'pretty', '\n', 'and', 'unaffected', ' ', 'it', 'be', 'enough', 'to', 'secure', 'his', 'good', 'opinion', '\n', 'for', 'to', 'be', 'unaffected', 'be', 'all', 'that', 'a', 'pretty', 'girl', 'could', '\n', 'want', 'to', 'make', 'her', 'mind', 'as', 'captivate', 'as', 'her', 'person', '\n', 'the', 'friendliness', 'of', 'his', 'disposition', 'make', 'he', 'happy', 'in', '\n', 'accommodate', 'those', 'whose', 'situation', 'might', 'be', 'consider', '\n', 'in', 'comparison', 'with', 'the', 'past', 'as', 'unfortunate', ' ', 'in', 'show', '\n', 'kindness', 'to', 'his', 'cousin', 'therefore', 'he', 'have', 'the', 'real', 'satisfaction', '\n', 'of', 'a', 'good', 'heart', 'and', 'in', 'settle', 'a', 'family', 'of', 'female', 'only', '\n', 'in', 'his', 'cottage', 'he', 'have', 'all', 'the', 'satisfaction', 'of', 'a', 'sportsman', '\n', 'for', 'a', 'sportsman', 'though', 'he', 'esteem', 'only', 'those', 'of', 'his', 'sex', 'who', '\n', 'be', 'sportsman', 'likewise', 'be', 'not', 'often', 'desirous', 'of', 'encourage', '\n', 'their', 'taste', 'by', 'admit', 'they', 'to', 'a', 'residence', 'within', 'his', 'own', '\n', 'manor', '\n\n', 'Mrs', 'Dashwood', 'and', 'her', 'daughter', 'be', 'meet', 'at', 'the', 'door', '\n', 'of', 'the', 'house', 'by', 'Sir', 'John', 'who', 'welcome', 'they', 'to', 'Barton', '\n', 'Park', 'with', 'unaffected', 'sincerity', 'and', 'as', 'he', 'attend', 'they', '\n', 'to', 'the', 'drawing', 'room', 'repeat', 'to', 'the', 'young', 'lady', 'the', 'concern', '\n', 'which', 'the', 'same', 'subject', 'have', 'draw', 'from', 'he', 'the', 'day', 'before', '\n', 'at', 'be', 'unable', 'to', 'get', 'any', 'smart', 'young', 'man', 'to', 'meet', 'they', '\n', 'they', 'would', 'see', 'he', 'say', 'only', 'one', 'gentleman', 'there', '\n', 'besides', 'himself', 'a', 'particular', 'friend', 'who', 'be', 'stay', 'at', '\n', 'the', 'park', 'but', 'who', 'be', 'neither', 'very', 'young', 'nor', 'very', 'gay', '\n', 'he', 'hope', 'they', 'would', 'all', 'excuse', 'the', 'smallness', 'of', 'the', 'party', '\n', 'and', 'could', 'assure', 'they', 'it', 'should', 'never', 'happen', 'so', 'again', '\n', 'he', 'have', 'be', 'to', 'several', 'family', 'that', 'morning', 'in', 'hope', '\n', 'of', 'procure', 'some', 'addition', 'to', 'their', 'number', 'but', 'it', '\n', 'be', 'moonlight', 'and', 'every', 'body', 'be', 'full', 'of', 'engagement', '\n', 'Luckily', 'Lady', 'Middletons', 'mother', 'have', 'arrive', 'at', 'Barton', '\n', 'within', 'the', 'last', 'hour', 'and', 'as', 'she', 'be', 'a', 'very', 'cheerful', '\n', 'agreeable', 'woman', 'he', 'hope', 'the', 'young', 'lady', 'would', 'not', 'find', '\n', 'it', 'so', 'very', 'dull', 'as', 'they', 'might', 'imagine', ' ', 'the', 'young', 'lady', '\n', 'as', 'well', 'as', 'their', 'mother', 'be', 'perfectly', 'satisfied', 'with', '\n', 'have', 'two', 'entire', 'stranger', 'of', 'the', 'party', 'and', 'wish', 'for', '\n', 'no', 'more', '\n\n', 'Mrs', 'Jennings', 'Lady', 'Middletons', 'mother', 'be', 'a', '\n', 'goodhumoure', 'merry', 'fat', 'elderly', 'woman', 'who', 'talk', 'a', '\n', 'great', 'deal', 'seem', 'very', 'happy', 'and', 'rather', 'vulgar', ' ', 'she', 'be', 'full', '\n', 'of', 'joke', 'and', 'laughter', 'and', 'before', 'dinner', 'be', 'over', 'have', 'say', '\n', 'many', 'witty', 'thing', 'on', 'the', 'subject', 'of', 'lover', 'and', 'husband', '\n', 'hope', 'they', 'have', 'not', 'leave', 'their', 'heart', 'behind', 'they', 'in', 'Sussex', '\n', 'and', 'pretend', 'to', 'see', 'they', 'blush', 'whether', 'they', 'do', 'or', 'not', '\n', 'Marianne', 'be', 'vex', 'at', 'it', 'for', 'her', 'sister', 'sake', 'and', 'turn', '\n', 'her', 'eye', 'towards', 'Elinor', 'to', 'see', 'how', 'she', 'bear', 'these', 'attack', '\n', 'with', 'an', 'earnestness', 'which', 'give', 'Elinor', 'far', 'more', 'pain', 'than', '\n', 'could', 'arise', 'from', 'such', 'commonplace', 'raillery', 'as', 'Mrs', 'Jenningss', '\n\n', 'Colonel', 'Brandon', 'the', 'friend', 'of', 'Sir', 'John', 'seem', 'no', '\n', 'more', 'adapt', 'by', 'resemblance', 'of', 'manner', 'to', 'be', 'his', 'friend', '\n', 'than', 'Lady', 'Middleton', 'be', 'to', 'be', 'his', 'wife', 'or', 'Mrs', 'Jennings', '\n', 'to', 'be', 'Lady', 'Middletons', 'mother', ' ', 'he', 'be', 'silent', 'and', 'grave', '\n', 'his', 'appearance', 'however', 'be', 'not', 'unplease', 'in', 'spite', '\n', 'of', 'his', 'be', 'in', 'the', 'opinion', 'of', 'Marianne', 'and', 'Margaret', '\n', 'an', 'absolute', 'old', 'bachelor', 'for', 'he', 'be', 'on', 'the', 'wrong', 'side', '\n', 'of', 'five', 'and', 'thirty', 'but', 'though', 'his', 'face', 'be', 'not', 'handsome', '\n', 'his', 'countenance', 'be', 'sensible', 'and', 'his', 'address', 'be', '\n', 'particularly', 'gentlemanlike', '\n\n', 'there', 'be', 'nothing', 'in', 'any', 'of', 'the', 'party', 'which', 'could', '\n', 'recommend', 'they', 'as', 'companion', 'to', 'the', 'Dashwoods', 'but', 'the', 'cold', '\n', 'insipidity', 'of', 'Lady', 'Middleton', 'be', 'so', 'particularly', 'repulsive', '\n', 'that', 'in', 'comparison', 'of', 'it', 'the', 'gravity', 'of', 'Colonel', 'Brandon', '\n', 'and', 'even', 'the', 'boisterous', 'mirth', 'of', 'Sir', 'John', 'and', 'his', '\n', 'motherinlaw', 'be', 'interesting', ' ', 'Lady', 'Middleton', 'seem', '\n', 'to', 'be', 'rouse', 'to', 'enjoyment', 'only', 'by', 'the', 'entrance', 'of', 'her', '\n', 'four', 'noisy', 'child', 'after', 'dinner', 'who', 'pull', 'she', 'about', '\n', 'tear', 'her', 'clothe', 'and', 'put', 'an', 'end', 'to', 'every', 'kind', 'of', 'discourse', '\n', 'except', 'what', 'relate', 'to', 'themselves', '\n\n', 'in', 'the', 'evening', 'as', 'Marianne', 'be', 'discover', 'to', 'be', 'musical', '\n', 'she', 'be', 'invite', 'to', 'play', ' ', 'the', 'instrument', 'be', 'unlocked', '\n', 'every', 'body', 'prepare', 'to', 'be', 'charm', 'and', 'Marianne', '\n', 'who', 'sing', 'very', 'well', 'at', 'their', 'request', 'go', 'through', 'the', '\n', 'chief', 'of', 'the', 'song', 'which', 'Lady', 'Middleton', 'have', 'bring', 'into', '\n', 'the', 'family', 'on', 'her', 'marriage', 'and', 'which', 'perhaps', 'have', 'lie', '\n', 'ever', 'since', 'in', 'the', 'same', 'position', 'on', 'the', 'pianoforte', '\n', 'for', 'her', 'ladyship', 'have', 'celebrate', 'that', 'event', 'by', 'give', '\n', 'up', 'music', 'although', 'by', 'her', 'mother', 'account', 'she', 'have', '\n', 'play', 'extremely', 'well', 'and', 'by', 'her', 'own', 'be', 'very', 'fond', 'of', 'it', '\n\n', 'Mariannes', 'performance', 'be', 'highly', 'applauded', '\n', 'Sir', 'John', 'be', 'loud', 'in', 'his', 'admiration', 'at', 'the', 'end', 'of', 'every', 'song', '\n', 'and', 'as', 'loud', 'in', 'his', 'conversation', 'with', 'the', 'other', 'while', 'every', '\n', 'song', 'last', ' ', 'Lady', 'Middleton', 'frequently', 'call', 'he', 'to', 'order', '\n', 'wonder', 'how', 'any', 'one', 'attention', 'could', 'be', 'divert', 'from', 'music', '\n', 'for', 'a', 'moment', 'and', 'ask', 'Marianne', 'to', 'sing', 'a', 'particular', 'song', '\n', 'which', 'Marianne', 'have', 'just', 'finish', ' ', 'Colonel', 'Brandon', 'alone', '\n', 'of', 'all', 'the', 'party', 'hear', 'she', 'without', 'be', 'in', 'rapture', '\n', 'he', 'pay', 'she', 'only', 'the', 'compliment', 'of', 'attention', 'and', 'she', 'feel', '\n', 'a', 'respect', 'for', 'he', 'on', 'the', 'occasion', 'which', 'the', 'other', 'have', '\n', 'reasonably', 'forfeit', 'by', 'their', 'shameless', 'want', 'of', 'taste', '\n', 'his', 'pleasure', 'in', 'music', 'though', 'it', 'amount', 'not', 'to', 'that', '\n', 'ecstatic', 'delight', 'which', 'alone', 'could', 'sympathize', 'with', 'her', 'own', '\n', 'be', 'estimable', 'when', 'contrast', 'against', 'the', 'horrible', '\n', 'insensibility', 'of', 'the', 'other', 'and', 'she', 'be', 'reasonable', 'enough', '\n', 'to', 'allow', 'that', 'a', 'man', 'of', 'five', 'and', 'thirty', 'might', 'well', 'have', '\n', 'outlive', 'all', 'acuteness', 'of', 'feeling', 'and', 'every', 'exquisite', '\n', 'power', 'of', 'enjoyment', ' ', 'she', 'be', 'perfectly', 'disposed', 'to', 'make', '\n', 'every', 'allowance', 'for', 'the', 'colonel', 'advanced', 'state', 'of', 'life', '\n', 'which', 'humanity', 'require', '\n\n\n\n', 'chapter', '8', '\n\n\n', 'Mrs', 'Jennings', 'be', 'a', 'widow', 'with', 'an', 'ample', 'jointure', '\n', 'she', 'have', 'only', 'two', 'daughter', 'both', 'of', 'whom', 'she', 'have', 'live', '\n', 'to', 'see', 'respectably', 'married', 'and', 'she', 'have', 'now', 'therefore', '\n', 'nothing', 'to', 'do', 'but', 'to', 'marry', 'all', 'the', 'rest', 'of', 'the', 'world', '\n', 'in', 'the', 'promotion', 'of', 'this', 'object', 'she', 'be', 'zealously', 'active', '\n', 'as', 'far', 'as', 'her', 'ability', 'reach', 'and', 'miss', 'no', 'opportunity', '\n', 'of', 'project', 'wedding', 'among', 'all', 'the', 'young', 'people', '\n', 'of', 'her', 'acquaintance', ' ', 'she', 'be', 'remarkably', 'quick', 'in', 'the', '\n', 'discovery', 'of', 'attachment', 'and', 'have', 'enjoy', 'the', 'advantage', '\n', 'of', 'raise', 'the', 'blush', 'and', 'the', 'vanity', 'of', 'many', 'a', 'young', '\n', 'lady', 'by', 'insinuation', 'of', 'her', 'power', 'over', 'such', 'a', 'young', 'man', '\n', 'and', 'this', 'kind', 'of', 'discernment', 'enable', 'she', 'soon', 'after', 'her', '\n', 'arrival', 'at', 'Barton', 'decisively', 'to', 'pronounce', 'that', 'Colonel', '\n', 'Brandon', 'be', 'very', 'much', 'in', 'love', 'with', 'Marianne', 'Dashwood', '\n', 'she', 'rather', 'suspect', 'it', 'to', 'be', 'so', 'on', 'the', 'very', 'first', '\n', 'evening', 'of', 'their', 'be', 'together', 'from', 'his', 'listening', '\n', 'so', 'attentively', 'while', 'she', 'sing', 'to', 'they', 'and', 'when', 'the', 'visit', '\n', 'be', 'return', 'by', 'the', 'Middletons', 'dine', 'at', 'the', 'cottage', '\n', 'the', 'fact', 'be', 'ascertain', 'by', 'his', 'listening', 'to', 'she', 'again', '\n', 'it', 'must', 'be', 'so', ' ', 'she', 'be', 'perfectly', 'convinced', 'of', 'it', '\n', 'it', 'would', 'be', 'an', 'excellent', 'match', 'for', 'he', 'be', 'rich', 'and', 'SHE', '\n', 'be', 'handsome', ' ', 'Mrs', 'Jennings', 'have', 'be', 'anxious', 'to', 'see', '\n', 'Colonel', 'Brandon', 'well', 'marry', 'ever', 'since', 'her', 'connection', '\n', 'with', 'Sir', 'John', 'first', 'bring', 'he', 'to', 'her', 'knowledge', '\n', 'and', 'she', 'be', 'always', 'anxious', 'to', 'get', 'a', 'good', 'husband', 'for', 'every', '\n', 'pretty', 'girl', '\n\n', 'the', 'immediate', 'advantage', 'to', 'herself', 'be', 'by', 'no', 'means', '\n', 'inconsiderable', 'for', 'it', 'supply', 'she', 'with', 'endless', 'joke', '\n', 'against', 'they', 'both', ' ', 'at', 'the', 'park', 'she', 'laugh', 'at', 'the', 'colonel', '\n', 'and', 'in', 'the', 'cottage', 'at', 'Marianne', ' ', 'to', 'the', 'former', 'her', '\n', 'raillery', 'be', 'probably', 'as', 'far', 'as', 'it', 'regard', 'only', 'himself', '\n', 'perfectly', 'indifferent', 'but', 'to', 'the', 'latter', 'it', 'be', 'at', '\n', 'first', 'incomprehensible', 'and', 'when', 'its', 'object', 'be', 'understand', '\n', 'she', 'hardly', 'know', 'whether', 'most', 'to', 'laugh', 'at', 'its', 'absurdity', '\n', 'or', 'censure', 'its', 'impertinence', 'for', 'she', 'consider', 'it', 'as', 'an', '\n', 'unfeeling', 'reflection', 'on', 'the', 'colonel', 'advanced', 'year', '\n', 'and', 'on', 'his', 'forlorn', 'condition', 'as', 'an', 'old', 'bachelor', '\n\n', 'Mrs', 'Dashwood', 'who', 'could', 'not', 'think', 'a', 'man', 'five', 'year', '\n', 'young', 'than', 'herself', 'so', 'exceedingly', 'ancient', 'as', 'he', 'appear', '\n', 'to', 'the', 'youthful', 'fancy', 'of', 'her', 'daughter', 'venture', 'to', 'clear', '\n', 'Mrs', 'Jennings', 'from', 'the', 'probability', 'of', 'wish', 'to', 'throw', '\n', 'ridicule', 'on', 'his', 'age', '\n\n', 'but', 'at', 'least', 'Mamma', 'you', 'can', 'not', 'deny', 'the', 'absurdity', '\n', 'of', 'the', 'accusation', 'though', 'you', 'may', 'not', 'think', 'it', 'intentionally', '\n', 'illnature', ' ', 'Colonel', 'Brandon', 'be', 'certainly', 'young', 'than', '\n', 'Mrs', 'Jennings', 'but', 'he', 'be', 'old', 'enough', 'to', 'be', 'MY', 'father', '\n', 'and', 'if', 'he', 'be', 'ever', 'animate', 'enough', 'to', 'be', 'in', 'love', '\n', 'must', 'have', 'long', 'outlive', 'every', 'sensation', 'of', 'the', 'kind', '\n', 'it', 'be', 'too', 'ridiculous', ' ', 'when', 'be', 'a', 'man', 'to', 'be', 'safe', 'from', 'such', 'wit', '\n', 'if', 'age', 'and', 'infirmity', 'will', 'not', 'protect', 'he', '\n\n', 'Infirmity', 'say', 'Elinor', 'do', 'you', 'call', 'Colonel', 'Brandon', '\n', 'infirm', ' ', 'I', 'can', 'easily', 'suppose', 'that', 'his', 'age', 'may', 'appear', 'much', '\n', 'great', 'to', 'you', 'than', 'to', 'my', 'mother', 'but', 'you', 'can', 'hardly', '\n', 'deceive', 'yourself', 'as', 'to', 'his', 'have', 'the', 'use', 'of', 'his', 'limb', '\n\n', 'do', 'not', 'you', 'hear', 'he', 'complain', 'of', 'the', 'rheumatism', '\n', 'and', 'be', 'not', 'that', 'the', 'commonest', 'infirmity', 'of', 'decline', 'life', '\n\n', 'my', 'dear', 'child', 'say', 'her', 'mother', 'laugh', '\n', 'at', 'this', 'rate', 'you', 'must', 'be', 'in', 'continual', 'terror', 'of', 'MY', 'decay', '\n', 'and', 'it', 'must', 'seem', 'to', 'you', 'a', 'miracle', 'that', 'my', 'life', 'have', 'be', '\n', 'extend', 'to', 'the', 'advanced', 'age', 'of', 'forty', '\n\n', 'Mamma', 'you', 'be', 'not', 'do', 'I', 'justice', ' ', 'I', 'know', 'very', 'well', '\n', 'that', 'Colonel', 'Brandon', 'be', 'not', 'old', 'enough', 'to', 'make', 'his', 'friend', '\n', 'yet', 'apprehensive', 'of', 'lose', 'he', 'in', 'the', 'course', 'of', 'nature', '\n', 'he', 'may', 'live', 'twenty', 'year', 'long', ' ', 'but', 'thirtyfive', 'have', '\n', 'nothing', 'to', 'do', 'with', 'matrimony', '\n\n', 'perhaps', 'say', 'Elinor', 'thirtyfive', 'and', 'seventeen', 'have', '\n', 'well', 'not', 'have', 'any', 'thing', 'to', 'do', 'with', 'matrimony', 'together', '\n', 'but', 'if', 'there', 'should', 'by', 'any', 'chance', 'happen', 'to', 'be', 'a', 'woman', '\n', 'who', 'be', 'single', 'at', 'seven', 'and', 'twenty', 'I', 'should', 'not', 'think', '\n', 'Colonel', 'Brandons', 'be', 'thirtyfive', 'any', 'objection', 'to', 'his', '\n', 'marry', 'she', '\n\n', 'a', 'woman', 'of', 'seven', 'and', 'twenty', 'say', 'Marianne', '\n', 'after', 'pause', 'a', 'moment', 'can', 'never', 'hope', 'to', 'feel', 'or', 'inspire', '\n', 'affection', 'again', 'and', 'if', 'her', 'home', 'be', 'uncomfortable', '\n', 'or', 'her', 'fortune', 'small', 'I', 'can', 'suppose', 'that', 'she', 'might', '\n', 'bring', 'herself', 'to', 'submit', 'to', 'the', 'office', 'of', 'a', 'nurse', '\n', 'for', 'the', 'sake', 'of', 'the', 'provision', 'and', 'security', 'of', 'a', 'wife', '\n', 'in', 'his', 'marry', 'such', 'a', 'woman', 'therefore', 'there', 'would', 'be', '\n', 'nothing', 'unsuitable', ' ', 'it', 'would', 'be', 'a', 'compact', 'of', 'convenience', '\n', 'and', 'the', 'world', 'would', 'be', 'satisfied', ' ', 'in', 'my', 'eye', 'it', 'would', '\n', 'be', 'no', 'marriage', 'at', 'all', 'but', 'that', 'would', 'be', 'nothing', '\n', 'to', 'I', 'it', 'would', 'seem', 'only', 'a', 'commercial', 'exchange', 'in', 'which', '\n', 'each', 'wish', 'to', 'be', 'benefit', 'at', 'the', 'expense', 'of', 'the', 'other', '\n\n', 'it', 'would', 'be', 'impossible', 'I', 'know', 'reply', 'Elinor', '\n', 'to', 'convince', 'you', 'that', 'a', 'woman', 'of', 'seven', 'and', 'twenty', 'could', '\n', 'feel', 'for', 'a', 'man', 'of', 'thirtyfive', 'anything', 'near', 'enough', '\n', 'to', 'love', 'to', 'make', 'he', 'a', 'desirable', 'companion', 'to', 'she', '\n', 'but', 'I', 'must', 'object', 'to', 'your', 'doom', 'Colonel', 'Brandon', 'and', '\n', 'his', 'wife', 'to', 'the', 'constant', 'confinement', 'of', 'a', 'sick', 'chamber', '\n', 'merely', 'because', 'he', 'chance', 'to', 'complain', 'yesterday', 'a', '\n', 'very', 'cold', 'damp', 'day', 'of', 'a', 'slight', 'rheumatic', 'feel', 'in', 'one', '\n', 'of', 'his', 'shoulder', '\n\n', 'but', 'he', 'talk', 'of', 'flannel', 'waistcoat', 'say', 'Marianne', '\n', 'and', 'with', 'I', 'a', 'flannel', 'waistcoat', 'be', 'invariably', 'connect', '\n', 'with', 'ache', 'cramp', 'rheumatism', 'and', 'every', 'specie', 'of', '\n', 'ailment', 'that', 'can', 'afflict', 'the', 'old', 'and', 'the', 'feeble', '\n\n', 'have', 'he', 'be', 'only', 'in', 'a', 'violent', 'fever', 'you', 'would', 'not', '\n', 'have', 'despise', 'he', 'half', 'so', 'much', ' ', 'Confess', 'Marianne', 'be', 'not', '\n', 'there', 'something', 'interesting', 'to', 'you', 'in', 'the', 'flushed', 'cheek', '\n', 'hollow', 'eye', 'and', 'quick', 'pulse', 'of', 'a', 'fever', '\n\n', 'soon', 'after', 'this', 'upon', 'elinor', 'leave', 'the', 'room', '\n', 'Mamma', 'say', 'Marianne', 'I', 'have', 'an', 'alarm', 'on', 'the', 'subject', '\n', 'of', 'illness', 'which', 'I', 'can', 'not', 'conceal', 'from', 'you', ' ', 'I', 'be', 'sure', '\n', 'Edward', 'Ferrars', 'be', 'not', 'well', ' ', 'we', 'have', 'now', 'be', 'here', 'almost', '\n', 'a', 'fortnight', 'and', 'yet', 'he', 'do', 'not', 'come', ' ', 'nothing', 'but', 'real', '\n', 'indisposition', 'could', 'occasion', 'this', 'extraordinary', 'delay', '\n', 'what', 'else', 'can', 'detain', 'he', 'at', 'Norland', '\n\n', 'have', 'you', 'any', 'idea', 'of', 'his', 'come', 'so', 'soon', '\n', 'say', 'Mrs', 'Dashwood', ' ', 'I', 'have', 'none', ' ', 'on', 'the', 'contrary', '\n', 'if', 'I', 'have', 'feel', 'any', 'anxiety', 'at', 'all', 'on', 'the', 'subject', 'it', 'have', '\n', 'be', 'in', 'recollect', 'that', 'he', 'sometimes', 'show', 'a', 'want', '\n', 'of', 'pleasure', 'and', 'readiness', 'in', 'accept', 'my', 'invitation', '\n', 'when', 'I', 'talk', 'of', 'his', 'come', 'to', 'Barton', ' ', 'do', 'Elinor', '\n', 'expect', 'he', 'already', '\n\n', 'I', 'have', 'never', 'mention', 'it', 'to', 'she', 'but', 'of', 'course', '\n', 'she', 'must', '\n\n', 'I', 'rather', 'think', 'you', 'be', 'mistaken', 'for', 'when', 'I', '\n', 'be', 'talk', 'to', 'she', 'yesterday', 'of', 'get', 'a', 'new', 'grate', '\n', 'for', 'the', 'spare', 'bedchamber', 'she', 'observe', 'that', 'there', '\n', 'be', 'no', 'immediate', 'hurry', 'for', 'it', 'as', 'it', 'be', 'not', 'likely', '\n', 'that', 'the', 'room', 'would', 'be', 'want', 'for', 'some', 'time', '\n\n', 'how', 'strange', 'this', 'be', 'what', 'can', 'be', 'the', 'meaning', 'of', 'it', '\n', 'but', 'the', 'whole', 'of', 'their', 'behaviour', 'to', 'each', 'other', 'have', 'be', '\n', 'unaccountable', 'how', 'cold', 'how', 'compose', 'be', 'their', 'last', '\n', 'adieus', 'how', 'languid', 'their', 'conversation', 'the', 'last', 'evening', '\n', 'of', 'their', 'be', 'together', 'in', 'Edwards', 'farewell', 'there', 'be', 'no', '\n', 'distinction', 'between', 'Elinor', 'and', 'I', 'it', 'be', 'the', 'good', 'wish', '\n', 'of', 'an', 'affectionate', 'brother', 'to', 'both', ' ', 'twice', 'do', 'I', 'leave', '\n', 'they', 'purposely', 'together', 'in', 'the', 'course', 'of', 'the', 'last', 'morning', '\n', 'and', 'each', 'time', 'do', 'he', 'most', 'unaccountably', 'follow', 'I', 'out', '\n', 'of', 'the', 'room', ' ', 'and', 'Elinor', 'in', 'quit', 'Norland', 'and', 'Edward', '\n', 'cry', 'not', 'as', 'I', 'do', ' ', 'even', 'now', 'her', 'selfcommand', 'be', 'invariable', '\n', 'when', 'be', 'she', 'deject', 'or', 'melancholy', 'when', 'do', 'she', 'try', '\n', 'to', 'avoid', 'society', 'or', 'appear', 'restless', 'and', 'dissatisfied', '\n', 'in', 'it', '\n\n\n\n', 'chapter', '9', '\n\n\n', 'the', 'Dashwoods', 'be', 'now', 'settle', 'at', 'Barton', 'with', 'tolerable', '\n', 'comfort', 'to', 'themselves', ' ', 'the', 'house', 'and', 'the', 'garden', 'with', 'all', '\n', 'the', 'object', 'surround', 'they', 'be', 'now', 'become', 'familiar', '\n', 'and', 'the', 'ordinary', 'pursuit', 'which', 'have', 'give', 'to', 'Norland', '\n', 'half', 'its', 'charm', 'be', 'engage', 'in', 'again', 'with', 'far', 'great', '\n', 'enjoyment', 'than', 'Norland', 'have', 'be', 'able', 'to', 'afford', 'since', 'the', '\n', 'loss', 'of', 'their', 'father', ' ', 'Sir', 'John', 'Middleton', 'who', 'call', '\n', 'on', 'they', 'every', 'day', 'for', 'the', 'first', 'fortnight', 'and', 'who', 'be', '\n', 'not', 'in', 'the', 'habit', 'of', 'see', 'much', 'occupation', 'at', 'home', '\n', 'could', 'not', 'conceal', 'his', 'amazement', 'on', 'find', 'they', 'always', 'employ', '\n\n', 'their', 'visitor', 'except', 'those', 'from', 'Barton', 'Park', '\n', 'be', 'not', 'many', 'for', 'in', 'spite', 'of', 'Sir', 'Johns', 'urgent', 'entreatie', '\n', 'that', 'they', 'would', 'mix', 'more', 'in', 'the', 'neighbourhood', 'and', 'repeat', '\n', 'assurance', 'of', 'his', 'carriage', 'be', 'always', 'at', 'their', 'service', '\n', 'the', 'independence', 'of', 'Mrs', 'Dashwoods', 'spirit', 'overcome', 'the', '\n', 'wish', 'of', 'society', 'for', 'her', 'child', 'and', 'she', 'be', 'resolute', '\n', 'in', 'decline', 'to', 'visit', 'any', 'family', 'beyond', 'the', 'distance', '\n', 'of', 'a', 'walk', ' ', 'there', 'be', 'but', 'few', 'who', 'could', 'be', 'so', 'classed', '\n', 'and', 'it', 'be', 'not', 'all', 'of', 'they', 'that', 'be', 'attainable', '\n', 'about', 'a', 'mile', 'and', 'a', 'half', 'from', 'the', 'cottage', 'along', 'the', 'narrow', '\n', 'winding', 'valley', 'of', 'Allenham', 'which', 'issue', 'from', 'that', 'of', 'Barton', '\n', 'as', 'formerly', 'describe', 'the', 'girl', 'have', 'in', 'one', 'of', 'their', '\n', 'early', 'walk', 'discover', 'an', 'ancient', 'respectable', 'look', '\n', 'mansion', 'which', 'by', 'remind', 'they', 'a', 'little', 'of', 'Norland', '\n', 'interest', 'their', 'imagination', 'and', 'make', 'they', 'wish', 'to', 'be', '\n', 'well', 'acquaint', 'with', 'it', ' ', 'but', 'they', 'learn', 'on', 'enquiry', '\n', 'that', 'its', 'possessor', 'an', 'elderly', 'lady', 'of', 'very', 'good', 'character', '\n', 'be', 'unfortunately', 'too', 'infirm', 'to', 'mix', 'with', 'the', 'world', '\n', 'and', 'never', 'stir', 'from', 'home', '\n\n', 'the', 'whole', 'country', 'about', 'they', 'abound', 'in', 'beautiful', 'walk', '\n', 'the', 'high', 'down', 'which', 'invite', 'they', 'from', 'almost', 'every', 'window', '\n', 'of', 'the', 'cottage', 'to', 'seek', 'the', 'exquisite', 'enjoyment', 'of', 'air', '\n', 'on', 'their', 'summit', 'be', 'a', 'happy', 'alternative', 'when', 'the', 'dirt', '\n', 'of', 'the', 'valley', 'beneath', 'shut', 'up', 'their', 'superior', 'beauty', '\n', 'and', 'towards', 'one', 'of', 'these', 'hill', 'do', 'Marianne', 'and', 'Margaret', '\n', 'one', 'memorable', 'morning', 'direct', 'their', 'step', 'attract', 'by', 'the', '\n', 'partial', 'sunshine', 'of', 'a', 'showery', 'sky', 'and', 'unable', 'long', 'to', 'bear', '\n', 'the', 'confinement', 'which', 'the', 'settle', 'rain', 'of', 'the', 'two', 'precede', '\n', 'day', 'have', 'occasion', ' ', 'the', 'weather', 'be', 'not', 'tempt', 'enough', '\n', 'to', 'draw', 'the', 'two', 'other', 'from', 'their', 'pencil', 'and', 'their', 'book', '\n', 'in', 'spite', 'of', 'Mariannes', 'declaration', 'that', 'the', 'day', 'would', '\n', 'be', 'lastingly', 'fair', 'and', 'that', 'every', 'threatening', 'cloud', 'would', '\n', 'be', 'draw', 'off', 'from', 'their', 'hill', 'and', 'the', 'two', 'girl', 'set', 'off', '\n', 'together', '\n\n', 'they', 'gaily', 'ascend', 'the', 'down', 'rejoice', 'in', 'their', 'own', '\n', 'penetration', 'at', 'every', 'glimpse', 'of', 'blue', 'sky', 'and', 'when', 'they', '\n', 'catch', 'in', 'their', 'face', 'the', 'animate', 'gale', 'of', 'a', 'high', '\n', 'southwesterly', 'wind', 'they', 'pity', 'the', 'fear', 'which', 'have', 'prevent', '\n', 'their', 'mother', 'and', 'Elinor', 'from', 'share', 'such', 'delightful', 'sensation', '\n\n', 'be', 'there', 'a', 'felicity', 'in', 'the', 'world', 'say', 'Marianne', '\n', 'superior', 'to', 'thismargaret', 'we', 'will', 'walk', 'here', 'at', 'least', '\n', 'two', 'hour', '\n\n', 'Margaret', 'agree', 'and', 'they', 'pursue', 'their', 'way', 'against', '\n', 'the', 'wind', 'resist', 'it', 'with', 'laugh', 'delight', 'for', 'about', '\n', 'twenty', 'minute', 'long', 'when', 'suddenly', 'the', 'cloud', 'unite', 'over', '\n', 'their', 'head', 'and', 'a', 'drive', 'rain', 'set', 'full', 'in', 'their', 'face', '\n', 'chagrin', 'and', 'surprise', 'they', 'be', 'oblige', 'though', 'unwillingly', '\n', 'to', 'turn', 'back', 'for', 'no', 'shelter', 'be', 'near', 'than', 'their', 'own', 'house', '\n', 'one', 'consolation', 'however', 'remain', 'for', 'they', 'to', 'which', 'the', '\n', 'exigence', 'of', 'the', 'moment', 'give', 'more', 'than', 'usual', 'propriety', '\n', 'it', 'be', 'that', 'of', 'run', 'with', 'all', 'possible', 'speed', 'down', 'the', 'steep', '\n', 'side', 'of', 'the', 'hill', 'which', 'lead', 'immediately', 'to', 'their', 'garden', 'gate', '\n\n', 'they', 'set', 'off', ' ', 'Marianne', 'have', 'at', 'first', 'the', 'advantage', '\n', 'but', 'a', 'false', 'step', 'bring', 'she', 'suddenly', 'to', 'the', 'ground', '\n', 'and', 'Margaret', 'unable', 'to', 'stop', 'herself', 'to', 'assist', 'she', '\n', 'be', 'involuntarily', 'hurry', 'along', 'and', 'reach', 'the', 'bottom', '\n', 'in', 'safety', '\n\n', 'a', 'gentleman', 'carry', 'a', 'gun', 'with', 'two', 'pointer', '\n', 'play', 'round', 'he', 'be', 'pass', 'up', 'the', 'hill', 'and', 'within', '\n', 'a', 'few', 'yard', 'of', 'Marianne', 'when', 'her', 'accident', 'happen', '\n', 'he', 'put', 'down', 'his', 'gun', 'and', 'run', 'to', 'her', 'assistance', ' ', 'she', 'have', '\n', 'raise', 'herself', 'from', 'the', 'ground', 'but', 'her', 'foot', 'have', 'be', '\n', 'twist', 'in', 'her', 'fall', 'and', 'she', 'be', 'scarcely', 'able', 'to', 'stand', '\n', 'the', 'gentleman', 'offer', 'his', 'service', 'and', 'perceive', 'that', 'her', '\n', 'modesty', 'decline', 'what', 'her', 'situation', 'render', 'necessary', '\n', 'take', 'she', 'up', 'in', 'his', 'arm', 'without', 'farther', 'delay', 'and', 'carry', '\n', 'she', 'down', 'the', 'hill', ' ', 'then', 'pass', 'through', 'the', 'garden', '\n', 'the', 'gate', 'of', 'which', 'have', 'be', 'leave', 'open', 'by', 'Margaret', 'he', 'bear', 'she', '\n', 'directly', 'into', 'the', 'house', 'whither', 'Margaret', 'be', 'just', 'arrive', '\n', 'and', 'quit', 'not', 'his', 'hold', 'till', 'he', 'have', 'seat', 'she', 'in', 'a', 'chair', '\n', 'in', 'the', 'parlour', '\n\n', 'Elinor', 'and', 'her', 'mother', 'rise', 'up', 'in', 'amazement', 'at', '\n', 'their', 'entrance', 'and', 'while', 'the', 'eye', 'of', 'both', 'be', 'fix', '\n', 'on', 'he', 'with', 'an', 'evident', 'wonder', 'and', 'a', 'secret', 'admiration', '\n', 'which', 'equally', 'spring', 'from', 'his', 'appearance', 'he', 'apologize', '\n', 'for', 'his', 'intrusion', 'by', 'relate', 'its', 'cause', 'in', 'a', 'manner', '\n', 'so', 'frank', 'and', 'so', 'graceful', 'that', 'his', 'person', 'which', 'be', '\n', 'uncommonly', 'handsome', 'receive', 'additional', 'charm', 'from', 'his', 'voice', '\n', 'and', 'expression', ' ', 'have', 'he', 'be', 'even', 'old', 'ugly', 'and', 'vulgar', '\n', 'the', 'gratitude', 'and', 'kindness', 'of', 'Mrs', 'Dashwood', 'would', '\n', 'have', 'be', 'secure', 'by', 'any', 'act', 'of', 'attention', 'to', 'her', 'child', '\n', 'but', 'the', 'influence', 'of', 'youth', 'beauty', 'and', 'elegance', '\n', 'give', 'an', 'interest', 'to', 'the', 'action', 'which', 'come', 'home', 'to', 'her', 'feeling', '\n\n', 'she', 'thank', 'he', 'again', 'and', 'again', 'and', 'with', 'a', 'sweetness', '\n', 'of', 'address', 'which', 'always', 'attend', 'she', 'invite', 'he', 'to', '\n', 'be', 'seat', ' ', 'but', 'this', 'he', 'decline', 'as', 'he', 'be', 'dirty', 'and', 'wet', '\n', 'Mrs', 'Dashwood', 'then', 'beg', 'to', 'know', 'to', 'whom', 'she', 'be', 'oblige', '\n', 'his', 'name', 'he', 'reply', 'be', 'Willoughby', 'and', 'his', 'present', '\n', 'home', 'be', 'at', 'Allenham', 'from', 'whence', 'he', 'hope', 'she', 'would', '\n', 'allow', 'he', 'the', 'honour', 'of', 'call', 'tomorrow', 'to', 'enquire', '\n', 'after', 'Miss', 'Dashwood', ' ', 'the', 'honour', 'be', 'readily', 'grant', '\n', 'and', 'he', 'then', 'depart', 'to', 'make', 'himself', 'still', 'more', 'interesting', '\n', 'in', 'the', 'midst', 'of', 'a', 'heavy', 'rain', '\n\n', 'his', 'manly', 'beauty', 'and', 'more', 'than', 'common', 'gracefulness', '\n', 'be', 'instantly', 'the', 'theme', 'of', 'general', 'admiration', '\n', 'and', 'the', 'laugh', 'which', 'his', 'gallantry', 'raise', 'against', 'Marianne', '\n', 'receive', 'particular', 'spirit', 'from', 'his', 'exterior', 'attraction', '\n', 'Marianne', 'herself', 'have', 'see', 'less', 'of', 'his', 'person', 'that', 'the', 'rest', '\n', 'for', 'the', 'confusion', 'which', 'crimson', 'over', 'her', 'face', 'on', 'his', '\n', 'lift', 'she', 'up', 'have', 'rob', 'she', 'of', 'the', 'power', 'of', 'regard', '\n', 'he', 'after', 'their', 'enter', 'the', 'house', ' ', 'but', 'she', 'have', 'see', '\n', 'enough', 'of', 'he', 'to', 'join', 'in', 'all', 'the', 'admiration', 'of', 'the', 'other', '\n', 'and', 'with', 'an', 'energy', 'which', 'always', 'adorn', 'her', 'praise', '\n', 'his', 'person', 'and', 'air', 'be', 'equal', 'to', 'what', 'her', 'fancy', 'have', 'ever', '\n', 'draw', 'for', 'the', 'hero', 'of', 'a', 'favourite', 'story', 'and', 'in', 'his', 'carry', '\n', 'she', 'into', 'the', 'house', 'with', 'so', 'little', 'previous', 'formality', 'there', '\n', 'be', 'a', 'rapidity', 'of', 'thought', 'which', 'particularly', 'recommend', '\n', 'the', 'action', 'to', 'her', ' ', 'every', 'circumstance', 'belong', 'to', 'he', '\n', 'be', 'interesting', ' ', 'his', 'name', 'be', 'good', 'his', 'residence', 'be', 'in', '\n', 'their', 'favourite', 'village', 'and', 'she', 'soon', 'find', 'out', 'that', 'of', 'all', '\n', 'manly', 'dress', 'a', 'shootingjacket', 'be', 'the', 'most', 'become', '\n', 'her', 'imagination', 'be', 'busy', 'her', 'reflection', 'be', 'pleasant', '\n', 'and', 'the', 'pain', 'of', 'a', 'sprain', 'ankle', 'be', 'disregard', '\n\n', 'Sir', 'John', 'call', 'on', 'they', 'as', 'soon', 'as', 'the', 'next', 'interval', '\n', 'of', 'fair', 'weather', 'that', 'morning', 'allow', 'he', 'to', 'get', 'out', '\n', 'of', 'door', 'and', 'Mariannes', 'accident', 'be', 'relate', 'to', 'he', '\n', 'he', 'be', 'eagerly', 'ask', 'whether', 'he', 'know', 'any', 'gentleman', '\n', 'of', 'the', 'name', 'of', 'Willoughby', 'at', 'Allenham', '\n\n', 'Willoughby', 'cry', 'Sir', 'John', 'what', 'be', 'HE', '\n', 'in', 'the', 'country', 'that', 'be', 'good', 'news', 'however', 'I', 'will', '\n', 'ride', 'over', 'tomorrow', 'and', 'ask', 'he', 'to', 'dinner', 'on', 'Thursday', '\n\n', 'you', 'know', 'he', 'then', 'say', 'Mrs', 'Dashwood', '\n\n', 'know', 'he', 'to', 'be', 'sure', 'I', 'do', ' ', 'why', 'he', 'be', 'down', 'here', '\n', 'every', 'year', '\n\n', 'and', 'what', 'sort', 'of', 'a', 'young', 'man', 'be', 'he', '\n\n', 'as', 'good', 'a', 'kind', 'of', 'fellow', 'as', 'ever', 'live', 'I', 'assure', 'you', '\n', 'a', 'very', 'decent', 'shot', 'and', 'there', 'be', 'not', 'a', 'bolder', 'rider', '\n', 'in', 'England', '\n\n', 'and', 'be', 'that', 'all', 'you', 'can', 'say', 'for', 'he', 'cry', 'Marianne', '\n', 'indignantly', ' ', 'but', 'what', 'be', 'his', 'manner', 'on', 'more', 'intimate', '\n', 'acquaintance', 'what', 'his', 'pursuit', 'his', 'talent', 'and', 'genius', '\n\n', 'Sir', 'John', 'be', 'rather', 'puzzle', '\n\n', 'upon', 'my', 'soul', 'say', 'he', 'I', 'do', 'not', 'know', 'much', 'about', 'he', '\n', 'as', 'to', 'all', 'that', ' ', 'but', 'he', 'be', 'a', 'pleasant', 'good', 'humour', 'fellow', '\n', 'and', 'have', 'get', 'the', 'nice', 'little', 'black', 'bitch', 'of', 'a', 'pointer', '\n', 'I', 'ever', 'see', ' ', 'be', 'she', 'out', 'with', 'he', 'today', '\n\n', 'but', 'Marianne', 'could', 'no', 'more', 'satisfy', 'he', 'as', 'to', 'the', '\n', 'colour', 'of', 'Mr', 'Willoughbys', 'pointer', 'than', 'he', 'could', '\n', 'describe', 'to', 'she', 'the', 'shade', 'of', 'his', 'mind', '\n\n', 'but', 'who', 'be', 'he', 'say', 'Elinor', ' ', 'where', 'do', 'he', 'come', '\n', 'from', ' ', 'have', 'he', 'a', 'house', 'at', 'Allenham', '\n\n', 'on', 'this', 'point', 'Sir', 'John', 'could', 'give', 'more', 'certain', 'intelligence', '\n', 'and', 'he', 'tell', 'they', 'that', 'Mr', 'Willoughby', 'have', 'no', 'property', '\n', 'of', 'his', 'own', 'in', 'the', 'country', 'that', 'he', 'reside', 'there', 'only', '\n', 'while', 'he', 'be', 'visit', 'the', 'old', 'lady', 'at', 'Allenham', 'Court', '\n', 'to', 'whom', 'he', 'be', 'relate', 'and', 'whose', 'possession', 'he', 'be', '\n', 'to', 'inherit', 'add', 'yes', 'yes', 'he', 'be', 'very', 'well', 'worth', '\n', 'catch', 'I', 'can', 'tell', 'you', 'Miss', 'Dashwood', 'he', 'have', 'a', 'pretty', '\n', 'little', 'estate', 'of', 'his', 'own', 'in', 'Somersetshire', 'besides', '\n', 'and', 'if', 'I', 'be', 'you', 'I', 'would', 'not', 'give', 'he', 'up', 'to', 'my', '\n', 'young', 'sister', 'in', 'spite', 'of', 'all', 'this', 'tumbling', 'down', 'hill', '\n', 'Miss', 'Marianne', 'must', 'not', 'expect', 'to', 'have', 'all', 'the', 'man', 'to', 'herself', '\n', 'Brandon', 'will', 'be', 'jealous', 'if', 'she', 'do', 'not', 'take', 'care', '\n\n', 'I', 'do', 'not', 'believe', 'say', 'Mrs', 'Dashwood', 'with', 'a', '\n', 'good', 'humour', 'smile', 'that', 'Mr', 'Willoughby', 'will', 'be', 'incommode', '\n', 'by', 'the', 'attempt', 'of', 'either', 'of', 'MY', 'daughter', 'towards', 'what', '\n', 'you', 'call', 'CATCHING', 'he', ' ', 'it', 'be', 'not', 'an', 'employment', 'to', 'which', '\n', 'they', 'have', 'be', 'bring', 'up', ' ', 'man', 'be', 'very', 'safe', 'with', 'we', '\n', 'let', 'they', 'be', 'ever', 'so', 'rich', ' ', 'I', 'be', 'glad', 'to', 'find', 'however', '\n', 'from', 'what', 'you', 'say', 'that', 'he', 'be', 'a', 'respectable', 'young', 'man', '\n', 'and', 'one', 'whose', 'acquaintance', 'will', 'not', 'be', 'ineligible', '\n\n', 'he', 'be', 'as', 'good', 'a', 'sort', 'of', 'fellow', 'I', 'believe', '\n', 'as', 'ever', 'live', 'repeat', 'Sir', 'John', ' ', 'I', 'remember', '\n', 'last', 'Christmas', 'at', 'a', 'little', 'hop', 'at', 'the', 'park', 'he', 'dance', '\n', 'from', 'eight', 'oclock', 'till', 'four', 'without', 'once', 'sit', 'down', '\n\n', 'do', 'he', 'indeed', 'cry', 'Marianne', 'with', 'sparkle', 'eye', '\n', 'and', 'with', 'elegance', 'with', 'spirit', '\n\n', 'yes', 'and', 'he', 'be', 'up', 'again', 'at', 'eight', 'to', 'ride', 'to', 'covert', '\n\n', 'that', 'be', 'what', 'I', 'like', 'that', 'be', 'what', 'a', 'young', 'man', 'ought', '\n', 'to', 'be', ' ', 'whatever', 'be', 'his', 'pursuit', 'his', 'eagerness', 'in', 'they', '\n', 'should', 'know', 'no', 'moderation', 'and', 'leave', 'he', 'no', 'sense', 'of', 'fatigue', '\n\n', 'Aye', 'aye', 'I', 'see', 'how', 'it', 'will', 'be', 'say', 'Sir', 'John', 'I', 'see', '\n', 'how', 'it', 'will', 'be', ' ', 'you', 'will', 'be', 'set', 'your', 'cap', 'at', 'he', 'now', '\n', 'and', 'never', 'think', 'of', 'poor', 'Brandon', '\n\n', 'that', 'be', 'an', 'expression', 'Sir', 'John', 'say', 'Marianne', '\n', 'warmly', 'which', 'I', 'particularly', 'dislike', ' ', 'I', 'abhor', 'every', '\n', 'commonplace', 'phrase', 'by', 'which', 'wit', 'be', 'intend', 'and', 'set', '\n', 'one', 'cap', 'at', 'a', 'man', 'or', 'make', 'a', 'conquest', 'be', 'the', 'most', '\n', 'odious', 'of', 'all', ' ', 'their', 'tendency', 'be', 'gross', 'and', 'illiberal', '\n', 'and', 'if', 'their', 'construction', 'could', 'ever', 'be', 'deem', 'clever', '\n', 'time', 'have', 'long', 'ago', 'destroy', 'all', 'its', 'ingenuity', '\n\n', 'Sir', 'John', 'do', 'not', 'much', 'understand', 'this', 'reproof', '\n', 'but', 'he', 'laugh', 'as', 'heartily', 'as', 'if', 'he', 'do', 'and', 'then', 'reply', '\n\n', 'ay', 'you', 'will', 'make', 'conquest', 'enough', 'I', 'dare', 'say', '\n', 'one', 'way', 'or', 'other', ' ', 'Poor', 'Brandon', 'he', 'be', 'quite', 'smitten', 'already', '\n', 'and', 'he', 'be', 'very', 'well', 'worth', 'set', 'your', 'cap', 'at', 'I', 'can', '\n', 'tell', 'you', 'in', 'spite', 'of', 'all', 'this', 'tumbling', 'about', 'and', 'spraining', '\n', 'of', 'ankle', '\n\n\n\n', 'chapter', '10', '\n\n\n', 'Mariannes', 'preserver', 'as', 'Margaret', 'with', 'more', 'elegance', '\n', 'than', 'precision', 'style', 'Willoughby', 'call', 'at', 'the', 'cottage', '\n', 'early', 'the', 'next', 'morning', 'to', 'make', 'his', 'personal', 'enquiry', '\n', 'he', 'be', 'receive', 'by', 'Mrs', 'Dashwood', 'with', 'more', 'than', 'politeness', '\n', 'with', 'a', 'kindness', 'which', 'Sir', 'Johns', 'account', 'of', 'he', 'and', 'her', 'own', '\n', 'gratitude', 'prompt', 'and', 'every', 'thing', 'that', 'pass', 'during', '\n', 'the', 'visit', 'tend', 'to', 'assure', 'he', 'of', 'the', 'sense', 'elegance', '\n', 'mutual', 'affection', 'and', 'domestic', 'comfort', 'of', 'the', 'family', '\n', 'to', 'whom', 'accident', 'have', 'now', 'introduce', 'he', ' ', 'of', 'their', '\n', 'personal', 'charm', 'he', 'have', 'not', 'require', 'a', 'second', 'interview', '\n', 'to', 'be', 'convince', '\n\n', 'Miss', 'Dashwood', 'have', 'a', 'delicate', 'complexion', '\n', 'regular', 'feature', 'and', 'a', 'remarkably', 'pretty', 'figure', '\n', 'Marianne', 'be', 'still', 'handsomer', ' ', 'her', 'form', 'though', 'not', 'so', '\n', 'correct', 'as', 'her', 'sister', 'in', 'have', 'the', 'advantage', 'of', 'height', '\n', 'be', 'more', 'striking', 'and', 'her', 'face', 'be', 'so', 'lovely', 'that', 'when', '\n', 'in', 'the', 'common', 'can', 'not', 'of', 'praise', 'she', 'be', 'call', 'a', 'beautiful', 'girl', '\n', 'truth', 'be', 'less', 'violently', 'outraged', 'than', 'usually', 'happen', '\n', 'her', 'skin', 'be', 'very', 'brown', 'but', 'from', 'its', 'transparency', '\n', 'her', 'complexion', 'be', 'uncommonly', 'brilliant', 'her', 'feature', '\n', 'be', 'all', 'good', 'her', 'smile', 'be', 'sweet', 'and', 'attractive', '\n', 'and', 'in', 'her', 'eye', 'which', 'be', 'very', 'dark', 'there', 'be', 'a', 'life', '\n', 'a', 'spirit', 'an', 'eagerness', 'which', 'could', 'hardily', 'be', 'see', '\n', 'without', 'delight', ' ', 'from', 'Willoughby', 'their', 'expression', 'be', 'at', '\n', 'first', 'hold', 'back', 'by', 'the', 'embarrassment', 'which', 'the', 'remembrance', '\n', 'of', 'his', 'assistance', 'create', ' ', 'but', 'when', 'this', 'pass', 'away', '\n', 'when', 'her', 'spirit', 'became', 'collect', 'when', 'she', 'see', 'that', 'to', 'the', '\n', 'perfect', 'goodbreeding', 'of', 'the', 'gentleman', 'he', 'unite', 'frankness', '\n', 'and', 'vivacity', 'and', 'above', 'all', 'when', 'she', 'hear', 'he', 'declare', '\n', 'that', 'of', 'music', 'and', 'dancing', 'he', 'be', 'passionately', 'fond', '\n', 'she', 'give', 'he', 'such', 'a', 'look', 'of', 'approbation', 'as', 'secure', 'the', '\n', 'large', 'share', 'of', 'his', 'discourse', 'to', 'herself', 'for', 'the', 'rest', '\n', 'of', 'his', 'stay', '\n\n', 'it', 'be', 'only', 'necessary', 'to', 'mention', 'any', 'favourite', '\n', 'amusement', 'to', 'engage', 'she', 'to', 'talk', ' ', 'she', 'could', 'not', 'be', '\n', 'silent', 'when', 'such', 'point', 'be', 'introduce', 'and', 'she', '\n', 'have', 'neither', 'shyness', 'nor', 'reserve', 'in', 'their', 'discussion', '\n', 'they', 'speedily', 'discover', 'that', 'their', 'enjoyment', 'of', 'dancing', '\n', 'and', 'music', 'be', 'mutual', 'and', 'that', 'it', 'arise', 'from', 'a', 'general', '\n', 'conformity', 'of', 'judgment', 'in', 'all', 'that', 'relate', 'to', 'either', '\n', 'encourage', 'by', 'this', 'to', 'a', 'further', 'examination', 'of', 'his', 'opinion', '\n', 'she', 'proceed', 'to', 'question', 'he', 'on', 'the', 'subject', 'of', 'book', '\n', 'her', 'favourite', 'author', 'be', 'bring', 'forward', 'and', 'dwelt', '\n', 'upon', 'with', 'so', 'rapturous', 'a', 'delight', 'that', 'any', 'young', 'man', 'of', '\n', 'five', 'and', 'twenty', 'must', 'have', 'be', 'insensible', 'indeed', 'not', 'to', '\n', 'become', 'an', 'immediate', 'convert', 'to', 'the', 'excellence', 'of', 'such', 'work', '\n', 'however', 'disregard', 'before', ' ', 'their', 'taste', 'be', 'strikingly', 'alike', '\n', 'the', 'same', 'book', 'the', 'same', 'passage', 'be', 'idolize', 'by', 'each', '\n', 'or', 'if', 'any', 'difference', 'appear', 'any', 'objection', 'arise', '\n', 'it', 'last', 'no', 'long', 'than', 'till', 'the', 'force', 'of', 'her', 'argument', '\n', 'and', 'the', 'brightness', 'of', 'her', 'eye', 'could', 'be', 'display', '\n', 'he', 'acquiesce', 'in', 'all', 'her', 'decision', 'catch', 'all', 'her', 'enthusiasm', '\n', 'and', 'long', 'before', 'his', 'visit', 'conclude', 'they', 'converse', '\n', 'with', 'the', 'familiarity', 'of', 'a', 'longestablished', 'acquaintance', '\n\n', 'Well', 'Marianne', 'say', 'Elinor', 'as', 'soon', 'as', 'he', 'have', 'leave', 'they', '\n', 'for', 'one', 'morning', 'I', 'think', 'you', 'have', 'do', 'pretty', 'well', '\n', 'you', 'have', 'already', 'ascertain', 'Mr', 'Willoughbys', 'opinion', 'in', '\n', 'almost', 'every', 'matter', 'of', 'importance', ' ', 'you', 'know', 'what', 'he', 'think', '\n', 'of', 'Cowper', 'and', 'Scott', 'you', 'be', 'certain', 'of', 'his', 'estimate', '\n', 'their', 'beauty', 'as', 'he', 'ought', 'and', 'you', 'have', 'receive', 'every', '\n', 'assurance', 'of', 'his', 'admire', 'Pope', 'no', 'more', 'than', 'be', 'proper', '\n', 'but', 'how', 'be', 'your', 'acquaintance', 'to', 'be', 'long', 'support', 'under', 'such', '\n', 'extraordinary', 'despatch', 'of', 'every', 'subject', 'for', 'discourse', '\n', 'you', 'will', 'soon', 'have', 'exhaust', 'each', 'favourite', 'topic', '\n', 'another', 'meeting', 'will', 'suffice', 'to', 'explain', 'his', 'sentiment', '\n', 'on', 'picturesque', 'beauty', 'and', 'second', 'marriage', 'and', 'then', '\n', 'you', 'can', 'have', 'nothing', 'farth', 'to', 'ask', '\n\n', 'Elinor', 'cry', 'Marianne', 'be', 'this', 'fair', 'be', 'this', '\n', 'just', 'be', 'my', 'idea', 'so', 'scanty', ' ', 'but', 'I', 'see', 'what', 'you', 'mean', '\n', 'I', 'have', 'be', 'too', 'much', 'at', 'my', 'ease', 'too', 'happy', 'too', 'frank', '\n', 'I', 'have', 'err', 'against', 'every', 'commonplace', 'notion', 'of', 'decorum', '\n', 'I', 'have', 'be', 'open', 'and', 'sincere', 'where', 'I', 'ought', 'to', 'have', '\n', 'be', 'reserve', 'spiritless', 'dull', 'and', 'deceitfulhad', '\n', 'I', 'talk', 'only', 'of', 'the', 'weather', 'and', 'the', 'road', 'and', 'have', 'I', '\n', 'speak', 'only', 'once', 'in', 'ten', 'minute', 'this', 'reproach', 'would', 'have', '\n', 'be', 'spare', '\n\n', 'my', 'love', 'say', 'her', 'mother', 'you', 'must', 'not', 'be', 'offend', '\n', 'with', 'Elinorshe', 'be', 'only', 'in', 'jest', ' ', 'I', 'should', 'scold', '\n', 'she', 'myself', 'if', 'she', 'be', 'capable', 'of', 'wish', 'to', 'check', '\n', 'the', 'delight', 'of', 'your', 'conversation', 'with', 'our', 'new', 'friend', '\n', 'Marianne', 'be', 'soften', 'in', 'a', 'moment', '\n\n', 'Willoughby', 'on', 'his', 'side', 'give', 'every', 'proof', 'of', 'his', '\n', 'pleasure', 'in', 'their', 'acquaintance', 'which', 'an', 'evident', 'wish', '\n', 'of', 'improve', 'it', 'could', 'offer', ' ', 'he', 'come', 'to', 'they', 'every', 'day', '\n', 'to', 'enquire', 'after', 'Marianne', 'be', 'at', 'first', 'his', 'excuse', 'but', 'the', '\n', 'encouragement', 'of', 'his', 'reception', 'to', 'which', 'every', 'day', 'give', '\n', 'great', 'kindness', 'make', 'such', 'an', 'excuse', 'unnecessary', 'before', 'it', '\n', 'have', 'cease', 'to', 'be', 'possible', 'by', 'Mariannes', 'perfect', 'recovery', '\n', 'she', 'be', 'confine', 'for', 'some', 'day', 'to', 'the', 'house', 'but', 'never', 'have', '\n', 'any', 'confinement', 'be', 'less', 'irksome', ' ', 'Willoughby', 'be', 'a', 'young', '\n', 'man', 'of', 'good', 'ability', 'quick', 'imagination', 'lively', 'spirit', '\n', 'and', 'open', 'affectionate', 'manner', ' ', 'he', 'be', 'exactly', 'form', '\n', 'to', 'engage', 'Mariannes', 'heart', 'for', 'with', 'all', 'this', 'he', 'join', '\n', 'not', 'only', 'a', 'captivate', 'person', 'but', 'a', 'natural', 'ardour', '\n', 'of', 'mind', 'which', 'be', 'now', 'rouse', 'and', 'increase', 'by', 'the', 'example', '\n', 'of', 'her', 'own', 'and', 'which', 'recommend', 'he', 'to', 'her', 'affection', '\n', 'beyond', 'every', 'thing', 'else', '\n\n', 'his', 'society', 'become', 'gradually', 'her', 'most', 'exquisite', 'enjoyment', '\n', 'they', 'read', 'they', 'talk', 'they', 'sing', 'together', 'his', 'musical', '\n', 'talent', 'be', 'considerable', 'and', 'he', 'read', 'with', 'all', 'the', '\n', 'sensibility', 'and', 'spirit', 'which', 'Edward', 'have', 'unfortunately', 'want', '\n\n', 'in', 'Mrs', 'Dashwoods', 'estimation', 'he', 'be', 'as', 'faultless', '\n', 'as', 'in', 'Mariannes', 'and', 'Elinor', 'see', 'nothing', 'to', 'censure', 'in', 'he', '\n', 'but', 'a', 'propensity', 'in', 'which', 'he', 'strongly', 'resemble', 'and', 'peculiarly', '\n', 'delight', 'her', 'sister', 'of', 'say', 'too', 'much', 'what', 'he', 'think', 'on', '\n', 'every', 'occasion', 'without', 'attention', 'to', 'person', 'or', 'circumstance', '\n', 'in', 'hastily', 'form', 'and', 'give', 'his', 'opinion', 'of', 'other', 'people', '\n', 'in', 'sacrifice', 'general', 'politeness', 'to', 'the', 'enjoyment', '\n', 'of', 'undivided', 'attention', 'where', 'his', 'heart', 'be', 'engage', '\n', 'and', 'in', 'slighting', 'too', 'easily', 'the', 'form', 'of', 'worldly', 'propriety', '\n', 'he', 'display', 'a', 'want', 'of', 'caution', 'which', 'Elinor', 'could', 'not', 'approve', '\n', 'in', 'spite', 'of', 'all', 'that', 'he', 'and', 'Marianne', 'could', 'say', 'in', 'its', 'support', '\n\n', 'Marianne', 'begin', 'now', 'to', 'perceive', 'that', 'the', 'desperation', '\n', 'which', 'have', 'seize', 'she', 'at', 'sixteen', 'and', 'a', 'half', 'of', 'ever', '\n', 'see', 'a', 'man', 'who', 'could', 'satisfy', 'her', 'idea', 'of', 'perfection', '\n', 'have', 'be', 'rash', 'and', 'unjustifiable', ' ', 'Willoughby', 'be', 'all', '\n', 'that', 'her', 'fancy', 'have', 'delineate', 'in', 'that', 'unhappy', 'hour', '\n', 'and', 'in', 'every', 'bright', 'period', 'as', 'capable', 'of', 'attach', 'she', '\n', 'and', 'his', 'behaviour', 'declare', 'his', 'wish', 'to', 'be', 'in', 'that', 'respect', '\n', 'as', 'earnest', 'as', 'his', 'ability', 'be', 'strong', '\n\n', 'her', 'mother', 'too', 'in', 'whose', 'mind', 'not', 'one', 'speculative', '\n', 'thought', 'of', 'their', 'marriage', 'have', 'be', 'raise', 'by', 'his', 'prospect', '\n', 'of', 'rich', 'be', 'lead', 'before', 'the', 'end', 'of', 'a', 'week', 'to', 'hope', 'and', '\n', 'expect', 'it', 'and', 'secretly', 'to', 'congratulate', 'herself', 'on', 'have', '\n', 'gain', 'two', 'such', 'sonsinlaw', 'as', 'Edward', 'and', 'Willoughby', '\n\n', 'Colonel', 'Brandons', 'partiality', 'for', 'Marianne', 'which', 'have', '\n', 'so', 'early', 'be', 'discover', 'by', 'his', 'friend', 'now', 'first', 'become', '\n', 'perceptible', 'to', 'Elinor', 'when', 'it', 'cease', 'to', 'be', 'notice', '\n', 'by', 'they', ' ', 'their', 'attention', 'and', 'wit', 'be', 'draw', 'off', 'to', 'his', '\n', 'more', 'fortunate', 'rival', 'and', 'the', 'raillery', 'which', 'the', 'other', '\n', 'have', 'incur', 'before', 'any', 'partiality', 'arise', 'be', 'remove', '\n', 'when', 'his', 'feeling', 'begin', 'really', 'to', 'call', 'for', 'the', 'ridicule', '\n', 'so', 'justly', 'annex', 'to', 'sensibility', ' ', 'Elinor', 'be', 'oblige', '\n', 'though', 'unwillingly', 'to', 'believe', 'that', 'the', 'sentiment', 'which', '\n', 'Mrs', 'Jennings', 'have', 'assign', 'he', 'for', 'her', 'own', 'satisfaction', '\n', 'be', 'now', 'actually', 'excite', 'by', 'her', 'sister', 'and', 'that', 'however', '\n', 'a', 'general', 'resemblance', 'of', 'disposition', 'between', 'the', 'party', '\n', 'might', 'forward', 'the', 'affection', 'of', 'Mr', 'Willoughby', 'an', 'equally', '\n', 'strike', 'opposition', 'of', 'character', 'be', 'no', 'hindrance', 'to', 'the', '\n', 'regard', 'of', 'Colonel', 'Brandon', ' ', 'she', 'see', 'it', 'with', 'concern', '\n', 'for', 'what', 'could', 'a', 'silent', 'man', 'of', 'five', 'and', 'thirty', 'hope', '\n', 'when', 'oppose', 'to', 'a', 'very', 'lively', 'one', 'of', 'five', 'and', 'twenty', 'and', 'as', '\n', 'she', 'could', 'not', 'even', 'wish', 'he', 'successful', 'she', 'heartily', 'wish', '\n', 'he', 'indifferent', ' ', 'she', 'like', 'himin', 'spite', 'of', 'his', 'gravity', '\n', 'and', 'reserve', 'she', 'behold', 'in', 'he', 'an', 'object', 'of', 'interest', '\n', 'his', 'manner', 'though', 'serious', 'be', 'mild', 'and', 'his', 'reserve', '\n', 'appear', 'rather', 'the', 'result', 'of', 'some', 'oppression', 'of', 'spirit', '\n', 'than', 'of', 'any', 'natural', 'gloominess', 'of', 'temper', ' ', 'Sir', 'John', '\n', 'have', 'drop', 'hint', 'of', 'past', 'injury', 'and', 'disappointment', '\n', 'which', 'justify', 'her', 'belief', 'of', 'his', 'be', 'an', 'unfortunate', 'man', '\n', 'and', 'she', 'regard', 'he', 'with', 'respect', 'and', 'compassion', '\n\n', 'perhaps', 'she', 'pity', 'and', 'esteem', 'he', 'the', 'more', '\n', 'because', 'he', 'be', 'slight', 'by', 'Willoughby', 'and', 'Marianne', '\n', 'who', 'prejudice', 'against', 'he', 'for', 'be', 'neither', 'lively', '\n', 'nor', 'young', 'seem', 'resolve', 'to', 'undervalue', 'his', 'merit', '\n\n', 'Brandon', 'be', 'just', 'the', 'kind', 'of', 'man', 'say', 'Willoughby', '\n', 'one', 'day', 'when', 'they', 'be', 'talk', 'of', 'he', 'together', '\n', 'whom', 'every', 'body', 'speak', 'well', 'of', 'and', 'nobody', 'care', 'about', '\n', 'whom', 'all', 'be', 'delighted', 'to', 'see', 'and', 'nobody', 'remember', '\n', 'to', 'talk', 'to', '\n\n', 'that', 'be', 'exactly', 'what', 'I', 'think', 'of', 'he', 'cry', 'Marianne', '\n\n', 'do', 'not', 'boast', 'of', 'it', 'however', 'say', 'Elinor', 'for', 'it', '\n', 'be', 'injustice', 'in', 'both', 'of', 'you', ' ', 'he', 'be', 'highly', 'esteemed', '\n', 'by', 'all', 'the', 'family', 'at', 'the', 'park', 'and', 'I', 'never', 'see', 'he', 'myself', '\n', 'without', 'take', 'pain', 'to', 'converse', 'with', 'he', '\n\n', 'that', 'he', 'be', 'patronise', 'by', 'you', 'reply', 'Willoughby', '\n', 'be', 'certainly', 'in', 'his', 'favour', 'but', 'as', 'for', 'the', 'esteem', '\n', 'of', 'the', 'other', 'it', 'be', 'a', 'reproach', 'in', 'itself', ' ', 'who', 'would', '\n', 'submit', 'to', 'the', 'indignity', 'of', 'be', 'approve', 'by', 'such', 'a', 'woman', '\n', 'as', 'Lady', 'Middleton', 'and', 'Mrs', 'Jennings', 'that', 'could', 'command', '\n', 'the', 'indifference', 'of', 'any', 'body', 'else', '\n\n', 'but', 'perhaps', 'the', 'abuse', 'of', 'such', 'people', 'as', 'yourself', '\n', 'and', 'Marianne', 'will', 'make', 'amend', 'for', 'the', 'regard', 'of', 'Lady', '\n', 'Middleton', 'and', 'her', 'mother', ' ', 'if', 'their', 'praise', 'be', 'censure', '\n', 'your', 'censure', 'may', 'be', 'praise', 'for', 'they', 'be', 'not', 'more', 'undiscerning', '\n', 'than', 'you', 'be', 'prejudiced', 'and', 'unjust', '\n\n', 'in', 'defence', 'of', 'your', 'protege', 'you', 'can', 'even', 'be', 'saucy', '\n\n', 'my', 'protege', 'as', 'you', 'call', 'he', 'be', 'a', 'sensible', 'man', '\n', 'and', 'sense', 'will', 'always', 'have', 'attraction', 'for', 'I', '\n', 'yes', 'Marianne', 'even', 'in', 'a', 'man', 'between', 'thirty', 'and', 'forty', '\n', 'he', 'have', 'see', 'a', 'great', 'deal', 'of', 'the', 'world', 'have', 'be', 'abroad', '\n', 'have', 'read', 'and', 'have', 'a', 'thinking', 'mind', ' ', 'I', 'have', 'find', 'he', '\n', 'capable', 'of', 'give', 'I', 'much', 'information', 'on', 'various', 'subject', '\n', 'and', 'he', 'have', 'always', 'answer', 'my', 'inquiry', 'with', 'readiness', 'of', '\n', 'goodbreeding', 'and', 'good', 'nature', '\n\n', 'that', 'be', 'to', 'say', 'cry', 'Marianne', 'contemptuously', '\n', 'he', 'have', 'tell', 'you', 'that', 'in', 'the', 'East', 'Indies', 'the', 'climate', 'be', 'hot', '\n', 'and', 'the', 'mosquito', 'be', 'troublesome', '\n\n', 'he', 'would', 'have', 'tell', 'I', 'so', 'I', 'doubt', 'not', 'have', 'I', 'make', '\n', 'any', 'such', 'inquiry', 'but', 'they', 'happen', 'to', 'be', 'point', '\n', 'on', 'which', 'I', 'have', 'be', 'previously', 'inform', '\n\n', 'perhaps', 'say', 'Willoughby', 'his', 'observation', 'may', '\n', 'have', 'extend', 'to', 'the', 'existence', 'of', 'nabobs', 'gold', 'mohrs', '\n', 'and', 'palanquin', '\n\n', 'I', 'may', 'venture', 'to', 'say', 'that', 'his', 'observation', '\n', 'have', 'stretch', 'much', 'far', 'than', 'your', 'candour', '\n', 'but', 'why', 'should', 'you', 'dislike', 'he', '\n\n', 'I', 'do', 'not', 'dislike', 'he', ' ', 'I', 'consider', 'he', 'on', 'the', 'contrary', '\n', 'as', 'a', 'very', 'respectable', 'man', 'who', 'have', 'every', 'bodys', 'good', 'word', '\n', 'and', 'nobodys', 'notice', 'who', 'have', 'more', 'money', 'than', 'he', 'can', 'spend', '\n', 'more', 'time', 'than', 'he', 'know', 'how', 'to', 'employ', 'and', 'two', 'new', 'coat', '\n', 'every', 'year', '\n\n', 'add', 'to', 'which', 'cry', 'Marianne', 'that', 'he', 'have', '\n', 'neither', 'genius', 'taste', 'nor', 'spirit', ' ', 'that', 'his', 'understanding', '\n', 'have', 'no', 'brilliancy', 'his', 'feeling', 'no', 'ardour', 'and', 'his', 'voice', '\n', 'no', 'expression', '\n\n', 'you', 'decide', 'on', 'his', 'imperfection', 'so', 'much', 'in', 'the', 'mass', '\n', 'reply', 'Elinor', 'and', 'so', 'much', 'on', 'the', 'strength', 'of', 'your', '\n', 'own', 'imagination', 'that', 'the', 'commendation', 'I', 'be', 'able', 'to', 'give', '\n', 'of', 'he', 'be', 'comparatively', 'cold', 'and', 'insipid', ' ', 'I', 'can', 'only', '\n', 'pronounce', 'he', 'to', 'be', 'a', 'sensible', 'man', 'wellbre', 'wellinforme', '\n', 'of', 'gentle', 'address', 'and', 'I', 'believe', 'possess', 'an', 'amiable', 'heart', '\n\n', 'Miss', 'Dashwood', 'cry', 'Willoughby', 'you', 'be', 'now', 'use', '\n', 'I', 'unkindly', ' ', 'you', 'be', 'endeavour', 'to', 'disarm', 'I', 'by', 'reason', '\n', 'and', 'to', 'convince', 'I', 'against', 'my', 'will', ' ', 'but', 'it', 'will', 'not', 'do', '\n', 'you', 'shall', 'find', 'I', 'as', 'stubborn', 'as', 'you', 'can', 'be', 'artful', ' ', 'I', 'have', '\n', 'three', 'unanswerable', 'reason', 'for', 'dislike', 'Colonel', 'Brandon', '\n', 'he', 'threaten', 'I', 'with', 'rain', 'when', 'I', 'want', 'it', 'to', 'be', 'fine', '\n', 'he', 'have', 'find', 'fault', 'with', 'the', 'hanging', 'of', 'my', 'curricle', '\n', 'and', 'I', 'can', 'not', 'persuade', 'he', 'to', 'buy', 'my', 'brown', 'mare', ' ', 'if', 'it', '\n', 'will', 'be', 'any', 'satisfaction', 'to', 'you', 'however', 'to', 'be', 'tell', '\n', 'that', 'I', 'believe', 'his', 'character', 'to', 'be', 'in', 'other', 'respect', '\n', 'irreproachable', 'I', 'be', 'ready', 'to', 'confess', 'it', ' ', 'and', 'in', 'return', '\n', 'for', 'an', 'acknowledgment', 'which', 'must', 'give', 'I', 'some', 'pain', '\n', 'you', 'can', 'not', 'deny', 'I', 'the', 'privilege', 'of', 'dislike', 'he', 'as', 'much', '\n', 'as', 'ever', '\n\n\n\n', 'chapter', '11', '\n\n\n', 'Little', 'have', 'Mrs', 'Dashwood', 'or', 'her', 'daughter', 'imagine', '\n', 'when', 'they', 'first', 'come', 'into', 'Devonshire', 'that', 'so', 'many', '\n', 'engagement', 'would', 'arise', 'to', 'occupy', 'their', 'time', 'as', 'shortly', '\n', 'present', 'themselves', 'or', 'that', 'they', 'should', 'have', 'such', 'frequent', '\n', 'invitation', 'and', 'such', 'constant', 'visitor', 'as', 'to', 'leave', 'they', 'little', '\n', 'leisure', 'for', 'serious', 'employment', ' ', 'yet', 'such', 'be', 'the', 'case', '\n', 'when', 'Marianne', 'be', 'recover', 'the', 'scheme', 'of', 'amusement', 'at', 'home', '\n', 'and', 'abroad', 'which', 'Sir', 'John', 'have', 'be', 'previously', 'form', '\n', 'be', 'put', 'into', 'execution', ' ', 'the', 'private', 'ball', 'at', 'the', 'park', '\n', 'then', 'begin', 'and', 'party', 'on', 'the', 'water', 'be', 'make', 'and', '\n', 'accomplish', 'as', 'often', 'as', 'a', 'showery', 'October', 'would', 'allow', '\n', 'in', 'every', 'meeting', 'of', 'the', 'kind', 'Willoughby', 'be', 'include', '\n', 'and', 'the', 'ease', 'and', 'familiarity', 'which', 'naturally', 'attend', '\n', 'these', 'party', 'be', 'exactly', 'calculate', 'to', 'give', 'increase', '\n', 'intimacy', 'to', 'his', 'acquaintance', 'with', 'the', 'Dashwoods', 'to', 'afford', '\n', 'he', 'opportunity', 'of', 'witness', 'the', 'excellency', 'of', 'Marianne', '\n', 'of', 'mark', 'his', 'animate', 'admiration', 'of', 'she', 'and', 'of', 'receive', '\n', 'in', 'her', 'behaviour', 'to', 'himself', 'the', 'most', 'pointed', 'assurance', '\n', 'of', 'her', 'affection', '\n\n', 'Elinor', 'could', 'not', 'be', 'surprised', 'at', 'their', 'attachment', '\n', 'she', 'only', 'wish', 'that', 'it', 'be', 'less', 'openly', 'shew', 'and', 'once', '\n', 'or', 'twice', 'do', 'venture', 'to', 'suggest', 'the', 'propriety', 'of', 'some', '\n', 'selfcommand', 'to', 'Marianne', ' ', 'but', 'Marianne', 'abhor', 'all', '\n', 'concealment', 'where', 'no', 'real', 'disgrace', 'could', 'attend', 'unreserve', '\n', 'and', 'to', 'aim', 'at', 'the', 'restraint', 'of', 'sentiment', 'which', 'be', 'not', '\n', 'in', 'themselves', 'illaudable', 'appear', 'to', 'she', 'not', 'merely', '\n', 'an', 'unnecessary', 'effort', 'but', 'a', 'disgraceful', 'subjection', '\n', 'of', 'reason', 'to', 'commonplace', 'and', 'mistaken', 'notion', '\n', 'Willoughby', 'think', 'the', 'same', 'and', 'their', 'behaviour', 'at', '\n', 'all', 'time', 'be', 'an', 'illustration', 'of', 'their', 'opinion', '\n\n', 'when', 'he', 'be', 'present', 'she', 'have', 'no', 'eye', 'for', 'any', 'one', 'else', '\n', 'every', 'thing', 'he', 'do', 'be', 'right', ' ', 'every', 'thing', 'he', 'say', 'be', 'clever', '\n', 'if', 'their', 'evening', 'at', 'the', 'park', 'be', 'conclude', 'with', 'card', '\n', 'he', 'cheat', 'himself', 'and', 'all', 'the', 'rest', 'of', 'the', 'party', 'to', 'get', '\n', 'she', 'a', 'good', 'hand', ' ', 'if', 'dancing', 'form', 'the', 'amusement', '\n', 'of', 'the', 'night', 'they', 'be', 'partner', 'for', 'half', 'the', 'time', '\n', 'and', 'when', 'oblige', 'to', 'separate', 'for', 'a', 'couple', 'of', 'dance', '\n', 'be', 'careful', 'to', 'stand', 'together', 'and', 'scarcely', 'speak', 'a', 'word', '\n', 'to', 'any', 'body', 'else', ' ', 'such', 'conduct', 'make', 'they', 'of', 'course', '\n', 'most', 'exceedingly', 'laugh', 'at', 'but', 'ridicule', 'could', 'not', 'shame', '\n', 'and', 'seem', 'hardly', 'to', 'provoke', 'they', '\n\n', 'Mrs', 'Dashwood', 'enter', 'into', 'all', 'their', 'feeling', 'with', '\n', 'a', 'warmth', 'which', 'leave', 'she', 'no', 'inclination', 'for', 'check', 'this', '\n', 'excessive', 'display', 'of', 'they', ' ', 'to', 'she', 'it', 'be', 'but', 'the', 'natural', '\n', 'consequence', 'of', 'a', 'strong', 'affection', 'in', 'a', 'young', 'and', 'ardent', 'mind', '\n\n', 'this', 'be', 'the', 'season', 'of', 'happiness', 'to', 'Marianne', '\n', 'her', 'heart', 'be', 'devoted', 'to', 'Willoughby', 'and', 'the', 'fond', 'attachment', '\n', 'to', 'Norland', 'which', 'she', 'bring', 'with', 'she', 'from', 'Sussex', '\n', 'be', 'more', 'likely', 'to', 'be', 'soften', 'than', 'she', 'have', 'think', 'it', '\n', 'possible', 'before', 'by', 'the', 'charm', 'which', 'his', 'society', 'bestow', '\n', 'on', 'her', 'present', 'home', '\n\n', 'Elinors', 'happiness', 'be', 'not', 'so', 'great', ' ', 'her', 'heart', 'be', 'not', '\n', 'so', 'much', 'at', 'ease', 'nor', 'her', 'satisfaction', 'in', 'their', 'amusement', '\n', 'so', 'pure', ' ', 'they', 'afford', 'she', 'no', 'companion', 'that', 'could', 'make', '\n', 'amend', 'for', 'what', 'she', 'have', 'leave', 'behind', 'nor', 'that', 'could', 'teach', '\n', 'she', 'to', 'think', 'of', 'Norland', 'with', 'less', 'regret', 'than', 'ever', '\n', 'Neither', 'Lady', 'Middleton', 'nor', 'Mrs', 'Jennings', 'could', 'supply', '\n', 'to', 'she', 'the', 'conversation', 'she', 'miss', 'although', 'the', 'latter', '\n', 'be', 'an', 'everlasting', 'talker', 'and', 'from', 'the', 'first', 'have', 'regard', '\n', 'she', 'with', 'a', 'kindness', 'which', 'ensure', 'she', 'a', 'large', 'share', 'of', '\n', 'her', 'discourse', ' ', 'she', 'have', 'already', 'repeat', 'her', 'own', 'history', '\n', 'to', 'Elinor', 'three', 'or', 'four', 'time', 'and', 'have', 'Elinors', 'memory', 'be', '\n', 'equal', 'to', 'her', 'mean', 'of', 'improvement', 'she', 'might', 'have', 'know', '\n', 'very', 'early', 'in', 'their', 'acquaintance', 'all', 'the', 'particular', 'of', '\n', 'Mr', 'Jennings', 'last', 'illness', 'and', 'what', 'he', 'say', 'to', 'his', 'wife', '\n', 'a', 'few', 'minute', 'before', 'he', 'die', ' ', 'Lady', 'Middleton', 'be', 'more', '\n', 'agreeable', 'than', 'her', 'mother', 'only', 'in', 'be', 'more', 'silent', '\n', 'Elinor', 'need', 'little', 'observation', 'to', 'perceive', 'that', 'her', '\n', 'reserve', 'be', 'a', 'mere', 'calmness', 'of', 'manner', 'with', 'which', 'sense', '\n', 'have', 'nothing', 'to', 'do', ' ', 'towards', 'her', 'husband', 'and', 'mother', 'she', '\n', 'be', 'the', 'same', 'as', 'to', 'they', 'and', 'intimacy', 'be', 'therefore', '\n', 'neither', 'to', 'be', 'look', 'for', 'nor', 'desire', ' ', 'she', 'have', 'nothing', '\n', 'to', 'say', 'one', 'day', 'that', 'she', 'have', 'not', 'say', 'the', 'day', 'before', '\n', 'her', 'insipidity', 'be', 'invariable', 'for', 'even', 'her', 'spirit', 'be', '\n', 'always', 'the', 'same', 'and', 'though', 'she', 'do', 'not', 'oppose', 'the', 'party', '\n', 'arrange', 'by', 'her', 'husband', 'provide', 'every', 'thing', 'be', 'conduct', '\n', 'in', 'style', 'and', 'her', 'two', 'eld', 'child', 'attend', 'she', '\n', 'she', 'never', 'appear', 'to', 'receive', 'more', 'enjoyment', 'from', 'they', '\n', 'than', 'she', 'might', 'have', 'experience', 'in', 'sit', 'at', 'home', '\n', 'and', 'so', 'little', 'do', 'her', 'presence', 'add', 'to', 'the', 'pleasure', '\n', 'of', 'the', 'other', 'by', 'any', 'share', 'in', 'their', 'conversation', '\n', 'that', 'they', 'be', 'sometimes', 'only', 'remind', 'of', 'she', 'be', '\n', 'amongst', 'they', 'by', 'her', 'solicitude', 'about', 'her', 'troublesome', 'boy', '\n\n', 'in', 'Colonel', 'Brandon', 'alone', 'of', 'all', 'her', 'new', 'acquaintance', '\n', 'do', 'Elinor', 'find', 'a', 'person', 'who', 'could', 'in', 'any', 'degree', 'claim', 'the', '\n', 'respect', 'of', 'ability', 'excite', 'the', 'interest', 'of', 'friendship', '\n', 'or', 'give', 'pleasure', 'as', 'a', 'companion', ' ', 'Willoughby', 'be', 'out', '\n', 'of', 'the', 'question', ' ', 'her', 'admiration', 'and', 'regard', 'even', 'her', '\n', 'sisterly', 'regard', 'be', 'all', 'his', 'own', 'but', 'he', 'be', 'a', 'lover', '\n', 'his', 'attention', 'be', 'wholly', 'Mariannes', 'and', 'a', 'far', 'less', '\n', 'agreeable', 'man', 'might', 'have', 'be', 'more', 'generally', 'pleasing', '\n', 'Colonel', 'Brandon', 'unfortunately', 'for', 'himself', 'have', 'no', 'such', '\n', 'encouragement', 'to', 'think', 'only', 'of', 'Marianne', 'and', 'in', 'conversing', '\n', 'with', 'Elinor', 'he', 'find', 'the', 'great', 'consolation', 'for', 'the', '\n', 'indifference', 'of', 'her', 'sister', '\n\n', 'Elinors', 'compassion', 'for', 'he', 'increase', 'as', 'she', 'have', 'reason', '\n', 'to', 'suspect', 'that', 'the', 'misery', 'of', 'disappointed', 'love', 'have', 'already', '\n', 'be', 'know', 'to', 'he', ' ', 'this', 'suspicion', 'be', 'give', 'by', 'some', 'word', '\n', 'which', 'accidently', 'drop', 'from', 'he', 'one', 'evening', 'at', 'the', 'park', '\n', 'when', 'they', 'be', 'sit', 'down', 'together', 'by', 'mutual', 'consent', '\n', 'while', 'the', 'other', 'be', 'dance', ' ', 'his', 'eye', 'be', 'fix', '\n', 'on', 'Marianne', 'and', 'after', 'a', 'silence', 'of', 'some', 'minute', '\n', 'he', 'say', 'with', 'a', 'faint', 'smile', 'your', 'sister', 'I', 'understand', '\n', 'do', 'not', 'approve', 'of', 'second', 'attachment', '\n\n', 'no', 'reply', 'Elinor', 'her', 'opinion', 'be', 'all', 'romantic', '\n\n', 'or', 'rather', 'as', 'I', 'believe', 'she', 'consider', 'they', '\n', 'impossible', 'to', 'exist', '\n\n', 'I', 'believe', 'she', 'do', ' ', 'but', 'how', 'she', 'contrive', 'it', '\n', 'without', 'reflect', 'on', 'the', 'character', 'of', 'her', 'own', 'father', '\n', 'who', 'have', 'himself', 'two', 'wife', 'I', 'know', 'not', ' ', 'a', 'few', 'year', '\n', 'however', 'will', 'settle', 'her', 'opinion', 'on', 'the', 'reasonable', 'basis', '\n', 'of', 'common', 'sense', 'and', 'observation', 'and', 'then', 'they', 'may', 'be', '\n', 'more', 'easy', 'to', 'define', 'and', 'to', 'justify', 'than', 'they', 'now', 'be', '\n', 'by', 'any', 'body', 'but', 'herself', '\n\n', 'this', 'will', 'probably', 'be', 'the', 'case', 'he', 'reply', '\n', 'and', 'yet', 'there', 'be', 'something', 'so', 'amiable', 'in', 'the', 'prejudice', '\n', 'of', 'a', 'young', 'mind', 'that', 'one', 'be', 'sorry', 'to', 'see', 'they', 'give', 'way', '\n', 'to', 'the', 'reception', 'of', 'more', 'general', 'opinion', '\n\n', 'I', 'can', 'not', 'agree', 'with', 'you', 'there', 'say', 'Elinor', '\n', 'there', 'be', 'inconvenience', 'attend', 'such', 'feeling', '\n', 'as', 'Mariannes', 'which', 'all', 'the', 'charm', 'of', 'enthusiasm', 'and', '\n', 'ignorance', 'of', 'the', 'world', 'can', 'not', 'atone', 'for', ' ', 'her', 'system', 'have', '\n', 'all', 'the', 'unfortunate', 'tendency', 'of', 'set', 'propriety', 'at', 'nought', '\n', 'and', 'a', 'well', 'acquaintance', 'with', 'the', 'world', 'be', 'what', 'I', 'look', '\n', 'forward', 'to', 'as', 'her', 'great', 'possible', 'advantage', '\n\n', 'after', 'a', 'short', 'pause', 'he', 'resume', 'the', 'conversation', '\n', 'by', 'say', '\n\n', 'do', 'your', 'sister', 'make', 'no', 'distinction', 'in', 'her', 'objection', '\n', 'against', 'a', 'second', 'attachment', 'or', 'be', 'it', 'equally', 'criminal', '\n', 'in', 'every', 'body', ' ', 'be', 'those', 'who', 'have', 'be', 'disappoint', '\n', 'in', 'their', 'first', 'choice', 'whether', 'from', 'the', 'inconstancy', '\n', 'of', 'its', 'object', 'or', 'the', 'perverseness', 'of', 'circumstance', '\n', 'to', 'be', 'equally', 'indifferent', 'during', 'the', 'rest', 'of', 'their', 'life', '\n\n', 'upon', 'my', 'word', 'I', 'be', 'not', 'acquaint', 'with', 'the', 'minutia', '\n', 'of', 'her', 'principle', ' ', 'I', 'only', 'know', 'that', 'I', 'never', 'yet', 'hear', 'she', '\n', 'admit', 'any', 'instance', 'of', 'a', 'second', 'attachment', 'be', 'pardonable', '\n\n', 'this', 'say', 'he', 'can', 'not', 'hold', 'but', 'a', 'change', '\n', 'a', 'total', 'change', 'of', 'sentimentsNo', 'no', 'do', 'not', 'desire', 'it', '\n', 'for', 'when', 'the', 'romantic', 'refinement', 'of', 'a', 'young', 'mind', '\n', 'be', 'oblige', 'to', 'give', 'way', 'how', 'frequently', 'be', 'they', '\n', 'succeed', 'by', 'such', 'opinion', 'as', 'be', 'but', 'too', 'common', 'and', 'too', '\n', 'dangerous', ' ', 'I', 'speak', 'from', 'experience', ' ', 'I', 'once', 'know', 'a', 'lady', '\n', 'who', 'in', 'temper', 'and', 'mind', 'greatly', 'resemble', 'your', 'sister', '\n', 'who', 'think', 'and', 'judge', 'like', 'she', 'but', 'who', 'from', 'an', 'inforced', '\n', 'changefrom', 'a', 'series', 'of', 'unfortunate', 'circumstance', '\n', 'here', 'he', 'stopt', 'suddenly', 'appear', 'to', 'think', 'that', 'he', 'have', 'say', '\n', 'too', 'much', 'and', 'by', 'his', 'countenance', 'give', 'rise', 'to', 'conjecture', '\n', 'which', 'might', 'not', 'otherwise', 'have', 'enter', 'Elinors', 'head', '\n', 'the', 'lady', 'would', 'probably', 'have', 'pass', 'without', 'suspicion', '\n', 'have', 'he', 'not', 'convince', 'Miss', 'Dashwood', 'that', 'what', 'concern', '\n', 'she', 'ought', 'not', 'to', 'escape', 'his', 'lip', ' ', 'as', 'it', 'be', '\n', 'it', 'require', 'but', 'a', 'slight', 'effort', 'of', 'fancy', 'to', 'connect', 'his', '\n', 'emotion', 'with', 'the', 'tender', 'recollection', 'of', 'past', 'regard', '\n', 'Elinor', 'attempt', 'no', 'more', ' ', 'but', 'Marianne', 'in', 'her', 'place', '\n', 'would', 'not', 'have', 'do', 'so', 'little', ' ', 'the', 'whole', 'story', 'would', '\n', 'have', 'be', 'speedily', 'form', 'under', 'her', 'active', 'imagination', '\n', 'and', 'every', 'thing', 'establish', 'in', 'the', 'most', 'melancholy', 'order', '\n', 'of', 'disastrous', 'love', '\n\n\n\n', 'chapter', '12', '\n\n\n', 'as', 'Elinor', 'and', 'Marianne', 'be', 'walk', 'together', 'the', '\n', 'next', 'morning', 'the', 'latter', 'communicate', 'a', 'piece', 'of', 'news', '\n', 'to', 'her', 'sister', 'which', 'in', 'spite', 'of', 'all', 'that', 'she', 'know', '\n', 'before', 'of', 'Mariannes', 'imprudence', 'and', 'want', 'of', 'thought', '\n', 'surprise', 'she', 'by', 'its', 'extravagant', 'testimony', 'of', 'both', '\n', 'Marianne', 'tell', 'she', 'with', 'the', 'great', 'delight', 'that', '\n', 'Willoughby', 'have', 'give', 'she', 'a', 'horse', 'one', 'that', 'he', 'have', 'breed', '\n', 'himself', 'on', 'his', 'estate', 'in', 'Somersetshire', 'and', 'which', 'be', '\n', 'exactly', 'calculate', 'to', 'carry', 'a', 'woman', ' ', 'without', 'consider', '\n', 'that', 'it', 'be', 'not', 'in', 'her', 'mother', 'plan', 'to', 'keep', 'any', 'horse', '\n', 'that', 'if', 'she', 'be', 'to', 'alter', 'her', 'resolution', 'in', 'favour', 'of', '\n', 'this', 'gift', 'she', 'must', 'buy', 'another', 'for', 'the', 'servant', 'and', '\n', 'keep', 'a', 'servant', 'to', 'ride', 'it', 'and', 'after', 'all', 'build', 'a', 'stable', '\n', 'to', 'receive', 'they', 'she', 'have', 'accept', 'the', 'present', 'without', '\n', 'hesitation', 'and', 'tell', 'her', 'sister', 'of', 'it', 'in', 'rapture', '\n\n', 'he', 'intend', 'to', 'send', 'his', 'groom', 'into', 'Somersetshire', '\n', 'immediately', 'for', 'it', 'she', 'add', 'and', 'when', 'it', 'arrive', 'we', '\n', 'will', 'ride', 'every', 'day', ' ', 'you', 'shall', 'share', 'its', 'use', 'with', 'I', '\n', 'Imagine', 'to', 'yourself', 'my', 'dear', 'Elinor', 'the', 'delight', 'of', 'a', 'gallop', '\n', 'on', 'some', 'of', 'these', 'down', '\n\n', 'most', 'unwilling', 'be', 'she', 'to', 'awaken', 'from', 'such', 'a', 'dream', 'of', '\n', 'felicity', 'to', 'comprehend', 'all', 'the', 'unhappy', 'truth', 'which', 'attend', '\n', 'the', 'affair', 'and', 'for', 'some', 'time', 'she', 'refuse', 'to', 'submit', 'to', 'they', '\n', 'as', 'to', 'an', 'additional', 'servant', 'the', 'expense', 'would', 'be', 'a', 'trifle', '\n', 'Mamma', 'she', 'be', 'sure', 'would', 'never', 'object', 'to', 'it', 'and', 'any', 'horse', '\n', 'would', 'do', 'for', 'HIM', 'he', 'might', 'always', 'get', 'one', 'at', 'the', 'park', '\n', 'as', 'to', 'a', 'stable', 'the', 'mere', 'shed', 'would', 'be', 'sufficient', '\n', 'Elinor', 'then', 'venture', 'to', 'doubt', 'the', 'propriety', 'of', 'her', 'receive', '\n', 'such', 'a', 'present', 'from', 'a', 'man', 'so', 'little', 'or', 'at', 'least', 'so', 'lately', '\n', 'know', 'to', 'her', ' ', 'this', 'be', 'too', 'much', '\n\n', 'you', 'be', 'mistake', 'Elinor', 'say', 'she', 'warmly', '\n', 'in', 'supposing', 'I', 'know', 'very', 'little', 'of', 'Willoughby', '\n', 'I', 'have', 'not', 'know', 'he', 'long', 'indeed', 'but', 'I', 'be', 'much', 'well', '\n', 'acquaint', 'with', 'he', 'than', 'I', 'be', 'with', 'any', 'other', 'creature', '\n', 'in', 'the', 'world', 'except', 'yourself', 'and', 'mama', ' ', 'it', 'be', 'not', '\n', 'time', 'or', 'opportunity', 'that', 'be', 'to', 'determine', 'intimacy', '\n', 'it', 'be', 'disposition', 'alone', ' ', 'seven', 'year', 'would', 'be', 'insufficient', '\n', 'to', 'make', 'some', 'people', 'acquaint', 'with', 'each', 'other', 'and', 'seven', '\n', 'day', 'be', 'more', 'than', 'enough', 'for', 'other', ' ', 'I', 'should', 'hold', '\n', 'myself', 'guilty', 'of', 'great', 'impropriety', 'in', 'accept', 'a', 'horse', '\n', 'from', 'my', 'brother', 'than', 'from', 'Willoughby', ' ', 'of', 'John', 'I', 'know', '\n', 'very', 'little', 'though', 'we', 'have', 'live', 'together', 'for', 'year', '\n', 'but', 'of', 'Willoughby', 'my', 'judgment', 'have', 'long', 'be', 'form', '\n\n', 'Elinor', 'think', 'it', 'wise', 'to', 'touch', 'that', 'point', 'no', 'more', '\n', 'she', 'know', 'her', 'sister', 'temper', ' ', 'Opposition', 'on', 'so', 'tender', 'a', '\n', 'subject', 'would', 'only', 'attach', 'she', 'the', 'more', 'to', 'her', 'own', 'opinion', '\n', 'but', 'by', 'an', 'appeal', 'to', 'her', 'affection', 'for', 'her', 'mother', '\n', 'by', 'represent', 'the', 'inconvenience', 'which', 'that', 'indulgent', '\n', 'mother', 'must', 'draw', 'on', 'herself', 'if', 'as', 'would', 'probably', 'be', '\n', 'the', 'case', 'she', 'consent', 'to', 'this', 'increase', 'of', 'establishment', '\n', 'Marianne', 'be', 'shortly', 'subdue', 'and', 'she', 'promise', 'not', 'to', '\n', 'tempt', 'her', 'mother', 'to', 'such', 'imprudent', 'kindness', 'by', 'mention', '\n', 'the', 'offer', 'and', 'to', 'tell', 'Willoughby', 'when', 'she', 'see', 'he', 'next', '\n', 'that', 'it', 'must', 'be', 'decline', '\n\n', 'she', 'be', 'faithful', 'to', 'her', 'word', 'and', 'when', 'Willoughby', '\n', 'call', 'at', 'the', 'cottage', 'the', 'same', 'day', 'Elinor', 'hear', 'she', '\n', 'express', 'her', 'disappointment', 'to', 'he', 'in', 'a', 'low', 'voice', 'on', '\n', 'be', 'oblige', 'to', 'forego', 'the', 'acceptance', 'of', 'his', 'present', '\n', 'the', 'reason', 'for', 'this', 'alteration', 'be', 'at', 'the', 'same', 'time', 'relate', '\n', 'and', 'they', 'be', 'such', 'as', 'to', 'make', 'further', 'entreaty', 'on', 'his', '\n', 'side', 'impossible', ' ', 'his', 'concern', 'however', 'be', 'very', 'apparent', '\n', 'and', 'after', 'express', 'it', 'with', 'earnestness', 'he', 'add', '\n', 'in', 'the', 'same', 'low', 'voiceBut', 'Marianne', 'the', 'horse', 'be', '\n', 'still', 'yours', 'though', 'you', 'can', 'not', 'use', 'it', 'now', ' ', 'I', 'shall', 'keep', '\n', 'it', 'only', 'till', 'you', 'can', 'claim', 'it', ' ', 'when', 'you', 'leave', 'Barton', '\n', 'to', 'form', 'your', 'own', 'establishment', 'in', 'a', 'more', 'lasting', 'home', '\n', 'Queen', 'Mab', 'shall', 'receive', 'you', '\n\n', 'this', 'be', 'all', 'overhear', 'by', 'Miss', 'Dashwood', 'and', 'in', 'the', '\n', 'whole', 'of', 'the', 'sentence', 'in', 'his', 'manner', 'of', 'pronounce', 'it', '\n', 'and', 'in', 'his', 'address', 'her', 'sister', 'by', 'her', 'christian', 'name', 'alone', '\n', 'she', 'instantly', 'see', 'an', 'intimacy', 'so', 'decide', 'a', 'meaning', '\n', 'so', 'direct', 'as', 'mark', 'a', 'perfect', 'agreement', 'between', 'they', '\n', 'from', 'that', 'moment', 'she', 'doubt', 'not', 'of', 'their', 'be', 'engage', '\n', 'to', 'each', 'other', 'and', 'the', 'belief', 'of', 'it', 'create', 'no', 'other', 'surprise', '\n', 'than', 'that', 'she', 'or', 'any', 'of', 'their', 'friend', 'should', 'be', 'leave', '\n', 'by', 'temper', 'so', 'frank', 'to', 'discover', 'it', 'by', 'accident', '\n\n', 'Margaret', 'relate', 'something', 'to', 'she', 'the', 'next', 'day', '\n', 'which', 'place', 'this', 'matter', 'in', 'a', 'still', 'clear', 'light', '\n', 'Willoughby', 'have', 'spend', 'the', 'precede', 'evening', 'with', 'they', '\n', 'and', 'Margaret', 'by', 'be', 'leave', 'some', 'time', 'in', 'the', 'parlour', '\n', 'with', 'only', 'he', 'and', 'Marianne', 'have', 'have', 'opportunity', '\n', 'for', 'observation', 'which', 'with', 'a', 'most', 'important', 'face', '\n', 'she', 'communicate', 'to', 'her', 'eld', 'sister', 'when', 'they', 'be', '\n', 'next', 'by', 'themselves', '\n\n', 'oh', 'Elinor', 'she', 'cry', 'I', 'have', 'such', 'a', 'secret', 'to', '\n', 'tell', 'you', 'about', 'Marianne', ' ', 'I', 'be', 'sure', 'she', 'will', 'be', 'marry', '\n', 'to', 'Mr', 'Willoughby', 'very', 'soon', '\n\n', 'you', 'have', 'say', 'so', 'reply', 'Elinor', 'almost', 'every', '\n', 'day', 'since', 'they', 'first', 'meet', 'on', 'Highchurch', 'Down', 'and', 'they', '\n', 'have', 'not', 'know', 'each', 'other', 'a', 'week', 'I', 'believe', 'before', 'you', '\n', 'be', 'certain', 'that', 'Marianne', 'wear', 'his', 'picture', 'round', 'her', 'neck', '\n', 'but', 'it', 'turn', 'out', 'to', 'be', 'only', 'the', 'miniature', 'of', 'our', 'great', 'uncle', '\n\n', 'but', 'indeed', 'this', 'be', 'quite', 'another', 'thing', ' ', 'I', 'be', 'sure', '\n', 'they', 'will', 'be', 'marry', 'very', 'soon', 'for', 'he', 'have', 'get', 'a', 'lock', '\n', 'of', 'her', 'hair', '\n\n', 'take', 'care', 'Margaret', ' ', 'it', 'may', 'be', 'only', 'the', 'hair', '\n', 'of', 'some', 'great', 'uncle', 'of', 'his', '\n\n', 'but', 'indeed', 'Elinor', 'it', 'be', 'Mariannes', 'I', 'be', 'almost', '\n', 'sure', 'it', 'be', 'for', 'I', 'see', 'he', 'cut', 'it', 'off', ' ', 'last', 'night', '\n', 'after', 'tea', 'when', 'you', 'and', 'mama', 'go', 'out', 'of', 'the', 'room', '\n', 'they', 'be', 'whisper', 'and', 'talk', 'together', 'as', 'fast', 'as', '\n', 'could', 'be', 'and', 'he', 'seem', 'to', 'be', 'beg', 'something', 'of', 'she', '\n', 'and', 'presently', 'he', 'take', 'up', 'her', 'scissor', 'and', 'cut', 'off', 'a', 'long', '\n', 'lock', 'of', 'her', 'hair', 'for', 'it', 'be', 'all', 'tumble', 'down', 'her', 'back', '\n', 'and', 'he', 'kiss', 'it', 'and', 'fold', 'it', 'up', 'in', 'a', 'piece', 'of', 'white', 'paper', '\n', 'and', 'put', 'it', 'into', 'his', 'pocketbook', '\n\n', 'for', 'such', 'particular', 'state', 'on', 'such', 'authority', '\n', 'Elinor', 'could', 'not', 'withhold', 'her', 'credit', 'nor', 'be', 'she', 'dispose', '\n', 'to', 'it', 'for', 'the', 'circumstance', 'be', 'in', 'perfect', 'unison', 'with', '\n', 'what', 'she', 'have', 'hear', 'and', 'see', 'herself', '\n\n', 'Margarets', 'sagacity', 'be', 'not', 'always', 'display', 'in', 'a', '\n', 'way', 'so', 'satisfactory', 'to', 'her', 'sister', ' ', 'when', 'Mrs', 'Jennings', '\n', 'attack', 'her', 'one', 'evening', 'at', 'the', 'park', 'to', 'give', 'the', 'name', '\n', 'of', 'the', 'young', 'man', 'who', 'be', 'Elinors', 'particular', 'favourite', '\n', 'which', 'have', 'be', 'long', 'a', 'matter', 'of', 'great', 'curiosity', 'to', 'her', '\n', 'Margaret', 'answer', 'by', 'look', 'at', 'her', 'sister', 'and', 'say', '\n', 'I', 'must', 'not', 'tell', 'may', 'I', 'elinor', '\n\n', 'this', 'of', 'course', 'make', 'every', 'body', 'laugh', 'and', 'Elinor', '\n', 'try', 'to', 'laugh', 'too', ' ', 'but', 'the', 'effort', 'be', 'painful', '\n', 'she', 'be', 'convince', 'that', 'Margaret', 'have', 'fix', 'on', 'a', 'person', '\n', 'whose', 'name', 'she', 'could', 'not', 'bear', 'with', 'composure', 'to', 'become', '\n', 'a', 'stand', 'joke', 'with', 'Mrs', 'Jennings', '\n\n', 'Marianne', 'feel', 'for', 'she', 'most', 'sincerely', 'but', 'she', 'do', '\n', 'more', 'harm', 'than', 'good', 'to', 'the', 'cause', 'by', 'turn', 'very', 'red', '\n', 'and', 'say', 'in', 'an', 'angry', 'manner', 'to', 'Margaret', '\n\n', 'remember', 'that', 'whatever', 'your', 'conjecture', 'may', 'be', '\n', 'you', 'have', 'no', 'right', 'to', 'repeat', 'they', '\n\n', 'I', 'never', 'have', 'any', 'conjecture', 'about', 'it', 'reply', 'Margaret', '\n', 'it', 'be', 'you', 'who', 'tell', 'I', 'of', 'it', 'yourself', '\n\n', 'this', 'increase', 'the', 'mirth', 'of', 'the', 'company', 'and', 'Margaret', '\n', 'be', 'eagerly', 'press', 'to', 'say', 'something', 'more', '\n\n', 'oh', 'pray', 'Miss', 'Margaret', 'let', 'we', 'know', 'all', 'about', 'it', '\n', 'say', 'Mrs', 'Jennings', ' ', 'what', 'be', 'the', 'gentlemans', 'name', '\n\n', 'I', 'must', 'not', 'tell', 'maam', 'but', 'I', 'know', 'very', 'well', 'what', 'it', 'be', '\n', 'and', 'I', 'know', 'where', 'he', 'be', 'too', '\n\n', 'yes', 'yes', 'we', 'can', 'guess', 'where', 'he', 'be', 'at', 'his', 'own', 'house', '\n', 'at', 'Norland', 'to', 'be', 'sure', ' ', 'he', 'be', 'the', 'curate', 'of', 'the', 'parish', '\n', 'I', 'dare', 'say', '\n\n', 'no', 'that', 'he', 'be', 'not', ' ', 'he', 'be', 'of', 'no', 'profession', 'at', 'all', '\n\n', 'Margaret', 'say', 'Marianne', 'with', 'great', 'warmth', '\n', 'you', 'know', 'that', 'all', 'this', 'be', 'an', 'invention', 'of', 'your', 'own', '\n', 'and', 'that', 'there', 'be', 'no', 'such', 'person', 'in', 'existence', '\n\n', 'well', 'then', 'he', 'be', 'lately', 'dead', 'Marianne', 'for', 'I', '\n', 'be', 'sure', 'there', 'be', 'such', 'a', 'man', 'once', 'and', 'his', 'name', 'begin', '\n', 'with', 'an', 'F', '\n\n', 'most', 'grateful', 'do', 'Elinor', 'feel', 'to', 'Lady', 'Middleton', '\n', 'for', 'observe', 'at', 'this', 'moment', 'that', 'it', 'rain', 'very', 'hard', '\n', 'though', 'she', 'believe', 'the', 'interruption', 'to', 'proceed', 'less', 'from', '\n', 'any', 'attention', 'to', 'she', 'than', 'from', 'her', 'ladyship', 'great', 'dislike', '\n', 'of', 'all', 'such', 'inelegant', 'subject', 'of', 'raillery', 'as', 'delight', '\n', 'her', 'husband', 'and', 'mother', ' ', 'the', 'idea', 'however', 'start', 'by', 'she', '\n', 'be', 'immediately', 'pursue', 'by', 'Colonel', 'Brandon', 'who', 'be', '\n', 'on', 'every', 'occasion', 'mindful', 'of', 'the', 'feeling', 'of', 'other', '\n', 'and', 'much', 'be', 'say', 'on', 'the', 'subject', 'of', 'rain', 'by', 'both', 'of', 'they', '\n', 'Willoughby', 'open', 'the', 'pianoforte', 'and', 'ask', 'Marianne', '\n', 'to', 'sit', 'down', 'to', 'it', 'and', 'thus', 'amidst', 'the', 'various', 'endeavour', '\n', 'of', 'different', 'people', 'to', 'quit', 'the', 'topic', 'it', 'fall', 'to', 'the', 'ground', '\n', 'but', 'not', 'so', 'easily', 'do', 'Elinor', 'recover', 'from', 'the', 'alarm', 'into', '\n', 'which', 'it', 'have', 'throw', 'she', '\n\n', 'a', 'party', 'be', 'form', 'this', 'evening', 'for', 'go', 'on', 'the', '\n', 'follow', 'day', 'to', 'see', 'a', 'very', 'fine', 'place', 'about', 'twelve', 'mile', '\n', 'from', 'Barton', 'belong', 'to', 'a', 'brotherinlaw', 'of', 'Colonel', 'Brandon', '\n', 'without', 'whose', 'interest', 'it', 'could', 'not', 'be', 'see', 'as', 'the', 'proprietor', '\n', 'who', 'be', 'then', 'abroad', 'have', 'leave', 'strict', 'order', 'on', 'that', 'head', '\n', 'the', 'ground', 'be', 'declare', 'to', 'be', 'highly', 'beautiful', '\n', 'and', 'Sir', 'John', 'who', 'be', 'particularly', 'warm', 'in', 'their', 'praise', '\n', 'might', 'be', 'allow', 'to', 'be', 'a', 'tolerable', 'judge', 'for', 'he', 'have', '\n', 'form', 'party', 'to', 'visit', 'they', 'at', 'least', 'twice', 'every', 'summer', '\n', 'for', 'the', 'last', 'ten', 'year', ' ', 'they', 'contain', 'a', 'noble', 'piece', '\n', 'of', 'water', 'a', 'sail', 'on', 'which', 'be', 'to', 'a', 'form', 'a', 'great', 'part', 'of', '\n', 'the', 'morning', 'amusement', 'cold', 'provision', 'be', 'to', 'be', 'take', '\n', 'open', 'carriage', 'only', 'to', 'be', 'employ', 'and', 'every', 'thing', '\n', 'conduct', 'in', 'the', 'usual', 'style', 'of', 'a', 'complete', 'party', 'of', 'pleasure', '\n\n', 'to', 'some', 'few', 'of', 'the', 'company', 'it', 'appear', 'rather', '\n', 'a', 'bold', 'undertaking', 'consider', 'the', 'time', 'of', 'year', '\n', 'and', 'that', 'it', 'have', 'rain', 'every', 'day', 'for', 'the', 'last', 'fortnight', '\n', 'and', 'Mrs', 'Dashwood', 'who', 'have', 'already', 'a', 'cold', 'be', 'persuade', '\n', 'by', 'Elinor', 'to', 'stay', 'at', 'home', '\n\n\n\n', 'CHAPTER', '13', '\n\n\n', 'their', 'intend', 'excursion', 'to', 'Whitwell', 'turn', 'out', '\n', 'very', 'different', 'from', 'what', 'Elinor', 'have', 'expect', ' ', 'she', 'be', '\n', 'prepared', 'to', 'be', 'wet', 'through', 'fatigued', 'and', 'frighten', '\n', 'but', 'the', 'event', 'be', 'still', 'more', 'unfortunate', 'for', 'they', 'do', '\n', 'not', 'go', 'at', 'all', '\n\n', 'by', 'ten', 'oclock', 'the', 'whole', 'party', 'be', 'assemble', 'at', '\n', 'the', 'park', 'where', 'they', 'be', 'to', 'breakfast', ' ', 'the', 'morning', '\n', 'be', 'rather', 'favourable', 'though', 'it', 'have', 'rain', 'all', 'night', '\n', 'as', 'the', 'cloud', 'be', 'then', 'disperse', 'across', 'the', 'sky', '\n', 'and', 'the', 'sun', 'frequently', 'appear', ' ', 'they', 'be', 'all', 'in', 'high', '\n', 'spirit', 'and', 'good', 'humour', 'eager', 'to', 'be', 'happy', 'and', 'determine', '\n', 'to', 'submit', 'to', 'the', 'great', 'inconvenience', 'and', 'hardship', '\n', 'rather', 'than', 'be', 'otherwise', '\n\n', 'while', 'they', 'be', 'at', 'breakfast', 'the', 'letter', 'be', 'bring', 'in', '\n', 'among', 'the', 'rest', 'there', 'be', 'one', 'for', 'Colonel', 'Brandonhe', '\n', 'take', 'it', 'look', 'at', 'the', 'direction', 'change', 'colour', '\n', 'and', 'immediately', 'leave', 'the', 'room', '\n\n', 'what', 'be', 'the', 'matter', 'with', 'Brandon', 'say', 'Sir', 'John', '\n\n', 'nobody', 'could', 'tell', '\n\n', 'I', 'hope', 'he', 'have', 'have', 'no', 'bad', 'news', 'say', 'Lady', 'Middleton', '\n', 'it', 'must', 'be', 'something', 'extraordinary', 'that', 'could', 'make', 'Colonel', '\n', 'Brandon', 'leave', 'my', 'breakfast', 'table', 'so', 'suddenly', '\n\n', 'in', 'about', 'five', 'minute', 'he', 'return', '\n\n', 'no', 'bad', 'news', 'Colonel', 'I', 'hope', 'say', 'Mrs', 'Jennings', '\n', 'as', 'soon', 'as', 'he', 'enter', 'the', 'room', '\n\n', 'none', 'at', 'all', 'maam', 'I', 'thank', 'you', '\n\n', 'be', 'it', 'from', 'Avignon', ' ', 'I', 'hope', 'it', 'be', 'not', 'to', 'say', '\n', 'that', 'your', 'sister', 'be', 'bad', '\n\n', 'no', 'maam', 'it', 'come', 'from', 'town', 'and', 'be', 'merely', '\n', 'a', 'letter', 'of', 'business', '\n\n', 'but', 'how', 'come', 'the', 'hand', 'to', 'discompose', 'you', 'so', 'much', '\n', 'if', 'it', 'be', 'only', 'a', 'letter', 'of', 'business', ' ', 'Come', 'come', '\n', 'this', 'will', 'not', 'do', 'Colonel', 'so', 'let', 'we', 'hear', 'the', 'truth', 'of', 'it', '\n\n', 'my', 'dear', 'madam', 'say', 'Lady', 'Middleton', 'recollect', 'what', '\n', 'you', 'be', 'say', '\n\n', 'perhaps', 'it', 'be', 'to', 'tell', 'you', 'that', 'your', 'cousin', 'Fanny', '\n', 'be', 'marry', 'say', 'Mrs', 'Jennings', 'without', 'attend', '\n', 'to', 'her', 'daughter', 'reproof', '\n\n', 'no', 'indeed', 'it', 'be', 'not', '\n\n', 'well', 'then', 'I', 'know', 'who', 'it', 'be', 'from', 'Colonel', ' ', 'and', 'I', '\n', 'hope', 'she', 'be', 'well', '\n\n', 'whom', 'do', 'you', 'mean', 'maam', 'say', 'he', 'colour', 'a', 'little', '\n\n', 'oh', 'you', 'know', 'who', 'I', 'mean', '\n\n', 'I', 'be', 'particularly', 'sorry', 'maam', 'say', 'he', '\n', 'address', 'Lady', 'Middleton', 'that', 'I', 'should', 'receive', 'this', '\n', 'letter', 'today', 'for', 'it', 'be', 'on', 'business', 'which', 'require', '\n', 'my', 'immediate', 'attendance', 'in', 'town', '\n\n', 'in', 'town', 'cry', 'Mrs', 'Jennings', ' ', 'what', 'can', 'you', '\n', 'have', 'to', 'do', 'in', 'town', 'at', 'this', 'time', 'of', 'year', '\n\n', 'my', 'own', 'loss', 'be', 'great', 'be', 'continue', 'in', 'be', 'oblige', '\n', 'to', 'leave', 'so', 'agreeable', 'a', 'party', 'but', 'I', 'be', 'the', 'more', 'concerned', '\n', 'as', 'I', 'fear', 'my', 'presence', 'be', 'necessary', 'to', 'gain', 'your', 'admittance', '\n', 'at', 'Whitwell', '\n\n', 'what', 'a', 'blow', 'upon', 'they', 'all', 'be', 'this', '\n\n', 'but', 'if', 'you', 'write', 'a', 'note', 'to', 'the', 'housekeeper', 'Mr', 'Brandon', '\n', 'say', 'Marianne', 'eagerly', 'will', 'it', 'not', 'be', 'sufficient', '\n\n', 'he', 'shake', 'his', 'head', '\n\n', 'we', 'must', 'go', 'say', 'Sir', 'JohnIt', 'shall', 'not', 'be', 'put', '\n', 'off', 'when', 'we', 'be', 'so', 'near', 'it', ' ', 'you', 'can', 'not', 'go', 'to', 'town', 'till', '\n', 'tomorrow', 'Brandon', 'that', 'be', 'all', '\n\n', 'I', 'wish', 'it', 'could', 'be', 'so', 'easily', 'settle', ' ', 'but', 'it', '\n', 'be', 'not', 'in', 'my', 'power', 'to', 'delay', 'my', 'journey', 'for', 'one', 'day', '\n\n', 'if', 'you', 'would', 'but', 'let', 'we', 'know', 'what', 'your', 'business', 'be', '\n', 'say', 'Mrs', 'Jennings', 'we', 'might', 'see', 'whether', 'it', 'could', 'be', 'put', '\n', 'off', 'or', 'not', '\n\n', 'you', 'would', 'not', 'be', 'six', 'hour', 'later', 'say', 'Willoughby', '\n', 'if', 'you', 'be', 'to', 'defer', 'your', 'journey', 'till', 'our', 'return', '\n\n', 'I', 'can', 'not', 'afford', 'to', 'lose', 'one', 'hour', '\n\n', 'Elinor', 'then', 'hear', 'Willoughby', 'say', 'in', 'a', 'low', 'voice', 'to', 'Marianne', '\n', 'there', 'be', 'some', 'people', 'who', 'can', 'not', 'bear', 'a', 'party', 'of', 'pleasure', '\n', 'Brandon', 'be', 'one', 'of', 'they', ' ', 'he', 'be', 'afraid', 'of', 'catch', 'cold', '\n', 'I', 'dare', 'say', 'and', 'invent', 'this', 'trick', 'for', 'get', 'out', 'of', 'it', '\n', 'I', 'would', 'lay', 'fifty', 'guinea', 'the', 'letter', 'be', 'of', 'his', 'own', 'writing', '\n\n', 'I', 'have', 'no', 'doubt', 'of', 'it', 'reply', 'Marianne', '\n\n', 'there', 'be', 'no', 'persuade', 'you', 'to', 'change', 'your', 'mind', '\n', 'Brandon', 'I', 'know', 'of', 'old', 'say', 'Sir', 'John', 'when', 'once', 'you', '\n', 'be', 'determined', 'on', 'anything', ' ', 'but', 'however', 'I', 'hope', 'you', '\n', 'will', 'think', 'well', 'of', 'it', ' ', 'consider', 'here', 'be', 'the', 'two', 'Miss', '\n', 'carey', 'come', 'over', 'from', 'Newton', 'the', 'three', 'Miss', 'Dashwoods', '\n', 'walk', 'up', 'from', 'the', 'cottage', 'and', 'Mr', 'Willoughby', 'get', 'up', '\n', 'two', 'hour', 'before', 'his', 'usual', 'time', 'on', 'purpose', 'to', 'go', 'to', 'Whitwell', '\n\n', 'Colonel', 'Brandon', 'again', 'repeat', 'his', 'sorrow', 'at', 'be', '\n', 'the', 'cause', 'of', 'disappoint', 'the', 'party', 'but', 'at', 'the', 'same', '\n', 'time', 'declare', 'it', 'to', 'be', 'unavoidable', '\n\n', 'well', 'then', 'when', 'will', 'you', 'come', 'back', 'again', '\n\n', 'I', 'hope', 'we', 'shall', 'see', 'you', 'at', 'Barton', 'add', 'her', 'ladyship', '\n', 'as', 'soon', 'as', 'you', 'can', 'conveniently', 'leave', 'town', 'and', 'we', 'must', '\n', 'put', 'off', 'the', 'party', 'to', 'Whitwell', 'till', 'you', 'return', '\n\n', 'you', 'be', 'very', 'obliging', ' ', 'but', 'it', 'be', 'so', 'uncertain', '\n', 'when', 'I', 'may', 'have', 'it', 'in', 'my', 'power', 'to', 'return', 'that', 'I', 'dare', '\n', 'not', 'engage', 'for', 'it', 'at', 'all', '\n\n', 'oh', 'he', 'must', 'and', 'shall', 'come', 'back', 'cry', 'Sir', 'John', '\n', 'if', 'he', 'be', 'not', 'here', 'by', 'the', 'end', 'of', 'the', 'week', 'I', 'shall', 'go', '\n', 'after', 'he', '\n\n', 'ay', 'so', 'do', 'Sir', 'John', 'cry', 'Mrs', 'Jennings', 'and', 'then', '\n', 'perhaps', 'you', 'may', 'find', 'out', 'what', 'his', 'business', 'be', '\n\n', 'I', 'do', 'not', 'want', 'to', 'pry', 'into', 'other', 'men', 'concern', '\n', 'I', 'suppose', 'it', 'be', 'something', 'he', 'be', 'ashamed', 'of', '\n\n', 'Colonel', 'Brandons', 'horse', 'be', 'announce', '\n\n', 'you', 'do', 'not', 'go', 'to', 'town', 'on', 'horseback', 'do', 'you', '\n', 'add', 'Sir', 'John', '\n\n', 'no', 'only', 'to', 'Honiton', ' ', 'I', 'shall', 'then', 'go', 'post', '\n\n', 'well', 'as', 'you', 'be', 'resolve', 'to', 'go', 'I', 'wish', 'you', '\n', 'a', 'good', 'journey', ' ', 'but', 'you', 'have', 'well', 'change', 'your', 'mind', '\n\n', 'I', 'assure', 'you', 'it', 'be', 'not', 'in', 'my', 'power', '\n\n', 'he', 'then', 'take', 'leave', 'of', 'the', 'whole', 'party', '\n\n', 'be', 'there', 'no', 'chance', 'of', 'my', 'see', 'you', 'and', 'your', 'sister', '\n', 'in', 'town', 'this', 'winter', 'Miss', 'Dashwood', '\n\n', 'I', 'be', 'afraid', 'none', 'at', 'all', '\n\n', 'then', 'I', 'must', 'bid', 'you', 'farewell', 'for', 'a', 'long', 'time', '\n', 'than', 'I', 'should', 'wish', 'to', 'do', '\n\n', 'to', 'Marianne', 'he', 'merely', 'bow', 'and', 'say', 'nothing', '\n\n', 'come', 'Colonel', 'say', 'Mrs', 'Jennings', 'before', 'you', 'go', '\n', 'do', 'let', 'we', 'know', 'what', 'you', 'be', 'go', 'about', '\n\n', 'he', 'wish', 'she', 'a', 'good', 'morning', 'and', 'attend', 'by', 'Sir', 'John', '\n', 'leave', 'the', 'room', '\n\n', 'the', 'complaint', 'and', 'lamentation', 'which', 'politeness', '\n', 'have', 'hitherto', 'restrain', 'now', 'burst', 'forth', 'universally', '\n', 'and', 'they', 'all', 'agree', 'again', 'and', 'again', 'how', 'provoking', 'it', 'be', '\n', 'to', 'be', 'so', 'disappointed', '\n\n', 'I', 'can', 'guess', 'what', 'his', 'business', 'be', 'however', '\n', 'say', 'Mrs', 'Jennings', 'exultingly', '\n\n', 'can', 'you', 'maam', 'say', 'almost', 'every', 'body', '\n\n', 'yes', 'it', 'be', 'about', 'Miss', 'Williams', 'I', 'be', 'sure', '\n\n', 'and', 'who', 'be', 'Miss', 'Williams', 'ask', 'Marianne', '\n\n', 'what', 'do', 'not', 'you', 'know', 'who', 'Miss', 'Williams', 'be', 'I', 'be', '\n', 'sure', 'you', 'must', 'have', 'hear', 'of', 'she', 'before', ' ', 'she', 'be', 'a', 'relation', '\n', 'of', 'the', 'Colonels', 'my', 'dear', 'a', 'very', 'near', 'relation', ' ', 'we', 'will', '\n', 'not', 'say', 'how', 'near', 'for', 'fear', 'of', 'shock', 'the', 'young', 'lady', '\n', 'then', 'lower', 'her', 'voice', 'a', 'little', 'she', 'say', 'to', 'Elinor', '\n', 'she', 'be', 'his', 'natural', 'daughter', '\n\n', 'indeed', '\n\n', 'oh', 'yes', 'and', 'as', 'like', 'he', 'as', 'she', 'can', 'stare', '\n', 'I', 'dare', 'say', 'the', 'Colonel', 'will', 'leave', 'she', 'all', 'his', 'fortune', '\n\n', 'when', 'Sir', 'John', 'return', 'he', 'join', 'most', 'heartily', '\n', 'in', 'the', 'general', 'regret', 'on', 'so', 'unfortunate', 'an', 'event', '\n', 'conclude', 'however', 'by', 'observe', 'that', 'as', 'they', 'be', '\n', 'all', 'get', 'together', 'they', 'must', 'do', 'something', 'by', 'way', 'of', '\n', 'be', 'happy', 'and', 'after', 'some', 'consultation', 'it', 'be', 'agree', '\n', 'that', 'although', 'happiness', 'could', 'only', 'be', 'enjoy', 'at', 'Whitwell', '\n', 'they', 'might', 'procure', 'a', 'tolerable', 'composure', 'of', 'mind', 'by', 'drive', '\n', 'about', 'the', 'country', ' ', 'the', 'carriage', 'be', 'then', 'order', '\n', 'Willoughbys', 'be', 'first', 'and', 'Marianne', 'never', 'look', '\n', 'happy', 'than', 'when', 'she', 'get', 'into', 'it', ' ', 'he', 'drive', 'through', '\n', 'the', 'park', 'very', 'fast', 'and', 'they', 'be', 'soon', 'out', 'of', 'sight', '\n', 'and', 'nothing', 'more', 'of', 'they', 'be', 'see', 'till', 'their', 'return', '\n', 'which', 'do', 'not', 'happen', 'till', 'after', 'the', 'return', 'of', 'all', 'the', 'rest', '\n', 'they', 'both', 'seem', 'delighted', 'with', 'their', 'drive', 'but', 'say', '\n', 'only', 'in', 'general', 'term', 'that', 'they', 'have', 'keep', 'in', 'the', 'lane', '\n', 'while', 'the', 'other', 'go', 'on', 'the', 'down', '\n\n', 'it', 'be', 'settle', 'that', 'there', 'should', 'be', 'a', 'dance', 'in', 'the', 'evening', '\n', 'and', 'that', 'every', 'body', 'should', 'be', 'extremely', 'merry', 'all', 'day', 'long', '\n', 'some', 'more', 'of', 'the', 'Careys', 'come', 'to', 'dinner', 'and', 'they', 'have', 'the', '\n', 'pleasure', 'of', 'sit', 'down', 'nearly', 'twenty', 'to', 'table', 'which', 'Sir', '\n', 'John', 'observe', 'with', 'great', 'contentment', ' ', 'Willoughby', 'take', '\n', 'his', 'usual', 'place', 'between', 'the', 'two', 'eld', 'Miss', 'Dashwoods', '\n', 'Mrs', 'Jennings', 'sit', 'on', 'Elinors', 'right', 'hand', 'and', 'they', 'have', 'not', '\n', 'be', 'long', 'seat', 'before', 'she', 'leant', 'behind', 'she', 'and', 'Willoughby', '\n', 'and', 'say', 'to', 'Marianne', 'loud', 'enough', 'for', 'they', 'both', 'to', 'hear', '\n', 'I', 'have', 'find', 'you', 'out', 'in', 'spite', 'of', 'all', 'your', 'trick', '\n', 'I', 'know', 'where', 'you', 'spend', 'the', 'morning', '\n\n', 'Marianne', 'colour', 'and', 'reply', 'very', 'hastily', '\n', 'where', 'pray', '\n\n', 'do', 'not', 'you', 'know', 'say', 'Willoughby', 'that', 'we', 'have', '\n', 'be', 'out', 'in', 'my', 'curricle', '\n\n', 'yes', 'yes', 'Mr', 'Impudence', 'I', 'know', 'that', 'very', 'well', '\n', 'and', 'I', 'be', 'determined', 'to', 'find', 'out', 'where', 'you', 'have', 'be', 'to', '\n', 'I', 'hope', 'you', 'like', 'your', 'house', 'Miss', 'Marianne', ' ', 'it', 'be', 'a', 'very', '\n', 'large', 'one', 'I', 'know', 'and', 'when', 'I', 'come', 'to', 'see', 'you', 'I', 'hope', 'you', '\n', 'will', 'have', 'newfurnishe', 'it', 'for', 'it', 'want', 'it', 'very', 'much', '\n', 'when', 'I', 'be', 'there', 'six', 'year', 'ago', '\n\n', 'Marianne', 'turn', 'away', 'in', 'great', 'confusion', '\n', 'Mrs', 'Jennings', 'laugh', 'heartily', 'and', 'Elinor', 'find', 'that', 'in', 'her', '\n', 'resolution', 'to', 'know', 'where', 'they', 'have', 'be', 'she', 'have', 'actually', '\n', 'make', 'her', 'own', 'woman', 'enquire', 'of', 'Mr', 'Willoughbys', 'groom', '\n', 'and', 'that', 'she', 'have', 'by', 'that', 'method', 'be', 'inform', 'that', 'they', '\n', 'have', 'go', 'to', 'Allenham', 'and', 'spend', 'a', 'considerable', 'time', 'there', '\n', 'in', 'walk', 'about', 'the', 'garden', 'and', 'go', 'all', 'over', 'the', 'house', '\n\n', 'Elinor', 'could', 'hardly', 'believe', 'this', 'to', 'be', 'true', '\n', 'as', 'it', 'seem', 'very', 'unlikely', 'that', 'Willoughby', 'should', 'propose', '\n', 'or', 'Marianne', 'consent', 'to', 'enter', 'the', 'house', 'while', 'Mrs', 'Smith', 'be', '\n', 'in', 'it', 'with', 'whom', 'Marianne', 'have', 'not', 'the', 'small', 'acquaintance', '\n\n', 'as', 'soon', 'as', 'they', 'leave', 'the', 'diningroom', 'Elinor', 'enquire', '\n', 'of', 'she', 'about', 'it', 'and', 'great', 'be', 'her', 'surprise', 'when', 'she', '\n', 'find', 'that', 'every', 'circumstance', 'relate', 'by', 'Mrs', 'Jennings', '\n', 'be', 'perfectly', 'true', ' ', 'Marianne', 'be', 'quite', 'angry', 'with', 'she', '\n', 'for', 'doubt', 'it', '\n\n', 'why', 'should', 'you', 'imagine', 'Elinor', 'that', 'we', 'do', 'not', '\n', 'go', 'there', 'or', 'that', 'we', 'do', 'not', 'see', 'the', 'house', ' ', 'be', 'not', 'it', '\n', 'what', 'you', 'have', 'often', 'wish', 'to', 'do', 'yourself', '\n\n', 'yes', 'Marianne', 'but', 'I', 'would', 'not', 'go', 'while', 'Mrs', 'Smith', '\n', 'be', 'there', 'and', 'with', 'no', 'other', 'companion', 'than', 'Mr', 'Willoughby', '\n\n', 'Mr', 'Willoughby', 'however', 'be', 'the', 'only', 'person', 'who', 'can', '\n', 'have', 'a', 'right', 'to', 'shew', 'that', 'house', 'and', 'as', 'he', 'go', 'in', 'an', 'open', '\n', 'carriage', 'it', 'be', 'impossible', 'to', 'have', 'any', 'other', 'companion', '\n', 'I', 'never', 'spend', 'a', 'pleasanter', 'morning', 'in', 'my', 'life', '\n\n', 'I', 'be', 'afraid', 'reply', 'Elinor', 'that', 'the', 'pleasantness', '\n', 'of', 'an', 'employment', 'do', 'not', 'always', 'evince', 'its', 'propriety', '\n\n', 'on', 'the', 'contrary', 'nothing', 'can', 'be', 'a', 'strong', 'proof', '\n', 'of', 'it', 'Elinor', 'for', 'if', 'there', 'have', 'be', 'any', 'real', 'impropriety', '\n', 'in', 'what', 'I', 'do', 'I', 'should', 'have', 'be', 'sensible', 'of', 'it', 'at', '\n', 'the', 'time', 'for', 'we', 'always', 'know', 'when', 'we', 'be', 'act', 'wrong', '\n', 'and', 'with', 'such', 'a', 'conviction', 'I', 'could', 'have', 'have', 'no', 'pleasure', '\n\n', 'but', 'my', 'dear', 'Marianne', 'as', 'it', 'have', 'already', 'expose', 'you', '\n', 'to', 'some', 'very', 'impertinent', 'remark', 'do', 'you', 'not', 'now', 'begin', '\n', 'to', 'doubt', 'the', 'discretion', 'of', 'your', 'own', 'conduct', '\n\n', 'if', 'the', 'impertinent', 'remark', 'of', 'Mrs', 'Jennings', 'be', '\n', 'to', 'be', 'the', 'proof', 'of', 'impropriety', 'in', 'conduct', 'we', 'be', 'all', '\n', 'offend', 'every', 'moment', 'of', 'our', 'life', ' ', 'I', 'value', 'not', 'her', '\n', 'censure', 'any', 'more', 'than', 'I', 'should', 'do', 'her', 'commendation', '\n', 'I', 'be', 'not', 'sensible', 'of', 'having', 'do', 'anything', 'wrong', 'in', 'walk', '\n', 'over', 'Mrs', 'Smiths', 'ground', 'or', 'in', 'see', 'her', 'house', '\n', 'they', 'will', 'one', 'day', 'be', 'Mr', 'Willoughbys', 'and', '\n\n', 'if', 'they', 'be', 'one', 'day', 'to', 'be', 'your', 'own', 'Marianne', '\n', 'you', 'would', 'not', 'be', 'justify', 'in', 'what', 'you', 'have', 'do', '\n\n', 'she', 'blush', 'at', 'this', 'hint', 'but', 'it', 'be', 'even', 'visibly', '\n', 'gratify', 'to', 'she', 'and', 'after', 'a', 'ten', 'minute', 'interval', 'of', '\n', 'earnest', 'thought', 'she', 'come', 'to', 'her', 'sister', 'again', 'and', 'say', '\n', 'with', 'great', 'good', 'humour', 'perhaps', 'Elinor', 'it', 'be', 'rather', '\n', 'illjudge', 'in', 'I', 'to', 'go', 'to', 'Allenham', 'but', 'Mr', 'Willoughby', 'want', '\n', 'particularly', 'to', 'shew', 'I', 'the', 'place', 'and', 'it', 'be', 'a', 'charming', 'house', '\n', 'I', 'assure', 'youThere', 'be', 'one', 'remarkably', 'pretty', 'sit', 'room', '\n', 'up', 'stair', 'of', 'a', 'nice', 'comfortable', 'size', 'for', 'constant', 'use', '\n', 'and', 'with', 'modern', 'furniture', 'it', 'would', 'be', 'delightful', '\n', 'it', 'be', 'a', 'corner', 'room', 'and', 'have', 'window', 'on', 'two', 'side', '\n', 'on', 'one', 'side', 'you', 'look', 'across', 'the', 'bowlinggreen', 'behind', '\n', 'the', 'house', 'to', 'a', 'beautiful', 'hang', 'wood', 'and', 'on', 'the', 'other', 'you', '\n', 'have', 'a', 'view', 'of', 'the', 'church', 'and', 'village', 'and', 'beyond', 'they', '\n', 'of', 'those', 'fine', 'bold', 'hill', 'that', 'we', 'have', 'so', 'often', 'admire', '\n', 'I', 'do', 'not', 'see', 'it', 'to', 'advantage', 'for', 'nothing', 'could', 'be', '\n', 'more', 'forlorn', 'than', 'the', 'furniturebut', 'if', 'it', 'be', 'newly', '\n', 'fit', 'upa', 'couple', 'of', 'hundred', 'pound', 'Willoughby', 'say', '\n', 'would', 'make', 'it', 'one', 'of', 'the', 'pleasant', 'summerroom', '\n', 'in', 'England', '\n\n', 'could', 'Elinor', 'have', 'listen', 'to', 'she', 'without', 'interruption', '\n', 'from', 'the', 'other', 'she', 'would', 'have', 'describe', 'every', 'room', '\n', 'in', 'the', 'house', 'with', 'equal', 'delight', '\n\n\n\n', 'chapter', '14', '\n\n\n', 'the', 'sudden', 'termination', 'of', 'Colonel', 'Brandons', 'visit', '\n', 'at', 'the', 'park', 'with', 'his', 'steadiness', 'in', 'conceal', 'its', 'cause', '\n', 'fill', 'the', 'mind', 'and', 'raise', 'the', 'wonder', 'of', 'Mrs', 'Jennings', '\n', 'for', 'two', 'or', 'three', 'day', 'she', 'be', 'a', 'great', 'wonderer', 'as', 'every', '\n', 'one', 'must', 'be', 'who', 'take', 'a', 'very', 'lively', 'interest', 'in', 'all', 'the', '\n', 'coming', 'and', 'going', 'of', 'all', 'their', 'acquaintance', ' ', 'she', 'wonder', '\n', 'with', 'little', 'intermission', 'what', 'could', 'be', 'the', 'reason', 'of', 'it', '\n', 'be', 'sure', 'there', 'must', 'be', 'some', 'bad', 'news', 'and', 'think', 'over', '\n', 'every', 'kind', 'of', 'distress', 'that', 'could', 'have', 'befall', 'he', '\n', 'with', 'a', 'fix', 'determination', 'that', 'he', 'should', 'not', 'escape', '\n', 'they', 'all', '\n\n', 'something', 'very', 'melancholy', 'must', 'be', 'the', 'matter', '\n', 'I', 'be', 'sure', 'say', 'she', ' ', 'I', 'could', 'see', 'it', 'in', 'his', 'face', '\n', 'poor', 'man', ' ', 'I', 'be', 'afraid', 'his', 'circumstance', 'may', 'be', 'bad', '\n', 'the', 'estate', 'at', 'Delaford', 'be', 'never', 'reckon', 'more', 'than', 'two', 'thousand', '\n', 'a', 'year', 'and', 'his', 'brother', 'leave', 'everything', 'sadly', 'involve', '\n', 'I', 'do', 'think', 'he', 'must', 'have', 'be', 'send', 'for', 'about', 'money', 'matter', '\n', 'for', 'what', 'else', 'can', 'it', 'be', ' ', 'I', 'wonder', 'whether', 'it', 'be', 'so', '\n', 'I', 'would', 'give', 'anything', 'to', 'know', 'the', 'truth', 'of', 'it', ' ', 'perhaps', 'it', '\n', 'be', 'about', 'Miss', 'Williams', 'and', 'by', 'the', 'bye', 'I', 'dare', 'say', 'it', 'be', '\n', 'because', 'he', 'look', 'so', 'conscious', 'when', 'I', 'mention', 'she', '\n', 'may', 'be', 'she', 'be', 'ill', 'in', 'town', 'nothing', 'in', 'the', 'world', 'more', 'likely', '\n', 'for', 'I', 'have', 'a', 'notion', 'she', 'be', 'always', 'rather', 'sickly', '\n', 'I', 'would', 'lay', 'any', 'wager', 'it', 'be', 'about', 'Miss', 'Williams', '\n', 'it', 'be', 'not', 'so', 'very', 'likely', 'he', 'should', 'be', 'distress', 'in', '\n', 'his', 'circumstance', 'now', 'for', 'he', 'be', 'a', 'very', 'prudent', 'man', '\n', 'and', 'to', 'be', 'sure', 'must', 'have', 'clear', 'the', 'estate', 'by', 'this', 'time', '\n', 'I', 'wonder', 'what', 'it', 'can', 'be', ' ', 'may', 'be', 'his', 'sister', 'be', 'bad', '\n', 'at', 'Avignon', 'and', 'have', 'send', 'for', 'he', 'over', ' ', 'his', 'setting', 'off', '\n', 'in', 'such', 'a', 'hurry', 'seem', 'very', 'like', 'it', ' ', 'well', 'I', 'wish', 'he', 'out', '\n', 'of', 'all', 'his', 'trouble', 'with', 'all', 'my', 'heart', 'and', 'a', 'good', 'wife', 'into', '\n', 'the', 'bargain', '\n\n', 'so', 'wonder', 'so', 'talk', 'Mrs', 'Jennings', ' ', 'her', 'opinion', '\n', 'vary', 'with', 'every', 'fresh', 'conjecture', 'and', 'all', 'seem', '\n', 'equally', 'probable', 'as', 'they', 'arise', ' ', 'Elinor', 'though', 'she', 'feel', '\n', 'really', 'interested', 'in', 'the', 'welfare', 'of', 'Colonel', 'Brandon', '\n', 'could', 'not', 'bestow', 'all', 'the', 'wonder', 'on', 'his', 'go', 'so', 'suddenly', '\n', 'away', 'which', 'Mrs', 'Jennings', 'be', 'desirous', 'of', 'her', 'feel', '\n', 'for', 'beside', 'that', 'the', 'circumstance', 'do', 'not', 'in', 'her', 'opinion', '\n', 'justify', 'such', 'last', 'amazement', 'or', 'variety', 'of', 'speculation', '\n', 'her', 'wonder', 'be', 'otherwise', 'dispose', 'of', ' ', 'it', 'be', 'engross', '\n', 'by', 'the', 'extraordinary', 'silence', 'of', 'her', 'sister', 'and', 'Willoughby', '\n', 'on', 'the', 'subject', 'which', 'they', 'must', 'know', 'to', 'be', 'peculiarly', '\n', 'interesting', 'to', 'they', 'all', ' ', 'as', 'this', 'silence', 'continue', '\n', 'every', 'day', 'make', 'it', 'appear', 'more', 'strange', 'and', 'more', 'incompatible', '\n', 'with', 'the', 'disposition', 'of', 'both', ' ', 'why', 'they', 'should', 'not', 'openly', '\n', 'acknowledge', 'to', 'her', 'mother', 'and', 'herself', 'what', 'their', 'constant', '\n', 'behaviour', 'to', 'each', 'other', 'declare', 'to', 'have', 'take', 'place', '\n', 'Elinor', 'could', 'not', 'imagine', '\n\n', 'she', 'could', 'easily', 'conceive', 'that', 'marriage', 'might', 'not', '\n', 'be', 'immediately', 'in', 'their', 'power', 'for', 'though', 'Willoughby', '\n', 'be', 'independent', 'there', 'be', 'no', 'reason', 'to', 'believe', 'he', 'rich', '\n', 'his', 'estate', 'have', 'be', 'rate', 'by', 'Sir', 'John', 'at', 'about', 'six', 'or', 'seven', '\n', 'hundred', 'a', 'year', 'but', 'he', 'live', 'at', 'an', 'expense', 'to', 'which', 'that', 'income', '\n', 'could', 'hardly', 'be', 'equal', 'and', 'he', 'have', 'himself', 'often', 'complain', '\n', 'of', 'his', 'poverty', ' ', 'but', 'for', 'this', 'strange', 'kind', 'of', 'secrecy', '\n', 'maintain', 'by', 'they', 'relative', 'to', 'their', 'engagement', 'which', '\n', 'in', 'fact', 'conceal', 'nothing', 'at', 'all', 'she', 'could', 'not', 'account', '\n', 'and', 'it', 'be', 'so', 'wholly', 'contradictory', 'to', 'their', 'general', '\n', 'opinion', 'and', 'practice', 'that', 'a', 'doubt', 'sometimes', 'enter', '\n', 'her', 'mind', 'of', 'their', 'be', 'really', 'engage', 'and', 'this', 'doubt', '\n', 'be', 'enough', 'to', 'prevent', 'she', 'make', 'any', 'inquiry', 'of', 'Marianne', '\n\n', 'nothing', 'could', 'be', 'more', 'expressive', 'of', 'attachment', '\n', 'to', 'they', 'all', 'than', 'Willoughbys', 'behaviour', ' ', 'to', 'Marianne', '\n', 'it', 'have', 'all', 'the', 'distinguish', 'tenderness', 'which', 'a', 'lover', '\n', 'heart', 'could', 'give', 'and', 'to', 'the', 'rest', 'of', 'the', 'family', 'it', 'be', 'the', '\n', 'affectionate', 'attention', 'of', 'a', 'son', 'and', 'a', 'brother', ' ', 'the', 'cottage', '\n', 'seem', 'to', 'be', 'consider', 'and', 'love', 'by', 'he', 'as', 'his', 'home', '\n', 'many', 'more', 'of', 'his', 'hour', 'be', 'spend', 'there', 'than', 'at', 'Allenham', '\n', 'and', 'if', 'no', 'general', 'engagement', 'collect', 'they', 'at', 'the', 'park', '\n', 'the', 'exercise', 'which', 'call', 'he', 'out', 'in', 'the', 'morning', 'be', '\n', 'almost', 'certain', 'of', 'end', 'there', 'where', 'the', 'rest', 'of', 'the', 'day', '\n', 'be', 'spend', 'by', 'himself', 'at', 'the', 'side', 'of', 'Marianne', 'and', 'by', 'his', '\n', 'favourite', 'pointer', 'at', 'her', 'foot', '\n\n', 'one', 'evening', 'in', 'particular', 'about', 'a', 'week', 'after', '\n', 'Colonel', 'Brandon', 'leave', 'the', 'country', 'his', 'heart', 'seem', '\n', 'more', 'than', 'usually', 'open', 'to', 'every', 'feeling', 'of', 'attachment', '\n', 'to', 'the', 'object', 'around', 'he', 'and', 'on', 'Mrs', 'Dashwoods', '\n', 'happen', 'to', 'mention', 'her', 'design', 'of', 'improve', 'the', 'cottage', '\n', 'in', 'the', 'spring', 'he', 'warmly', 'oppose', 'every', 'alteration', '\n', 'of', 'a', 'place', 'which', 'affection', 'have', 'establish', 'as', 'perfect', 'with', 'he', '\n\n', 'what', 'he', 'exclaimedImprove', 'this', 'dear', 'cottage', '\n', 'no', 'that', 'I', 'will', 'never', 'consent', 'to', ' ', 'not', 'a', 'stone', 'must', '\n', 'be', 'add', 'to', 'its', 'wall', 'not', 'an', 'inch', 'to', 'its', 'size', '\n', 'if', 'my', 'feeling', 'be', 'regard', '\n\n', 'do', 'not', 'be', 'alarm', 'say', 'Miss', 'Dashwood', '\n', 'nothing', 'of', 'the', 'kind', 'will', 'be', 'do', 'for', 'my', 'mother', '\n', 'will', 'never', 'have', 'money', 'enough', 'to', 'attempt', 'it', '\n\n', 'I', 'be', 'heartily', 'glad', 'of', 'it', 'he', 'cry', ' ', 'may', 'she', '\n', 'always', 'be', 'poor', 'if', 'she', 'can', 'employ', 'her', 'rich', 'no', 'well', '\n\n', 'thank', 'you', 'Willoughby', ' ', 'but', 'you', 'may', 'be', 'assure', 'that', 'I', '\n', 'would', 'not', 'sacrifice', 'one', 'sentiment', 'of', 'local', 'attachment', '\n', 'of', 'yours', 'or', 'of', 'any', 'one', 'whom', 'I', 'love', 'for', 'all', 'the', 'improvement', '\n', 'in', 'the', 'world', ' ', 'depend', 'upon', 'it', 'that', 'whatever', 'unemployed', '\n', 'sum', 'may', 'remain', 'when', 'I', 'make', 'up', 'my', 'account', 'in', 'the', 'spring', '\n', 'I', 'would', 'even', 'rather', 'lay', 'it', 'uselessly', 'by', 'than', 'dispose', '\n', 'of', 'it', 'in', 'a', 'manner', 'so', 'painful', 'to', 'you', ' ', 'but', 'be', 'you', 'really', '\n', 'so', 'attached', 'to', 'this', 'place', 'as', 'to', 'see', 'no', 'defect', 'in', 'it', '\n\n', 'I', 'be', 'say', 'he', ' ', 'to', 'I', 'it', 'be', 'faultless', ' ', 'Nay', 'more', '\n', 'I', 'consider', 'it', 'as', 'the', 'only', 'form', 'of', 'building', 'in', 'which', 'happiness', '\n', 'be', 'attainable', 'and', 'be', 'I', 'rich', 'enough', 'I', 'would', 'instantly', 'pull', '\n', 'Combe', 'down', 'and', 'build', 'it', 'up', 'again', 'in', 'the', 'exact', 'plan', 'of', 'this', '\n', 'cottage', '\n\n', 'with', 'dark', 'narrow', 'stair', 'and', 'a', 'kitchen', 'that', 'smoke', '\n', 'I', 'suppose', 'say', 'Elinor', '\n\n', 'yes', 'cry', 'he', 'in', 'the', 'same', 'eager', 'tone', 'with', 'all', '\n', 'and', 'every', 'thing', 'belong', 'to', 'itin', 'no', 'one', 'convenience', '\n', 'or', 'INconvenience', 'about', 'it', 'should', 'the', 'least', 'variation', '\n', 'be', 'perceptible', ' ', 'then', 'and', 'then', 'only', 'under', 'such', 'a', 'roof', 'I', '\n', 'might', 'perhaps', 'be', 'as', 'happy', 'at', 'Combe', 'as', 'I', 'have', 'be', 'at', 'Barton', '\n\n', 'I', 'flatter', 'myself', 'reply', 'Elinor', 'that', 'even', 'under', '\n', 'the', 'disadvantage', 'of', 'well', 'room', 'and', 'a', 'broad', 'staircase', '\n', 'you', 'will', 'hereafter', 'find', 'your', 'own', 'house', 'as', 'faultless', 'as', 'you', '\n', 'now', 'do', 'this', '\n\n', 'there', 'certainly', 'be', 'circumstance', 'say', 'Willoughby', '\n', 'which', 'might', 'greatly', 'endear', 'it', 'to', 'I', 'but', 'this', 'place', 'will', '\n', 'always', 'have', 'one', 'claim', 'of', 'my', 'affection', 'which', 'no', 'other', 'can', '\n', 'possibly', 'share', '\n\n', 'Mrs', 'Dashwood', 'look', 'with', 'pleasure', 'at', 'Marianne', '\n', 'whose', 'fine', 'eye', 'be', 'fix', 'so', 'expressively', 'on', 'Willoughby', '\n', 'as', 'plainly', 'denote', 'how', 'well', 'she', 'understand', 'he', '\n\n', 'how', 'often', 'do', 'I', 'wish', 'add', 'he', 'when', 'I', 'be', 'at', '\n', 'Allenham', 'this', 'time', 'twelvemonth', 'that', 'Barton', 'cottage', 'be', '\n', 'inhabit', ' ', 'I', 'never', 'pass', 'within', 'view', 'of', 'it', 'without', 'admire', '\n', 'its', 'situation', 'and', 'grieve', 'that', 'no', 'one', 'should', 'live', 'in', 'it', '\n', 'how', 'little', 'do', 'I', 'then', 'think', 'that', 'the', 'very', 'first', 'news', '\n', 'I', 'should', 'hear', 'from', 'Mrs', 'Smith', 'when', 'I', 'next', 'come', 'into', '\n', 'the', 'country', 'would', 'be', 'that', 'Barton', 'cottage', 'be', 'take', 'and', 'I', '\n', 'feel', 'an', 'immediate', 'satisfaction', 'and', 'interest', 'in', 'the', 'event', '\n', 'which', 'nothing', 'but', 'a', 'kind', 'of', 'prescience', 'of', 'what', 'happiness', 'I', '\n', 'should', 'experience', 'from', 'it', 'can', 'account', 'for', ' ', 'must', 'it', 'not', 'have', '\n', 'be', 'so', 'Marianne', 'speak', 'to', 'she', 'in', 'a', 'lowered', 'voice', '\n', 'then', 'continue', 'his', 'former', 'tone', 'he', 'say', 'and', 'yet', 'this', '\n', 'house', 'you', 'would', 'spoil', 'Mrs', 'Dashwood', ' ', 'you', 'would', 'rob', 'it', '\n', 'of', 'its', 'simplicity', 'by', 'imaginary', 'improvement', 'and', 'this', 'dear', '\n', 'parlour', 'in', 'which', 'our', 'acquaintance', 'first', 'begin', 'and', 'in', 'which', '\n', 'so', 'many', 'happy', 'hour', 'have', 'be', 'since', 'spend', 'by', 'we', 'together', '\n', 'you', 'would', 'degrade', 'to', 'the', 'condition', 'of', 'a', 'common', 'entrance', '\n', 'and', 'every', 'body', 'would', 'be', 'eager', 'to', 'pass', 'through', 'the', 'room', '\n', 'which', 'have', 'hitherto', 'contain', 'within', 'itself', 'more', 'real', '\n', 'accommodation', 'and', 'comfort', 'than', 'any', 'other', 'apartment', 'of', '\n', 'the', 'handsome', 'dimension', 'in', 'the', 'world', 'could', 'possibly', 'afford', '\n\n', 'Mrs', 'Dashwood', 'again', 'assure', 'he', 'that', 'no', 'alteration', '\n', 'of', 'the', 'kind', 'should', 'be', 'attempt', '\n\n', 'you', 'be', 'a', 'good', 'woman', 'he', 'warmly', 'reply', '\n', 'your', 'promise', 'make', 'I', 'easy', ' ', 'extend', 'it', 'a', 'little', 'far', '\n', 'and', 'it', 'will', 'make', 'I', 'happy', ' ', 'tell', 'I', 'that', 'not', 'only', 'your', '\n', 'house', 'will', 'remain', 'the', 'same', 'but', 'that', 'I', 'shall', 'ever', 'find', '\n', 'you', 'and', 'your', 'as', 'unchanged', 'as', 'your', 'dwelling', 'and', 'that', 'you', '\n', 'will', 'always', 'consider', 'I', 'with', 'the', 'kindness', 'which', 'have', 'make', '\n', 'everything', 'belong', 'to', 'you', 'so', 'dear', 'to', 'I', '\n\n', 'the', 'promise', 'be', 'readily', 'give', 'and', 'Willoughbys', '\n', 'behaviour', 'during', 'the', 'whole', 'of', 'the', 'evening', 'declare', '\n', 'at', 'once', 'his', 'affection', 'and', 'happiness', '\n\n', 'shall', 'we', 'see', 'you', 'tomorrow', 'to', 'dinner', 'say', 'Mrs', 'Dashwood', '\n', 'when', 'he', 'be', 'leave', 'they', ' ', 'I', 'do', 'not', 'ask', 'you', 'to', 'come', 'in', '\n', 'the', 'morning', 'for', 'we', 'must', 'walk', 'to', 'the', 'park', 'to', 'call', 'on', 'Lady', '\n', 'Middleton', '\n\n', 'he', 'engage', 'to', 'be', 'with', 'they', 'by', 'four', 'oclock', '\n\n\n\n', 'chapter', '15', '\n\n\n', 'Mrs', 'Dashwoods', 'visit', 'to', 'Lady', 'Middleton', 'take', 'place', '\n', 'the', 'next', 'day', 'and', 'two', 'of', 'her', 'daughter', 'go', 'with', 'she', '\n', 'but', 'Marianne', 'excuse', 'herself', 'from', 'be', 'of', 'the', 'party', '\n', 'under', 'some', 'trifling', 'pretext', 'of', 'employment', 'and', 'her', 'mother', '\n', 'who', 'conclude', 'that', 'a', 'promise', 'have', 'be', 'make', 'by', 'Willoughby', '\n', 'the', 'night', 'before', 'of', 'call', 'on', 'she', 'while', 'they', 'be', 'absent', '\n', 'be', 'perfectly', 'satisfied', 'with', 'she', 'remain', 'at', 'home', '\n\n', 'on', 'their', 'return', 'from', 'the', 'park', 'they', 'find', 'Willoughbys', '\n', 'curricle', 'and', 'servant', 'in', 'wait', 'at', 'the', 'cottage', '\n', 'and', 'Mrs', 'Dashwood', 'be', 'convince', 'that', 'her', 'conjecture', '\n', 'have', 'be', 'just', ' ', 'so', 'far', 'it', 'be', 'all', 'as', 'she', 'have', 'foresee', '\n', 'but', 'on', 'enter', 'the', 'house', 'she', 'behold', 'what', 'no', 'foresight', '\n', 'have', 'teach', 'she', 'to', 'expect', ' ', 'they', 'be', 'no', 'soon', 'in', 'the', '\n', 'passage', 'than', 'Marianne', 'come', 'hastily', 'out', 'of', 'the', 'parlour', '\n', 'apparently', 'in', 'violent', 'affliction', 'with', 'her', 'handkerchief', '\n', 'at', 'her', 'eye', 'and', 'without', 'notice', 'they', 'run', 'up', 'stair', '\n', 'Surprised', 'and', 'alarm', 'they', 'proceed', 'directly', 'into', 'the', 'room', '\n', 'she', 'have', 'just', 'quit', 'where', 'they', 'find', 'only', 'Willoughby', '\n', 'who', 'be', 'lean', 'against', 'the', 'mantelpiece', 'with', 'his', 'back', '\n', 'towards', 'they', ' ', 'he', 'turn', 'round', 'on', 'their', 'come', 'in', '\n', 'and', 'his', 'countenance', 'shew', 'that', 'he', 'strongly', 'partook', '\n', 'of', 'the', 'emotion', 'which', 'overpower', 'Marianne', '\n\n', 'be', 'anything', 'the', 'matter', 'with', 'she', 'cry', 'Mrs', 'Dashwood', '\n', 'as', 'she', 'enteredi', 'she', 'ill', '\n\n', 'I', 'hope', 'not', 'he', 'reply', 'try', 'to', 'look', 'cheerful', '\n', 'and', 'with', 'a', 'force', 'smile', 'presently', 'add', 'it', 'be', 'I', 'who', 'may', '\n', 'rather', 'expect', 'to', 'be', 'illfor', 'I', 'be', 'now', 'suffer', 'under', 'a', '\n', 'very', 'heavy', 'disappointment', '\n\n', 'Disappointment', '\n\n', 'yes', 'for', 'I', 'be', 'unable', 'to', 'keep', 'my', 'engagement', 'with', 'you', '\n', 'Mrs', 'Smith', 'have', 'this', 'morning', 'exercise', 'the', 'privilege', '\n', 'of', 'rich', 'upon', 'a', 'poor', 'dependent', 'cousin', 'by', 'send', 'I', 'on', '\n', 'business', 'to', 'London', ' ', 'I', 'have', 'just', 'receive', 'my', 'dispatch', '\n', 'and', 'take', 'my', 'farewell', 'of', 'Allenham', 'and', 'by', 'way', 'of', 'exhilaration', '\n', 'I', 'be', 'now', 'come', 'to', 'take', 'my', 'farewell', 'of', 'you', '\n\n', 'to', 'Londonand', 'be', 'you', 'go', 'this', 'morning', '\n\n', 'almost', 'this', 'moment', '\n\n', 'this', 'be', 'very', 'unfortunate', ' ', 'but', 'Mrs', 'Smith', 'must', '\n', 'be', 'obligedand', 'her', 'business', 'will', 'not', 'detain', 'you', 'from', '\n', 'we', 'long', 'I', 'hope', '\n\n', 'he', 'colour', 'as', 'he', 'reply', 'you', 'be', 'very', 'kind', 'but', 'I', '\n', 'have', 'no', 'idea', 'of', 'return', 'into', 'Devonshire', 'immediately', '\n', 'my', 'visit', 'to', 'Mrs', 'Smith', 'be', 'never', 'repeat', 'within', '\n', 'the', 'twelvemonth', '\n\n', 'and', 'be', 'Mrs', 'Smith', 'your', 'only', 'friend', ' ', 'be', 'Allenham', 'the', 'only', '\n', 'house', 'in', 'the', 'neighbourhood', 'to', 'which', 'you', 'will', 'be', 'welcome', '\n', 'for', 'shame', 'Willoughby', 'can', 'you', 'wait', 'for', 'an', 'invitation', 'here', '\n\n', 'his', 'colour', 'increase', 'and', 'with', 'his', 'eye', 'fix', '\n', 'on', 'the', 'ground', 'he', 'only', 'reply', 'you', 'be', 'too', 'good', '\n\n', 'Mrs', 'Dashwood', 'look', 'at', 'Elinor', 'with', 'surprise', '\n', 'Elinor', 'feel', 'equal', 'amazement', ' ', 'for', 'a', 'few', 'moment', 'every', 'one', '\n', 'be', 'silent', ' ', 'Mrs', 'Dashwood', 'first', 'speak', '\n\n', 'I', 'have', 'only', 'to', 'add', 'my', 'dear', 'Willoughby', 'that', 'at', '\n', 'Barton', 'cottage', 'you', 'will', 'always', 'be', 'welcome', 'for', 'I', 'will', 'not', '\n', 'press', 'you', 'to', 'return', 'here', 'immediately', 'because', 'you', 'only', '\n', 'can', 'judge', 'how', 'far', 'that', 'might', 'be', 'pleasing', 'to', 'Mrs', 'Smith', '\n', 'and', 'on', 'this', 'head', 'I', 'shall', 'be', 'no', 'more', 'disposed', 'to', 'question', '\n', 'your', 'judgment', 'than', 'to', 'doubt', 'your', 'inclination', '\n\n', 'my', 'engagement', 'at', 'present', 'reply', 'Willoughby', '\n', 'confusedly', 'be', 'of', 'such', 'a', 'naturethatI', 'dare', 'not', 'flatter', '\n', 'myself', '\n\n', 'he', 'stopt', ' ', 'Mrs', 'Dashwood', 'be', 'too', 'much', 'astonished', '\n', 'to', 'speak', 'and', 'another', 'pause', 'succeed', ' ', 'this', 'be', 'break', '\n', 'by', 'Willoughby', 'who', 'say', 'with', 'a', 'faint', 'smile', 'it', 'be', 'folly', '\n', 'to', 'linger', 'in', 'this', 'manner', ' ', 'I', 'will', 'not', 'torment', 'myself', '\n', 'any', 'long', 'by', 'remain', 'among', 'friend', 'whose', 'society', '\n', 'it', 'be', 'impossible', 'for', 'I', 'now', 'to', 'enjoy', '\n\n', 'he', 'then', 'hastily', 'take', 'leave', 'of', 'they', 'all', 'and', 'leave', '\n', 'the', 'room', ' ', 'they', 'see', 'he', 'step', 'into', 'his', 'carriage', '\n', 'and', 'in', 'a', 'minute', 'it', 'be', 'out', 'of', 'sight', '\n\n', 'Mrs', 'Dashwood', 'feel', 'too', 'much', 'for', 'speech', 'and', 'instantly', '\n', 'quit', 'the', 'parlour', 'to', 'give', 'way', 'in', 'solitude', 'to', 'the', 'concern', '\n', 'and', 'alarm', 'which', 'this', 'sudden', 'departure', 'occasion', '\n\n', 'Elinors', 'uneasiness', 'be', 'at', 'least', 'equal', 'to', 'her', 'mother', '\n', 'she', 'think', 'of', 'what', 'have', 'just', 'pass', 'with', 'anxiety', 'and', 'distrust', '\n', 'Willoughbys', 'behaviour', 'in', 'take', 'leave', 'of', 'they', 'his', '\n', 'embarrassment', '\n', 'and', 'affectation', 'of', 'cheerfulness', 'and', 'above', 'all', 'his', '\n', 'unwillingness', '\n', 'to', 'accept', 'her', 'mother', 'invitation', 'a', 'backwardness', 'so', 'unlike', 'a', '\n', 'lover', '\n', 'so', 'unlike', 'himself', 'greatly', 'disturb', 'she', ' ', 'one', 'moment', 'she', 'fear', '\n', 'that', 'no', 'serious', 'design', 'have', 'ever', 'be', 'form', 'on', 'his', 'side', 'and', 'the', '\n', 'next', 'that', 'some', 'unfortunate', 'quarrel', 'have', 'take', 'place', 'between', 'he', '\n', 'and', '\n', 'her', 'sisterthe', 'distress', 'in', 'which', 'Marianne', 'have', 'quit', 'the', 'room', '\n', 'be', 'such', 'as', 'a', 'serious', 'quarrel', 'could', 'most', 'reasonably', 'account', 'for', '\n', 'though', 'when', 'she', 'consider', 'what', 'marianne', 'love', 'for', 'he', 'be', '\n', 'a', 'quarrel', 'seem', 'almost', 'impossible', '\n\n', 'but', 'whatever', 'might', 'be', 'the', 'particular', 'of', 'their', 'separation', '\n', 'her', 'sister', 'affliction', 'be', 'indubitable', 'and', 'she', 'think', '\n', 'with', 'the', 'tender', 'compassion', 'of', 'that', 'violent', 'sorrow', '\n', 'which', 'Marianne', 'be', 'in', 'all', 'probability', 'not', 'merely', 'give', '\n', 'way', 'to', 'as', 'a', 'relief', 'but', 'feeding', 'and', 'encouraging', 'as', 'a', 'duty', '\n\n', 'in', 'about', 'half', 'an', 'hour', 'her', 'mother', 'return', 'and', 'though', '\n', 'her', 'eye', 'be', 'red', 'her', 'countenance', 'be', 'not', 'uncheerful', '\n\n', 'our', 'dear', 'Willoughby', 'be', 'now', 'some', 'mile', 'from', 'Barton', 'Elinor', '\n', 'say', 'she', 'as', 'she', 'sit', 'down', 'to', 'work', 'and', 'with', 'how', 'heavy', 'a', 'heart', '\n', 'do', 'he', 'travel', '\n\n', 'it', 'be', 'all', 'very', 'strange', ' ', 'so', 'suddenly', 'to', 'be', 'go', 'it', '\n', 'seem', 'but', 'the', 'work', 'of', 'a', 'moment', ' ', 'and', 'last', 'night', 'he', 'be', '\n', 'with', 'we', 'so', 'happy', 'so', 'cheerful', 'so', 'affectionate', ' ', 'and', 'now', '\n', 'after', 'only', 'ten', 'minute', 'noticegone', 'too', 'without', 'intend', '\n', 'to', 'returnsomethe', 'more', 'than', 'what', 'be', 'own', 'to', 'we', 'must', '\n', 'have', 'happen', ' ', 'he', 'do', 'not', 'speak', 'he', 'do', 'not', 'behave', '\n', 'like', 'himself', ' ', 'you', 'must', 'have', 'see', 'the', 'difference', 'as', 'well', 'as', 'I', '\n', 'what', 'can', 'it', 'be', ' ', 'can', 'they', 'have', 'quarrel', ' ', 'why', 'else', 'should', 'he', '\n', 'have', 'shew', 'such', 'unwillingness', 'to', 'accept', 'your', 'invitation', 'here', '\n\n', 'it', 'be', 'not', 'inclination', 'that', 'he', 'want', 'Elinor', 'I', 'could', '\n', 'plainly', 'see', 'that', ' ', 'he', 'have', 'not', 'the', 'power', 'of', 'accept', 'it', '\n', 'I', 'have', 'think', 'it', 'all', 'over', 'I', 'assure', 'you', 'and', 'I', 'can', '\n', 'perfectly', 'account', 'for', 'every', 'thing', 'that', 'at', 'first', 'seem', '\n', 'strange', 'to', 'I', 'as', 'well', 'as', 'to', 'you', '\n\n', 'can', 'you', 'indeed', '\n\n', 'yes', 'I', 'have', 'explain', 'it', 'to', 'myself', 'in', 'the', 'most', '\n', 'satisfactory', 'waybut', 'you', 'Elinor', 'who', 'love', 'to', 'doubt', '\n', 'where', 'you', 'canit', 'will', 'not', 'satisfy', 'you', 'I', 'know', 'but', 'you', '\n', 'shall', 'not', 'talk', 'I', 'out', 'of', 'my', 'trust', 'in', 'it', ' ', 'I', 'be', 'persuade', '\n', 'that', 'Mrs', 'Smith', 'suspect', 'his', 'regard', 'for', 'Marianne', '\n', 'disapprove', 'of', 'it', 'perhaps', 'because', 'she', 'have', 'other', 'view', '\n', 'for', 'he', 'and', 'on', 'that', 'account', 'be', 'eager', 'to', 'get', 'he', 'away', '\n', 'and', 'that', 'the', 'business', 'which', 'she', 'send', 'he', 'off', 'to', 'transact', '\n', 'be', 'invent', 'as', 'an', 'excuse', 'to', 'dismiss', 'he', ' ', 'this', 'be', 'what', 'I', '\n', 'believe', 'to', 'have', 'happen', ' ', 'he', 'be', 'moreover', 'aware', 'that', 'she', '\n', 'do', 'disapprove', 'the', 'connection', 'he', 'dare', 'not', 'therefore', '\n', 'at', 'present', 'confess', 'to', 'she', 'his', 'engagement', 'with', 'Marianne', '\n', 'and', 'he', 'feel', 'himself', 'oblige', 'from', 'his', 'dependent', 'situation', '\n', 'to', 'give', 'into', 'her', 'scheme', 'and', 'absent', 'himself', 'from', '\n', 'Devonshire', 'for', 'a', 'while', ' ', 'you', 'will', 'tell', 'I', 'I', 'know', '\n', 'that', 'this', 'may', 'or', 'may', 'not', 'have', 'happen', 'but', 'I', 'will', 'listen', '\n', 'to', 'no', 'cavil', 'unless', 'you', 'can', 'point', 'out', 'any', 'other', 'method', '\n', 'of', 'understand', 'the', 'affair', 'as', 'satisfactory', 'at', 'this', '\n', 'and', 'now', 'Elinor', 'what', 'have', 'you', 'to', 'say', '\n\n', 'nothing', 'for', 'you', 'have', 'anticipate', 'my', 'answer', '\n\n', 'then', 'you', 'would', 'have', 'tell', 'I', 'that', 'it', 'might', 'or', 'might', 'not', '\n', 'have', 'happen', ' ', 'oh', 'Elinor', 'how', 'incomprehensible', 'be', 'your', '\n', 'feeling', ' ', 'you', 'have', 'rather', 'take', 'evil', 'upon', 'credit', 'than', 'good', '\n', 'you', 'have', 'rather', 'look', 'out', 'for', 'misery', 'for', 'Marianne', 'and', 'guilt', '\n', 'for', 'poor', 'Willoughby', 'than', 'an', 'apology', 'for', 'the', 'latter', '\n', 'you', 'be', 'resolve', 'to', 'think', 'he', 'blameable', 'because', 'he', 'take', '\n', 'leave', 'of', 'we', 'with', 'less', 'affection', 'than', 'his', 'usual', 'behaviour', '\n', 'have', 'shew', ' ', 'and', 'be', 'no', 'allowance', 'to', 'be', 'make', 'for', 'inadvertence', '\n', 'or', 'for', 'spirit', 'depress', 'by', 'recent', 'disappointment', ' ', 'be', '\n', 'no', 'probability', 'to', 'be', 'accept', 'merely', 'because', 'they', '\n', 'be', 'not', 'certainty', ' ', 'be', 'nothing', 'due', 'to', 'the', 'man', 'whom', 'we', '\n', 'have', 'all', 'such', 'reason', 'to', 'love', 'and', 'no', 'reason', 'in', 'the', 'world', '\n', 'to', 'think', 'ill', 'of', ' ', 'to', 'the', 'possibility', 'of', 'motive', 'unanswerable', '\n', 'in', 'themselves', 'though', 'unavoidably', 'secret', 'for', 'a', 'while', ' ', 'and', '\n', 'after', 'all', 'what', 'be', 'it', 'you', 'suspect', 'he', 'of', '\n\n', 'I', 'can', 'hardly', 'tell', 'myself', ' ', 'but', 'suspicion', 'of', '\n', 'something', 'unpleasant', 'be', 'the', 'inevitable', 'consequence', '\n', 'of', 'such', 'an', 'alteration', 'as', 'we', 'just', 'witness', 'in', 'he', '\n', 'there', 'be', 'great', 'truth', 'however', 'in', 'what', 'you', 'have', 'now', 'urge', '\n', 'of', 'the', 'allowance', 'which', 'ought', 'to', 'be', 'make', 'for', 'he', 'and', 'it', '\n', 'be', 'my', 'wish', 'to', 'be', 'candid', 'in', 'my', 'judgment', 'of', 'every', 'body', '\n', 'Willoughby', 'may', 'undoubtedly', 'have', 'very', 'sufficient', '\n', 'reason', 'for', 'his', 'conduct', 'and', 'I', 'will', 'hope', 'that', 'he', 'have', '\n', 'but', 'it', 'would', 'have', 'be', 'more', 'like', 'Willoughby', 'to', 'acknowledge', '\n', 'they', 'at', 'once', ' ', 'Secrecy', 'may', 'be', 'advisable', 'but', 'still', 'I', '\n', 'can', 'not', 'help', 'wonder', 'at', 'its', 'be', 'practice', 'by', 'he', '\n\n', 'do', 'not', 'blame', 'he', 'however', 'for', 'depart', 'from', '\n', 'his', 'character', 'where', 'the', 'deviation', 'be', 'necessary', '\n', 'but', 'you', 'really', 'do', 'admit', 'the', 'justice', 'of', 'what', 'I', 'have', 'say', '\n', 'in', 'his', 'defenceI', 'be', 'happyand', 'he', 'be', 'acquit', '\n\n', 'not', 'entirely', ' ', 'it', 'may', 'be', 'proper', 'to', 'conceal', 'their', '\n', 'engagement', 'if', 'they', 'be', 'engage', 'from', 'Mrs', 'Smith', '\n', 'and', 'if', 'that', 'be', 'the', 'case', 'it', 'must', 'be', 'highly', 'expedient', '\n', 'for', 'Willoughby', 'to', 'be', 'but', 'little', 'in', 'Devonshire', 'at', 'present', '\n', 'but', 'this', 'be', 'no', 'excuse', 'for', 'their', 'conceal', 'it', 'from', 'we', '\n\n', 'conceal', 'it', 'from', 'we', 'my', 'dear', 'child', 'do', 'you', 'accuse', '\n', 'Willoughby', 'and', 'Marianne', 'of', 'concealment', 'this', 'be', 'strange', '\n', 'indeed', 'when', 'your', 'eye', 'have', 'be', 'reproach', 'they', 'every', 'day', '\n', 'for', 'incautiousness', '\n\n', 'I', 'want', 'no', 'proof', 'of', 'their', 'affection', 'say', 'Elinor', '\n', 'but', 'of', 'their', 'engagement', 'I', 'do', '\n\n', 'I', 'be', 'perfectly', 'satisfied', 'of', 'both', '\n\n', 'yet', 'not', 'a', 'syllable', 'have', 'be', 'say', 'to', 'you', 'on', 'the', '\n', 'subject', 'by', 'either', 'of', 'they', '\n\n', 'I', 'have', 'not', 'want', 'syllable', 'where', 'action', 'have', '\n', 'speak', 'so', 'plainly', ' ', 'have', 'not', 'his', 'behaviour', 'to', 'Marianne', '\n', 'and', 'to', 'all', 'of', 'we', 'for', 'at', 'least', 'the', 'last', 'fortnight', '\n', 'declare', 'that', 'he', 'love', 'and', 'consider', 'she', 'as', 'his', 'future', 'wife', '\n', 'and', 'that', 'he', 'feel', 'for', 'we', 'the', 'attachment', 'of', 'the', 'near', '\n', 'relation', ' ', 'have', 'we', 'not', 'perfectly', 'understand', 'each', 'other', '\n', 'have', 'not', 'my', 'consent', 'be', 'daily', 'ask', 'by', 'his', 'look', 'his', 'manner', '\n', 'his', 'attentive', 'and', 'affectionate', 'respect', ' ', 'my', 'Elinor', '\n', 'be', 'it', 'possible', 'to', 'doubt', 'their', 'engagement', ' ', 'how', 'could', '\n', 'such', 'a', 'thought', 'occur', 'to', 'you', ' ', 'how', 'be', 'it', 'to', 'be', 'suppose', '\n', 'that', 'Willoughby', 'persuade', 'as', 'he', 'must', 'be', 'of', 'your', '\n', 'sister', 'love', 'should', 'leave', 'she', 'and', 'leave', 'she', 'perhaps', '\n', 'for', 'month', 'without', 'tell', 'she', 'of', 'his', 'affectionthat', '\n', 'they', 'should', 'part', 'without', 'a', 'mutual', 'exchange', 'of', 'confidence', '\n\n', 'I', 'confess', 'reply', 'Elinor', 'that', 'every', 'circumstance', '\n', 'except', 'one', 'be', 'in', 'favour', 'of', 'their', 'engagement', '\n', 'but', 'that', 'one', 'be', 'the', 'total', 'silence', 'of', 'both', 'on', 'the', 'subject', '\n', 'and', 'with', 'I', 'it', 'almost', 'outweigh', 'every', 'other', '\n\n', 'how', 'strange', 'this', 'be', ' ', 'you', 'must', 'think', 'wretchedly', 'indeed', '\n', 'of', 'Willoughby', 'if', 'after', 'all', 'that', 'have', 'openly', 'pass', 'between', 'they', '\n', 'you', 'can', 'doubt', 'the', 'nature', 'of', 'the', 'term', 'on', 'which', 'they', 'be', 'together', '\n', 'have', 'he', 'be', 'act', 'a', 'part', 'in', 'his', 'behaviour', 'to', 'your', 'sister', '\n', 'all', 'this', 'time', ' ', 'do', 'you', 'suppose', 'he', 'really', 'indifferent', 'to', 'her', '\n\n', 'no', 'I', 'can', 'not', 'think', 'that', ' ', 'he', 'must', 'and', 'do', 'love', 'she', '\n', 'I', 'be', 'sure', '\n\n', 'but', 'with', 'a', 'strange', 'kind', 'of', 'tenderness', 'if', 'he', 'can', '\n', 'leave', 'she', 'with', 'such', 'indifference', 'such', 'carelessness', '\n', 'of', 'the', 'future', 'as', 'you', 'attribute', 'to', 'he', '\n\n', 'you', 'must', 'remember', 'my', 'dear', 'mother', 'that', 'I', 'have', 'never', '\n', 'consider', 'this', 'matter', 'as', 'certain', ' ', 'I', 'have', 'have', 'my', 'doubt', '\n', 'I', 'confess', 'but', 'they', 'be', 'fainter', 'than', 'they', 'be', 'and', 'they', '\n', 'may', 'soon', 'be', 'entirely', 'do', 'away', ' ', 'if', 'we', 'find', 'they', 'correspond', '\n', 'every', 'fear', 'of', 'mine', 'will', 'be', 'remove', '\n\n', 'a', 'mighty', 'concession', 'indeed', ' ', 'if', 'you', 'be', 'to', 'see', '\n', 'they', 'at', 'the', 'altar', 'you', 'would', 'suppose', 'they', 'be', 'go', 'to', '\n', 'be', 'marry', ' ', 'ungracious', 'girl', ' ', 'but', 'I', 'require', 'no', 'such', 'proof', '\n', 'nothing', 'in', 'my', 'opinion', 'have', 'ever', 'pass', 'to', 'justify', 'doubt', '\n', 'no', 'secrecy', 'have', 'be', 'attempt', 'all', 'have', 'be', 'uniformly', 'open', '\n', 'and', 'unreserve', ' ', 'you', 'can', 'not', 'doubt', 'your', 'sister', 'wish', '\n', 'it', 'must', 'be', 'Willoughby', 'therefore', 'whom', 'you', 'suspect', ' ', 'but', 'why', '\n', 'be', 'he', 'not', 'a', 'man', 'of', 'honour', 'and', 'feel', 'have', 'there', 'be', 'any', '\n', 'inconsistency', 'on', 'his', 'side', 'to', 'create', 'alarm', 'can', 'he', 'be', 'deceitful', '\n\n', 'I', 'hope', 'not', 'I', 'believe', 'not', 'cry', 'Elinor', '\n', 'I', 'love', 'Willoughby', 'sincerely', 'love', 'he', 'and', 'suspicion', 'of', 'his', '\n', 'integrity', 'can', 'not', 'be', 'more', 'painful', 'to', 'yourself', 'than', 'to', 'I', '\n', 'it', 'have', 'be', 'involuntary', 'and', 'I', 'will', 'not', 'encourage', 'it', '\n', 'I', 'be', 'startled', 'I', 'confess', 'by', 'the', 'alteration', 'in', 'his', '\n', 'manner', 'this', 'morninghe', 'do', 'not', 'speak', 'like', 'himself', '\n', 'and', 'do', 'not', 'return', 'your', 'kindness', 'with', 'any', 'cordiality', '\n', 'but', 'all', 'this', 'may', 'be', 'explain', 'by', 'such', 'a', 'situation', 'of', 'his', '\n', 'affair', 'as', 'you', 'have', 'suppose', ' ', 'he', 'have', 'just', 'part', 'from', '\n', 'my', 'sister', 'have', 'see', 'she', 'leave', 'he', 'in', 'the', 'great', 'affliction', '\n', 'and', 'if', 'he', 'feel', 'oblige', 'from', 'a', 'fear', 'of', 'offend', 'Mrs', 'Smith', '\n', 'to', 'resist', 'the', 'temptation', 'of', 'return', 'here', 'soon', 'and', 'yet', '\n', 'aware', 'that', 'by', 'decline', 'your', 'invitation', 'by', 'say', '\n', 'that', 'he', 'be', 'go', 'away', 'for', 'some', 'time', 'he', 'should', 'seem', '\n', 'to', 'act', 'an', 'ungenerous', 'a', 'suspicious', 'part', 'by', 'our', 'family', '\n', 'be', 'might', 'well', 'be', 'embarrassed', 'and', 'disturb', ' ', 'in', 'such', 'a', 'case', '\n', 'a', 'plain', 'and', 'open', 'avowal', 'of', 'his', 'difficulty', 'would', 'have', 'be', '\n', 'more', 'to', 'his', 'honour', 'I', 'think', 'as', 'well', 'as', 'more', 'consistent', '\n', 'with', 'his', 'general', 'characterbut', 'I', 'will', 'not', 'raise', 'objection', '\n', 'against', 'any', 'one', 'conduct', 'on', 'so', 'illiberal', 'a', 'foundation', '\n', 'as', 'a', 'difference', 'in', 'judgment', 'from', 'myself', 'or', 'a', 'deviation', 'from', '\n', 'what', 'I', 'may', 'think', 'right', 'and', 'consistent', '\n\n', 'you', 'speak', 'very', 'properly', ' ', 'Willoughby', 'certainly', 'do', '\n', 'not', 'deserve', 'to', 'be', 'suspect', ' ', 'though', 'we', 'have', 'not', 'know', '\n', 'he', 'long', 'he', 'be', 'no', 'stranger', 'in', 'this', 'part', 'of', 'the', 'world', '\n', 'and', 'who', 'have', 'ever', 'speak', 'to', 'his', 'disadvantage', ' ', 'have', 'he', 'be', '\n', 'in', 'a', 'situation', 'to', 'act', 'independently', 'and', 'marry', 'immediately', '\n', 'it', 'might', 'have', 'be', 'odd', 'that', 'he', 'should', 'leave', 'we', 'without', '\n', 'acknowledge', 'everything', 'to', 'I', 'at', 'once', 'but', 'this', 'be', 'not', 'the', 'case', '\n', 'it', 'be', 'an', 'engagement', 'in', 'some', 'respect', 'not', 'prosperously', 'begin', '\n', 'for', 'their', 'marriage', 'must', 'be', 'at', 'a', 'very', 'uncertain', 'distance', '\n', 'and', 'even', 'secrecy', 'as', 'far', 'as', 'it', 'can', 'be', 'observe', 'may', 'now', '\n', 'be', 'very', 'advisable', '\n\n', 'they', 'be', 'interrupt', 'by', 'the', 'entrance', 'of', 'Margaret', '\n', 'and', 'Elinor', 'be', 'then', 'at', 'liberty', 'to', 'think', 'over', 'the', 'representation', '\n', 'of', 'her', 'mother', 'to', 'acknowledge', 'the', 'probability', 'of', 'many', '\n', 'and', 'hope', 'for', 'the', 'justice', 'of', 'all', '\n\n', 'they', 'see', 'nothing', 'of', 'Marianne', 'till', 'dinner', 'time', '\n', 'when', 'she', 'enter', 'the', 'room', 'and', 'take', 'her', 'place', 'at', 'the', 'table', '\n', 'without', 'say', 'a', 'word', ' ', 'her', 'eye', 'be', 'red', 'and', 'swollen', '\n', 'and', 'it', 'seem', 'as', 'if', 'her', 'tear', 'be', 'even', 'then', 'restrain', '\n', 'with', 'difficulty', ' ', 'she', 'avoid', 'the', 'look', 'of', 'they', 'all', '\n', 'could', 'neither', 'eat', 'nor', 'speak', 'and', 'after', 'some', 'time', 'on', 'her', '\n', 'mother', 'silently', 'press', 'her', 'hand', 'with', 'tender', 'compassion', '\n', 'her', 'small', 'degree', 'of', 'fortitude', 'be', 'quite', 'overcome', 'she', 'burst', '\n', 'into', 'tear', 'and', 'leave', 'the', 'room', '\n\n', 'this', 'violent', 'oppression', 'of', 'spirit', 'continue', 'the', '\n', 'whole', 'evening', ' ', 'she', 'be', 'without', 'any', 'power', 'because', 'she', '\n', 'be', 'without', 'any', 'desire', 'of', 'command', 'over', 'herself', '\n', 'the', 'slight', 'mention', 'of', 'anything', 'relative', 'to', 'Willoughby', '\n', 'overpower', 'she', 'in', 'an', 'instant', 'and', 'though', 'her', 'family', '\n', 'be', 'most', 'anxiously', 'attentive', 'to', 'her', 'comfort', 'it', 'be', '\n', 'impossible', 'for', 'they', 'if', 'they', 'speak', 'at', 'all', 'to', 'keep', 'clear', '\n', 'of', 'every', 'subject', 'which', 'her', 'feeling', 'connect', 'with', 'he', '\n\n\n\n', 'CHAPTER', '16', '\n\n\n', 'Marianne', 'would', 'have', 'think', 'herself', 'very', 'inexcusable', '\n', 'have', 'she', 'be', 'able', 'to', 'sleep', 'at', 'all', 'the', 'first', 'night', '\n', 'after', 'part', 'from', 'Willoughby', ' ', 'she', 'would', 'have', 'be', '\n', 'ashamed', 'to', 'look', 'her', 'family', 'in', 'the', 'face', 'the', 'next', 'morning', '\n', 'have', 'she', 'not', 'rise', 'from', 'her', 'bed', 'in', 'more', 'need', 'of', 'repose', '\n', 'than', 'when', 'she', 'lie', 'down', 'in', 'it', ' ', 'but', 'the', 'feeling', 'which', '\n', 'make', 'such', 'composure', 'a', 'disgrace', 'leave', 'she', 'in', 'no', 'danger', '\n', 'of', 'incur', 'it', ' ', 'she', 'be', 'awake', 'the', 'whole', 'night', 'and', 'she', '\n', 'weep', 'the', 'great', 'part', 'of', 'it', ' ', 'she', 'get', 'up', 'with', 'a', 'headache', '\n', 'be', 'unable', 'to', 'talk', 'and', 'unwilling', 'to', 'take', 'any', 'nourishment', '\n', 'give', 'pain', 'every', 'moment', 'to', 'her', 'mother', 'and', 'sister', '\n', 'and', 'forbid', 'all', 'attempt', 'at', 'consolation', 'from', 'either', '\n', 'her', 'sensibility', 'be', 'potent', 'enough', '\n\n', 'when', 'breakfast', 'be', 'over', 'she', 'walk', 'out', 'by', 'herself', '\n', 'and', 'wander', 'about', 'the', 'village', 'of', 'Allenham', 'indulge', 'the', '\n', 'recollection', 'of', 'past', 'enjoyment', 'and', 'cry', 'over', 'the', 'present', '\n', 'reverse', 'for', 'the', 'chief', 'of', 'the', 'morning', '\n\n', 'the', 'evening', 'pass', 'off', 'in', 'the', 'equal', 'indulgence', 'of', 'feel', '\n', 'she', 'play', 'over', 'every', 'favourite', 'song', 'that', 'she', 'have', 'be', 'use', '\n', 'to', 'play', 'to', 'Willoughby', 'every', 'air', 'in', 'which', 'their', 'voice', '\n', 'have', 'be', 'oftenest', 'join', 'and', 'sit', 'at', 'the', 'instrument', 'gaze', '\n', 'on', 'every', 'line', 'of', 'music', 'that', 'he', 'have', 'write', 'out', 'for', 'she', '\n', 'till', 'her', 'heart', 'be', 'so', 'heavy', 'that', 'no', 'farther', 'sadness', '\n', 'could', 'be', 'gain', 'and', 'this', 'nourishment', 'of', 'grief', 'be', 'every', '\n', 'day', 'apply', ' ', 'she', 'spend', 'whole', 'hour', 'at', 'the', 'pianoforte', '\n', 'alternately', 'singe', 'and', 'cry', 'her', 'voice', 'often', 'totally', '\n', 'suspend', 'by', 'her', 'tear', ' ', 'in', 'book', 'too', 'as', 'well', 'as', 'in', 'music', '\n', 'she', 'court', 'the', 'misery', 'which', 'a', 'contrast', 'between', 'the', 'past', '\n', 'and', 'present', 'be', 'certain', 'of', 'give', ' ', 'she', 'read', 'nothing', '\n', 'but', 'what', 'they', 'have', 'be', 'use', 'to', 'read', 'together', '\n\n', 'such', 'violence', 'of', 'affliction', 'indeed', 'could', 'not', 'be', 'support', '\n', 'for', 'ever', 'it', 'sink', 'within', 'a', 'few', 'day', 'into', 'a', 'calm', 'melancholy', '\n', 'but', 'these', 'employment', 'to', 'which', 'she', 'daily', 'recur', '\n', 'her', 'solitary', 'walk', 'and', 'silent', 'meditation', 'still', 'produce', '\n', 'occasional', 'effusion', 'of', 'sorrow', 'as', 'lively', 'as', 'ever', '\n\n', 'no', 'letter', 'from', 'Willoughby', 'come', 'and', 'none', 'seem', 'expect', '\n', 'by', 'Marianne', ' ', 'her', 'mother', 'be', 'surprised', 'and', 'Elinor', 'again', '\n', 'become', 'uneasy', ' ', 'but', 'Mrs', 'Dashwood', 'could', 'find', 'explanation', '\n', 'whenever', 'she', 'want', 'they', 'which', 'at', 'least', 'satisfy', 'herself', '\n\n', 'remember', 'Elinor', 'say', 'she', 'how', 'very', 'often', 'Sir', 'John', '\n', 'fetch', 'our', 'letter', 'himself', 'from', 'the', 'post', 'and', 'carry', 'they', '\n', 'to', 'it', ' ', 'we', 'have', 'already', 'agree', 'that', 'secrecy', 'may', 'be', 'necessary', '\n', 'and', 'we', 'must', 'acknowledge', 'that', 'it', 'could', 'not', 'be', 'maintain', 'if', '\n', 'their', 'correspondence', 'be', 'to', 'pass', 'through', 'Sir', 'Johns', 'hand', '\n\n', 'Elinor', 'could', 'not', 'deny', 'the', 'truth', 'of', 'this', 'and', 'she', 'try', '\n', 'to', 'find', 'in', 'it', 'a', 'motive', 'sufficient', 'for', 'their', 'silence', '\n', 'but', 'there', 'be', 'one', 'method', 'so', 'direct', 'so', 'simple', 'and', 'in', '\n', 'her', 'opinion', 'so', 'eligible', 'of', 'know', 'the', 'real', 'state', '\n', 'of', 'the', 'affair', 'and', 'of', 'instantly', 'remove', 'all', 'mystery', '\n', 'that', 'she', 'could', 'not', 'help', 'suggest', 'it', 'to', 'her', 'mother', '\n\n', 'why', 'do', 'you', 'not', 'ask', 'Marianne', 'at', 'once', 'say', 'she', '\n', 'whether', 'she', 'be', 'or', 'she', 'be', 'not', 'engage', 'to', 'Willoughby', ' ', 'from', 'you', '\n', 'her', 'mother', 'and', 'so', 'kind', 'so', 'indulgent', 'a', 'mother', 'the', 'question', '\n', 'could', 'not', 'give', 'offence', ' ', 'it', 'would', 'be', 'the', 'natural', 'result', '\n', 'of', 'your', 'affection', 'for', 'her', ' ', 'she', 'use', 'to', 'be', 'all', 'unreserve', '\n', 'and', 'to', 'you', 'more', 'especially', '\n\n', 'I', 'would', 'not', 'ask', 'such', 'a', 'question', 'for', 'the', 'world', '\n', 'suppose', 'it', 'possible', 'that', 'they', 'be', 'not', 'engage', '\n', 'what', 'distress', 'would', 'not', 'such', 'an', 'enquiry', 'inflict', ' ', 'at', 'any', '\n', 'rate', 'it', 'would', 'be', 'most', 'ungenerous', ' ', 'I', 'should', 'never', 'deserve', '\n', 'her', 'confidence', 'again', 'after', 'force', 'from', 'she', 'a', 'confession', '\n', 'of', 'what', 'be', 'mean', 'at', 'present', 'to', 'be', 'unacknowledge', 'to', 'any', 'one', '\n', 'I', 'know', 'Mariannes', 'heart', 'I', 'know', 'that', 'she', 'dearly', 'love', 'I', '\n', 'and', 'that', 'I', 'shall', 'not', 'be', 'the', 'last', 'to', 'whom', 'the', 'affair', 'be', 'made', '\n', 'know', '\n', 'when', 'circumstance', 'make', 'the', 'revealment', 'of', 'it', 'eligible', '\n', 'I', 'would', 'not', 'attempt', 'to', 'force', 'the', 'confidence', 'of', 'any', 'one', '\n', 'of', 'a', 'child', 'much', 'less', 'because', 'a', 'sense', 'of', 'duty', 'would', 'prevent', '\n', 'the', 'denial', 'which', 'her', 'wish', 'might', 'direct', '\n\n', 'Elinor', 'think', 'this', 'generosity', 'overstrain', '\n', 'consider', 'her', 'sister', 'youth', 'and', 'urge', 'the', 'matter', 'far', '\n', 'but', 'in', 'vain', 'common', 'sense', 'common', 'care', 'common', 'prudence', '\n', 'be', 'all', 'sink', 'in', 'Mrs', 'Dashwoods', 'romantic', 'delicacy', '\n\n', 'it', 'be', 'several', 'day', 'before', 'Willoughbys', 'name', '\n', 'be', 'mention', 'before', 'Marianne', 'by', 'any', 'of', 'her', 'family', '\n', 'Sir', 'John', 'and', 'Mrs', 'Jennings', 'indeed', 'be', 'not', 'so', 'nice', '\n', 'their', 'witticism', 'add', 'pain', 'to', 'many', 'a', 'painful', 'hour', '\n', 'but', 'one', 'evening', 'Mrs', 'Dashwood', 'accidentally', 'take', 'up', 'a', '\n', 'volume', 'of', 'Shakespeare', 'exclaim', '\n\n', 'we', 'have', 'never', 'finish', 'Hamlet', 'Marianne', 'our', 'dear', '\n', 'Willoughby', 'go', 'away', 'before', 'we', 'could', 'get', 'through', 'it', '\n', 'we', 'will', 'put', 'it', 'by', 'that', 'when', 'he', 'come', 'againbut', 'it', 'may', '\n', 'be', 'month', 'perhaps', 'before', 'that', 'happen', '\n\n', 'month', 'cry', 'Marianne', 'with', 'strong', 'surprise', '\n', 'Nonor', 'many', 'week', '\n\n', 'Mrs', 'Dashwood', 'be', 'sorry', 'for', 'what', 'she', 'have', 'say', '\n', 'but', 'it', 'give', 'Elinor', 'pleasure', 'as', 'it', 'produce', 'a', 'reply', '\n', 'from', 'Marianne', 'so', 'expressive', 'of', 'confidence', 'in', 'Willoughby', '\n', 'and', 'knowledge', 'of', 'his', 'intention', '\n\n', 'one', 'morning', 'about', 'a', 'week', 'after', 'his', 'leave', 'the', 'country', '\n', 'Marianne', 'be', 'prevail', 'on', 'to', 'join', 'her', 'sister', 'in', 'their', '\n', 'usual', 'walk', 'instead', 'of', 'wander', 'away', 'by', 'herself', '\n', 'Hitherto', 'she', 'have', 'carefully', 'avoid', 'every', 'companion', 'in', '\n', 'her', 'ramble', ' ', 'if', 'her', 'sister', 'intend', 'to', 'walk', 'on', 'the', 'down', '\n', 'she', 'directly', 'steal', 'away', 'towards', 'the', 'lane', 'if', 'they', 'talk', '\n', 'of', 'the', 'valley', 'she', 'be', 'as', 'speedy', 'in', 'climb', 'the', 'hill', '\n', 'and', 'could', 'never', 'be', 'find', 'when', 'the', 'other', 'set', 'off', '\n', 'but', 'at', 'length', 'she', 'be', 'secure', 'by', 'the', 'exertion', 'of', 'Elinor', '\n', 'who', 'greatly', 'disapprove', 'such', 'continual', 'seclusion', ' ', 'they', 'walk', '\n', 'along', 'the', 'road', 'through', 'the', 'valley', 'and', 'chiefly', 'in', 'silence', '\n', 'for', 'Mariannes', 'MIND', 'could', 'not', 'be', 'control', 'and', 'Elinor', '\n', 'satisfy', 'with', 'gain', 'one', 'point', 'would', 'not', 'then', 'attempt', 'more', '\n', 'beyond', 'the', 'entrance', 'of', 'the', 'valley', 'where', 'the', 'country', '\n', 'though', 'still', 'rich', 'be', 'less', 'wild', 'and', 'more', 'open', 'a', 'long', '\n', 'stretch', 'of', 'the', 'road', 'which', 'they', 'have', 'travel', 'on', 'first', 'come', '\n', 'to', 'Barton', 'lie', 'before', 'they', 'and', 'on', 'reach', 'that', 'point', '\n', 'they', 'stop', 'to', 'look', 'around', 'they', 'and', 'examine', 'a', 'prospect', '\n', 'which', 'form', 'the', 'distance', 'of', 'their', 'view', 'from', 'the', 'cottage', '\n', 'from', 'a', 'spot', 'which', 'they', 'have', 'never', 'happen', 'to', 'reach', 'in', 'any', '\n', 'of', 'their', 'walk', 'before', '\n\n', 'amongst', 'the', 'object', 'in', 'the', 'scene', 'they', 'soon', 'discover', '\n', 'an', 'animate', 'one', 'it', 'be', 'a', 'man', 'on', 'horseback', 'ride', 'towards', 'they', '\n', 'in', 'a', 'few', 'minute', 'they', 'could', 'distinguish', 'he', 'to', 'be', 'a', 'gentleman', '\n', 'and', 'in', 'a', 'moment', 'afterwards', 'Marianne', 'rapturously', 'exclaim', '\n\n', 'it', 'be', 'he', 'it', 'be', 'indeedi', 'know', 'it', 'isand', 'be', '\n', 'hasten', 'to', 'meet', 'he', 'when', 'Elinor', 'cry', 'out', '\n\n', 'indeed', 'Marianne', 'I', 'think', 'you', 'be', 'mistaken', ' ', 'it', 'be', '\n', 'not', 'Willoughby', ' ', 'the', 'person', 'be', 'not', 'tall', 'enough', 'for', 'he', '\n', 'and', 'have', 'not', 'his', 'air', '\n\n', 'he', 'have', 'he', 'have', 'cry', 'Marianne', 'I', 'be', 'sure', 'he', 'have', '\n', 'his', 'air', 'his', 'coat', 'his', 'horse', ' ', 'I', 'know', 'how', 'soon', 'he', 'would', 'come', '\n\n', 'she', 'walk', 'eagerly', 'on', 'as', 'she', 'speak', 'and', 'Elinor', '\n', 'to', 'screen', 'Marianne', 'from', 'particularity', 'as', 'she', 'feel', 'almost', '\n', 'certain', 'of', 'its', 'not', 'be', 'Willoughby', 'quicken', 'her', '\n', 'pace', 'and', 'keep', 'up', 'with', 'her', ' ', 'they', 'be', 'soon', 'within', '\n', 'thirty', 'yard', 'of', 'the', 'gentleman', ' ', 'Marianne', 'look', 'again', '\n', 'her', 'heart', 'sink', 'within', 'she', 'and', 'abruptly', 'turn', 'round', '\n', 'she', 'be', 'hurry', 'back', 'when', 'the', 'voice', 'of', 'both', 'her', 'sister', '\n', 'be', 'raise', 'to', 'detain', 'she', 'a', 'third', 'almost', 'as', 'well', 'know', '\n', 'as', 'Willoughbys', 'join', 'they', 'in', 'beg', 'she', 'to', 'stop', '\n', 'and', 'she', 'turn', 'round', 'with', 'surprise', 'to', 'see', 'and', 'welcome', '\n', 'Edward', 'Ferrars', '\n\n', 'he', 'be', 'the', 'only', 'person', 'in', 'the', 'world', 'who', 'could', '\n', 'at', 'that', 'moment', 'be', 'forgive', 'for', 'not', 'be', 'Willoughby', '\n', 'the', 'only', 'one', 'who', 'could', 'have', 'gain', 'a', 'smile', 'from', 'she', '\n', 'but', 'she', 'disperse', 'her', 'tear', 'to', 'smile', 'on', 'HIM', 'and', 'in', 'her', '\n', 'sister', 'happiness', 'forgot', 'for', 'a', 'time', 'her', 'own', 'disappointment', '\n\n', 'he', 'dismount', 'and', 'give', 'his', 'horse', 'to', 'his', 'servant', '\n', 'walk', 'back', 'with', 'they', 'to', 'Barton', 'whither', 'he', 'be', 'purposely', '\n', 'come', 'to', 'visit', 'they', '\n\n', 'he', 'be', 'welcome', 'by', 'they', 'all', 'with', 'great', 'cordiality', '\n', 'but', 'especially', 'by', 'Marianne', 'who', 'show', 'more', 'warmth', 'of', '\n', 'regard', 'in', 'her', 'reception', 'of', 'he', 'than', 'even', 'elinor', 'herself', '\n', 'to', 'Marianne', 'indeed', 'the', 'meeting', 'between', 'Edward', 'and', 'her', 'sister', '\n', 'be', 'but', 'a', 'continuation', 'of', 'that', 'unaccountable', 'coldness', 'which', 'she', '\n', 'have', 'often', 'observe', 'at', 'Norland', 'in', 'their', 'mutual', 'behaviour', '\n', 'on', 'Edwards', 'side', 'more', 'particularly', 'there', 'be', 'a', 'deficiency', '\n', 'of', 'all', 'that', 'a', 'lover', 'ought', 'to', 'look', 'and', 'say', 'on', 'such', 'an', 'occasion', '\n', 'he', 'be', 'confuse', 'seem', 'scarcely', 'sensible', 'of', 'pleasure', '\n', 'in', 'see', 'they', 'look', 'neither', 'rapturous', 'nor', 'gay', '\n', 'say', 'little', 'but', 'what', 'be', 'force', 'from', 'he', 'by', 'question', '\n', 'and', 'distinguish', 'Elinor', 'by', 'no', 'mark', 'of', 'affection', '\n', 'Marianne', 'see', 'and', 'listen', 'with', 'increase', 'surprise', '\n', 'she', 'begin', 'almost', 'to', 'feel', 'a', 'dislike', 'of', 'Edward', 'and', 'it', 'end', '\n', 'as', 'every', 'feeling', 'must', 'end', 'with', 'she', 'by', 'carry', 'back', 'her', '\n', 'thought', 'to', 'Willoughby', 'whose', 'manner', 'form', 'a', 'contrast', '\n', 'sufficiently', 'strike', 'to', 'those', 'of', 'his', 'brother', 'elect', '\n\n', 'after', 'a', 'short', 'silence', 'which', 'succeed', 'the', 'first', '\n', 'surprise', 'and', 'enquiry', 'of', 'meet', 'Marianne', 'ask', '\n', 'Edward', 'if', 'he', 'come', 'directly', 'from', 'London', ' ', 'no', 'he', 'have', '\n', 'be', 'in', 'Devonshire', 'a', 'fortnight', '\n\n', 'a', 'fortnight', 'she', 'repeat', 'surprised', 'at', 'his', 'be', '\n', 'so', 'long', 'in', 'the', 'same', 'county', 'with', 'Elinor', 'without', 'see', '\n', 'she', 'before', '\n\n', 'he', 'look', 'rather', 'distressed', 'as', 'he', 'add', 'that', 'he', '\n', 'have', 'be', 'stay', 'with', 'some', 'friend', 'near', 'Plymouth', '\n\n', 'have', 'you', 'be', 'lately', 'in', 'Sussex', 'say', 'Elinor', '\n\n', 'I', 'be', 'at', 'Norland', 'about', 'a', 'month', 'ago', '\n\n', 'and', 'how', 'do', 'dear', 'dear', 'Norland', 'look', 'cry', 'Marianne', '\n\n', 'Dear', 'dear', 'Norland', 'say', 'Elinor', 'probably', 'look', '\n', 'much', 'as', 'it', 'always', 'do', 'at', 'this', 'time', 'of', 'the', 'year', '\n', 'the', 'wood', 'and', 'walk', 'thickly', 'cover', 'with', 'dead', 'leave', '\n\n', 'oh', 'cry', 'Marianne', 'with', 'what', 'transporting', 'sensation', '\n', 'have', 'I', 'formerly', 'see', 'they', 'fall', ' ', 'how', 'have', 'I', 'delight', '\n', 'as', 'I', 'walk', 'to', 'see', 'they', 'drive', 'in', 'shower', 'about', 'I', '\n', 'by', 'the', 'wind', ' ', 'what', 'feeling', 'have', 'they', 'the', 'season', 'the', 'air', '\n', 'altogether', 'inspire', ' ', 'now', 'there', 'be', 'no', 'one', 'to', 'regard', 'they', '\n', 'they', 'be', 'see', 'only', 'as', 'a', 'nuisance', 'sweep', 'hastily', 'off', '\n', 'and', 'drive', 'as', 'much', 'as', 'possible', 'from', 'the', 'sight', '\n\n', 'it', 'be', 'not', 'every', 'one', 'say', 'Elinor', 'who', 'have', 'your', '\n', 'passion', 'for', 'dead', 'leave', '\n\n', 'no', 'my', 'feeling', 'be', 'not', 'often', 'share', 'not', 'often', '\n', 'understand', ' ', 'but', 'sometimes', 'they', 'areAs', 'she', 'say', 'this', '\n', 'she', 'sink', 'into', 'a', 'reverie', 'for', 'a', 'few', 'momentsbut', 'rouse', '\n', 'herself', 'again', 'now', 'Edward', 'say', 'she', 'call', 'his', 'attention', '\n', 'to', 'the', 'prospect', 'here', 'be', 'Barton', 'valley', ' ', 'look', 'up', 'to', 'it', '\n', 'and', 'be', 'tranquil', 'if', 'you', 'can', ' ', 'look', 'at', 'those', 'hill', '\n', 'do', 'you', 'ever', 'see', 'their', 'equal', ' ', 'to', 'the', 'left', 'be', 'Barton', 'park', '\n', 'amongst', 'those', 'wood', 'and', 'plantation', ' ', 'you', 'may', 'see', 'the', 'end', '\n', 'of', 'the', 'house', ' ', 'and', 'there', 'beneath', 'that', 'farth', 'hill', '\n', 'which', 'rise', 'with', 'such', 'grandeur', 'be', 'our', 'cottage', '\n\n', 'it', 'be', 'a', 'beautiful', 'country', 'he', 'reply', 'but', 'these', '\n', 'bottom', 'must', 'be', 'dirty', 'in', 'winter', '\n\n', 'how', 'can', 'you', 'think', 'of', 'dirt', 'with', 'such', 'object', 'before', 'you', '\n\n', 'because', 'reply', 'he', 'smile', 'among', 'the', 'rest', 'of', 'the', '\n', 'object', 'before', 'I', 'I', 'see', 'a', 'very', 'dirty', 'lane', '\n\n', 'how', 'strange', 'say', 'Marianne', 'to', 'herself', 'as', 'she', 'walk', 'on', '\n\n', 'have', 'you', 'an', 'agreeable', 'neighbourhood', 'here', ' ', 'be', 'the', '\n', 'Middletons', 'pleasant', 'people', '\n\n', 'no', 'not', 'all', 'answer', 'Marianne', 'we', 'could', 'not', '\n', 'be', 'more', 'unfortunately', 'situate', '\n\n', 'Marianne', 'cry', 'her', 'sister', 'how', 'can', 'you', 'say', 'so', 'how', 'can', '\n', 'you', 'be', 'so', 'unjust', ' ', 'they', 'be', 'a', 'very', 'respectable', 'family', 'Mr', '\n', 'ferrar', '\n', 'and', 'towards', 'we', 'have', 'behave', 'in', 'the', 'friendly', 'manner', ' ', 'have', 'you', '\n', 'forget', 'Marianne', 'how', 'many', 'pleasant', 'day', 'we', 'have', 'owe', 'to', 'they', '\n\n', 'no', 'say', 'Marianne', 'in', 'a', 'low', 'voice', 'nor', 'how', 'many', '\n', 'painful', 'moment', '\n\n', 'Elinor', 'take', 'no', 'notice', 'of', 'this', 'and', 'direct', '\n', 'her', 'attention', 'to', 'their', 'visitor', 'endeavour', 'to', 'support', '\n', 'something', 'like', 'discourse', 'with', 'he', 'by', 'talk', 'of', 'their', '\n', 'present', 'residence', 'its', 'convenience', 'c', 'extort', 'from', 'he', '\n', 'occasional', 'question', 'and', 'remark', ' ', 'his', 'coldness', 'and', 'reserve', '\n', 'mortify', 'she', 'severely', 'she', 'be', 'vex', 'and', 'half', 'angry', '\n', 'but', 'resolve', 'to', 'regulate', 'her', 'behaviour', 'to', 'he', 'by', 'the', 'past', '\n', 'rather', 'than', 'the', 'present', 'she', 'avoid', 'every', 'appearance', '\n', 'of', 'resentment', 'or', 'displeasure', 'and', 'treat', 'he', 'as', 'she', '\n', 'think', 'he', 'ought', 'to', 'be', 'treat', 'from', 'the', 'family', 'connection', '\n\n\n\n', 'chapter', '17', '\n\n\n', 'Mrs', 'Dashwood', 'be', 'surprised', 'only', 'for', 'a', 'moment', 'at', '\n', 'see', 'he', 'for', 'his', 'come', 'to', 'Barton', 'be', 'in', 'her', 'opinion', '\n', 'of', 'all', 'thing', 'the', 'most', 'natural', ' ', 'her', 'joy', 'and', 'expression', '\n', 'of', 'regard', 'long', 'outlive', 'her', 'wonder', ' ', 'he', 'receive', 'the', 'kind', '\n', 'welcome', 'from', 'she', 'and', 'shyness', 'coldness', 'reserve', 'could', 'not', '\n', 'stand', 'against', 'such', 'a', 'reception', ' ', 'they', 'have', 'begin', 'to', 'fail', 'he', '\n', 'before', 'he', 'enter', 'the', 'house', 'and', 'they', 'be', 'quite', 'overcome', '\n', 'by', 'the', 'captivate', 'manner', 'of', 'Mrs', 'Dashwood', ' ', 'indeed', 'a', 'man', '\n', 'could', 'not', 'very', 'well', 'be', 'in', 'love', 'with', 'either', 'of', 'her', 'daughter', '\n', 'without', 'extend', 'the', 'passion', 'to', 'she', 'and', 'Elinor', 'have', 'the', '\n', 'satisfaction', 'of', 'see', 'he', 'soon', 'become', 'more', 'like', 'himself', '\n', 'his', 'affection', 'seem', 'to', 'reanimate', 'towards', 'they', 'all', '\n', 'and', 'his', 'interest', 'in', 'their', 'welfare', 'again', 'become', 'perceptible', '\n', 'he', 'be', 'not', 'in', 'spirit', 'however', 'he', 'praise', 'their', 'house', '\n', 'admire', 'its', 'prospect', 'be', 'attentive', 'and', 'kind', 'but', 'still', '\n', 'he', 'be', 'not', 'in', 'spirit', ' ', 'the', 'whole', 'family', 'perceive', 'it', '\n', 'and', 'Mrs', 'Dashwood', 'attribute', 'it', 'to', 'some', 'want', 'of', 'liberality', '\n', 'in', 'his', 'mother', 'sit', 'down', 'to', 'table', 'indignant', 'against', 'all', '\n', 'selfish', 'parent', '\n\n', 'what', 'be', 'Mrs', 'Ferrarss', 'view', 'for', 'you', 'at', 'present', 'Edward', '\n', 'say', 'she', 'when', 'dinner', 'be', 'over', 'and', 'they', 'have', 'draw', 'round', '\n', 'the', 'fire', 'be', 'you', 'still', 'to', 'be', 'a', 'great', 'orator', 'in', 'spite', 'of', '\n', 'yourself', '\n\n', 'no', 'I', 'hope', 'my', 'mother', 'be', 'now', 'convince', 'that', 'I', 'have', '\n', 'no', 'more', 'talent', 'than', 'inclination', 'for', 'a', 'public', 'life', '\n\n', 'but', 'how', 'be', 'your', 'fame', 'to', 'be', 'establish', 'for', 'famous', 'you', '\n', 'must', 'be', 'to', 'satisfy', 'all', 'your', 'family', 'and', 'with', 'no', 'inclination', '\n', 'for', 'expense', 'no', 'affection', 'for', 'stranger', 'no', 'profession', '\n', 'and', 'no', 'assurance', 'you', 'may', 'find', 'it', 'a', 'difficult', 'matter', '\n\n', 'I', 'shall', 'not', 'attempt', 'it', ' ', 'I', 'have', 'no', 'wish', 'to', 'be', '\n', 'distinguished', 'and', 'have', 'every', 'reason', 'to', 'hope', 'I', 'never', 'shall', '\n', 'thank', 'Heaven', 'I', 'can', 'not', 'be', 'force', 'into', 'genius', 'and', 'eloquence', '\n\n', 'you', 'have', 'no', 'ambition', 'I', 'well', 'know', ' ', 'your', 'wish', '\n', 'be', 'all', 'moderate', '\n\n', 'as', 'moderate', 'as', 'those', 'of', 'the', 'rest', 'of', 'the', 'world', '\n', 'I', 'believe', ' ', 'I', 'wish', 'as', 'well', 'as', 'every', 'body', 'else', 'to', 'be', '\n', 'perfectly', 'happy', 'but', 'like', 'every', 'body', 'else', 'it', 'must', 'be', '\n', 'in', 'my', 'own', 'way', ' ', 'Greatness', 'will', 'not', 'make', 'I', 'so', '\n\n', 'strange', 'that', 'it', 'would', 'cry', 'Marianne', ' ', 'what', 'have', '\n', 'wealth', 'or', 'grandeur', 'to', 'do', 'with', 'happiness', '\n\n', 'Grandeur', 'have', 'but', 'little', 'say', 'Elinor', 'but', 'wealth', '\n', 'have', 'much', 'to', 'do', 'with', 'it', '\n\n', 'Elinor', 'for', 'shame', 'say', 'Marianne', 'money', 'can', 'only', '\n', 'give', 'happiness', 'where', 'there', 'be', 'nothing', 'else', 'to', 'give', 'it', '\n', 'beyond', 'a', 'competence', 'it', 'can', 'afford', 'no', 'real', 'satisfaction', '\n', 'as', 'far', 'as', 'mere', 'self', 'be', 'concern', '\n\n', 'perhaps', 'say', 'Elinor', 'smile', 'we', 'may', 'come', '\n', 'to', 'the', 'same', 'point', ' ', 'your', 'competence', 'and', 'my', 'wealth', '\n', 'be', 'very', 'much', 'alike', 'I', 'dare', 'say', 'and', 'without', 'they', '\n', 'as', 'the', 'world', 'go', 'now', 'we', 'shall', 'both', 'agree', 'that', 'every', '\n', 'kind', 'of', 'external', 'comfort', 'must', 'be', 'want', ' ', 'your', 'idea', '\n', 'be', 'only', 'more', 'noble', 'than', 'mine', ' ', 'come', 'what', 'be', 'your', 'competence', '\n\n', 'about', 'eighteen', 'hundred', 'or', 'two', 'thousand', 'a', 'year', '\n', 'not', 'more', 'than', 'that', '\n\n', 'Elinor', 'laugh', ' ', 'two', 'thousand', 'a', 'year', 'one', 'be', 'my', '\n', 'wealth', 'I', 'guess', 'how', 'it', 'would', 'end', '\n\n', 'and', 'yet', 'two', 'thousand', 'ayear', 'be', 'a', 'very', 'moderate', 'income', '\n', 'say', 'Marianne', ' ', 'a', 'family', 'can', 'not', 'well', 'be', 'maintain', 'on', '\n', 'a', 'small', ' ', 'I', 'be', 'sure', 'I', 'be', 'not', 'extravagant', 'in', 'my', 'demand', '\n', 'a', 'proper', 'establishment', 'of', 'servant', 'a', 'carriage', 'perhaps', 'two', '\n', 'and', 'hunter', 'can', 'not', 'be', 'support', 'on', 'less', '\n\n', 'Elinor', 'smile', 'again', 'to', 'hear', 'her', 'sister', 'describe', '\n', 'so', 'accurately', 'their', 'future', 'expense', 'at', 'Combe', 'Magna', '\n\n', 'hunter', 'repeat', 'Edwardbut', 'why', 'must', 'you', 'have', '\n', 'hunter', ' ', 'every', 'body', 'do', 'not', 'hunt', '\n\n', 'Marianne', 'colour', 'as', 'she', 'reply', 'but', 'most', 'people', 'do', '\n\n', 'I', 'wish', 'say', 'Margaret', 'strike', 'out', 'a', 'novel', 'thought', '\n', 'that', 'somebody', 'would', 'give', 'we', 'all', 'a', 'large', 'fortune', 'apiece', '\n\n', 'oh', 'that', 'they', 'would', 'cry', 'Marianne', 'her', 'eye', '\n', 'sparkle', 'with', 'animation', 'and', 'her', 'cheek', 'glow', '\n', 'with', 'the', 'delight', 'of', 'such', 'imaginary', 'happiness', '\n\n', 'we', 'be', 'all', 'unanimous', 'in', 'that', 'wish', 'I', 'suppose', '\n', 'say', 'Elinor', 'in', 'spite', 'of', 'the', 'insufficiency', 'of', 'wealth', '\n\n', 'oh', 'dear', 'cry', 'Margaret', 'how', 'happy', 'I', 'should', 'be', '\n', 'I', 'wonder', 'what', 'I', 'should', 'do', 'with', 'it', '\n\n', 'Marianne', 'look', 'as', 'if', 'she', 'have', 'no', 'doubt', 'on', 'that', 'point', '\n\n', 'I', 'should', 'be', 'puzzle', 'to', 'spend', 'so', 'large', 'a', 'fortune', 'myself', '\n', 'say', 'Mrs', 'Dashwood', 'if', 'my', 'child', 'be', 'all', 'to', 'be', 'rich', '\n', 'my', 'help', '\n\n', 'you', 'must', 'begin', 'your', 'improvement', 'on', 'this', 'house', '\n', 'observe', 'Elinor', 'and', 'your', 'difficulty', 'will', 'soon', 'vanish', '\n\n', 'what', 'magnificent', 'order', 'would', 'travel', 'from', 'this', 'family', '\n', 'to', 'London', 'say', 'Edward', 'in', 'such', 'an', 'event', ' ', 'what', 'a', 'happy', '\n', 'day', 'for', 'bookseller', 'musicseller', 'and', 'printshop', ' ', 'you', '\n', 'Miss', 'Dashwood', 'would', 'give', 'a', 'general', 'commission', 'for', 'every', '\n', 'new', 'print', 'of', 'merit', 'to', 'be', 'send', 'youand', 'as', 'for', 'Marianne', '\n', 'I', 'know', 'her', 'greatness', 'of', 'soul', 'there', 'would', 'not', 'be', 'music', 'enough', '\n', 'in', 'London', 'to', 'content', 'she', ' ', 'and', 'booksThomson', 'Cowper', '\n', 'Scottshe', 'would', 'buy', 'they', 'all', 'over', 'and', 'over', 'again', 'she', '\n', 'would', 'buy', 'up', 'every', 'copy', 'I', 'believe', 'to', 'prevent', 'their', '\n', 'fall', 'into', 'unworthy', 'hand', 'and', 'she', 'would', 'have', 'every', '\n', 'book', 'that', 'tell', 'she', 'how', 'to', 'admire', 'an', 'old', 'twisted', 'tree', '\n', 'should', 'not', 'you', 'Marianne', ' ', 'forgive', 'I', 'if', 'I', 'be', 'very', 'saucy', '\n', 'but', 'I', 'be', 'willing', 'to', 'shew', 'you', 'that', 'I', 'have', 'not', 'forget', 'our', '\n', 'old', 'dispute', '\n\n', 'I', 'love', 'to', 'be', 'remind', 'of', 'the', 'past', 'Edwardwhether', 'it', '\n', 'be', 'melancholy', 'or', 'gay', 'I', 'love', 'to', 'recall', 'itand', 'you', '\n', 'will', 'never', 'offend', 'I', 'by', 'talk', 'of', 'former', 'time', '\n', 'you', 'be', 'very', 'right', 'in', 'suppose', 'how', 'my', 'money', 'would', 'be', '\n', 'spentsome', 'of', 'it', 'at', 'leastmy', 'loose', 'cash', 'would', 'certainly', '\n', 'be', 'employ', 'in', 'improve', 'my', 'collection', 'of', 'music', 'and', 'book', '\n\n', 'and', 'the', 'bulk', 'of', 'your', 'fortune', 'would', 'be', 'lay', 'out', '\n', 'in', 'annuity', 'on', 'the', 'author', 'or', 'their', 'heir', '\n\n', 'no', 'Edward', 'I', 'should', 'have', 'something', 'else', 'to', 'do', '\n', 'with', 'it', '\n\n', 'perhaps', 'then', 'you', 'would', 'bestow', 'it', 'as', 'a', 'reward', 'on', 'that', '\n', 'person', 'who', 'write', 'the', 'able', 'defence', 'of', 'your', 'favourite', 'maxim', '\n', 'that', 'no', 'one', 'can', 'ever', 'be', 'in', 'love', 'more', 'than', 'once', 'in', 'their', '\n', 'lifeyour', 'opinion', 'on', 'that', 'point', 'be', 'unchanged', 'I', 'presume', '\n\n', 'undoubtedly', 'at', 'my', 'time', 'of', 'life', 'opinion', 'be', 'tolerably', 'fix', '\n', 'it', 'be', 'not', 'likely', 'that', 'I', 'should', 'now', 'see', 'or', 'hear', 'any', 'thing', 'to', '\n', 'change', 'they', '\n\n', 'Marianne', 'be', 'as', 'steadfast', 'as', 'ever', 'you', 'see', 'say', 'Elinor', '\n', 'she', 'be', 'not', 'at', 'all', 'alter', '\n\n', 'she', 'be', 'only', 'grow', 'a', 'little', 'more', 'grave', 'than', 'she', 'be', '\n\n', 'Nay', 'Edward', 'say', 'Marianne', 'you', 'need', 'not', 'reproach', 'I', '\n', 'you', 'be', 'not', 'very', 'gay', 'yourself', '\n\n', 'why', 'should', 'you', 'think', 'so', 'reply', 'he', 'with', 'a', 'sigh', '\n', 'but', 'gaiety', 'never', 'be', 'a', 'part', 'of', 'MY', 'character', '\n\n', 'nor', 'do', 'I', 'think', 'it', 'a', 'part', 'of', 'Mariannes', 'say', 'Elinor', '\n', 'I', 'should', 'hardly', 'call', 'she', 'a', 'lively', 'girlshe', 'be', 'very', 'earnest', '\n', 'very', 'eager', 'in', 'all', 'she', 'doessometime', 'talk', 'a', 'great', 'deal', '\n', 'and', 'always', 'with', 'animationbut', 'she', 'be', 'not', 'often', 'really', 'merry', '\n\n', 'I', 'believe', 'you', 'be', 'right', 'he', 'reply', 'and', 'yet', 'I', '\n', 'have', 'always', 'set', 'she', 'down', 'as', 'a', 'lively', 'girl', '\n\n', 'I', 'have', 'frequently', 'detect', 'myself', 'in', 'such', 'kind', 'of', 'mistake', '\n', 'say', 'Elinor', 'in', 'a', 'total', 'misapprehension', 'of', 'character', 'in', 'some', '\n', 'point', 'or', 'other', 'fancy', 'people', 'so', 'much', 'more', 'gay', 'or', 'grave', '\n', 'or', 'ingenious', 'or', 'stupid', 'than', 'they', 'really', 'be', 'and', 'I', 'can', '\n', 'hardly', 'tell', 'why', 'or', 'in', 'what', 'the', 'deception', 'originate', '\n', 'sometimes', 'one', 'be', 'guide', 'by', 'what', 'they', 'say', 'of', 'themselves', '\n', 'and', 'very', 'frequently', 'by', 'what', 'other', 'people', 'say', 'of', 'they', '\n', 'without', 'give', 'oneself', 'time', 'to', 'deliberate', 'and', 'judge', '\n\n', 'but', 'I', 'think', 'it', 'be', 'right', 'Elinor', 'say', 'Marianne', '\n', 'to', 'be', 'guide', 'wholly', 'by', 'the', 'opinion', 'of', 'other', 'people', '\n', 'I', 'think', 'our', 'judgment', 'be', 'give', 'we', 'merely', 'to', 'be', 'subservient', '\n', 'to', 'those', 'of', 'neighbour', ' ', 'this', 'have', 'always', 'be', 'your', 'doctrine', '\n', 'I', 'be', 'sure', '\n\n', 'no', 'Marianne', 'never', ' ', 'my', 'doctrine', 'have', 'never', 'aim', '\n', 'at', 'the', 'subjection', 'of', 'the', 'understanding', ' ', 'all', 'I', 'have', '\n', 'ever', 'attempt', 'to', 'influence', 'have', 'be', 'the', 'behaviour', '\n', 'you', 'must', 'not', 'confound', 'my', 'meaning', ' ', 'I', 'be', 'guilty', 'I', 'confess', '\n', 'of', 'having', 'often', 'wish', 'you', 'to', 'treat', 'our', 'acquaintance', '\n', 'in', 'general', 'with', 'great', 'attention', 'but', 'when', 'have', 'I', 'advise', '\n', 'you', 'to', 'adopt', 'their', 'sentiment', 'or', 'to', 'conform', 'to', 'their', '\n', 'judgment', 'in', 'serious', 'matter', '\n\n', 'you', 'have', 'not', 'be', 'able', 'to', 'bring', 'your', 'sister', 'over', 'to', 'your', '\n', 'plan', 'of', 'general', 'civility', 'say', 'Edward', 'to', 'Elinor', 'do', 'you', 'gain', '\n', 'no', 'ground', '\n\n', 'quite', 'the', 'contrary', 'reply', 'Elinor', '\n', 'look', 'expressively', 'at', 'Marianne', '\n\n', 'my', 'judgment', 'he', 'return', 'be', 'all', 'on', 'your', 'side', '\n', 'of', 'the', 'question', 'but', 'I', 'be', 'afraid', 'my', 'practice', 'be', 'much', '\n', 'more', 'on', 'your', 'sister', ' ', 'I', 'never', 'wish', 'to', 'offend', 'but', 'I', '\n', 'be', 'so', 'foolishly', 'shy', 'that', 'I', 'often', 'seem', 'negligent', '\n', 'when', 'I', 'be', 'only', 'keep', 'back', 'by', 'my', 'natural', 'awkwardness', '\n', 'I', 'have', 'frequently', 'think', 'that', 'I', 'must', 'have', 'be', 'intend', '\n', 'by', 'nature', 'to', 'be', 'fond', 'of', 'low', 'company', 'I', 'be', 'so', 'little', 'at', '\n', 'my', 'ease', 'among', 'stranger', 'of', 'gentility', '\n\n', 'Marianne', 'have', 'not', 'shyness', 'to', 'excuse', 'any', 'inattention', '\n', 'of', 'hers', 'say', 'Elinor', '\n\n', 'she', 'know', 'her', 'own', 'worth', 'too', 'well', 'for', 'false', 'shame', '\n', 'reply', 'Edward', ' ', 'Shyness', 'be', 'only', 'the', 'effect', 'of', 'a', 'sense', '\n', 'of', 'inferiority', 'in', 'some', 'way', 'or', 'other', ' ', 'if', 'I', 'could', 'persuade', '\n', 'myself', 'that', 'my', 'manner', 'be', 'perfectly', 'easy', 'and', 'graceful', '\n', 'I', 'should', 'not', 'be', 'shy', '\n\n', 'but', 'you', 'would', 'still', 'be', 'reserve', 'say', 'Marianne', '\n', 'and', 'that', 'be', 'bad', '\n\n', 'Edward', 'startedreserve', 'be', 'I', 'reserve', 'Marianne', '\n\n', 'yes', 'very', '\n\n', 'I', 'do', 'not', 'understand', 'you', 'reply', 'he', 'colour', '\n', 'Reservedhow', 'in', 'what', 'manner', ' ', 'what', 'be', 'I', 'to', 'tell', 'you', '\n', 'what', 'can', 'you', 'suppose', '\n\n', 'Elinor', 'look', 'surprised', 'at', 'his', 'emotion', 'but', 'try', '\n', 'to', 'laugh', 'off', 'the', 'subject', 'she', 'say', 'to', 'he', 'do', 'not', 'you', '\n', 'know', 'my', 'sister', 'well', 'enough', 'to', 'understand', 'what', 'she', 'mean', '\n', 'do', 'not', 'you', 'know', 'she', 'call', 'every', 'one', 'reserve', 'who', 'do', 'not', '\n', 'talk', 'as', 'fast', 'and', 'admire', 'what', 'she', 'admire', 'as', 'rapturously', '\n', 'as', 'herself', '\n\n', 'Edward', 'make', 'no', 'answer', ' ', 'his', 'gravity', 'and', 'thoughtfulness', '\n', 'return', 'on', 'he', 'in', 'their', 'full', 'extentand', 'he', 'sit', '\n', 'for', 'some', 'time', 'silent', 'and', 'dull', '\n\n\n\n', 'chapter', '18', '\n\n\n', 'Elinor', 'see', 'with', 'great', 'uneasiness', 'the', 'low', 'spirit', '\n', 'of', 'her', 'friend', ' ', 'his', 'visit', 'afford', 'she', 'but', 'a', 'very', '\n', 'partial', 'satisfaction', 'while', 'his', 'own', 'enjoyment', 'in', 'it', '\n', 'appear', 'so', 'imperfect', ' ', 'it', 'be', 'evident', 'that', 'he', 'be', 'unhappy', '\n', 'she', 'wish', 'it', 'be', 'equally', 'evident', 'that', 'he', 'still', '\n', 'distinguish', 'she', 'by', 'the', 'same', 'affection', 'which', 'once', '\n', 'she', 'have', 'feel', 'no', 'doubt', 'of', 'inspire', 'but', 'hitherto', 'the', '\n', 'continuance', 'of', 'his', 'preference', 'seem', 'very', 'uncertain', '\n', 'and', 'the', 'reservedness', 'of', 'his', 'manner', 'towards', 'her', 'contradict', '\n', 'one', 'moment', 'what', 'a', 'more', 'animated', 'look', 'have', 'intimate', 'the', 'precede', '\n', 'one', '\n\n', 'he', 'join', 'she', 'and', 'Marianne', 'in', 'the', 'breakfastroom', '\n', 'the', 'next', 'morning', 'before', 'the', 'other', 'be', 'down', 'and', 'Marianne', '\n', 'who', 'be', 'always', 'eager', 'to', 'promote', 'their', 'happiness', 'as', 'far', '\n', 'as', 'she', 'could', 'soon', 'leave', 'they', 'to', 'themselves', ' ', 'but', 'before', 'she', '\n', 'be', 'half', 'way', 'upstairs', 'she', 'hear', 'the', 'parlour', 'door', 'open', 'and', '\n', 'turn', 'round', 'be', 'astonish', 'to', 'see', 'Edward', 'himself', 'come', 'out', '\n\n', 'I', 'be', 'go', 'into', 'the', 'village', 'to', 'see', 'my', 'horse', '\n', 'say', 'be', 'as', 'you', 'be', 'not', 'yet', 'ready', 'for', 'breakfast', 'I', 'shall', '\n', 'be', 'back', 'again', 'presently', '\n\n \n\n', 'Edward', 'return', 'to', 'they', 'with', 'fresh', 'admiration', '\n', 'of', 'the', 'surround', 'country', 'in', 'his', 'walk', 'to', 'the', 'village', '\n', 'he', 'have', 'see', 'many', 'part', 'of', 'the', 'valley', 'to', 'advantage', '\n', 'and', 'the', 'village', 'itself', 'in', 'a', 'much', 'high', 'situation', 'than', '\n', 'the', 'cottage', 'afford', 'a', 'general', 'view', 'of', 'the', 'whole', 'which', 'have', '\n', 'exceedingly', 'please', 'he', ' ', 'this', 'be', 'a', 'subject', 'which', 'ensure', '\n', 'Mariannes', 'attention', 'and', 'she', 'be', 'begin', 'to', 'describe', '\n', 'her', 'own', 'admiration', 'of', 'these', 'scene', 'and', 'to', 'question', 'he', 'more', '\n', 'minutely', 'on', 'the', 'object', 'that', 'have', 'particularly', 'strike', 'he', '\n', 'when', 'Edward', 'interrupt', 'she', 'by', 'say', 'you', 'must', 'not', '\n', 'enquire', 'too', 'far', 'Marianneremember', 'I', 'have', 'no', 'knowledge', '\n', 'in', 'the', 'picturesque', 'and', 'I', 'shall', 'offend', 'you', 'by', 'my', 'ignorance', '\n', 'and', 'want', 'of', 'taste', 'if', 'we', 'come', 'to', 'particular', ' ', 'I', 'shall', 'call', '\n', 'hill', 'steep', 'which', 'ought', 'to', 'be', 'bold', 'surface', 'strange', '\n', 'and', 'uncouth', 'which', 'ought', 'to', 'be', 'irregular', 'and', 'rugged', '\n', 'and', 'distant', 'object', 'out', 'of', 'sight', 'which', 'ought', 'only', 'to', 'be', '\n', 'indistinct', 'through', 'the', 'soft', 'medium', 'of', 'a', 'hazy', 'atmosphere', '\n', 'you', 'must', 'be', 'satisfied', 'with', 'such', 'admiration', 'as', 'I', 'can', '\n', 'honestly', 'give', ' ', 'I', 'call', 'it', 'a', 'very', 'fine', 'countrythe', '\n', 'hill', 'be', 'steep', 'the', 'wood', 'seem', 'full', 'of', 'fine', 'timber', '\n', 'and', 'the', 'valley', 'look', 'comfortable', 'and', 'snugwith', 'rich', '\n', 'meadow', 'and', 'several', 'neat', 'farm', 'house', 'scatter', 'here', '\n', 'and', 'there', ' ', 'it', 'exactly', 'answer', 'my', 'idea', 'of', 'a', 'fine', 'country', '\n', 'because', 'it', 'unite', 'beauty', 'with', 'utilityand', 'I', 'dare', 'say', 'it', '\n', 'be', 'a', 'picturesque', 'one', 'too', 'because', 'you', 'admire', 'it', 'I', 'can', '\n', 'easily', 'believe', 'it', 'to', 'be', 'full', 'of', 'rock', 'and', 'promontory', '\n', 'grey', 'moss', 'and', 'brush', 'wood', 'but', 'these', 'be', 'all', 'lose', 'on', 'I', '\n', 'I', 'know', 'nothing', 'of', 'the', 'picturesque', '\n\n', 'I', 'be', 'afraid', 'it', 'be', 'but', 'too', 'true', 'say', 'Marianne', '\n', 'but', 'why', 'should', 'you', 'boast', 'of', 'it', '\n\n', 'I', 'suspect', 'say', 'Elinor', 'that', 'to', 'avoid', 'one', 'kind', '\n', 'of', 'affectation', 'Edward', 'here', 'fall', 'into', 'another', ' ', 'because', 'he', '\n', 'believe', 'many', 'people', 'pretend', 'to', 'more', 'admiration', 'of', 'the', 'beauty', '\n', 'of', 'nature', 'than', 'they', 'really', 'feel', 'and', 'be', 'disgust', 'with', '\n', 'such', 'pretension', 'he', 'affect', 'great', 'indifference', 'and', 'less', '\n', 'discrimination', 'in', 'view', 'they', 'himself', 'than', 'he', 'possess', '\n', 'he', 'be', 'fastidious', 'and', 'will', 'have', 'an', 'affectation', 'of', 'his', 'own', '\n\n', 'it', 'be', 'very', 'true', 'say', 'Marianne', 'that', 'admiration', '\n', 'of', 'landscape', 'scenery', 'be', 'become', 'a', 'mere', 'jargon', '\n', 'every', 'body', 'pretend', 'to', 'feel', 'and', 'try', 'to', 'describe', 'with', '\n', 'the', 'taste', 'and', 'elegance', 'of', 'he', 'who', 'first', 'define', 'what', '\n', 'picturesque', 'beauty', 'be', ' ', 'I', 'det', 'jargon', 'of', 'every', 'kind', '\n', 'and', 'sometimes', 'I', 'have', 'keep', 'my', 'feeling', 'to', 'myself', '\n', 'because', 'I', 'could', 'find', 'no', 'language', 'to', 'describe', 'they', '\n', 'in', 'but', 'what', 'be', 'wear', 'and', 'hackneye', 'out', 'of', 'all', 'sense', 'and', 'mean', '\n\n', 'I', 'be', 'convince', 'say', 'Edward', 'that', 'you', 'really', 'feel', '\n', 'all', 'the', 'delight', 'in', 'a', 'fine', 'prospect', 'which', 'you', 'profess', '\n', 'to', 'feel', ' ', 'but', 'in', 'return', 'your', 'sister', 'must', 'allow', 'I', '\n', 'to', 'feel', 'no', 'more', 'than', 'I', 'profess', ' ', 'I', 'like', 'a', 'fine', 'prospect', '\n', 'but', 'not', 'on', 'picturesque', 'principle', ' ', 'I', 'do', 'not', 'like', 'crook', '\n', 'twist', 'blast', 'tree', ' ', 'I', 'admire', 'they', 'much', 'more', 'if', 'they', '\n', 'be', 'tall', 'straight', 'and', 'flourish', ' ', 'I', 'do', 'not', 'like', 'ruin', '\n', 'tattered', 'cottage', ' ', 'I', 'be', 'not', 'fond', 'of', 'nettle', 'or', 'thistle', '\n', 'or', 'heath', 'blossom', ' ', 'I', 'have', 'more', 'pleasure', 'in', 'a', 'snug', '\n', 'farmhouse', 'than', 'a', 'watchtowerand', 'a', 'troop', 'of', 'tidy', '\n', 'happy', 'village', 'please', 'I', 'well', 'than', 'the', 'fine', 'banditti', '\n', 'in', 'the', 'world', '\n\n', 'Marianne', 'look', 'with', 'amazement', 'at', 'Edward', '\n', 'with', 'compassion', 'at', 'her', 'sister', ' ', 'Elinor', 'only', 'laugh', '\n\n', 'the', 'subject', 'be', 'continue', 'no', 'far', 'and', 'Marianne', '\n', 'remain', 'thoughtfully', 'silent', 'till', 'a', 'new', 'object', 'suddenly', '\n', 'engage', 'her', 'attention', ' ', 'she', 'be', 'sit', 'by', 'Edward', 'and', '\n', 'in', 'take', 'his', 'tea', 'from', 'Mrs', 'Dashwood', 'his', 'hand', 'pass', '\n', 'so', 'directly', 'before', 'she', 'as', 'to', 'make', 'a', 'ring', 'with', 'a', 'plait', '\n', 'of', 'hair', 'in', 'the', 'centre', 'very', 'conspicuous', 'on', 'one', 'of', 'his', 'finger', '\n\n', 'I', 'never', 'see', 'you', 'wear', 'a', 'ring', 'before', 'Edward', 'she', 'cry', '\n', 'be', 'that', 'Fannys', 'hair', 'I', 'remember', 'she', 'promise', 'to', 'give', '\n', 'you', 'some', ' ', 'but', 'I', 'should', 'have', 'think', 'her', 'hair', 'have', 'be', 'darker', '\n\n', 'Marianne', 'speak', 'inconsiderately', 'what', 'she', 'really', 'feel', '\n', 'but', 'when', 'she', 'see', 'how', 'much', 'she', 'have', 'pain', 'Edward', 'her', 'own', '\n', 'vexation', 'at', 'her', 'want', 'of', 'thought', 'could', 'not', 'be', 'surpass', '\n', 'by', 'his', ' ', 'he', 'colour', 'very', 'deeply', 'and', 'give', 'a', 'momentary', '\n', 'glance', 'at', 'Elinor', 'reply', 'yes', 'it', 'be', 'my', 'sister', 'hair', '\n', 'the', 'setting', 'always', 'cast', 'a', 'different', 'shade', 'on', 'it', '\n', 'you', 'know', '\n\n', 'Elinor', 'have', 'meet', 'his', 'eye', 'and', 'look', 'conscious', 'likewise', '\n', 'that', 'the', 'hair', 'be', 'her', 'own', 'she', 'instantaneously', 'feel', 'as', '\n', 'well', 'satisfied', 'as', 'Marianne', 'the', 'only', 'difference', 'in', 'their', '\n', 'conclusion', 'be', 'that', 'what', 'Marianne', 'consider', 'as', 'a', 'free', '\n', 'gift', 'from', 'her', 'sister', 'Elinor', 'be', 'conscious', 'must', 'have', 'be', '\n', 'procure', 'by', 'some', 'theft', 'or', 'contrivance', 'unknown', 'to', 'herself', '\n', 'she', 'be', 'not', 'in', 'a', 'humour', 'however', 'to', 'regard', 'it', 'as', 'an', 'affront', '\n', 'and', 'affect', 'to', 'take', 'no', 'notice', 'of', 'what', 'pass', '\n', 'by', 'instantly', 'talk', 'of', 'something', 'else', 'she', 'internally', '\n', 'resolve', 'henceforward', 'to', 'catch', 'every', 'opportunity', 'of', 'eye', '\n', 'the', 'hair', 'and', 'of', 'satisfy', 'herself', 'beyond', 'all', 'doubt', '\n', 'that', 'it', 'be', 'exactly', 'the', 'shade', 'of', 'her', 'own', '\n\n', 'Edwards', 'embarrassment', 'last', 'some', 'time', 'and', 'it', '\n', 'end', 'in', 'an', 'absence', 'of', 'mind', 'still', 'more', 'settle', '\n', 'he', 'be', 'particularly', 'grave', 'the', 'whole', 'morning', '\n', 'Marianne', 'severely', 'censure', 'herself', 'for', 'what', 'she', 'have', 'say', '\n', 'but', 'her', 'own', 'forgiveness', 'might', 'have', 'be', 'more', 'speedy', '\n', 'have', 'she', 'know', 'how', 'little', 'offence', 'it', 'have', 'give', 'her', 'sister', '\n\n', 'before', 'the', 'middle', 'of', 'the', 'day', 'they', 'be', 'visit', 'by', 'Sir', '\n', 'John', 'and', 'Mrs', 'Jennings', 'who', 'having', 'hear', 'of', 'the', 'arrival', '\n', 'of', 'a', 'gentleman', 'at', 'the', 'cottage', 'come', 'to', 'take', 'a', 'survey', '\n', 'of', 'the', 'guest', ' ', 'with', 'the', 'assistance', 'of', 'his', 'motherinlaw', '\n', 'Sir', 'John', 'be', 'not', 'long', 'in', 'discover', 'that', 'the', 'name', 'of', '\n', 'ferrar', 'begin', 'with', 'an', 'F', 'and', 'this', 'prepare', 'a', 'future', 'mine', '\n', 'of', 'raillery', 'against', 'the', 'devoted', 'Elinor', 'which', 'nothing', 'but', '\n', 'the', 'newness', 'of', 'their', 'acquaintance', 'with', 'Edward', 'could', 'have', '\n', 'prevent', 'from', 'be', 'immediately', 'spring', ' ', 'but', 'as', 'it', 'be', '\n', 'she', 'only', 'learn', 'from', 'some', 'very', 'significant', 'look', 'how', 'far', '\n', 'their', 'penetration', 'found', 'on', 'Margarets', 'instruction', 'extend', '\n\n', 'Sir', 'John', 'never', 'come', 'to', 'the', 'Dashwoods', 'without', 'either', '\n', 'invite', 'they', 'to', 'dine', 'at', 'the', 'park', 'the', 'next', 'day', 'or', 'to', 'drink', '\n', 'tea', 'with', 'they', 'that', 'evening', ' ', 'on', 'the', 'present', 'occasion', '\n', 'for', 'the', 'well', 'entertainment', 'of', 'their', 'visitor', 'towards', '\n', 'whose', 'amusement', 'he', 'feel', 'himself', 'bind', 'to', 'contribute', '\n', 'he', 'wish', 'to', 'engage', 'they', 'for', 'both', '\n\n', 'you', 'must', 'drink', 'tea', 'with', 'we', 'to', 'night', 'say', 'he', '\n', 'for', 'we', 'shall', 'be', 'quite', 'aloneand', 'tomorrow', 'you', 'must', '\n', 'absolutely', 'dine', 'with', 'we', 'for', 'we', 'shall', 'be', 'a', 'large', 'party', '\n\n', 'Mrs', 'Jennings', 'enforce', 'the', 'necessity', ' ', 'and', 'who', 'know', '\n', 'but', 'you', 'may', 'raise', 'a', 'dance', 'say', 'she', ' ', 'and', 'that', 'will', '\n', 'tempt', 'you', 'Miss', 'Marianne', '\n\n', 'a', 'dance', 'cry', 'Marianne', ' ', 'impossible', 'who', 'be', 'to', 'dance', '\n\n', 'who', 'why', 'yourself', 'and', 'the', 'Careys', 'and', 'Whitakers', '\n', 'to', 'be', 'surewhat', 'you', 'think', 'nobody', 'could', 'dance', '\n', 'because', 'a', 'certain', 'person', 'that', 'shall', 'be', 'nameless', 'be', 'go', '\n\n', 'I', 'wish', 'with', 'all', 'my', 'soul', 'cry', 'Sir', 'John', '\n', 'that', 'Willoughby', 'be', 'among', 'we', 'again', '\n\n', 'this', 'and', 'Mariannes', 'blushing', 'give', 'new', 'suspicion', '\n', 'to', 'Edward', ' ', 'and', 'who', 'be', 'Willoughby', 'say', 'he', 'in', 'a', 'low', 'voice', '\n', 'to', 'Miss', 'Dashwood', 'by', 'whom', 'he', 'be', 'sit', '\n\n', 'she', 'give', 'he', 'a', 'brief', 'reply', ' ', 'Mariannes', 'countenance', '\n', 'be', 'more', 'communicative', ' ', 'Edward', 'see', 'enough', 'to', 'comprehend', '\n', 'not', 'only', 'the', 'meaning', 'of', 'other', 'but', 'such', 'of', 'Mariannes', '\n', 'expression', 'as', 'have', 'puzzle', 'he', 'before', 'and', 'when', 'their', '\n', 'visitor', 'leave', 'they', 'he', 'go', 'immediately', 'round', 'she', 'and', 'say', '\n', 'in', 'a', 'whisper', 'I', 'have', 'be', 'guess', ' ', 'shall', 'I', 'tell', 'you', '\n', 'my', 'guess', '\n\n', 'what', 'do', 'you', 'mean', '\n\n', 'shall', 'I', 'tell', 'you', '\n\n', 'certainly', '\n\n', 'well', 'then', 'I', 'guess', 'that', 'Mr', 'Willoughby', 'hunt', '\n\n', 'Marianne', 'be', 'surprised', 'and', 'confused', 'yet', 'she', 'could', '\n', 'not', 'help', 'smile', 'at', 'the', 'quiet', 'archness', 'of', 'his', 'manner', '\n', 'and', 'after', 'a', 'moment', 'silence', 'say', '\n\n', 'oh', 'Edward', 'how', 'can', 'youbut', 'the', 'time', 'will', 'come', '\n', 'I', 'hopeI', 'be', 'sure', 'you', 'will', 'like', 'he', '\n\n', 'I', 'do', 'not', 'doubt', 'it', 'reply', 'he', 'rather', 'astonish', '\n', 'at', 'her', 'earnestness', 'and', 'warmth', 'for', 'have', 'he', 'not', 'imagine', 'it', '\n', 'to', 'be', 'a', 'joke', 'for', 'the', 'good', 'of', 'her', 'acquaintance', 'in', 'general', '\n', 'found', 'only', 'on', 'a', 'something', 'or', 'a', 'nothing', 'between', 'Mr', 'Willoughby', '\n', 'and', 'herself', 'he', 'would', 'not', 'have', 'venture', 'to', 'mention', 'it', '\n\n\n\n', 'chapter', '19', '\n\n\n', 'Edward', 'remain', 'a', 'week', 'at', 'the', 'cottage', 'he', 'be', 'earnestly', '\n', 'press', 'by', 'Mrs', 'Dashwood', 'to', 'stay', 'long', 'but', 'as', 'if', 'he', '\n', 'be', 'bent', 'only', 'on', 'selfmortification', 'he', 'seem', 'resolve', '\n', 'to', 'be', 'go', 'when', 'his', 'enjoyment', 'among', 'his', 'friend', 'be', 'at', '\n', 'the', 'height', ' ', 'his', 'spirit', 'during', 'the', 'last', 'two', 'or', 'three', 'day', '\n', 'though', 'still', 'very', 'unequal', 'be', 'greatly', 'improvedhe', 'grow', '\n', 'more', 'and', 'more', 'partial', 'to', 'the', 'house', 'and', 'environsnever', '\n', 'speak', 'of', 'go', 'away', 'without', 'a', 'sighdeclare', 'his', 'time', '\n', 'to', 'be', 'wholly', 'disengagedeven', 'doubt', 'to', 'what', 'place', 'he', '\n', 'should', 'go', 'when', 'he', 'leave', 'thembut', 'still', 'go', 'he', 'must', '\n', 'never', 'have', 'any', 'week', 'pass', 'so', 'quicklyhe', 'could', 'hardly', '\n', 'believe', 'it', 'to', 'be', 'go', ' ', 'he', 'say', 'so', 'repeatedly', 'other', 'thing', '\n', 'he', 'say', 'too', 'which', 'mark', 'the', 'turn', 'of', 'his', 'feeling', 'and', 'give', '\n', 'the', 'lie', 'to', 'his', 'action', ' ', 'he', 'have', 'no', 'pleasure', 'at', 'Norland', '\n', 'he', 'detest', 'be', 'in', 'town', 'but', 'either', 'to', 'Norland', 'or', 'London', '\n', 'he', 'must', 'go', ' ', 'he', 'value', 'their', 'kindness', 'beyond', 'any', 'thing', '\n', 'and', 'his', 'great', 'happiness', 'be', 'in', 'be', 'with', 'they', '\n', 'yet', 'he', 'must', 'leave', 'they', 'at', 'the', 'end', 'of', 'a', 'week', 'in', 'spite', '\n', 'of', 'their', 'wish', 'and', 'his', 'own', 'and', 'without', 'any', 'restraint', '\n', 'on', 'his', 'time', '\n\n', 'Elinor', 'place', 'all', 'that', 'be', 'astonishing', 'in', 'this', '\n', 'way', 'of', 'act', 'to', 'his', 'mother', 'account', 'and', 'it', 'be', '\n', 'happy', 'for', 'she', 'that', 'he', 'have', 'a', 'mother', 'whose', 'character', '\n', 'be', 'so', 'imperfectly', 'know', 'to', 'she', 'as', 'to', 'be', 'the', 'general', '\n', 'excuse', 'for', 'every', 'thing', 'strange', 'on', 'the', 'part', 'of', 'her', 'son', '\n', 'Disappointed', 'however', 'and', 'vex', 'as', 'she', 'be', 'and', 'sometimes', '\n', 'displeased', 'with', 'his', 'uncertain', 'behaviour', 'to', 'herself', '\n', 'she', 'be', 'very', 'well', 'disposed', 'on', 'the', 'whole', 'to', 'regard', 'his', 'action', '\n', 'with', 'all', 'the', 'candid', 'allowance', 'and', 'generous', 'qualification', '\n', 'which', 'have', 'be', 'rather', 'more', 'painfully', 'extort', 'from', 'she', '\n', 'for', 'Willoughbys', 'service', 'by', 'her', 'mother', ' ', 'his', 'want', 'of', 'spirit', '\n', 'of', 'openness', 'and', 'of', 'consistency', 'be', 'most', 'usually', '\n', 'attribute', 'to', 'his', 'want', 'of', 'independence', 'and', 'his', 'well', '\n', 'knowledge', 'of', 'Mrs', 'Ferrarss', 'disposition', 'and', 'design', '\n', 'the', 'shortness', 'of', 'his', 'visit', 'the', 'steadiness', 'of', 'his', 'purpose', '\n', 'in', 'leave', 'they', 'originate', 'in', 'the', 'same', 'fettered', 'inclination', '\n', 'the', 'same', 'inevitable', 'necessity', 'of', 'temporize', 'with', 'his', 'mother', '\n', 'the', 'old', 'wellestablished', 'grievance', 'of', 'duty', 'against', 'will', '\n', 'parent', 'against', 'child', 'be', 'the', 'cause', 'of', 'all', ' ', 'she', 'would', 'have', '\n', 'be', 'glad', 'to', 'know', 'when', 'these', 'difficulty', 'be', 'to', 'cease', '\n', 'this', 'opposition', 'be', 'to', 'yieldwhen', 'Mrs', 'Ferrars', 'would', '\n', 'be', 'reform', 'and', 'her', 'son', 'be', 'at', 'liberty', 'to', 'be', 'happy', '\n', 'but', 'from', 'such', 'vain', 'wish', 'she', 'be', 'force', 'to', 'turn', 'for', 'comfort', '\n', 'to', 'the', 'renewal', 'of', 'her', 'confidence', 'in', 'Edwards', 'affection', '\n', 'to', 'the', 'remembrance', 'of', 'every', 'mark', 'of', 'regard', 'in', 'look', 'or', 'word', '\n', 'which', 'fall', 'from', 'he', 'while', 'at', 'Barton', 'and', 'above', 'all', '\n', 'to', 'that', 'flattering', 'proof', 'of', 'it', 'which', 'he', 'constantly', 'wore', '\n', 'round', 'his', 'finger', '\n\n', 'I', 'think', 'Edward', 'say', 'Mrs', 'Dashwood', 'as', 'they', 'be', '\n', 'at', 'breakfast', 'the', 'last', 'morning', 'you', 'would', 'be', 'a', 'happy', 'man', '\n', 'if', 'you', 'have', 'any', 'profession', 'to', 'engage', 'your', 'time', 'and', 'give', '\n', 'an', 'interest', 'to', 'your', 'plan', 'and', 'action', ' ', 'some', 'inconvenience', '\n', 'to', 'your', 'friend', 'indeed', 'might', 'result', 'from', 'ityou', '\n', 'would', 'not', 'be', 'able', 'to', 'give', 'they', 'so', 'much', 'of', 'your', 'time', '\n', 'but', 'with', 'a', 'smile', 'you', 'would', 'be', 'materially', 'benefit', '\n', 'in', 'one', 'particular', 'at', 'leastyou', 'would', 'know', 'where', 'to', 'go', '\n', 'when', 'you', 'leave', 'they', '\n\n', 'I', 'do', 'assure', 'you', 'he', 'reply', 'that', 'I', 'have', 'long', '\n', 'thought', 'on', 'this', 'point', 'as', 'you', 'think', 'now', ' ', 'it', 'have', 'be', '\n', 'and', 'be', 'and', 'probably', 'will', 'always', 'be', 'a', 'heavy', 'misfortune', '\n', 'to', 'I', 'that', 'I', 'have', 'have', 'no', 'necessary', 'business', 'to', 'engage', 'I', '\n', 'no', 'profession', 'to', 'give', 'I', 'employment', 'or', 'afford', 'I', 'any', '\n', 'thing', 'like', 'independence', ' ', 'but', 'unfortunately', 'my', 'own', 'nicety', '\n', 'and', 'the', 'nicety', 'of', 'my', 'friend', 'have', 'make', 'I', 'what', 'I', 'be', '\n', 'an', 'idle', 'helpless', 'being', ' ', 'we', 'never', 'could', 'agree', 'in', 'our', '\n', 'choice', 'of', 'a', 'profession', ' ', 'I', 'always', 'prefer', 'the', 'church', '\n', 'as', 'I', 'still', 'do', ' ', 'but', 'that', 'be', 'not', 'smart', 'enough', 'for', 'my', 'family', '\n', 'they', 'recommend', 'the', 'army', ' ', 'that', 'be', 'a', 'great', 'deal', '\n', 'too', 'smart', 'for', 'I', ' ', 'the', 'law', 'be', 'allow', 'to', 'be', 'genteel', '\n', 'enough', 'many', 'young', 'man', 'who', 'have', 'chamber', 'in', 'the', 'Temple', '\n', 'make', 'a', 'very', 'good', 'appearance', 'in', 'the', 'first', 'circle', '\n', 'and', 'drive', 'about', 'town', 'in', 'very', 'know', 'gig', ' ', 'but', 'I', 'have', '\n', 'no', 'inclination', 'for', 'the', 'law', 'even', 'in', 'this', 'less', 'abstruse', '\n', 'study', 'of', 'it', 'which', 'my', 'family', 'approve', ' ', 'as', 'for', 'the', 'navy', '\n', 'it', 'have', 'fashion', 'on', 'its', 'side', 'but', 'I', 'be', 'too', 'old', 'when', 'the', '\n', 'subject', 'be', 'first', 'start', 'to', 'enter', 'itand', 'at', 'length', '\n', 'as', 'there', 'be', 'no', 'necessity', 'for', 'my', 'have', 'any', 'profession', '\n', 'at', 'all', 'as', 'I', 'might', 'be', 'as', 'dashing', 'and', 'expensive', 'without', '\n', 'a', 'red', 'coat', 'on', 'my', 'back', 'as', 'with', 'one', 'idleness', 'be', 'pronounce', '\n', 'on', 'the', 'whole', 'to', 'be', 'most', 'advantageous', 'and', 'honourable', '\n', 'and', 'a', 'young', 'man', 'of', 'eighteen', 'be', 'not', 'in', 'general', 'so', 'earnestly', '\n', 'bent', 'on', 'be', 'busy', 'as', 'to', 'resist', 'the', 'solicitation', 'of', 'his', '\n', 'friend', 'to', 'do', 'nothing', ' ', 'I', 'be', 'therefore', 'enter', 'at', 'Oxford', '\n', 'and', 'have', 'be', 'properly', 'idle', 'ever', 'since', '\n\n', 'the', 'consequence', 'of', 'which', 'I', 'suppose', 'will', 'be', '\n', 'say', 'Mrs', 'Dashwood', 'since', 'leisure', 'have', 'not', 'promote', '\n', 'your', 'own', 'happiness', 'that', 'your', 'son', 'will', 'be', 'bring', 'up', '\n', 'to', 'as', 'many', 'pursuit', 'employment', 'profession', 'and', 'trade', '\n', 'as', 'Columellas', '\n\n', 'they', 'will', 'be', 'bring', 'up', 'say', 'he', 'in', 'a', 'serious', 'accent', '\n', 'to', 'be', 'as', 'unlike', 'myself', 'as', 'be', 'possible', ' ', 'in', 'feel', '\n', 'in', 'action', 'in', 'condition', 'in', 'every', 'thing', '\n\n', 'Come', 'come', 'this', 'be', 'all', 'an', 'effusion', 'of', 'immediate', '\n', 'want', 'of', 'spirit', 'Edward', ' ', 'you', 'be', 'in', 'a', 'melancholy', 'humour', '\n', 'and', 'fancy', 'that', 'any', 'one', 'unlike', 'yourself', 'must', 'be', 'happy', '\n', 'but', 'remember', 'that', 'the', 'pain', 'of', 'parting', 'from', 'friend', '\n', 'will', 'be', 'feel', 'by', 'every', 'body', 'at', 'time', 'whatever', 'be', 'their', '\n', 'education', 'or', 'state', ' ', 'know', 'your', 'own', 'happiness', ' ', 'you', 'want', '\n', 'nothing', 'but', 'patienceor', 'give', 'it', 'a', 'more', 'fascinating', 'name', '\n', 'call', 'it', 'hope', ' ', 'your', 'mother', 'will', 'secure', 'to', 'you', 'in', 'time', '\n', 'that', 'independence', 'you', 'be', 'so', 'anxious', 'for', 'it', 'be', 'her', 'duty', '\n', 'and', 'it', 'will', 'it', 'must', 'ere', 'long', 'become', 'her', 'happiness', 'to', '\n', 'prevent', 'your', 'whole', 'youth', 'from', 'be', 'waste', 'in', 'discontent', '\n', 'how', 'much', 'may', 'not', 'a', 'few', 'month', 'do', '\n\n', 'I', 'think', 'reply', 'Edward', 'that', 'I', 'may', 'defy', 'many', '\n', 'month', 'to', 'produce', 'any', 'good', 'to', 'I', '\n\n', 'this', 'despond', 'turn', 'of', 'mind', 'though', 'it', 'could', 'not', '\n', 'be', 'communicate', 'to', 'Mrs', 'Dashwood', 'give', 'additional', 'pain', '\n', 'to', 'they', 'all', 'in', 'the', 'parting', 'which', 'shortly', 'take', 'place', '\n', 'and', 'leave', 'an', 'uncomfortable', 'impression', 'on', 'elinor', '\n', 'feeling', 'especially', 'which', 'require', 'some', 'trouble', 'and', 'time', '\n', 'to', 'subdue', ' ', 'but', 'as', 'it', 'be', 'her', 'determination', 'to', 'subdue', 'it', '\n', 'and', 'to', 'prevent', 'herself', 'from', 'appear', 'to', 'suffer', 'more', 'than', '\n', 'what', 'all', 'her', 'family', 'suffer', 'on', 'his', 'go', 'away', 'she', 'do', '\n', 'not', 'adopt', 'the', 'method', 'so', 'judiciously', 'employ', 'by', 'Marianne', '\n', 'on', 'a', 'similar', 'occasion', 'to', 'augment', 'and', 'fix', 'her', 'sorrow', '\n', 'by', 'seek', 'silence', 'solitude', 'and', 'idleness', ' ', 'their', 'mean', '\n', 'be', 'as', 'different', 'as', 'their', 'object', 'and', 'equally', 'suit', '\n', 'to', 'the', 'advancement', 'of', 'each', '\n\n', 'Elinor', 'sit', 'down', 'to', 'she', 'drawingtable', 'as', 'soon', 'as', 'he', '\n', 'be', 'out', 'of', 'the', 'house', 'busily', 'employ', 'herself', 'the', 'whole', 'day', '\n', 'neither', 'seek', 'nor', 'avoid', 'the', 'mention', 'of', 'his', 'name', '\n', 'appear', 'to', 'interest', 'herself', 'almost', 'as', 'much', 'as', 'ever', 'in', 'the', '\n', 'general', 'concern', 'of', 'the', 'family', 'and', 'if', 'by', 'this', 'conduct', '\n', 'she', 'do', 'not', 'lessen', 'her', 'own', 'grief', 'it', 'be', 'at', 'least', 'prevent', '\n', 'from', 'unnecessary', 'increase', 'and', 'her', 'mother', 'and', 'sister', '\n', 'be', 'spare', 'much', 'solicitude', 'on', 'her', 'account', '\n\n', 'such', 'behaviour', 'as', 'this', 'so', 'exactly', 'the', 'reverse', '\n', 'of', 'her', 'own', 'appear', 'no', 'more', 'meritorious', 'to', 'Marianne', '\n', 'than', 'her', 'own', 'have', 'seem', 'faulty', 'to', 'her', ' ', 'the', 'business', '\n', 'of', 'selfcommand', 'she', 'settle', 'very', 'easilywith', 'strong', '\n', 'affection', 'it', 'be', 'impossible', 'with', 'calm', 'one', 'it', 'could', '\n', 'have', 'no', 'merit', ' ', 'that', 'her', 'sister', 'affection', 'be', 'calm', '\n', 'she', 'dare', 'not', 'deny', 'though', 'she', 'blush', 'to', 'acknowledge', 'it', '\n', 'and', 'of', 'the', 'strength', 'of', 'her', 'own', 'she', 'give', 'a', 'very', 'striking', 'proof', '\n', 'by', 'still', 'love', 'and', 'respect', 'that', 'sister', 'in', 'spite', '\n', 'of', 'this', 'mortifying', 'conviction', '\n\n', 'without', 'shut', 'herself', 'up', 'from', 'her', 'family', '\n', 'or', 'leave', 'the', 'house', 'in', 'determined', 'solitude', 'to', 'avoid', 'they', '\n', 'or', 'lie', 'awake', 'the', 'whole', 'night', 'to', 'indulge', 'meditation', '\n', 'Elinor', 'find', 'every', 'day', 'afford', 'her', 'leisure', 'enough', '\n', 'to', 'think', 'of', 'Edward', 'and', 'of', 'Edwards', 'behaviour', 'in', 'every', '\n', 'possible', 'variety', 'which', 'the', 'different', 'state', 'of', 'her', 'spirit', '\n', 'at', 'different', 'time', 'could', 'producewith', 'tenderness', '\n', 'pity', 'approbation', 'censure', 'and', 'doubt', ' ', 'there', 'be', 'moment', '\n', 'in', 'abundance', 'when', 'if', 'not', 'by', 'the', 'absence', 'of', 'her', 'mother', '\n', 'and', 'sister', 'at', 'least', 'by', 'the', 'nature', 'of', 'their', 'employment', '\n', 'conversation', 'be', 'forbid', 'among', 'they', 'and', 'every', 'effect', '\n', 'of', 'solitude', 'be', 'produce', ' ', 'her', 'mind', 'be', 'inevitably', '\n', 'at', 'liberty', 'her', 'thought', 'could', 'not', 'be', 'chain', 'elsewhere', '\n', 'and', 'the', 'past', 'and', 'the', 'future', 'on', 'a', 'subject', 'so', 'interesting', '\n', 'must', 'be', 'before', 'she', 'must', 'force', 'her', 'attention', 'and', 'engross', '\n', 'her', 'memory', 'her', 'reflection', 'and', 'her', 'fancy', '\n\n', 'from', 'a', 'reverie', 'of', 'this', 'kind', 'as', 'she', 'sit', 'at', 'her', '\n', 'drawingtable', 'she', 'be', 'rouse', 'one', 'morning', 'soon', 'after', '\n', 'Edwards', 'leave', 'they', 'by', 'the', 'arrival', 'of', 'company', '\n', 'she', 'happen', 'to', 'be', 'quite', 'alone', ' ', 'the', 'closing', 'of', 'the', '\n', 'little', 'gate', 'at', 'the', 'entrance', 'of', 'the', 'green', 'court', 'in', 'front', '\n', 'of', 'the', 'house', 'draw', 'her', 'eye', 'to', 'the', 'window', 'and', 'she', 'see', '\n', 'a', 'large', 'party', 'walk', 'up', 'to', 'the', 'door', ' ', 'amongst', 'they', '\n', 'be', 'Sir', 'John', 'and', 'Lady', 'Middleton', 'and', 'Mrs', 'Jennings', '\n', 'but', 'there', 'be', 'two', 'other', 'a', 'gentleman', 'and', 'lady', 'who', 'be', '\n', 'quite', 'unknown', 'to', 'her', ' ', 'she', 'be', 'sit', 'near', 'the', 'window', '\n', 'and', 'as', 'soon', 'as', 'Sir', 'John', 'perceive', 'she', 'he', 'leave', 'the', 'rest', '\n', 'of', 'the', 'party', 'to', 'the', 'ceremony', 'of', 'knock', 'at', 'the', 'door', '\n', 'and', 'step', 'across', 'the', 'turf', 'oblige', 'she', 'to', 'open', 'the', '\n', 'casement', 'to', 'speak', 'to', 'he', 'though', 'the', 'space', 'be', 'so', 'short', '\n', 'between', 'the', 'door', 'and', 'the', 'window', 'as', 'to', 'make', 'it', 'hardly', '\n', 'possible', 'to', 'speak', 'at', 'one', 'without', 'be', 'hear', 'at', 'the', 'other', '\n\n', 'well', 'say', 'he', 'we', 'have', 'bring', 'you', 'some', 'stranger', '\n', 'how', 'do', 'you', 'like', 'they', '\n\n', 'Hush', 'they', 'will', 'hear', 'you', '\n\n', 'never', 'mind', 'if', 'they', 'do', ' ', 'it', 'be', 'only', 'the', 'Palmers', '\n', 'Charlotte', 'be', 'very', 'pretty', 'I', 'can', 'tell', 'you', ' ', 'you', 'may', 'see', 'she', '\n', 'if', 'you', 'look', 'this', 'way', '\n\n', 'as', 'Elinor', 'be', 'certain', 'of', 'see', 'she', 'in', 'a', 'couple', '\n', 'of', 'minute', 'without', 'take', 'that', 'liberty', 'she', 'beg', '\n', 'to', 'be', 'excuse', '\n\n', 'where', 'be', 'Marianne', 'have', 'she', 'run', 'away', 'because', 'we', '\n', 'be', 'come', 'I', 'see', 'her', 'instrument', 'be', 'open', '\n\n', 'she', 'be', 'walk', 'I', 'believe', '\n\n', 'they', 'be', 'now', 'join', 'by', 'Mrs', 'Jennings', 'who', 'have', 'not', '\n', 'patience', 'enough', 'to', 'wait', 'till', 'the', 'door', 'be', 'open', 'before', '\n', 'she', 'tell', 'she', 'story', ' ', 'she', 'come', 'halloo', 'to', 'the', 'window', '\n', 'how', 'do', 'you', 'do', 'my', 'dear', ' ', 'how', 'do', 'Mrs', 'Dashwood', 'do', '\n', 'and', 'where', 'be', 'your', 'sister', ' ', 'what', 'all', 'alone', 'you', '\n', 'will', 'be', 'glad', 'of', 'a', 'little', 'company', 'to', 'sit', 'with', 'you', '\n', 'I', 'have', 'bring', 'my', 'other', 'son', 'and', 'daughter', 'to', 'see', 'you', '\n', 'only', 'think', 'of', 'their', 'come', 'so', 'suddenly', ' ', 'I', 'think', 'I', 'hear', '\n', 'a', 'carriage', 'last', 'night', 'while', 'we', 'be', 'drink', 'our', 'tea', '\n', 'but', 'it', 'never', 'enter', 'my', 'head', 'that', 'it', 'could', 'be', 'they', '\n', 'I', 'think', 'of', 'nothing', 'but', 'whether', 'it', 'might', 'not', 'be', 'Colonel', '\n', 'Brandon', 'come', 'back', 'again', 'so', 'I', 'say', 'to', 'Sir', 'John', 'I', 'do', 'think', '\n', 'I', 'hear', 'a', 'carriage', 'perhaps', 'it', 'be', 'Colonel', 'Brandon', 'come', '\n', 'back', 'again', '\n\n', 'Elinor', 'be', 'oblige', 'to', 'turn', 'from', 'she', 'in', 'the', 'middle', '\n', 'of', 'her', 'story', 'to', 'receive', 'the', 'rest', 'of', 'the', 'party', 'Lady', '\n', 'Middleton', 'introduce', 'the', 'two', 'stranger', 'Mrs', 'Dashwood', '\n', 'and', 'Margaret', 'come', 'down', 'stair', 'at', 'the', 'same', 'time', 'and', 'they', '\n', 'all', 'sit', 'down', 'to', 'look', 'at', 'one', 'another', 'while', 'Mrs', 'Jennings', '\n', 'continue', 'her', 'story', 'as', 'she', 'walk', 'through', 'the', 'passage', '\n', 'into', 'the', 'parlour', 'attend', 'by', 'Sir', 'John', '\n\n', 'Mrs', 'Palmer', 'be', 'several', 'year', 'young', 'than', 'Lady', '\n', 'Middleton', 'and', 'totally', 'unlike', 'she', 'in', 'every', 'respect', '\n', 'she', 'be', 'short', 'and', 'plump', 'have', 'a', 'very', 'pretty', 'face', '\n', 'and', 'the', 'fine', 'expression', 'of', 'good', 'humour', 'in', 'it', 'that', 'could', '\n', 'possibly', 'be', ' ', 'her', 'manner', 'be', 'by', 'no', 'means', 'so', 'elegant', '\n', 'as', 'her', 'sister', 'but', 'they', 'be', 'much', 'more', 'prepossessing', '\n', 'she', 'come', 'in', 'with', 'a', 'smile', 'smile', 'all', 'the', 'time', 'of', 'her', 'visit', '\n', 'except', 'when', 'she', 'laugh', 'and', 'smile', 'when', 'she', 'go', 'away', '\n', 'her', 'husband', 'be', 'a', 'grave', 'look', 'young', 'man', 'of', 'five', 'or', 'six', '\n', 'and', 'twenty', 'with', 'an', 'air', 'of', 'more', 'fashion', 'and', 'sense', 'than', '\n', 'his', 'wife', 'but', 'of', 'less', 'willingness', 'to', 'please', 'or', 'be', 'pleased', '\n', 'he', 'enter', 'the', 'room', 'with', 'a', 'look', 'of', 'selfconsequence', '\n', 'slightly', 'bow', 'to', 'the', 'lady', 'without', 'speak', 'a', 'word', '\n', 'and', 'after', 'briefly', 'survey', 'they', 'and', 'their', 'apartment', '\n', 'take', 'up', 'a', 'newspaper', 'from', 'the', 'table', 'and', 'continue', 'to', 'read', 'it', '\n', 'as', 'long', 'as', 'he', 'staid', '\n\n', 'Mrs', 'Palmer', 'on', 'the', 'contrary', 'who', 'be', 'strongly', 'endow', '\n', 'by', 'nature', 'with', 'a', 'turn', 'for', 'be', 'uniformly', 'civil', 'and', 'happy', '\n', 'be', 'hardly', 'seat', 'before', 'her', 'admiration', 'of', 'the', 'parlour', '\n', 'and', 'every', 'thing', 'in', 'it', 'burst', 'forth', '\n\n', 'well', 'what', 'a', 'delightful', 'room', 'this', 'be', 'I', 'never', '\n', 'see', 'anything', 'so', 'charming', ' ', 'only', 'think', 'Mamma', 'how', 'it', '\n', 'be', 'improve', 'since', 'I', 'be', 'here', 'last', 'I', 'always', 'think', 'it', '\n', 'such', 'a', 'sweet', 'place', 'maam', 'turn', 'to', 'Mrs', 'Dashwood', '\n', 'but', 'you', 'have', 'make', 'it', 'so', 'charming', ' ', 'only', 'look', 'sister', '\n', 'how', 'delightful', 'every', 'thing', 'be', 'how', 'I', 'should', 'like', 'such', '\n', 'a', 'house', 'for', 'myself', ' ', 'should', 'not', 'you', 'Mr', 'Palmer', '\n\n', 'Mr', 'Palmer', 'make', 'she', 'no', 'answer', 'and', 'do', 'not', 'even', 'raise', '\n', 'his', 'eye', 'from', 'the', 'newspaper', '\n\n', 'Mr', 'Palmer', 'do', 'not', 'hear', 'I', 'say', 'she', 'laugh', '\n', 'he', 'never', 'do', 'sometimes', ' ', 'it', 'be', 'so', 'ridiculous', '\n\n', 'this', 'be', 'quite', 'a', 'new', 'idea', 'to', 'Mrs', 'Dashwood', 'she', 'have', '\n', 'never', 'be', 'use', 'to', 'find', 'wit', 'in', 'the', 'inattention', 'of', 'any', 'one', '\n', 'and', 'could', 'not', 'help', 'look', 'with', 'surprise', 'at', 'they', 'both', '\n\n', 'Mrs', 'Jennings', 'in', 'the', 'meantime', 'talk', 'on', 'as', 'loud', '\n', 'as', 'she', 'could', 'and', 'continue', 'her', 'account', 'of', 'their', 'surprise', '\n', 'the', 'evening', 'before', 'on', 'see', 'their', 'friend', 'without', '\n', 'cease', 'till', 'every', 'thing', 'be', 'tell', ' ', 'Mrs', 'Palmer', 'laugh', '\n', 'heartily', 'at', 'the', 'recollection', 'of', 'their', 'astonishment', '\n', 'and', 'every', 'body', 'agree', 'two', 'or', 'three', 'time', 'over', 'that', 'it', '\n', 'have', 'be', 'quite', 'an', 'agreeable', 'surprise', '\n\n', 'you', 'may', 'believe', 'how', 'glad', 'we', 'all', 'be', 'to', 'see', 'they', '\n', 'add', 'Mrs', 'Jennings', 'lean', 'forward', 'towards', 'Elinor', '\n', 'and', 'speak', 'in', 'a', 'low', 'voice', 'as', 'if', 'she', 'mean', 'to', 'be', 'hear', '\n', 'by', 'no', 'one', 'else', 'though', 'they', 'be', 'seat', 'on', 'different', 'side', '\n', 'of', 'the', 'room', 'but', 'however', 'I', 'can', 'not', 'help', 'wish', 'they', 'have', '\n', 'not', 'travel', 'quite', 'so', 'fast', 'nor', 'make', 'such', 'a', 'long', 'journey', '\n', 'of', 'it', 'for', 'they', 'come', 'all', 'round', 'by', 'London', 'upon', 'account', '\n', 'of', 'some', 'business', 'for', 'you', 'know', 'nod', 'significantly', 'and', '\n', 'point', 'to', 'her', 'daughter', 'it', 'be', 'wrong', 'in', 'her', 'situation', '\n', 'I', 'want', 'she', 'to', 'stay', 'at', 'home', 'and', 'rest', 'this', 'morning', '\n', 'but', 'she', 'would', 'come', 'with', 'we', 'she', 'long', 'so', 'much', 'to', 'see', '\n', 'you', 'all', '\n\n', 'Mrs', 'Palmer', 'laugh', 'and', 'say', 'it', 'would', 'not', 'do', 'she', '\n', 'any', 'harm', '\n\n', 'she', 'expect', 'to', 'be', 'confine', 'in', 'February', '\n', 'continue', 'Mrs', 'Jennings', '\n\n', 'Lady', 'Middleton', 'could', 'no', 'long', 'endure', 'such', 'a', 'conversation', '\n', 'and', 'therefore', 'exert', 'herself', 'to', 'ask', 'Mr', 'Palmer', 'if', 'there', '\n', 'be', 'any', 'news', 'in', 'the', 'paper', '\n\n', 'no', 'none', 'at', 'all', 'he', 'reply', 'and', 'read', 'on', '\n\n', 'here', 'come', 'Marianne', 'cry', 'Sir', 'John', ' ', 'now', 'Palmer', '\n', 'you', 'shall', 'see', 'a', 'monstrous', 'pretty', 'girl', '\n\n', 'he', 'immediately', 'go', 'into', 'the', 'passage', 'open', 'the', 'front', 'door', '\n', 'and', 'usher', 'she', 'in', 'himself', ' ', 'Mrs', 'Jennings', 'ask', 'she', '\n', 'as', 'soon', 'as', 'she', 'appear', 'if', 'she', 'have', 'not', 'be', 'to', 'Allenham', '\n', 'and', 'Mrs', 'Palmer', 'laugh', 'so', 'heartily', 'at', 'the', 'question', '\n', 'as', 'to', 'show', 'she', 'understand', 'it', ' ', 'Mr', 'Palmer', 'look', 'up', '\n', 'on', 'her', 'enter', 'the', 'room', 'stare', 'at', 'she', 'some', 'minute', '\n', 'and', 'then', 'return', 'to', 'his', 'newspaper', ' ', 'Mrs', 'Palmers', 'eye', '\n', 'be', 'now', 'catch', 'by', 'the', 'drawing', 'which', 'hang', 'round', 'the', 'room', '\n', 'she', 'get', 'up', 'to', 'examine', 'they', '\n\n', 'oh', 'dear', 'how', 'beautiful', 'these', 'be', ' ', 'well', 'how', 'delightful', '\n', 'do', 'but', 'look', 'mama', 'how', 'sweet', 'I', 'declare', 'they', 'be', 'quite', 'charming', '\n', 'I', 'could', 'look', 'at', 'they', 'for', 'ever', 'and', 'then', 'sit', 'down', 'again', '\n', 'she', 'very', 'soon', 'forget', 'that', 'there', 'be', 'any', 'such', 'thing', 'in', 'the', 'room', '\n\n', 'when', 'Lady', 'Middleton', 'rise', 'to', 'go', 'away', 'Mr', 'Palmer', '\n', 'rise', 'also', 'lay', 'down', 'the', 'newspaper', 'stretch', 'himself', '\n', 'and', 'look', 'at', 'they', 'all', 'around', '\n\n', 'my', 'love', 'have', 'you', 'be', 'asleep', 'say', 'his', 'wife', 'laugh', '\n\n', 'he', 'make', 'she', 'no', 'answer', 'and', 'only', 'observe', 'after', 'again', '\n', 'examine', 'the', 'room', 'that', 'it', 'be', 'very', 'low', 'pitch', '\n', 'and', 'that', 'the', 'ceiling', 'be', 'crook', ' ', 'he', 'then', 'make', 'his', 'bow', '\n', 'and', 'depart', 'with', 'the', 'rest', '\n\n', 'Sir', 'John', 'have', 'be', 'very', 'urgent', 'with', 'they', 'all', 'to', '\n', 'spend', 'the', 'next', 'day', 'at', 'the', 'park', ' ', 'Mrs', 'Dashwood', 'who', 'do', '\n', 'not', 'chuse', 'to', 'dine', 'with', 'they', 'oftener', 'than', 'they', 'dine', '\n', 'at', 'the', 'cottage', 'absolutely', 'refuse', 'on', 'her', 'own', 'account', '\n', 'her', 'daughter', 'might', 'do', 'as', 'they', 'please', ' ', 'but', 'they', 'have', 'no', '\n', 'curiosity', 'to', 'see', 'how', 'Mr', 'and', 'Mrs', 'Palmer', 'eat', 'their', 'dinner', '\n', 'and', 'no', 'expectation', 'of', 'pleasure', 'from', 'they', 'in', 'any', 'other', 'way', '\n', 'they', 'attempt', 'therefore', 'likewise', 'to', 'excuse', 'themselves', '\n', 'the', 'weather', 'be', 'uncertain', 'and', 'not', 'likely', 'to', 'be', 'good', '\n', 'but', 'Sir', 'John', 'would', 'not', 'be', 'satisfiedthe', 'carriage', 'should', '\n', 'be', 'send', 'for', 'they', 'and', 'they', 'must', 'come', ' ', 'Lady', 'Middleton', 'too', '\n', 'though', 'she', 'do', 'not', 'press', 'their', 'mother', 'press', 'they', '\n', 'Mrs', 'Jennings', 'and', 'Mrs', 'Palmer', 'join', 'their', 'entreaty', 'all', '\n', 'seem', 'equally', 'anxious', 'to', 'avoid', 'a', 'family', 'party', 'and', 'the', 'young', '\n', 'lady', 'be', 'oblige', 'to', 'yield', '\n\n', 'why', 'should', 'they', 'ask', 'we', 'say', 'Marianne', 'as', 'soon', 'as', 'they', '\n', 'be', 'go', ' ', 'the', 'rent', 'of', 'this', 'cottage', 'be', 'say', 'to', 'be', 'low', '\n', 'but', 'we', 'have', 'it', 'on', 'very', 'hard', 'term', 'if', 'we', 'be', 'to', 'dine', '\n', 'at', 'the', 'park', 'whenever', 'any', 'one', 'be', 'stay', 'either', 'with', 'they', '\n', 'or', 'with', 'we', '\n\n', 'they', 'mean', 'no', 'less', 'to', 'be', 'civil', 'and', 'kind', 'to', 'we', 'now', '\n', 'say', 'Elinor', 'by', 'these', 'frequent', 'invitation', 'than', 'by', '\n', 'those', 'which', 'we', 'receive', 'from', 'they', 'a', 'few', 'week', 'ago', '\n', 'the', 'alteration', 'be', 'not', 'in', 'they', 'if', 'their', 'party', 'be', 'grow', '\n', 'tedious', 'and', 'dull', ' ', 'we', 'must', 'look', 'for', 'the', 'change', 'elsewhere', '\n\n\n\n', 'chapter', '20', '\n\n\n', 'as', 'the', 'Miss', 'Dashwoods', 'enter', 'the', 'drawingroom', 'of', 'the', 'park', '\n', 'the', 'next', 'day', 'at', 'one', 'door', 'Mrs', 'Palmer', 'came', 'run', 'in', 'at', '\n', 'the', 'other', 'look', 'as', 'good', 'humour', 'and', 'merry', 'as', 'before', '\n', 'she', 'take', 'they', 'all', 'most', 'affectionately', 'by', 'the', 'hand', '\n', 'and', 'express', 'great', 'delight', 'in', 'see', 'they', 'again', '\n\n', 'I', 'be', 'so', 'glad', 'to', 'see', 'you', 'say', 'she', 'seat', 'herself', '\n', 'between', 'Elinor', 'and', 'Marianne', 'for', 'it', 'be', 'so', 'bad', 'a', 'day', 'I', 'be', '\n', 'afraid', 'you', 'might', 'not', 'come', 'which', 'would', 'be', 'a', 'shocking', 'thing', '\n', 'as', 'we', 'go', 'away', 'again', 'tomorrow', 'we', 'must', 'go', 'for', 'the', 'weston', '\n', 'come', 'to', 'we', 'next', 'week', 'you', 'know', ' ', 'it', 'be', 'quite', 'a', 'sudden', 'thing', '\n', 'our', 'come', 'at', 'all', 'and', 'I', 'know', 'nothing', 'of', 'it', 'till', 'the', 'carriage', '\n', 'be', 'come', 'to', 'the', 'door', 'and', 'then', 'Mr', 'Palmer', 'ask', 'I', 'if', 'I', '\n', 'would', 'go', 'with', 'he', 'to', 'Barton', ' ', 'he', 'be', 'so', 'droll', 'he', 'never', '\n', 'tell', 'I', 'any', 'thing', 'I', 'be', 'so', 'sorry', 'we', 'can', 'not', 'stay', 'long', '\n', 'however', 'we', 'shall', 'meet', 'again', 'in', 'town', 'very', 'soon', 'I', 'hope', '\n\n', 'they', 'be', 'oblige', 'to', 'put', 'an', 'end', 'to', 'such', 'an', 'expectation', '\n\n', 'not', 'go', 'to', 'town', 'cry', 'Mrs', 'Palmer', 'with', 'a', 'laugh', '\n', 'I', 'shall', 'be', 'quite', 'disappointed', 'if', 'you', 'do', 'not', ' ', 'I', 'could', '\n', 'get', 'the', 'nice', 'house', 'in', 'world', 'for', 'you', 'next', 'door', 'to', 'ours', '\n', 'in', 'Hanoversquare', ' ', 'you', 'must', 'come', 'indeed', ' ', 'I', 'be', 'sure', '\n', 'I', 'shall', 'be', 'very', 'happy', 'to', 'chaperon', 'you', 'at', 'any', 'time', 'till', '\n', 'I', 'be', 'confine', 'if', 'Mrs', 'Dashwood', 'should', 'not', 'like', 'to', 'go', '\n', 'into', 'public', '\n\n', 'they', 'thank', 'she', 'but', 'be', 'oblige', 'to', 'resist', 'all', '\n', 'her', 'entreaty', '\n\n', 'oh', 'my', 'love', 'cry', 'Mrs', 'Palmer', 'to', 'her', 'husband', '\n', 'who', 'just', 'then', 'enter', 'the', 'roomyou', 'must', 'help', 'I', 'to', '\n', 'persuade', 'the', 'Miss', 'Dashwoods', 'to', 'go', 'to', 'town', 'this', 'winter', '\n\n', 'her', 'love', 'make', 'no', 'answer', 'and', 'after', 'slightly', 'bow', '\n', 'to', 'the', 'lady', 'begin', 'complain', 'of', 'the', 'weather', '\n\n', 'how', 'horrid', 'all', 'this', 'be', 'say', 'he', ' ', 'such', 'weather', '\n', 'make', 'every', 'thing', 'and', 'every', 'body', 'disgust', ' ', 'Dullness', '\n', 'be', 'as', 'much', 'produce', 'within', 'door', 'as', 'without', 'by', 'rain', '\n', 'it', 'make', 'one', 'det', 'all', 'one', 'acquaintance', ' ', 'what', 'the', '\n', 'devil', 'do', 'Sir', 'John', 'mean', 'by', 'not', 'have', 'a', 'billiard', 'room', '\n', 'in', 'his', 'house', ' ', 'how', 'few', 'people', 'know', 'what', 'comfort', 'be', ' ', 'Sir', '\n', 'John', 'be', 'as', 'stupid', 'as', 'the', 'weather', '\n\n', 'the', 'rest', 'of', 'the', 'company', 'soon', 'dropt', 'in', '\n\n', 'I', 'be', 'afraid', 'Miss', 'Marianne', 'say', 'Sir', 'John', 'you', 'have', '\n', 'not', 'be', 'able', 'to', 'take', 'your', 'usual', 'walk', 'to', 'Allenham', 'today', '\n\n', 'Marianne', 'look', 'very', 'grave', 'and', 'say', 'nothing', '\n\n', 'oh', 'do', 'not', 'be', 'so', 'sly', 'before', 'we', 'say', 'Mrs', 'Palmer', '\n', 'for', 'we', 'know', 'all', 'about', 'it', 'I', 'assure', 'you', 'and', 'I', 'admire', 'your', '\n', 'taste', 'very', 'much', 'for', 'I', 'think', 'he', 'be', 'extremely', 'handsome', '\n', 'we', 'do', 'not', 'live', 'a', 'great', 'way', 'from', 'he', 'in', 'the', 'country', 'you', 'know', '\n', 'not', 'above', 'ten', 'mile', 'I', 'dare', 'say', '\n\n', 'much', 'nearer', 'thirty', 'say', 'her', 'husband', '\n\n', 'ah', 'well', 'there', 'be', 'not', 'much', 'difference', '\n', 'I', 'never', 'be', 'at', 'his', 'house', 'but', 'they', 'say', 'it', 'be', 'a', 'sweet', '\n', 'pretty', 'place', '\n\n', 'as', 'vile', 'a', 'spot', 'as', 'I', 'ever', 'see', 'in', 'my', 'life', '\n', 'say', 'Mr', 'Palmer', '\n\n', 'Marianne', 'remain', 'perfectly', 'silent', 'though', 'her', '\n', 'countenance', 'betray', 'her', 'interest', 'in', 'what', 'be', 'say', '\n\n', 'be', 'it', 'very', 'ugly', 'continue', 'Mrs', 'Palmerthen', 'it', '\n', 'must', 'be', 'some', 'other', 'place', 'that', 'be', 'so', 'pretty', 'I', 'suppose', '\n\n', 'when', 'they', 'be', 'seat', 'in', 'the', 'dining', 'room', 'Sir', 'John', '\n', 'observe', 'with', 'regret', 'that', 'they', 'be', 'only', 'eight', 'all', 'together', '\n\n', 'my', 'dear', 'say', 'he', 'to', 'his', 'lady', 'it', 'be', 'very', 'provoking', '\n', 'that', 'we', 'should', 'be', 'so', 'few', ' ', 'why', 'do', 'not', 'you', 'ask', 'the', 'gilbert', '\n', 'to', 'come', 'to', 'we', 'today', '\n\n', 'do', 'not', 'I', 'tell', 'you', 'Sir', 'John', 'when', 'you', 'speak', 'to', 'I', '\n', 'about', 'it', 'before', 'that', 'it', 'could', 'not', 'be', 'do', ' ', 'they', 'dine', '\n', 'with', 'we', 'last', '\n\n', 'you', 'and', 'I', 'Sir', 'John', 'say', 'Mrs', 'Jennings', '\n', 'should', 'not', 'stand', 'upon', 'such', 'ceremony', '\n\n', 'then', 'you', 'would', 'be', 'very', 'illbred', 'cry', 'Mr', 'Palmer', '\n\n', 'my', 'love', 'you', 'contradict', 'every', 'body', 'say', 'his', 'wife', '\n', 'with', 'her', 'usual', 'laugh', ' ', 'do', 'you', 'know', 'that', 'you', 'be', 'quite', 'rude', '\n\n', 'I', 'do', 'not', 'know', 'I', 'contradict', 'any', 'body', 'in', 'call', '\n', 'your', 'mother', 'illbre', '\n\n', 'ay', 'you', 'may', 'abuse', 'I', 'as', 'you', 'please', 'say', 'the', 'goodnatured', '\n', 'old', 'lady', 'you', 'have', 'take', 'Charlotte', 'off', 'my', 'hand', 'and', 'can', 'not', '\n', 'give', 'she', 'back', 'again', ' ', 'so', 'there', 'I', 'have', 'the', 'whip', 'hand', 'of', 'you', '\n\n', 'Charlotte', 'laugh', 'heartily', 'to', 'think', 'that', 'her', '\n', 'husband', 'could', 'not', 'get', 'rid', 'of', 'she', 'and', 'exultingly', 'say', '\n', 'she', 'do', 'not', 'care', 'how', 'cross', 'he', 'be', 'to', 'she', 'as', 'they', 'must', '\n', 'live', 'together', ' ', 'it', 'be', 'impossible', 'for', 'any', 'one', 'to', 'be', 'more', '\n', 'thoroughly', 'goodnatured', 'or', 'more', 'determined', 'to', 'be', 'happy', '\n', 'than', 'Mrs', 'Palmer', ' ', 'the', 'studied', 'indifference', 'insolence', '\n', 'and', 'discontent', 'of', 'her', 'husband', 'give', 'she', 'no', 'pain', '\n', 'and', 'when', 'he', 'scold', 'or', 'abuse', 'she', 'she', 'be', 'highly', 'divert', '\n\n', 'Mr', 'Palmer', 'be', 'so', 'droll', 'say', 'she', 'in', 'a', 'whisper', '\n', 'to', 'Elinor', ' ', 'he', 'be', 'always', 'out', 'of', 'humour', '\n\n', 'Elinor', 'be', 'not', 'incline', 'after', 'a', 'little', 'observation', '\n', 'to', 'give', 'he', 'credit', 'for', 'be', 'so', 'genuinely', 'and', 'unaffectedly', '\n', 'illnature', 'or', 'illbre', 'as', 'he', 'wish', 'to', 'appear', '\n', 'his', 'temper', 'might', 'perhaps', 'be', 'a', 'little', 'sour', 'by', 'find', '\n', 'like', 'many', 'other', 'of', 'his', 'sex', 'that', 'through', 'some', 'unaccountable', '\n', 'bias', 'in', 'favour', 'of', 'beauty', 'he', 'be', 'the', 'husband', 'of', 'a', 'very', 'silly', '\n', 'womanbut', 'she', 'know', 'that', 'this', 'kind', 'of', 'blunder', 'be', 'too', '\n', 'common', 'for', 'any', 'sensible', 'man', 'to', 'be', 'lastingly', 'hurt', 'by', 'it', '\n', 'it', 'be', 'rather', 'a', 'wish', 'of', 'distinction', 'she', 'believe', '\n', 'which', 'produce', 'his', 'contemptuous', 'treatment', 'of', 'every', 'body', '\n', 'and', 'his', 'general', 'abuse', 'of', 'every', 'thing', 'before', 'he', '\n', 'it', 'be', 'the', 'desire', 'of', 'appear', 'superior', 'to', 'other', 'people', '\n', 'the', 'motive', 'be', 'too', 'common', 'to', 'be', 'wonder', 'at', 'but', 'the', 'mean', '\n', 'however', 'they', 'might', 'succeed', 'by', 'establish', 'his', 'superiority', '\n', 'in', 'illbreeding', 'be', 'not', 'likely', 'to', 'attach', 'any', 'one', 'to', 'he', '\n', 'except', 'his', 'wife', '\n\n', 'oh', 'my', 'dear', 'Miss', 'Dashwood', 'say', 'Mrs', 'Palmer', 'soon', 'afterwards', '\n', 'I', 'have', 'get', 'such', 'a', 'favour', 'to', 'ask', 'of', 'you', 'and', 'your', 'sister', '\n', 'will', 'you', 'come', 'and', 'spend', 'some', 'time', 'at', 'Cleveland', 'this', '\n', 'Christmas', ' ', 'now', 'pray', 'doand', 'come', 'while', 'the', 'Westons', 'be', '\n', 'with', 'we', ' ', 'you', 'can', 'not', 'think', 'how', 'happy', 'I', 'shall', 'be', ' ', 'it', 'will', '\n', 'be', 'quite', 'delightfulMy', 'love', 'apply', 'to', 'her', 'husband', '\n', 'do', 'not', 'you', 'long', 'to', 'have', 'the', 'Miss', 'Dashwoods', 'come', 'to', 'Cleveland', '\n\n', 'certainly', 'he', 'reply', 'with', 'a', 'sneeri', 'come', '\n', 'into', 'Devonshire', 'with', 'no', 'other', 'view', '\n\n', 'there', 'nowsaid', 'his', 'lady', 'you', 'see', 'Mr', 'Palmer', '\n', 'expect', 'you', 'so', 'you', 'can', 'not', 'refuse', 'to', 'come', '\n\n', 'they', 'both', 'eagerly', 'and', 'resolutely', 'decline', 'her', 'invitation', '\n\n', 'but', 'indeed', 'you', 'must', 'and', 'shall', 'come', ' ', 'I', 'be', 'sure', 'you', '\n', 'will', 'like', 'it', 'of', 'all', 'thing', ' ', 'the', 'Westons', 'will', 'be', 'with', 'we', '\n', 'and', 'it', 'will', 'be', 'quite', 'delightful', ' ', 'you', 'can', 'not', 'think', '\n', 'what', 'a', 'sweet', 'place', 'Cleveland', 'be', 'and', 'we', 'be', 'so', 'gay', 'now', '\n', 'for', 'Mr', 'Palmer', 'be', 'always', 'go', 'about', 'the', 'country', 'canvass', '\n', 'against', 'the', 'election', 'and', 'so', 'many', 'people', 'come', 'to', 'dine', '\n', 'with', 'we', 'that', 'I', 'never', 'see', 'before', 'it', 'be', 'quite', 'charming', ' ', 'but', '\n', 'poor', 'fellow', 'it', 'be', 'very', 'fatiguing', 'to', 'he', 'for', 'he', 'be', 'force', '\n', 'to', 'make', 'every', 'body', 'like', 'he', '\n\n', 'Elinor', 'could', 'hardly', 'keep', 'her', 'countenance', 'as', 'she', '\n', 'assent', 'to', 'the', 'hardship', 'of', 'such', 'an', 'obligation', '\n\n', 'how', 'charming', 'it', 'will', 'be', 'say', 'Charlotte', 'when', 'he', '\n', 'be', 'in', 'Parliamentwont', 'it', 'how', 'I', 'shall', 'laugh', ' ', 'it', 'will', '\n', 'be', 'so', 'ridiculous', 'to', 'see', 'all', 'his', 'letter', 'direct', 'to', 'he', '\n', 'with', 'an', 'MPBut', 'do', 'you', 'know', 'he', 'say', 'he', 'will', 'never', 'frank', '\n', 'for', 'I', ' ', 'he', 'declare', 'he', 'will', 'not', ' ', 'do', 'not', 'you', 'Mr', 'Palmer', '\n\n', 'Mr', 'Palmer', 'take', 'no', 'notice', 'of', 'her', '\n\n', 'he', 'can', 'not', 'bear', 'write', 'you', 'know', 'she', 'continue', '\n', 'he', 'say', 'it', 'be', 'quite', 'shocking', '\n\n', 'no', 'say', 'he', 'I', 'never', 'say', 'any', 'thing', 'so', 'irrational', '\n', 'do', 'not', 'palm', 'all', 'your', 'abuse', 'of', 'language', 'upon', 'I', '\n\n', 'there', 'now', 'you', 'see', 'how', 'droll', 'he', 'be', ' ', 'this', 'be', 'always', '\n', 'the', 'way', 'with', 'he', ' ', 'sometimes', 'he', 'will', 'not', 'speak', 'to', 'I', 'for', 'half', '\n', 'a', 'day', 'together', 'and', 'then', 'he', 'come', 'out', 'with', 'something', '\n', 'so', 'drollall', 'about', 'any', 'thing', 'in', 'the', 'world', '\n\n', 'she', 'surprise', 'Elinor', 'very', 'much', 'as', 'they', 'return', '\n', 'into', 'the', 'drawingroom', 'by', 'ask', 'she', 'whether', 'she', 'do', '\n', 'not', 'like', 'Mr', 'Palmer', 'excessively', '\n\n', 'certainly', 'say', 'Elinor', 'he', 'seem', 'very', 'agreeable', '\n\n', 'WellI', 'be', 'so', 'glad', 'you', 'do', ' ', 'I', 'think', 'you', 'would', '\n', 'he', 'be', 'so', 'pleasant', 'and', 'Mr', 'Palmer', 'be', 'excessively', 'pleased', '\n', 'with', 'you', 'and', 'your', 'sister', 'I', 'can', 'tell', 'you', 'and', 'you', 'can', 'not', '\n', 'think', 'how', 'disappointed', 'he', 'will', 'be', 'if', 'you', 'do', 'not', 'come', '\n', 'to', 'ClevelandI', 'can', 'not', 'imagine', 'why', 'you', 'should', 'object', '\n', 'to', 'it', '\n\n', 'Elinor', 'be', 'again', 'oblige', 'to', 'decline', 'her', 'invitation', '\n', 'and', 'by', 'change', 'the', 'subject', 'put', 'a', 'stop', 'to', 'her', 'entreaty', '\n', 'she', 'think', 'it', 'probable', 'that', 'as', 'they', 'live', 'in', 'the', '\n', 'same', 'county', 'Mrs', 'Palmer', 'might', 'be', 'able', 'to', 'give', 'some', '\n', 'more', 'particular', 'account', 'of', 'Willoughbys', 'general', '\n', 'character', 'than', 'could', 'be', 'gather', 'from', 'the', 'Middletons', '\n', 'partial', 'acquaintance', 'with', 'he', 'and', 'she', 'be', 'eager', 'to', 'gain', '\n', 'from', 'any', 'one', 'such', 'a', 'confirmation', 'of', 'his', 'merit', 'as', 'might', '\n', 'remove', 'the', 'possibility', 'of', 'fear', 'from', 'Marianne', ' ', 'she', 'begin', '\n', 'by', 'inquire', 'if', 'they', 'see', 'much', 'of', 'Mr', 'Willoughby', 'at', 'Cleveland', '\n', 'and', 'whether', 'they', 'be', 'intimately', 'acquaint', 'with', 'he', '\n\n', 'oh', 'dear', 'yes', 'I', 'know', 'he', 'extremely', 'well', '\n', 'reply', 'Mrs', 'PalmerNot', 'that', 'I', 'ever', 'speak', '\n', 'to', 'he', 'indeed', 'but', 'I', 'have', 'see', 'he', 'for', 'ever', 'in', 'town', '\n', 'somehow', 'or', 'other', 'I', 'never', 'happen', 'to', 'be', 'stay', 'at', 'Barton', '\n', 'while', 'he', 'be', 'at', 'Allenham', ' ', 'Mama', 'see', 'he', 'here', 'once', 'before', '\n', 'but', 'I', 'be', 'with', 'my', 'uncle', 'at', 'Weymouth', ' ', 'however', 'I', 'dare', 'say', '\n', 'we', 'should', 'have', 'see', 'a', 'great', 'deal', 'of', 'he', 'in', 'Somersetshire', '\n', 'if', 'it', 'have', 'not', 'happen', 'very', 'unluckily', 'that', 'we', 'should', 'never', '\n', 'have', 'be', 'in', 'the', 'country', 'together', ' ', 'he', 'be', 'very', 'little', '\n', 'at', 'Combe', 'I', 'believe', 'but', 'if', 'he', 'be', 'ever', 'so', 'much', 'there', '\n', 'I', 'do', 'not', 'think', 'Mr', 'Palmer', 'would', 'visit', 'he', 'for', 'he', 'be', '\n', 'in', 'the', 'opposition', 'you', 'know', 'and', 'besides', 'it', 'be', 'such', 'a', '\n', 'way', 'off', ' ', 'I', 'know', 'why', 'you', 'inquire', 'about', 'he', 'very', 'well', '\n', 'your', 'sister', 'be', 'to', 'marry', 'he', ' ', 'I', 'be', 'monstrous', 'glad', 'of', 'it', '\n', 'for', 'then', 'I', 'shall', 'have', 'she', 'for', 'a', 'neighbour', 'you', 'know', '\n\n', 'upon', 'my', 'word', 'reply', 'Elinor', 'you', 'know', 'much', '\n', 'more', 'of', 'the', 'matter', 'than', 'I', 'do', 'if', 'you', 'have', 'any', 'reason', '\n', 'to', 'expect', 'such', 'a', 'match', '\n\n', 'do', 'not', 'pretend', 'to', 'deny', 'it', 'because', 'you', 'know', 'it', 'be', '\n', 'what', 'every', 'body', 'talk', 'of', ' ', 'I', 'assure', 'you', 'I', 'hear', 'of', 'it', '\n', 'in', 'my', 'way', 'through', 'town', '\n\n', 'my', 'dear', 'Mrs', 'Palmer', '\n\n', 'upon', 'my', 'honour', 'I', 'didi', 'meet', 'Colonel', 'Brandon', '\n', 'Monday', 'morning', 'in', 'Bondstreet', 'just', 'before', 'we', 'leave', 'town', '\n', 'and', 'he', 'tell', 'I', 'of', 'it', 'directly', '\n\n', 'you', 'surprise', 'I', 'very', 'much', ' ', 'Colonel', 'Brandon', 'tell', '\n', 'you', 'of', 'it', ' ', 'surely', 'you', 'must', 'be', 'mistake', ' ', 'to', 'give', 'such', '\n', 'intelligence', 'to', 'a', 'person', 'who', 'could', 'not', 'be', 'interested', 'in', 'it', '\n', 'even', 'if', 'it', 'be', 'true', 'be', 'not', 'what', 'I', 'should', 'expect', 'Colonel', '\n', 'Brandon', 'to', 'do', '\n\n', 'but', 'I', 'do', 'assure', 'you', 'it', 'be', 'so', 'for', 'all', 'that', '\n', 'and', 'I', 'will', 'tell', 'you', 'how', 'it', 'happen', ' ', 'when', 'we', 'meet', 'he', '\n', 'he', 'turn', 'back', 'and', 'walk', 'with', 'we', 'and', 'so', 'we', 'begin', 'talk', '\n', 'of', 'my', 'brother', 'and', 'sister', 'and', 'one', 'thing', 'and', 'another', '\n', 'and', 'I', 'say', 'to', 'he', 'so', 'Colonel', 'there', 'be', 'a', 'new', 'family', '\n', 'come', 'to', 'Barton', 'cottage', 'I', 'hear', 'and', 'mama', 'send', 'I', 'word', '\n', 'they', 'be', 'very', 'pretty', 'and', 'that', 'one', 'of', 'they', 'be', 'go', 'to', 'be', '\n', 'married', 'to', 'Mr', 'Willoughby', 'of', 'Combe', 'Magna', ' ', 'be', 'it', 'true', '\n', 'pray', 'for', 'of', 'course', 'you', 'must', 'know', 'as', 'you', 'have', 'be', 'in', '\n', 'Devonshire', 'so', 'lately', '\n\n', 'and', 'what', 'do', 'the', 'Colonel', 'say', '\n\n', 'Ohhe', 'do', 'not', 'say', 'much', 'but', 'he', 'look', 'as', 'if', 'he', '\n', 'know', 'it', 'to', 'be', 'true', 'so', 'from', 'that', 'moment', 'I', 'set', 'it', 'down', '\n', 'as', 'certain', ' ', 'it', 'will', 'be', 'quite', 'delightful', 'I', 'declare', '\n', 'when', 'be', 'it', 'to', 'take', 'place', '\n\n', 'Mr', 'Brandon', 'be', 'very', 'well', 'I', 'hope', '\n\n', 'oh', 'yes', 'quite', 'well', 'and', 'so', 'full', 'of', 'your', 'praise', '\n', 'he', 'do', 'nothing', 'but', 'say', 'fine', 'thing', 'of', 'you', '\n\n', 'I', 'be', 'flatter', 'by', 'his', 'commendation', ' ', 'he', 'seem', '\n', 'an', 'excellent', 'man', 'and', 'I', 'think', 'he', 'uncommonly', 'pleasing', '\n\n', 'so', 'do', 'IHe', 'be', 'such', 'a', 'charming', 'man', 'that', 'it', '\n', 'be', 'quite', 'a', 'pity', 'he', 'should', 'be', 'so', 'grave', 'and', 'so', 'dull', '\n', 'Mamma', 'say', 'he', 'be', 'in', 'love', 'with', 'your', 'sister', 'too', '\n', 'I', 'assure', 'you', 'it', 'be', 'a', 'great', 'compliment', 'if', 'he', 'be', 'for', 'he', '\n', 'hardly', 'ever', 'fall', 'in', 'love', 'with', 'any', 'body', '\n\n', 'be', 'Mr', 'Willoughby', 'much', 'know', 'in', 'your', 'part', '\n', 'of', 'Somersetshire', 'say', 'Elinor', '\n\n', 'oh', 'yes', 'extremely', 'well', 'that', 'be', 'I', 'do', 'not', 'believe', '\n', 'many', 'people', 'be', 'acquaint', 'with', 'he', 'because', 'Combe', 'Magna', '\n', 'be', 'so', 'far', 'off', 'but', 'they', 'all', 'think', 'he', 'extremely', 'agreeable', '\n', 'I', 'assure', 'you', ' ', 'nobody', 'be', 'more', 'like', 'than', 'Mr', 'Willoughby', '\n', 'wherever', 'he', 'go', 'and', 'so', 'you', 'may', 'tell', 'your', 'sister', '\n', 'she', 'be', 'a', 'monstrous', 'lucky', 'girl', 'to', 'get', 'he', 'upon', 'my', 'honour', '\n', 'not', 'but', 'that', 'he', 'be', 'much', 'more', 'lucky', 'in', 'get', 'she', '\n', 'because', 'she', 'be', 'so', 'very', 'handsome', 'and', 'agreeable', 'that', 'nothing', '\n', 'can', 'be', 'good', 'enough', 'for', 'she', ' ', 'however', 'I', 'do', 'not', 'think', '\n', 'she', 'hardly', 'at', 'all', 'handsomer', 'than', 'you', 'I', 'assure', 'you', '\n', 'for', 'I', 'think', 'you', 'both', 'excessively', 'pretty', 'and', 'so', 'do', '\n', 'Mr', 'Palmer', 'too', 'I', 'be', 'sure', 'though', 'we', 'could', 'not', 'get', 'he', '\n', 'to', 'own', 'it', 'last', 'night', '\n\n', 'Mrs', 'Palmers', 'information', 'respect', 'Willoughby', '\n', 'be', 'not', 'very', 'material', 'but', 'any', 'testimony', 'in', 'his', 'favour', '\n', 'however', 'small', 'be', 'pleasing', 'to', 'she', '\n\n', 'I', 'be', 'so', 'glad', 'we', 'be', 'got', 'acquaint', 'at', 'last', '\n', 'continue', 'CharlotteAnd', 'now', 'I', 'hope', 'we', 'shall', 'always', 'be', '\n', 'great', 'friend', ' ', 'you', 'can', 'not', 'think', 'how', 'much', 'I', 'long', 'to', 'see', 'you', '\n', 'it', 'be', 'so', 'delightful', 'that', 'you', 'should', 'live', 'at', 'the', 'cottage', '\n', 'nothing', 'can', 'be', 'like', 'it', 'to', 'be', 'sure', ' ', 'and', 'I', 'be', 'so', 'glad', '\n', 'your', 'sister', 'be', 'go', 'to', 'be', 'well', 'married', ' ', 'I', 'hope', 'you', 'will', '\n', 'be', 'a', 'great', 'deal', 'at', 'Combe', 'Magna', ' ', 'it', 'be', 'a', 'sweet', 'place', '\n', 'by', 'all', 'account', '\n\n', 'you', 'have', 'be', 'long', 'acquaint', 'with', 'Colonel', 'Brandon', '\n', 'have', 'not', 'you', '\n\n', 'yes', 'a', 'great', 'while', 'ever', 'since', 'my', 'sister', 'marry', '\n', 'he', 'be', 'a', 'particular', 'friend', 'of', 'Sir', 'Johns', 'I', 'believe', '\n', 'she', 'add', 'in', 'a', 'low', 'voice', 'he', 'would', 'have', 'be', 'very', '\n', 'glad', 'to', 'have', 'have', 'I', 'if', 'he', 'could', ' ', 'Sir', 'John', 'and', 'Lady', '\n', 'Middleton', 'wish', 'it', 'very', 'much', ' ', 'but', 'mama', 'do', 'not', 'think', '\n', 'the', 'match', 'good', 'enough', 'for', 'I', 'otherwise', 'Sir', 'John', 'would', '\n', 'have', 'mention', 'it', 'to', 'the', 'Colonel', 'and', 'we', 'should', 'have', 'be', '\n', 'marry', 'immediately', '\n\n', 'do', 'not', 'Colonel', 'Brandon', 'know', 'of', 'Sir', 'Johns', 'proposal', '\n', 'to', 'your', 'mother', 'before', 'it', 'be', 'make', ' ', 'have', 'he', 'never', 'own', '\n', 'his', 'affection', 'to', 'yourself', '\n\n', 'oh', 'no', 'but', 'if', 'mama', 'have', 'not', 'object', 'to', 'it', '\n', 'I', 'dare', 'say', 'he', 'would', 'have', 'like', 'it', 'of', 'all', 'thing', '\n', 'he', 'have', 'not', 'see', 'I', 'then', 'above', 'twice', 'for', 'it', 'be', 'before', '\n', 'I', 'leave', 'school', ' ', 'however', 'I', 'be', 'much', 'happy', 'as', 'I', 'be', '\n', 'Mr', 'Palmer', 'be', 'the', 'kind', 'of', 'man', 'I', 'like', '\n\n\n\n', 'chapter', '21', '\n\n\n', 'the', 'Palmers', 'return', 'to', 'Cleveland', 'the', 'next', 'day', '\n', 'and', 'the', 'two', 'family', 'at', 'Barton', 'be', 'again', 'leave', 'to', 'entertain', '\n', 'each', 'other', ' ', 'but', 'this', 'do', 'not', 'last', 'long', 'Elinor', 'have', 'hardly', '\n', 'get', 'their', 'last', 'visitor', 'out', 'of', 'her', 'head', 'have', 'hardly', 'do', '\n', 'wonder', 'at', 'Charlottes', 'be', 'so', 'happy', 'without', 'a', 'cause', '\n', 'at', 'Mr', 'Palmers', 'act', 'so', 'simply', 'with', 'good', 'ability', '\n', 'and', 'at', 'the', 'strange', 'unsuitableness', 'which', 'often', 'exist', 'between', '\n', 'husband', 'and', 'wife', 'before', 'Sir', 'Johns', 'and', 'Mrs', 'Jenningss', '\n', 'active', 'zeal', 'in', 'the', 'cause', 'of', 'society', 'procure', 'she', 'some', '\n', 'other', 'new', 'acquaintance', 'to', 'see', 'and', 'observe', '\n\n', 'in', 'a', 'morning', 'excursion', 'to', 'Exeter', 'they', 'have', 'meet', 'with', '\n', 'two', 'young', 'lady', 'whom', 'Mrs', 'Jennings', 'have', 'the', 'satisfaction', '\n', 'of', 'discover', 'to', 'be', 'her', 'relation', 'and', 'this', 'be', 'enough', '\n', 'for', 'Sir', 'John', 'to', 'invite', 'they', 'directly', 'to', 'the', 'park', '\n', 'as', 'soon', 'as', 'their', 'present', 'engagement', 'at', 'Exeter', 'be', 'over', '\n', 'their', 'engagement', 'at', 'Exeter', 'instantly', 'give', 'way', 'before', '\n', 'such', 'an', 'invitation', 'and', 'Lady', 'Middleton', 'be', 'throw', 'into', '\n', 'no', 'little', 'alarm', 'on', 'the', 'return', 'of', 'Sir', 'John', 'by', 'hear', '\n', 'that', 'she', 'be', 'very', 'soon', 'to', 'receive', 'a', 'visit', 'from', 'two', 'girl', '\n', 'whom', 'she', 'have', 'never', 'see', 'in', 'her', 'life', 'and', 'of', 'whose', 'elegance', '\n', 'whose', 'tolerable', 'gentility', 'even', 'she', 'could', 'have', 'no', 'proof', '\n', 'for', 'the', 'assurance', 'of', 'her', 'husband', 'and', 'mother', 'on', 'that', 'subject', '\n', 'go', 'for', 'nothing', 'at', 'all', ' ', 'their', 'be', 'her', 'relation', 'too', '\n', 'make', 'it', 'so', 'much', 'the', 'bad', 'and', 'Mrs', 'Jenningss', 'attempt', '\n', 'at', 'consolation', 'be', 'therefore', 'unfortunately', 'found', '\n', 'when', 'she', 'advise', 'her', 'daughter', 'not', 'to', 'care', 'about', 'their', 'be', '\n', 'so', 'fashionable', 'because', 'they', 'be', 'all', 'cousin', 'and', 'must', 'put', '\n', 'up', 'with', 'one', 'another', ' ', 'as', 'it', 'be', 'impossible', 'however', 'now', 'to', '\n', 'prevent', 'their', 'come', 'Lady', 'Middleton', 'resign', 'herself', 'to', 'the', '\n', 'idea', 'of', 'it', 'with', 'all', 'the', 'philosophy', 'of', 'a', 'wellbred', 'woman', '\n', 'content', 'herself', 'with', 'merely', 'give', 'her', 'husband', 'a', 'gentle', '\n', 'reprimand', 'on', 'the', 'subject', 'five', 'or', 'six', 'time', 'every', 'day', '\n\n', 'the', 'young', 'lady', 'arrive', 'their', 'appearance', 'be', 'by', '\n', 'no', 'mean', 'ungenteel', 'or', 'unfashionable', ' ', 'their', 'dress', 'be', '\n', 'very', 'smart', 'their', 'manner', 'very', 'civil', 'they', 'be', 'delight', '\n', 'with', 'the', 'house', 'and', 'in', 'rapture', 'with', 'the', 'furniture', '\n', 'and', 'they', 'happen', 'to', 'be', 'so', 'doatingly', 'fond', 'of', 'child', '\n', 'that', 'Lady', 'Middletons', 'good', 'opinion', 'be', 'engage', 'in', 'their', '\n', 'favour', 'before', 'they', 'have', 'be', 'an', 'hour', 'at', 'the', 'Park', '\n', 'she', 'declare', 'they', 'to', 'be', 'very', 'agreeable', 'girl', 'indeed', '\n', 'which', 'for', 'her', 'ladyship', 'be', 'enthusiastic', 'admiration', '\n', 'Sir', 'Johns', 'confidence', 'in', 'his', 'own', 'judgment', 'rise', 'with', 'this', '\n', 'animate', 'praise', 'and', 'he', 'set', 'off', 'directly', 'for', 'the', 'cottage', '\n', 'to', 'tell', 'the', 'Miss', 'Dashwoods', 'of', 'the', 'Miss', 'Steeles', 'arrival', '\n', 'and', 'to', 'assure', 'they', 'of', 'their', 'be', 'the', 'sweet', 'girl', '\n', 'in', 'the', 'world', ' ', 'from', 'such', 'commendation', 'as', 'this', 'however', '\n', 'there', 'be', 'not', 'much', 'to', 'be', 'learn', 'Elinor', 'well', 'know', '\n', 'that', 'the', 'sweet', 'girl', 'in', 'the', 'world', 'be', 'to', 'be', 'meet', '\n', 'with', 'in', 'every', 'part', 'of', 'England', 'under', 'every', 'possible', '\n', 'variation', 'of', 'form', 'face', 'temper', 'and', 'understanding', '\n', 'Sir', 'John', 'want', 'the', 'whole', 'family', 'to', 'walk', 'to', 'the', 'Park', 'directly', '\n', 'and', 'look', 'at', 'his', 'guest', ' ', 'Benevolent', 'philanthropic', 'man', ' ', 'it', '\n', 'be', 'painful', 'to', 'he', 'even', 'to', 'keep', 'a', 'third', 'cousin', 'to', 'himself', '\n\n', 'do', 'come', 'now', 'say', 'hepray', 'comeyou', 'must', 'comei', '\n', 'declare', 'you', 'shall', 'comeYou', 'can', 'not', 'think', 'how', 'you', 'will', '\n', 'like', 'they', ' ', 'Lucy', 'be', 'monstrous', 'pretty', 'and', 'so', 'good', 'humour', '\n', 'and', 'agreeable', ' ', 'the', 'child', 'be', 'all', 'hang', 'about', 'she', 'already', '\n', 'as', 'if', 'she', 'be', 'an', 'old', 'acquaintance', ' ', 'and', 'they', 'both', 'long', '\n', 'to', 'see', 'you', 'of', 'all', 'thing', 'for', 'they', 'have', 'hear', 'at', 'Exeter', '\n', 'that', 'you', 'be', 'the', 'most', 'beautiful', 'creature', 'in', 'the', 'world', '\n', 'and', 'I', 'have', 'tell', 'they', 'it', 'be', 'all', 'very', 'true', 'and', 'a', 'great', '\n', 'deal', 'more', ' ', 'you', 'will', 'be', 'delighted', 'with', 'they', 'I', 'be', 'sure', '\n', 'they', 'have', 'bring', 'the', 'whole', 'coach', 'full', 'of', 'plaything', '\n', 'for', 'the', 'child', ' ', 'how', 'can', 'you', 'be', 'so', 'cross', 'as', 'not', 'to', 'come', '\n', 'why', 'they', 'be', 'your', 'cousin', 'you', 'know', 'after', 'a', 'fashion', '\n', 'you', 'be', 'my', 'cousin', 'and', 'they', 'be', 'my', 'wife', 'so', 'you', 'must', '\n', 'be', 'relate', '\n\n', 'but', 'Sir', 'John', 'could', 'not', 'prevail', ' ', 'he', 'could', 'only', 'obtain', '\n', 'a', 'promise', 'of', 'their', 'call', 'at', 'the', 'Park', 'within', 'a', 'day', 'or', 'two', '\n', 'and', 'then', 'leave', 'they', 'in', 'amazement', 'at', 'their', 'indifference', '\n', 'to', 'walk', 'home', 'and', 'boast', 'anew', 'of', 'their', 'attraction', 'to', 'the', '\n', 'Miss', 'Steeles', 'as', 'he', 'have', 'be', 'already', 'boast', 'of', 'the', 'Miss', '\n', 'Steeles', 'to', 'they', '\n\n', 'when', 'their', 'promise', 'visit', 'to', 'the', 'Park', 'and', 'consequent', '\n', 'introduction', 'to', 'these', 'young', 'lady', 'take', 'place', 'they', 'find', '\n', 'in', 'the', 'appearance', 'of', 'the', 'eld', 'who', 'be', 'nearly', 'thirty', '\n', 'with', 'a', 'very', 'plain', 'and', 'not', 'a', 'sensible', 'face', 'nothing', 'to', 'admire', '\n', 'but', 'in', 'the', 'other', 'who', 'be', 'not', 'more', 'than', 'two', 'or', 'three', '\n', 'and', 'twenty', 'they', 'acknowledge', 'considerable', 'beauty', 'her', '\n', 'feature', 'be', 'pretty', 'and', 'she', 'have', 'a', 'sharp', 'quick', 'eye', '\n', 'and', 'a', 'smartness', 'of', 'air', 'which', 'though', 'it', 'do', 'not', 'give', '\n', 'actual', 'elegance', 'or', 'grace', 'give', 'distinction', 'to', 'her', 'person', '\n', 'their', 'manner', 'be', 'particularly', 'civil', 'and', 'Elinor', 'soon', '\n', 'allow', 'they', 'credit', 'for', 'some', 'kind', 'of', 'sense', 'when', 'she', '\n', 'see', 'with', 'what', 'constant', 'and', 'judicious', 'attention', 'they', '\n', 'be', 'make', 'themselves', 'agreeable', 'to', 'Lady', 'Middleton', '\n', 'with', 'her', 'child', 'they', 'be', 'in', 'continual', 'rapture', '\n', 'extoll', 'their', 'beauty', 'court', 'their', 'notice', 'and', 'humour', '\n', 'their', 'whim', 'and', 'such', 'of', 'their', 'time', 'as', 'could', 'be', 'spare', 'from', '\n', 'the', 'importunate', 'demand', 'which', 'this', 'politeness', 'make', 'on', 'it', '\n', 'be', 'spend', 'in', 'admiration', 'of', 'whatever', 'her', 'ladyship', 'be', 'do', '\n', 'if', 'she', 'happen', 'to', 'be', 'do', 'any', 'thing', 'or', 'in', 'take', 'pattern', '\n', 'of', 'some', 'elegant', 'new', 'dress', 'in', 'which', 'her', 'appearance', '\n', 'the', 'day', 'before', 'have', 'throw', 'they', 'into', 'uncease', 'delight', '\n', 'fortunately', 'for', 'those', 'who', 'pay', 'their', 'court', 'through', '\n', 'such', 'foible', 'a', 'fond', 'mother', 'though', 'in', 'pursuit', 'of', 'praise', '\n', 'for', 'her', 'child', 'the', 'most', 'rapacious', 'of', 'human', 'being', '\n', 'be', 'likewise', 'the', 'most', 'credulous', 'her', 'demand', 'be', 'exorbitant', '\n', 'but', 'she', 'will', 'swallow', 'any', 'thing', 'and', 'the', 'excessive', '\n', 'affection', 'and', 'endurance', 'of', 'the', 'Miss', 'Steeles', 'towards', '\n', 'her', 'offspring', 'be', 'view', 'therefore', 'by', 'Lady', 'Middleton', '\n', 'without', 'the', 'small', 'surprise', 'or', 'distrust', ' ', 'she', 'see', 'with', '\n', 'maternal', 'complacency', 'all', 'the', 'impertinent', 'encroachment', '\n', 'and', 'mischievous', 'trick', 'to', 'which', 'her', 'cousin', 'submit', '\n', 'she', 'see', 'their', 'sash', 'untie', 'their', 'hair', 'pull', 'about', '\n', 'their', 'ear', 'their', 'workbag', 'search', 'and', 'their', 'knife', '\n', 'and', 'scissor', 'steal', 'away', 'and', 'feel', 'no', 'doubt', 'of', 'its', 'be', '\n', 'a', 'reciprocal', 'enjoyment', ' ', 'it', 'suggest', 'no', 'other', 'surprise', '\n', 'than', 'that', 'Elinor', 'and', 'Marianne', 'should', 'sit', 'so', 'composedly', 'by', '\n', 'without', 'claim', 'a', 'share', 'in', 'what', 'be', 'pass', '\n\n', 'John', 'be', 'in', 'such', 'spirit', 'today', 'say', 'she', 'on', 'his', '\n', 'take', 'Miss', 'Steeless', 'pocket', 'handkerchief', 'and', 'throw', '\n', 'it', 'out', 'of', 'windowHe', 'be', 'full', 'of', 'monkey', 'trick', '\n\n', 'and', 'soon', 'afterwards', 'on', 'the', 'second', 'boy', 'violently', '\n', 'pinch', 'one', 'of', 'the', 'same', 'ladys', 'finger', 'she', 'fondly', 'observe', '\n', 'how', 'playful', 'William', 'be', '\n\n', 'and', 'here', 'be', 'my', 'sweet', 'little', 'Annamaria', 'she', 'add', '\n', 'tenderly', 'caress', 'a', 'little', 'girl', 'of', 'three', 'year', 'old', '\n', 'who', 'have', 'not', 'make', 'a', 'noise', 'for', 'the', 'last', 'two', 'minute', '\n', 'and', 'she', 'be', 'always', 'so', 'gentle', 'and', 'quietNever', 'be', 'there', '\n', 'such', 'a', 'quiet', 'little', 'thing', '\n\n', 'but', 'unfortunately', 'in', 'bestow', 'these', 'embrace', '\n', 'a', 'pin', 'in', 'her', 'ladyship', 'head', 'dress', 'slightly', 'scratch', '\n', 'the', 'child', 'neck', 'produce', 'from', 'this', 'pattern', 'of', 'gentleness', '\n', 'such', 'violent', 'scream', 'as', 'could', 'hardly', 'be', 'outdo', 'by', 'any', '\n', 'creature', 'professedly', 'noisy', ' ', 'the', 'mother', 'consternation', '\n', 'be', 'excessive', 'but', 'it', 'could', 'not', 'surpass', 'the', 'alarm', 'of', 'the', '\n', 'Miss', 'Steeles', 'and', 'every', 'thing', 'be', 'do', 'by', 'all', 'three', '\n', 'in', 'so', 'critical', 'an', 'emergency', 'which', 'affection', 'could', 'suggest', '\n', 'as', 'likely', 'to', 'assuage', 'the', 'agony', 'of', 'the', 'little', 'sufferer', '\n', 'she', 'be', 'seat', 'in', 'her', 'mother', 'lap', 'cover', 'with', 'kiss', '\n', 'her', 'wound', 'bathe', 'with', 'lavenderwater', 'by', 'one', 'of', 'the', '\n', 'Miss', 'Steeles', 'who', 'be', 'on', 'her', 'knee', 'to', 'attend', 'she', '\n', 'and', 'her', 'mouth', 'stuff', 'with', 'sugar', 'plum', 'by', 'the', 'other', '\n', 'with', 'such', 'a', 'reward', 'for', 'her', 'tear', 'the', 'child', 'be', 'too', 'wise', '\n', 'to', 'cease', 'cry', ' ', 'she', 'still', 'scream', 'and', 'sob', 'lustily', '\n', 'kick', 'her', 'two', 'brother', 'for', 'offer', 'to', 'touch', 'she', 'and', 'all', '\n', 'their', 'united', 'soothing', 'be', 'ineffectual', 'till', 'Lady', 'Middleton', '\n', 'luckily', 'remember', 'that', 'in', 'a', 'scene', 'of', 'similar', 'distress', '\n', 'last', 'week', 'some', 'apricot', 'marmalade', 'have', 'be', 'successfully', '\n', 'apply', 'for', 'a', 'bruise', 'temple', 'the', 'same', 'remedy', 'be', 'eagerly', '\n', 'propose', 'for', 'this', 'unfortunate', 'scratch', 'and', 'a', 'slight', '\n', 'intermission', 'of', 'scream', 'in', 'the', 'young', 'lady', 'on', 'hear', 'it', '\n', 'give', 'they', 'reason', 'to', 'hope', 'that', 'it', 'would', 'not', 'be', 'reject', '\n', 'she', 'be', 'carry', 'out', 'of', 'the', 'room', 'therefore', 'in', 'her', '\n', 'mother', 'arm', 'in', 'quest', 'of', 'this', 'medicine', 'and', 'as', 'the', '\n', 'two', 'boy', 'choose', 'to', 'follow', 'though', 'earnestly', 'entreat', '\n', 'by', 'their', 'mother', 'to', 'stay', 'behind', 'the', 'four', 'young', 'lady', '\n', 'be', 'leave', 'in', 'a', 'quietness', 'which', 'the', 'room', 'have', 'not', 'know', 'for', '\n', 'many', 'hour', '\n\n', 'poor', 'little', 'creature', 'say', 'Miss', 'Steele', 'as', 'soon', '\n', 'as', 'they', 'be', 'go', ' ', 'it', 'might', 'have', 'be', 'a', 'very', 'sad', 'accident', '\n\n', 'yet', 'I', 'hardly', 'know', 'how', 'cry', 'Marianne', 'unless', 'it', '\n', 'have', 'be', 'under', 'totally', 'different', 'circumstance', '\n', 'but', 'this', 'be', 'the', 'usual', 'way', 'of', 'heighten', 'alarm', 'where', 'there', '\n', 'be', 'nothing', 'to', 'be', 'alarm', 'at', 'in', 'reality', '\n\n', 'what', 'a', 'sweet', 'woman', 'Lady', 'Middleton', 'be', 'say', 'Lucy', 'Steele', '\n\n', 'Marianne', 'be', 'silent', 'it', 'be', 'impossible', 'for', 'she', 'to', 'say', '\n', 'what', 'she', 'do', 'not', 'feel', 'however', 'trivial', 'the', 'occasion', '\n', 'and', 'upon', 'Elinor', 'therefore', 'the', 'whole', 'task', 'of', 'tell', 'lie', '\n', 'when', 'politeness', 'require', 'it', 'always', 'fall', ' ', 'she', 'do', 'she', '\n', 'good', 'when', 'thus', 'call', 'on', 'by', 'speak', 'of', 'Lady', 'Middleton', '\n', 'with', 'more', 'warmth', 'than', 'she', 'feel', 'though', 'with', 'far', 'less', 'than', '\n', 'Miss', 'Lucy', '\n\n', 'and', 'Sir', 'John', 'too', 'cry', 'the', 'eld', 'sister', '\n', 'what', 'a', 'charming', 'man', 'he', 'be', '\n\n', 'here', 'too', 'Miss', 'Dashwoods', 'commendation', 'be', 'only', '\n', 'simple', 'and', 'just', 'come', 'in', 'without', 'any', 'eclat', ' ', 'she', 'merely', '\n', 'observe', 'that', 'he', 'be', 'perfectly', 'good', 'humour', 'and', 'friendly', '\n\n', 'and', 'what', 'a', 'charming', 'little', 'family', 'they', 'have', ' ', 'I', '\n', 'never', 'see', 'such', 'fine', 'child', 'in', 'my', 'lifei', 'declare', 'I', '\n', 'quite', 'doat', 'upon', 'they', 'already', 'and', 'indeed', 'I', 'be', 'always', '\n', 'distractedly', 'fond', 'of', 'child', '\n\n', 'I', 'should', 'guess', 'so', 'say', 'Elinor', 'with', 'a', 'smile', '\n', 'from', 'what', 'I', 'have', 'witness', 'this', 'morning', '\n\n', 'I', 'have', 'a', 'notion', 'say', 'Lucy', 'you', 'think', 'the', 'little', '\n', 'Middletons', 'rather', 'too', 'much', 'indulged', 'perhaps', 'they', 'may', 'be', 'the', '\n', 'outside', 'of', 'enough', 'but', 'it', 'be', 'so', 'natural', 'in', 'Lady', 'Middleton', '\n', 'and', 'for', 'my', 'part', 'I', 'love', 'to', 'see', 'child', 'full', 'of', 'life', '\n', 'and', 'spirit', 'I', 'can', 'not', 'bear', 'they', 'if', 'they', 'be', 'tame', 'and', 'quiet', '\n\n', 'I', 'confess', 'reply', 'Elinor', 'that', 'while', 'I', 'be', 'at', '\n', 'Barton', 'Park', 'I', 'never', 'think', 'of', 'tame', 'and', 'quiet', 'child', '\n', 'with', 'any', 'abhorrence', '\n\n', 'a', 'short', 'pause', 'succeed', 'this', 'speech', 'which', 'be', 'first', '\n', 'break', 'by', 'Miss', 'Steele', 'who', 'seem', 'very', 'much', 'dispose', '\n', 'for', 'conversation', 'and', 'who', 'now', 'say', 'rather', 'abruptly', '\n', 'and', 'how', 'do', 'you', 'like', 'Devonshire', 'Miss', 'Dashwood', ' ', 'I', 'suppose', '\n', 'you', 'be', 'very', 'sorry', 'to', 'leave', 'Sussex', '\n\n', 'in', 'some', 'surprise', 'at', 'the', 'familiarity', 'of', 'this', 'question', '\n', 'or', 'at', 'least', 'of', 'the', 'manner', 'in', 'which', 'it', 'be', 'speak', '\n', 'Elinor', 'reply', 'that', 'she', 'be', '\n\n', 'Norland', 'be', 'a', 'prodigious', 'beautiful', 'place', 'be', 'not', 'it', '\n', 'add', 'Miss', 'Steele', '\n\n', 'we', 'have', 'hear', 'Sir', 'John', 'admire', 'it', 'excessively', '\n', 'say', 'Lucy', 'who', 'seem', 'to', 'think', 'some', 'apology', 'necessary', '\n', 'for', 'the', 'freedom', 'of', 'her', 'sister', '\n\n', 'I', 'think', 'every', 'one', 'must', 'admire', 'it', 'reply', 'Elinor', '\n', 'who', 'ever', 'see', 'the', 'place', 'though', 'it', 'be', 'not', 'to', 'be', 'suppose', '\n', 'that', 'any', 'one', 'can', 'estimate', 'its', 'beauty', 'as', 'we', 'do', '\n\n', 'and', 'have', 'you', 'a', 'great', 'many', 'smart', 'beaux', 'there', ' ', 'I', '\n', 'suppose', 'you', 'have', 'not', 'so', 'many', 'in', 'this', 'part', 'of', 'the', 'world', '\n', 'for', 'my', 'part', 'I', 'think', 'they', 'be', 'a', 'vast', 'addition', 'always', '\n\n', 'but', 'why', 'should', 'you', 'think', 'say', 'Lucy', 'look', 'ashamed', '\n', 'of', 'her', 'sister', 'that', 'there', 'be', 'not', 'as', 'many', 'genteel', 'young', '\n', 'man', 'in', 'Devonshire', 'as', 'Sussex', '\n\n', 'Nay', 'my', 'dear', 'I', 'm', 'sure', 'I', 'do', 'not', 'pretend', 'to', 'say', 'that', 'there', '\n', 'ant', ' ', 'I', 'm', 'sure', 'there', 's', 'a', 'vast', 'many', 'smart', 'beaux', 'in', 'Exeter', '\n', 'but', 'you', 'know', 'how', 'could', 'I', 'tell', 'what', 'smart', 'beaux', 'there', '\n', 'might', 'be', 'about', 'Norland', 'and', 'I', 'be', 'only', 'afraid', 'the', 'Miss', '\n', 'Dashwoods', 'might', 'find', 'it', 'dull', 'at', 'Barton', 'if', 'they', 'have', 'not', '\n', 'so', 'many', 'as', 'they', 'use', 'to', 'have', ' ', 'but', 'perhaps', 'you', 'young', 'lady', '\n', 'may', 'not', 'care', 'about', 'the', 'beaux', 'and', 'have', 'as', 'lief', 'be', 'without', '\n', 'they', 'as', 'with', 'they', ' ', 'for', 'my', 'part', 'I', 'think', 'they', 'be', 'vastly', '\n', 'agreeable', 'provide', 'they', 'dress', 'smart', 'and', 'behave', 'civil', '\n', 'but', 'I', 'can', 'not', 'bear', 'to', 'see', 'they', 'dirty', 'and', 'nasty', ' ', 'now', 'there', 's', '\n', 'Mr', 'Rose', 'at', 'Exeter', 'a', 'prodigious', 'smart', 'young', 'man', '\n', 'quite', 'a', 'beau', 'clerk', 'to', 'Mr', 'Simpson', 'you', 'know', 'and', 'yet', 'if', 'you', '\n', 'do', 'but', 'meet', 'he', 'of', 'a', 'morning', 'he', 'be', 'not', 'fit', 'to', 'be', 'see', '\n', 'I', 'suppose', 'your', 'brother', 'be', 'quite', 'a', 'beau', 'Miss', 'Dashwood', '\n', 'before', 'he', 'marry', 'as', 'he', 'be', 'so', 'rich', '\n\n', 'upon', 'my', 'word', 'reply', 'Elinor', 'I', 'can', 'not', 'tell', 'you', '\n', 'for', 'I', 'do', 'not', 'perfectly', 'comprehend', 'the', 'meaning', 'of', 'the', 'word', '\n', 'but', 'this', 'I', 'can', 'say', 'that', 'if', 'he', 'ever', 'be', 'a', 'beau', 'before', '\n', 'he', 'marry', 'he', 'be', 'one', 'still', 'for', 'there', 'be', 'not', 'the', 'small', '\n', 'alteration', 'in', 'he', '\n\n', 'oh', 'dear', 'one', 'never', 'think', 'of', 'married', 'men', 'be', '\n', 'beauxthey', 'have', 'something', 'else', 'to', 'do', '\n\n', 'Lord', 'Anne', 'cry', 'her', 'sister', 'you', 'can', 'talk', 'of', '\n', 'nothing', 'but', 'beauxyou', 'will', 'make', 'Miss', 'Dashwood', 'believe', 'you', '\n', 'think', 'of', 'nothing', 'else', 'and', 'then', 'to', 'turn', 'the', 'discourse', '\n', 'she', 'begin', 'admire', 'the', 'house', 'and', 'the', 'furniture', '\n\n', 'this', 'speciman', 'of', 'the', 'Miss', 'Steeles', 'be', 'enough', '\n', 'the', 'vulgar', 'freedom', 'and', 'folly', 'of', 'the', 'eld', 'leave', '\n', 'her', 'no', 'recommendation', 'and', 'as', 'Elinor', 'be', 'not', 'blind', '\n', 'by', 'the', 'beauty', 'or', 'the', 'shrewd', 'look', 'of', 'the', 'young', '\n', 'to', 'her', 'want', 'of', 'real', 'elegance', 'and', 'artlessness', 'she', 'leave', '\n', 'the', 'house', 'without', 'any', 'wish', 'of', 'know', 'they', 'well', '\n\n', 'not', 'so', 'the', 'Miss', 'SteelesThey', 'come', 'from', 'Exeter', 'well', '\n', 'provide', 'with', 'admiration', 'for', 'the', 'use', 'of', 'Sir', 'John', 'Middleton', '\n', 'his', 'family', 'and', 'all', 'his', 'relation', 'and', 'no', 'niggardly', '\n', 'proportion', 'be', 'now', 'deal', 'out', 'to', 'his', 'fair', 'cousin', 'whom', 'they', '\n', 'declare', 'to', 'be', 'the', 'most', 'beautiful', 'elegant', 'accomplish', '\n', 'and', 'agreeable', 'girl', 'they', 'have', 'ever', 'beheld', 'and', 'with', 'whom', '\n', 'they', 'be', 'particularly', 'anxious', 'to', 'be', 'well', 'acquaint', '\n', 'and', 'to', 'be', 'well', 'acquaint', 'therefore', 'Elinor', 'soon', 'find', '\n', 'be', 'their', 'inevitable', 'lot', 'for', 'as', 'Sir', 'John', 'be', 'entirely', '\n', 'on', 'the', 'side', 'of', 'the', 'Miss', 'Steeles', 'their', 'party', 'would', 'be', '\n', 'too', 'strong', 'for', 'opposition', 'and', 'that', 'kind', 'of', 'intimacy', '\n', 'must', 'be', 'submit', 'to', 'which', 'consist', 'of', 'sit', 'an', 'hour', '\n', 'or', 'two', 'together', 'in', 'the', 'same', 'room', 'almost', 'every', 'day', '\n', 'Sir', 'John', 'could', 'do', 'no', 'more', 'but', 'he', 'do', 'not', 'know', 'that', 'any', '\n', 'more', 'be', 'require', 'to', 'be', 'together', 'be', 'in', 'his', 'opinion', '\n', 'to', 'be', 'intimate', 'and', 'while', 'his', 'continual', 'scheme', 'for', 'their', '\n', 'meeting', 'be', 'effectual', 'he', 'have', 'not', 'a', 'doubt', 'of', 'their', 'be', '\n', 'establish', 'friend', '\n\n', 'to', 'do', 'he', 'justice', 'he', 'do', 'every', 'thing', 'in', 'his', 'power', '\n', 'to', 'promote', 'their', 'unreserve', 'by', 'make', 'the', 'Miss', 'Steeles', '\n', 'acquaint', 'with', 'whatever', 'he', 'know', 'or', 'suppose', 'of', 'his', 'cousin', '\n', 'situation', 'in', 'the', 'most', 'delicate', 'particularsand', 'Elinor', '\n', 'have', 'not', 'see', 'they', 'more', 'than', 'twice', 'before', 'the', 'eld', 'of', '\n', 'they', 'wish', 'her', 'joy', 'on', 'her', 'sister', 'having', 'be', 'so', 'lucky', '\n', 'as', 'to', 'make', 'a', 'conquest', 'of', 'a', 'very', 'smart', 'beau', 'since', 'she', '\n', 'come', 'to', 'Barton', '\n\n', 'Twill', 'be', 'a', 'fine', 'thing', 'to', 'have', 'her', 'marry', 'so', 'young', '\n', 'to', 'be', 'sure', 'say', 'she', 'and', 'I', 'hear', 'he', 'be', 'quite', 'a', 'beau', '\n', 'and', 'prodigious', 'handsome', ' ', 'and', 'I', 'hope', 'you', 'may', 'have', 'as', 'good', '\n', 'luck', 'yourself', 'soonbut', 'perhaps', 'you', 'may', 'have', 'a', 'friend', '\n', 'in', 'the', 'corner', 'already', '\n\n', 'Elinor', 'could', 'not', 'suppose', 'that', 'Sir', 'John', 'would', 'be', 'more', '\n', 'nice', 'in', 'proclaim', 'his', 'suspicion', 'of', 'her', 'regard', 'for', 'Edward', '\n', 'than', 'he', 'have', 'be', 'with', 'respect', 'to', 'Marianne', 'indeed', 'it', 'be', '\n', 'rather', 'his', 'favourite', 'joke', 'of', 'the', 'two', 'as', 'be', 'somewhat', '\n', 'new', 'and', 'more', 'conjectural', 'and', 'since', 'Edwards', 'visit', '\n', 'they', 'have', 'never', 'dine', 'together', 'without', 'his', 'drinking', 'to', 'her', '\n', 'good', 'affection', 'with', 'so', 'much', 'significancy', 'and', 'so', 'many', 'nod', '\n', 'and', 'wink', 'as', 'to', 'excite', 'general', 'attention', ' ', 'the', 'letter', 'F', '\n', 'have', 'be', 'likewise', 'invariably', 'bring', 'forward', 'and', 'find', '\n', 'productive', 'of', 'such', 'countless', 'joke', 'that', 'its', 'character', '\n', 'as', 'the', 'witty', 'letter', 'in', 'the', 'alphabet', 'have', 'be', 'long', '\n', 'establish', 'with', 'Elinor', '\n\n', 'the', 'Miss', 'Steeles', 'as', 'she', 'expect', 'have', 'now', 'all', 'the', '\n', 'benefit', 'of', 'these', 'joke', 'and', 'in', 'the', 'eld', 'of', 'they', 'they', '\n', 'raise', 'a', 'curiosity', 'to', 'know', 'the', 'name', 'of', 'the', 'gentleman', '\n', 'allude', 'to', 'which', 'though', 'often', 'impertinently', 'express', '\n', 'be', 'perfectly', 'of', 'a', 'piece', 'with', 'her', 'general', 'inquisitiveness', '\n', 'into', 'the', 'concern', 'of', 'their', 'family', ' ', 'but', 'Sir', 'John', 'do', 'not', '\n', 'sport', 'long', 'with', 'the', 'curiosity', 'which', 'he', 'delight', 'to', 'raise', '\n', 'for', 'he', 'have', 'at', 'least', 'as', 'much', 'pleasure', 'in', 'tell', 'the', 'name', '\n', 'as', 'Miss', 'Steele', 'have', 'in', 'hear', 'it', '\n\n', 'his', 'name', 'be', 'Ferrars', 'say', 'he', 'in', 'a', 'very', 'audible', 'whisper', '\n', 'but', 'pray', 'do', 'not', 'tell', 'it', 'for', 'its', 'a', 'great', 'secret', '\n\n', 'ferrar', 'repeat', 'Miss', 'Steele', 'Mr', 'Ferrars', 'be', '\n', 'the', 'happy', 'man', 'be', 'he', 'what', 'your', 'sisterinlaw', 'brother', '\n', 'Miss', 'Dashwood', 'a', 'very', 'agreeable', 'young', 'man', 'to', 'be', 'sure', '\n', 'I', 'know', 'he', 'very', 'well', '\n\n', 'how', 'can', 'you', 'say', 'so', 'Anne', 'cry', 'Lucy', 'who', 'generally', '\n', 'make', 'an', 'amendment', 'to', 'all', 'her', 'sister', 'assertion', '\n', 'though', 'we', 'have', 'see', 'he', 'once', 'or', 'twice', 'at', 'my', 'uncle', 'it', '\n', 'be', 'rather', 'too', 'much', 'to', 'pretend', 'to', 'know', 'he', 'very', 'well', '\n\n', 'Elinor', 'hear', 'all', 'this', 'with', 'attention', 'and', 'surprise', '\n', 'and', 'who', 'be', 'this', 'uncle', ' ', 'where', 'do', 'he', 'live', ' ', 'how', 'come', '\n', 'they', 'acquaint', ' ', 'she', 'wish', 'very', 'much', 'to', 'have', 'the', 'subject', '\n', 'continue', 'though', 'she', 'do', 'not', 'chuse', 'to', 'join', 'in', 'it', 'herself', '\n', 'but', 'nothing', 'more', 'of', 'it', 'be', 'say', 'and', 'for', 'the', 'first', 'time', '\n', 'in', 'her', 'life', 'she', 'think', 'Mrs', 'Jennings', 'deficient', 'either', '\n', 'in', 'curiosity', 'after', 'petty', 'information', 'or', 'in', 'a', 'disposition', '\n', 'to', 'communicate', 'it', ' ', 'the', 'manner', 'in', 'which', 'Miss', 'Steele', 'have', '\n', 'speak', 'of', 'Edward', 'increase', 'her', 'curiosity', 'for', 'it', 'strike', '\n', 'she', 'as', 'be', 'rather', 'illnatured', 'and', 'suggest', 'the', 'suspicion', '\n', 'of', 'that', 'ladys', 'know', 'or', 'fancy', 'herself', 'to', 'know', 'something', '\n', 'to', 'his', 'disadvantageBut', 'her', 'curiosity', 'be', 'unavaile', '\n', 'for', 'no', 'farther', 'notice', 'be', 'take', 'of', 'Mr', 'Ferrarss', 'name', 'by', '\n', 'Miss', 'Steele', 'when', 'allude', 'to', 'or', 'even', 'openly', 'mention', 'by', 'Sir', '\n', 'John', '\n\n\n\n', 'CHAPTER', '22', '\n\n\n', 'Marianne', 'who', 'have', 'never', 'much', 'toleration', 'for', 'any', '\n', 'thing', 'like', 'impertinence', 'vulgarity', 'inferiority', 'of', 'part', '\n', 'or', 'even', 'difference', 'of', 'taste', 'from', 'herself', 'be', 'at', '\n', 'this', 'time', 'particularly', 'illdispose', 'from', 'the', 'state', '\n', 'of', 'her', 'spirit', 'to', 'be', 'pleased', 'with', 'the', 'Miss', 'Steeles', '\n', 'or', 'to', 'encourage', 'their', 'advance', 'and', 'to', 'the', 'invariable', '\n', 'coldness', 'of', 'her', 'behaviour', 'towards', 'they', 'which', 'check', 'every', '\n', 'endeavour', 'at', 'intimacy', 'on', 'their', 'side', 'Elinor', 'principally', '\n', 'attribute', 'that', 'preference', 'of', 'herself', 'which', 'soon', 'become', '\n', 'evident', 'in', 'the', 'manner', 'of', 'both', 'but', 'especially', 'of', 'Lucy', '\n', 'who', 'miss', 'no', 'opportunity', 'of', 'engage', 'she', 'in', 'conversation', '\n', 'or', 'of', 'strive', 'to', 'improve', 'their', 'acquaintance', 'by', 'an', 'easy', '\n', 'and', 'frank', 'communication', 'of', 'her', 'sentiment', '\n\n', 'Lucy', 'be', 'naturally', 'clever', 'her', 'remark', 'be', 'often', '\n', 'just', 'and', 'amusing', 'and', 'as', 'a', 'companion', 'for', 'half', 'an', 'hour', '\n', 'Elinor', 'frequently', 'find', 'her', 'agreeable', 'but', 'her', 'power', '\n', 'have', 'receive', 'no', 'aid', 'from', 'education', 'she', 'be', 'ignorant', '\n', 'and', 'illiterate', 'and', 'her', 'deficiency', 'of', 'all', 'mental', 'improvement', '\n', 'her', 'want', 'of', 'information', 'in', 'the', 'most', 'common', 'particular', '\n', 'could', 'not', 'be', 'conceal', 'from', 'Miss', 'Dashwood', 'in', 'spite', 'of', 'her', '\n', 'constant', 'endeavour', 'to', 'appear', 'to', 'advantage', ' ', 'Elinor', 'see', '\n', 'and', 'pity', 'she', 'for', 'the', 'neglect', 'of', 'ability', 'which', 'education', '\n', 'might', 'have', 'render', 'so', 'respectable', 'but', 'she', 'see', 'with', 'less', '\n', 'tenderness', 'of', 'feel', 'the', 'thorough', 'want', 'of', 'delicacy', '\n', 'of', 'rectitude', 'and', 'integrity', 'of', 'mind', 'which', 'her', 'attention', '\n', 'her', 'assiduity', 'her', 'flattery', 'at', 'the', 'Park', 'betray', '\n', 'and', 'she', 'could', 'have', 'no', 'lasting', 'satisfaction', 'in', 'the', 'company', '\n', 'of', 'a', 'person', 'who', 'join', 'insincerity', 'with', 'ignorance', '\n', 'whose', 'want', 'of', 'instruction', 'prevent', 'their', 'meeting', '\n', 'in', 'conversation', 'on', 'term', 'of', 'equality', 'and', 'whose', 'conduct', '\n', 'toward', 'other', 'make', 'every', 'shew', 'of', 'attention', 'and', 'deference', '\n', 'towards', 'herself', 'perfectly', 'valueless', '\n\n', 'you', 'will', 'think', 'my', 'question', 'an', 'odd', 'one', 'I', 'dare', 'say', '\n', 'say', 'Lucy', 'to', 'her', 'one', 'day', 'as', 'they', 'be', 'walk', 'together', '\n', 'from', 'the', 'park', 'to', 'the', 'cottagebut', 'pray', 'be', 'you', '\n', 'personally', 'acquaint', 'with', 'your', 'sisterinlaw', 'mother', '\n', 'Mrs', 'Ferrars', '\n\n', 'Elinor', 'do', 'think', 'the', 'question', 'a', 'very', 'odd', 'one', '\n', 'and', 'her', 'countenance', 'express', 'it', 'as', 'she', 'answer', 'that', 'she', '\n', 'have', 'never', 'see', 'Mrs', 'Ferrars', '\n\n', 'indeed', 'reply', 'Lucy', 'I', 'wonder', 'at', 'that', 'for', 'I', '\n', 'think', 'you', 'must', 'have', 'see', 'she', 'at', 'Norland', 'sometimes', '\n', 'then', 'perhaps', 'you', 'can', 'not', 'tell', 'I', 'what', 'sort', 'of', 'a', 'woman', '\n', 'she', 'be', '\n\n', 'no', 'return', 'Elinor', 'cautious', 'of', 'give', 'her', 'real', '\n', 'opinion', 'of', 'Edwards', 'mother', 'and', 'not', 'very', 'desirous', '\n', 'of', 'satisfy', 'what', 'seem', 'impertinent', 'curiosity', '\n', 'I', 'know', 'nothing', 'of', 'she', '\n\n', 'I', 'be', 'sure', 'you', 'think', 'I', 'very', 'strange', 'for', 'enquire', '\n', 'about', 'she', 'in', 'such', 'a', 'way', 'say', 'Lucy', 'eye', 'Elinor', 'attentively', '\n', 'as', 'she', 'speak', 'but', 'perhaps', 'there', 'may', 'be', 'reasonsi', 'wish', '\n', 'I', 'might', 'venture', 'but', 'however', 'I', 'hope', 'you', 'will', 'do', 'I', 'the', 'justice', '\n', 'of', 'believe', 'that', 'I', 'do', 'not', 'mean', 'to', 'be', 'impertinent', '\n\n', 'Elinor', 'make', 'she', 'a', 'civil', 'reply', 'and', 'they', 'walk', 'on', '\n', 'for', 'a', 'few', 'minute', 'in', 'silence', ' ', 'it', 'be', 'break', 'by', 'Lucy', '\n', 'who', 'renew', 'the', 'subject', 'again', 'by', 'say', 'with', 'some', '\n', 'hesitation', '\n\n', 'I', 'can', 'not', 'bear', 'to', 'have', 'you', 'think', 'I', 'impertinently', 'curious', '\n', 'I', 'be', 'sure', 'I', 'would', 'rather', 'do', 'any', 'thing', 'in', 'the', 'world', 'than', 'be', '\n', 'think', 'so', 'by', 'a', 'person', 'whose', 'good', 'opinion', 'be', 'so', 'well', 'worth', '\n', 'have', 'as', 'your', ' ', 'and', 'I', 'be', 'sure', 'I', 'should', 'not', 'have', 'the', 'small', '\n', 'fear', 'of', 'trust', 'you', 'indeed', 'I', 'should', 'be', 'very', 'glad', 'of', 'your', '\n', 'advice', 'how', 'to', 'manage', 'in', 'such', 'and', 'uncomfortable', 'situation', '\n', 'as', 'I', 'be', 'but', 'however', 'there', 'be', 'no', 'occasion', 'to', 'trouble', 'you', '\n', 'I', 'be', 'sorry', 'you', 'do', 'not', 'happen', 'to', 'know', 'Mrs', 'Ferrars', '\n\n', 'I', 'be', 'sorry', 'I', 'do', 'not', 'say', 'Elinor', 'in', 'great', 'astonishment', '\n', 'if', 'it', 'could', 'be', 'of', 'any', 'use', 'to', 'you', 'to', 'know', 'my', 'opinion', 'of', 'she', '\n', 'but', 'really', 'I', 'never', 'understand', 'that', 'you', 'be', 'at', 'all', 'connect', '\n', 'with', 'that', 'family', 'and', 'therefore', 'I', 'be', 'a', 'little', 'surprised', '\n', 'I', 'confess', 'at', 'so', 'serious', 'an', 'inquiry', 'into', 'her', 'character', '\n\n', 'I', 'dare', 'say', 'you', 'be', 'and', 'I', 'be', 'sure', 'I', 'do', 'not', 'at', 'all', '\n', 'wonder', 'at', 'it', ' ', 'but', 'if', 'I', 'dare', 'tell', 'you', 'all', 'you', 'would', 'not', 'be', '\n', 'so', 'much', 'surprised', ' ', 'Mrs', 'Ferrars', 'be', 'certainly', 'nothing', 'to', 'I', '\n', 'at', 'presentbut', 'the', 'time', 'may', 'comehow', 'soon', 'it', 'will', 'come', '\n', 'must', 'depend', 'upon', 'herselfwhen', 'we', 'may', 'be', 'very', 'intimately', '\n', 'connect', '\n\n', 'she', 'look', 'down', 'as', 'she', 'say', 'this', 'amiably', 'bashful', '\n', 'with', 'only', 'one', 'side', 'glance', 'at', 'her', 'companion', 'to', 'observe', 'its', '\n', 'effect', 'on', 'her', '\n\n', 'good', 'heaven', 'cry', 'Elinor', 'what', 'do', 'you', 'mean', '\n', 'be', 'you', 'acquaint', 'with', 'Mr', 'Robert', 'Ferrars', ' ', 'can', 'you', 'be', '\n', 'and', 'she', 'do', 'not', 'feel', 'much', 'delighted', 'with', 'the', 'idea', 'of', 'such', '\n', 'a', 'sisterinlaw', '\n\n', 'no', 'reply', 'Lucy', 'not', 'to', 'Mr', 'ROBERT', 'FerrarsI', '\n', 'never', 'see', 'he', 'in', 'my', 'life', 'but', 'fix', 'her', 'eye', 'upon', 'Elinor', '\n', 'to', 'his', 'eld', 'brother', '\n\n', 'what', 'feel', 'Elinor', 'at', 'that', 'moment', 'Astonishment', '\n', 'that', 'would', 'have', 'be', 'as', 'painful', 'as', 'it', 'be', 'strong', 'have', 'not', '\n', 'an', 'immediate', 'disbelief', 'of', 'the', 'assertion', 'attend', 'it', '\n', 'she', 'turn', 'towards', 'Lucy', 'in', 'silent', 'amazement', 'unable', 'to', 'divine', '\n', 'the', 'reason', 'or', 'object', 'of', 'such', 'a', 'declaration', 'and', 'though', '\n', 'her', 'complexion', 'varied', 'she', 'stand', 'firm', 'in', 'incredulity', '\n', 'and', 'feel', 'in', 'no', 'danger', 'of', 'an', 'hysterical', 'fit', 'or', 'a', 'swoon', '\n\n', 'you', 'may', 'well', 'be', 'surprised', 'continued', 'Lucy', '\n', 'for', 'to', 'be', 'sure', 'you', 'could', 'have', 'have', 'no', 'idea', 'of', 'it', 'before', '\n', 'for', 'I', 'dare', 'say', 'he', 'never', 'drop', 'the', 'small', 'hint', 'of', 'it', '\n', 'to', 'you', 'or', 'any', 'of', 'your', 'family', 'because', 'it', 'be', 'always', 'mean', '\n', 'to', 'be', 'a', 'great', 'secret', 'and', 'I', 'be', 'sure', 'have', 'be', 'faithfully', '\n', 'keep', 'so', 'by', 'I', 'to', 'this', 'hour', ' ', 'not', 'a', 'soul', 'of', 'all', 'my', 'relation', '\n', 'know', 'of', 'it', 'but', 'Anne', 'and', 'I', 'never', 'should', 'have', 'mention', '\n', 'it', 'to', 'you', 'if', 'I', 'have', 'not', 'feel', 'the', 'great', 'dependence', '\n', 'in', 'the', 'world', 'upon', 'your', 'secrecy', 'and', 'I', 'really', 'think', 'my', '\n', 'behaviour', 'in', 'ask', 'so', 'many', 'question', 'about', 'Mrs', 'Ferrars', '\n', 'must', 'seem', 'so', 'odd', 'that', 'it', 'ought', 'to', 'be', 'explain', '\n', 'and', 'I', 'do', 'not', 'think', 'Mr', 'Ferrars', 'can', 'be', 'displease', '\n', 'when', 'he', 'know', 'I', 'have', 'trust', 'you', 'because', 'I', 'know', 'he', 'have', '\n', 'the', 'high', 'opinion', 'in', 'the', 'world', 'of', 'all', 'your', 'family', '\n', 'and', 'look', 'upon', 'yourself', 'and', 'the', 'other', 'Miss', 'Dashwoods', 'quite', '\n', 'as', 'his', 'own', 'sistersshe', 'pause', '\n\n', 'Elinor', 'for', 'a', 'few', 'moment', 'remain', 'silent', '\n', 'her', 'astonishment', 'at', 'what', 'she', 'hear', 'be', 'at', 'first', 'too', '\n', 'great', 'for', 'word', 'but', 'at', 'length', 'force', 'herself', 'to', 'speak', '\n', 'and', 'to', 'speak', 'cautiously', 'she', 'say', 'with', 'calmness', 'of', 'manner', '\n', 'which', 'tolerably', 'well', 'conceal', 'her', 'surprise', 'and', 'solicitude', '\n', 'may', 'I', 'ask', 'if', 'your', 'engagement', 'be', 'of', 'long', 'stand', '\n\n', 'we', 'have', 'be', 'engage', 'these', 'four', 'year', '\n\n', 'four', 'year', '\n\n', 'yes', '\n\n', 'Elinor', 'though', 'greatly', 'shock', 'still', 'feel', 'unable', '\n', 'to', 'believe', 'it', '\n\n', 'I', 'do', 'not', 'know', 'say', 'she', 'that', 'you', 'be', 'even', '\n', 'acquaint', 'till', 'the', 'other', 'day', '\n\n', 'our', 'acquaintance', 'however', 'be', 'of', 'many', 'year', 'date', '\n', 'he', 'be', 'under', 'my', 'uncle', 'care', 'you', 'know', 'a', 'considerable', 'while', '\n\n', 'your', 'uncle', '\n\n', 'yes', 'Mr', 'Pratt', ' ', 'do', 'you', 'never', 'hear', 'he', 'talk', '\n', 'of', 'Mr', 'Pratt', '\n\n', 'I', 'think', 'I', 'have', 'reply', 'Elinor', 'with', 'an', 'exertion', '\n', 'of', 'spirit', 'which', 'increase', 'with', 'her', 'increase', 'of', 'emotion', '\n\n', 'he', 'be', 'four', 'year', 'with', 'my', 'uncle', 'who', 'live', 'at', 'Longstaple', '\n', 'near', 'Plymouth', ' ', 'it', 'be', 'there', 'our', 'acquaintance', 'begin', '\n', 'for', 'my', 'sister', 'and', 'I', 'be', 'often', 'stay', 'with', 'my', 'uncle', '\n', 'and', 'it', 'be', 'there', 'our', 'engagement', 'be', 'form', 'though', 'not', 'till', '\n', 'a', 'year', 'after', 'he', 'have', 'quit', 'as', 'a', 'pupil', 'but', 'he', 'be', 'almost', '\n', 'always', 'with', 'we', 'afterwards', ' ', 'I', 'be', 'very', 'unwilling', 'to', 'enter', '\n', 'into', 'it', 'as', 'you', 'may', 'imagine', 'without', 'the', 'knowledge', 'and', '\n', 'approbation', 'of', 'his', 'mother', 'but', 'I', 'be', 'too', 'young', 'and', 'love', '\n', 'he', 'too', 'well', 'to', 'be', 'so', 'prudent', 'as', 'I', 'ought', 'to', 'have', 'be', '\n', 'though', 'you', 'do', 'not', 'know', 'he', 'so', 'well', 'as', 'I', 'Miss', 'Dashwood', '\n', 'you', 'must', 'have', 'see', 'enough', 'of', 'he', 'to', 'be', 'sensible', 'he', 'be', '\n', 'very', 'capable', 'of', 'make', 'a', 'woman', 'sincerely', 'attach', 'to', 'he', '\n\n', 'certainly', 'answer', 'Elinor', 'without', 'know', 'what', '\n', 'she', 'say', 'but', 'after', 'a', 'moment', 'reflection', 'she', 'add', '\n', 'with', 'revive', 'security', 'of', 'Edwards', 'honour', 'and', 'love', '\n', 'and', 'her', 'companion', 'falsehoodengage', 'to', 'Mr', 'Edward', '\n', 'ferrarsi', 'confess', 'myself', 'so', 'totally', 'surprised', 'at', '\n', 'what', 'you', 'tell', 'I', 'that', 'reallyI', 'beg', 'your', 'pardon', '\n', 'but', 'surely', 'there', 'must', 'be', 'some', 'mistake', 'of', 'person', 'or', 'name', '\n', 'we', 'can', 'not', 'mean', 'the', 'same', 'Mr', 'Ferrars', '\n\n', 'we', 'can', 'mean', 'no', 'other', 'cry', 'Lucy', 'smile', ' ', 'Mr', 'Edward', '\n', 'ferrar', 'the', 'eld', 'son', 'of', 'Mrs', 'Ferrars', 'of', 'Park', 'Street', '\n', 'and', 'brother', 'of', 'your', 'sisterinlaw', 'Mrs', 'John', 'Dashwood', '\n', 'be', 'the', 'person', 'I', 'mean', 'you', 'must', 'allow', 'that', 'I', 'be', 'not', 'likely', '\n', 'to', 'be', 'deceive', 'as', 'to', 'the', 'name', 'of', 'the', 'man', 'on', 'who', 'all', 'my', 'happiness', '\n', 'depend', '\n\n', 'it', 'be', 'strange', 'reply', 'Elinor', 'in', 'a', 'most', 'painful', 'perplexity', '\n', 'that', 'I', 'should', 'never', 'have', 'hear', 'he', 'even', 'mention', 'your', 'name', '\n\n', 'no', 'consider', 'our', 'situation', 'it', 'be', 'not', 'strange', '\n', 'our', 'first', 'care', 'have', 'be', 'to', 'keep', 'the', 'matter', 'secret', '\n', 'you', 'know', 'nothing', 'of', 'I', 'or', 'my', 'family', 'and', 'therefore', '\n', 'there', 'could', 'be', 'no', 'occasion', 'for', 'ever', 'mention', 'my', 'name', '\n', 'to', 'you', 'and', 'as', 'he', 'be', 'always', 'particularly', 'afraid', 'of', 'his', '\n', 'sister', 'suspect', 'any', 'thing', 'that', 'be', 'reason', 'enough', '\n', 'for', 'his', 'not', 'mention', 'it', '\n\n', 'she', 'be', 'silentelinor', 'security', 'sink', 'but', 'her', '\n', 'selfcommand', 'do', 'not', 'sink', 'with', 'it', '\n\n', 'four', 'year', 'you', 'have', 'be', 'engage', 'say', 'she', '\n', 'with', 'a', 'firm', 'voice', '\n\n', 'yes', 'and', 'heaven', 'know', 'how', 'much', 'long', 'we', 'may', 'have', '\n', 'to', 'wait', ' ', 'Poor', 'Edward', ' ', 'it', 'put', 'he', 'quite', 'out', 'of', 'heart', '\n', 'then', 'take', 'a', 'small', 'miniature', 'from', 'her', 'pocket', 'she', 'add', '\n', 'to', 'prevent', 'the', 'possibility', 'of', 'mistake', 'be', 'so', 'good', 'as', 'to', 'look', '\n', 'at', 'this', 'face', ' ', 'it', 'do', 'not', 'do', 'he', 'justice', 'to', 'be', 'sure', '\n', 'but', 'yet', 'I', 'think', 'you', 'can', 'not', 'be', 'deceive', 'as', 'to', 'the', 'person', '\n', 'it', 'be', 'draw', 'fori', 'have', 'have', 'it', 'above', 'these', 'three', 'year', '\n\n', 'she', 'put', 'it', 'into', 'her', 'hand', 'as', 'she', 'speak', 'and', 'when', 'Elinor', '\n', 'see', 'the', 'painting', 'whatever', 'other', 'doubt', 'her', 'fear', 'of', 'a', '\n', 'too', 'hasty', 'decision', 'or', 'her', 'wish', 'of', 'detect', 'falsehood', '\n', 'might', 'suffer', 'to', 'linger', 'in', 'her', 'mind', 'she', 'could', 'have', 'none', 'of', '\n', 'its', 'be', 'Edwards', 'face', ' ', 'she', 'return', 'it', 'almost', 'instantly', '\n', 'acknowledge', 'the', 'likeness', '\n\n', 'I', 'have', 'never', 'be', 'able', 'continued', 'Lucy', 'to', 'give', '\n', 'he', 'my', 'picture', 'in', 'return', 'which', 'I', 'be', 'very', 'much', 'vex', 'at', '\n', 'for', 'he', 'have', 'be', 'always', 'so', 'anxious', 'to', 'get', 'it', ' ', 'but', 'I', 'be', '\n', 'determined', 'to', 'set', 'for', 'it', 'the', 'very', 'first', 'opportunity', '\n\n', 'you', 'be', 'quite', 'in', 'the', 'right', 'reply', 'Elinor', 'calmly', '\n', 'they', 'then', 'proceed', 'a', 'few', 'pace', 'in', 'silence', ' ', 'Lucy', 'speak', 'first', '\n\n', 'I', 'be', 'sure', 'say', 'she', 'I', 'have', 'no', 'doubt', 'in', 'the', 'world', '\n', 'of', 'your', 'faithfully', 'keep', 'this', 'secret', 'because', 'you', 'must', '\n', 'know', 'of', 'what', 'importance', 'it', 'be', 'to', 'we', 'not', 'to', 'have', 'it', 'reach', '\n', 'his', 'mother', 'for', 'she', 'would', 'never', 'approve', 'of', 'it', 'I', 'dare', 'say', '\n', 'I', 'shall', 'have', 'no', 'fortune', 'and', 'I', 'fancy', 'she', 'be', 'an', 'exceed', '\n', 'proud', 'woman', '\n\n', 'I', 'certainly', 'do', 'not', 'seek', 'your', 'confidence', 'say', 'Elinor', '\n', 'but', 'you', 'do', 'I', 'no', 'more', 'than', 'justice', 'in', 'imagine', 'that', 'I', '\n', 'may', 'be', 'depend', 'on', ' ', 'your', 'secret', 'be', 'safe', 'with', 'I', '\n', 'but', 'pardon', 'I', 'if', 'I', 'express', 'some', 'surprise', 'at', 'so', 'unnecessary', '\n', 'a', 'communication', ' ', 'you', 'must', 'at', 'least', 'have', 'feel', 'that', 'my', '\n', 'be', 'acquaint', 'with', 'it', 'could', 'not', 'add', 'to', 'its', 'safety', '\n\n', 'as', 'she', 'say', 'this', 'she', 'look', 'earnestly', 'at', 'Lucy', '\n', 'hope', 'to', 'discover', 'something', 'in', 'her', 'countenance', 'perhaps', 'the', '\n', 'falsehood', 'of', 'the', 'great', 'part', 'of', 'what', 'she', 'have', 'be', 'say', '\n', 'but', 'Lucys', 'countenance', 'suffer', 'no', 'change', '\n\n', 'I', 'be', 'afraid', 'you', 'would', 'think', 'I', 'be', 'take', 'a', 'great', '\n', 'liberty', 'with', 'you', 'say', 'she', 'in', 'tell', 'you', 'all', 'this', '\n', 'I', 'have', 'not', 'know', 'you', 'long', 'to', 'be', 'sure', 'personally', 'at', 'least', '\n', 'but', 'I', 'have', 'know', 'you', 'and', 'all', 'your', 'family', 'by', 'description', '\n', 'a', 'great', 'while', 'and', 'as', 'soon', 'as', 'I', 'see', 'you', 'I', 'feel', 'almost', 'as', 'if', '\n', 'you', 'be', 'an', 'old', 'acquaintance', ' ', 'besides', 'in', 'the', 'present', 'case', '\n', 'I', 'really', 'think', 'some', 'explanation', 'be', 'due', 'to', 'you', 'after', 'my', '\n', 'make', 'such', 'particular', 'inquiry', 'about', 'Edwards', 'mother', '\n', 'and', 'I', 'be', 'so', 'unfortunate', 'that', 'I', 'have', 'not', 'a', 'creature', 'whose', '\n', 'advice', 'I', 'can', 'ask', ' ', 'Anne', 'be', 'the', 'only', 'person', 'that', 'know', 'of', 'it', '\n', 'and', 'she', 'have', 'no', 'judgment', 'at', 'all', 'indeed', 'she', 'do', 'I', 'a', 'great', '\n', 'deal', 'more', 'harm', 'than', 'good', 'for', 'I', 'be', 'in', 'constant', 'fear', 'of', 'her', '\n', 'betray', 'I', ' ', 'she', 'do', 'not', 'know', 'how', 'to', 'hold', 'her', 'tongue', '\n', 'as', 'you', 'must', 'perceive', 'and', 'I', 'be', 'sure', 'I', 'be', 'in', 'the', 'great', '\n', 'fright', 'in', 'the', 'world', 'tother', 'day', 'when', 'Edwards', 'name', 'be', '\n', 'mention', 'by', 'Sir', 'John', 'lest', 'she', 'should', 'out', 'with', 'it', 'all', '\n', 'you', 'can', 'not', 'think', 'how', 'much', 'I', 'go', 'through', 'in', 'my', 'mind', 'from', '\n', 'it', 'altogether', ' ', 'I', 'only', 'wonder', 'that', 'I', 'be', 'alive', 'after', 'what', '\n', 'I', 'have', 'suffer', 'for', 'Edwards', 'sake', 'these', 'last', 'four', 'year', '\n', 'every', 'thing', 'in', 'such', 'suspense', 'and', 'uncertainty', 'and', 'see', '\n', 'he', 'so', 'seldomwe', 'can', 'hardly', 'meet', 'above', 'twice', 'ayear', '\n', 'I', 'be', 'sure', 'I', 'wonder', 'my', 'heart', 'be', 'not', 'quite', 'break', '\n\n', 'here', 'she', 'take', 'out', 'her', 'handkerchief', 'but', 'Elinor', 'do', '\n', 'not', 'feel', 'very', 'compassionate', '\n\n', 'sometimes', 'continue', 'Lucy', 'after', 'wipe', 'her', 'eye', '\n', 'I', 'think', 'whether', 'it', 'would', 'not', 'be', 'well', 'for', 'we', 'both', '\n', 'to', 'break', 'off', 'the', 'matter', 'entirely', ' ', 'as', 'she', 'say', 'this', '\n', 'she', 'look', 'directly', 'at', 'her', 'companion', ' ', 'but', 'then', '\n', 'at', 'other', 'time', 'I', 'have', 'not', 'resolution', 'enough', 'for', 'it', '\n', 'I', 'can', 'not', 'bear', 'the', 'thought', 'of', 'make', 'he', 'so', 'miserable', '\n', 'as', 'I', 'know', 'the', 'very', 'mention', 'of', 'such', 'a', 'thing', 'would', 'do', '\n', 'and', 'on', 'my', 'own', 'account', 'tooso', 'dear', 'as', 'he', 'be', 'to', 'meI', 'do', 'not', '\n', 'think', 'I', 'could', 'be', 'equal', 'to', 'it', ' ', 'what', 'would', 'you', 'advise', '\n', 'I', 'to', 'do', 'in', 'such', 'a', 'case', 'Miss', 'Dashwood', ' ', 'what', 'would', 'you', '\n', 'do', 'yourself', '\n\n', 'Pardon', 'I', 'reply', 'Elinor', 'startle', 'by', 'the', 'question', '\n', 'but', 'I', 'can', 'give', 'you', 'no', 'advice', 'under', 'such', 'circumstance', '\n', 'your', 'own', 'judgment', 'must', 'direct', 'you', '\n\n', 'to', 'be', 'sure', 'continued', 'Lucy', 'after', 'a', 'few', 'minute', '\n', 'silence', 'on', 'both', 'side', 'his', 'mother', 'must', 'provide', 'for', 'he', '\n', 'sometime', 'or', 'other', 'but', 'poor', 'Edward', 'be', 'so', 'cast', 'down', 'by', 'it', '\n', 'do', 'you', 'not', 'think', 'he', 'dreadful', 'lowspirite', 'when', 'he', 'be', 'at', '\n', 'Barton', ' ', 'he', 'be', 'so', 'miserable', 'when', 'he', 'leave', 'we', 'at', 'Longstaple', '\n', 'to', 'go', 'to', 'you', 'that', 'I', 'be', 'afraid', 'you', 'would', 'think', 'he', 'quite', 'ill', '\n\n', 'do', 'he', 'come', 'from', 'your', 'uncle', 'then', 'when', 'he', 'visit', 'we', '\n\n', 'oh', 'yes', 'he', 'have', 'be', 'stay', 'a', 'fortnight', 'with', 'we', '\n', 'do', 'you', 'think', 'he', 'come', 'directly', 'from', 'town', '\n\n', 'no', 'reply', 'Elinor', 'most', 'feelingly', 'sensible', 'of', '\n', 'every', 'fresh', 'circumstance', 'in', 'favour', 'of', 'Lucys', 'veracity', '\n', 'I', 'remember', 'he', 'tell', 'we', 'that', 'he', 'have', 'be', 'stay', '\n', 'a', 'fortnight', 'with', 'some', 'friend', 'near', 'Plymouth', '\n', 'she', 'remember', 'too', 'her', 'own', 'surprise', 'at', 'the', 'time', '\n', 'at', 'his', 'mention', 'nothing', 'far', 'of', 'those', 'friend', '\n', 'at', 'his', 'total', 'silence', 'with', 'respect', 'even', 'to', 'their', 'name', '\n\n', 'do', 'not', 'you', 'think', 'he', 'sadly', 'out', 'of', 'spirit', '\n', 'repeat', 'Lucy', '\n\n', 'we', 'do', 'indeed', 'particularly', 'so', 'when', 'he', 'first', 'arrive', '\n\n', 'I', 'beg', 'he', 'to', 'exert', 'himself', 'for', 'fear', 'you', '\n', 'should', 'suspect', 'what', 'be', 'the', 'matter', 'but', 'it', 'make', 'he', '\n', 'so', 'melancholy', 'not', 'be', 'able', 'to', 'stay', 'more', 'than', 'a', '\n', 'fortnight', 'with', 'we', 'and', 'see', 'I', 'so', 'much', 'affected', '\n', 'Poor', 'fellowI', 'be', 'afraid', 'it', 'be', 'just', 'the', 'same', 'with', 'he', 'now', '\n', 'for', 'he', 'write', 'in', 'wretched', 'spirit', ' ', 'I', 'hear', 'from', 'he', 'just', '\n', 'before', 'I', 'leave', 'Exeter', 'take', 'a', 'letter', 'from', 'her', 'pocket', '\n', 'and', 'carelessly', 'show', 'the', 'direction', 'to', 'Elinor', '\n', 'you', 'know', 'his', 'hand', 'I', 'dare', 'say', 'a', 'charming', 'one', 'it', 'be', '\n', 'but', 'that', 'be', 'not', 'write', 'so', 'well', 'as', 'usualhe', 'be', 'tired', '\n', 'I', 'dare', 'say', 'for', 'he', 'have', 'just', 'fill', 'the', 'sheet', 'to', 'I', 'as', 'full', '\n', 'as', 'possible', '\n\n', 'Elinor', 'see', 'that', 'it', 'be', 'his', 'hand', 'and', 'she', 'could', 'doubt', '\n', 'no', 'long', ' ', 'this', 'picture', 'she', 'have', 'allow', 'herself', 'to', 'believe', '\n', 'might', 'have', 'be', 'accidentally', 'obtain', 'it', 'might', 'not', 'have', '\n', 'be', 'Edwards', 'gift', 'but', 'a', 'correspondence', 'between', 'they', '\n', 'by', 'letter', 'could', 'subsist', 'only', 'under', 'a', 'positive', 'engagement', '\n', 'could', 'be', 'authorise', 'by', 'nothing', 'else', 'for', 'a', 'few', 'moment', 'she', '\n', 'be', 'almost', 'overcomeher', 'heart', 'sink', 'within', 'she', 'and', 'she', 'could', '\n', 'hardly', 'stand', 'but', 'exertion', 'be', 'indispensably', 'necessary', '\n', 'and', 'she', 'struggle', 'so', 'resolutely', 'against', 'the', 'oppression', '\n', 'of', 'her', 'feeling', 'that', 'her', 'success', 'be', 'speedy', 'and', 'for', '\n', 'the', 'time', 'complete', '\n\n', 'writing', 'to', 'each', 'other', 'say', 'Lucy', 'return', 'the', '\n', 'letter', 'into', 'her', 'pocket', 'be', 'the', 'only', 'comfort', 'we', 'have', '\n', 'in', 'such', 'long', 'separation', ' ', 'yes', 'I', 'have', 'one', 'other', 'comfort', '\n', 'in', 'his', 'picture', 'but', 'poor', 'Edward', 'have', 'not', 'even', 'that', '\n', 'if', 'he', 'have', 'but', 'my', 'picture', 'he', 'say', 'he', 'should', 'be', 'easy', '\n', 'I', 'give', 'he', 'a', 'lock', 'of', 'my', 'hair', 'set', 'in', 'a', 'ring', 'when', 'he', 'be', 'at', '\n', 'Longstaple', 'last', 'and', 'that', 'be', 'some', 'comfort', 'to', 'he', 'he', 'say', '\n', 'but', 'not', 'equal', 'to', 'a', 'picture', ' ', 'perhaps', 'you', 'might', 'notice', '\n', 'the', 'ring', 'when', 'you', 'see', 'he', '\n\n', 'I', 'do', 'say', 'Elinor', 'with', 'a', 'composure', 'of', 'voice', '\n', 'under', 'which', 'be', 'conceal', 'an', 'emotion', 'and', 'distress', 'beyond', '\n', 'any', 'thing', 'she', 'have', 'ever', 'feel', 'before', ' ', 'she', 'be', 'mortify', '\n', 'shocked', 'confound', '\n\n', 'fortunately', 'for', 'she', 'they', 'have', 'now', 'reach', 'the', 'cottage', '\n', 'and', 'the', 'conversation', 'could', 'be', 'continue', 'no', 'far', '\n', 'after', 'sit', 'with', 'they', 'a', 'few', 'minute', 'the', 'Miss', 'Steeles', '\n', 'return', 'to', 'the', 'Park', 'and', 'Elinor', 'be', 'then', 'at', 'liberty', '\n', 'to', 'think', 'and', 'be', 'wretche', '\n\n\n\n\n\n', 'at', 'this', 'point', 'in', 'the', 'first', 'and', 'second', 'edition', 'volume', '1', 'end', '\n\n\n\n\n\n', 'chapter', '23', '\n\n\n', 'however', 'small', 'Elinors', 'general', 'dependence', 'on', '\n', 'Lucys', 'veracity', 'might', 'be', 'it', 'be', 'impossible', 'for', 'she', '\n', 'on', 'serious', 'reflection', 'to', 'suspect', 'it', 'in', 'the', 'present', 'case', '\n', 'where', 'no', 'temptation', 'could', 'be', 'answerable', 'to', 'the', 'folly', '\n', 'of', 'invent', 'a', 'falsehood', 'of', 'such', 'a', 'description', ' ', 'what', 'Lucy', '\n', 'have', 'assert', 'to', 'be', 'true', 'therefore', 'Elinor', 'could', 'not', '\n', 'dared', 'not', 'long', 'doubt', 'support', 'as', 'it', 'be', 'too', 'on', 'every', '\n', 'side', 'by', 'such', 'probability', 'and', 'proof', 'and', 'contradict', '\n', 'by', 'nothing', 'but', 'her', 'own', 'wish', ' ', 'their', 'opportunity', 'of', '\n', 'acquaintance', 'in', 'the', 'house', 'of', 'Mr', 'Pratt', 'be', 'a', 'foundation', '\n', 'for', 'the', 'rest', 'at', 'once', 'indisputable', 'and', 'alarming', 'and', 'Edwards', '\n', 'visit', 'near', 'Plymouth', 'his', 'melancholy', 'state', 'of', 'mind', '\n', 'his', 'dissatisfaction', 'at', 'his', 'own', 'prospect', 'his', 'uncertain', '\n', 'behaviour', 'towards', 'herself', 'the', 'intimate', 'knowledge', 'of', 'the', '\n', 'Miss', 'Steeles', 'as', 'to', 'Norland', 'and', 'their', 'family', 'connection', '\n', 'which', 'have', 'often', 'surprise', 'she', 'the', 'picture', 'the', 'letter', '\n', 'the', 'ring', 'form', 'altogether', 'such', 'a', 'body', 'of', 'evidence', '\n', 'as', 'overcame', 'every', 'fear', 'of', 'condemn', 'he', 'unfairly', '\n', 'and', 'establish', 'as', 'a', 'fact', 'which', 'no', 'partiality', 'could', '\n', 'set', 'aside', 'his', 'illtreatment', 'of', 'herselfher', 'resentment', '\n', 'of', 'such', 'behaviour', 'her', 'indignation', 'at', 'having', 'be', 'its', 'dupe', '\n', 'for', 'a', 'short', 'time', 'make', 'she', 'feel', 'only', 'for', 'herself', '\n', 'but', 'other', 'idea', 'other', 'consideration', 'soon', 'arise', '\n', 'have', 'Edward', 'be', 'intentionally', 'deceive', 'she', ' ', 'have', 'he', 'feign', '\n', 'a', 'regard', 'for', 'she', 'which', 'he', 'do', 'not', 'feel', ' ', 'be', 'his', 'engagement', '\n', 'to', 'Lucy', 'an', 'engagement', 'of', 'the', 'heart', ' ', 'no', 'whatever', 'it', 'might', '\n', 'once', 'have', 'be', 'she', 'could', 'not', 'believe', 'it', 'such', 'at', 'present', '\n', 'his', 'affection', 'be', 'all', 'her', 'own', ' ', 'she', 'could', 'not', 'be', 'deceive', '\n', 'in', 'that', ' ', 'her', 'mother', 'sister', 'Fanny', 'all', 'have', 'be', '\n', 'conscious', 'of', 'his', 'regard', 'for', 'she', 'at', 'Norland', 'it', 'be', 'not', '\n', 'an', 'illusion', 'of', 'her', 'own', 'vanity', ' ', 'he', 'certainly', 'love', 'she', '\n', 'what', 'a', 'softener', 'of', 'the', 'heart', 'be', 'this', 'persuasion', ' ', 'how', 'much', '\n', 'could', 'it', 'not', 'tempt', 'she', 'to', 'forgive', ' ', 'he', 'have', 'be', 'blamable', '\n', 'highly', 'blamable', 'in', 'remain', 'at', 'Norland', 'after', 'he', 'first', '\n', 'feel', 'her', 'influence', 'over', 'he', 'to', 'be', 'more', 'than', 'it', 'ought', '\n', 'to', 'be', ' ', 'in', 'that', 'he', 'could', 'not', 'be', 'defend', 'but', 'if', 'he', '\n', 'have', 'injure', 'she', 'how', 'much', 'more', 'have', 'he', 'injure', 'himself', '\n', 'if', 'her', 'case', 'be', 'pitiable', 'his', 'be', 'hopeless', '\n', 'his', 'imprudence', 'have', 'make', 'she', 'miserable', 'for', 'a', 'while', 'but', 'it', '\n', 'seem', 'to', 'have', 'deprive', 'himself', 'of', 'all', 'chance', 'of', 'ever', '\n', 'be', 'otherwise', ' ', 'she', 'might', 'in', 'time', 'regain', 'tranquillity', '\n', 'but', 'he', 'what', 'have', 'he', 'to', 'look', 'forward', 'to', ' ', 'could', 'he', '\n', 'ever', 'be', 'tolerably', 'happy', 'with', 'Lucy', 'Steele', 'could', 'he', '\n', 'be', 'his', 'affection', 'for', 'herself', 'out', 'of', 'the', 'question', '\n', 'with', 'his', 'integrity', 'his', 'delicacy', 'and', 'wellinforme', 'mind', '\n', 'be', 'satisfied', 'with', 'a', 'wife', 'like', 'herilliterate', 'artful', '\n', 'and', 'selfish', '\n\n', 'the', 'youthful', 'infatuation', 'of', 'nineteen', 'would', 'naturally', '\n', 'blind', 'he', 'to', 'every', 'thing', 'but', 'her', 'beauty', 'and', 'good', 'nature', '\n', 'but', 'the', 'four', 'succeed', 'yearsyear', 'which', 'if', 'rationally', '\n', 'spend', 'give', 'such', 'improvement', 'to', 'the', 'understanding', 'must', '\n', 'have', 'open', 'his', 'eye', 'to', 'her', 'defect', 'of', 'education', '\n', 'while', 'the', 'same', 'period', 'of', 'time', 'spend', 'on', 'her', 'side', '\n', 'in', 'inferior', 'society', 'and', 'more', 'frivolous', 'pursuit', '\n', 'have', 'perhaps', 'rob', 'she', 'of', 'that', 'simplicity', 'which', 'might', '\n', 'once', 'have', 'give', 'an', 'interesting', 'character', 'to', 'her', 'beauty', '\n\n', 'if', 'in', 'the', 'supposition', 'of', 'his', 'seeking', 'to', 'marry', 'herself', '\n', 'his', 'difficulty', 'from', 'his', 'mother', 'have', 'seem', 'great', '\n', 'how', 'much', 'great', 'be', 'they', 'now', 'likely', 'to', 'be', 'when', '\n', 'the', 'object', 'of', 'his', 'engagement', 'be', 'undoubtedly', 'inferior', '\n', 'in', 'connection', 'and', 'probably', 'inferior', 'in', 'fortune', 'to', 'herself', '\n', 'these', 'difficulty', 'indeed', 'with', 'a', 'heart', 'so', 'alienate', '\n', 'from', 'Lucy', 'might', 'not', 'press', 'very', 'hard', 'upon', 'his', 'patience', '\n', 'but', 'melancholy', 'be', 'the', 'state', 'of', 'the', 'person', 'by', 'whom', 'the', '\n', 'expectation', 'of', 'family', 'opposition', 'and', 'unkindness', 'could', '\n', 'be', 'feel', 'as', 'a', 'relief', '\n\n', 'as', 'these', 'consideration', 'occur', 'to', 'she', 'in', 'painful', '\n', 'succession', 'she', 'weep', 'for', 'he', 'more', 'than', 'for', 'herself', '\n', 'support', 'by', 'the', 'conviction', 'of', 'having', 'do', 'nothing', 'to', '\n', 'merit', 'her', 'present', 'unhappiness', 'and', 'console', 'by', 'the', 'belief', '\n', 'that', 'Edward', 'have', 'do', 'nothing', 'to', 'forfeit', 'her', 'esteem', '\n', 'she', 'think', 'she', 'could', 'even', 'now', 'under', 'the', 'first', 'smart', '\n', 'of', 'the', 'heavy', 'blow', 'command', 'herself', 'enough', 'to', 'guard', 'every', '\n', 'suspicion', 'of', 'the', 'truth', 'from', 'her', 'mother', 'and', 'sister', '\n', 'and', 'so', 'well', 'be', 'she', 'able', 'to', 'answer', 'her', 'own', 'expectation', '\n', 'that', 'when', 'she', 'join', 'they', 'at', 'dinner', 'only', 'two', 'hour', '\n', 'after', 'she', 'have', 'first', 'suffer', 'the', 'extinction', 'of', 'all', 'her', '\n', 'dear', 'hope', 'no', 'one', 'would', 'have', 'suppose', 'from', 'the', '\n', 'appearance', 'of', 'the', 'sister', 'that', 'Elinor', 'be', 'mourn', '\n', 'in', 'secret', 'over', 'obstacle', 'which', 'must', 'divide', 'she', 'for', 'ever', '\n', 'from', 'the', 'object', 'of', 'her', 'love', 'and', 'that', 'Marianne', 'be', '\n', 'internally', 'dwell', 'on', 'the', 'perfection', 'of', 'a', 'man', 'of', 'whose', '\n', 'whole', 'heart', 'she', 'feel', 'thoroughly', 'possess', 'and', 'whom', 'she', '\n', 'expect', 'to', 'see', 'in', 'every', 'carriage', 'which', 'drive', 'near', 'their', 'house', '\n\n', 'the', 'necessity', 'of', 'conceal', 'from', 'her', 'mother', 'and', '\n', 'Marianne', 'what', 'have', 'be', 'entrust', 'in', 'confidence', 'to', 'herself', '\n', 'though', 'it', 'oblige', 'she', 'to', 'uncease', 'exertion', 'be', 'no', '\n', 'aggravation', 'of', 'Elinors', 'distress', ' ', 'on', 'the', 'contrary', '\n', 'it', 'be', 'a', 'relief', 'to', 'she', 'to', 'be', 'spare', 'the', 'communication', '\n', 'of', 'what', 'would', 'give', 'such', 'affliction', 'to', 'they', 'and', 'to', 'be', '\n', 'save', 'likewise', 'from', 'hear', 'that', 'condemnation', 'of', 'Edward', '\n', 'which', 'would', 'probably', 'flow', 'from', 'the', 'excess', 'of', 'their', 'partial', '\n', 'affection', 'for', 'herself', 'and', 'which', 'be', 'more', 'than', 'she', 'feel', '\n', 'equal', 'to', 'support', '\n\n', 'from', 'their', 'counsel', 'or', 'their', 'conversation', 'she', 'know', '\n', 'she', 'could', 'receive', 'no', 'assistance', 'their', 'tenderness', 'and', '\n', 'sorrow', 'must', 'add', 'to', 'her', 'distress', 'while', 'her', 'selfcommand', '\n', 'would', 'neither', 'receive', 'encouragement', 'from', 'their', 'example', '\n', 'nor', 'from', 'their', 'praise', ' ', 'she', 'be', 'strong', 'alone', '\n', 'and', 'her', 'own', 'good', 'sense', 'so', 'well', 'support', 'she', 'that', 'her', '\n', 'firmness', 'be', 'as', 'unshaken', 'her', 'appearance', 'of', 'cheerfulness', '\n', 'as', 'invariable', 'as', 'with', 'regret', 'so', 'poignant', 'and', 'so', 'fresh', '\n', 'it', 'be', 'possible', 'for', 'they', 'to', 'be', '\n\n', 'much', 'as', 'she', 'have', 'suffer', 'from', 'her', 'first', 'conversation', '\n', 'with', 'Lucy', 'on', 'the', 'subject', 'she', 'soon', 'feel', 'an', 'earnest', 'wish', '\n', 'of', 'renew', 'it', 'and', 'this', 'for', 'more', 'reason', 'than', 'one', '\n', 'she', 'want', 'to', 'hear', 'many', 'particular', 'of', 'their', 'engagement', '\n', 'repeat', 'again', 'she', 'want', 'more', 'clearly', 'to', 'understand', '\n', 'what', 'Lucy', 'really', 'feel', 'for', 'Edward', 'whether', 'there', 'be', 'any', '\n', 'sincerity', 'in', 'her', 'declaration', 'of', 'tender', 'regard', 'for', 'he', '\n', 'and', 'she', 'particularly', 'want', 'to', 'convince', 'Lucy', 'by', 'her', '\n', 'readiness', 'to', 'enter', 'on', 'the', 'matter', 'again', 'and', 'her', 'calmness', '\n', 'in', 'converse', 'on', 'it', 'that', 'she', 'be', 'no', 'otherwise', 'interested', '\n', 'in', 'it', 'than', 'as', 'a', 'friend', 'which', 'she', 'very', 'much', 'fear', '\n', 'her', 'involuntary', 'agitation', 'in', 'their', 'morning', 'discourse', '\n', 'must', 'have', 'leave', 'at', 'least', 'doubtful', ' ', 'that', 'Lucy', 'be', 'dispose', '\n', 'to', 'be', 'jealous', 'of', 'she', 'appear', 'very', 'probable', 'it', 'be', 'plain', '\n', 'that', 'Edward', 'have', 'always', 'speak', 'highly', 'in', 'her', 'praise', '\n', 'not', 'merely', 'from', 'Lucys', 'assertion', 'but', 'from', 'her', 'venturing', '\n', 'to', 'trust', 'she', 'on', 'so', 'short', 'a', 'personal', 'acquaintance', '\n', 'with', 'a', 'secret', 'so', 'confessedly', 'and', 'evidently', 'important', '\n', 'and', 'even', 'Sir', 'Johns', 'joke', 'intelligence', 'must', 'have', 'have', '\n', 'some', 'weight', ' ', 'but', 'indeed', 'while', 'Elinor', 'remain', 'so', 'well', '\n', 'assure', 'within', 'herself', 'of', 'be', 'really', 'belove', 'by', 'Edward', '\n', 'it', 'require', 'no', 'other', 'consideration', 'of', 'probability', '\n', 'to', 'make', 'it', 'natural', 'that', 'Lucy', 'should', 'be', 'jealous', '\n', 'and', 'that', 'she', 'be', 'so', 'her', 'very', 'confidence', 'be', 'a', 'proof', '\n', 'what', 'other', 'reason', 'for', 'the', 'disclosure', 'of', 'the', 'affair', 'could', '\n', 'there', 'be', 'but', 'that', 'Elinor', 'might', 'be', 'inform', 'by', 'it', 'of', 'Lucys', '\n', 'superior', 'claim', 'on', 'Edward', 'and', 'be', 'teach', 'to', 'avoid', 'he', '\n', 'in', 'future', ' ', 'she', 'have', 'little', 'difficulty', 'in', 'understanding', 'thus', '\n', 'much', 'of', 'her', 'rival', 'intention', 'and', 'while', 'she', 'be', 'firmly', '\n', 'resolve', 'to', 'act', 'by', 'she', 'as', 'every', 'principle', 'of', 'honour', 'and', '\n', 'honesty', 'direct', 'to', 'combat', 'her', 'own', 'affection', 'for', 'Edward', '\n', 'and', 'to', 'see', 'he', 'as', 'little', 'as', 'possible', 'she', 'could', 'not', 'deny', '\n', 'herself', 'the', 'comfort', 'of', 'endeavour', 'to', 'convince', 'Lucy', '\n', 'that', 'her', 'heart', 'be', 'unwounde', ' ', 'and', 'as', 'she', 'could', 'now', 'have', '\n', 'nothing', 'more', 'painful', 'to', 'hear', 'on', 'the', 'subject', 'than', 'have', 'already', '\n', 'be', 'tell', 'she', 'do', 'not', 'mistrust', 'her', 'own', 'ability', 'of', 'go', '\n', 'through', 'a', 'repetition', 'of', 'particular', 'with', 'composure', '\n\n', 'but', 'it', 'be', 'not', 'immediately', 'that', 'an', 'opportunity', '\n', 'of', 'do', 'so', 'could', 'be', 'command', 'though', 'Lucy', 'be', 'as', 'well', '\n', 'dispose', 'as', 'herself', 'to', 'take', 'advantage', 'of', 'any', 'that', 'occur', '\n', 'for', 'the', 'weather', 'be', 'not', 'often', 'fine', 'enough', 'to', 'allow', '\n', 'of', 'their', 'join', 'in', 'a', 'walk', 'where', 'they', 'might', 'most', 'easily', '\n', 'separate', 'themselves', 'from', 'the', 'other', 'and', 'though', 'they', '\n', 'meet', 'at', 'least', 'every', 'other', 'evening', 'either', 'at', 'the', 'park', '\n', 'or', 'cottage', 'and', 'chiefly', 'at', 'the', 'former', 'they', 'could', '\n', 'not', 'be', 'suppose', 'to', 'meet', 'for', 'the', 'sake', 'of', 'conversation', '\n', 'such', 'a', 'thought', 'would', 'never', 'enter', 'either', 'Sir', 'John', 'or', 'Lady', '\n', 'Middletons', 'head', 'and', 'therefore', 'very', 'little', 'leisure', '\n', 'be', 'ever', 'give', 'for', 'a', 'general', 'chat', 'and', 'none', 'at', 'all', 'for', '\n', 'particular', 'discourse', ' ', 'they', 'meet', 'for', 'the', 'sake', 'of', 'eating', '\n', 'drink', 'and', 'laugh', 'together', 'play', 'at', 'card', '\n', 'or', 'consequence', 'or', 'any', 'other', 'game', 'that', 'be', 'sufficiently', 'noisy', '\n\n', 'one', 'or', 'two', 'meeting', 'of', 'this', 'kind', 'have', 'take', 'place', '\n', 'without', 'afford', 'Elinor', 'any', 'chance', 'of', 'engage', 'Lucy', '\n', 'in', 'private', 'when', 'Sir', 'John', 'call', 'at', 'the', 'cottage', 'one', 'morning', '\n', 'to', 'beg', 'in', 'the', 'name', 'of', 'charity', 'that', 'they', 'would', 'all', '\n', 'dine', 'with', 'Lady', 'Middleton', 'that', 'day', 'as', 'he', 'be', 'oblige', '\n', 'to', 'attend', 'the', 'club', 'at', 'Exeter', 'and', 'she', 'would', 'otherwise', 'be', '\n', 'quite', 'alone', 'except', 'her', 'mother', 'and', 'the', 'two', 'Miss', 'Steeles', '\n', 'Elinor', 'who', 'foresaw', 'a', 'fair', 'opening', 'for', 'the', 'point', 'she', '\n', 'have', 'in', 'view', 'in', 'such', 'a', 'party', 'as', 'this', 'be', 'likely', 'to', 'be', '\n', 'more', 'at', 'liberty', 'among', 'themselves', 'under', 'the', 'tranquil', '\n', 'and', 'wellbred', 'direction', 'of', 'Lady', 'Middleton', 'than', 'when', '\n', 'her', 'husband', 'unite', 'they', 'together', 'in', 'one', 'noisy', 'purpose', '\n', 'immediately', 'accept', 'the', 'invitation', 'Margaret', 'with', 'her', '\n', 'mother', 'permission', 'be', 'equally', 'compliant', 'and', 'Marianne', '\n', 'though', 'always', 'unwilling', 'to', 'join', 'any', 'of', 'their', 'party', '\n', 'be', 'persuade', 'by', 'her', 'mother', 'who', 'could', 'not', 'bear', 'to', 'have', 'her', '\n', 'seclude', 'herself', 'from', 'any', 'chance', 'of', 'amusement', 'to', 'go', 'likewise', '\n\n', 'the', 'young', 'lady', 'go', 'and', 'Lady', 'Middleton', 'be', 'happily', '\n', 'preserve', 'from', 'the', 'frightful', 'solitude', 'which', 'have', 'threaten', 'her', '\n', 'the', 'insipidity', 'of', 'the', 'meeting', 'be', 'exactly', 'such', 'as', 'Elinor', '\n', 'have', 'expect', 'it', 'produce', 'not', 'one', 'novelty', 'of', 'thought', '\n', 'or', 'expression', 'and', 'nothing', 'could', 'be', 'less', 'interesting', '\n', 'than', 'the', 'whole', 'of', 'their', 'discourse', 'both', 'in', 'the', 'dining', '\n', 'parlour', 'and', 'draw', 'room', 'to', 'the', 'latter', 'the', 'child', '\n', 'accompany', 'they', 'and', 'while', 'they', 'remain', 'there', 'she', 'be', '\n', 'too', 'well', 'convinced', 'of', 'the', 'impossibility', 'of', 'engage', 'Lucys', '\n', 'attention', 'to', 'attempt', 'it', ' ', 'they', 'quit', 'it', 'only', 'with', 'the', '\n', 'removal', 'of', 'the', 'teathing', ' ', 'the', 'cardtable', 'be', 'then', 'place', '\n', 'and', 'Elinor', 'begin', 'to', 'wonder', 'at', 'herself', 'for', 'having', 'ever', '\n', 'entertain', 'a', 'hope', 'of', 'find', 'time', 'for', 'conversation', '\n', 'at', 'the', 'park', ' ', 'they', 'all', 'rise', 'up', 'in', 'preparation', 'for', 'a', 'round', 'game', '\n\n', 'I', 'be', 'glad', 'say', 'Lady', 'Middleton', 'to', 'Lucy', '\n', 'you', 'be', 'not', 'go', 'to', 'finish', 'poor', 'little', 'Annamarias', '\n', 'basket', 'this', 'evening', 'for', 'I', 'be', 'sure', 'it', 'must', 'hurt', 'your', '\n', 'eye', 'to', 'work', 'filigree', 'by', 'candlelight', ' ', 'and', 'we', 'will', 'make', '\n', 'the', 'dear', 'little', 'love', 'some', 'amend', 'for', 'her', 'disappointment', '\n', 'tomorrow', 'and', 'then', 'I', 'hope', 'she', 'will', 'not', 'much', 'mind', 'it', '\n\n', 'this', 'hint', 'be', 'enough', 'Lucy', 'recollect', 'herself', 'instantly', '\n', 'and', 'reply', 'indeed', 'you', 'be', 'very', 'much', 'mistaken', '\n', 'Lady', 'Middleton', 'I', 'be', 'only', 'wait', 'to', 'know', 'whether', 'you', 'can', '\n', 'make', 'your', 'party', 'without', 'I', 'or', 'I', 'should', 'have', 'be', 'at', 'my', '\n', 'filigree', 'already', ' ', 'I', 'would', 'not', 'disappoint', 'the', 'little', 'angel', '\n', 'for', 'all', 'the', 'world', 'and', 'if', 'you', 'want', 'I', 'at', 'the', 'cardtable', 'now', '\n', 'I', 'be', 'resolve', 'to', 'finish', 'the', 'basket', 'after', 'supper', '\n\n', 'you', 'be', 'very', 'good', 'I', 'hope', 'it', 'will', 'not', 'hurt', 'your', 'eye', '\n', 'will', 'you', 'ring', 'the', 'bell', 'for', 'some', 'work', 'candle', '\n', 'my', 'poor', 'little', 'girl', 'would', 'be', 'sadly', 'disappoint', 'I', 'know', '\n', 'if', 'the', 'basket', 'be', 'not', 'finish', 'tomorrow', 'for', 'though', 'I', '\n', 'tell', 'she', 'it', 'certainly', 'would', 'not', 'I', 'be', 'sure', 'she', 'depend', '\n', 'upon', 'have', 'it', 'do', '\n\n', 'Lucy', 'directly', 'draw', 'her', 'work', 'table', 'near', 'she', '\n', 'and', 'reseat', 'herself', 'with', 'an', 'alacrity', 'and', 'cheerfulness', '\n', 'which', 'seem', 'to', 'infer', 'that', 'she', 'could', 'taste', 'no', 'great', '\n', 'delight', 'than', 'in', 'make', 'a', 'filigree', 'basket', 'for', 'a', 'spoilt', 'child', '\n\n', 'Lady', 'Middleton', 'propose', 'a', 'rubber', 'of', 'Casino', 'to', 'the', 'other', '\n', 'no', 'one', 'make', 'any', 'objection', 'but', 'Marianne', 'who', 'with', 'her', 'usual', '\n', 'inattention', 'to', 'the', 'form', 'of', 'general', 'civility', 'exclaim', '\n', 'your', 'ladyship', 'will', 'have', 'the', 'goodness', 'to', 'excuse', 'MEyou', '\n', 'know', 'I', 'det', 'card', ' ', 'I', 'shall', 'go', 'to', 'the', 'pianoforte', '\n', 'I', 'have', 'not', 'touch', 'it', 'since', 'it', 'be', 'tune', ' ', 'and', 'without', '\n', 'farth', 'ceremony', 'she', 'turn', 'away', 'and', 'walk', 'to', 'the', 'instrument', '\n\n', 'Lady', 'Middleton', 'look', 'as', 'if', 'she', 'thank', 'heaven', '\n', 'that', 'she', 'have', 'never', 'make', 'so', 'rude', 'a', 'speech', '\n\n', 'Marianne', 'can', 'never', 'keep', 'long', 'from', 'that', 'instrument', '\n', 'you', 'know', 'maam', 'say', 'Elinor', 'endeavour', 'to', 'smooth', '\n', 'away', 'the', 'offence', 'and', 'I', 'do', 'not', 'much', 'wonder', 'at', 'it', 'for', 'it', '\n', 'be', 'the', 'very', 'good', 'tone', 'pianoforte', 'I', 'ever', 'hear', '\n\n', 'the', 'remain', 'five', 'be', 'now', 'to', 'draw', 'their', 'card', '\n\n', 'perhaps', 'continue', 'Elinor', 'if', 'I', 'should', 'happen', '\n', 'to', 'cut', 'out', 'I', 'may', 'be', 'of', 'some', 'use', 'to', 'Miss', 'Lucy', 'Steele', '\n', 'in', 'roll', 'her', 'paper', 'for', 'she', 'and', 'there', 'be', 'so', 'much', 'still', '\n', 'to', 'be', 'do', 'to', 'the', 'basket', 'that', 'it', 'must', 'be', 'impossible', '\n', 'I', 'think', 'for', 'her', 'labour', 'singly', 'to', 'finish', 'it', 'this', 'evening', '\n', 'I', 'should', 'like', 'the', 'work', 'exceedingly', 'if', 'she', 'would', 'allow', '\n', 'I', 'a', 'share', 'in', 'it', '\n\n', 'indeed', 'I', 'shall', 'be', 'very', 'much', 'oblige', 'to', 'you', '\n', 'for', 'your', 'help', 'cry', 'Lucy', 'for', 'I', 'find', 'there', 'be', 'more', '\n', 'to', 'be', 'do', 'to', 'it', 'than', 'I', 'think', 'there', 'be', 'and', 'it', 'would', '\n', 'be', 'a', 'shocking', 'thing', 'to', 'disappoint', 'dear', 'Annamaria', 'after', 'all', '\n\n', 'oh', 'that', 'would', 'be', 'terrible', 'indeed', 'say', 'Miss', 'Steele', '\n', 'dear', 'little', 'soul', 'how', 'I', 'do', 'love', 'she', '\n\n', 'you', 'be', 'very', 'kind', 'say', 'Lady', 'Middleton', 'to', 'Elinor', '\n', 'and', 'as', 'you', 'really', 'like', 'the', 'work', 'perhaps', 'you', 'will', 'be', '\n', 'as', 'well', 'pleased', 'not', 'to', 'cut', 'in', 'till', 'another', 'rubber', '\n', 'or', 'will', 'you', 'take', 'your', 'chance', 'now', '\n\n', 'Elinor', 'joyfully', 'profit', 'by', 'the', 'first', 'of', 'these', 'proposal', '\n', 'and', 'thus', 'by', 'a', 'little', 'of', 'that', 'address', 'which', 'Marianne', '\n', 'could', 'never', 'condescend', 'to', 'practise', 'gain', 'her', 'own', 'end', '\n', 'and', 'please', 'Lady', 'Middleton', 'at', 'the', 'same', 'time', ' ', 'Lucy', 'make', 'room', '\n', 'for', 'she', 'with', 'ready', 'attention', 'and', 'the', 'two', 'fair', 'rival', 'be', '\n', 'thus', 'seat', 'side', 'by', 'side', 'at', 'the', 'same', 'table', 'and', 'with', 'the', '\n', 'utmost', 'harmony', 'engage', 'in', 'forward', 'the', 'same', 'work', '\n', 'the', 'pianoforte', 'at', 'which', 'Marianne', 'wrap', 'up', 'in', 'her', 'own', '\n', 'music', 'and', 'her', 'own', 'thought', 'have', 'by', 'this', 'time', 'forget', '\n', 'that', 'any', 'body', 'be', 'in', 'the', 'room', 'besides', 'herself', 'be', 'luckily', '\n', 'so', 'near', 'they', 'that', 'Miss', 'Dashwood', 'now', 'judge', 'she', 'might', 'safely', '\n', 'under', 'the', 'shelter', 'of', 'its', 'noise', 'introduce', 'the', 'interesting', '\n', 'subject', 'without', 'any', 'risk', 'of', 'be', 'hear', 'at', 'the', 'cardtable', '\n\n\n\n', 'chapter', '24', '\n\n\n', 'in', 'a', 'firm', 'though', 'cautious', 'tone', 'Elinor', 'thus', 'begin', '\n\n', 'I', 'should', 'be', 'undeserve', 'of', 'the', 'confidence', 'you', 'have', '\n', 'honour', 'I', 'with', 'if', 'I', 'feel', 'no', 'desire', 'for', 'its', 'continuance', '\n', 'or', 'no', 'farther', 'curiosity', 'on', 'its', 'subject', ' ', 'I', 'will', '\n', 'not', 'apologize', 'therefore', 'for', 'bring', 'it', 'forward', 'again', '\n\n', 'thank', 'you', 'cry', 'Lucy', 'warmly', 'for', 'break', '\n', 'the', 'ice', 'you', 'have', 'set', 'my', 'heart', 'at', 'ease', 'by', 'it', 'for', 'I', 'be', '\n', 'somehow', 'or', 'other', 'afraid', 'I', 'have', 'offend', 'you', 'by', 'what', 'I', '\n', 'tell', 'you', 'that', 'Monday', '\n\n', 'offend', 'I', 'how', 'could', 'you', 'suppose', 'so', 'believe', 'I', '\n', 'and', 'Elinor', 'speak', 'it', 'with', 'the', 'true', 'sincerity', '\n', 'nothing', 'could', 'be', 'far', 'from', 'my', 'intention', 'than', 'to', 'give', '\n', 'you', 'such', 'an', 'idea', ' ', 'could', 'you', 'have', 'a', 'motive', 'for', 'the', 'trust', '\n', 'that', 'be', 'not', 'honourable', 'and', 'flattering', 'to', 'I', '\n\n', 'and', 'yet', 'I', 'do', 'assure', 'you', 'reply', 'Lucy', 'her', 'little', '\n', 'sharp', 'eye', 'full', 'of', 'meaning', 'there', 'seem', 'to', 'I', 'to', 'be', '\n', 'a', 'coldness', 'and', 'displeasure', 'in', 'your', 'manner', 'that', 'make', 'I', '\n', 'quite', 'uncomfortable', ' ', 'I', 'feel', 'sure', 'that', 'you', 'be', 'angry', 'with', 'I', '\n', 'and', 'have', 'be', 'quarrel', 'with', 'myself', 'ever', 'since', 'for', 'having', '\n', 'take', 'such', 'a', 'liberty', 'as', 'to', 'trouble', 'you', 'with', 'my', 'affair', '\n', 'but', 'I', 'be', 'very', 'glad', 'to', 'find', 'it', 'be', 'only', 'my', 'own', 'fancy', '\n', 'and', 'that', 'you', 'really', 'do', 'not', 'blame', 'I', ' ', 'if', 'you', 'know', 'what', 'a', '\n', 'consolation', 'it', 'be', 'to', 'I', 'to', 'relieve', 'my', 'heart', 'speak', 'to', 'you', '\n', 'of', 'what', 'I', 'be', 'always', 'think', 'of', 'every', 'moment', 'of', 'my', 'life', '\n', 'your', 'compassion', 'would', 'make', 'you', 'overlook', 'every', 'thing', 'else', '\n', 'I', 'be', 'sure', '\n\n', 'indeed', 'I', 'can', 'easily', 'believe', 'that', 'it', 'be', 'a', 'very', 'great', '\n', 'relief', 'to', 'you', 'to', 'acknowledge', 'your', 'situation', 'to', 'I', 'and', 'be', '\n', 'assure', 'that', 'you', 'shall', 'never', 'have', 'reason', 'to', 'repent', 'it', '\n', 'your', 'case', 'be', 'a', 'very', 'unfortunate', 'one', 'you', 'seem', 'to', 'I', 'to', '\n', 'be', 'surround', 'with', 'difficulty', 'and', 'you', 'will', 'have', 'nee', '\n', 'of', 'all', 'your', 'mutual', 'affection', 'to', 'support', 'you', 'under', 'they', '\n', 'Mr', 'Ferrars', 'I', 'believe', 'be', 'entirely', 'dependent', 'on', 'his', 'mother', '\n\n', 'he', 'have', 'only', 'two', 'thousand', 'pound', 'of', 'his', 'own', 'it', 'would', '\n', 'be', 'madness', 'to', 'marry', 'upon', 'that', 'though', 'for', 'my', 'own', 'part', '\n', 'I', 'could', 'give', 'up', 'every', 'prospect', 'of', 'more', 'without', 'a', 'sigh', '\n', 'I', 'have', 'be', 'always', 'use', 'to', 'a', 'very', 'small', 'income', 'and', 'could', '\n', 'struggle', 'with', 'any', 'poverty', 'for', 'he', 'but', 'I', 'love', 'he', 'too', 'well', '\n', 'to', 'be', 'the', 'selfish', 'mean', 'of', 'rob', 'he', 'perhaps', 'of', 'all', 'that', '\n', 'his', 'mother', 'might', 'give', 'he', 'if', 'he', 'marry', 'to', 'please', 'she', '\n', 'we', 'must', 'wait', 'it', 'may', 'be', 'for', 'many', 'year', ' ', 'with', 'almost', 'every', '\n', 'other', 'man', 'in', 'the', 'world', 'it', 'would', 'be', 'an', 'alarming', 'prospect', '\n', 'but', 'Edwards', 'affection', 'and', 'constancy', 'nothing', 'can', 'deprive', 'I', 'of', '\n', 'I', 'know', '\n\n', 'that', 'conviction', 'must', 'be', 'every', 'thing', 'to', 'you', '\n', 'and', 'he', 'be', 'undoubtedly', 'support', 'by', 'the', 'same', 'trust', 'in', 'your', '\n', 'if', 'the', 'strength', 'of', 'your', 'reciprocal', 'attachment', 'have', 'fail', '\n', 'as', 'between', 'many', 'people', 'and', 'under', 'many', 'circumstance', '\n', 'it', 'naturally', 'would', 'during', 'a', 'four', 'year', 'engagement', '\n', 'your', 'situation', 'would', 'have', 'be', 'pitiable', 'indeed', '\n\n', 'Lucy', 'here', 'look', 'up', 'but', 'Elinor', 'be', 'careful', '\n', 'in', 'guard', 'her', 'countenance', 'from', 'every', 'expression', '\n', 'that', 'could', 'give', 'her', 'word', 'a', 'suspicious', 'tendency', '\n\n', 'Edwards', 'love', 'for', 'I', 'say', 'Lucy', 'have', 'be', 'pretty', '\n', 'well', 'put', 'to', 'the', 'test', 'by', 'our', 'long', 'very', 'long', 'absence', '\n', 'since', 'we', 'be', 'first', 'engage', 'and', 'it', 'have', 'stand', 'the', 'trial', '\n', 'so', 'well', 'that', 'I', 'should', 'be', 'unpardonable', 'to', 'doubt', 'it', 'now', '\n', 'I', 'can', 'safely', 'say', 'that', 'he', 'have', 'never', 'give', 'I', 'one', 'moment', '\n', 'alarm', 'on', 'that', 'account', 'from', 'the', 'first', '\n\n', 'Elinor', 'hardly', 'know', 'whether', 'to', 'smile', 'or', 'sigh', '\n', 'at', 'this', 'assertion', '\n\n', 'Lucy', 'go', 'on', ' ', 'I', 'be', 'rather', 'of', 'a', 'jealous', 'temper', 'too', '\n', 'by', 'nature', 'and', 'from', 'our', 'different', 'situation', 'in', 'life', '\n', 'from', 'his', 'be', 'so', 'much', 'more', 'in', 'the', 'world', 'than', 'I', 'and', 'our', '\n', 'continual', 'separation', 'I', 'be', 'enough', 'inclined', 'for', 'suspicion', '\n', 'to', 'have', 'find', 'out', 'the', 'truth', 'in', 'an', 'instant', 'if', 'there', 'have', 'be', '\n', 'the', 'slight', 'alteration', 'in', 'his', 'behaviour', 'to', 'I', 'when', 'we', 'meet', '\n', 'or', 'any', 'lowness', 'of', 'spirit', 'that', 'I', 'could', 'not', 'account', 'for', '\n', 'or', 'if', 'he', 'have', 'talk', 'more', 'of', 'one', 'lady', 'than', 'another', '\n', 'or', 'seem', 'in', 'any', 'respect', 'less', 'happy', 'at', 'Longstaple', 'than', 'he', '\n', 'use', 'to', 'be', ' ', 'I', 'do', 'not', 'mean', 'to', 'say', 'that', 'I', 'be', 'particularly', '\n', 'observant', 'or', 'quicksighte', 'in', 'general', 'but', 'in', 'such', 'a', 'case', '\n', 'I', 'be', 'sure', 'I', 'could', 'not', 'be', 'deceive', '\n\n', 'all', 'this', 'think', 'Elinor', 'be', 'very', 'pretty', '\n', 'but', 'it', 'can', 'impose', 'upon', 'neither', 'of', 'we', '\n\n', 'but', 'what', 'say', 'she', 'after', 'a', 'short', 'silence', '\n', 'be', 'your', 'view', 'or', 'have', 'you', 'none', 'but', 'that', 'of', 'wait', 'for', '\n', 'Mrs', 'Ferrarss', 'death', 'which', 'be', 'a', 'melancholy', 'and', 'shocking', '\n', 'extremityi', 'her', 'son', 'determine', 'to', 'submit', 'to', 'this', '\n', 'and', 'to', 'all', 'the', 'tediousness', 'of', 'the', 'many', 'year', 'of', 'suspense', '\n', 'in', 'which', 'it', 'may', 'involve', 'you', 'rather', 'than', 'run', 'the', 'risk', '\n', 'of', 'her', 'displeasure', 'for', 'a', 'while', 'by', 'own', 'the', 'truth', '\n\n', 'if', 'we', 'could', 'be', 'certain', 'that', 'it', 'would', 'be', 'only', '\n', 'for', 'a', 'while', ' ', 'but', 'Mrs', 'Ferrars', 'be', 'a', 'very', 'headstrong', '\n', 'proud', 'woman', 'and', 'in', 'her', 'first', 'fit', 'of', 'anger', 'upon', 'hear', '\n', 'it', 'would', 'very', 'likely', 'secure', 'every', 'thing', 'to', 'Robert', '\n', 'and', 'the', 'idea', 'of', 'that', 'for', 'Edwards', 'sake', 'frighten', 'away', '\n', 'all', 'my', 'inclination', 'for', 'hasty', 'measure', '\n\n', 'and', 'for', 'your', 'own', 'sake', 'too', 'or', 'you', 'be', 'carry', '\n', 'your', 'disinterestedness', 'beyond', 'reason', '\n\n', 'Lucy', 'look', 'at', 'Elinor', 'again', 'and', 'be', 'silent', '\n\n', 'do', 'you', 'know', 'Mr', 'Robert', 'Ferrars', 'ask', 'Elinor', '\n\n', 'not', 'at', 'allI', 'never', 'see', 'he', 'but', 'I', 'fancy', 'he', '\n', 'be', 'very', 'unlike', 'his', 'brothersilly', 'and', 'a', 'great', 'coxcomb', '\n\n', 'a', 'great', 'coxcomb', 'repeat', 'Miss', 'Steele', 'whose', 'ear', 'have', '\n', 'catch', 'those', 'word', 'by', 'a', 'sudden', 'pause', 'in', 'Mariannes', 'music', '\n', 'oh', 'they', 'be', 'talk', 'of', 'their', 'favourite', 'beaux', 'I', 'dare', 'say', '\n\n', 'no', 'sister', 'cry', 'Lucy', 'you', 'be', 'mistaken', 'there', 'our', '\n', 'favourite', 'beaux', 'be', 'not', 'great', 'coxcomb', '\n\n', 'I', 'can', 'answer', 'for', 'it', 'that', 'Miss', 'Dashwoods', 'be', 'not', '\n', 'say', 'Mrs', 'Jennings', 'laugh', 'heartily', 'for', 'he', 'be', 'one', '\n', 'of', 'the', 'modest', 'prettiest', 'behave', 'young', 'man', 'I', 'ever', 'see', '\n', 'but', 'as', 'for', 'Lucy', 'she', 'be', 'such', 'a', 'sly', 'little', 'creature', '\n', 'there', 'be', 'no', 'finding', 'out', 'who', 'SHE', 'like', '\n\n', 'oh', 'cry', 'Miss', 'Steele', 'look', 'significantly', 'round', '\n', 'at', 'they', 'I', 'dare', 'say', 'Lucys', 'beau', 'be', 'quite', 'as', 'modest', '\n', 'and', 'pretty', 'behave', 'as', 'Miss', 'Dashwoods', '\n\n', 'Elinor', 'blush', 'in', 'spite', 'of', 'herself', ' ', 'Lucy', 'bite', 'her', 'lip', '\n', 'and', 'look', 'angrily', 'at', 'her', 'sister', ' ', 'a', 'mutual', 'silence', 'take', '\n', 'place', 'for', 'some', 'time', ' ', 'Lucy', 'first', 'put', 'an', 'end', 'to', 'it', 'by', 'say', '\n', 'in', 'a', 'low', 'tone', 'though', 'Marianne', 'be', 'then', 'give', 'they', '\n', 'the', 'powerful', 'protection', 'of', 'a', 'very', 'magnificent', 'concerto', '\n\n', 'I', 'will', 'honestly', 'tell', 'you', 'of', 'one', 'scheme', 'which', 'have', '\n', 'lately', 'come', 'into', 'my', 'head', 'for', 'bring', 'matter', 'to', 'bear', '\n', 'indeed', 'I', 'be', 'bind', 'to', 'let', 'you', 'into', 'the', 'secret', 'for', 'you', '\n', 'be', 'a', 'party', 'concern', ' ', 'I', 'dare', 'say', 'you', 'have', 'see', 'enough', '\n', 'of', 'Edward', 'to', 'know', 'that', 'he', 'would', 'prefer', 'the', 'church', 'to', 'every', '\n', 'other', 'profession', 'now', 'my', 'plan', 'be', 'that', 'he', 'should', 'take', '\n', 'order', 'as', 'soon', 'as', 'he', 'can', 'and', 'then', 'through', 'your', 'interest', '\n', 'which', 'I', 'be', 'sure', 'you', 'would', 'be', 'kind', 'enough', 'to', 'use', 'out', 'of', '\n', 'friendship', 'for', 'he', 'and', 'I', 'hope', 'out', 'of', 'some', 'regard', 'to', 'I', '\n', 'your', 'brother', 'might', 'be', 'persuade', 'to', 'give', 'he', 'Norland', 'live', '\n', 'which', 'I', 'understand', 'be', 'a', 'very', 'good', 'one', 'and', 'the', 'present', '\n', 'incumbent', 'not', 'likely', 'to', 'live', 'a', 'great', 'while', ' ', 'that', 'would', '\n', 'be', 'enough', 'for', 'we', 'to', 'marry', 'upon', 'and', 'we', 'might', 'trust', 'to', 'time', '\n', 'and', 'chance', 'for', 'the', 'rest', '\n\n', 'I', 'should', 'always', 'be', 'happy', 'reply', 'Elinor', 'to', 'show', '\n', 'any', 'mark', 'of', 'my', 'esteem', 'and', 'friendship', 'for', 'Mr', 'Ferrars', '\n', 'but', 'do', 'you', 'not', 'perceive', 'that', 'my', 'interest', 'on', 'such', 'an', '\n', 'occasion', 'would', 'be', 'perfectly', 'unnecessary', ' ', 'he', 'be', 'brother', '\n', 'to', 'Mrs', 'John', 'DashwoodTHAT', 'must', 'be', 'recommendation', 'enough', '\n', 'to', 'her', 'husband', '\n\n', 'but', 'Mrs', 'John', 'Dashwood', 'would', 'not', 'much', 'approve', '\n', 'of', 'Edwards', 'go', 'into', 'order', '\n\n', 'then', 'I', 'rather', 'suspect', 'that', 'my', 'interest', 'would', '\n', 'do', 'very', 'little', '\n\n', 'they', 'be', 'again', 'silent', 'for', 'many', 'minute', ' ', 'at', 'length', '\n', 'Lucy', 'exclaim', 'with', 'a', 'deep', 'sigh', '\n\n', 'I', 'believe', 'it', 'would', 'be', 'the', 'wise', 'way', 'to', 'put', 'an', 'end', '\n', 'to', 'the', 'business', 'at', 'once', 'by', 'dissolve', 'the', 'engagement', '\n', 'we', 'seem', 'so', 'beset', 'with', 'difficulty', 'on', 'every', 'side', '\n', 'that', 'though', 'it', 'would', 'make', 'we', 'miserable', 'for', 'a', 'time', '\n', 'we', 'should', 'be', 'happy', 'perhaps', 'in', 'the', 'end', ' ', 'but', 'you', 'will', '\n', 'not', 'give', 'I', 'your', 'advice', 'Miss', 'Dashwood', '\n\n', 'no', 'answer', 'Elinor', 'with', 'a', 'smile', 'which', 'conceal', '\n', 'very', 'agitated', 'feeling', 'on', 'such', 'a', 'subject', 'I', 'certainly', '\n', 'will', 'not', ' ', 'you', 'know', 'very', 'well', 'that', 'my', 'opinion', 'would', 'have', '\n', 'no', 'weight', 'with', 'you', 'unless', 'it', 'be', 'on', 'the', 'side', 'of', 'your', 'wish', '\n\n', 'indeed', 'you', 'wrong', 'I', 'reply', 'Lucy', 'with', 'great', '\n', 'solemnity', 'I', 'know', 'nobody', 'of', 'whose', 'judgment', 'I', 'think', '\n', 'so', 'highly', 'as', 'I', 'do', 'of', 'yours', 'and', 'I', 'do', 'really', 'believe', '\n', 'that', 'if', 'you', 'be', 'to', 'say', 'to', 'I', 'I', 'advise', 'you', 'by', 'all', 'mean', '\n', 'to', 'put', 'an', 'end', 'to', 'your', 'engagement', 'with', 'Edward', 'Ferrars', '\n', 'it', 'will', 'be', 'more', 'for', 'the', 'happiness', 'of', 'both', 'of', 'you', '\n', 'I', 'should', 'resolve', 'upon', 'do', 'it', 'immediately', '\n\n', 'Elinor', 'blush', 'for', 'the', 'insincerity', 'of', 'Edwards', '\n', 'future', 'wife', 'and', 'reply', 'this', 'compliment', 'would', 'effectually', '\n', 'frighten', 'I', 'from', 'give', 'any', 'opinion', 'on', 'the', 'subject', '\n', 'have', 'I', 'form', 'one', ' ', 'it', 'raise', 'my', 'influence', 'much', 'too', 'high', '\n', 'the', 'power', 'of', 'divide', 'two', 'people', 'so', 'tenderly', 'attach', '\n', 'be', 'too', 'much', 'for', 'an', 'indifferent', 'person', '\n\n', 'tis', 'because', 'you', 'be', 'an', 'indifferent', 'person', 'say', 'Lucy', '\n', 'with', 'some', 'pique', 'and', 'lay', 'a', 'particular', 'stress', 'on', 'those', 'word', '\n', 'that', 'your', 'judgment', 'might', 'justly', 'have', 'such', 'weight', 'with', 'I', '\n', 'if', 'you', 'could', 'be', 'suppose', 'to', 'be', 'bias', 'in', 'any', 'respect', '\n', 'by', 'your', 'own', 'feeling', 'your', 'opinion', 'would', 'not', 'be', 'worth', 'have', '\n\n', 'Elinor', 'think', 'it', 'wise', 'to', 'make', 'no', 'answer', 'to', 'this', '\n', 'lest', 'they', 'might', 'provoke', 'each', 'other', 'to', 'an', 'unsuitable', 'increase', '\n', 'of', 'ease', 'and', 'unreserve', 'and', 'be', 'even', 'partly', 'determine', '\n', 'never', 'to', 'mention', 'the', 'subject', 'again', ' ', 'another', 'pause', '\n', 'therefore', 'of', 'many', 'minute', 'duration', 'succeed', 'this', 'speech', '\n', 'and', 'Lucy', 'be', 'still', 'the', 'first', 'to', 'end', 'it', '\n\n', 'shall', 'you', 'be', 'in', 'town', 'this', 'winter', 'Miss', 'Dashwood', '\n', 'say', 'she', 'with', 'all', 'her', 'accustomary', 'complacency', '\n\n', 'certainly', 'not', '\n\n', 'I', 'be', 'sorry', 'for', 'that', 'return', 'the', 'other', '\n', 'while', 'her', 'eye', 'brighten', 'at', 'the', 'information', '\n', 'it', 'would', 'have', 'give', 'I', 'such', 'pleasure', 'to', 'meet', 'you', 'there', '\n', 'but', 'I', 'dare', 'say', 'you', 'will', 'go', 'for', 'all', 'that', ' ', 'to', 'be', 'sure', '\n', 'your', 'brother', 'and', 'sister', 'will', 'ask', 'you', 'to', 'come', 'to', 'they', '\n\n', 'it', 'will', 'not', 'be', 'in', 'my', 'power', 'to', 'accept', 'their', 'invitation', '\n', 'if', 'they', 'do', '\n\n', 'how', 'unlucky', 'that', 'be', 'I', 'have', 'quite', 'depend', 'upon', '\n', 'meet', 'you', 'there', ' ', 'Anne', 'and', 'I', 'be', 'to', 'go', 'the', 'latter', 'end', '\n', 'of', 'January', 'to', 'some', 'relation', 'who', 'have', 'be', 'want', 'we', 'to', '\n', 'visit', 'they', 'these', 'several', 'year', ' ', 'but', 'I', 'only', 'go', 'for', 'the', 'sake', '\n', 'of', 'see', 'Edward', ' ', 'he', 'will', 'be', 'there', 'in', 'February', 'otherwise', '\n', 'London', 'would', 'have', 'no', 'charm', 'for', 'I', 'I', 'have', 'not', 'spirit', 'for', 'it', '\n\n', 'Elinor', 'be', 'soon', 'call', 'to', 'the', 'cardtable', 'by', 'the', '\n', 'conclusion', 'of', 'the', 'first', 'rubber', 'and', 'the', 'confidential', '\n', 'discourse', 'of', 'the', 'two', 'lady', 'be', 'therefore', 'at', 'an', 'end', '\n', 'to', 'which', 'both', 'of', 'they', 'submit', 'without', 'any', 'reluctance', '\n', 'for', 'nothing', 'have', 'be', 'say', 'on', 'either', 'side', 'to', 'make', 'they', '\n', 'dislike', 'each', 'other', 'less', 'than', 'they', 'have', 'do', 'before', '\n', 'and', 'Elinor', 'sit', 'down', 'to', 'the', 'card', 'table', 'with', 'the', 'melancholy', '\n', 'persuasion', 'that', 'Edward', 'be', 'not', 'only', 'without', 'affection', '\n', 'for', 'the', 'person', 'who', 'be', 'to', 'be', 'his', 'wife', 'but', 'that', 'he', 'have', '\n', 'not', 'even', 'the', 'chance', 'of', 'be', 'tolerably', 'happy', 'in', 'marriage', '\n', 'which', 'sincere', 'affection', 'on', 'her', 'side', 'would', 'have', 'give', '\n', 'for', 'selfinter', 'alone', 'could', 'induce', 'a', 'woman', 'to', 'keep', 'a', 'man', '\n', 'to', 'an', 'engagement', 'of', 'which', 'she', 'seem', 'so', 'thoroughly', 'aware', '\n', 'that', 'he', 'be', 'weary', '\n\n', 'from', 'this', 'time', 'the', 'subject', 'be', 'never', 'revive', 'by', 'Elinor', '\n', 'and', 'when', 'enter', 'on', 'by', 'Lucy', 'who', 'seldom', 'miss', 'an', 'opportunity', '\n', 'of', 'introduce', 'it', 'and', 'be', 'particularly', 'careful', 'to', 'inform', '\n', 'her', 'confidante', 'of', 'her', 'happiness', 'whenever', 'she', 'receive', 'a', 'letter', '\n', 'from', 'Edward', 'it', 'be', 'treat', 'by', 'the', 'former', 'with', 'calmness', '\n', 'and', 'caution', 'and', 'dismiss', 'as', 'soon', 'as', 'civility', 'would', 'allow', '\n', 'for', 'she', 'feel', 'such', 'conversation', 'to', 'be', 'an', 'indulgence', 'which', '\n', 'Lucy', 'do', 'not', 'deserve', 'and', 'which', 'be', 'dangerous', 'to', 'herself', '\n\n', 'the', 'visit', 'of', 'the', 'Miss', 'Steeles', 'at', 'Barton', 'Park', 'be', '\n', 'lengthen', 'far', 'beyond', 'what', 'the', 'first', 'invitation', 'imply', '\n', 'their', 'favour', 'increase', 'they', 'could', 'not', 'be', 'spare', '\n', 'Sir', 'John', 'would', 'not', 'hear', 'of', 'their', 'going', 'and', 'in', 'spite', '\n', 'of', 'their', 'numerous', 'and', 'long', 'arrange', 'engagement', 'in', 'Exeter', '\n', 'in', 'spite', 'of', 'the', 'absolute', 'necessity', 'of', 'return', 'to', 'fulfill', '\n', 'they', 'immediately', 'which', 'be', 'in', 'full', 'force', 'at', 'the', 'end', '\n', 'of', 'every', 'week', 'they', 'be', 'prevail', 'on', 'to', 'stay', 'nearly', 'two', '\n', 'month', 'at', 'the', 'park', 'and', 'to', 'assist', 'in', 'the', 'due', 'celebration', '\n', 'of', 'that', 'festival', 'which', 'require', 'a', 'more', 'than', 'ordinary', '\n', 'share', 'of', 'private', 'ball', 'and', 'large', 'dinner', 'to', 'proclaim', '\n', 'its', 'importance', '\n\n\n\n', 'chapter', '25', '\n\n\n', 'though', 'Mrs', 'Jennings', 'be', 'in', 'the', 'habit', 'of', 'spend', 'a', 'large', '\n', 'portion', 'of', 'the', 'year', 'at', 'the', 'house', 'of', 'her', 'child', 'and', 'friend', '\n', 'she', 'be', 'not', 'without', 'a', 'settle', 'habitation', 'of', 'her', 'own', '\n', 'since', 'the', 'death', 'of', 'her', 'husband', 'who', 'have', 'trade', 'with', 'success', '\n', 'in', 'a', 'less', 'elegant', 'part', 'of', 'the', 'town', 'she', 'have', 'reside', 'every', '\n', 'winter', 'in', 'a', 'house', 'in', 'one', 'of', 'the', 'street', 'near', 'Portman', 'Square', '\n', 'towards', 'this', 'home', 'she', 'begin', 'on', 'the', 'approach', 'of', 'January', '\n', 'to', 'turn', 'her', 'thought', 'and', 'thither', 'she', 'one', 'day', 'abruptly', '\n', 'and', 'very', 'unexpectedly', 'by', 'they', 'ask', 'the', 'eld', 'Misses', '\n', 'Dashwood', 'to', 'accompany', 'her', ' ', 'Elinor', 'without', 'observe', '\n', 'the', 'vary', 'complexion', 'of', 'her', 'sister', 'and', 'the', 'animate', 'look', '\n', 'which', 'speak', 'no', 'indifference', 'to', 'the', 'plan', 'immediately', 'give', '\n', 'a', 'grateful', 'but', 'absolute', 'denial', 'for', 'both', 'in', 'which', 'she', '\n', 'believe', 'herself', 'to', 'be', 'speak', 'their', 'united', 'inclination', '\n', 'the', 'reason', 'allege', 'be', 'their', 'determined', 'resolution', '\n', 'of', 'not', 'leave', 'their', 'mother', 'at', 'that', 'time', 'of', 'the', 'year', '\n', 'Mrs', 'Jennings', 'receive', 'the', 'refusal', 'with', 'some', 'surprise', '\n', 'and', 'repeat', 'her', 'invitation', 'immediately', '\n\n', 'oh', 'Lord', 'I', 'be', 'sure', 'your', 'mother', 'can', 'spare', 'you', '\n', 'very', 'well', 'and', 'I', 'do', 'beg', 'you', 'will', 'favour', 'I', 'with', '\n', 'your', 'company', 'for', 'I', 've', 'quite', 'set', 'my', 'heart', 'upon', 'it', '\n', 'do', 'not', 'fancy', 'that', 'you', 'will', 'be', 'any', 'inconvenience', 'to', 'I', '\n', 'for', 'I', 'shall', 'not', 'put', 'myself', 'at', 'all', 'out', 'of', 'my', 'way', 'for', 'you', '\n', 'it', 'will', 'only', 'be', 'send', 'Betty', 'by', 'the', 'coach', 'and', 'I', '\n', 'hope', 'I', 'can', 'afford', 'that', ' ', 'we', 'three', 'shall', 'be', 'able', 'to', 'go', '\n', 'very', 'well', 'in', 'my', 'chaise', 'and', 'when', 'we', 'be', 'in', 'town', '\n', 'if', 'you', 'do', 'not', 'like', 'to', 'go', 'wherever', 'I', 'do', 'well', 'and', 'good', '\n', 'you', 'may', 'always', 'go', 'with', 'one', 'of', 'my', 'daughter', ' ', 'I', 'be', 'sure', '\n', 'your', 'mother', 'will', 'not', 'object', 'to', 'it', 'for', 'I', 'have', 'have', 'such', '\n', 'good', 'luck', 'in', 'get', 'my', 'own', 'child', 'off', 'my', 'hand', 'that', 'she', '\n', 'will', 'think', 'I', 'a', 'very', 'fit', 'person', 'to', 'have', 'the', 'charge', 'of', 'you', '\n', 'and', 'if', 'I', 'do', 'not', 'get', 'one', 'of', 'you', 'at', 'least', 'well', 'marry', '\n', 'before', 'I', 'have', 'do', 'with', 'you', 'it', 'shall', 'not', 'be', 'my', 'fault', '\n', 'I', 'shall', 'speak', 'a', 'good', 'word', 'for', 'you', 'to', 'all', 'the', 'young', 'man', '\n', 'you', 'may', 'depend', 'upon', 'it', '\n\n', 'I', 'have', 'a', 'notion', 'say', 'Sir', 'John', 'that', 'Miss', 'Marianne', '\n', 'would', 'not', 'object', 'to', 'such', 'a', 'scheme', 'if', 'her', 'eld', 'sister', '\n', 'would', 'come', 'into', 'it', ' ', 'it', 'be', 'very', 'hard', 'indeed', 'that', 'she', '\n', 'should', 'not', 'have', 'a', 'little', 'pleasure', 'because', 'Miss', 'Dashwood', '\n', 'do', 'not', 'wish', 'it', ' ', 'so', 'I', 'would', 'advise', 'you', 'two', 'to', 'set', 'off', '\n', 'for', 'town', 'when', 'you', 'be', 'tired', 'of', 'Barton', 'without', 'say', '\n', 'a', 'word', 'to', 'Miss', 'Dashwood', 'about', 'it', '\n\n', 'Nay', 'cry', 'Mrs', 'Jennings', 'I', 'be', 'sure', 'I', 'shall', 'be', '\n', 'monstrous', 'glad', 'of', 'Miss', 'Mariannes', 'company', 'whether', 'Miss', '\n', 'Dashwood', 'will', 'go', 'or', 'not', 'only', 'the', 'more', 'the', 'merry', 'say', 'I', '\n', 'and', 'I', 'think', 'it', 'would', 'be', 'more', 'comfortable', 'for', 'they', 'to', '\n', 'be', 'together', 'because', 'if', 'they', 'get', 'tired', 'of', 'I', 'they', 'might', 'talk', '\n', 'to', 'one', 'another', 'and', 'laugh', 'at', 'my', 'old', 'way', 'behind', 'my', 'back', '\n', 'but', 'one', 'or', 'the', 'other', 'if', 'not', 'both', 'of', 'they', 'I', 'must', 'have', '\n', 'Lord', 'bless', 'I', 'how', 'do', 'you', 'think', 'I', 'can', 'live', 'poke', 'by', 'myself', '\n', 'I', 'who', 'have', 'be', 'always', 'use', 'till', 'this', 'winter', 'to', 'have', '\n', 'Charlotte', 'with', 'I', ' ', 'Come', 'Miss', 'Marianne', 'let', 'we', 'strike', '\n', 'hand', 'upon', 'the', 'bargain', 'and', 'if', 'Miss', 'Dashwood', 'will', 'change', '\n', 'her', 'mind', 'by', 'and', 'bye', 'why', 'so', 'much', 'the', 'well', '\n\n', 'I', 'thank', 'you', 'maam', 'sincerely', 'thank', 'you', 'say', 'Marianne', '\n', 'with', 'warmth', 'your', 'invitation', 'have', 'insure', 'my', 'gratitude', 'for', 'ever', '\n', 'and', 'it', 'would', 'give', 'I', 'such', 'happiness', 'yes', 'almost', 'the', 'great', '\n', 'happiness', 'I', 'be', 'capable', 'of', 'to', 'be', 'able', 'to', 'accept', 'it', '\n', 'but', 'my', 'mother', 'my', 'dear', 'kindest', 'motherI', 'feel', 'the', '\n', 'justice', 'of', 'what', 'Elinor', 'have', 'urge', 'and', 'if', 'she', 'be', 'to', 'be', '\n', 'make', 'less', 'happy', 'less', 'comfortable', 'by', 'our', 'absenceOh', 'no', '\n', 'nothing', 'should', 'tempt', 'I', 'to', 'leave', 'she', ' ', 'it', 'should', 'not', '\n', 'must', 'not', 'be', 'a', 'struggle', '\n\n', 'Mrs', 'Jennings', 'repeat', 'her', 'assurance', 'that', 'Mrs', 'Dashwood', '\n', 'could', 'spare', 'they', 'perfectly', 'well', 'and', 'Elinor', 'who', 'now', '\n', 'understand', 'her', 'sister', 'and', 'see', 'to', 'what', 'indifference', 'to', '\n', 'almost', 'every', 'thing', 'else', 'she', 'be', 'carry', 'by', 'her', 'eagerness', '\n', 'to', 'be', 'with', 'Willoughby', 'again', 'make', 'no', 'far', 'direct', '\n', 'opposition', 'to', 'the', 'plan', 'and', 'merely', 'refer', 'it', 'to', 'her', '\n', 'mother', 'decision', 'from', 'whom', 'however', 'she', 'scarcely', 'expect', '\n', 'to', 'receive', 'any', 'support', 'in', 'her', 'endeavour', 'to', 'prevent', 'a', 'visit', '\n', 'which', 'she', 'could', 'not', 'approve', 'of', 'for', 'Marianne', 'and', 'which', '\n', 'on', 'her', 'own', 'account', 'she', 'have', 'particular', 'reason', 'to', 'avoid', '\n', 'whatever', 'Marianne', 'be', 'desirous', 'of', 'her', 'mother', 'would', 'be', 'eager', '\n', 'to', 'promoteshe', 'could', 'not', 'expect', 'to', 'influence', 'the', 'latter', '\n', 'to', 'cautiousness', 'of', 'conduct', 'in', 'an', 'affair', 'respecting', 'which', 'she', '\n', 'have', 'never', 'be', 'able', 'to', 'inspire', 'she', 'with', 'distrust', 'and', 'she', '\n', 'dared', 'not', 'explain', 'the', 'motive', 'of', 'her', 'own', 'disinclination', '\n', 'for', 'go', 'to', 'London', ' ', 'that', 'Marianne', 'fastidious', 'as', 'she', 'be', '\n', 'thoroughly', 'acquaint', 'with', 'Mrs', 'Jennings', 'manner', '\n', 'and', 'invariably', 'disgust', 'by', 'they', 'should', 'overlook', 'every', '\n', 'inconvenience', 'of', 'that', 'kind', 'should', 'disregard', 'whatever', '\n', 'must', 'be', 'most', 'wound', 'to', 'her', 'irritable', 'feeling', 'in', 'her', '\n', 'pursuit', 'of', 'one', 'object', 'be', 'such', 'a', 'proof', 'so', 'strong', '\n', 'so', 'full', 'of', 'the', 'importance', 'of', 'that', 'object', 'to', 'she', 'as', 'Elinor', '\n', 'in', 'spite', 'of', 'all', 'that', 'have', 'pass', 'be', 'not', 'prepared', 'to', 'witness', '\n\n', 'on', 'be', 'inform', 'of', 'the', 'invitation', 'Mrs', 'Dashwood', '\n', 'persuade', 'that', 'such', 'an', 'excursion', 'would', 'be', 'productive', '\n', 'of', 'much', 'amusement', 'to', 'both', 'her', 'daughter', 'and', 'perceive', '\n', 'through', 'all', 'her', 'affectionate', 'attention', 'to', 'herself', '\n', 'how', 'much', 'the', 'heart', 'of', 'Marianne', 'be', 'in', 'it', 'would', 'not', 'hear', '\n', 'of', 'their', 'decline', 'the', 'offer', 'upon', 'her', 'account', 'insist', 'on', '\n', 'their', 'both', 'accept', 'it', 'directly', 'and', 'then', 'begin', 'to', 'foresee', '\n', 'with', 'her', 'usual', 'cheerfulness', 'a', 'variety', 'of', 'advantage', 'that', '\n', 'would', 'accrue', 'to', 'they', 'all', 'from', 'this', 'separation', '\n\n', 'I', 'be', 'delighted', 'with', 'the', 'plan', 'she', 'cry', '\n', 'it', 'be', 'exactly', 'what', 'I', 'could', 'wish', ' ', 'Margaret', 'and', 'I', 'shall', '\n', 'be', 'as', 'much', 'benefit', 'by', 'it', 'as', 'yourself', ' ', 'when', 'you', '\n', 'and', 'the', 'Middletons', 'be', 'go', 'we', 'shall', 'go', 'on', 'so', 'quietly', '\n', 'and', 'happily', 'together', 'with', 'our', 'book', 'and', 'our', 'music', 'you', '\n', 'will', 'find', 'Margaret', 'so', 'improve', 'when', 'you', 'come', 'back', 'again', '\n', 'I', 'have', 'a', 'little', 'plan', 'of', 'alteration', 'for', 'your', 'bedroom', 'too', '\n', 'which', 'may', 'now', 'be', 'perform', 'without', 'any', 'inconvenience', '\n', 'to', 'any', 'one', ' ', 'it', 'be', 'very', 'right', 'that', 'you', 'should', 'go', 'to', 'town', '\n', 'I', 'would', 'have', 'every', 'young', 'woman', 'of', 'your', 'condition', 'in', 'life', '\n', 'acquaint', 'with', 'the', 'manner', 'and', 'amusement', 'of', 'London', '\n', 'you', 'will', 'be', 'under', 'the', 'care', 'of', 'a', 'motherly', 'good', 'sort', '\n', 'of', 'woman', 'of', 'whose', 'kindness', 'to', 'you', 'I', 'can', 'have', 'no', 'doubt', '\n', 'and', 'in', 'all', 'probability', 'you', 'will', 'see', 'your', 'brother', '\n', 'and', 'whatever', 'may', 'be', 'his', 'fault', 'or', 'the', 'fault', 'of', 'his', 'wife', '\n', 'when', 'I', 'consider', 'whose', 'son', 'he', 'be', 'I', 'can', 'not', 'bear', 'to', 'have', 'you', 'so', '\n', 'wholly', 'estranged', 'from', 'each', 'other', '\n\n', 'though', 'with', 'your', 'usual', 'anxiety', 'for', 'our', 'happiness', '\n', 'say', 'Elinor', 'you', 'have', 'be', 'obviate', 'every', 'impediment', '\n', 'to', 'the', 'present', 'scheme', 'which', 'occur', 'to', 'you', 'there', 'be', '\n', 'still', 'one', 'objection', 'which', 'in', 'my', 'opinion', 'can', 'not', 'be', 'so', '\n', 'easily', 'remove', '\n\n', 'Mariannes', 'countenance', 'sink', '\n\n', 'and', 'what', 'say', 'Mrs', 'Dashwood', 'be', 'my', 'dear', 'prudent', '\n', 'Elinor', 'go', 'to', 'suggest', ' ', 'what', 'formidable', 'obstacle', 'be', 'she', '\n', 'now', 'to', 'bring', 'forward', ' ', 'do', 'let', 'I', 'hear', 'a', 'word', 'about', 'the', '\n', 'expense', 'of', 'it', '\n\n', 'my', 'objection', 'be', 'this', 'though', 'I', 'think', 'very', 'well', 'of', '\n', 'Mrs', 'Jenningss', 'heart', 'she', 'be', 'not', 'a', 'woman', 'whose', 'society', '\n', 'can', 'afford', 'we', 'pleasure', 'or', 'whose', 'protection', 'will', 'give', '\n', 'we', 'consequence', '\n\n', 'that', 'be', 'very', 'true', 'reply', 'her', 'mother', 'but', 'of', '\n', 'her', 'society', 'separately', 'from', 'that', 'of', 'other', 'people', '\n', 'you', 'will', 'scarcely', 'have', 'any', 'thing', 'at', 'all', 'and', 'you', 'will', '\n', 'almost', 'always', 'appear', 'in', 'public', 'with', 'Lady', 'Middleton', '\n\n', 'if', 'Elinor', 'be', 'frighten', 'away', 'by', 'her', 'dislike', 'of', '\n', 'Mrs', 'Jennings', 'say', 'Marianne', 'at', 'least', 'it', 'need', 'not', 'prevent', '\n', 'my', 'accept', 'her', 'invitation', ' ', 'I', 'have', 'no', 'such', 'scruple', '\n', 'and', 'I', 'be', 'sure', 'I', 'could', 'put', 'up', 'with', 'every', 'unpleasantness', '\n', 'of', 'that', 'kind', 'with', 'very', 'little', 'effort', '\n\n', 'Elinor', 'could', 'not', 'help', 'smile', 'at', 'this', 'display', 'of', '\n', 'indifference', 'towards', 'the', 'manner', 'of', 'a', 'person', 'to', 'whom', 'she', '\n', 'have', 'often', 'have', 'difficulty', 'in', 'persuade', 'Marianne', 'to', 'behave', '\n', 'with', 'tolerable', 'politeness', 'and', 'resolve', 'within', 'herself', '\n', 'that', 'if', 'her', 'sister', 'persist', 'in', 'go', 'she', 'would', '\n', 'go', 'likewise', 'as', 'she', 'do', 'not', 'think', 'it', 'proper', 'that', 'Marianne', '\n', 'should', 'be', 'leave', 'to', 'the', 'sole', 'guidance', 'of', 'her', 'own', 'judgment', '\n', 'or', 'that', 'Mrs', 'Jennings', 'should', 'be', 'abandon', 'to', 'the', 'mercy', '\n', 'of', 'Marianne', 'for', 'all', 'the', 'comfort', 'of', 'her', 'domestic', 'hour', '\n', 'to', 'this', 'determination', 'she', 'be', 'the', 'more', 'easily', 'reconcile', '\n', 'by', 'recollect', 'that', 'Edward', 'Ferrars', 'by', 'Lucys', 'account', '\n', 'be', 'not', 'to', 'be', 'in', 'town', 'before', 'February', 'and', 'that', '\n', 'their', 'visit', 'without', 'any', 'unreasonable', 'abridgement', '\n', 'might', 'be', 'previously', 'finish', '\n\n', 'I', 'will', 'have', 'you', 'both', 'go', 'say', 'Mrs', 'Dashwood', '\n', 'these', 'objection', 'be', 'nonsensical', ' ', 'you', 'will', 'have', 'much', '\n', 'pleasure', 'in', 'be', 'in', 'London', 'and', 'especially', 'in', 'be', 'together', '\n', 'and', 'if', 'Elinor', 'would', 'ever', 'condescend', 'to', 'anticipate', 'enjoyment', '\n', 'she', 'would', 'foresee', 'it', 'there', 'from', 'a', 'variety', 'of', 'source', '\n', 'she', 'would', 'perhaps', 'expect', 'some', 'from', 'improve', 'her', '\n', 'acquaintance', 'with', 'her', 'sisterinlaw', 'family', '\n\n', 'Elinor', 'have', 'often', 'wish', 'for', 'an', 'opportunity', 'of', '\n', 'attempt', 'to', 'weaken', 'her', 'mother', 'dependence', 'on', 'the', '\n', 'attachment', 'of', 'Edward', 'and', 'herself', 'that', 'the', 'shock', 'might', '\n', 'be', 'less', 'when', 'the', 'whole', 'truth', 'be', 'reveal', 'and', 'now', '\n', 'on', 'this', 'attack', 'though', 'almost', 'hopeless', 'of', 'success', '\n', 'she', 'force', 'herself', 'to', 'begin', 'her', 'design', 'by', 'say', '\n', 'as', 'calmly', 'as', 'she', 'could', 'I', 'like', 'Edward', 'ferrar', 'very', 'much', '\n', 'and', 'shall', 'always', 'be', 'glad', 'to', 'see', 'he', 'but', 'as', 'to', 'the', 'rest', '\n', 'of', 'the', 'family', 'it', 'be', 'a', 'matter', 'of', 'perfect', 'indifference', '\n', 'to', 'I', 'whether', 'I', 'be', 'ever', 'know', 'to', 'they', 'or', 'not', '\n\n', 'Mrs', 'Dashwood', 'smile', 'and', 'say', 'nothing', '\n', 'Marianne', 'lift', 'up', 'her', 'eye', 'in', 'astonishment', 'and', 'Elinor', '\n', 'conjecture', 'that', 'she', 'might', 'as', 'well', 'have', 'hold', 'her', 'tongue', '\n\n', 'after', 'very', 'little', 'far', 'discourse', 'it', 'be', 'finally', '\n', 'settle', 'that', 'the', 'invitation', 'should', 'be', 'fully', 'accept', '\n', 'Mrs', 'Jennings', 'receive', 'the', 'information', 'with', 'a', 'great', '\n', 'deal', 'of', 'joy', 'and', 'many', 'assurance', 'of', 'kindness', 'and', 'care', '\n', 'nor', 'be', 'it', 'a', 'matter', 'of', 'pleasure', 'merely', 'to', 'her', ' ', 'Sir', 'John', '\n', 'be', 'delighted', 'for', 'to', 'a', 'man', 'whose', 'prevail', 'anxiety', '\n', 'be', 'the', 'dread', 'of', 'be', 'alone', 'the', 'acquisition', 'of', 'two', '\n', 'to', 'the', 'number', 'of', 'inhabitant', 'in', 'London', 'be', 'something', '\n', 'Even', 'Lady', 'Middleton', 'take', 'the', 'trouble', 'of', 'be', 'delight', '\n', 'which', 'be', 'put', 'herself', 'rather', 'out', 'of', 'her', 'way', '\n', 'and', 'as', 'for', 'the', 'Miss', 'Steeles', 'especially', 'Lucy', 'they', 'have', '\n', 'never', 'be', 'so', 'happy', 'in', 'their', 'life', 'as', 'this', 'intelligence', '\n', 'make', 'they', '\n\n', 'Elinor', 'submit', 'to', 'the', 'arrangement', 'which', 'counteract', '\n', 'her', 'wish', 'with', 'less', 'reluctance', 'than', 'she', 'have', 'expect', '\n', 'to', 'feel', ' ', 'with', 'regard', 'to', 'herself', 'it', 'be', 'now', 'a', 'matter', '\n', 'of', 'unconcern', 'whether', 'she', 'go', 'to', 'town', 'or', 'not', 'and', 'when', '\n', 'she', 'see', 'her', 'mother', 'so', 'thoroughly', 'pleased', 'with', 'the', 'plan', '\n', 'and', 'her', 'sister', 'exhilarate', 'by', 'it', 'in', 'look', 'voice', 'and', 'manner', '\n', 'restore', 'to', 'all', 'her', 'usual', 'animation', 'and', 'elevate', 'to', 'more', '\n', 'than', 'her', 'usual', 'gaiety', 'she', 'could', 'not', 'be', 'dissatisfy', '\n', 'with', 'the', 'cause', 'and', 'would', 'hardly', 'allow', 'herself', 'to', 'distrust', '\n', 'the', 'consequence', '\n\n', 'Mariannes', 'joy', 'be', 'almost', 'a', 'degree', 'beyond', 'happiness', '\n', 'so', 'great', 'be', 'the', 'perturbation', 'of', 'her', 'spirit', 'and', 'her', '\n', 'impatience', 'to', 'be', 'go', ' ', 'her', 'unwillingness', 'to', 'quit', 'she', '\n', 'mother', 'be', 'she', 'only', 'restorative', 'to', 'calmness', 'and', 'at', 'the', '\n', 'moment', 'of', 'part', 'her', 'grief', 'on', 'that', 'score', 'be', 'excessive', '\n', 'her', 'mother', 'affliction', 'be', 'hardly', 'less', 'and', 'Elinor', '\n', 'be', 'the', 'only', 'one', 'of', 'the', 'three', 'who', 'seem', 'to', 'consider', '\n', 'the', 'separation', 'as', 'any', 'thing', 'short', 'of', 'eternal', '\n\n', 'their', 'departure', 'take', 'place', 'in', 'the', 'first', 'week', 'in', 'January', '\n', 'the', 'Middletons', 'be', 'to', 'follow', 'in', 'about', 'a', 'week', ' ', 'the', 'Miss', '\n', 'Steeles', 'keep', 'their', 'station', 'at', 'the', 'park', 'and', 'be', 'to', 'quit', '\n', 'it', 'only', 'with', 'the', 'rest', 'of', 'the', 'family', '\n\n\n\n', 'chapter', '26', '\n\n\n', 'Elinor', 'could', 'not', 'find', 'herself', 'in', 'the', 'carriage', 'with', 'Mrs', 'Jennings', '\n', 'and', 'begin', 'a', 'journey', 'to', 'London', 'under', 'her', 'protection', '\n', 'and', 'as', 'her', 'guest', 'without', 'wonder', 'at', 'her', 'own', 'situation', '\n', 'so', 'short', 'have', 'their', 'acquaintance', 'with', 'that', 'lady', 'be', '\n', 'so', 'wholly', 'unsuited', 'be', 'they', 'in', 'age', 'and', 'disposition', '\n', 'and', 'so', 'many', 'have', 'be', 'her', 'objection', 'against', 'such', 'a', 'measure', '\n', 'only', 'a', 'few', 'day', 'before', 'but', 'these', 'objection', 'have', 'all', '\n', 'with', 'that', 'happy', 'ardour', 'of', 'youth', 'which', 'Marianne', 'and', 'her', 'mother', '\n', 'equally', 'share', 'be', 'overcome', 'or', 'overlook', 'and', 'Elinor', '\n', 'in', 'spite', 'of', 'every', 'occasional', 'doubt', 'of', 'Willoughbys', 'constancy', '\n', 'could', 'not', 'witness', 'the', 'rapture', 'of', 'delightful', 'expectation', '\n', 'which', 'fill', 'the', 'whole', 'soul', 'and', 'beam', 'in', 'the', 'eye', '\n', 'of', 'Marianne', 'without', 'feel', 'how', 'blank', 'be', 'her', 'own', 'prospect', '\n', 'how', 'cheerless', 'her', 'own', 'state', 'of', 'mind', 'in', 'the', 'comparison', '\n', 'and', 'how', 'gladly', 'she', 'would', 'engage', 'in', 'the', 'solicitude', 'of', '\n', 'Mariannes', 'situation', 'to', 'have', 'the', 'same', 'animating', 'object', '\n', 'in', 'view', 'the', 'same', 'possibility', 'of', 'hope', ' ', 'a', 'short', 'a', 'very', '\n', 'short', 'time', 'however', 'must', 'now', 'decide', 'what', 'Willoughbys', '\n', 'intention', 'be', 'in', 'all', 'probability', 'he', 'be', 'already', 'in', 'town', '\n', 'Mariannes', 'eagerness', 'to', 'be', 'gone', 'declare', 'her', 'dependence', '\n', 'on', 'find', 'he', 'there', 'and', 'Elinor', 'be', 'resolve', 'not', 'only', 'upon', '\n', 'gain', 'every', 'new', 'light', 'as', 'to', 'his', 'character', 'which', 'her', '\n', 'own', 'observation', 'or', 'the', 'intelligence', 'of', 'other', 'could', 'give', 'she', '\n', 'but', 'likewise', 'upon', 'watch', 'his', 'behaviour', 'to', 'her', 'sister', '\n', 'with', 'such', 'zealous', 'attention', 'as', 'to', 'ascertain', 'what', 'he', 'be', '\n', 'and', 'what', 'he', 'mean', 'before', 'many', 'meeting', 'have', 'take', 'place', '\n', 'should', 'the', 'result', 'of', 'her', 'observation', 'be', 'unfavourable', '\n', 'she', 'be', 'determine', 'at', 'all', 'event', 'to', 'open', 'the', 'eye', '\n', 'of', 'her', 'sister', 'should', 'it', 'be', 'otherwise', 'her', 'exertion', '\n', 'would', 'be', 'of', 'a', 'different', 'natureshe', 'must', 'then', 'learn', '\n', 'to', 'avoid', 'every', 'selfish', 'comparison', 'and', 'banish', 'every', 'regret', '\n', 'which', 'might', 'lessen', 'her', 'satisfaction', 'in', 'the', 'happiness', 'of', 'Marianne', '\n\n', 'they', 'be', 'three', 'day', 'on', 'their', 'journey', 'and', 'Mariannes', '\n', 'behaviour', 'as', 'they', 'travel', 'be', 'a', 'happy', 'speciman', 'of', 'what', '\n', 'future', 'complaisance', 'and', 'companionableness', 'to', 'Mrs', 'Jennings', '\n', 'might', 'be', 'expect', 'to', 'be', ' ', 'she', 'sit', 'in', 'silence', 'almost', 'all', '\n', 'the', 'way', 'wrapt', 'in', 'her', 'own', 'meditation', 'and', 'scarcely', 'ever', '\n', 'voluntarily', 'speak', 'except', 'when', 'any', 'object', 'of', 'picturesque', '\n', 'beauty', 'within', 'their', 'view', 'draw', 'from', 'she', 'an', 'exclamation', '\n', 'of', 'delight', 'exclusively', 'address', 'to', 'her', 'sister', ' ', 'to', 'atone', '\n', 'for', 'this', 'conduct', 'therefore', 'Elinor', 'take', 'immediate', 'possession', '\n', 'of', 'the', 'post', 'of', 'civility', 'which', 'she', 'have', 'assign', 'herself', '\n', 'behave', 'with', 'the', 'great', 'attention', 'to', 'Mrs', 'Jennings', '\n', 'talk', 'with', 'she', 'laugh', 'with', 'she', 'and', 'listen', 'to', 'she', '\n', 'whenever', 'she', 'could', 'and', 'Mrs', 'Jennings', 'on', 'her', 'side', '\n', 'treat', 'they', 'both', 'with', 'all', 'possible', 'kindness', 'be', 'solicitous', '\n', 'on', 'every', 'occasion', 'for', 'their', 'ease', 'and', 'enjoyment', 'and', 'only', '\n', 'disturb', 'that', 'she', 'could', 'not', 'make', 'they', 'choose', 'their', 'own', '\n', 'dinner', 'at', 'the', 'inn', 'nor', 'extort', 'a', 'confession', 'of', 'their', '\n', 'prefer', 'salmon', 'to', 'cod', 'or', 'boil', 'fowl', 'to', 'veal', 'cutlet', '\n', 'they', 'reach', 'town', 'by', 'three', 'oclock', 'the', 'third', 'day', 'glad', 'to', '\n', 'be', 'release', 'after', 'such', 'a', 'journey', 'from', 'the', 'confinement', '\n', 'of', 'a', 'carriage', 'and', 'ready', 'to', 'enjoy', 'all', 'the', 'luxury', 'of', 'a', 'good', 'fire', '\n\n', 'the', 'house', 'be', 'handsome', 'and', 'handsomely', 'fit', 'up', '\n', 'and', 'the', 'young', 'lady', 'be', 'immediately', 'put', 'in', 'possession', '\n', 'of', 'a', 'very', 'comfortable', 'apartment', ' ', 'it', 'have', 'formerly', '\n', 'be', 'Charlottes', 'and', 'over', 'the', 'mantelpiece', 'still', 'hang', '\n', 'a', 'landscape', 'in', 'colour', 'silk', 'of', 'her', 'performance', '\n', 'in', 'proof', 'of', 'she', 'having', 'spend', 'seven', 'year', 'at', 'a', 'great', 'school', '\n', 'in', 'town', 'to', 'some', 'effect', '\n\n', 'as', 'dinner', 'be', 'not', 'to', 'be', 'ready', 'in', 'less', 'than', 'two', '\n', 'hour', 'from', 'their', 'arrival', 'Elinor', 'determine', 'to', 'employ', '\n', 'the', 'interval', 'in', 'write', 'to', 'her', 'mother', 'and', 'sit', 'down', 'for', '\n', 'that', 'purpose', ' ', 'in', 'a', 'few', 'moment', 'Marianne', 'do', 'the', 'same', '\n', 'I', 'be', 'write', 'home', 'Marianne', 'say', 'Elinor', 'have', 'not', 'you', '\n', 'well', 'defer', 'your', 'letter', 'for', 'a', 'day', 'or', 'two', '\n\n', 'I', 'be', 'not', 'go', 'to', 'write', 'to', 'my', 'mother', '\n', 'reply', 'Marianne', 'hastily', 'and', 'as', 'if', 'wish', 'to', 'avoid', '\n', 'any', 'farther', 'inquiry', ' ', 'Elinor', 'say', 'no', 'more', 'it', 'immediately', '\n', 'strike', 'she', 'that', 'she', 'must', 'then', 'be', 'write', 'to', 'Willoughby', '\n', 'and', 'the', 'conclusion', 'which', 'as', 'instantly', 'follow', 'be', '\n', 'that', 'however', 'mysteriously', 'they', 'might', 'wish', 'to', 'conduct', '\n', 'the', 'affair', 'they', 'must', 'be', 'engage', ' ', 'this', 'conviction', '\n', 'though', 'not', 'entirely', 'satisfactory', 'give', 'her', 'pleasure', '\n', 'and', 'she', 'continue', 'her', 'letter', 'with', 'great', 'alacrity', '\n', 'Mariannes', 'be', 'finish', 'in', 'a', 'very', 'few', 'minute', '\n', 'in', 'length', 'it', 'could', 'be', 'no', 'more', 'than', 'a', 'note', 'it', 'be', 'then', '\n', 'fold', 'up', 'seal', 'and', 'direct', 'with', 'eager', 'rapidity', '\n', 'Elinor', 'think', 'she', 'could', 'distinguish', 'a', 'large', 'w', 'in', '\n', 'the', 'direction', 'and', 'no', 'soon', 'be', 'it', 'complete', 'than', 'Marianne', '\n', 'ring', 'the', 'bell', 'request', 'the', 'footman', 'who', 'answer', 'it', '\n', 'to', 'get', 'that', 'letter', 'convey', 'for', 'she', 'to', 'the', 'twopenny', 'post', '\n', 'this', 'decide', 'the', 'matter', 'at', 'once', '\n\n', 'her', 'spirit', 'still', 'continue', 'very', 'high', 'but', 'there', '\n', 'be', 'a', 'flutter', 'in', 'they', 'which', 'prevent', 'their', 'give', 'much', '\n', 'pleasure', 'to', 'her', 'sister', 'and', 'this', 'agitation', 'increase', 'as', '\n', 'the', 'evening', 'draw', 'on', ' ', 'she', 'could', 'scarcely', 'eat', 'any', 'dinner', '\n', 'and', 'when', 'they', 'afterwards', 'return', 'to', 'the', 'drawing', 'room', '\n', 'seem', 'anxiously', 'listen', 'to', 'the', 'sound', 'of', 'every', 'carriage', '\n\n', 'it', 'be', 'a', 'great', 'satisfaction', 'to', 'Elinor', 'that', 'Mrs', 'Jennings', '\n', 'by', 'be', 'much', 'engage', 'in', 'her', 'own', 'room', 'could', 'see', 'little', '\n', 'of', 'what', 'be', 'pass', ' ', 'the', 'tea', 'thing', 'be', 'bring', 'in', '\n', 'and', 'already', 'have', 'Marianne', 'be', 'disappoint', 'more', 'than', 'once', '\n', 'by', 'a', 'rap', 'at', 'a', 'neighbouring', 'door', 'when', 'a', 'loud', 'one', 'be', 'suddenly', '\n', 'hear', 'which', 'could', 'not', 'be', 'mistaken', 'for', 'one', 'at', 'any', 'other', 'house', '\n', 'Elinor', 'feel', 'secure', 'of', 'its', 'announce', 'Willoughbys', 'approach', '\n', 'and', 'Marianne', 'start', 'up', 'move', 'towards', 'the', 'door', '\n', 'every', 'thing', 'be', 'silent', 'this', 'could', 'not', 'be', 'bear', 'many', 'second', '\n', 'she', 'open', 'the', 'door', 'advance', 'a', 'few', 'step', 'towards', 'the', 'stair', '\n', 'and', 'after', 'listen', 'half', 'a', 'minute', 'return', 'into', 'the', 'room', '\n', 'in', 'all', 'the', 'agitation', 'which', 'a', 'conviction', 'of', 'having', 'hear', '\n', 'he', 'would', 'naturally', 'produce', 'in', 'the', 'ecstasy', 'of', 'her', '\n', 'feeling', 'at', 'that', 'instant', 'she', 'could', 'not', 'help', 'exclaim', '\n', 'oh', 'Elinor', 'it', 'be', 'Willoughby', 'indeed', 'it', 'be', 'and', 'seem', '\n', 'almost', 'ready', 'to', 'throw', 'herself', 'into', 'his', 'arm', 'when', 'Colonel', '\n', 'Brandon', 'appear', '\n\n', 'it', 'be', 'too', 'great', 'a', 'shock', 'to', 'be', 'bear', 'with', 'calmness', '\n', 'and', 'she', 'immediately', 'leave', 'the', 'room', ' ', 'Elinor', 'be', 'disappoint', 'too', '\n', 'but', 'at', 'the', 'same', 'time', 'her', 'regard', 'for', 'Colonel', 'Brandon', 'ensure', '\n', 'his', 'welcome', 'with', 'she', 'and', 'she', 'felt', 'particularly', 'hurt', 'that', '\n', 'a', 'man', 'so', 'partial', 'to', 'her', 'sister', 'should', 'perceive', 'that', 'she', '\n', 'experience', 'nothing', 'but', 'grief', 'and', 'disappointment', 'in', 'see', 'he', '\n', 'she', 'instantly', 'see', 'that', 'it', 'be', 'not', 'unnoticed', 'by', 'he', '\n', 'that', 'he', 'even', 'observe', 'Marianne', 'as', 'she', 'quit', 'the', 'room', '\n', 'with', 'such', 'astonishment', 'and', 'concern', 'as', 'hardly', 'leave', 'he', '\n', 'the', 'recollection', 'of', 'what', 'civility', 'demand', 'towards', 'herself', '\n\n', 'be', 'your', 'sister', 'ill', 'say', 'he', '\n\n', 'Elinor', 'answer', 'in', 'some', 'distress', 'that', 'she', 'be', '\n', 'and', 'then', 'talk', 'of', 'headache', 'low', 'spirit', 'and', 'over', 'fatigue', '\n', 'and', 'of', 'every', 'thing', 'to', 'which', 'she', 'could', 'decently', 'attribute', '\n', 'her', 'sister', 'behaviour', '\n\n', 'he', 'hear', 'she', 'with', 'the', 'most', 'earnest', 'attention', '\n', 'but', 'seem', 'to', 'recollect', 'himself', 'say', 'no', 'more', 'on', 'the', 'subject', '\n', 'and', 'begin', 'directly', 'to', 'speak', 'of', 'his', 'pleasure', 'at', 'see', 'they', '\n', 'in', 'London', 'make', 'the', 'usual', 'inquiry', 'about', 'their', 'journey', '\n', 'and', 'the', 'friend', 'they', 'have', 'leave', 'behind', '\n\n', 'in', 'this', 'calm', 'kind', 'of', 'way', 'with', 'very', 'little', 'interest', '\n', 'on', 'either', 'side', 'they', 'continue', 'to', 'talk', 'both', 'of', 'they', 'out', '\n', 'of', 'spirit', 'and', 'the', 'thought', 'of', 'both', 'engage', 'elsewhere', '\n', 'Elinor', 'wish', 'very', 'much', 'to', 'ask', 'whether', 'Willoughby', 'be', '\n', 'then', 'in', 'town', 'but', 'she', 'be', 'afraid', 'of', 'give', 'he', 'pain', '\n', 'by', 'any', 'enquiry', 'after', 'his', 'rival', 'and', 'at', 'length', 'by', 'way', '\n', 'of', 'say', 'something', 'she', 'ask', 'if', 'he', 'have', 'be', 'in', 'London', '\n', 'ever', 'since', 'she', 'have', 'see', 'he', 'last', ' ', 'yes', 'he', 'reply', '\n', 'with', 'some', 'embarrassment', 'almost', 'ever', 'since', 'I', 'have', 'be', '\n', 'once', 'or', 'twice', 'at', 'Delaford', 'for', 'a', 'few', 'day', 'but', 'it', 'have', 'never', '\n', 'be', 'in', 'my', 'power', 'to', 'return', 'to', 'Barton', '\n\n', 'this', 'and', 'the', 'manner', 'in', 'which', 'it', 'be', 'say', '\n', 'immediately', 'bring', 'back', 'to', 'her', 'remembrance', 'all', 'the', '\n', 'circumstance', 'of', 'his', 'quit', 'that', 'place', 'with', 'the', '\n', 'uneasiness', 'and', 'suspicion', 'they', 'have', 'cause', 'to', 'Mrs', 'Jennings', '\n', 'and', 'she', 'be', 'fearful', 'that', 'her', 'question', 'have', 'imply', '\n', 'much', 'more', 'curiosity', 'on', 'the', 'subject', 'than', 'she', 'have', 'ever', 'feel', '\n\n', 'Mrs', 'Jennings', 'soon', 'come', 'in', ' ', 'oh', 'Colonel', 'say', 'she', '\n', 'with', 'her', 'usual', 'noisy', 'cheerfulness', 'I', 'be', 'monstrous', 'glad', '\n', 'to', 'see', 'yousorry', 'I', 'could', 'not', 'come', 'beforebeg', 'your', '\n', 'pardon', 'but', 'I', 'have', 'be', 'force', 'to', 'look', 'about', 'I', 'a', 'little', '\n', 'and', 'settle', 'my', 'matter', 'for', 'it', 'be', 'a', 'long', 'while', 'since', 'I', '\n', 'have', 'be', 'at', 'home', 'and', 'you', 'know', 'one', 'have', 'always', 'a', 'world', '\n', 'of', 'little', 'odd', 'thing', 'to', 'do', 'after', 'one', 'have', 'be', 'away', 'for', '\n', 'any', 'time', 'and', 'then', 'I', 'have', 'have', 'cartwright', 'to', 'settle', 'with', '\n', 'Lord', 'I', 'have', 'be', 'as', 'busy', 'as', 'a', 'bee', 'ever', 'since', 'dinner', '\n', 'but', 'pray', 'Colonel', 'how', 'come', 'you', 'to', 'conjure', 'out', 'that', 'I', 'should', '\n', 'be', 'in', 'town', 'today', '\n\n', 'I', 'have', 'the', 'pleasure', 'of', 'hear', 'it', 'at', 'Mr', 'Palmers', '\n', 'where', 'I', 'have', 'be', 'dine', '\n\n', 'oh', 'you', 'do', 'well', 'and', 'how', 'do', 'they', 'all', 'do', 'at', 'their', '\n', 'house', ' ', 'how', 'do', 'Charlotte', 'do', ' ', 'I', 'warrant', 'you', 'she', 'be', 'a', 'fine', '\n', 'size', 'by', 'this', 'time', '\n\n', 'Mrs', 'Palmer', 'appear', 'quite', 'well', 'and', 'I', 'be', 'commission', '\n', 'to', 'tell', 'you', 'that', 'you', 'will', 'certainly', 'see', 'she', 'tomorrow', '\n\n', 'ay', 'to', 'be', 'sure', 'I', 'think', 'as', 'much', ' ', 'well', 'Colonel', '\n', 'I', 'have', 'bring', 'two', 'young', 'lady', 'with', 'I', 'you', 'seethat', 'be', '\n', 'you', 'see', 'but', 'one', 'of', 'they', 'now', 'but', 'there', 'be', 'another', 'somewhere', '\n', 'your', 'friend', 'Miss', 'Marianne', 'toowhich', 'you', 'will', 'not', 'be', '\n', 'sorry', 'to', 'hear', ' ', 'I', 'do', 'not', 'know', 'what', 'you', 'and', 'Mr', 'Willoughby', '\n', 'will', 'do', 'between', 'you', 'about', 'her', ' ', 'ay', 'it', 'be', 'a', 'fine', 'thing', '\n', 'to', 'be', 'young', 'and', 'handsome', ' ', 'well', 'I', 'be', 'young', 'once', 'but', 'I', '\n', 'never', 'be', 'very', 'handsomeworse', 'luck', 'for', 'I', ' ', 'however', 'I', 'get', '\n', 'a', 'very', 'good', 'husband', 'and', 'I', 'do', 'not', 'know', 'what', 'the', 'great', '\n', 'beauty', 'can', 'do', 'more', ' ', 'ah', 'poor', 'man', 'he', 'have', 'be', 'dead', '\n', 'these', 'eight', 'year', 'and', 'well', ' ', 'but', 'Colonel', 'where', 'have', '\n', 'you', 'be', 'to', 'since', 'we', 'part', ' ', 'and', 'how', 'do', 'your', 'business', '\n', 'go', 'on', ' ', 'come', 'come', 'let', 'have', 'no', 'secret', 'among', 'friend', '\n\n', 'he', 'reply', 'with', 'his', 'accustomary', 'mildness', 'to', 'all', '\n', 'her', 'inquiry', 'but', 'without', 'satisfy', 'she', 'in', 'any', '\n', 'Elinor', 'now', 'begin', 'to', 'make', 'the', 'tea', 'and', 'Marianne', 'be', '\n', 'oblige', 'to', 'appear', 'again', '\n\n', 'after', 'her', 'entrance', 'Colonel', 'Brandon', 'become', '\n', 'more', 'thoughtful', 'and', 'silent', 'than', 'he', 'have', 'be', 'before', '\n', 'and', 'Mrs', 'Jennings', 'could', 'not', 'prevail', 'on', 'he', 'to', 'stay', 'long', '\n', 'no', 'other', 'visitor', 'appear', 'that', 'evening', 'and', 'the', 'lady', '\n', 'be', 'unanimous', 'in', 'agree', 'to', 'go', 'early', 'to', 'bed', '\n\n', 'Marianne', 'rise', 'the', 'next', 'morning', 'with', 'recover', 'spirit', '\n', 'and', 'happy', 'look', ' ', 'the', 'disappointment', 'of', 'the', 'evening', 'before', '\n', 'seem', 'forget', 'in', 'the', 'expectation', 'of', 'what', 'be', 'to', 'happen', '\n', 'that', 'day', ' ', 'they', 'have', 'not', 'long', 'finish', 'their', 'breakfast', 'before', '\n', 'Mrs', 'Palmers', 'barouche', 'stop', 'at', 'the', 'door', 'and', 'in', 'a', 'few', '\n', 'minute', 'she', 'came', 'laugh', 'into', 'the', 'room', 'so', 'delight', '\n', 'to', 'see', 'they', 'all', 'that', 'it', 'be', 'hard', 'to', 'say', 'whether', 'she', '\n', 'receive', 'most', 'pleasure', 'from', 'meet', 'her', 'mother', 'or', 'the', 'Miss', '\n', 'Dashwoods', 'again', ' ', 'so', 'surprised', 'at', 'their', 'come', 'to', 'town', '\n', 'though', 'it', 'be', 'what', 'she', 'have', 'rather', 'expect', 'all', 'along', '\n', 'so', 'angry', 'at', 'their', 'accept', 'her', 'mother', 'invitation', '\n', 'after', 'having', 'decline', 'her', 'own', 'though', 'at', 'the', 'same', 'time', '\n', 'she', 'would', 'never', 'have', 'forgive', 'they', 'if', 'they', 'have', 'not', 'come', '\n\n', 'Mr', 'Palmer', 'will', 'be', 'so', 'happy', 'to', 'see', 'you', '\n', 'say', 'she', 'what', 'do', 'you', 'think', 'he', 'say', 'when', 'he', 'hear', '\n', 'of', 'your', 'come', 'with', 'Mamma', ' ', 'I', 'forget', 'what', 'it', 'be', 'now', '\n', 'but', 'it', 'be', 'something', 'so', 'droll', '\n\n', 'after', 'an', 'hour', 'or', 'two', 'spend', 'in', 'what', 'her', 'mother', 'call', '\n', 'comfortable', 'chat', 'or', 'in', 'other', 'word', 'in', 'every', 'variety', 'of', 'inquiry', '\n', 'concern', 'all', 'their', 'acquaintance', 'on', 'Mrs', 'Jenningss', 'side', '\n', 'and', 'in', 'laughter', 'without', 'cause', 'on', 'Mrs', 'Palmers', 'it', 'be', '\n', 'propose', 'by', 'the', 'latter', 'that', 'they', 'should', 'all', 'accompany', '\n', 'she', 'to', 'some', 'shop', 'where', 'she', 'have', 'business', 'that', 'morning', '\n', 'to', 'which', 'Mrs', 'Jennings', 'and', 'Elinor', 'readily', 'consent', '\n', 'as', 'have', 'likewise', 'some', 'purchase', 'to', 'make', 'themselves', '\n', 'and', 'Marianne', 'though', 'decline', 'it', 'at', 'first', 'be', 'induce', '\n', 'to', 'go', 'likewise', '\n\n', 'wherever', 'they', 'go', 'she', 'be', 'evidently', 'always', 'on', '\n', 'the', 'watch', ' ', 'in', 'Bond', 'Street', 'especially', 'where', 'much', 'of', '\n', 'their', 'business', 'lie', 'her', 'eye', 'be', 'in', 'constant', 'inquiry', '\n', 'and', 'in', 'whatever', 'shop', 'the', 'party', 'be', 'engage', 'her', 'mind', 'be', '\n', 'equally', 'abstract', 'from', 'every', 'thing', 'actually', 'before', 'they', '\n', 'from', 'all', 'that', 'interested', 'and', 'occupy', 'the', 'other', '\n', 'Restless', 'and', 'dissatisfy', 'every', 'where', 'her', 'sister', 'could', '\n', 'never', 'obtain', 'her', 'opinion', 'of', 'any', 'article', 'of', 'purchase', '\n', 'however', 'it', 'might', 'equally', 'concern', 'they', 'both', 'she', 'receive', '\n', 'no', 'pleasure', 'from', 'anything', 'be', 'only', 'impatient', 'to', 'be', 'at', '\n', 'home', 'again', 'and', 'could', 'with', 'difficulty', 'govern', 'her', 'vexation', '\n', 'at', 'the', 'tediousness', 'of', 'Mrs', 'Palmer', 'whose', 'eye', 'be', 'catch', '\n', 'by', 'every', 'thing', 'pretty', 'expensive', 'or', 'new', 'who', 'be', 'wild', '\n', 'to', 'buy', 'all', 'could', 'determine', 'on', 'none', 'and', 'dawdle', 'away', 'her', '\n', 'time', 'in', 'rapture', 'and', 'indecision', '\n\n', 'it', 'be', 'late', 'in', 'the', 'morning', 'before', 'they', 'return', 'home', '\n', 'and', 'no', 'soon', 'have', 'they', 'enter', 'the', 'house', 'than', 'Marianne', 'fly', '\n', 'eagerly', 'up', 'stair', 'and', 'when', 'Elinor', 'follow', 'she', 'find', '\n', 'her', 'turn', 'from', 'the', 'table', 'with', 'a', 'sorrowful', 'countenance', '\n', 'which', 'declare', 'that', 'no', 'Willoughby', 'have', 'be', 'there', '\n\n', 'have', 'no', 'letter', 'be', 'leave', 'here', 'for', 'I', 'since', 'we', 'go', 'out', '\n', 'say', 'she', 'to', 'the', 'footman', 'who', 'then', 'enter', 'with', 'the', 'parcel', '\n', 'she', 'be', 'answer', 'in', 'the', 'negative', ' ', 'be', 'you', 'quite', 'sure', '\n', 'of', 'it', 'she', 'reply', ' ', 'be', 'you', 'certain', 'that', 'no', 'servant', '\n', 'no', 'porter', 'have', 'leave', 'any', 'letter', 'or', 'note', '\n\n', 'the', 'man', 'reply', 'that', 'none', 'have', '\n\n', 'how', 'very', 'odd', 'say', 'she', 'in', 'a', 'low', 'and', 'disappointed', '\n', 'voice', 'as', 'she', 'turn', 'away', 'to', 'the', 'window', '\n\n', 'how', 'odd', 'indeed', 'repeat', 'Elinor', 'within', 'herself', '\n', 'regard', 'her', 'sister', 'with', 'uneasiness', ' ', 'if', 'she', 'have', 'not', '\n', 'know', 'he', 'to', 'be', 'in', 'town', 'she', 'would', 'not', 'have', 'write', 'to', 'he', '\n', 'as', 'she', 'do', 'she', 'would', 'have', 'write', 'to', 'Combe', 'Magna', '\n', 'and', 'if', 'he', 'be', 'in', 'town', 'how', 'odd', 'that', 'he', 'should', 'neither', '\n', 'come', 'nor', 'write', ' ', 'oh', 'my', 'dear', 'mother', 'you', 'must', 'be', 'wrong', '\n', 'in', 'permit', 'an', 'engagement', 'between', 'a', 'daughter', 'so', 'young', '\n', 'a', 'man', 'so', 'little', 'known', 'to', 'be', 'carry', 'on', 'in', 'so', 'doubtful', '\n', 'so', 'mysterious', 'a', 'manner', ' ', 'I', 'long', 'to', 'inquire', 'and', 'how', 'will', 'my', '\n', 'interference', 'be', 'bear', '\n\n', 'she', 'determine', 'after', 'some', 'consideration', 'that', 'if', '\n', 'appearance', 'continue', 'many', 'day', 'long', 'as', 'unpleasant', 'as', 'they', '\n', 'now', 'be', 'she', 'would', 'represent', 'in', 'the', 'strong', 'manner', '\n', 'to', 'her', 'mother', 'the', 'necessity', 'of', 'some', 'serious', 'enquiry', 'into', 'the', '\n', 'affair', '\n\n', 'Mrs', 'Palmer', 'and', 'two', 'elderly', 'lady', 'of', 'Mrs', 'Jenningss', '\n', 'intimate', 'acquaintance', 'whom', 'she', 'have', 'meet', 'and', 'invite', '\n', 'in', 'the', 'morning', 'dine', 'with', 'they', ' ', 'the', 'former', 'leave', 'they', '\n', 'soon', 'after', 'tea', 'to', 'fulfill', 'her', 'evening', 'engagement', '\n', 'and', 'Elinor', 'be', 'oblige', 'to', 'assist', 'in', 'make', 'a', 'whist', 'table', '\n', 'for', 'the', 'other', ' ', 'Marianne', 'be', 'of', 'no', 'use', 'on', 'these', 'occasion', '\n', 'as', 'she', 'would', 'never', 'learn', 'the', 'game', 'but', 'though', 'her', 'time', '\n', 'be', 'therefore', 'at', 'her', 'own', 'disposal', 'the', 'evening', 'be', 'by', 'no', '\n', 'mean', 'more', 'productive', 'of', 'pleasure', 'to', 'she', 'than', 'to', 'Elinor', '\n', 'for', 'it', 'be', 'spend', 'in', 'all', 'the', 'anxiety', 'of', 'expectation', 'and', 'the', '\n', 'pain', 'of', 'disappointment', ' ', 'she', 'sometimes', 'endeavour', 'for', 'a', '\n', 'few', 'minute', 'to', 'read', 'but', 'the', 'book', 'be', 'soon', 'throw', 'aside', '\n', 'and', 'she', 'return', 'to', 'the', 'more', 'interesting', 'employment', '\n', 'of', 'walk', 'backwards', 'and', 'forwards', 'across', 'the', 'room', '\n', 'pause', 'for', 'a', 'moment', 'whenever', 'she', 'come', 'to', 'the', 'window', '\n', 'in', 'hope', 'of', 'distinguish', 'the', 'longexpecte', 'rap', '\n\n\n\n', 'chapter', '27', '\n\n\n', 'if', 'this', 'open', 'weather', 'hold', 'much', 'long', 'say', 'Mrs', 'Jennings', '\n', 'when', 'they', 'meet', 'at', 'breakfast', 'the', 'following', 'morning', '\n', 'Sir', 'John', 'will', 'not', 'like', 'leave', 'Barton', 'next', 'week', '\n', 'ti', 'a', 'sad', 'thing', 'for', 'sportsman', 'to', 'lose', 'a', 'day', 'pleasure', '\n', 'poor', 'soul', ' ', 'I', 'always', 'pity', 'they', 'when', 'they', 'do', 'they', 'seem', '\n', 'to', 'take', 'it', 'so', 'much', 'to', 'heart', '\n\n', 'that', 'be', 'true', 'cry', 'Marianne', 'in', 'a', 'cheerful', 'voice', '\n', 'and', 'walk', 'to', 'the', 'window', 'as', 'she', 'speak', 'to', 'examine', 'the', 'day', '\n', 'I', 'have', 'not', 'think', 'of', 'that', ' ', 'this', 'weather', 'will', 'keep', 'many', '\n', 'sportsman', 'in', 'the', 'country', '\n\n', 'it', 'be', 'a', 'lucky', 'recollection', 'all', 'her', 'good', 'spirit', 'be', '\n', 'restore', 'by', 'it', ' ', 'it', 'be', 'charming', 'weather', 'for', 'they', 'indeed', '\n', 'she', 'continue', 'as', 'she', 'sit', 'down', 'to', 'the', 'breakfast', 'table', '\n', 'with', 'a', 'happy', 'countenance', ' ', 'how', 'much', 'they', 'must', 'enjoy', '\n', 'it', 'but', 'with', 'a', 'little', 'return', 'of', 'anxiety', 'it', 'can', 'not', '\n', 'be', 'expect', 'to', 'last', 'long', ' ', 'at', 'this', 'time', 'of', 'the', 'year', '\n', 'and', 'after', 'such', 'a', 'series', 'of', 'rain', 'we', 'shall', 'certainly', '\n', 'have', 'very', 'little', 'more', 'of', 'it', ' ', 'frost', 'will', 'soon', 'set', 'in', '\n', 'and', 'in', 'all', 'probability', 'with', 'severity', ' ', 'in', 'another', 'day', '\n', 'or', 'two', 'perhaps', 'this', 'extreme', 'mildness', 'can', 'hardly', 'last', '\n', 'longernay', 'perhaps', 'it', 'may', 'freeze', 'tonight', '\n\n', 'at', 'any', 'rate', 'say', 'Elinor', 'wish', 'to', 'prevent', '\n', 'Mrs', 'Jennings', 'from', 'see', 'her', 'sister', 'thought', 'as', 'clearly', '\n', 'as', 'she', 'do', 'I', 'dare', 'say', 'we', 'shall', 'have', 'Sir', 'John', 'and', 'Lady', '\n', 'Middleton', 'in', 'town', 'by', 'the', 'end', 'of', 'next', 'week', '\n\n', 'ay', 'my', 'dear', 'Ill', 'warrant', 'you', 'we', 'do', ' ', 'Mary', 'always', '\n', 'have', 'her', 'own', 'way', '\n\n', 'and', 'now', 'silently', 'conjecture', 'Elinor', 'she', 'will', '\n', 'write', 'to', 'Combe', 'by', 'this', 'day', 'post', '\n\n', 'but', 'if', 'she', 'do', 'the', 'letter', 'be', 'write', 'and', 'send', 'away', '\n', 'with', 'a', 'privacy', 'which', 'elude', 'all', 'her', 'watchfulness', 'to', 'ascertain', '\n', 'the', 'fact', ' ', 'whatever', 'the', 'truth', 'of', 'it', 'might', 'be', 'and', 'far', '\n', 'as', 'Elinor', 'be', 'from', 'feel', 'thorough', 'contentment', 'about', 'it', '\n', 'yet', 'while', 'she', 'see', 'Marianne', 'in', 'spirit', 'she', 'could', 'not', 'be', '\n', 'very', 'uncomfortable', 'herself', ' ', 'and', 'Marianne', 'be', 'in', 'spirit', '\n', 'happy', 'in', 'the', 'mildness', 'of', 'the', 'weather', 'and', 'still', 'happy', '\n', 'in', 'her', 'expectation', 'of', 'a', 'frost', '\n\n', 'the', 'morning', 'be', 'chiefly', 'spend', 'in', 'leave', 'card', 'at', '\n', 'the', 'house', 'of', 'Mrs', 'Jenningss', 'acquaintance', 'to', 'inform', '\n', 'they', 'of', 'she', 'be', 'in', 'town', 'and', 'Marianne', 'be', 'all', 'the', 'time', '\n', 'busy', 'in', 'observe', 'the', 'direction', 'of', 'the', 'wind', 'watch', 'the', '\n', 'variation', 'of', 'the', 'sky', 'and', 'imagine', 'an', 'alteration', 'in', 'the', 'air', '\n\n', 'do', 'not', 'you', 'find', 'it', 'cold', 'than', 'it', 'be', 'in', 'the', 'morning', '\n', 'Elinor', 'there', 'seem', 'to', 'I', 'a', 'very', 'decide', 'difference', '\n', 'I', 'can', 'hardly', 'keep', 'my', 'hand', 'warm', 'even', 'in', 'my', 'muff', ' ', 'it', 'be', '\n', 'not', 'so', 'yesterday', 'I', 'think', ' ', 'the', 'cloud', 'seem', 'part', 'too', '\n', 'the', 'sun', 'will', 'be', 'out', 'in', 'a', 'moment', 'and', 'we', 'shall', 'have', 'a', '\n', 'clear', 'afternoon', '\n\n', 'Elinor', 'be', 'alternately', 'divert', 'and', 'pain', '\n', 'but', 'Marianne', 'persevere', 'and', 'see', 'every', 'night', 'in', 'the', '\n', 'brightness', 'of', 'the', 'fire', 'and', 'every', 'morning', 'in', 'the', 'appearance', '\n', 'of', 'the', 'atmosphere', 'the', 'certain', 'symptom', 'of', 'approach', 'frost', '\n\n', 'the', 'Miss', 'Dashwoods', 'have', 'no', 'great', 'reason', 'to', 'be', '\n', 'dissatisfied', 'with', 'Mrs', 'Jenningss', 'style', 'of', 'living', 'and', 'set', '\n', 'of', 'acquaintance', 'than', 'with', 'her', 'behaviour', 'to', 'themselves', '\n', 'which', 'be', 'invariably', 'kind', ' ', 'every', 'thing', 'in', 'her', 'household', '\n', 'arrangement', 'be', 'conduct', 'on', 'the', 'most', 'liberal', 'plan', '\n', 'and', 'except', 'a', 'few', 'old', 'city', 'friend', 'whom', 'to', 'Lady', '\n', 'Middletons', 'regret', 'she', 'have', 'never', 'drop', 'she', 'visit', '\n', 'no', 'one', 'to', 'whom', 'an', 'introduction', 'could', 'at', 'all', 'discompose', '\n', 'the', 'feeling', 'of', 'her', 'young', 'companion', ' ', 'pleased', 'to', 'find', '\n', 'herself', 'more', 'comfortably', 'situate', 'in', 'that', 'particular', 'than', '\n', 'she', 'have', 'expect', 'Elinor', 'be', 'very', 'willing', 'to', 'compound', '\n', 'for', 'the', 'want', 'of', 'much', 'real', 'enjoyment', 'from', 'any', 'of', 'their', '\n', 'evening', 'party', 'which', 'whether', 'at', 'home', 'or', 'abroad', '\n', 'form', 'only', 'for', 'card', 'could', 'have', 'little', 'to', 'amuse', 'she', '\n\n', 'Colonel', 'Brandon', 'who', 'have', 'a', 'general', 'invitation', '\n', 'to', 'the', 'house', 'be', 'with', 'they', 'almost', 'every', 'day', 'he', 'come', '\n', 'to', 'look', 'at', 'Marianne', 'and', 'talk', 'to', 'Elinor', 'who', 'often', 'derive', '\n', 'more', 'satisfaction', 'from', 'converse', 'with', 'he', 'than', 'from', 'any', '\n', 'other', 'daily', 'occurrence', 'but', 'who', 'see', 'at', 'the', 'same', 'time', '\n', 'with', 'much', 'concern', 'his', 'continue', 'regard', 'for', 'her', 'sister', '\n', 'she', 'fear', 'it', 'be', 'a', 'strengthening', 'regard', ' ', 'it', 'grieve', 'she', '\n', 'to', 'see', 'the', 'earnestness', 'with', 'which', 'he', 'often', 'watch', 'Marianne', '\n', 'and', 'his', 'spirit', 'be', 'certainly', 'bad', 'than', 'when', 'at', 'Barton', '\n\n', 'about', 'a', 'week', 'after', 'their', 'arrival', 'it', 'become', '\n', 'certain', 'that', 'Willoughby', 'be', 'also', 'arrive', ' ', 'his', 'card', '\n', 'be', 'on', 'the', 'table', 'when', 'they', 'come', 'in', 'from', 'the', 'morning', 'drive', '\n\n', 'good', 'God', 'cry', 'Marianne', 'he', 'have', 'be', 'here', 'while', '\n', 'we', 'be', 'out', ' ', 'Elinor', 'rejoice', 'to', 'be', 'assure', 'of', 'his', '\n', 'be', 'in', 'London', 'now', 'venture', 'to', 'say', 'depend', 'upon', 'it', '\n', 'he', 'will', 'call', 'again', 'tomorrow', ' ', 'but', 'Marianne', 'seem', '\n', 'hardly', 'to', 'hear', 'she', 'and', 'on', 'Mrs', 'Jennings', 'entrance', '\n', 'escape', 'with', 'the', 'precious', 'card', '\n\n', 'this', 'event', 'while', 'it', 'raise', 'the', 'spirit', 'of', 'Elinor', '\n', 'restore', 'to', 'those', 'of', 'her', 'sister', 'all', 'and', 'more', 'than', 'all', '\n', 'their', 'former', 'agitation', ' ', 'from', 'this', 'moment', 'her', 'mind', 'be', '\n', 'never', 'quiet', 'the', 'expectation', 'of', 'see', 'he', 'every', 'hour', '\n', 'of', 'the', 'day', 'make', 'she', 'unfit', 'for', 'any', 'thing', ' ', 'she', 'insist', '\n', 'on', 'be', 'leave', 'behind', 'the', 'next', 'morning', 'when', 'the', 'other', '\n', 'go', 'out', '\n\n', 'Elinors', 'thought', 'be', 'full', 'of', 'what', 'might', 'be', 'pass', '\n', 'in', 'Berkeley', 'Street', 'during', 'their', 'absence', 'but', 'a', 'moment', '\n', 'glance', 'at', 'her', 'sister', 'when', 'they', 'return', 'be', 'enough', 'to', '\n', 'inform', 'she', 'that', 'Willoughby', 'have', 'pay', 'no', 'second', 'visit', 'there', '\n', 'a', 'note', 'be', 'just', 'then', 'bring', 'in', 'and', 'lay', 'on', 'the', 'table', '\n\n', 'for', 'I', 'cry', 'Marianne', 'step', 'hastily', 'forward', '\n\n', 'no', 'maam', 'for', 'my', 'mistress', '\n\n', 'but', 'Marianne', 'not', 'convince', 'take', 'it', 'instantly', 'up', '\n\n', 'it', 'be', 'indeed', 'for', 'Mrs', 'Jennings', 'how', 'provoke', '\n\n', 'you', 'be', 'expect', 'a', 'letter', 'then', 'say', 'Elinor', '\n', 'unable', 'to', 'be', 'long', 'silent', '\n\n', 'yes', 'a', 'littlenot', 'much', '\n\n', 'after', 'a', 'short', 'pause', ' ', 'you', 'have', 'no', 'confidence', '\n', 'in', 'I', 'Marianne', '\n\n', 'Nay', 'Elinor', 'this', 'reproach', 'from', 'YOUyou', 'who', 'have', '\n', 'confidence', 'in', 'no', 'one', '\n\n', 'I', 'return', 'Elinor', 'in', 'some', 'confusion', 'indeed', '\n', 'Marianne', 'I', 'have', 'nothing', 'to', 'tell', '\n\n', 'nor', 'I', 'answer', 'Marianne', 'with', 'energy', 'our', 'situation', '\n', 'then', 'be', 'alike', ' ', 'we', 'have', 'neither', 'of', 'we', 'any', 'thing', 'to', 'tell', '\n', 'you', 'because', 'you', 'do', 'not', 'communicate', 'and', 'I', 'because', '\n', 'I', 'conceal', 'nothing', '\n\n', 'Elinor', 'distress', 'by', 'this', 'charge', 'of', 'reserve', 'in', 'herself', '\n', 'which', 'she', 'be', 'not', 'at', 'liberty', 'to', 'do', 'away', 'know', 'not', 'how', '\n', 'under', 'such', 'circumstance', 'to', 'press', 'for', 'great', 'openness', '\n', 'in', 'Marianne', '\n\n', 'Mrs', 'Jennings', 'soon', 'appear', 'and', 'the', 'note', 'be', '\n', 'give', 'she', 'she', 'read', 'it', 'aloud', ' ', 'it', 'be', 'from', 'Lady', 'Middleton', '\n', 'announce', 'their', 'arrival', 'in', 'Conduit', 'Street', 'the', 'night', 'before', '\n', 'and', 'request', 'the', 'company', 'of', 'her', 'mother', 'and', 'cousin', '\n', 'the', 'follow', 'evening', ' ', 'Business', 'on', 'Sir', 'Johns', 'part', '\n', 'and', 'a', 'violent', 'cold', 'on', 'her', 'own', 'prevent', 'their', 'calling', '\n', 'in', 'Berkeley', 'Street', ' ', 'the', 'invitation', 'be', 'accept', '\n', 'but', 'when', 'the', 'hour', 'of', 'appointment', 'draw', 'near', 'necessary', 'as', '\n', 'it', 'be', 'in', 'common', 'civility', 'to', 'Mrs', 'Jennings', 'that', 'they', '\n', 'should', 'both', 'attend', 'she', 'on', 'such', 'a', 'visit', 'Elinor', 'have', 'some', '\n', 'difficulty', 'in', 'persuade', 'her', 'sister', 'to', 'go', 'for', 'still', '\n', 'she', 'have', 'see', 'nothing', 'of', 'Willoughby', 'and', 'therefore', 'be', '\n', 'not', 'more', 'indisposed', 'for', 'amusement', 'abroad', 'than', 'unwilling', '\n', 'to', 'run', 'the', 'risk', 'of', 'his', 'call', 'again', 'in', 'her', 'absence', '\n\n', 'Elinor', 'find', 'when', 'the', 'evening', 'be', 'over', '\n', 'that', 'disposition', 'be', 'not', 'materially', 'alter', 'by', 'a', 'change', '\n', 'of', 'abode', 'for', 'although', 'scarcely', 'settle', 'in', 'town', '\n', 'Sir', 'John', 'have', 'contrive', 'to', 'collect', 'around', 'he', 'nearly', 'twenty', '\n', 'young', 'people', 'and', 'to', 'amuse', 'they', 'with', 'a', 'ball', ' ', 'this', 'be', '\n', 'an', 'affair', 'however', 'of', 'which', 'Lady', 'Middleton', 'do', 'not', 'approve', '\n', 'in', 'the', 'country', 'an', 'unpremeditated', 'dance', 'be', 'very', 'allowable', '\n', 'but', 'in', 'London', 'where', 'the', 'reputation', 'of', 'elegance', 'be', 'more', '\n', 'important', 'and', 'less', 'easily', 'attain', 'it', 'be', 'risk', 'too', 'much', '\n', 'for', 'the', 'gratification', 'of', 'a', 'few', 'girl', 'to', 'have', 'it', 'know', 'that', '\n', 'Lady', 'Middleton', 'have', 'give', 'a', 'small', 'dance', 'of', 'eight', 'or', 'nine', 'couple', '\n', 'with', 'two', 'violin', 'and', 'a', 'mere', 'sideboard', 'collation', '\n\n', 'Mr', 'and', 'Mrs', 'Palmer', 'be', 'of', 'the', 'party', 'from', 'the', 'former', '\n', 'whom', 'they', 'have', 'not', 'see', 'before', 'since', 'their', 'arrival', 'in', 'town', '\n', 'as', 'he', 'be', 'careful', 'to', 'avoid', 'the', 'appearance', 'of', 'any', 'attention', '\n', 'to', 'his', 'motherinlaw', 'and', 'therefore', 'never', 'come', 'near', 'she', '\n', 'they', 'receive', 'no', 'mark', 'of', 'recognition', 'on', 'their', 'entrance', '\n', 'he', 'look', 'at', 'they', 'slightly', 'without', 'seem', 'to', 'know', '\n', 'who', 'they', 'be', 'and', 'merely', 'nod', 'to', 'Mrs', 'Jennings', 'from', '\n', 'the', 'other', 'side', 'of', 'the', 'room', ' ', 'Marianne', 'give', 'one', 'glance', '\n', 'round', 'the', 'apartment', 'as', 'she', 'enter', 'it', 'be', 'enoughHE', '\n', 'be', 'not', 'thereand', 'she', 'sit', 'down', 'equally', 'illdisposed', '\n', 'to', 'receive', 'or', 'communicate', 'pleasure', ' ', 'after', 'they', 'have', 'be', '\n', 'assemble', 'about', 'an', 'hour', 'Mr', 'Palmer', 'saunter', 'towards', '\n', 'the', 'Miss', 'Dashwoods', 'to', 'express', 'his', 'surprise', 'on', 'see', 'they', '\n', 'in', 'town', 'though', 'Colonel', 'Brandon', 'have', 'be', 'first', 'inform', '\n', 'of', 'their', 'arrival', 'at', 'his', 'house', 'and', 'he', 'have', 'himself', 'say', '\n', 'something', 'very', 'droll', 'on', 'hear', 'that', 'they', 'be', 'to', 'come', '\n\n', 'I', 'think', 'you', 'be', 'both', 'in', 'Devonshire', 'say', 'he', '\n\n', 'do', 'you', 'reply', 'Elinor', '\n\n', 'when', 'do', 'you', 'go', 'back', 'again', '\n\n', 'I', 'do', 'not', 'know', 'and', 'thus', 'end', 'their', 'discourse', '\n\n', 'never', 'have', 'Marianne', 'be', 'so', 'unwilling', 'to', 'dance', '\n', 'in', 'her', 'life', 'as', 'she', 'be', 'that', 'evening', 'and', 'never', 'so', 'much', '\n', 'fatigue', 'by', 'the', 'exercise', ' ', 'she', 'complain', 'of', 'it', '\n', 'as', 'they', 'return', 'to', 'Berkeley', 'Street', '\n\n', 'Aye', 'aye', 'say', 'Mrs', 'Jennings', 'we', 'know', 'the', 'reason', '\n', 'of', 'all', 'that', 'very', 'well', 'if', 'a', 'certain', 'person', 'who', 'shall', '\n', 'be', 'nameless', 'have', 'be', 'there', 'you', 'would', 'not', 'have', 'be', 'a', '\n', 'bit', 'tired', 'and', 'to', 'say', 'the', 'truth', 'it', 'be', 'not', 'very', 'pretty', '\n', 'of', 'he', 'not', 'to', 'give', 'you', 'the', 'meeting', 'when', 'he', 'be', 'invite', '\n\n', 'invite', 'cry', 'Marianne', '\n\n', 'so', 'my', 'daughter', 'Middleton', 'tell', 'I', 'for', 'it', 'seem', 'Sir', '\n', 'John', 'meet', 'he', 'somewhere', 'in', 'the', 'street', 'this', 'morning', '\n', 'Marianne', 'say', 'no', 'more', 'but', 'look', 'exceedingly', 'hurt', '\n', 'Impatient', 'in', 'this', 'situation', 'to', 'be', 'do', 'something', '\n', 'that', 'might', 'lead', 'to', 'her', 'sister', 'relief', 'Elinor', 'resolve', '\n', 'to', 'write', 'the', 'next', 'morning', 'to', 'her', 'mother', 'and', 'hope', '\n', 'by', 'awaken', 'her', 'fear', 'for', 'the', 'health', 'of', 'Marianne', '\n', 'to', 'procure', 'those', 'inquiry', 'which', 'have', 'be', 'so', 'long', 'delay', '\n', 'and', 'she', 'be', 'still', 'more', 'eagerly', 'bent', 'on', 'this', 'measure', '\n', 'by', 'perceive', 'after', 'breakfast', 'on', 'the', 'morrow', 'that', 'Marianne', '\n', 'be', 'again', 'write', 'to', 'Willoughby', 'for', 'she', 'could', 'not', 'suppose', '\n', 'it', 'to', 'be', 'to', 'any', 'other', 'person', '\n\n', 'about', 'the', 'middle', 'of', 'the', 'day', 'Mrs', 'Jennings', 'go', 'out', 'by', '\n', 'herself', 'on', 'business', 'and', 'Elinor', 'begin', 'her', 'letter', 'directly', '\n', 'while', 'Marianne', 'too', 'restless', 'for', 'employment', 'too', 'anxious', '\n', 'for', 'conversation', 'walk', 'from', 'one', 'window', 'to', 'the', 'other', '\n', 'or', 'sit', 'down', 'by', 'the', 'fire', 'in', 'melancholy', 'meditation', '\n', 'Elinor', 'be', 'very', 'earnest', 'in', 'her', 'application', 'to', 'her', 'mother', '\n', 'relate', 'all', 'that', 'have', 'pass', 'her', 'suspicion', 'of', '\n', 'Willoughbys', 'inconstancy', 'urge', 'she', 'by', 'every', 'plea', '\n', 'of', 'duty', 'and', 'affection', 'to', 'demand', 'from', 'Marianne', 'an', 'account', '\n', 'of', 'her', 'real', 'situation', 'with', 'respect', 'to', 'he', '\n\n', 'her', 'letter', 'be', 'scarcely', 'finish', 'when', 'a', 'rap', '\n', 'foretell', 'a', 'visitor', 'and', 'Colonel', 'Brandon', 'be', 'announce', '\n', 'Marianne', 'who', 'have', 'see', 'he', 'from', 'the', 'window', 'and', 'who', 'hate', '\n', 'company', 'of', 'any', 'kind', 'leave', 'the', 'room', 'before', 'he', 'enter', 'it', '\n', 'he', 'look', 'more', 'than', 'usually', 'grave', 'and', 'though', 'express', '\n', 'satisfaction', 'at', 'find', 'Miss', 'Dashwood', 'alone', 'as', 'if', 'he', '\n', 'have', 'somewhat', 'in', 'particular', 'to', 'tell', 'she', 'sit', 'for', 'some', '\n', 'time', 'without', 'say', 'a', 'word', ' ', 'Elinor', 'persuade', 'that', 'he', '\n', 'have', 'some', 'communication', 'to', 'make', 'in', 'which', 'her', 'sister', '\n', 'be', 'concern', 'impatiently', 'expect', 'its', 'opening', '\n', 'it', 'be', 'not', 'the', 'first', 'time', 'of', 'her', 'feel', 'the', 'same', 'kind', '\n', 'of', 'conviction', 'for', 'more', 'than', 'once', 'before', 'begin', 'with', '\n', 'the', 'observation', 'of', 'your', 'sister', 'look', 'unwell', 'today', '\n', 'or', 'your', 'sister', 'seem', 'out', 'of', 'spirit', 'he', 'have', 'appear', '\n', 'on', 'the', 'point', 'either', 'of', 'disclosing', 'or', 'of', 'inquire', '\n', 'something', 'particular', 'about', 'she', ' ', 'after', 'a', 'pause', 'of', 'several', '\n', 'minute', 'their', 'silence', 'be', 'break', 'by', 'his', 'ask', 'she', '\n', 'in', 'a', 'voice', 'of', 'some', 'agitation', 'when', 'he', 'be', 'to', 'congratulate', '\n', 'she', 'on', 'the', 'acquisition', 'of', 'a', 'brother', ' ', 'Elinor', 'be', 'not', '\n', 'prepare', 'for', 'such', 'a', 'question', 'and', 'have', 'no', 'answer', 'ready', '\n', 'be', 'oblige', 'to', 'adopt', 'the', 'simple', 'and', 'common', 'expedient', '\n', 'of', 'ask', 'what', 'he', 'mean', ' ', 'he', 'try', 'to', 'smile', 'as', 'he', 'reply', '\n', 'your', 'sister', 'engagement', 'to', 'Mr', 'Willoughby', 'be', 'very', 'generally', '\n', 'know', '\n\n', 'it', 'can', 'not', 'be', 'generally', 'know', 'return', 'Elinor', '\n', 'for', 'her', 'own', 'family', 'do', 'not', 'know', 'it', '\n\n', 'he', 'look', 'surprised', 'and', 'say', 'I', 'beg', 'your', 'pardon', '\n', 'I', 'be', 'afraid', 'my', 'inquiry', 'have', 'be', 'impertinent', 'but', 'I', 'have', 'not', '\n', 'suppose', 'any', 'secrecy', 'intend', 'as', 'they', 'openly', 'correspond', '\n', 'and', 'their', 'marriage', 'be', 'universally', 'talk', 'of', '\n\n', 'how', 'can', 'that', 'be', 'by', 'whom', 'can', 'you', 'have', 'hear', '\n', 'it', 'mention', '\n\n', 'by', 'manyby', 'some', 'of', 'whom', 'you', 'know', 'nothing', 'by', 'other', '\n', 'with', 'whom', 'you', 'be', 'most', 'intimate', 'Mrs', 'Jennings', 'Mrs', 'Palmer', '\n', 'and', 'the', 'Middletons', ' ', 'but', 'still', 'I', 'might', 'not', 'have', 'believe', 'it', '\n', 'for', 'where', 'the', 'mind', 'be', 'perhaps', 'rather', 'unwilling', 'to', '\n', 'be', 'convince', 'it', 'will', 'always', 'find', 'something', 'to', 'support', '\n', 'its', 'doubt', 'if', 'I', 'have', 'not', 'when', 'the', 'servant', 'let', 'I', 'in', 'today', '\n', 'accidentally', 'see', 'a', 'letter', 'in', 'his', 'hand', 'direct', 'to', '\n', 'Mr', 'Willoughby', 'in', 'your', 'sister', 'write', ' ', 'I', 'come', 'to', 'inquire', '\n', 'but', 'I', 'be', 'convince', 'before', 'I', 'could', 'ask', 'the', 'question', '\n', 'be', 'every', 'thing', 'finally', 'settle', ' ', 'be', 'it', 'impossible', 'to', '\n', 'but', 'I', 'have', 'no', 'right', 'and', 'I', 'could', 'have', 'no', 'chance', 'of', 'succeed', '\n', 'excuse', 'I', 'Miss', 'Dashwood', ' ', 'I', 'believe', 'I', 'have', 'be', 'wrong', '\n', 'in', 'say', 'so', 'much', 'but', 'I', 'hardly', 'know', 'what', 'to', 'do', 'and', 'on', '\n', 'your', 'prudence', 'I', 'have', 'the', 'strong', 'dependence', ' ', 'tell', 'I', '\n', 'that', 'it', 'be', 'all', 'absolutely', 'resolve', 'on', 'that', 'any', 'attempt', '\n', 'that', 'in', 'short', 'concealment', 'if', 'concealment', 'be', 'possible', '\n', 'be', 'all', 'that', 'remain', '\n\n', 'these', 'word', 'which', 'convey', 'to', 'Elinor', 'a', 'direct', 'avowal', '\n', 'of', 'his', 'love', 'for', 'her', 'sister', 'affect', 'she', 'very', 'much', '\n', 'she', 'be', 'not', 'immediately', 'able', 'to', 'say', 'anything', 'and', 'even', '\n', 'when', 'her', 'spirit', 'be', 'recover', 'she', 'debate', 'for', 'a', 'short', '\n', 'time', 'on', 'the', 'answer', 'it', 'would', 'be', 'most', 'proper', 'to', 'give', '\n', 'the', 'real', 'state', 'of', 'thing', 'between', 'Willoughby', 'and', 'her', 'sister', '\n', 'be', 'so', 'little', 'known', 'to', 'herself', 'that', 'in', 'endeavouring', '\n', 'to', 'explain', 'it', 'she', 'might', 'be', 'as', 'liable', 'to', 'say', 'too', 'much', '\n', 'as', 'too', 'little', ' ', 'yet', 'as', 'she', 'be', 'convince', 'that', 'Mariannes', '\n', 'affection', 'for', 'Willoughby', 'could', 'leave', 'no', 'hope', 'of', 'Colonel', '\n', 'Brandons', 'success', 'whatever', 'the', 'event', 'of', 'that', 'affection', '\n', 'might', 'be', 'and', 'at', 'the', 'same', 'time', 'wish', 'to', 'shield', 'her', 'conduct', '\n', 'from', 'censure', 'she', 'think', 'it', 'most', 'prudent', 'and', 'kind', '\n', 'after', 'some', 'consideration', 'to', 'say', 'more', 'than', 'she', 'really', 'know', '\n', 'or', 'believe', ' ', 'she', 'acknowledge', 'therefore', 'that', 'though', '\n', 'she', 'have', 'never', 'be', 'inform', 'by', 'themselves', 'of', 'the', 'term', '\n', 'on', 'which', 'they', 'stand', 'with', 'each', 'other', 'of', 'their', 'mutual', '\n', 'affection', 'she', 'have', 'no', 'doubt', 'and', 'of', 'their', 'correspondence', '\n', 'she', 'be', 'not', 'astonish', 'to', 'hear', '\n\n', 'he', 'listen', 'to', 'she', 'with', 'silent', 'attention', 'and', 'on', '\n', 'her', 'cease', 'to', 'speak', 'rise', 'directly', 'from', 'his', 'seat', '\n', 'and', 'after', 'say', 'in', 'a', 'voice', 'of', 'emotion', 'to', 'your', 'sister', '\n', 'I', 'wish', 'all', 'imaginable', 'happiness', 'to', 'Willoughby', 'that', 'he', '\n', 'may', 'endeavour', 'to', 'deserve', 'hertook', 'leave', 'and', 'go', 'away', '\n\n', 'Elinor', 'derive', 'no', 'comfortable', 'feeling', 'from', 'this', '\n', 'conversation', 'to', 'lessen', 'the', 'uneasiness', 'of', 'her', 'mind', 'on', '\n', 'other', 'point', 'she', 'be', 'leave', 'on', 'the', 'contrary', 'with', 'a', '\n', 'melancholy', 'impression', 'of', 'Colonel', 'Brandons', 'unhappiness', '\n', 'and', 'be', 'prevent', 'even', 'from', 'wish', 'it', 'remove', '\n', 'by', 'her', 'anxiety', 'for', 'the', 'very', 'event', 'that', 'must', 'confirm', 'it', '\n\n\n\n', 'chapter', '28', '\n\n\n', 'nothing', 'occur', 'during', 'the', 'next', 'three', 'or', 'four', 'day', '\n', 'to', 'make', 'Elinor', 'regret', 'what', 'she', 'have', 'do', 'in', 'apply', '\n', 'to', 'her', 'mother', 'for', 'Willoughby', 'neither', 'come', 'nor', 'write', '\n', 'they', 'be', 'engage', 'about', 'the', 'end', 'of', 'that', 'time', 'to', 'attend', '\n', 'Lady', 'Middleton', 'to', 'a', 'party', 'from', 'which', 'Mrs', 'Jennings', 'be', '\n', 'keep', 'away', 'by', 'the', 'indisposition', 'of', 'her', 'young', 'daughter', '\n', 'and', 'for', 'this', 'party', 'Marianne', 'wholly', 'dispirit', '\n', 'careless', 'of', 'her', 'appearance', 'and', 'seem', 'equally', 'indifferent', '\n', 'whether', 'she', 'go', 'or', 'staid', 'prepared', 'without', 'one', 'look', '\n', 'of', 'hope', 'or', 'one', 'expression', 'of', 'pleasure', ' ', 'she', 'sit', 'by', 'the', '\n', 'drawingroom', 'fire', 'after', 'tea', 'till', 'the', 'moment', 'of', 'Lady', '\n', 'Middletons', 'arrival', 'without', 'once', 'stir', 'from', 'her', 'seat', '\n', 'or', 'alter', 'her', 'attitude', 'lose', 'in', 'her', 'own', 'thought', '\n', 'and', 'insensible', 'of', 'her', 'sister', 'presence', 'and', 'when', 'at', '\n', 'last', 'they', 'be', 'tell', 'that', 'Lady', 'Middleton', 'wait', 'for', 'they', '\n', 'at', 'the', 'door', 'she', 'start', 'as', 'if', 'she', 'have', 'forget', 'that', '\n', 'any', 'one', 'be', 'expect', '\n\n', 'they', 'arrive', 'in', 'due', 'time', 'at', 'the', 'place', 'of', 'destination', '\n', 'and', 'as', 'soon', 'as', 'the', 'string', 'of', 'carriage', 'before', 'they', '\n', 'would', 'allow', 'alighted', 'ascend', 'the', 'stair', 'hear', 'their', '\n', 'name', 'announce', 'from', 'one', 'landingplace', 'to', 'another', 'in', 'an', '\n', 'audible', 'voice', 'and', 'enter', 'a', 'room', 'splendidly', 'light', 'up', '\n', 'quite', 'full', 'of', 'company', 'and', 'insufferably', 'hot', ' ', 'when', 'they', 'have', '\n', 'pay', 'their', 'tribute', 'of', 'politeness', 'by', 'curtsy', 'to', 'the', 'lady', '\n', 'of', 'the', 'house', 'they', 'be', 'permit', 'to', 'mingle', 'in', 'the', 'crowd', '\n', 'and', 'take', 'their', 'share', 'of', 'the', 'heat', 'and', 'inconvenience', 'to', '\n', 'which', 'their', 'arrival', 'must', 'necessarily', 'add', ' ', 'after', 'some', 'time', '\n', 'spend', 'in', 'say', 'little', 'or', 'do', 'less', 'Lady', 'Middleton', 'sit', '\n', 'down', 'to', 'Cassino', 'and', 'as', 'Marianne', 'be', 'not', 'in', 'spirit', 'for', '\n', 'move', 'about', 'she', 'and', 'Elinor', 'luckily', 'succeed', 'to', 'chair', '\n', 'place', 'themselves', 'at', 'no', 'great', 'distance', 'from', 'the', 'table', '\n\n', 'they', 'have', 'not', 'remain', 'in', 'this', 'manner', 'long', 'before', 'Elinor', '\n', 'perceive', 'Willoughby', 'stand', 'within', 'a', 'few', 'yard', '\n', 'of', 'they', 'in', 'earnest', 'conversation', 'with', 'a', 'very', 'fashionable', '\n', 'look', 'young', 'woman', ' ', 'she', 'soon', 'catch', 'his', 'eye', 'and', 'he', '\n', 'immediately', 'bow', 'but', 'without', 'attempt', 'to', 'speak', 'to', 'she', '\n', 'or', 'to', 'approach', 'Marianne', 'though', 'he', 'could', 'not', 'but', 'see', 'she', '\n', 'and', 'then', 'continue', 'his', 'discourse', 'with', 'the', 'same', 'lady', '\n', 'Elinor', 'turn', 'involuntarily', 'to', 'Marianne', 'to', 'see', 'whether', '\n', 'it', 'could', 'be', 'unobserve', 'by', 'she', ' ', 'at', 'that', 'moment', 'she', 'first', '\n', 'perceive', 'he', 'and', 'her', 'whole', 'countenance', 'glow', 'with', '\n', 'sudden', 'delight', 'she', 'would', 'have', 'move', 'towards', 'he', 'instantly', '\n', 'have', 'not', 'her', 'sister', 'catch', 'hold', 'of', 'her', '\n\n', 'good', 'heaven', 'she', 'exclaim', 'he', 'be', 'therehe', '\n', 'be', 'thereOh', 'why', 'do', 'he', 'not', 'look', 'at', 'I', 'why', 'can', 'not', '\n', 'I', 'speak', 'to', 'he', '\n\n', 'pray', 'pray', 'be', 'compose', 'cry', 'Elinor', 'and', 'do', '\n', 'not', 'betray', 'what', 'you', 'feel', 'to', 'every', 'body', 'present', '\n', 'perhaps', 'he', 'have', 'not', 'observe', 'you', 'yet', '\n\n', 'this', 'however', 'be', 'more', 'than', 'she', 'could', 'believe', 'herself', '\n', 'and', 'to', 'be', 'compose', 'at', 'such', 'a', 'moment', 'be', 'not', 'only', 'beyond', '\n', 'the', 'reach', 'of', 'Marianne', 'it', 'be', 'beyond', 'her', 'wish', ' ', 'she', 'sit', '\n', 'in', 'an', 'agony', 'of', 'impatience', 'which', 'affect', 'every', 'feature', '\n\n', 'at', 'last', 'he', 'turn', 'round', 'again', 'and', 'regard', 'they', 'both', '\n', 'she', 'start', 'up', 'and', 'pronounce', 'his', 'name', 'in', 'a', 'tone', '\n', 'of', 'affection', 'hold', 'out', 'her', 'hand', 'to', 'he', ' ', 'he', 'approach', '\n', 'and', 'address', 'himself', 'rather', 'to', 'Elinor', 'than', 'Marianne', '\n', 'as', 'if', 'wish', 'to', 'avoid', 'her', 'eye', 'and', 'determine', 'not', 'to', '\n', 'observe', 'her', 'attitude', 'inquire', 'in', 'a', 'hurried', 'manner', 'after', '\n', 'Mrs', 'Dashwood', 'and', 'ask', 'how', 'long', 'they', 'have', 'be', 'in', 'town', '\n', 'Elinor', 'be', 'rob', 'of', 'all', 'presence', 'of', 'mind', 'by', 'such', 'an', 'address', '\n', 'and', 'be', 'unable', 'to', 'say', 'a', 'word', ' ', 'but', 'the', 'feeling', 'of', 'her', 'sister', '\n', 'be', 'instantly', 'express', ' ', 'her', 'face', 'be', 'crimson', 'over', '\n', 'and', 'she', 'exclaim', 'in', 'a', 'voice', 'of', 'the', 'great', 'emotion', '\n', 'good', 'God', 'Willoughby', 'what', 'be', 'the', 'meaning', 'of', 'this', '\n', 'have', 'you', 'not', 'receive', 'my', 'letter', ' ', 'will', 'you', 'not', 'shake', '\n', 'hand', 'with', 'I', '\n\n', 'he', 'could', 'not', 'then', 'avoid', 'it', 'but', 'her', 'touch', 'seem', '\n', 'painful', 'to', 'he', 'and', 'he', 'hold', 'her', 'hand', 'only', 'for', 'a', 'moment', '\n', 'during', 'all', 'this', 'time', 'he', 'be', 'evidently', 'struggle', 'for', 'composure', '\n', 'Elinor', 'watch', 'his', 'countenance', 'and', 'see', 'its', 'expression', '\n', 'become', 'more', 'tranquil', ' ', 'after', 'a', 'moment', 'pause', 'he', 'speak', '\n', 'with', 'calmness', '\n\n', 'I', 'do', 'myself', 'the', 'honour', 'of', 'call', 'in', 'Berkeley', '\n', 'Street', 'last', 'Tuesday', 'and', 'very', 'much', 'regret', 'that', 'I', 'be', '\n', 'not', 'fortunate', 'enough', 'to', 'find', 'yourself', 'and', 'Mrs', 'Jennings', '\n', 'at', 'home', ' ', 'my', 'card', 'be', 'not', 'lose', 'I', 'hope', '\n\n', 'but', 'have', 'you', 'not', 'receive', 'my', 'note', 'cry', 'Marianne', '\n', 'in', 'the', 'wildest', 'anxiety', ' ', 'here', 'be', 'some', 'mistake', 'I', 'be', '\n', 'suresome', 'dreadful', 'mistake', ' ', 'what', 'can', 'be', 'the', 'meaning', '\n', 'of', 'it', ' ', 'tell', 'I', 'Willoughby', 'for', 'heavens', 'sake', 'tell', 'I', '\n', 'what', 'be', 'the', 'matter', '\n\n', 'he', 'make', 'no', 'reply', 'his', 'complexion', 'change', 'and', 'all', 'his', '\n', 'embarrassment', 'return', 'but', 'as', 'if', 'on', 'catch', 'the', 'eye', '\n', 'of', 'the', 'young', 'lady', 'with', 'whom', 'he', 'have', 'be', 'previously', 'talk', '\n', 'he', 'feel', 'the', 'necessity', 'of', 'instant', 'exertion', 'he', 'recover', '\n', 'himself', 'again', 'and', 'after', 'say', 'yes', 'I', 'have', 'the', 'pleasure', '\n', 'of', 'receive', 'the', 'information', 'of', 'your', 'arrival', 'in', 'town', '\n', 'which', 'you', 'be', 'so', 'good', 'as', 'to', 'send', 'I', 'turn', 'hastily', 'away', '\n', 'with', 'a', 'slight', 'bow', 'and', 'join', 'his', 'friend', '\n\n', 'Marianne', 'now', 'look', 'dreadfully', 'white', 'and', 'unable', '\n', 'to', 'stand', 'sink', 'into', 'her', 'chair', 'and', 'Elinor', 'expect', 'every', '\n', 'moment', 'to', 'see', 'her', 'faint', 'try', 'to', 'screen', 'she', 'from', 'the', '\n', 'observation', 'of', 'other', 'while', 'revive', 'she', 'with', 'lavender', 'water', '\n\n', 'go', 'to', 'he', 'Elinor', 'she', 'cry', 'as', 'soon', 'as', 'she', '\n', 'could', 'speak', 'and', 'force', 'he', 'to', 'come', 'to', 'I', ' ', 'tell', 'he', '\n', 'I', 'must', 'see', 'he', 'againmust', 'speak', 'to', 'he', 'instantly', '\n', 'I', 'can', 'not', 'resti', 'shall', 'not', 'have', 'a', 'moment', 'peace', 'till', 'this', '\n', 'be', 'explainedsome', 'dreadful', 'misapprehension', 'or', 'other', '\n', 'oh', 'go', 'to', 'he', 'this', 'moment', '\n\n', 'how', 'can', 'that', 'be', 'do', 'no', 'my', 'dearest', 'Marianne', '\n', 'you', 'must', 'wait', ' ', 'this', 'be', 'not', 'the', 'place', 'for', 'explanation', '\n', 'wait', 'only', 'till', 'tomorrow', '\n\n', 'with', 'difficulty', 'however', 'could', 'she', 'prevent', 'she', '\n', 'from', 'follow', 'he', 'herself', 'and', 'to', 'persuade', 'she', 'to', 'check', '\n', 'her', 'agitation', 'to', 'wait', 'at', 'least', 'with', 'the', 'appearance', '\n', 'of', 'composure', 'till', 'she', 'might', 'speak', 'to', 'he', 'with', 'more', 'privacy', '\n', 'and', 'more', 'effect', 'be', 'impossible', 'for', 'Marianne', 'continue', '\n', 'incessantly', 'to', 'give', 'way', 'in', 'a', 'low', 'voice', 'to', 'the', 'misery', '\n', 'of', 'her', 'feeling', 'by', 'exclamation', 'of', 'wretchedness', '\n', 'in', 'a', 'short', 'time', 'Elinor', 'see', 'Willoughby', 'quit', 'the', 'room', 'by', 'the', '\n', 'door', 'towards', 'the', 'staircase', 'and', 'tell', 'Marianne', 'that', 'he', '\n', 'be', 'go', 'urge', 'the', 'impossibility', 'of', 'speak', 'to', 'he', 'again', '\n', 'that', 'evening', 'as', 'a', 'fresh', 'argument', 'for', 'she', 'to', 'be', 'calm', '\n', 'she', 'instantly', 'beg', 'her', 'sister', 'would', 'entreat', 'Lady', '\n', 'Middleton', 'to', 'take', 'they', 'home', 'as', 'she', 'be', 'too', 'miserable', '\n', 'to', 'stay', 'a', 'minute', 'long', '\n\n', 'Lady', 'Middleton', 'though', 'in', 'the', 'middle', 'of', 'a', 'rubber', '\n', 'on', 'be', 'inform', 'that', 'Marianne', 'be', 'unwell', 'be', 'too', '\n', 'polite', 'to', 'object', 'for', 'a', 'moment', 'to', 'her', 'wish', 'of', 'go', 'away', '\n', 'and', 'make', 'over', 'her', 'card', 'to', 'a', 'friend', 'they', 'depart', '\n', 'as', 'soon', 'the', 'carriage', 'could', 'be', 'find', ' ', 'Scarcely', 'a', 'word', '\n', 'be', 'speak', 'during', 'their', 'return', 'to', 'Berkeley', 'Street', '\n', 'Marianne', 'be', 'in', 'a', 'silent', 'agony', 'too', 'much', 'oppress', 'even', '\n', 'for', 'tear', 'but', 'as', 'Mrs', 'Jennings', 'be', 'luckily', 'not', 'come', 'home', '\n', 'they', 'could', 'go', 'directly', 'to', 'their', 'own', 'room', 'where', 'hartshorn', '\n', 'restore', 'she', 'a', 'little', 'to', 'herself', ' ', 'she', 'be', 'soon', 'undress', '\n', 'and', 'in', 'bed', 'and', 'as', 'she', 'seem', 'desirous', 'of', 'be', 'alone', '\n', 'her', 'sister', 'then', 'leave', 'she', 'and', 'while', 'she', 'wait', 'the', 'return', '\n', 'of', 'Mrs', 'Jennings', 'have', 'leisure', 'enough', 'for', 'think', 'over', '\n', 'the', 'past', '\n\n', 'that', 'some', 'kind', 'of', 'engagement', 'have', 'subsist', '\n', 'between', 'Willoughby', 'and', 'Marianne', 'she', 'could', 'not', 'doubt', '\n', 'and', 'that', 'Willoughby', 'be', 'weary', 'of', 'it', 'seem', 'equally', 'clear', '\n', 'for', 'however', 'Marianne', 'might', 'still', 'feed', 'her', 'own', 'wish', '\n', 'she', 'could', 'not', 'attribute', 'such', 'behaviour', 'to', 'mistake', '\n', 'or', 'misapprehension', 'of', 'any', 'kind', ' ', 'nothing', 'but', 'a', 'thorough', '\n', 'change', 'of', 'sentiment', 'could', 'account', 'for', 'it', ' ', 'her', 'indignation', '\n', 'would', 'have', 'be', 'still', 'strong', 'than', 'it', 'be', 'have', 'she', '\n', 'not', 'witness', 'that', 'embarrassment', 'which', 'seem', 'to', 'speak', '\n', 'a', 'consciousness', 'of', 'his', 'own', 'misconduct', 'and', 'prevent', '\n', 'she', 'from', 'believe', 'he', 'so', 'unprinciple', 'as', 'to', 'have', 'be', '\n', 'sport', 'with', 'the', 'affection', 'of', 'her', 'sister', 'from', 'the', 'first', '\n', 'without', 'any', 'design', 'that', 'would', 'bear', 'investigation', '\n', 'Absence', 'might', 'have', 'weaken', 'his', 'regard', 'and', 'convenience', '\n', 'might', 'have', 'determine', 'he', 'to', 'overcome', 'it', 'but', 'that', 'such', '\n', 'a', 'regard', 'have', 'formerly', 'exist', 'she', 'could', 'not', 'bring', 'herself', '\n', 'to', 'doubt', '\n\n', 'as', 'for', 'Marianne', 'on', 'the', 'pang', 'which', 'so', 'unhappy', 'a', 'meeting', '\n', 'must', 'already', 'have', 'give', 'she', 'and', 'on', 'those', 'still', 'more', '\n', 'severe', 'which', 'might', 'await', 'she', 'in', 'its', 'probable', 'consequence', '\n', 'she', 'could', 'not', 'reflect', 'without', 'the', 'deep', 'concern', '\n', 'her', 'own', 'situation', 'gain', 'in', 'the', 'comparison', 'for', 'while', 'she', '\n', 'could', 'esteem', 'Edward', 'as', 'much', 'as', 'ever', 'however', 'they', 'might', 'be', '\n', 'divide', 'in', 'future', 'her', 'mind', 'might', 'be', 'always', 'support', '\n', 'but', 'every', 'circumstance', 'that', 'could', 'embitter', 'such', 'an', 'evil', '\n', 'seem', 'unite', 'to', 'heighten', 'the', 'misery', 'of', 'Marianne', '\n', 'in', 'a', 'final', 'separation', 'from', 'Willoughbyin', 'an', 'immediate', '\n', 'and', 'irreconcilable', 'rupture', 'with', 'he', '\n\n\n\n', 'chapter', '29', '\n\n\n', 'before', 'the', 'housemaid', 'have', 'light', 'their', 'fire', 'the', 'next', 'day', '\n', 'or', 'the', 'sun', 'gain', 'any', 'power', 'over', 'a', 'cold', 'gloomy', 'morning', '\n', 'in', 'January', 'Marianne', 'only', 'half', 'dress', 'be', 'kneel', '\n', 'against', 'one', 'of', 'the', 'windowseat', 'for', 'the', 'sake', 'of', 'all', '\n', 'the', 'little', 'light', 'she', 'could', 'command', 'from', 'it', 'and', 'write', '\n', 'as', 'fast', 'as', 'a', 'continual', 'flow', 'of', 'tear', 'would', 'permit', 'she', '\n', 'in', 'this', 'situation', 'Elinor', 'rouse', 'from', 'sleep', 'by', 'her', 'agitation', '\n', 'and', 'sob', 'first', 'perceive', 'she', 'and', 'after', 'observe', 'she', '\n', 'for', 'a', 'few', 'moment', 'with', 'silent', 'anxiety', 'say', 'in', 'a', 'tone', '\n', 'of', 'the', 'most', 'considerate', 'gentleness', '\n\n', 'Marianne', 'may', 'I', 'ask', '\n\n', 'no', 'Elinor', 'she', 'reply', 'ask', 'nothing', 'you', 'will', '\n', 'soon', 'know', 'all', '\n\n', 'the', 'sort', 'of', 'desperate', 'calmness', 'with', 'which', 'this', 'be', 'say', '\n', 'last', 'no', 'long', 'than', 'while', 'she', 'speak', 'and', 'be', 'immediately', '\n', 'follow', 'by', 'a', 'return', 'of', 'the', 'same', 'excessive', 'affliction', '\n', 'it', 'be', 'some', 'minute', 'before', 'she', 'could', 'go', 'on', 'with', 'her', 'letter', '\n', 'and', 'the', 'frequent', 'burst', 'of', 'grief', 'which', 'still', 'oblige', 'she', '\n', 'at', 'interval', 'to', 'withhold', 'her', 'pen', 'be', 'proof', 'enough', 'of', 'her', '\n', 'feel', 'how', 'more', 'than', 'probable', 'it', 'be', 'that', 'she', 'be', 'write', '\n', 'for', 'the', 'last', 'time', 'to', 'Willoughby', '\n\n', 'Elinor', 'pay', 'she', 'every', 'quiet', 'and', 'unobtrusive', 'attention', '\n', 'in', 'her', 'power', 'and', 'she', 'would', 'have', 'try', 'to', 'sooth', 'and', '\n', 'tranquilize', 'she', 'still', 'more', 'have', 'not', 'Marianne', 'entreat', 'she', '\n', 'with', 'all', 'the', 'eagerness', 'of', 'the', 'most', 'nervous', 'irritability', '\n', 'not', 'to', 'speak', 'to', 'she', 'for', 'the', 'world', ' ', 'in', 'such', 'circumstance', '\n', 'it', 'be', 'well', 'for', 'both', 'that', 'they', 'should', 'not', 'be', 'long', 'together', '\n', 'and', 'the', 'restless', 'state', 'of', 'Mariannes', 'mind', 'not', 'only', 'prevent', '\n', 'she', 'from', 'remain', 'in', 'the', 'room', 'a', 'moment', 'after', 'she', 'be', 'dress', '\n', 'but', 'require', 'at', 'once', 'solitude', 'and', 'continual', 'change', 'of', 'place', '\n', 'make', 'she', 'wander', 'about', 'the', 'house', 'till', 'breakfast', 'time', 'avoid', '\n', 'the', 'sight', 'of', 'every', 'body', '\n\n', 'at', 'breakfast', 'she', 'neither', 'eat', 'nor', 'attempt', 'to', 'eat', '\n', 'any', 'thing', 'and', 'Elinors', 'attention', 'be', 'then', 'all', 'employ', '\n', 'not', 'in', 'urge', 'she', 'not', 'in', 'pity', 'she', 'nor', 'in', 'appear', '\n', 'to', 'regard', 'she', 'but', 'in', 'endeavour', 'to', 'engage', 'Mrs', 'Jennings', '\n', 'notice', 'entirely', 'to', 'herself', '\n\n', 'as', 'this', 'be', 'a', 'favourite', 'meal', 'with', 'Mrs', 'Jennings', '\n', 'it', 'last', 'a', 'considerable', 'time', 'and', 'they', 'be', 'just', 'set', '\n', 'themselves', 'after', 'it', 'round', 'the', 'common', 'working', 'table', 'when', 'a', '\n', 'letter', 'be', 'deliver', 'to', 'Marianne', 'which', 'she', 'eagerly', 'catch', '\n', 'from', 'the', 'servant', 'and', 'turn', 'of', 'a', 'deathlike', 'paleness', '\n', 'instantly', 'run', 'out', 'of', 'the', 'room', ' ', 'Elinor', 'who', 'see', 'as', 'plainly', '\n', 'by', 'this', 'as', 'if', 'she', 'have', 'see', 'the', 'direction', 'that', 'it', 'must', '\n', 'come', 'from', 'Willoughby', 'feel', 'immediately', 'such', 'a', 'sickness', '\n', 'at', 'heart', 'as', 'make', 'she', 'hardly', 'able', 'to', 'hold', 'up', 'her', 'head', '\n', 'and', 'sit', 'in', 'such', 'a', 'general', 'tremour', 'as', 'make', 'she', 'fear', 'it', '\n', 'impossible', 'to', 'escape', 'Mrs', 'Jennings', 'notice', ' ', 'that', 'good', 'lady', '\n', 'however', 'see', 'only', 'that', 'Marianne', 'have', 'receive', 'a', 'letter', '\n', 'from', 'Willoughby', 'which', 'appear', 'to', 'she', 'a', 'very', 'good', 'joke', '\n', 'and', 'which', 'she', 'treat', 'accordingly', 'by', 'hope', 'with', 'a', 'laugh', '\n', 'that', 'she', 'would', 'find', 'it', 'to', 'her', 'like', ' ', 'of', 'Elinors', 'distress', '\n', 'she', 'be', 'too', 'busily', 'employ', 'in', 'measure', 'length', 'of', 'worsted', '\n', 'for', 'her', 'rug', 'to', 'see', 'any', 'thing', 'at', 'all', 'and', 'calmly', 'continue', '\n', 'her', 'talk', 'as', 'soon', 'as', 'Marianne', 'disappear', 'she', 'say', '\n\n', 'upon', 'my', 'word', 'I', 'never', 'see', 'a', 'young', 'woman', 'so', '\n', 'desperately', 'in', 'love', 'in', 'my', 'life', ' ', 'my', 'girl', 'be', 'nothing', '\n', 'to', 'she', 'and', 'yet', 'they', 'use', 'to', 'be', 'foolish', 'enough', 'but', 'as', '\n', 'for', 'Miss', 'Marianne', 'she', 'be', 'quite', 'an', 'altered', 'creature', '\n', 'I', 'hope', 'from', 'the', 'bottom', 'of', 'my', 'heart', 'he', 'will', 'not', 'keep', 'she', '\n', 'wait', 'much', 'long', 'for', 'it', 'be', 'quite', 'grievous', 'to', 'see', 'she', '\n', 'look', 'so', 'ill', 'and', 'forlorn', ' ', 'Pray', 'when', 'be', 'they', 'to', 'be', 'marry', '\n\n', 'Elinor', 'though', 'never', 'less', 'disposed', 'to', 'speak', 'than', 'at', '\n', 'that', 'moment', 'oblige', 'herself', 'to', 'answer', 'such', 'an', 'attack', '\n', 'as', 'this', 'and', 'therefore', 'try', 'to', 'smile', 'reply', 'and', 'have', '\n', 'you', 'really', 'Maam', 'talk', 'yourself', 'into', 'a', 'persuasion', '\n', 'of', 'my', 'sister', 'be', 'engage', 'to', 'Mr', 'Willoughby', ' ', 'I', 'think', '\n', 'it', 'have', 'be', 'only', 'a', 'joke', 'but', 'so', 'serious', 'a', 'question', 'seem', '\n', 'to', 'imply', 'more', 'and', 'I', 'must', 'beg', 'therefore', 'that', 'you', 'will', 'not', '\n', 'deceive', 'yourself', 'any', 'long', ' ', 'I', 'do', 'assure', 'you', 'that', 'nothing', '\n', 'would', 'surprise', 'I', 'more', 'than', 'to', 'hear', 'of', 'their', 'be', 'go', '\n', 'to', 'be', 'marry', '\n\n', 'for', 'shame', 'for', 'shame', 'Miss', 'Dashwood', 'how', 'can', 'you', '\n', 'talk', 'so', ' ', 'do', 'not', 'we', 'all', 'know', 'that', 'it', 'must', 'be', 'a', 'match', 'that', '\n', 'they', 'be', 'over', 'head', 'and', 'ear', 'in', 'love', 'with', 'each', 'other', 'from', '\n', 'the', 'first', 'moment', 'they', 'meet', ' ', 'do', 'not', 'I', 'see', 'they', 'together', '\n', 'in', 'Devonshire', 'every', 'day', 'and', 'all', 'day', 'long', 'and', 'do', 'not', 'I', '\n', 'know', 'that', 'your', 'sister', 'come', 'to', 'town', 'with', 'I', 'on', 'purpose', '\n', 'to', 'buy', 'wedding', 'clothe', ' ', 'come', 'come', 'this', 'will', 'not', 'do', '\n', 'because', 'you', 'be', 'so', 'sly', 'about', 'it', 'yourself', 'you', 'think', 'nobody', '\n', 'else', 'have', 'any', 'sense', 'but', 'it', 'be', 'no', 'such', 'thing', 'I', 'can', 'tell', 'you', '\n', 'for', 'it', 'have', 'be', 'know', 'all', 'over', 'town', 'this', 'ever', 'so', 'long', '\n', 'I', 'tell', 'every', 'body', 'of', 'it', 'and', 'so', 'do', 'Charlotte', '\n\n', 'Indeed', 'Maam', 'say', 'Elinor', 'very', 'seriously', '\n', 'you', 'be', 'mistaken', ' ', 'indeed', 'you', 'be', 'do', 'a', 'very', 'unkind', 'thing', '\n', 'in', 'spread', 'the', 'report', 'and', 'you', 'will', 'find', 'that', 'you', 'have', '\n', 'though', 'you', 'will', 'not', 'believe', 'I', 'now', '\n\n', 'Mrs', 'Jennings', 'laugh', 'again', 'but', 'Elinor', 'have', 'not', '\n', 'spirit', 'to', 'say', 'more', 'and', 'eager', 'at', 'all', 'event', 'to', 'know', '\n', 'what', 'Willoughby', 'have', 'write', 'hurry', 'away', 'to', 'their', 'room', '\n', 'where', 'on', 'open', 'the', 'door', 'she', 'see', 'Marianne', 'stretch', 'on', '\n', 'the', 'bed', 'almost', 'choke', 'by', 'grief', 'one', 'letter', 'in', 'her', 'hand', '\n', 'and', 'two', 'or', 'three', 'other', 'lay', 'by', 'her', ' ', 'Elinor', 'draw', 'near', '\n', 'but', 'without', 'say', 'a', 'word', 'and', 'seat', 'herself', 'on', 'the', 'bed', '\n', 'take', 'her', 'hand', 'kiss', 'she', 'affectionately', 'several', 'time', '\n', 'and', 'then', 'give', 'way', 'to', 'a', 'burst', 'of', 'tear', 'which', 'at', 'first', '\n', 'be', 'scarcely', 'less', 'violent', 'than', 'Mariannes', 'the', 'latter', '\n', 'though', 'unable', 'to', 'speak', 'seem', 'to', 'feel', 'all', 'the', 'tenderness', '\n', 'of', 'this', 'behaviour', 'and', 'after', 'some', 'time', 'thus', 'spend', 'in', '\n', 'joint', 'affliction', 'she', 'put', 'all', 'the', 'letter', 'into', 'Elinors', 'hand', '\n', 'and', 'then', 'cover', 'her', 'face', 'with', 'her', 'handkerchief', '\n', 'almost', 'scream', 'with', 'agony', ' ', 'Elinor', 'who', 'know', 'that', 'such', 'grief', '\n', 'shocking', 'as', 'it', 'be', 'to', 'witness', 'it', 'must', 'have', 'its', 'course', '\n', 'watch', 'by', 'she', 'till', 'this', 'excess', 'of', 'suffering', 'have', 'somewhat', '\n', 'spend', 'itself', 'and', 'then', 'turn', 'eagerly', 'to', 'Willoughbys', 'letter', '\n', 'read', 'as', 'follow', '\n\n ', 'Bond', 'Street', 'January', '\n ', 'MY', 'DEAR', 'MADAM', '\n\n ', 'I', 'have', 'just', 'have', 'the', 'honour', 'of', 'receive', 'your', '\n ', 'letter', 'for', 'which', 'I', 'beg', 'to', 'return', 'my', 'sincere', '\n ', 'acknowledgment', ' ', 'I', 'be', 'much', 'concerned', 'to', 'find', 'there', '\n ', 'be', 'anything', 'in', 'my', 'behaviour', 'last', 'night', 'that', 'do', '\n ', 'not', 'meet', 'your', 'approbation', 'and', 'though', 'I', 'be', 'quite', 'at', '\n ', 'a', 'loss', 'to', 'discover', 'in', 'what', 'point', 'I', 'could', 'be', 'so', '\n ', 'unfortunate', 'as', 'to', 'offend', 'you', 'I', 'entreat', 'your', '\n ', 'forgiveness', 'of', 'what', 'I', 'can', 'assure', 'you', 'to', 'have', 'be', '\n ', 'perfectly', 'unintentional', ' ', 'I', 'shall', 'never', 'reflect', 'on', '\n ', 'my', 'former', 'acquaintance', 'with', 'your', 'family', 'in', 'Devonshire', '\n ', 'without', 'the', 'most', 'grateful', 'pleasure', 'and', 'flatter', '\n ', 'myself', 'it', 'will', 'not', 'be', 'break', 'by', 'any', 'mistake', 'or', '\n ', 'misapprehension', 'of', 'my', 'action', ' ', 'my', 'esteem', 'for', 'your', '\n ', 'whole', 'family', 'be', 'very', 'sincere', 'but', 'if', 'I', 'have', 'be', 'so', '\n ', 'unfortunate', 'as', 'to', 'give', 'rise', 'to', 'a', 'belief', 'of', 'more', 'than', '\n ', 'I', 'feel', 'or', 'mean', 'to', 'express', 'I', 'shall', 'reproach', 'myself', '\n ', 'for', 'not', 'having', 'be', 'more', 'guard', 'in', 'my', 'profession', '\n ', 'of', 'that', 'esteem', ' ', 'that', 'I', 'should', 'ever', 'have', 'mean', 'more', '\n ', 'you', 'will', 'allow', 'to', 'be', 'impossible', 'when', 'you', 'understand', '\n ', 'that', 'my', 'affection', 'have', 'be', 'long', 'engage', 'elsewhere', '\n ', 'and', 'it', 'will', 'not', 'be', 'many', 'week', 'I', 'believe', 'before', '\n ', 'this', 'engagement', 'be', 'fulfil', ' ', 'it', 'be', 'with', 'great', '\n ', 'regret', 'that', 'I', 'obey', 'your', 'command', 'in', 'return', 'the', '\n ', 'letter', 'with', 'which', 'I', 'have', 'be', 'honour', 'from', 'you', '\n ', 'and', 'the', 'lock', 'of', 'hair', 'which', 'you', 'so', 'obligingly', 'bestow', '\n ', 'on', 'I', '\n\n ', 'I', 'be', 'dear', 'Madam', '\n ', 'your', 'most', 'obedient', '\n ', 'humble', 'servant', '\n ', 'JOHN', 'WILLOUGHBY', '\n\n\n', 'with', 'what', 'indignation', 'such', 'a', 'letter', 'as', 'this', 'must', '\n', 'be', 'read', 'by', 'Miss', 'Dashwood', 'may', 'be', 'imagine', ' ', 'though', 'aware', '\n', 'before', 'she', 'begin', 'it', 'that', 'it', 'must', 'bring', 'a', 'confession', '\n', 'of', 'his', 'inconstancy', 'and', 'confirm', 'their', 'separation', 'for', 'ever', '\n', 'she', 'be', 'not', 'aware', 'that', 'such', 'language', 'could', 'be', 'suffer', '\n', 'to', 'announce', 'it', 'nor', 'could', 'she', 'have', 'suppose', 'Willoughby', '\n', 'capable', 'of', 'depart', 'so', 'far', 'from', 'the', 'appearance', 'of', 'every', '\n', 'honourable', 'and', 'delicate', 'feelingso', 'far', 'from', 'the', 'common', '\n', 'decorum', 'of', 'a', 'gentleman', 'as', 'to', 'send', 'a', 'letter', 'so', 'impudently', '\n', 'cruel', 'a', 'letter', 'which', 'instead', 'of', 'bring', 'with', 'his', 'desire', '\n', 'of', 'a', 'release', 'any', 'profession', 'of', 'regret', 'acknowledge', 'no', '\n', 'breach', 'of', 'faith', 'deny', 'all', 'peculiar', 'affection', 'whatever', '\n', 'a', 'letter', 'of', 'which', 'every', 'line', 'be', 'an', 'insult', 'and', 'which', '\n', 'proclaim', 'its', 'writer', 'to', 'be', 'deep', 'in', 'harden', 'villainy', '\n\n', 'she', 'pause', 'over', 'it', 'for', 'some', 'time', 'with', 'indignant', '\n', 'astonishment', 'then', 'read', 'it', 'again', 'and', 'again', 'but', 'every', '\n', 'perusal', 'only', 'serve', 'to', 'increase', 'her', 'abhorrence', 'of', 'the', 'man', '\n', 'and', 'so', 'bitter', 'be', 'her', 'feeling', 'against', 'he', 'that', 'she', '\n', 'dared', 'not', 'trust', 'herself', 'to', 'speak', 'lest', 'she', 'might', 'wound', '\n', 'Marianne', 'still', 'deeply', 'by', 'treat', 'their', 'disengagement', '\n', 'not', 'as', 'a', 'loss', 'to', 'she', 'of', 'any', 'possible', 'good', 'but', 'as', 'an', '\n', 'escape', 'from', 'the', 'bad', 'and', 'most', 'irremediable', 'of', 'all', '\n', 'evil', 'a', 'connection', 'for', 'life', 'with', 'an', 'unprincipled', 'man', '\n', 'as', 'a', 'deliverance', 'the', 'most', 'real', 'a', 'blessing', 'the', 'most', 'important', '\n\n', 'in', 'her', 'earnest', 'meditation', 'on', 'the', 'content', 'of', 'the', 'letter', '\n', 'on', 'the', 'depravity', 'of', 'that', 'mind', 'which', 'could', 'dictate', 'it', '\n', 'and', 'probably', 'on', 'the', 'very', 'different', 'mind', 'of', 'a', 'very', 'different', '\n', 'person', 'who', 'have', 'no', 'other', 'connection', 'whatever', 'with', 'the', 'affair', '\n', 'than', 'what', 'her', 'heart', 'give', 'he', 'with', 'every', 'thing', 'that', 'pass', '\n', 'Elinor', 'forget', 'the', 'immediate', 'distress', 'of', 'her', 'sister', '\n', 'forget', 'that', 'she', 'have', 'three', 'letter', 'on', 'her', 'lap', 'yet', 'unread', '\n', 'and', 'so', 'entirely', 'forget', 'how', 'long', 'she', 'have', 'be', 'in', 'the', 'room', '\n', 'that', 'when', 'on', 'hear', 'a', 'carriage', 'drive', 'up', 'to', 'the', 'door', '\n', 'she', 'go', 'to', 'the', 'window', 'to', 'see', 'who', 'could', 'be', 'come', 'so', '\n', 'unreasonably', 'early', 'she', 'be', 'all', 'astonishment', 'to', 'perceive', '\n', 'Mrs', 'Jenningss', 'chariot', 'which', 'she', 'know', 'have', 'not', 'be', '\n', 'order', 'till', 'one', ' ', 'determined', 'not', 'to', 'quit', 'Marianne', '\n', 'though', 'hopeless', 'of', 'contribute', 'at', 'present', 'to', 'her', 'ease', '\n', 'she', 'hurry', 'away', 'to', 'excuse', 'herself', 'from', 'attend', '\n', 'Mrs', 'Jennings', 'on', 'account', 'of', 'her', 'sister', 'be', 'indispose', '\n', 'Mrs', 'Jennings', 'with', 'a', 'thoroughly', 'goodhumoure', 'concern', '\n', 'for', 'its', 'cause', 'admit', 'the', 'excuse', 'most', 'readily', 'and', 'Elinor', '\n', 'after', 'see', 'she', 'safe', 'off', 'return', 'to', 'Marianne', 'whom', 'she', '\n', 'find', 'attempt', 'to', 'rise', 'from', 'the', 'bed', 'and', 'whom', 'she', 'reach', '\n', 'just', 'in', 'time', 'to', 'prevent', 'she', 'from', 'fall', 'on', 'the', 'floor', '\n', 'faint', 'and', 'giddy', 'from', 'a', 'long', 'want', 'of', 'proper', 'rest', 'and', 'food', '\n', 'for', 'it', 'be', 'many', 'day', 'since', 'she', 'have', 'any', 'appetite', 'and', 'many', '\n', 'night', 'since', 'she', 'have', 'really', 'sleep', 'and', 'now', 'when', 'her', '\n', 'mind', 'be', 'no', 'long', 'support', 'by', 'the', 'fever', 'of', 'suspense', '\n', 'the', 'consequence', 'of', 'all', 'this', 'be', 'feel', 'in', 'an', 'ache', 'head', '\n', 'a', 'weakened', 'stomach', 'and', 'a', 'general', 'nervous', 'faintness', '\n', 'a', 'glass', 'of', 'wine', 'which', 'Elinor', 'procure', 'for', 'she', 'directly', '\n', 'make', 'she', 'more', 'comfortable', 'and', 'she', 'be', 'at', 'last', 'able', 'to', 'express', '\n', 'some', 'sense', 'of', 'her', 'kindness', 'by', 'say', '\n\n', 'Poor', 'Elinor', 'how', 'unhappy', 'I', 'make', 'you', '\n\n', 'I', 'only', 'wish', 'reply', 'her', 'sister', 'there', 'be', '\n', 'any', 'thing', 'I', 'could', 'do', 'which', 'might', 'be', 'of', 'comfort', 'to', 'you', '\n\n', 'this', 'as', 'every', 'thing', 'else', 'would', 'have', 'be', '\n', 'be', 'too', 'much', 'for', 'Marianne', 'who', 'could', 'only', 'exclaim', '\n', 'in', 'the', 'anguish', 'of', 'her', 'heart', 'oh', 'Elinor', 'I', 'be', 'miserable', '\n', 'indeed', 'before', 'her', 'voice', 'be', 'entirely', 'lose', 'in', 'sobs', '\n\n', 'Elinor', 'could', 'no', 'long', 'witness', 'this', 'torrent', '\n', 'of', 'unresisted', 'grief', 'in', 'silence', '\n\n', 'Exert', 'yourself', 'dear', 'Marianne', 'she', 'cry', '\n', 'if', 'you', 'would', 'not', 'kill', 'yourself', 'and', 'all', 'who', 'love', 'you', '\n', 'think', 'of', 'your', 'mother', 'think', 'of', 'her', 'misery', 'while', 'you', 'suffer', '\n', 'for', 'her', 'sake', 'you', 'must', 'exert', 'yourself', '\n\n', 'I', 'can', 'not', 'I', 'can', 'not', 'cry', 'Marianne', 'leave', 'I', '\n', 'leave', 'I', 'if', 'I', 'distress', 'you', 'leave', 'I', 'hate', 'I', 'forget', 'I', '\n', 'but', 'do', 'not', 'torture', 'I', 'so', ' ', 'oh', 'how', 'easy', 'for', 'those', '\n', 'who', 'have', 'no', 'sorrow', 'of', 'their', 'own', 'to', 'talk', 'of', 'exertion', ' ', 'Happy', '\n', 'happy', 'Elinor', 'you', 'can', 'not', 'have', 'an', 'idea', 'of', 'what', 'I', 'suffer', '\n\n', 'do', 'you', 'call', 'I', 'happy', 'Marianne', ' ', 'ah', 'if', 'you', 'knewAnd', '\n', 'can', 'you', 'believe', 'I', 'to', 'be', 'so', 'while', 'I', 'see', 'you', 'so', 'wretched', '\n\n', 'forgive', 'I', 'forgive', 'I', 'throw', 'her', 'arm', 'round', '\n', 'her', 'sister', 'neck', 'I', 'know', 'you', 'feel', 'for', 'I', 'I', 'know', 'what', '\n', 'a', 'heart', 'you', 'have', 'but', 'yet', 'you', 'areyou', 'must', 'be', 'happy', '\n', 'Edward', 'love', 'youwhat', 'oh', 'what', 'can', 'do', 'away', 'such', 'happiness', '\n', 'as', 'that', '\n\n', 'many', 'many', 'circumstance', 'say', 'Elinor', 'solemnly', '\n\n', 'no', 'no', 'no', 'cry', 'Marianne', 'wildly', 'he', 'love', 'you', '\n', 'and', 'only', 'you', ' ', 'you', 'can', 'have', 'no', 'grief', '\n\n', 'I', 'can', 'have', 'no', 'pleasure', 'while', 'I', 'see', 'you', 'in', 'this', 'state', '\n\n', 'and', 'you', 'will', 'never', 'see', 'I', 'otherwise', ' ', 'mine', 'be', '\n', 'a', 'misery', 'which', 'nothing', 'can', 'do', 'away', '\n\n', 'you', 'must', 'not', 'talk', 'so', 'Marianne', ' ', 'have', 'you', 'no', '\n', 'comfort', 'no', 'friend', ' ', 'be', 'your', 'loss', 'such', 'as', 'leave', '\n', 'no', 'opening', 'for', 'consolation', ' ', 'Much', 'as', 'you', 'suffer', 'now', '\n', 'think', 'of', 'what', 'you', 'would', 'have', 'suffer', 'if', 'the', 'discovery', '\n', 'of', 'his', 'character', 'have', 'be', 'delay', 'to', 'a', 'later', 'period', '\n', 'if', 'your', 'engagement', 'have', 'be', 'carry', 'on', 'for', 'month', 'and', 'month', '\n', 'as', 'it', 'might', 'have', 'be', 'before', 'he', 'choose', 'to', 'put', 'an', 'end', 'to', 'it', '\n', 'every', 'additional', 'day', 'of', 'unhappy', 'confidence', 'on', 'your', 'side', '\n', 'would', 'have', 'make', 'the', 'blow', 'more', 'dreadful', '\n\n', 'Engagement', 'cry', 'Marianne', 'there', 'have', 'be', '\n', 'no', 'engagement', '\n\n', 'no', 'engagement', '\n\n', 'no', 'he', 'be', 'not', 'so', 'unworthy', 'as', 'you', 'believe', 'he', '\n', 'he', 'have', 'break', 'no', 'faith', 'with', 'I', '\n\n', 'but', 'he', 'tell', 'you', 'that', 'he', 'love', 'you', '\n\n', 'Yesnonever', 'absolutely', ' ', 'it', 'be', 'every', 'day', 'imply', '\n', 'but', 'never', 'professedly', 'declare', ' ', 'sometimes', 'I', 'think', 'it', '\n', 'have', 'beenbut', 'it', 'never', 'be', '\n\n', 'yet', 'you', 'write', 'to', 'he', '\n\n', 'Yescould', 'that', 'be', 'wrong', 'after', 'all', 'that', 'have', 'pass', '\n', 'but', 'I', 'can', 'not', 'talk', '\n\n', 'Elinor', 'say', 'no', 'more', 'and', 'turn', 'again', 'to', 'the', 'three', '\n', 'letter', 'which', 'now', 'raise', 'a', 'much', 'strong', 'curiosity', '\n', 'than', 'before', 'directly', 'run', 'over', 'the', 'content', 'of', 'all', '\n', 'the', 'first', 'which', 'be', 'what', 'her', 'sister', 'have', 'send', 'he', '\n', 'on', 'their', 'arrival', 'in', 'town', 'be', 'to', 'this', 'effect', '\n\n ', 'Berkeley', 'Street', 'January', '\n\n ', 'how', 'surprised', 'you', 'will', 'be', 'Willoughby', 'on', '\n ', 'receive', 'this', 'and', 'I', 'think', 'you', 'will', 'feel', 'something', '\n ', 'more', 'than', 'surprise', 'when', 'you', 'know', 'that', 'I', 'be', 'in', 'town', '\n ', 'an', 'opportunity', 'of', 'come', 'hither', 'though', 'with', 'Mrs', '\n ', 'Jennings', 'be', 'a', 'temptation', 'we', 'could', 'not', 'resist', '\n ', 'I', 'wish', 'you', 'may', 'receive', 'this', 'in', 'time', 'to', 'come', 'here', '\n ', 'tonight', 'but', 'I', 'will', 'not', 'depend', 'on', 'it', ' ', 'at', 'any', 'rate', '\n ', 'I', 'shall', 'expect', 'you', 'tomorrow', 'for', 'the', 'present', 'adieu', '\n\n ', 'MD', '\n\n', 'her', 'second', 'note', 'which', 'have', 'be', 'write', 'on', 'the', 'morning', '\n', 'after', 'the', 'dance', 'at', 'the', 'Middletons', 'be', 'in', 'these', 'word', '\n\n ', 'I', 'can', 'not', 'express', 'my', 'disappointment', 'in', 'having', '\n ', 'miss', 'you', 'the', 'day', 'before', 'yesterday', 'nor', 'my', 'astonishment', '\n ', 'at', 'not', 'having', 'receive', 'any', 'answer', 'to', 'a', 'note', 'which', '\n ', 'I', 'send', 'you', 'above', 'a', 'week', 'ago', ' ', 'I', 'have', 'be', 'expect', '\n ', 'to', 'hear', 'from', 'you', 'and', 'still', 'more', 'to', 'see', 'you', 'every', '\n ', 'hour', 'of', 'the', 'day', ' ', 'pray', 'call', 'again', 'as', 'soon', 'as', 'possible', '\n ', 'and', 'explain', 'the', 'reason', 'of', 'my', 'having', 'expect', 'this', '\n ', 'in', 'vain', ' ', 'you', 'have', 'well', 'come', 'early', 'another', 'time', '\n ', 'because', 'we', 'be', 'generally', 'out', 'by', 'one', ' ', 'we', 'be', 'last', '\n ', 'night', 'at', 'Lady', 'Middletons', 'where', 'there', 'be', 'a', 'dance', '\n ', 'I', 'have', 'be', 'tell', 'that', 'you', 'be', 'ask', 'to', 'be', 'of', 'the', '\n ', 'party', ' ', 'but', 'could', 'it', 'be', 'so', ' ', 'you', 'must', 'be', 'very', 'much', '\n ', 'alter', 'indeed', 'since', 'we', 'part', 'if', 'that', 'could', 'be', '\n ', 'the', 'case', 'and', 'you', 'not', 'there', ' ', 'but', 'I', 'will', 'not', 'suppose', '\n ', 'this', 'possible', 'and', 'I', 'hope', 'very', 'soon', 'to', 'receive', 'your', '\n ', 'personal', 'assurance', 'of', 'its', 'be', 'otherwise', '\n\n ', 'MD', '\n\n', 'the', 'content', 'of', 'her', 'last', 'note', 'to', 'he', 'be', 'these', '\n\n ', 'what', 'be', 'I', 'to', 'imagine', 'Willoughby', 'by', 'your', '\n ', 'behaviour', 'last', 'night', ' ', 'again', 'I', 'demand', 'an', 'explanation', '\n ', 'of', 'it', ' ', 'I', 'be', 'prepared', 'to', 'meet', 'you', 'with', 'the', 'pleasure', '\n ', 'which', 'our', 'separation', 'naturally', 'produce', 'with', 'the', '\n ', 'familiarity', 'which', 'our', 'intimacy', 'at', 'Barton', 'appear', '\n ', 'to', 'I', 'to', 'justify', ' ', 'I', 'be', 'repulse', 'indeed', 'I', 'have', '\n ', 'pass', 'a', 'wretched', 'night', 'in', 'endeavour', 'to', 'excuse', '\n ', 'a', 'conduct', 'which', 'can', 'scarcely', 'be', 'call', 'less', 'than', '\n ', 'insulting', 'but', 'though', 'I', 'have', 'not', 'yet', 'be', 'able', 'to', '\n ', 'form', 'any', 'reasonable', 'apology', 'for', 'your', 'behaviour', '\n ', 'I', 'be', 'perfectly', 'ready', 'to', 'hear', 'your', 'justification', 'of', '\n ', 'it', ' ', 'you', 'have', 'perhaps', 'be', 'misinformed', 'or', 'purposely', '\n ', 'deceive', 'in', 'something', 'concern', 'I', 'which', 'may', 'have', '\n ', 'lower', 'I', 'in', 'your', 'opinion', ' ', 'tell', 'I', 'what', 'it', 'be', '\n ', 'explain', 'the', 'ground', 'on', 'which', 'you', 'act', 'and', 'I', 'shall', '\n ', 'be', 'satisfied', 'in', 'be', 'able', 'to', 'satisfy', 'you', ' ', 'it', '\n ', 'would', 'grieve', 'I', 'indeed', 'to', 'be', 'oblige', 'to', 'think', 'ill', '\n ', 'of', 'you', 'but', 'if', 'I', 'be', 'to', 'do', 'it', 'if', 'I', 'be', 'to', 'learn', 'that', '\n ', 'you', 'be', 'not', 'what', 'we', 'have', 'hitherto', 'believe', 'you', 'that', '\n ', 'your', 'regard', 'for', 'we', 'all', 'be', 'insincere', 'that', 'your', '\n ', 'behaviour', 'to', 'I', 'be', 'intend', 'only', 'to', 'deceive', 'let', '\n ', 'it', 'be', 'tell', 'as', 'soon', 'as', 'possible', ' ', 'my', 'feeling', 'be', 'at', '\n ', 'present', 'in', 'a', 'state', 'of', 'dreadful', 'indecision', 'I', 'wish', '\n ', 'to', 'acquit', 'you', 'but', 'certainty', 'on', 'either', 'side', 'will', 'be', '\n ', 'ease', 'to', 'what', 'I', 'now', 'suffer', ' ', 'if', 'your', 'sentiment', 'be', '\n ', 'no', 'long', 'what', 'they', 'be', 'you', 'will', 'return', 'my', 'note', '\n ', 'and', 'the', 'lock', 'of', 'my', 'hair', 'which', 'be', 'in', 'your', 'possession', '\n\n ', 'MD', '\n\n', 'that', 'such', 'letter', 'so', 'full', 'of', 'affection', 'and', 'confidence', '\n', 'could', 'have', 'be', 'so', 'answer', 'Elinor', 'for', 'Willoughbys', 'sake', '\n', 'would', 'have', 'be', 'unwilling', 'to', 'believe', ' ', 'but', 'her', 'condemnation', '\n', 'of', 'he', 'do', 'not', 'blind', 'she', 'to', 'the', 'impropriety', 'of', 'their', '\n', 'having', 'be', 'write', 'at', 'all', 'and', 'she', 'be', 'silently', 'grieve', '\n', 'over', 'the', 'imprudence', 'which', 'have', 'hazard', 'such', 'unsolicited', '\n', 'proof', 'of', 'tenderness', 'not', 'warrant', 'by', 'anything', 'precede', '\n', 'and', 'most', 'severely', 'condemn', 'by', 'the', 'event', 'when', 'Marianne', '\n', 'perceive', 'that', 'she', 'have', 'finish', 'the', 'letter', 'observe', 'to', '\n', 'she', 'that', 'they', 'contain', 'nothing', 'but', 'what', 'any', 'one', 'would', '\n', 'have', 'write', 'in', 'the', 'same', 'situation', '\n\n', 'I', 'feel', 'myself', 'she', 'add', 'to', 'be', 'as', 'solemnly', '\n', 'engage', 'to', 'he', 'as', 'if', 'the', 'strict', 'legal', 'covenant', '\n', 'have', 'bind', 'we', 'to', 'each', 'other', '\n\n', 'I', 'can', 'believe', 'it', 'say', 'Elinor', 'but', 'unfortunately', '\n', 'he', 'do', 'not', 'feel', 'the', 'same', '\n\n', 'he', 'do', 'feel', 'the', 'same', 'elinorfor', 'week', 'and', 'week', 'he', '\n', 'feel', 'it', ' ', 'I', 'know', 'he', 'do', ' ', 'whatever', 'may', 'have', 'change', 'he', 'now', 'and', '\n', 'nothing', 'but', 'the', 'black', 'art', 'employ', 'against', 'I', 'can', 'have', 'do', '\n', 'it', 'I', 'be', 'once', 'as', 'dear', 'to', 'he', 'as', 'my', 'own', 'soul', 'could', 'wish', '\n', 'this', 'lock', 'of', 'hair', 'which', 'now', 'he', 'can', 'so', 'readily', 'give', 'up', '\n', 'be', 'beg', 'of', 'I', 'with', 'the', 'most', 'earnest', 'supplication', '\n', 'have', 'you', 'see', 'his', 'look', 'his', 'manner', 'have', 'you', 'hear', 'his', 'voice', '\n', 'at', 'that', 'moment', ' ', 'have', 'you', 'forget', 'the', 'last', 'evening', 'of', 'our', '\n', 'be', 'together', 'at', 'Barton', ' ', 'the', 'morning', 'that', 'we', 'part', '\n', 'too', ' ', 'when', 'he', 'tell', 'I', 'that', 'it', 'might', 'be', 'many', 'week', 'before', '\n', 'we', 'meet', 'againhis', 'distresscan', 'I', 'ever', 'forget', 'his', 'distress', '\n\n', 'for', 'a', 'moment', 'or', 'two', 'she', 'could', 'say', 'no', 'more', '\n', 'but', 'when', 'this', 'emotion', 'have', 'pass', 'away', 'she', 'add', '\n', 'in', 'a', 'firm', 'tone', '\n\n', 'Elinor', 'I', 'have', 'be', 'cruelly', 'use', 'but', 'not', 'by', 'Willoughby', '\n\n', 'Dearest', 'Marianne', 'who', 'but', 'himself', ' ', 'by', 'whom', 'can', 'he', '\n', 'have', 'be', 'instigate', '\n\n', 'by', 'all', 'the', 'world', 'rather', 'than', 'by', 'his', 'own', 'heart', '\n', 'I', 'could', 'rather', 'believe', 'every', 'creature', 'of', 'my', 'acquaintance', '\n', 'league', 'together', 'to', 'ruin', 'I', 'in', 'his', 'opinion', 'than', 'believe', '\n', 'his', 'nature', 'capable', 'of', 'such', 'cruelty', ' ', 'this', 'woman', 'of', 'whom', 'he', '\n', 'writeswhoever', 'she', 'beor', 'any', 'one', 'in', 'short', 'but', 'your', 'own', '\n', 'dear', 'self', 'mama', 'and', 'Edward', 'may', 'have', 'be', 'so', 'barbarous', '\n', 'to', 'bely', 'I', ' ', 'beyond', 'you', 'three', 'be', 'there', 'a', 'creature', '\n', 'in', 'the', 'world', 'whom', 'I', 'would', 'not', 'rather', 'suspect', 'of', 'evil', '\n', 'than', 'Willoughby', 'whose', 'heart', 'I', 'know', 'so', 'well', '\n\n', 'Elinor', 'would', 'not', 'contend', 'and', 'only', 'reply', '\n', 'whoever', 'may', 'have', 'be', 'so', 'detestably', 'your', 'enemy', 'let', 'they', '\n', 'be', 'cheat', 'of', 'their', 'malignant', 'triumph', 'my', 'dear', 'sister', '\n', 'by', 'see', 'how', 'nobly', 'the', 'consciousness', 'of', 'your', 'own', '\n', 'innocence', 'and', 'good', 'intention', 'support', 'your', 'spirit', '\n', 'it', 'be', 'a', 'reasonable', 'and', 'laudable', 'pride', 'which', 'resist', '\n', 'such', 'malevolence', '\n\n', 'no', 'no', 'cried', 'Marianne', 'misery', 'such', 'as', 'mine', 'have', '\n', 'no', 'pride', ' ', 'I', 'care', 'not', 'who', 'know', 'that', 'I', 'be', 'wretched', '\n', 'the', 'triumph', 'of', 'see', 'I', 'so', 'may', 'be', 'open', 'to', 'all', 'the', 'world', '\n', 'Elinor', 'Elinor', 'they', 'who', 'suffer', 'little', 'may', 'be', 'proud', 'and', '\n', 'independent', 'as', 'they', 'likemay', 'resist', 'insult', 'or', 'return', '\n', 'mortificationbut', 'I', 'can', 'not', ' ', 'I', 'must', 'feeli', 'must', 'be', '\n', 'wretchedand', 'they', 'be', 'welcome', 'to', 'enjoy', 'the', 'consciousness', '\n', 'of', 'it', 'that', 'can', '\n\n', 'but', 'for', 'my', 'mother', 'sake', 'and', 'mine', '\n\n', 'I', 'would', 'do', 'more', 'than', 'for', 'my', 'own', ' ', 'but', 'to', 'appear', '\n', 'happy', 'when', 'I', 'be', 'so', 'miserableOh', 'who', 'can', 'require', 'it', '\n\n', 'again', 'they', 'be', 'both', 'silent', ' ', 'Elinor', 'be', 'employ', '\n', 'in', 'walk', 'thoughtfully', 'from', 'the', 'fire', 'to', 'the', 'window', '\n', 'from', 'the', 'window', 'to', 'the', 'fire', 'without', 'know', 'that', 'she', '\n', 'receive', 'warmth', 'from', 'one', 'or', 'discerning', 'object', 'through', '\n', 'the', 'other', 'and', 'Marianne', 'seat', 'at', 'the', 'foot', 'of', 'the', 'bed', '\n', 'with', 'her', 'head', 'lean', 'against', 'one', 'of', 'its', 'post', '\n', 'again', 'take', 'up', 'Willoughbys', 'letter', 'and', 'after', 'shudder', '\n', 'over', 'every', 'sentence', 'exclaim', '\n\n', 'it', 'be', 'too', 'much', 'oh', 'Willoughby', 'Willoughby', 'could', 'this', '\n', 'be', 'yours', ' ', 'cruel', 'cruelnothing', 'can', 'acquit', 'you', ' ', 'Elinor', '\n', 'nothing', 'can', ' ', 'whatever', 'he', 'might', 'have', 'hear', 'against', 'I', '\n', 'ought', 'he', 'not', 'to', 'have', 'suspend', 'his', 'belief', 'ought', 'he', 'not', 'to', '\n', 'have', 'tell', 'I', 'of', 'it', 'to', 'have', 'give', 'I', 'the', 'power', 'of', 'clear', '\n', 'myself', 'the', 'lock', 'of', 'hair', 'repeat', 'it', 'from', 'the', 'letter', '\n', 'which', 'you', 'so', 'obligingly', 'bestow', 'on', 'methat', 'be', 'unpardonable', '\n', 'Willoughby', 'where', 'be', 'your', 'heart', 'when', 'you', 'write', 'those', 'word', '\n', 'oh', 'barbarously', 'insolentelinor', 'can', 'he', 'be', 'justify', '\n\n', 'no', 'Marianne', 'in', 'no', 'possible', 'way', '\n\n', 'and', 'yet', 'this', 'womanwho', 'know', 'what', 'her', 'art', 'may', '\n', 'have', 'beenhow', 'long', 'it', 'may', 'have', 'be', 'premeditate', '\n', 'and', 'how', 'deeply', 'contrive', 'by', 'herwho', 'be', 'shewho', 'can', '\n', 'she', 'bewhom', 'do', 'I', 'ever', 'hear', 'he', 'talk', 'of', 'as', 'young', 'and', '\n', 'attractive', 'among', 'his', 'female', 'acquaintanceOh', 'no', 'one', '\n', 'no', 'onehe', 'talk', 'to', 'I', 'only', 'of', 'myself', '\n\n', 'another', 'pause', 'ensue', 'Marianne', 'be', 'greatly', 'agitated', '\n', 'and', 'it', 'end', 'thus', '\n\n', 'Elinor', 'I', 'must', 'go', 'home', ' ', 'I', 'must', 'go', 'and', 'comfort', 'mama', '\n', 'can', 'not', 'we', 'be', 'go', 'tomorrow', '\n\n', 'Tomorrow', 'Marianne', '\n\n', 'yes', 'why', 'should', 'I', 'stay', 'here', 'I', 'come', 'only', 'for', '\n', 'Willoughbys', 'sakeand', 'now', 'who', 'care', 'for', 'I', 'who', 'regard', 'I', '\n\n', 'it', 'would', 'be', 'impossible', 'to', 'go', 'tomorrow', 'we', 'owe', '\n', 'Mrs', 'Jennings', 'much', 'more', 'than', 'civility', 'and', 'civility', 'of', '\n', 'the', 'common', 'kind', 'must', 'prevent', 'such', 'a', 'hasty', 'removal', 'as', 'that', '\n\n', 'well', 'then', 'another', 'day', 'or', 'two', 'perhaps', 'but', 'I', 'can', 'not', '\n', 'stay', 'here', 'long', 'I', 'can', 'not', 'stay', 'to', 'endure', 'the', 'question', '\n', 'and', 'remark', 'of', 'all', 'these', 'people', ' ', 'the', 'Middletons', 'and', '\n', 'Palmershow', 'be', 'I', 'to', 'bear', 'their', 'pity', ' ', 'the', 'pity', 'of', 'such', '\n', 'a', 'woman', 'as', 'Lady', 'Middleton', ' ', 'oh', 'what', 'would', 'he', 'say', 'to', 'that', '\n\n', 'Elinor', 'advise', 'she', 'to', 'lie', 'down', 'again', 'and', 'for', 'a', '\n', 'moment', 'she', 'do', 'so', 'but', 'no', 'attitude', 'could', 'give', 'her', 'ease', '\n', 'and', 'in', 'restless', 'pain', 'of', 'mind', 'and', 'body', 'she', 'move', 'from', 'one', '\n', 'posture', 'to', 'another', 'till', 'grow', 'more', 'and', 'more', 'hysterical', '\n', 'her', 'sister', 'could', 'with', 'difficulty', 'keep', 'she', 'on', 'the', 'bed', 'at', 'all', '\n', 'and', 'for', 'some', 'time', 'be', 'fearful', 'of', 'be', 'constrain', 'to', 'call', '\n', 'for', 'assistance', ' ', 'some', 'lavender', 'drop', 'however', 'which', 'she', '\n', 'be', 'at', 'length', 'persuade', 'to', 'take', 'be', 'of', 'use', 'and', 'from', '\n', 'that', 'time', 'till', 'Mrs', 'Jennings', 'return', 'she', 'continue', '\n', 'on', 'the', 'bed', 'quiet', 'and', 'motionless', '\n\n\n\n', 'chapter', '30', '\n\n\n', 'Mrs', 'Jennings', 'come', 'immediately', 'to', 'their', 'room', 'on', 'her', 'return', '\n', 'and', 'without', 'wait', 'to', 'have', 'her', 'request', 'of', 'admittance', 'answer', '\n', 'open', 'the', 'door', 'and', 'walk', 'in', 'with', 'a', 'look', 'of', 'real', 'concern', '\n\n', 'how', 'do', 'you', 'do', 'my', 'dearsaid', 'she', 'in', 'a', 'voice', 'of', 'great', '\n', 'compassion', 'to', 'Marianne', 'who', 'turn', 'away', 'her', 'face', 'without', '\n', 'attempt', 'to', 'answer', '\n\n', 'how', 'be', 'she', 'Miss', 'DashwoodPoor', 'thing', 'she', 'look', 'very', 'bad', '\n', 'no', 'wonder', ' ', 'ay', 'it', 'be', 'but', 'too', 'true', ' ', 'he', 'be', 'to', 'be', 'marry', '\n', 'very', 'soona', 'goodfornothe', 'fellow', ' ', 'I', 'have', 'no', 'patience', '\n', 'with', 'he', ' ', 'Mrs', 'Taylor', 'tell', 'I', 'of', 'it', 'half', 'an', 'hour', 'ago', '\n', 'and', 'she', 'be', 'tell', 'it', 'by', 'a', 'particular', 'friend', 'of', 'Miss', '\n', 'Grey', 'herself', 'else', 'I', 'be', 'sure', 'I', 'should', 'not', 'have', 'believe', 'it', '\n', 'and', 'I', 'be', 'almost', 'ready', 'to', 'sink', 'as', 'it', 'be', ' ', 'well', 'say', 'I', '\n', 'all', 'I', 'can', 'say', 'be', 'that', 'if', 'this', 'be', 'true', 'he', 'have', 'use', '\n', 'a', 'young', 'lady', 'of', 'my', 'acquaintance', 'abominably', 'ill', 'and', 'I', '\n', 'wish', 'with', 'all', 'my', 'soul', 'his', 'wife', 'may', 'plague', 'his', 'heart', 'out', '\n', 'and', 'so', 'I', 'shall', 'always', 'say', 'my', 'dear', 'you', 'may', 'depend', 'on', 'it', '\n', 'I', 'have', 'no', 'notion', 'of', 'men', 'go', 'on', 'in', 'this', 'way', 'and', 'if', 'ever', '\n', 'I', 'meet', 'he', 'again', 'I', 'will', 'give', 'he', 'such', 'a', 'dressing', 'as', 'he', '\n', 'have', 'not', 'have', 'this', 'many', 'a', 'day', ' ', 'but', 'there', 'be', 'one', 'comfort', '\n', 'my', 'dear', 'Miss', 'Marianne', 'he', 'be', 'not', 'the', 'only', 'young', 'man', '\n', 'in', 'the', 'world', 'worth', 'have', 'and', 'with', 'your', 'pretty', 'face', '\n', 'you', 'will', 'never', 'want', 'admirer', ' ', 'well', 'poor', 'thing', ' ', 'I', 'will', 'not', '\n', 'disturb', 'she', 'any', 'long', 'for', 'she', 'have', 'well', 'have', 'her', 'cry', '\n', 'out', 'at', 'once', 'and', 'have', 'do', 'with', ' ', 'the', 'Parrys', 'and', 'Sandersons', '\n', 'luckily', 'be', 'come', 'tonight', 'you', 'know', 'and', 'that', 'will', 'amuse', 'she', '\n\n', 'she', 'then', 'go', 'away', 'walk', 'on', 'tiptoe', 'out', 'of', 'the', 'room', '\n', 'as', 'if', 'she', 'suppose', 'her', 'young', 'friend', 'affliction', 'could', '\n', 'be', 'increase', 'by', 'noise', '\n\n', 'Marianne', 'to', 'the', 'surprise', 'of', 'her', 'sister', '\n', 'determine', 'on', 'dining', 'with', 'they', ' ', 'Elinor', 'even', 'advise', '\n', 'she', 'against', 'it', ' ', 'but', 'no', 'she', 'would', 'go', 'down', 'she', 'could', '\n', 'bear', 'it', 'very', 'well', 'and', 'the', 'bustle', 'about', 'she', 'would', '\n', 'be', 'less', ' ', 'Elinor', 'please', 'to', 'have', 'she', 'govern', 'for', 'a', '\n', 'moment', 'by', 'such', 'a', 'motive', 'though', 'believe', 'it', 'hardly', '\n', 'possible', 'that', 'she', 'could', 'sit', 'out', 'the', 'dinner', 'say', 'no', 'more', '\n', 'and', 'adjust', 'her', 'dress', 'for', 'she', 'as', 'well', 'as', 'she', 'could', '\n', 'while', 'Marianne', 'still', 'remain', 'on', 'the', 'bed', 'be', 'ready', '\n', 'to', 'assist', 'she', 'into', 'the', 'dining', 'room', 'as', 'soon', 'as', 'they', 'be', '\n', 'summon', 'to', 'it', '\n\n', 'when', 'there', 'though', 'look', 'most', 'wretchedly', '\n', 'she', 'eat', 'more', 'and', 'be', 'calm', 'than', 'her', 'sister', 'have', 'expect', '\n', 'have', 'she', 'try', 'to', 'speak', 'or', 'have', 'she', 'be', 'conscious', 'of', 'half', '\n', 'Mrs', 'Jenningss', 'wellmeant', 'but', 'illjudged', 'attention', '\n', 'to', 'she', 'this', 'calmness', 'could', 'not', 'have', 'be', 'maintain', '\n', 'but', 'not', 'a', 'syllable', 'escape', 'her', 'lip', 'and', 'the', 'abstraction', '\n', 'of', 'her', 'thought', 'preserve', 'she', 'in', 'ignorance', 'of', 'every', 'thing', '\n', 'that', 'be', 'pass', 'before', 'her', '\n\n', 'Elinor', 'who', 'do', 'justice', 'to', 'Mrs', 'Jenningss', 'kindness', '\n', 'though', 'its', 'effusion', 'be', 'often', 'distress', 'and', 'sometimes', '\n', 'almost', 'ridiculous', 'make', 'she', 'those', 'acknowledgment', '\n', 'and', 'return', 'she', 'those', 'civility', 'which', 'her', 'sister', 'could', '\n', 'not', 'make', 'or', 'return', 'for', 'herself', ' ', 'their', 'good', 'friend', 'see', '\n', 'that', 'Marianne', 'be', 'unhappy', 'and', 'feel', 'that', 'every', 'thing', '\n', 'be', 'due', 'to', 'she', 'which', 'might', 'make', 'she', 'at', 'all', 'less', 'so', '\n', 'she', 'treat', 'she', 'therefore', 'with', 'all', 'the', 'indulgent', 'fondness', '\n', 'of', 'a', 'parent', 'towards', 'a', 'favourite', 'child', 'on', 'the', 'last', 'day', 'of', '\n', 'its', 'holiday', ' ', 'Marianne', 'be', 'to', 'have', 'the', 'good', 'place', 'by', 'the', 'fire', '\n', 'be', 'to', 'be', 'tempt', 'to', 'eat', 'by', 'every', 'delicacy', 'in', 'the', 'house', '\n', 'and', 'to', 'be', 'amuse', 'by', 'the', 'relation', 'of', 'all', 'the', 'news', 'of', 'the', 'day', '\n', 'have', 'not', 'Elinor', 'in', 'the', 'sad', 'countenance', 'of', 'her', 'sister', '\n', 'see', 'a', 'check', 'to', 'all', 'mirth', 'she', 'could', 'have', 'be', 'entertain', '\n', 'by', 'Mrs', 'Jenningss', 'endeavour', 'to', 'cure', 'a', 'disappointment', 'in', 'love', '\n', 'by', 'a', 'variety', 'of', 'sweetmeat', 'and', 'olive', 'and', 'a', 'good', 'fire', '\n', 'as', 'soon', 'however', 'as', 'the', 'consciousness', 'of', 'all', 'this', 'be', '\n', 'force', 'by', 'continual', 'repetition', 'on', 'Marianne', 'she', 'could', '\n', 'stay', 'no', 'long', ' ', 'with', 'a', 'hasty', 'exclamation', 'of', 'Misery', '\n', 'and', 'a', 'sign', 'to', 'her', 'sister', 'not', 'to', 'follow', 'she', 'she', 'directly', 'get', '\n', 'up', 'and', 'hurry', 'out', 'of', 'the', 'room', '\n\n', 'poor', 'soul', 'cry', 'Mrs', 'Jennings', 'as', 'soon', 'as', 'she', 'be', 'go', '\n', 'how', 'it', 'grieve', 'I', 'to', 'see', 'she', ' ', 'and', 'I', 'declare', 'if', 'she', 'be', '\n', 'not', 'go', 'away', 'without', 'finish', 'her', 'wine', ' ', 'and', 'the', 'dry', '\n', 'cherry', 'too', ' ', 'Lord', 'nothing', 'seem', 'to', 'do', 'she', 'any', 'good', '\n', 'I', 'be', 'sure', 'if', 'I', 'know', 'of', 'any', 'thing', 'she', 'would', 'like', 'I', 'would', '\n', 'send', 'all', 'over', 'the', 'town', 'for', 'it', ' ', 'well', 'it', 'be', 'the', 'odd', '\n', 'thing', 'to', 'I', 'that', 'a', 'man', 'should', 'use', 'such', 'a', 'pretty', 'girl', '\n', 'so', 'ill', ' ', 'but', 'when', 'there', 'be', 'plenty', 'of', 'money', 'on', 'one', 'side', '\n', 'and', 'next', 'to', 'none', 'on', 'the', 'other', 'Lord', 'bless', 'you', 'they', 'care', '\n', 'no', 'more', 'about', 'such', 'thing', '\n\n', 'the', 'lady', 'thenmiss', 'Grey', 'I', 'think', 'you', 'call', 'she', '\n', 'be', 'very', 'rich', '\n\n', 'Fifty', 'thousand', 'pound', 'my', 'dear', ' ', 'do', 'you', 'ever', 'see', '\n', 'she', 'a', 'smart', 'stylish', 'girl', 'they', 'say', 'but', 'not', 'handsome', '\n', 'I', 'remember', 'her', 'aunt', 'very', 'well', 'Biddy', 'Henshawe', 'she', 'marry', '\n', 'a', 'very', 'wealthy', 'man', ' ', 'but', 'the', 'family', 'be', 'all', 'rich', 'together', '\n', 'Fifty', 'thousand', 'pound', 'and', 'by', 'all', 'account', 'it', 'will', 'not', 'come', '\n', 'before', 'its', 'want', 'for', 'they', 'say', 'he', 'be', 'all', 'to', 'piece', '\n', 'no', 'wonder', 'dash', 'about', 'with', 'his', 'curricle', 'and', 'hunter', '\n', 'well', 'it', 'do', 'not', 'signify', 'talk', 'but', 'when', 'a', 'young', 'man', '\n', 'be', 'who', 'he', 'will', 'come', 'and', 'make', 'love', 'to', 'a', 'pretty', 'girl', '\n', 'and', 'promise', 'marriage', 'he', 'have', 'no', 'business', 'to', 'fly', 'off', '\n', 'from', 'his', 'word', 'only', 'because', 'he', 'grow', 'poor', 'and', 'a', 'rich', '\n', 'girl', 'be', 'ready', 'to', 'have', 'he', ' ', 'why', 'do', 'not', 'he', 'in', 'such', 'a', 'case', '\n', 'sell', 'his', 'horse', 'let', 'his', 'house', 'turn', 'off', 'his', 'servant', '\n', 'and', 'make', 'a', 'thorough', 'reform', 'at', 'once', 'I', 'warrant', 'you', '\n', 'Miss', 'Marianne', 'would', 'have', 'be', 'ready', 'to', 'wait', 'till', 'matter', '\n', 'come', 'round', ' ', 'but', 'that', 'will', 'not', 'do', 'nowadays', 'nothing', 'in', 'the', '\n', 'way', 'of', 'pleasure', 'can', 'ever', 'be', 'give', 'up', 'by', 'the', 'young', 'man', 'of', '\n', 'this', 'age', '\n\n', 'do', 'you', 'know', 'what', 'kind', 'of', 'a', 'girl', 'Miss', 'Grey', 'be', '\n', 'be', 'she', 'say', 'to', 'be', 'amiable', '\n\n', 'I', 'never', 'hear', 'any', 'harm', 'of', 'she', 'indeed', 'I', 'hardly', 'ever', '\n', 'hear', 'she', 'mention', 'except', 'that', 'Mrs', 'Taylor', 'do', 'say', '\n', 'this', 'morning', 'that', 'one', 'day', 'Miss', 'Walker', 'hint', 'to', 'she', '\n', 'that', 'she', 'believe', 'Mr', 'and', 'Mrs', 'Ellison', 'would', 'not', 'be', 'sorry', '\n', 'to', 'have', 'Miss', 'Grey', 'marry', 'for', 'she', 'and', 'Mrs', 'Ellison', 'could', '\n', 'never', 'agree', '\n\n', 'and', 'who', 'be', 'the', 'ellison', '\n\n', 'her', 'guardian', 'my', 'dear', ' ', 'but', 'now', 'she', 'be', 'of', 'age', '\n', 'and', 'may', 'choose', 'for', 'herself', 'and', 'a', 'pretty', 'choice', 'she', 'have', '\n', 'madewhat', 'now', 'after', 'pause', 'a', 'momentyour', 'poor', 'sister', '\n', 'be', 'go', 'to', 'her', 'own', 'room', 'I', 'suppose', 'to', 'moan', 'by', 'herself', '\n', 'be', 'there', 'nothing', 'one', 'can', 'get', 'to', 'comfort', 'her', ' ', 'Poor', 'dear', '\n', 'it', 'seem', 'quite', 'cruel', 'to', 'let', 'she', 'be', 'alone', ' ', 'well', 'byandby', 'we', '\n', 'shall', 'have', 'a', 'few', 'friend', 'and', 'that', 'will', 'amuse', 'she', 'a', 'little', '\n', 'what', 'shall', 'we', 'play', 'at', ' ', 'she', 'hate', 'whist', 'I', 'know', 'but', 'be', 'there', '\n', 'no', 'round', 'game', 'she', 'care', 'for', '\n\n', 'dear', 'maam', 'this', 'kindness', 'be', 'quite', 'unnecessary', '\n', 'Marianne', 'I', 'dare', 'say', 'will', 'not', 'leave', 'her', 'room', 'again', '\n', 'this', 'evening', ' ', 'I', 'shall', 'persuade', 'she', 'if', 'I', 'can', 'to', 'go', '\n', 'early', 'to', 'bed', 'for', 'I', 'be', 'sure', 'she', 'want', 'rest', '\n\n', 'aye', 'I', 'believe', 'that', 'will', 'be', 'good', 'for', 'her', ' ', 'let', 'her', 'name', '\n', 'her', 'own', 'supper', 'and', 'go', 'to', 'bed', ' ', 'Lord', 'no', 'wonder', 'she', 'have', '\n', 'be', 'look', 'so', 'bad', 'and', 'so', 'cast', 'down', 'this', 'last', 'week', 'or', 'two', '\n', 'for', 'this', 'matter', 'I', 'suppose', 'have', 'be', 'hang', 'over', 'her', 'head', 'as', '\n', 'long', 'as', 'that', ' ', 'and', 'so', 'the', 'letter', 'that', 'come', 'today', 'finish', 'it', '\n', 'poor', 'soul', ' ', 'I', 'be', 'sure', 'if', 'I', 'have', 'have', 'a', 'notion', 'of', 'it', '\n', 'I', 'would', 'not', 'have', 'joke', 'she', 'about', 'it', 'for', 'all', 'my', 'money', '\n', 'but', 'then', 'you', 'know', 'how', 'should', 'I', 'guess', 'such', 'a', 'thing', ' ', 'I', 'make', '\n', 'sure', 'of', 'its', 'be', 'nothing', 'but', 'a', 'common', 'love', 'letter', 'and', '\n', 'you', 'know', 'young', 'people', 'like', 'to', 'be', 'laugh', 'at', 'about', 'they', ' ', 'Lord', '\n', 'how', 'concerned', 'Sir', 'John', 'and', 'my', 'daughter', 'will', 'be', 'when', 'they', '\n', 'hear', 'it', ' ', 'if', 'I', 'have', 'my', 'sense', 'about', 'I', 'I', 'might', 'have', 'call', '\n', 'in', 'Conduit', 'Street', 'in', 'my', 'way', 'home', 'and', 'tell', 'they', 'of', 'it', '\n', 'but', 'I', 'shall', 'see', 'they', 'tomorrow', '\n\n', 'it', 'would', 'be', 'unnecessary', 'I', 'be', 'sure', 'for', 'you', 'to', 'caution', '\n', 'Mrs', 'Palmer', 'and', 'Sir', 'John', 'against', 'ever', 'name', 'Mr', 'Willoughby', '\n', 'or', 'make', 'the', 'slight', 'allusion', 'to', 'what', 'have', 'pass', '\n', 'before', 'my', 'sister', ' ', 'their', 'own', 'goodnature', 'must', 'point', 'out', '\n', 'to', 'they', 'the', 'real', 'cruelty', 'of', 'appear', 'to', 'know', 'any', 'thing', '\n', 'about', 'it', 'when', 'she', 'be', 'present', 'and', 'the', 'less', 'that', 'may', 'ever', '\n', 'be', 'say', 'to', 'myself', 'on', 'the', 'subject', 'the', 'more', 'my', 'feeling', '\n', 'will', 'be', 'spare', 'as', 'you', 'my', 'dear', 'madam', 'will', 'easily', 'believe', '\n\n', 'oh', 'Lord', 'yes', 'that', 'I', 'do', 'indeed', ' ', 'it', 'must', 'be', 'terrible', '\n', 'for', 'you', 'to', 'hear', 'it', 'talk', 'of', 'and', 'as', 'for', 'your', 'sister', '\n', 'I', 'be', 'sure', 'I', 'would', 'not', 'mention', 'a', 'word', 'about', 'it', 'to', 'she', '\n', 'for', 'the', 'world', ' ', 'you', 'see', 'I', 'do', 'not', 'all', 'dinner', 'time', '\n', 'no', 'more', 'would', 'Sir', 'John', 'nor', 'my', 'daughter', 'for', 'they', 'be', '\n', 'all', 'very', 'thoughtful', 'and', 'considerate', 'especially', 'if', 'I', '\n', 'give', 'they', 'a', 'hint', 'as', 'I', 'certainly', 'will', ' ', 'for', 'my', 'part', '\n', 'I', 'think', 'the', 'less', 'that', 'be', 'say', 'about', 'such', 'thing', 'the', 'well', '\n', 'the', 'soon', 'tis', 'blow', 'over', 'and', 'forget', ' ', 'and', 'what', 'do', '\n', 'talk', 'ever', 'do', 'you', 'know', '\n\n', 'in', 'this', 'affair', 'it', 'can', 'only', 'do', 'harm', 'more', 'so', '\n', 'perhaps', 'than', 'in', 'many', 'case', 'of', 'a', 'similar', 'kind', 'for', 'it', '\n', 'have', 'be', 'attend', 'by', 'circumstance', 'which', 'for', 'the', 'sake', '\n', 'of', 'every', 'one', 'concern', 'in', 'it', 'make', 'it', 'unfit', 'to', 'become', '\n', 'the', 'public', 'conversation', ' ', 'I', 'must', 'do', 'this', 'justice', 'to', '\n', 'Mr', 'Willoughbyhe', 'have', 'break', 'no', 'positive', 'engagement', '\n', 'with', 'my', 'sister', '\n\n', 'Law', 'my', 'dear', ' ', 'do', 'not', 'pretend', 'to', 'defend', 'he', '\n', 'no', 'positive', 'engagement', 'indeed', 'after', 'take', 'she', 'all', '\n', 'over', 'Allenham', 'House', 'and', 'fix', 'on', 'the', 'very', 'room', 'they', '\n', 'be', 'to', 'live', 'in', 'hereafter', '\n\n', 'Elinor', 'for', 'her', 'sister', 'sake', 'could', 'not', 'press', 'the', '\n', 'subject', 'far', 'and', 'she', 'hope', 'it', 'be', 'not', 'require', 'of', 'she', '\n', 'for', 'Willoughbys', 'since', 'though', 'Marianne', 'might', 'lose', 'much', '\n', 'he', 'could', 'gain', 'very', 'little', 'by', 'the', 'enforcement', 'of', 'the', 'real', 'truth', '\n', 'after', 'a', 'short', 'silence', 'on', 'both', 'side', 'Mrs', 'Jennings', '\n', 'with', 'all', 'her', 'natural', 'hilarity', 'burst', 'forth', 'again', '\n\n', 'well', 'my', 'dear', 'tis', 'a', 'true', 'saying', 'about', 'an', 'illwind', '\n', 'for', 'it', 'will', 'be', 'all', 'the', 'well', 'for', 'Colonel', 'Brandon', '\n', 'he', 'will', 'have', 'she', 'at', 'last', 'aye', 'that', 'he', 'will', ' ', 'mind', 'I', '\n', 'now', 'if', 'they', 'ant', 'marry', 'by', 'Midsummer', ' ', 'Lord', 'how', 'hell', '\n', 'chuckle', 'over', 'this', 'news', ' ', 'I', 'hope', 'he', 'will', 'come', 'tonight', '\n', 'it', 'will', 'be', 'all', 'to', 'one', 'a', 'well', 'match', 'for', 'your', 'sister', '\n', 'two', 'thousand', 'a', 'year', 'without', 'debt', 'or', 'drawbackexcept', '\n', 'the', 'little', 'lovechild', 'indeed', 'aye', 'I', 'have', 'forget', 'she', '\n', 'but', 'she', 'may', 'be', 'prentice', 'out', 'at', 'a', 'small', 'cost', 'and', 'then', '\n', 'what', 'do', 'it', 'signify', ' ', 'Delaford', 'be', 'a', 'nice', 'place', 'I', 'can', '\n', 'tell', 'you', 'exactly', 'what', 'I', 'call', 'a', 'nice', 'old', 'fashioned', 'place', '\n', 'full', 'of', 'comfort', 'and', 'convenience', 'quite', 'shut', 'in', 'with', 'great', '\n', 'garden', 'wall', 'that', 'be', 'cover', 'with', 'the', 'good', 'fruittree', '\n', 'in', 'the', 'country', 'and', 'such', 'a', 'mulberry', 'tree', 'in', 'one', 'corner', '\n', 'Lord', 'how', 'Charlotte', 'and', 'I', 'do', 'stuff', 'the', 'only', 'time', 'we', '\n', 'be', 'there', ' ', 'then', 'there', 'be', 'a', 'dovecote', 'some', 'delightful', '\n', 'stewpond', 'and', 'a', 'very', 'pretty', 'canal', 'and', 'every', 'thing', '\n', 'in', 'short', 'that', 'one', 'could', 'wish', 'for', 'and', 'moreover', 'it', 'be', '\n', 'close', 'to', 'the', 'church', 'and', 'only', 'a', 'quarter', 'of', 'a', 'mile', 'from', '\n', 'the', 'turnpikeroad', 'so', 'tis', 'never', 'dull', 'for', 'if', 'you', 'only', '\n', 'go', 'and', 'sit', 'up', 'in', 'an', 'old', 'yew', 'arbour', 'behind', 'the', 'house', '\n', 'you', 'may', 'see', 'all', 'the', 'carriage', 'that', 'pass', 'along', '\n', 'oh', 'tis', 'a', 'nice', 'place', ' ', 'a', 'butcher', 'hard', 'by', 'in', 'the', 'village', '\n', 'and', 'the', 'parsonagehouse', 'within', 'a', 'stone', 'throw', '\n', 'to', 'my', 'fancy', 'a', 'thousand', 'time', 'pretty', 'than', 'Barton', 'Park', '\n', 'where', 'they', 'be', 'force', 'to', 'send', 'three', 'mile', 'for', 'their', 'meat', '\n', 'and', 'have', 'not', 'a', 'neighbour', 'nearer', 'than', 'your', 'mother', '\n', 'well', 'I', 'shall', 'spirit', 'up', 'the', 'Colonel', 'as', 'soon', 'as', 'I', 'can', '\n', 'one', 'shoulder', 'of', 'mutton', 'you', 'know', 'drive', 'another', 'down', '\n', 'if', 'we', 'can', 'but', 'put', 'Willoughby', 'out', 'of', 'her', 'head', '\n\n', 'ay', 'if', 'we', 'can', 'do', 'that', 'Maam', 'say', 'Elinor', '\n', 'we', 'shall', 'do', 'very', 'well', 'with', 'or', 'without', 'Colonel', 'Brandon', '\n', 'and', 'then', 'rise', 'she', 'go', 'away', 'to', 'join', 'Marianne', '\n', 'whom', 'she', 'find', 'as', 'she', 'expect', 'in', 'her', 'own', 'room', 'lean', '\n', 'in', 'silent', 'misery', 'over', 'the', 'small', 'remain', 'of', 'a', 'fire', '\n', 'which', 'till', 'Elinors', 'entrance', 'have', 'be', 'her', 'only', 'light', '\n\n', 'you', 'have', 'well', 'leave', 'I', 'be', 'all', 'the', 'notice', '\n', 'that', 'her', 'sister', 'receive', 'from', 'she', '\n\n', 'I', 'will', 'leave', 'you', 'say', 'Elinor', 'if', 'you', 'will', 'go', '\n', 'to', 'bed', 'but', 'this', 'from', 'the', 'momentary', 'perverseness', '\n', 'of', 'impatient', 'suffering', 'she', 'at', 'first', 'refuse', 'to', 'do', '\n', 'her', 'sister', 'earnest', 'though', 'gentle', 'persuasion', 'however', '\n', 'soon', 'soften', 'she', 'to', 'compliance', 'and', 'Elinor', 'see', 'she', '\n', 'lie', 'her', 'ache', 'head', 'on', 'the', 'pillow', 'and', 'as', 'she', 'hope', '\n', 'in', 'a', 'way', 'to', 'get', 'some', 'quiet', 'rest', 'before', 'she', 'leave', 'she', '\n\n', 'in', 'the', 'drawingroom', 'whither', 'she', 'then', 'repair', '\n', 'she', 'be', 'soon', 'join', 'by', 'Mrs', 'Jennings', 'with', 'a', 'wineglass', '\n', 'full', 'of', 'something', 'in', 'her', 'hand', '\n\n', 'my', 'dear', 'say', 'she', 'enter', 'I', 'have', 'just', 'recollect', '\n', 'that', 'I', 'have', 'some', 'of', 'the', 'fine', 'old', 'Constantia', 'wine', 'in', 'the', '\n', 'house', 'that', 'ever', 'be', 'taste', 'so', 'I', 'have', 'bring', 'a', 'glass', 'of', 'it', '\n', 'for', 'your', 'sister', ' ', 'my', 'poor', 'husband', 'how', 'fond', 'he', 'be', 'of', 'it', '\n', 'whenever', 'he', 'have', 'a', 'touch', 'of', 'his', 'old', 'colicky', 'gout', 'he', 'say', '\n', 'it', 'do', 'he', 'more', 'good', 'than', 'any', 'thing', 'else', 'in', 'the', 'world', '\n', 'do', 'take', 'it', 'to', 'your', 'sister', '\n\n', 'Dear', 'Maam', 'reply', 'Elinor', 'smile', 'at', 'the', 'difference', '\n', 'of', 'the', 'complaint', 'for', 'which', 'it', 'be', 'recommend', 'how', 'good', '\n', 'you', 'be', ' ', 'but', 'I', 'have', 'just', 'leave', 'Marianne', 'in', 'bed', 'and', 'I', 'hope', '\n', 'almost', 'asleep', 'and', 'as', 'I', 'think', 'nothing', 'will', 'be', 'of', 'so', 'much', '\n', 'service', 'to', 'she', 'as', 'rest', 'if', 'you', 'will', 'give', 'I', 'leave', '\n', 'I', 'will', 'drink', 'the', 'wine', 'myself', '\n\n', 'Mrs', 'Jennings', 'though', 'regret', 'that', 'she', 'have', 'not', 'be', '\n', 'five', 'minute', 'early', 'be', 'satisfied', 'with', 'the', 'compromise', '\n', 'and', 'Elinor', 'as', 'she', 'swallow', 'the', 'chief', 'of', 'it', 'reflect', '\n', 'that', 'though', 'its', 'effect', 'on', 'a', 'colicky', 'gout', 'be', 'at', 'present', '\n', 'of', 'little', 'importance', 'to', 'her', 'its', 'heal', 'power', '\n', 'on', 'a', 'disappointed', 'heart', 'might', 'be', 'as', 'reasonably', 'try', '\n', 'on', 'herself', 'as', 'on', 'her', 'sister', '\n\n', 'Colonel', 'Brandon', 'come', 'in', 'while', 'the', 'party', 'be', 'at', 'tea', '\n', 'and', 'by', 'his', 'manner', 'of', 'look', 'round', 'the', 'room', 'for', 'Marianne', '\n', 'Elinor', 'immediately', 'fancy', 'that', 'he', 'neither', 'expect', '\n', 'nor', 'wish', 'to', 'see', 'she', 'there', 'and', 'in', 'short', 'that', 'he', '\n', 'be', 'already', 'aware', 'of', 'what', 'occasion', 'her', 'absence', '\n', 'Mrs', 'Jennings', 'be', 'not', 'strike', 'by', 'the', 'same', 'thought', '\n', 'for', 'soon', 'after', 'his', 'entrance', 'she', 'walk', 'across', 'the', 'room', '\n', 'to', 'the', 'teatable', 'where', 'Elinor', 'preside', 'and', 'whisper', '\n', 'the', 'Colonel', 'look', 'as', 'grave', 'as', 'ever', 'you', 'see', ' ', 'he', 'know', '\n', 'nothing', 'of', 'it', 'do', 'tell', 'he', 'my', 'dear', '\n\n', 'he', 'shortly', 'afterwards', 'draw', 'a', 'chair', 'close', 'to', 'hers', '\n', 'and', 'with', 'a', 'look', 'which', 'perfectly', 'assure', 'she', 'of', 'his', '\n', 'good', 'information', 'inquire', 'after', 'her', 'sister', '\n\n', 'Marianne', 'be', 'not', 'well', 'say', 'she', ' ', 'she', 'have', 'be', '\n', 'indispose', 'all', 'day', 'and', 'we', 'have', 'persuade', 'she', 'to', 'go', 'to', 'bed', '\n\n', 'perhaps', 'then', 'he', 'hesitatingly', 'reply', 'what', 'I', '\n', 'hear', 'this', 'morning', 'may', 'bethere', 'may', 'be', 'more', 'truth', 'in', 'it', '\n', 'than', 'I', 'could', 'believe', 'possible', 'at', 'first', '\n\n', 'what', 'do', 'you', 'hear', '\n\n', 'that', 'a', 'gentleman', 'whom', 'I', 'have', 'reason', 'to', 'thinkin', 'short', '\n', 'that', 'a', 'man', 'whom', 'I', 'know', 'to', 'be', 'engagedbut', 'how', 'shall', 'I', '\n', 'tell', 'you', ' ', 'if', 'you', 'know', 'it', 'already', 'as', 'surely', 'you', 'must', '\n', 'I', 'may', 'be', 'spare', '\n\n', 'you', 'mean', 'answer', 'Elinor', 'with', 'force', 'calmness', '\n', 'Mr', 'Willoughbys', 'marriage', 'with', 'Miss', 'Grey', ' ', 'yes', 'we', 'do', '\n', 'know', 'it', 'all', ' ', 'this', 'seem', 'to', 'have', 'be', 'a', 'day', 'of', 'general', '\n', 'elucidation', 'for', 'this', 'very', 'morning', 'first', 'unfold', 'it', 'to', 'we', '\n', 'Mr', 'Willoughby', 'be', 'unfathomable', ' ', 'where', 'do', 'you', 'hear', 'it', '\n\n', 'in', 'a', 'stationer', 'shop', 'in', 'Pall', 'Mall', 'where', 'I', '\n', 'have', 'business', ' ', 'two', 'lady', 'be', 'wait', 'for', 'their', 'carriage', '\n', 'and', 'one', 'of', 'they', 'be', 'give', 'the', 'other', 'an', 'account', 'of', 'the', '\n', 'intend', 'match', 'in', 'a', 'voice', 'so', 'little', 'attempt', 'concealment', '\n', 'that', 'it', 'be', 'impossible', 'for', 'I', 'not', 'to', 'hear', 'all', ' ', 'the', 'name', '\n', 'of', 'Willoughby', 'John', 'Willoughby', 'frequently', 'repeat', '\n', 'first', 'catch', 'my', 'attention', 'and', 'what', 'follow', 'be', 'a', 'positive', '\n', 'assertion', 'that', 'every', 'thing', 'be', 'now', 'finally', 'settle', '\n', 'respect', 'his', 'marriage', 'with', 'Miss', 'Greyit', 'be', 'no', 'long', '\n', 'to', 'be', 'a', 'secretit', 'would', 'take', 'place', 'even', 'within', 'a', 'few', 'week', '\n', 'with', 'many', 'particular', 'of', 'preparation', 'and', 'other', 'matter', '\n', 'one', 'thing', 'especially', 'I', 'remember', 'because', 'it', 'serve', '\n', 'to', 'identify', 'the', 'man', 'still', 'morea', 'soon', 'as', 'the', 'ceremony', '\n', 'be', 'over', 'they', 'be', 'to', 'go', 'to', 'Combe', 'Magna', 'his', 'seat', '\n', 'in', 'Somersetshire', ' ', 'my', 'astonishmentbut', 'it', 'would', 'be', '\n', 'impossible', 'to', 'describe', 'what', 'I', 'feel', ' ', 'the', 'communicative', '\n', 'lady', 'I', 'learn', 'on', 'inquiry', 'for', 'I', 'stay', 'in', 'the', 'shop', '\n', 'till', 'they', 'be', 'go', 'be', 'a', 'Mrs', 'Ellison', 'and', 'that', 'as', 'I', '\n', 'have', 'be', 'since', 'inform', 'be', 'the', 'name', 'of', 'Miss', 'Greys', 'guardian', '\n\n', 'it', 'be', ' ', 'but', 'have', 'you', 'likewise', 'hear', 'that', 'Miss', 'Grey', '\n', 'have', 'fifty', 'thousand', 'pound', ' ', 'in', 'that', 'if', 'in', 'any', 'thing', '\n', 'we', 'may', 'find', 'an', 'explanation', '\n\n', 'it', 'may', 'be', 'so', 'but', 'Willoughby', 'be', 'capableat', 'least', '\n', 'I', 'thinkhe', 'stop', 'a', 'moment', 'then', 'add', 'in', 'a', 'voice', '\n', 'which', 'seem', 'to', 'distrust', 'itself', 'and', 'your', 'sister', '\n', 'how', 'do', 'she', '\n\n', 'her', 'suffering', 'have', 'be', 'very', 'severe', ' ', 'I', 'have', '\n', 'only', 'to', 'hope', 'that', 'they', 'may', 'be', 'proportionately', 'short', '\n', 'it', 'have', 'be', 'it', 'be', 'a', 'most', 'cruel', 'affliction', ' ', 'till', 'yesterday', '\n', 'I', 'believe', 'she', 'never', 'doubt', 'his', 'regard', 'and', 'even', 'now', '\n', 'perhapsbut', 'I', 'be', 'almost', 'convinced', 'that', 'he', 'never', 'be', '\n', 'really', 'attach', 'to', 'her', ' ', 'he', 'have', 'be', 'very', 'deceitful', 'and', '\n', 'in', 'some', 'point', 'there', 'seem', 'a', 'hardness', 'of', 'heart', 'about', 'he', '\n\n', 'ah', 'say', 'Colonel', 'Brandon', 'there', 'be', 'indeed', ' ', 'but', '\n', 'your', 'sister', 'do', 'noti', 'think', 'you', 'say', 'soshe', 'do', '\n', 'not', 'consider', 'quite', 'as', 'you', 'do', '\n\n', 'you', 'know', 'her', 'disposition', 'and', 'may', 'believe', 'how', 'eagerly', '\n', 'she', 'would', 'still', 'justify', 'he', 'if', 'she', 'could', '\n\n', 'he', 'make', 'no', 'answer', 'and', 'soon', 'afterwards', 'by', 'the', 'removal', '\n', 'of', 'the', 'teathing', 'and', 'the', 'arrangement', 'of', 'the', 'card', 'party', '\n', 'the', 'subject', 'be', 'necessarily', 'drop', ' ', 'Mrs', 'Jennings', 'who', 'have', '\n', 'watch', 'they', 'with', 'pleasure', 'while', 'they', 'be', 'talk', 'and', 'who', '\n', 'expect', 'to', 'see', 'the', 'effect', 'of', 'Miss', 'Dashwoods', 'communication', '\n', 'in', 'such', 'an', 'instantaneous', 'gaiety', 'on', 'Colonel', 'Brandons', 'side', '\n', 'as', 'might', 'have', 'become', 'a', 'man', 'in', 'the', 'bloom', 'of', 'youth', 'of', 'hope', '\n', 'and', 'happiness', 'see', 'he', 'with', 'amazement', 'remain', 'the', 'whole', '\n', 'evening', 'more', 'serious', 'and', 'thoughtful', 'than', 'usual', '\n\n\n\n', 'chapter', '31', '\n\n\n', 'from', 'a', 'night', 'of', 'more', 'sleep', 'than', 'she', 'have', 'expect', '\n', 'Marianne', 'awake', 'the', 'next', 'morning', 'to', 'the', 'same', 'consciousness', '\n', 'of', 'misery', 'in', 'which', 'she', 'have', 'close', 'her', 'eye', '\n\n', 'Elinor', 'encourage', 'she', 'as', 'much', 'as', 'possible', 'to', 'talk', '\n', 'of', 'what', 'she', 'feel', 'and', 'before', 'breakfast', 'be', 'ready', 'they', 'have', '\n', 'go', 'through', 'the', 'subject', 'again', 'and', 'again', 'and', 'with', 'the', 'same', '\n', 'steady', 'conviction', 'and', 'affectionate', 'counsel', 'on', 'Elinors', 'side', '\n', 'the', 'same', 'impetuous', 'feeling', 'and', 'vary', 'opinion', 'on', '\n', 'Mariannes', 'as', 'before', ' ', 'sometimes', 'she', 'could', 'believe', '\n', 'Willoughby', 'to', 'be', 'as', 'unfortunate', 'and', 'as', 'innocent', 'as', 'herself', '\n', 'and', 'at', 'other', 'lose', 'every', 'consolation', 'in', 'the', 'impossibility', '\n', 'of', 'acquit', 'he', ' ', 'at', 'one', 'moment', 'she', 'be', 'absolutely', '\n', 'indifferent', 'to', 'the', 'observation', 'of', 'all', 'the', 'world', 'at', 'another', '\n', 'she', 'would', 'seclude', 'herself', 'from', 'it', 'for', 'ever', 'and', 'at', 'a', 'third', '\n', 'could', 'resist', 'it', 'with', 'energy', ' ', 'in', 'one', 'thing', 'however', '\n', 'she', 'be', 'uniform', 'when', 'it', 'come', 'to', 'the', 'point', 'in', 'avoid', '\n', 'where', 'it', 'be', 'possible', 'the', 'presence', 'of', 'Mrs', 'Jennings', '\n', 'and', 'in', 'a', 'determined', 'silence', 'when', 'oblige', 'to', 'endure', 'it', '\n', 'her', 'heart', 'be', 'harden', 'against', 'the', 'belief', 'of', 'Mrs', 'Jenningss', '\n', 'enter', 'into', 'her', 'sorrow', 'with', 'any', 'compassion', '\n\n', 'no', 'no', 'no', 'it', 'can', 'not', 'be', 'she', 'cry', '\n', 'she', 'can', 'not', 'feel', ' ', 'her', 'kindness', 'be', 'not', 'sympathy', '\n', 'her', 'goodnature', 'be', 'not', 'tenderness', ' ', 'all', 'that', 'she', 'want', '\n', 'be', 'gossip', 'and', 'she', 'only', 'like', 'I', 'now', 'because', 'I', 'supply', 'it', '\n\n', 'Elinor', 'have', 'not', 'need', 'this', 'to', 'be', 'assure', 'of', 'the', 'injustice', '\n', 'to', 'which', 'her', 'sister', 'be', 'often', 'lead', 'in', 'her', 'opinion', 'of', 'other', '\n', 'by', 'the', 'irritable', 'refinement', 'of', 'her', 'own', 'mind', 'and', 'the', 'too', '\n', 'great', 'importance', 'place', 'by', 'she', 'on', 'the', 'delicacy', 'of', 'a', '\n', 'strong', 'sensibility', 'and', 'the', 'grace', 'of', 'a', 'polished', 'manner', '\n', 'like', 'half', 'the', 'rest', 'of', 'the', 'world', 'if', 'more', 'than', 'half', 'there', '\n', 'be', 'that', 'be', 'clever', 'and', 'good', 'Marianne', 'with', 'excellent', '\n', 'ability', 'and', 'an', 'excellent', 'disposition', 'be', 'neither', '\n', 'reasonable', 'nor', 'candid', ' ', 'she', 'expect', 'from', 'other', 'people', '\n', 'the', 'same', 'opinion', 'and', 'feeling', 'as', 'her', 'own', 'and', 'she', 'judge', '\n', 'of', 'their', 'motive', 'by', 'the', 'immediate', 'effect', 'of', 'their', 'action', '\n', 'on', 'herself', ' ', 'thus', 'a', 'circumstance', 'occur', 'while', 'the', '\n', 'sister', 'be', 'together', 'in', 'their', 'own', 'room', 'after', 'breakfast', '\n', 'which', 'sink', 'the', 'heart', 'of', 'Mrs', 'Jennings', 'still', 'low', '\n', 'in', 'her', 'estimation', 'because', 'through', 'her', 'own', 'weakness', '\n', 'it', 'chance', 'to', 'prove', 'a', 'source', 'of', 'fresh', 'pain', 'to', 'herself', '\n', 'though', 'Mrs', 'Jennings', 'be', 'govern', 'in', 'it', 'by', 'an', 'impulse', '\n', 'of', 'the', 'utmost', 'goodwill', '\n\n', 'with', 'a', 'letter', 'in', 'her', 'outstretched', 'hand', 'and', 'countenance', '\n', 'gaily', 'smile', 'from', 'the', 'persuasion', 'of', 'bring', 'comfort', '\n', 'she', 'enter', 'their', 'room', 'say', '\n\n', 'now', 'my', 'dear', 'I', 'bring', 'you', 'something', 'that', 'I', 'be', 'sure', '\n', 'will', 'do', 'you', 'good', '\n\n', 'Marianne', 'hear', 'enough', ' ', 'in', 'one', 'moment', 'her', 'imagination', '\n', 'place', 'before', 'she', 'a', 'letter', 'from', 'Willoughby', 'full', 'of', 'tenderness', '\n', 'and', 'contrition', 'explanatory', 'of', 'all', 'that', 'have', 'pass', 'satisfactory', '\n', 'convincing', 'and', 'instantly', 'follow', 'by', 'Willoughby', 'himself', '\n', 'rush', 'eagerly', 'into', 'the', 'room', 'to', 'inforce', 'at', 'her', 'foot', '\n', 'by', 'the', 'eloquence', 'of', 'his', 'eye', 'the', 'assurance', 'of', 'his', 'letter', '\n', 'the', 'work', 'of', 'one', 'moment', 'be', 'destroy', 'by', 'the', 'next', '\n', 'the', 'hand', 'writing', 'of', 'her', 'mother', 'never', 'till', 'then', 'unwelcome', '\n', 'be', 'before', 'she', 'and', 'in', 'the', 'acuteness', 'of', 'the', 'disappointment', '\n', 'which', 'follow', 'such', 'an', 'ecstasy', 'of', 'more', 'than', 'hope', '\n', 'she', 'feel', 'as', 'if', 'till', 'that', 'instant', 'she', 'have', 'never', 'suffer', '\n\n', 'the', 'cruelty', 'of', 'Mrs', 'Jennings', 'no', 'language', 'within', '\n', 'her', 'reach', 'in', 'her', 'moment', 'of', 'happy', 'eloquence', '\n', 'could', 'have', 'express', 'and', 'now', 'she', 'could', 'reproach', 'she', '\n', 'only', 'by', 'the', 'tear', 'which', 'stream', 'from', 'her', 'eye', 'with', '\n', 'passionate', 'violencea', 'reproach', 'however', 'so', 'entirely', '\n', 'lose', 'on', 'its', 'object', 'that', 'after', 'many', 'expression', 'of', 'pity', '\n', 'she', 'withdrew', 'still', 'refer', 'she', 'to', 'the', 'letter', 'of', 'comfort', '\n', 'but', 'the', 'letter', 'when', 'she', 'be', 'calm', 'enough', 'to', 'read', 'it', '\n', 'bring', 'little', 'comfort', ' ', 'Willoughby', 'fill', 'every', 'page', '\n', 'her', 'mother', 'still', 'confident', 'of', 'their', 'engagement', 'and', 'rely', '\n', 'as', 'warmly', 'as', 'ever', 'on', 'his', 'constancy', 'have', 'only', 'be', 'rouse', '\n', 'by', 'Elinors', 'application', 'to', 'intreat', 'from', 'Marianne', 'great', '\n', 'openness', 'towards', 'they', 'both', 'and', 'this', 'with', 'such', 'tenderness', '\n', 'towards', 'her', 'such', 'affection', 'for', 'Willoughby', 'and', 'such', '\n', 'a', 'conviction', 'of', 'their', 'future', 'happiness', 'in', 'each', 'other', '\n', 'that', 'she', 'weep', 'with', 'agony', 'through', 'the', 'whole', 'of', 'it', '\n\n', 'all', 'her', 'impatience', 'to', 'be', 'at', 'home', 'again', 'now', 'return', '\n', 'her', 'mother', 'be', 'dear', 'to', 'she', 'than', 'ever', 'dearer', 'through', '\n', 'the', 'very', 'excess', 'of', 'her', 'mistaken', 'confidence', 'in', 'Willoughby', '\n', 'and', 'she', 'be', 'wildly', 'urgent', 'to', 'be', 'go', ' ', 'Elinor', 'unable', 'herself', '\n', 'to', 'determine', 'whether', 'it', 'be', 'well', 'for', 'Marianne', 'to', 'be', '\n', 'in', 'London', 'or', 'at', 'Barton', 'offer', 'no', 'counsel', 'of', 'her', 'own', '\n', 'except', 'of', 'patience', 'till', 'their', 'mother', 'wish', 'could', 'be', 'know', '\n', 'and', 'at', 'length', 'she', 'obtain', 'her', 'sister', 'consent', 'to', 'wait', '\n', 'for', 'that', 'knowledge', '\n\n', 'Mrs', 'Jennings', 'leave', 'they', 'early', 'than', 'usual', 'for', 'she', '\n', 'could', 'not', 'be', 'easy', 'till', 'the', 'Middletons', 'and', 'Palmers', 'be', 'able', '\n', 'to', 'grieve', 'as', 'much', 'as', 'herself', 'and', 'positively', 'refuse', '\n', 'elinor', 'offer', 'attendance', 'go', 'out', 'alone', 'for', 'the', 'rest', '\n', 'of', 'the', 'morning', ' ', 'Elinor', 'with', 'a', 'very', 'heavy', 'heart', 'aware', 'of', '\n', 'the', 'pain', 'she', 'be', 'go', 'to', 'communicate', 'and', 'perceive', '\n', 'by', 'Mariannes', 'letter', 'how', 'ill', 'she', 'have', 'succeed', 'in', 'lay', '\n', 'any', 'foundation', 'for', 'it', 'then', 'sit', 'down', 'to', 'write', 'her', 'mother', '\n', 'an', 'account', 'of', 'what', 'have', 'pass', 'and', 'entreat', 'her', 'direction', '\n', 'for', 'the', 'future', 'while', 'Marianne', 'who', 'come', 'into', 'the', 'drawingroom', '\n', 'on', 'Mrs', 'Jenningss', 'go', 'away', 'remained', 'fix', 'at', 'the', 'table', '\n', 'where', 'Elinor', 'write', 'watch', 'the', 'advancement', 'of', 'her', 'pen', '\n', 'grieve', 'over', 'she', 'for', 'the', 'hardship', 'of', 'such', 'a', 'task', '\n', 'and', 'grieve', 'still', 'more', 'fondly', 'over', 'its', 'effect', 'on', 'her', 'mother', '\n\n', 'in', 'this', 'manner', 'they', 'have', 'continue', 'about', 'a', 'quarter', '\n', 'of', 'an', 'hour', 'when', 'Marianne', 'whose', 'nerve', 'could', 'not', 'then', '\n', 'bear', 'any', 'sudden', 'noise', 'be', 'startle', 'by', 'a', 'rap', 'at', 'the', 'door', '\n\n', 'who', 'can', 'this', 'be', 'cry', 'Elinor', ' ', 'so', 'early', 'too', 'I', '\n', 'think', 'we', 'have', 'be', 'safe', '\n\n', 'Marianne', 'move', 'to', 'the', 'window', '\n\n', 'it', 'be', 'Colonel', 'Brandon', 'say', 'she', 'with', 'vexation', '\n', 'we', 'be', 'never', 'safe', 'from', 'HIM', '\n\n', 'he', 'will', 'not', 'come', 'in', 'as', 'Mrs', 'Jennings', 'be', 'from', 'home', '\n\n', 'I', 'will', 'not', 'trust', 'to', 'that', 'retreat', 'to', 'her', 'own', 'room', '\n', 'a', 'man', 'who', 'have', 'nothing', 'to', 'do', 'with', 'his', 'own', 'time', 'have', 'no', '\n', 'conscience', 'in', 'his', 'intrusion', 'on', 'that', 'of', 'other', '\n\n', 'the', 'event', 'prove', 'her', 'conjecture', 'right', 'though', 'it', '\n', 'be', 'found', 'on', 'injustice', 'and', 'error', 'for', 'Colonel', 'Brandon', '\n', 'do', 'come', 'in', 'and', 'Elinor', 'who', 'be', 'convince', 'that', '\n', 'solicitude', 'for', 'Marianne', 'bring', 'he', 'thither', 'and', 'who', 'see', '\n', 'that', 'solicitude', 'in', 'his', 'disturbed', 'and', 'melancholy', 'look', '\n', 'and', 'in', 'his', 'anxious', 'though', 'brief', 'inquiry', 'after', 'she', '\n', 'could', 'not', 'forgive', 'her', 'sister', 'for', 'esteem', 'he', 'so', 'lightly', '\n\n', 'I', 'meet', 'Mrs', 'Jennings', 'in', 'Bond', 'Street', 'say', 'he', '\n', 'after', 'the', 'first', 'salutation', 'and', 'she', 'encourage', 'I', '\n', 'to', 'come', 'on', 'and', 'I', 'be', 'the', 'more', 'easily', 'encourage', '\n', 'because', 'I', 'think', 'it', 'probable', 'that', 'I', 'might', 'find', 'you', 'alone', '\n', 'which', 'I', 'be', 'very', 'desirous', 'of', 'do', ' ', 'my', 'objectmy', '\n', 'wishmy', 'sole', 'wish', 'in', 'desire', 'iti', 'hope', 'I', 'believe', '\n', 'it', 'isis', 'to', 'be', 'a', 'means', 'of', 'give', 'comfortno', 'I', 'must', '\n', 'not', 'say', 'comfortnot', 'present', 'comfortbut', 'conviction', '\n', 'last', 'conviction', 'to', 'your', 'sister', 'mind', ' ', 'my', 'regard', 'for', 'she', '\n', 'for', 'yourself', 'for', 'your', 'motherwill', 'you', 'allow', 'I', 'to', 'prove', 'it', '\n', 'by', 'relate', 'some', 'circumstance', 'which', 'nothing', 'but', 'a', 'very', '\n', 'sincere', 'regardnothing', 'but', 'an', 'earnest', 'desire', 'of', 'be', '\n', 'usefuli', 'think', 'I', 'be', 'justifiedthough', 'where', 'so', 'many', 'hour', '\n', 'have', 'be', 'spend', 'in', 'convince', 'myself', 'that', 'I', 'be', 'right', '\n', 'be', 'there', 'not', 'some', 'reason', 'to', 'fear', 'I', 'may', 'be', 'wrong', '\n', 'he', 'stop', '\n\n', 'I', 'understand', 'you', 'say', 'Elinor', ' ', 'you', 'have', 'something', '\n', 'to', 'tell', 'I', 'of', 'Mr', 'Willoughby', 'that', 'will', 'open', 'his', 'character', '\n', 'far', ' ', 'your', 'telling', 'it', 'will', 'be', 'the', 'great', 'act', 'of', 'friendship', '\n', 'that', 'can', 'be', 'shew', 'Marianne', ' ', 'MY', 'gratitude', 'will', 'be', 'insure', '\n', 'immediately', 'by', 'any', 'information', 'tend', 'to', 'that', 'end', 'and', 'hers', '\n', 'must', 'be', 'gain', 'by', 'it', 'in', 'time', ' ', 'Pray', 'pray', 'let', 'I', 'hear', 'it', '\n\n', 'you', 'shall', 'and', 'to', 'be', 'brief', 'when', 'I', 'quit', 'Barton', '\n', 'last', 'Octoberbut', 'this', 'will', 'give', 'you', 'no', 'ideaI', 'must', 'go', '\n', 'far', 'back', ' ', 'you', 'will', 'find', 'I', 'a', 'very', 'awkward', 'narrator', '\n', 'Miss', 'Dashwood', 'I', 'hardly', 'know', 'where', 'to', 'begin', ' ', 'a', 'short', '\n', 'account', 'of', 'myself', 'I', 'believe', 'will', 'be', 'necessary', 'and', 'it', '\n', 'shall', 'be', 'a', 'short', 'one', ' ', 'on', 'such', 'a', 'subject', 'sigh', 'heavily', '\n', 'can', 'I', 'have', 'little', 'temptation', 'to', 'be', 'diffuse', '\n\n', 'he', 'stopt', 'a', 'moment', 'for', 'recollection', 'and', 'then', '\n', 'with', 'another', 'sigh', 'go', 'on', '\n\n', 'you', 'have', 'probably', 'entirely', 'forget', 'a', 'conversation', '\n', 'it', 'be', 'not', 'to', 'be', 'suppose', 'that', 'it', 'could', 'make', 'any', 'impression', '\n', 'on', 'youa', 'conversation', 'between', 'we', 'one', 'evening', 'at', 'Barton', '\n', 'Parkit', 'be', 'the', 'evening', 'of', 'a', 'dancein', 'which', 'I', 'allude', '\n', 'to', 'a', 'lady', 'I', 'have', 'once', 'know', 'as', 'resemble', 'in', 'some', 'measure', '\n', 'your', 'sister', 'Marianne', '\n\n', 'indeed', 'answer', 'Elinor', 'I', 'have', 'not', 'forget', 'it', '\n', 'he', 'look', 'pleased', 'by', 'this', 'remembrance', 'and', 'add', '\n\n', 'if', 'I', 'be', 'not', 'deceive', 'by', 'the', 'uncertainty', 'the', 'partiality', '\n', 'of', 'tender', 'recollection', 'there', 'be', 'a', 'very', 'strong', 'resemblance', '\n', 'between', 'they', 'as', 'well', 'in', 'mind', 'as', 'person', ' ', 'the', 'same', 'warmth', '\n', 'of', 'heart', 'the', 'same', 'eagerness', 'of', 'fancy', 'and', 'spirit', '\n', 'this', 'lady', 'be', 'one', 'of', 'my', 'near', 'relation', 'an', 'orphan', 'from', '\n', 'her', 'infancy', 'and', 'under', 'the', 'guardianship', 'of', 'my', 'father', '\n', 'our', 'age', 'be', 'nearly', 'the', 'same', 'and', 'from', 'our', 'early', 'year', '\n', 'we', 'be', 'playfellow', 'and', 'friend', ' ', 'I', 'can', 'not', 'remember', 'the', '\n', 'time', 'when', 'I', 'do', 'not', 'love', 'Eliza', 'and', 'my', 'affection', 'for', 'she', '\n', 'as', 'we', 'grow', 'up', 'be', 'such', 'as', 'perhaps', 'judge', 'from', 'my', '\n', 'present', 'forlorn', 'and', 'cheerless', 'gravity', 'you', 'might', 'think', 'I', '\n', 'incapable', 'of', 'having', 'ever', 'feel', ' ', 'Hers', 'for', 'I', 'be', 'I', 'believe', '\n', 'fervent', 'as', 'the', 'attachment', 'of', 'your', 'sister', 'to', 'Mr', 'Willoughby', '\n', 'and', 'it', 'be', 'though', 'from', 'a', 'different', 'cause', 'no', 'less', 'unfortunate', '\n', 'at', 'seventeen', 'she', 'be', 'lose', 'to', 'I', 'for', 'ever', ' ', 'she', 'be', '\n', 'marriedmarrie', 'against', 'her', 'inclination', 'to', 'my', 'brother', '\n', 'her', 'fortune', 'be', 'large', 'and', 'our', 'family', 'estate', 'much', 'encumbered', '\n', 'and', 'this', 'I', 'fear', 'be', 'all', 'that', 'can', 'be', 'say', 'for', 'the', '\n', 'conduct', 'of', 'one', 'who', 'be', 'at', 'once', 'her', 'uncle', 'and', 'guardian', '\n', 'my', 'brother', 'do', 'not', 'deserve', 'she', 'he', 'do', 'not', 'even', 'love', 'she', '\n', 'I', 'have', 'hope', 'that', 'her', 'regard', 'for', 'I', 'would', 'support', 'she', '\n', 'under', 'any', 'difficulty', 'and', 'for', 'some', 'time', 'it', 'do', 'but', 'at', '\n', 'last', 'the', 'misery', 'of', 'her', 'situation', 'for', 'she', 'experience', '\n', 'great', 'unkindness', 'overcame', 'all', 'her', 'resolution', 'and', 'though', '\n', 'she', 'have', 'promise', 'I', 'that', 'nothingbut', 'how', 'blindly', 'I', '\n', 'relate', ' ', 'I', 'have', 'never', 'tell', 'you', 'how', 'this', 'be', 'bring', 'on', '\n', 'we', 'be', 'within', 'a', 'few', 'hour', 'of', 'elope', 'together', 'for', 'Scotland', '\n', 'the', 'treachery', 'or', 'the', 'folly', 'of', 'my', 'cousin', 'maid', 'betray', 'we', '\n', 'I', 'be', 'banish', 'to', 'the', 'house', 'of', 'a', 'relation', 'far', 'distant', '\n', 'and', 'she', 'be', 'allow', 'no', 'liberty', 'no', 'society', 'no', 'amusement', '\n', 'till', 'my', 'father', 'point', 'be', 'gain', ' ', 'I', 'have', 'depend', 'on', 'her', '\n', 'fortitude', 'too', 'far', 'and', 'the', 'blow', 'be', 'a', 'severe', 'one', '\n', 'but', 'have', 'her', 'marriage', 'be', 'happy', 'so', 'young', 'as', 'I', 'then', 'be', '\n', 'a', 'few', 'month', 'must', 'have', 'reconcile', 'I', 'to', 'it', 'or', 'at', 'least', '\n', 'I', 'should', 'not', 'have', 'now', 'to', 'lament', 'it', ' ', 'this', 'however', '\n', 'be', 'not', 'the', 'case', ' ', 'my', 'brother', 'have', 'no', 'regard', 'for', 'her', '\n', 'his', 'pleasure', 'be', 'not', 'what', 'they', 'ought', 'to', 'have', 'be', '\n', 'and', 'from', 'the', 'first', 'he', 'treat', 'she', 'unkindly', ' ', 'the', 'consequence', '\n', 'of', 'this', 'upon', 'a', 'mind', 'so', 'young', 'so', 'lively', 'so', 'inexperienced', '\n', 'as', 'Mrs', 'Brandons', 'be', 'but', 'too', 'natural', ' ', 'she', 'resign', '\n', 'herself', 'at', 'first', 'to', 'all', 'the', 'misery', 'of', 'her', 'situation', '\n', 'and', 'happy', 'have', 'it', 'be', 'if', 'she', 'have', 'not', 'live', 'to', 'overcome', 'those', '\n', 'regret', 'which', 'the', 'remembrance', 'of', 'I', 'occasion', ' ', 'but', 'can', 'we', '\n', 'wonder', 'that', 'with', 'such', 'a', 'husband', 'to', 'provoke', 'inconstancy', '\n', 'and', 'without', 'a', 'friend', 'to', 'advise', 'or', 'restrain', 'she', 'for', '\n', 'my', 'father', 'live', 'only', 'a', 'few', 'month', 'after', 'their', 'marriage', '\n', 'and', 'I', 'be', 'with', 'my', 'regiment', 'in', 'the', 'East', 'Indies', 'she', '\n', 'should', 'fall', ' ', 'have', 'I', 'remain', 'in', 'England', 'perhapsbut', 'I', '\n', 'mean', 'to', 'promote', 'the', 'happiness', 'of', 'both', 'by', 'remove', '\n', 'from', 'she', 'for', 'year', 'and', 'for', 'that', 'purpose', 'have', 'procure', '\n', 'my', 'exchange', ' ', 'the', 'shock', 'which', 'her', 'marriage', 'have', 'give', 'I', '\n', 'he', 'continue', 'in', 'a', 'voice', 'of', 'great', 'agitation', 'be', 'of', '\n', 'trifling', 'weightwa', 'nothing', 'to', 'what', 'I', 'feel', 'when', 'I', 'hear', '\n', 'about', 'two', 'year', 'afterwards', 'of', 'her', 'divorce', ' ', 'it', 'be', '\n', 'that', 'which', 'throw', 'this', 'gloomeven', 'now', 'the', 'recollection', '\n', 'of', 'what', 'I', 'suffer', '\n\n', 'he', 'could', 'say', 'no', 'more', 'and', 'rise', 'hastily', 'walk', 'for', 'a', 'few', '\n', 'minute', 'about', 'the', 'room', ' ', 'Elinor', 'affect', 'by', 'his', 'relation', '\n', 'and', 'still', 'more', 'by', 'his', 'distress', 'could', 'not', 'speak', ' ', 'he', 'see', '\n', 'her', 'concern', 'and', 'come', 'to', 'she', 'take', 'her', 'hand', 'press', 'it', '\n', 'and', 'kiss', 'it', 'with', 'grateful', 'respect', ' ', 'a', 'few', 'minute', 'more', '\n', 'of', 'silent', 'exertion', 'enable', 'he', 'to', 'proceed', 'with', 'composure', '\n\n', 'it', 'be', 'nearly', 'three', 'year', 'after', 'this', 'unhappy', '\n', 'period', 'before', 'I', 'return', 'to', 'England', ' ', 'my', 'first', 'care', '\n', 'when', 'I', 'do', 'arrive', 'be', 'of', 'course', 'to', 'seek', 'for', 'she', '\n', 'but', 'the', 'search', 'be', 'as', 'fruitless', 'as', 'it', 'be', 'melancholy', '\n', 'I', 'could', 'not', 'trace', 'she', 'beyond', 'her', 'first', 'seducer', 'and', 'there', '\n', 'be', 'every', 'reason', 'to', 'fear', 'that', 'she', 'have', 'remove', 'from', 'he', '\n', 'only', 'to', 'sink', 'deeply', 'in', 'a', 'life', 'of', 'sin', ' ', 'her', 'legal', 'allowance', '\n', 'be', 'not', 'adequate', 'to', 'her', 'fortune', 'nor', 'sufficient', 'for', 'her', '\n', 'comfortable', 'maintenance', 'and', 'I', 'learn', 'from', 'my', 'brother', 'that', '\n', 'the', 'power', 'of', 'receive', 'it', 'have', 'be', 'make', 'over', 'some', 'month', '\n', 'before', 'to', 'another', 'person', ' ', 'he', 'imagine', 'and', 'calmly', 'could', 'he', '\n', 'imagine', 'it', 'that', 'her', 'extravagance', 'and', 'consequent', 'distress', '\n', 'have', 'oblige', 'she', 'to', 'dispose', 'of', 'it', 'for', 'some', 'immediate', 'relief', '\n', 'at', 'last', 'however', 'and', 'after', 'I', 'have', 'be', 'six', 'month', 'in', 'England', '\n', 'I', 'do', 'find', 'her', ' ', 'Regard', 'for', 'a', 'former', 'servant', 'of', 'my', 'own', '\n', 'who', 'have', 'since', 'fall', 'into', 'misfortune', 'carry', 'I', 'to', 'visit', '\n', 'he', 'in', 'a', 'spunginghouse', 'where', 'he', 'be', 'confine', 'for', 'debt', '\n', 'and', 'there', 'the', 'same', 'house', 'under', 'a', 'similar', 'confinement', '\n', 'be', 'my', 'unfortunate', 'sister', ' ', 'so', 'alteredso', 'fadedworn', '\n', 'down', 'by', 'acute', 'suffering', 'of', 'every', 'kind', 'hardly', 'could', 'I', '\n', 'believe', 'the', 'melancholy', 'and', 'sickly', 'figure', 'before', 'I', '\n', 'to', 'be', 'the', 'remain', 'of', 'the', 'lovely', 'bloom', 'healthful', 'girl', '\n', 'on', 'whom', 'I', 'have', 'once', 'dote', ' ', 'what', 'I', 'endure', 'in', 'so', 'beholding', '\n', 'herbut', 'I', 'have', 'no', 'right', 'to', 'wound', 'your', 'feeling', 'by', 'attempt', '\n', 'to', 'describe', 'iti', 'have', 'pain', 'you', 'too', 'much', 'already', '\n', 'that', 'she', 'be', 'to', 'all', 'appearance', 'in', 'the', 'last', 'stage', '\n', 'of', 'a', 'consumption', 'wasyes', 'in', 'such', 'a', 'situation', 'it', 'be', '\n', 'my', 'great', 'comfort', ' ', 'Life', 'could', 'do', 'nothing', 'for', 'she', '\n', 'beyond', 'give', 'time', 'for', 'a', 'well', 'preparation', 'for', 'death', '\n', 'and', 'that', 'be', 'give', ' ', 'I', 'see', 'she', 'place', 'in', 'comfortable', 'lodging', '\n', 'and', 'under', 'proper', 'attendant', 'I', 'visit', 'she', 'every', 'day', '\n', 'during', 'the', 'rest', 'of', 'her', 'short', 'life', 'I', 'be', 'with', 'she', 'in', 'she', '\n', 'last', 'moment', '\n\n', 'again', 'he', 'stop', 'to', 'recover', 'himself', 'and', 'Elinor', '\n', 'speak', 'her', 'feeling', 'in', 'an', 'exclamation', 'of', 'tender', 'concern', '\n', 'at', 'the', 'fate', 'of', 'his', 'unfortunate', 'friend', '\n\n', 'your', 'sister', 'I', 'hope', 'can', 'not', 'be', 'offend', 'say', 'he', '\n', 'by', 'the', 'resemblance', 'I', 'have', 'fancy', 'between', 'she', 'and', 'my', '\n', 'poor', 'disgrace', 'relation', ' ', 'their', 'fate', 'their', 'fortune', '\n', 'can', 'not', 'be', 'the', 'same', 'and', 'have', 'the', 'natural', 'sweet', '\n', 'disposition', 'of', 'the', 'one', 'be', 'guard', 'by', 'a', 'firm', 'mind', '\n', 'or', 'a', 'happy', 'marriage', 'she', 'might', 'have', 'be', 'all', 'that', 'you', '\n', 'will', 'live', 'to', 'see', 'the', 'other', 'be', ' ', 'but', 'to', 'what', 'do', 'all', 'this', '\n', 'lead', ' ', 'I', 'seem', 'to', 'have', 'be', 'distress', 'you', 'for', 'nothing', '\n', 'ah', 'Miss', 'Dashwooda', 'subject', 'such', 'as', 'thisuntouche', '\n', 'for', 'fourteen', 'yearsit', 'be', 'dangerous', 'to', 'handle', 'it', 'at', 'all', '\n', 'I', 'will', 'be', 'more', 'collectedmore', 'concise', ' ', 'she', 'leave', 'to', 'my', 'care', '\n', 'her', 'only', 'child', 'a', 'little', 'girl', 'the', 'offspring', 'of', 'her', 'first', '\n', 'guilty', 'connection', 'who', 'be', 'then', 'about', 'three', 'year', 'old', '\n', 'she', 'love', 'the', 'child', 'and', 'have', 'always', 'keep', 'it', 'with', 'she', '\n', 'it', 'be', 'a', 'value', 'a', 'precious', 'trust', 'to', 'I', 'and', 'gladly', '\n', 'would', 'I', 'have', 'discharge', 'it', 'in', 'the', 'strictest', 'sense', '\n', 'by', 'watch', 'over', 'her', 'education', 'myself', 'have', 'the', 'nature', '\n', 'of', 'our', 'situation', 'allow', 'it', 'but', 'I', 'have', 'no', 'family', 'no', 'home', '\n', 'and', 'my', 'little', 'Eliza', 'be', 'therefore', 'place', 'at', 'school', '\n', 'I', 'see', 'she', 'there', 'whenever', 'I', 'could', 'and', 'after', 'the', 'death', 'of', 'my', '\n', 'brother', 'which', 'happen', 'about', 'five', 'year', 'ago', 'and', 'which', '\n', 'leave', 'to', 'I', 'the', 'possession', 'of', 'the', 'family', 'property', 'she', '\n', 'visit', 'I', 'at', 'Delaford', ' ', 'I', 'call', 'she', 'a', 'distant', 'relation', '\n', 'but', 'I', 'be', 'well', 'aware', 'that', 'I', 'have', 'in', 'general', 'be', 'suspect', '\n', 'of', 'a', 'much', 'nearer', 'connection', 'with', 'her', ' ', 'it', 'be', 'now', 'three', '\n', 'year', 'ago', 'she', 'have', 'just', 'reach', 'her', 'fourteenth', 'year', '\n', 'that', 'I', 'remove', 'she', 'from', 'school', 'to', 'place', 'she', 'under', 'the', 'care', '\n', 'of', 'a', 'very', 'respectable', 'woman', 'reside', 'in', 'Dorsetshire', '\n', 'who', 'have', 'the', 'charge', 'of', 'four', 'or', 'five', 'other', 'girl', 'of', 'about', '\n', 'the', 'same', 'time', 'of', 'life', 'and', 'for', 'two', 'year', 'I', 'have', 'every', 'reason', '\n', 'to', 'be', 'pleased', 'with', 'her', 'situation', ' ', 'but', 'last', 'February', '\n', 'almost', 'a', 'twelvemonth', 'back', 'she', 'suddenly', 'disappear', '\n', 'I', 'have', 'allow', 'she', 'imprudently', 'as', 'it', 'have', 'since', 'turn', '\n', 'out', 'at', 'her', 'earnest', 'desire', 'to', 'go', 'to', 'Bath', 'with', 'one', 'of', '\n', 'her', 'young', 'friend', 'who', 'be', 'attend', 'her', 'father', 'there', '\n', 'for', 'his', 'health', ' ', 'I', 'know', 'he', 'to', 'be', 'a', 'very', 'good', 'sort', 'of', 'man', '\n', 'and', 'I', 'think', 'well', 'of', 'his', 'daughterbetter', 'than', 'she', 'deserve', '\n', 'for', 'with', 'a', 'most', 'obstinate', 'and', 'illjudge', 'secrecy', '\n', 'she', 'would', 'tell', 'nothing', 'would', 'give', 'no', 'clue', 'though', 'she', '\n', 'certainly', 'know', 'all', ' ', 'he', 'her', 'father', 'a', 'wellmeaning', '\n', 'but', 'not', 'a', 'quicksighte', 'man', 'could', 'really', 'I', 'believe', '\n', 'give', 'no', 'information', 'for', 'he', 'have', 'be', 'generally', 'confine', '\n', 'to', 'the', 'house', 'while', 'the', 'girl', 'be', 'range', 'over', 'the', 'town', '\n', 'and', 'make', 'what', 'acquaintance', 'they', 'choose', 'and', 'he', 'try', '\n', 'to', 'convince', 'I', 'as', 'thoroughly', 'as', 'he', 'be', 'convince', 'himself', '\n', 'of', 'his', 'daughter', 'be', 'entirely', 'unconcerned', 'in', 'the', 'business', '\n', 'in', 'short', 'I', 'could', 'learn', 'nothing', 'but', 'that', 'she', 'be', 'go', '\n', 'all', 'the', 'rest', 'for', 'eight', 'long', 'month', 'be', 'leave', 'to', 'conjecture', '\n', 'what', 'I', 'think', 'what', 'I', 'fear', 'may', 'be', 'imagine', 'and', 'what', 'I', '\n', 'suffer', 'too', '\n\n', 'good', 'heaven', 'cry', 'Elinor', 'could', 'it', 'becould', '\n', 'Willoughby', '\n\n', 'the', 'first', 'news', 'that', 'reach', 'I', 'of', 'she', 'he', 'continue', '\n', 'come', 'in', 'a', 'letter', 'from', 'herself', 'last', 'October', '\n', 'it', 'be', 'forward', 'to', 'I', 'from', 'Delaford', 'and', 'I', 'receive', 'it', '\n', 'on', 'the', 'very', 'morning', 'of', 'our', 'intend', 'party', 'to', 'Whitwell', '\n', 'and', 'this', 'be', 'the', 'reason', 'of', 'my', 'leave', 'Barton', 'so', 'suddenly', '\n', 'which', 'I', 'be', 'sure', 'must', 'at', 'the', 'time', 'have', 'appear', 'strange', '\n', 'to', 'every', 'body', 'and', 'which', 'I', 'believe', 'give', 'offence', 'to', 'some', '\n', 'Little', 'do', 'Mr', 'Willoughby', 'imagine', 'I', 'suppose', 'when', 'his', '\n', 'look', 'censure', 'I', 'for', 'incivility', 'in', 'break', 'up', 'the', 'party', '\n', 'that', 'I', 'be', 'call', 'away', 'to', 'the', 'relief', 'of', 'one', 'whom', 'he', '\n', 'have', 'make', 'poor', 'and', 'miserable', 'but', 'have', 'he', 'know', 'it', '\n', 'what', 'would', 'it', 'have', 'avail', ' ', 'would', 'he', 'have', 'be', 'less', '\n', 'gay', 'or', 'less', 'happy', 'in', 'the', 'smile', 'of', 'your', 'sister', ' ', 'No', '\n', 'he', 'have', 'already', 'do', 'that', 'which', 'no', 'man', 'who', 'can', 'feel', '\n', 'for', 'another', 'would', 'do', ' ', 'he', 'have', 'leave', 'the', 'girl', 'whose', '\n', 'youth', 'and', 'innocence', 'he', 'have', 'seduce', 'in', 'a', 'situation', 'of', '\n', 'the', 'utmost', 'distress', 'with', 'no', 'creditable', 'home', 'no', 'help', '\n', 'no', 'friend', 'ignorant', 'of', 'his', 'address', ' ', 'he', 'have', 'leave', 'she', '\n', 'promise', 'to', 'return', 'he', 'neither', 'return', 'nor', 'write', '\n', 'nor', 'relieve', 'her', '\n\n', 'this', 'be', 'beyond', 'every', 'thing', 'exclaim', 'Elinor', '\n\n', 'his', 'character', 'be', 'now', 'before', 'you', 'expensive', 'dissipate', '\n', 'and', 'bad', 'than', 'both', ' ', 'know', 'all', 'this', 'as', 'I', 'have', 'now', '\n', 'know', 'it', 'many', 'week', 'guess', 'what', 'I', 'must', 'have', 'feel', 'on', 'see', '\n', 'your', 'sister', 'as', 'fond', 'of', 'he', 'as', 'ever', 'and', 'on', 'be', 'assure', '\n', 'that', 'she', 'be', 'to', 'marry', 'he', 'guess', 'what', 'I', 'must', 'have', 'feel', '\n', 'for', 'all', 'your', 'sake', ' ', 'when', 'I', 'come', 'to', 'you', 'last', 'week', 'and', '\n', 'find', 'you', 'alone', 'I', 'come', 'determined', 'to', 'know', 'the', 'truth', '\n', 'though', 'irresolute', 'what', 'to', 'do', 'when', 'it', 'be', 'know', '\n', 'my', 'behaviour', 'must', 'have', 'seem', 'strange', 'to', 'you', 'then', '\n', 'but', 'now', 'you', 'will', 'comprehend', 'it', ' ', 'to', 'suffer', 'you', 'all', 'to', 'be', '\n', 'so', 'deceive', 'to', 'see', 'your', 'sisterbut', 'what', 'could', 'I', 'do', '\n', 'I', 'have', 'no', 'hope', 'of', 'interfere', 'with', 'success', 'and', 'sometimes', '\n', 'I', 'think', 'your', 'sister', 'influence', 'might', 'yet', 'reclaim', 'he', '\n', 'but', 'now', 'after', 'such', 'dishonorable', 'usage', 'who', 'can', 'tell', 'what', '\n', 'be', 'his', 'design', 'on', 'her', ' ', 'whatever', 'they', 'may', 'have', 'be', '\n', 'however', 'she', 'may', 'now', 'and', 'hereafter', 'doubtless', 'will', '\n', 'turn', 'with', 'gratitude', 'towards', 'her', 'own', 'condition', 'when', 'she', '\n', 'compare', 'it', 'with', 'that', 'of', 'my', 'poor', 'Eliza', 'when', 'she', 'consider', '\n', 'the', 'wretched', 'and', 'hopeless', 'situation', 'of', 'this', 'poor', 'girl', '\n', 'and', 'picture', 'she', 'to', 'herself', 'with', 'an', 'affection', 'for', 'he', 'so', 'strong', '\n', 'still', 'as', 'strong', 'as', 'her', 'own', 'and', 'with', 'a', 'mind', 'torment', '\n', 'by', 'selfreproach', 'which', 'must', 'attend', 'she', 'through', 'life', '\n', 'surely', 'this', 'comparison', 'must', 'have', 'its', 'use', 'with', 'she', '\n', 'she', 'will', 'feel', 'her', 'own', 'suffering', 'to', 'be', 'nothing', ' ', 'they', '\n', 'proceed', 'from', 'no', 'misconduct', 'and', 'can', 'bring', 'no', 'disgrace', '\n', 'on', 'the', 'contrary', 'every', 'friend', 'must', 'be', 'make', 'still', 'more', '\n', 'her', 'friend', 'by', 'they', ' ', 'Concern', 'for', 'her', 'unhappiness', '\n', 'and', 'respect', 'for', 'her', 'fortitude', 'under', 'it', 'must', 'strengthen', '\n', 'every', 'attachment', ' ', 'use', 'your', 'own', 'discretion', 'however', '\n', 'in', 'communicate', 'to', 'she', 'what', 'I', 'have', 'tell', 'you', ' ', 'you', 'must', '\n', 'know', 'good', 'what', 'will', 'be', 'its', 'effect', 'but', 'have', 'I', 'not', 'seriously', '\n', 'and', 'from', 'my', 'heart', 'believe', 'it', 'might', 'be', 'of', 'service', '\n', 'might', 'lessen', 'her', 'regret', 'I', 'would', 'not', 'have', 'suffer', '\n', 'myself', 'to', 'trouble', 'you', 'with', 'this', 'account', 'of', 'my', 'family', '\n', 'affliction', 'with', 'a', 'recital', 'which', 'may', 'seem', 'to', 'have', 'be', '\n', 'intend', 'to', 'raise', 'myself', 'at', 'the', 'expense', 'of', 'other', '\n\n', 'Elinors', 'thank', 'follow', 'this', 'speech', 'with', 'grateful', '\n', 'earnestness', 'attend', 'too', 'with', 'the', 'assurance', 'of', 'her', '\n', 'expect', 'material', 'advantage', 'to', 'Marianne', 'from', 'the', '\n', 'communication', 'of', 'what', 'have', 'pass', '\n\n', 'I', 'have', 'be', 'more', 'pained', 'say', 'she', 'by', 'her', '\n', 'endeavor', 'to', 'acquit', 'he', 'than', 'by', 'all', 'the', 'rest', 'for', 'it', '\n', 'irritate', 'her', 'mind', 'more', 'than', 'the', 'most', 'perfect', 'conviction', '\n', 'of', 'his', 'unworthiness', 'can', 'do', ' ', 'now', 'though', 'at', 'first', 'she', '\n', 'will', 'suffer', 'much', 'I', 'be', 'sure', 'she', 'will', 'soon', 'become', 'easy', '\n', 'have', 'you', 'she', 'continue', 'after', 'a', 'short', 'silence', '\n', 'ever', 'see', 'Mr', 'Willoughby', 'since', 'you', 'leave', 'he', 'at', 'Barton', '\n\n', 'yes', 'he', 'reply', 'gravely', 'once', 'I', 'have', ' ', 'one', 'meeting', '\n', 'be', 'unavoidable', '\n\n', 'Elinor', 'startled', 'by', 'his', 'manner', 'look', 'at', 'he', 'anxiously', '\n', 'say', '\n\n', 'what', 'have', 'you', 'meet', 'he', 'to', '\n\n', 'I', 'could', 'meet', 'he', 'no', 'other', 'way', ' ', 'Eliza', 'have', 'confess', '\n', 'to', 'I', 'though', 'most', 'reluctantly', 'the', 'name', 'of', 'her', 'lover', '\n', 'and', 'when', 'he', 'return', 'to', 'town', 'which', 'be', 'within', 'a', 'fortnight', '\n', 'after', 'myself', 'we', 'meet', 'by', 'appointment', 'he', 'to', 'defend', '\n', 'I', 'to', 'punish', 'his', 'conduct', ' ', 'we', 'return', 'unwounded', '\n', 'and', 'the', 'meeting', 'therefore', 'never', 'get', 'abroad', '\n\n', 'Elinor', 'sigh', 'over', 'the', 'fancied', 'necessity', 'of', 'this', '\n', 'but', 'to', 'a', 'man', 'and', 'a', 'soldier', 'she', 'presume', 'not', 'to', 'censure', 'it', '\n\n', 'such', 'say', 'Colonel', 'Brandon', 'after', 'a', 'pause', '\n', 'have', 'be', 'the', 'unhappy', 'resemblance', 'between', 'the', 'fate', 'of', 'mother', '\n', 'and', 'daughter', 'and', 'so', 'imperfectly', 'have', 'I', 'discharge', 'my', 'trust', '\n\n', 'be', 'she', 'still', 'in', 'town', '\n\n', 'no', 'as', 'soon', 'as', 'she', 'recover', 'from', 'her', 'lyingin', '\n', 'for', 'I', 'find', 'she', 'near', 'her', 'delivery', 'I', 'remove', 'she', 'and', 'her', '\n', 'child', 'into', 'the', 'country', 'and', 'there', 'she', 'remain', '\n\n', 'recollect', 'soon', 'afterwards', 'that', 'he', 'be', 'probably', '\n', 'divide', 'Elinor', 'from', 'her', 'sister', 'he', 'put', 'an', 'end', 'to', 'his', 'visit', '\n', 'receive', 'from', 'she', 'again', 'the', 'same', 'grateful', 'acknowledgment', '\n', 'and', 'leave', 'she', 'full', 'of', 'compassion', 'and', 'esteem', 'for', 'he', '\n\n\n\n', 'chapter', '32', '\n\n\n', 'when', 'the', 'particular', 'of', 'this', 'conversation', 'be', 'repeat', '\n', 'by', 'Miss', 'Dashwood', 'to', 'her', 'sister', 'as', 'they', 'very', 'soon', 'be', '\n', 'the', 'effect', 'on', 'she', 'be', 'not', 'entirely', 'such', 'as', 'the', 'former', '\n', 'have', 'hope', 'to', 'see', ' ', 'not', 'that', 'Marianne', 'appear', 'to', 'distrust', '\n', 'the', 'truth', 'of', 'any', 'part', 'of', 'it', 'for', 'she', 'listen', 'to', 'it', 'all', '\n', 'with', 'the', 'most', 'steady', 'and', 'submissive', 'attention', 'make', 'neither', '\n', 'objection', 'nor', 'remark', 'attempt', 'no', 'vindication', 'of', 'Willoughby', '\n', 'and', 'seem', 'to', 'shew', 'by', 'her', 'tear', 'that', 'she', 'feel', 'it', 'to', '\n', 'be', 'impossible', ' ', 'but', 'though', 'this', 'behaviour', 'assure', 'Elinor', '\n', 'that', 'the', 'conviction', 'of', 'this', 'guilt', 'be', 'carry', 'home', 'to', '\n', 'her', 'mind', 'though', 'she', 'see', 'with', 'satisfaction', 'the', 'effect', 'of', 'it', '\n', 'in', 'she', 'no', 'long', 'avoid', 'Colonel', 'Brandon', 'when', 'he', 'call', '\n', 'in', 'she', 'speak', 'to', 'he', 'even', 'voluntarily', 'speak', '\n', 'with', 'a', 'kind', 'of', 'compassionate', 'respect', 'and', 'though', 'she', '\n', 'see', 'her', 'spirit', 'less', 'violently', 'irritated', 'than', 'before', '\n', 'she', 'do', 'not', 'see', 'she', 'less', 'wretched', ' ', 'her', 'mind', 'do', 'become', '\n', 'settle', 'but', 'it', 'be', 'settle', 'in', 'a', 'gloomy', 'dejection', '\n', 'she', 'feel', 'the', 'loss', 'of', 'Willoughbys', 'character', 'yet', 'more', 'heavily', '\n', 'than', 'she', 'have', 'feel', 'the', 'loss', 'of', 'his', 'heart', 'his', 'seduction', 'and', '\n', 'desertion', 'of', 'Miss', 'Williams', 'the', 'misery', 'of', 'that', 'poor', 'girl', '\n', 'and', 'the', 'doubt', 'of', 'what', 'his', 'design', 'might', 'once', 'have', 'be', '\n', 'on', 'herself', 'prey', 'altogether', 'so', 'much', 'on', 'her', 'spirit', '\n', 'that', 'she', 'could', 'not', 'bring', 'herself', 'to', 'speak', 'of', 'what', 'she', 'feel', '\n', 'even', 'to', 'Elinor', 'and', 'brood', 'over', 'her', 'sorrow', 'in', 'silence', '\n', 'give', 'more', 'pain', 'to', 'her', 'sister', 'than', 'could', 'have', 'be', 'communicate', '\n', 'by', 'the', 'most', 'open', 'and', 'most', 'frequent', 'confession', 'of', 'they', '\n\n', 'to', 'give', 'the', 'feeling', 'or', 'the', 'language', 'of', 'Mrs', 'Dashwood', '\n', 'on', 'receive', 'and', 'answer', 'Elinors', 'letter', 'would', 'be', 'only', '\n', 'to', 'give', 'a', 'repetition', 'of', 'what', 'her', 'daughter', 'have', 'already', 'feel', '\n', 'and', 'say', 'of', 'a', 'disappointment', 'hardly', 'less', 'painful', 'than', '\n', 'Mariannes', 'and', 'an', 'indignation', 'even', 'great', 'than', 'Elinors', '\n', 'long', 'letter', 'from', 'her', 'quickly', 'succeed', 'each', 'other', '\n', 'arrive', 'to', 'tell', 'all', 'that', 'she', 'suffer', 'and', 'think', '\n', 'to', 'express', 'her', 'anxious', 'solicitude', 'for', 'Marianne', 'and', 'entreat', '\n', 'she', 'would', 'bear', 'up', 'with', 'fortitude', 'under', 'this', 'misfortune', '\n', 'Bad', 'indeed', 'must', 'the', 'nature', 'of', 'Mariannes', 'affliction', 'be', '\n', 'when', 'her', 'mother', 'could', 'talk', 'of', 'fortitude', 'mortifying', '\n', 'and', 'humiliating', 'must', 'be', 'the', 'origin', 'of', 'those', 'regret', '\n', 'which', 'she', 'could', 'wish', 'she', 'not', 'to', 'indulge', '\n\n', 'against', 'the', 'interest', 'of', 'her', 'own', 'individual', 'comfort', '\n', 'Mrs', 'Dashwood', 'have', 'determine', 'that', 'it', 'would', 'be', 'well', 'for', '\n', 'Marianne', 'to', 'be', 'any', 'where', 'at', 'that', 'time', 'than', 'at', 'Barton', '\n', 'where', 'every', 'thing', 'within', 'her', 'view', 'would', 'be', 'bring', 'back', '\n', 'the', 'past', 'in', 'the', 'strong', 'and', 'most', 'afflict', 'manner', '\n', 'by', 'constantly', 'place', 'Willoughby', 'before', 'she', 'such', 'as', '\n', 'she', 'have', 'always', 'see', 'he', 'there', ' ', 'she', 'recommend', 'it', 'to', '\n', 'her', 'daughter', 'therefore', 'by', 'all', 'mean', 'not', 'to', 'shorten', 'their', '\n', 'visit', 'to', 'Mrs', 'Jennings', 'the', 'length', 'of', 'which', 'though', 'never', '\n', 'exactly', 'fix', 'have', 'be', 'expect', 'by', 'all', 'to', 'comprise', 'at', 'least', '\n', 'five', 'or', 'six', 'week', ' ', 'a', 'variety', 'of', 'occupation', 'of', 'object', '\n', 'and', 'of', 'company', 'which', 'could', 'not', 'be', 'procure', 'at', 'Barton', '\n', 'would', 'be', 'inevitable', 'there', 'and', 'might', 'yet', 'she', 'hope', '\n', 'cheat', 'Marianne', 'at', 'time', 'into', 'some', 'interest', 'beyond', 'herself', '\n', 'and', 'even', 'into', 'some', 'amusement', 'much', 'as', 'the', 'idea', 'of', 'both', '\n', 'might', 'now', 'be', 'spurn', 'by', 'she', '\n\n', 'from', 'all', 'danger', 'of', 'see', 'Willoughby', 'again', '\n', 'her', 'mother', 'consider', 'she', 'to', 'be', 'at', 'least', 'equally', 'safe', '\n', 'in', 'town', 'as', 'in', 'the', 'country', 'since', 'his', 'acquaintance', 'must', '\n', 'now', 'be', 'drop', 'by', 'all', 'who', 'call', 'themselves', 'her', 'friend', '\n', 'Design', 'could', 'never', 'bring', 'they', 'in', 'each', 'other', 'way', '\n', 'negligence', 'could', 'never', 'leave', 'they', 'expose', 'to', 'a', 'surprise', '\n', 'and', 'chance', 'have', 'less', 'in', 'its', 'favour', 'in', 'the', 'crowd', 'of', 'London', '\n', 'than', 'even', 'in', 'the', 'retirement', 'of', 'Barton', 'where', 'it', 'might', '\n', 'force', 'he', 'before', 'she', 'while', 'pay', 'that', 'visit', 'at', 'Allenham', '\n', 'on', 'his', 'marriage', 'which', 'Mrs', 'Dashwood', 'from', 'foresee', 'at', '\n', 'first', 'as', 'a', 'probable', 'event', 'have', 'bring', 'herself', 'to', 'expect', '\n', 'as', 'a', 'certain', 'one', '\n\n', 'she', 'have', 'yet', 'another', 'reason', 'for', 'wish', 'her', 'child', '\n', 'to', 'remain', 'where', 'they', 'be', 'a', 'letter', 'from', 'her', 'soninlaw', '\n', 'have', 'tell', 'she', 'that', 'he', 'and', 'his', 'wife', 'be', 'to', 'be', 'in', 'town', '\n', 'before', 'the', 'middle', 'of', 'February', 'and', 'she', 'judge', 'it', 'right', '\n', 'that', 'they', 'should', 'sometimes', 'see', 'their', 'brother', '\n\n', 'Marianne', 'have', 'promise', 'to', 'be', 'guide', 'by', 'her', 'mother', 'opinion', '\n', 'and', 'she', 'submit', 'to', 'it', 'therefore', 'without', 'opposition', '\n', 'though', 'it', 'prove', 'perfectly', 'different', 'from', 'what', 'she', 'wish', '\n', 'and', 'expect', 'though', 'she', 'feel', 'it', 'to', 'be', 'entirely', 'wrong', '\n', 'form', 'on', 'mistaken', 'ground', 'and', 'that', 'by', 'require', 'her', '\n', 'long', 'continuance', 'in', 'London', 'it', 'deprive', 'she', 'of', 'the', 'only', '\n', 'possible', 'alleviation', 'of', 'her', 'wretchedness', 'the', 'personal', '\n', 'sympathy', 'of', 'her', 'mother', 'and', 'doom', 'she', 'to', 'such', 'society', 'and', '\n', 'such', 'scene', 'as', 'must', 'prevent', 'she', 'ever', 'know', 'a', 'moment', 'rest', '\n\n', 'but', 'it', 'be', 'a', 'matter', 'of', 'great', 'consolation', 'to', 'she', '\n', 'that', 'what', 'bring', 'evil', 'to', 'herself', 'would', 'bring', 'good', 'to', '\n', 'her', 'sister', 'and', 'Elinor', 'on', 'the', 'other', 'hand', 'suspecting', 'that', '\n', 'it', 'would', 'not', 'be', 'in', 'her', 'power', 'to', 'avoid', 'Edward', 'entirely', '\n', 'comfort', 'herself', 'by', 'think', 'that', 'though', 'their', 'long', '\n', 'stay', 'would', 'therefore', 'militate', 'against', 'her', 'own', 'happiness', '\n', 'it', 'would', 'be', 'well', 'for', 'Marianne', 'than', 'an', 'immediate', 'return', '\n', 'into', 'Devonshire', '\n\n', 'her', 'carefulness', 'in', 'guard', 'her', 'sister', 'from', 'ever', '\n', 'hear', 'Willoughbys', 'name', 'mention', 'be', 'not', 'throw', 'away', '\n', 'Marianne', 'though', 'without', 'know', 'it', 'herself', 'reap', 'all', '\n', 'its', 'advantage', 'for', 'neither', 'Mrs', 'Jennings', 'nor', 'Sir', 'John', '\n', 'nor', 'even', 'Mrs', 'Palmer', 'herself', 'ever', 'speak', 'of', 'he', 'before', 'her', '\n', 'Elinor', 'wish', 'that', 'the', 'same', 'forbearance', 'could', 'have', 'extend', '\n', 'towards', 'herself', 'but', 'that', 'be', 'impossible', 'and', 'she', 'be', '\n', 'oblige', 'to', 'listen', 'day', 'after', 'day', 'to', 'the', 'indignation', 'of', 'they', 'all', '\n\n', 'Sir', 'John', 'could', 'not', 'have', 'think', 'it', 'possible', '\n', 'a', 'man', 'of', 'whom', 'he', 'have', 'always', 'have', 'such', 'reason', 'to', 'think', 'well', '\n', 'such', 'a', 'goodnatured', 'fellow', ' ', 'he', 'do', 'not', 'believe', 'there', 'be', 'a', '\n', 'bolder', 'rider', 'in', 'England', ' ', 'it', 'be', 'an', 'unaccountable', 'business', '\n', 'he', 'wish', 'he', 'at', 'the', 'devil', 'with', 'all', 'his', 'heart', ' ', 'he', 'would', '\n', 'not', 'speak', 'another', 'word', 'to', 'he', 'meet', 'he', 'where', 'he', 'might', '\n', 'for', 'all', 'the', 'world', ' ', 'no', 'not', 'if', 'it', 'be', 'to', 'be', 'by', 'the', 'side', '\n', 'of', 'Barton', 'covert', 'and', 'they', 'be', 'keep', 'watch', 'for', 'two', '\n', 'hour', 'together', ' ', 'such', 'a', 'scoundrel', 'of', 'a', 'fellow', 'such', '\n', 'a', 'deceitful', 'dog', ' ', 'it', 'be', 'only', 'the', 'last', 'time', 'they', 'meet', '\n', 'that', 'he', 'have', 'offer', 'he', 'one', 'of', 'Follys', 'puppy', 'and', 'this', '\n', 'be', 'the', 'end', 'of', 'it', '\n\n', 'Mrs', 'Palmer', 'in', 'her', 'way', 'be', 'equally', 'angry', '\n', 'she', 'be', 'determined', 'to', 'drop', 'his', 'acquaintance', 'immediately', '\n', 'and', 'she', 'be', 'very', 'thankful', 'that', 'she', 'have', 'never', 'be', 'acquaint', '\n', 'with', 'he', 'at', 'all', ' ', 'she', 'wish', 'with', 'all', 'her', 'heart', 'Combe', '\n', 'Magna', 'be', 'not', 'so', 'near', 'Cleveland', 'but', 'it', 'do', 'not', 'signify', '\n', 'for', 'it', 'be', 'a', 'great', 'deal', 'too', 'far', 'off', 'to', 'visit', 'she', 'hate', '\n', 'he', 'so', 'much', 'that', 'she', 'be', 'resolve', 'never', 'to', 'mention', '\n', 'his', 'name', 'again', 'and', 'she', 'should', 'tell', 'everybody', 'she', 'see', '\n', 'how', 'goodfornothe', 'he', 'be', '\n\n', 'the', 'rest', 'of', 'Mrs', 'Palmers', 'sympathy', 'be', 'shew', 'in', 'procure', '\n', 'all', 'the', 'particular', 'in', 'her', 'power', 'of', 'the', 'approach', 'marriage', '\n', 'and', 'communicate', 'they', 'to', 'Elinor', ' ', 'she', 'could', 'soon', 'tell', '\n', 'at', 'what', 'coachmaker', 'the', 'new', 'carriage', 'be', 'build', '\n', 'by', 'what', 'painter', 'Mr', 'Willoughbys', 'portrait', 'be', 'draw', '\n', 'and', 'at', 'what', 'warehouse', 'Miss', 'Greys', 'clothe', 'might', 'be', 'see', '\n\n', 'the', 'calm', 'and', 'polite', 'unconcern', 'of', 'Lady', 'Middleton', '\n', 'on', 'the', 'occasion', 'be', 'a', 'happy', 'relief', 'to', 'Elinors', 'spirit', '\n', 'oppress', 'as', 'they', 'often', 'be', 'by', 'the', 'clamorous', 'kindness', '\n', 'of', 'the', 'other', ' ', 'it', 'be', 'a', 'great', 'comfort', 'to', 'she', 'to', 'be', 'sure', '\n', 'of', 'exciting', 'no', 'interest', 'in', 'one', 'person', 'at', 'least', 'among', 'their', '\n', 'circle', 'of', 'friend', 'a', 'great', 'comfort', 'to', 'know', 'that', 'there', '\n', 'be', 'one', 'who', 'would', 'meet', 'she', 'without', 'feel', 'any', 'curiosity', '\n', 'after', 'particular', 'or', 'any', 'anxiety', 'for', 'her', 'sister', 'health', '\n\n', 'every', 'qualification', 'be', 'raise', 'at', 'time', 'by', 'the', '\n', 'circumstance', 'of', 'the', 'moment', 'to', 'more', 'than', 'its', 'real', 'value', '\n', 'and', 'she', 'be', 'sometimes', 'worry', 'down', 'by', 'officious', 'condolence', '\n', 'to', 'rate', 'goodbreeding', 'as', 'more', 'indispensable', 'to', 'comfort', '\n', 'than', 'goodnature', '\n\n', 'Lady', 'Middleton', 'express', 'her', 'sense', 'of', 'the', 'affair', '\n', 'about', 'once', 'every', 'day', 'or', 'twice', 'if', 'the', 'subject', 'occur', '\n', 'very', 'often', 'by', 'say', 'it', 'be', 'very', 'shocking', 'indeed', '\n', 'and', 'by', 'the', 'mean', 'of', 'this', 'continual', 'though', 'gentle', 'vent', '\n', 'be', 'able', 'not', 'only', 'to', 'see', 'the', 'Miss', 'Dashwoods', 'from', 'the', '\n', 'first', 'without', 'the', 'small', 'emotion', 'but', 'very', 'soon', '\n', 'to', 'see', 'they', 'without', 'recollect', 'a', 'word', 'of', 'the', 'matter', '\n', 'and', 'having', 'thus', 'support', 'the', 'dignity', 'of', 'her', 'own', 'sex', '\n', 'and', 'speak', 'she', 'decide', 'censure', 'of', 'what', 'be', 'wrong', '\n', 'in', 'the', 'other', 'she', 'think', 'herself', 'at', 'liberty', 'to', 'attend', '\n', 'to', 'the', 'interest', 'of', 'her', 'own', 'assembly', 'and', 'therefore', '\n', 'determine', 'though', 'rather', 'against', 'the', 'opinion', 'of', 'Sir', 'John', '\n', 'that', 'as', 'Mrs', 'Willoughby', 'would', 'at', 'once', 'be', 'a', 'woman', 'of', 'elegance', '\n', 'and', 'fortune', 'to', 'leave', 'her', 'card', 'with', 'she', 'as', 'soon', 'as', 'she', 'marry', '\n\n', 'Colonel', 'Brandons', 'delicate', 'unobtrusive', 'enquiry', '\n', 'be', 'never', 'unwelcome', 'to', 'Miss', 'Dashwood', ' ', 'he', 'have', 'abundantly', '\n', 'earn', 'the', 'privilege', 'of', 'intimate', 'discussion', 'of', 'her', '\n', 'sister', 'disappointment', 'by', 'the', 'friendly', 'zeal', 'with', '\n', 'which', 'he', 'have', 'endeavour', 'to', 'soften', 'it', 'and', 'they', 'always', '\n', 'converse', 'with', 'confidence', ' ', 'his', 'chief', 'reward', 'for', 'the', '\n', 'painful', 'exertion', 'of', 'disclose', 'past', 'sorrow', 'and', 'present', '\n', 'humiliation', 'be', 'give', 'in', 'the', 'pitying', 'eye', 'with', 'which', '\n', 'Marianne', 'sometimes', 'observe', 'he', 'and', 'the', 'gentleness', '\n', 'of', 'her', 'voice', 'whenever', 'though', 'it', 'do', 'not', 'often', 'happen', '\n', 'she', 'be', 'oblige', 'or', 'could', 'oblige', 'herself', 'to', 'speak', 'to', 'he', '\n', 'these', 'assure', 'he', 'that', 'his', 'exertion', 'have', 'produce', 'an', '\n', 'increase', 'of', 'goodwill', 'towards', 'himself', 'and', 'these', 'give', '\n', 'Elinor', 'hope', 'of', 'its', 'be', 'far', 'augment', 'hereafter', '\n', 'but', 'Mrs', 'Jennings', 'who', 'know', 'nothing', 'of', 'all', 'this', 'who', 'know', '\n', 'only', 'that', 'the', 'Colonel', 'continue', 'as', 'grave', 'as', 'ever', 'and', 'that', '\n', 'she', 'could', 'neither', 'prevail', 'on', 'he', 'to', 'make', 'the', 'offer', 'himself', '\n', 'nor', 'commission', 'she', 'to', 'make', 'it', 'for', 'he', 'begin', 'at', 'the', '\n', 'end', 'of', 'two', 'day', 'to', 'think', 'that', 'instead', 'of', 'Midsummer', '\n', 'they', 'would', 'not', 'be', 'marry', 'till', 'Michaelmas', 'and', 'by', 'the', '\n', 'end', 'of', 'a', 'week', 'that', 'it', 'would', 'not', 'be', 'a', 'match', 'at', 'all', '\n', 'the', 'good', 'understanding', 'between', 'the', 'Colonel', 'and', 'Miss', '\n', 'Dashwood', 'seem', 'rather', 'to', 'declare', 'that', 'the', 'honour', '\n', 'of', 'the', 'mulberrytree', 'the', 'canal', 'and', 'the', 'yew', 'arbour', '\n', 'would', 'all', 'be', 'make', 'over', 'to', 'she', 'and', 'Mrs', 'Jennings', 'have', '\n', 'for', 'some', 'time', 'cease', 'to', 'think', 'at', 'all', 'of', 'Mrs', 'Ferrars', '\n\n', 'early', 'in', 'February', 'within', 'a', 'fortnight', 'from', 'the', '\n', 'receipt', 'of', 'Willoughbys', 'letter', 'Elinor', 'have', 'the', 'painful', '\n', 'office', 'of', 'inform', 'her', 'sister', 'that', 'he', 'be', 'marry', '\n', 'she', 'have', 'take', 'care', 'to', 'have', 'the', 'intelligence', 'convey', '\n', 'to', 'herself', 'as', 'soon', 'as', 'it', 'be', 'know', 'that', 'the', 'ceremony', '\n', 'be', 'over', 'as', 'she', 'be', 'desirous', 'that', 'Marianne', 'should', 'not', '\n', 'receive', 'the', 'first', 'notice', 'of', 'it', 'from', 'the', 'public', 'paper', '\n', 'which', 'she', 'see', 'she', 'eagerly', 'examine', 'every', 'morning', '\n\n', 'she', 'receive', 'the', 'news', 'with', 'resolute', 'composure', '\n', 'make', 'no', 'observation', 'on', 'it', 'and', 'at', 'first', 'shed', 'no', 'tear', '\n', 'but', 'after', 'a', 'short', 'time', 'they', 'would', 'burst', 'out', 'and', 'for', 'the', '\n', 'rest', 'of', 'the', 'day', 'she', 'be', 'in', 'a', 'state', 'hardly', 'less', 'pitiable', '\n', 'than', 'when', 'she', 'first', 'learn', 'to', 'expect', 'the', 'event', '\n\n', 'the', 'Willoughbys', 'leave', 'town', 'as', 'soon', 'as', 'they', 'be', 'marry', '\n', 'and', 'Elinor', 'now', 'hope', 'as', 'there', 'could', 'be', 'no', 'danger', '\n', 'of', 'her', 'see', 'either', 'of', 'they', 'to', 'prevail', 'on', 'her', 'sister', '\n', 'who', 'have', 'never', 'yet', 'leave', 'the', 'house', 'since', 'the', 'blow', 'first', 'fall', '\n', 'to', 'go', 'out', 'again', 'by', 'degree', 'as', 'she', 'have', 'do', 'before', '\n\n', 'about', 'this', 'time', 'the', 'two', 'Miss', 'Steeles', 'lately', 'arrive', '\n', 'at', 'their', 'cousin', 'house', 'in', 'Bartletts', 'Buildings', '\n', 'Holburn', 'present', 'themselves', 'again', 'before', 'their', 'more', '\n', 'grand', 'relation', 'in', 'Conduit', 'and', 'Berkeley', 'street', '\n', 'and', 'be', 'welcome', 'by', 'they', 'all', 'with', 'great', 'cordiality', '\n\n', 'Elinor', 'only', 'be', 'sorry', 'to', 'see', 'they', ' ', 'their', 'presence', '\n', 'always', 'give', 'her', 'pain', 'and', 'she', 'hardly', 'know', 'how', 'to', 'make', '\n', 'a', 'very', 'gracious', 'return', 'to', 'the', 'overpowering', 'delight', 'of', 'Lucy', '\n', 'in', 'find', 'she', 'STILL', 'in', 'town', '\n\n', 'I', 'should', 'have', 'be', 'quite', 'disappointed', 'if', 'I', 'have', 'not', '\n', 'find', 'you', 'here', 'STILL', 'say', 'she', 'repeatedly', 'with', 'a', 'strong', '\n', 'emphasis', 'on', 'the', 'word', ' ', 'but', 'I', 'always', 'think', 'I', 'should', '\n', 'I', 'be', 'almost', 'sure', 'you', 'would', 'not', 'leave', 'London', 'yet', 'awhile', '\n', 'though', 'you', 'tell', 'I', 'you', 'know', 'at', 'Barton', 'that', 'you', 'should', '\n', 'not', 'stay', 'above', 'a', 'month', ' ', 'but', 'I', 'think', 'at', 'the', 'time', '\n', 'that', 'you', 'would', 'most', 'likely', 'change', 'your', 'mind', 'when', 'it', 'come', '\n', 'to', 'the', 'point', ' ', 'it', 'would', 'have', 'be', 'such', 'a', 'great', 'pity', '\n', 'to', 'have', 'go', 'away', 'before', 'your', 'brother', 'and', 'sister', 'come', '\n', 'and', 'now', 'to', 'be', 'sure', 'you', 'will', 'be', 'in', 'no', 'hurry', 'to', 'be', 'go', '\n', 'I', 'be', 'amazingly', 'glad', 'you', 'do', 'not', 'keep', 'to', 'your', 'word', '\n\n', 'Elinor', 'perfectly', 'understand', 'she', 'and', 'be', 'force', '\n', 'to', 'use', 'all', 'her', 'selfcommand', 'to', 'make', 'it', 'appear', 'that', 'she', '\n', 'do', 'not', '\n\n', 'well', 'my', 'dear', 'say', 'Mrs', 'Jennings', 'and', 'how', 'do', '\n', 'you', 'travel', '\n\n', 'not', 'in', 'the', 'stage', 'I', 'assure', 'you', 'reply', 'Miss', 'Steele', '\n', 'with', 'quick', 'exultation', 'we', 'come', 'post', 'all', 'the', 'way', 'and', 'have', '\n', 'a', 'very', 'smart', 'beau', 'to', 'attend', 'we', ' ', 'Dr', 'Davies', 'be', 'come', '\n', 'to', 'town', 'and', 'so', 'we', 'think', 'we', 'd', 'join', 'he', 'in', 'a', 'postchaise', '\n', 'and', 'he', 'behave', 'very', 'genteelly', 'and', 'pay', 'ten', 'or', 'twelve', '\n', 'shilling', 'more', 'than', 'we', 'do', '\n\n', 'oh', 'oh', 'cry', 'Mrs', 'Jennings', 'very', 'pretty', '\n', 'indeed', 'and', 'the', 'Doctor', 'be', 'a', 'single', 'man', 'I', 'warrant', 'you', '\n\n', 'there', 'now', 'say', 'Miss', 'Steele', 'affectedly', 'simper', '\n', 'everybody', 'laugh', 'at', 'I', 'so', 'about', 'the', 'Doctor', 'and', 'I', '\n', 'can', 'not', 'think', 'why', ' ', 'my', 'cousin', 'say', 'they', 'be', 'sure', 'I', 'have', '\n', 'make', 'a', 'conquest', 'but', 'for', 'my', 'part', 'I', 'declare', 'I', 'never', 'think', '\n', 'about', 'he', 'from', 'one', 'hour', 'end', 'to', 'another', ' ', 'Lord', 'here', '\n', 'come', 'your', 'beau', 'Nancy', 'my', 'cousin', 'say', 'tother', 'day', '\n', 'when', 'she', 'see', 'he', 'cross', 'the', 'street', 'to', 'the', 'house', '\n', 'my', 'beau', 'indeed', 'say', 'II', 'can', 'not', 'think', 'who', 'you', 'mean', '\n', 'the', 'Doctor', 'be', 'no', 'beau', 'of', 'mine', '\n\n', 'aye', 'aye', 'that', 'be', 'very', 'pretty', 'talkingbut', 'it', 'will', 'not', 'do', '\n', 'the', 'Doctor', 'be', 'the', 'man', 'I', 'see', '\n\n', 'no', 'indeed', 'reply', 'her', 'cousin', 'with', 'affected', 'earnestness', '\n', 'and', 'I', 'beg', 'you', 'will', 'contradict', 'it', 'if', 'you', 'ever', 'hear', 'it', 'talk', '\n', 'of', '\n\n', 'Mrs', 'Jennings', 'directly', 'give', 'she', 'the', 'gratify', '\n', 'assurance', 'that', 'she', 'certainly', 'would', 'not', 'and', 'Miss', 'Steele', '\n', 'be', 'make', 'completely', 'happy', '\n\n', 'I', 'suppose', 'you', 'will', 'go', 'and', 'stay', 'with', 'your', 'brother', '\n', 'and', 'sister', 'Miss', 'Dashwood', 'when', 'they', 'come', 'to', 'town', '\n', 'say', 'Lucy', 'return', 'after', 'a', 'cessation', 'of', 'hostile', 'hint', '\n', 'to', 'the', 'charge', '\n\n', 'no', 'I', 'do', 'not', 'think', 'we', 'shall', '\n\n', 'oh', 'yes', 'I', 'dare', 'say', 'you', 'will', '\n\n', 'Elinor', 'would', 'not', 'humour', 'she', 'by', 'farther', 'opposition', '\n\n', 'what', 'a', 'charming', 'thing', 'it', 'be', 'that', 'Mrs', 'Dashwood', 'can', '\n', 'spare', 'you', 'both', 'for', 'so', 'long', 'a', 'time', 'together', '\n\n', 'long', 'a', 'time', 'indeed', 'interpose', 'Mrs', 'Jennings', '\n', 'why', 'their', 'visit', 'be', 'but', 'just', 'begin', '\n\n', 'Lucy', 'be', 'silence', '\n\n', 'I', 'be', 'sorry', 'we', 'can', 'not', 'see', 'your', 'sister', 'Miss', 'Dashwood', '\n', 'say', 'Miss', 'Steele', ' ', 'I', 'be', 'sorry', 'she', 'be', 'not', 'well', '\n', 'for', 'Marianne', 'have', 'leave', 'the', 'room', 'on', 'their', 'arrival', '\n\n', 'you', 'be', 'very', 'good', ' ', 'my', 'sister', 'will', 'be', 'equally', '\n', 'sorry', 'to', 'miss', 'the', 'pleasure', 'of', 'see', 'you', 'but', 'she', 'have', '\n', 'be', 'very', 'much', 'plague', 'lately', 'with', 'nervous', 'headache', '\n', 'which', 'make', 'she', 'unfit', 'for', 'company', 'or', 'conversation', '\n\n', 'oh', 'dear', 'that', 'be', 'a', 'great', 'pity', 'but', 'such', 'old', '\n', 'friend', 'as', 'Lucy', 'and', 'meI', 'think', 'she', 'might', 'see', 'US', '\n', 'and', 'I', 'be', 'sure', 'we', 'would', 'not', 'speak', 'a', 'word', '\n\n', 'Elinor', 'with', 'great', 'civility', 'decline', 'the', 'proposal', '\n', 'her', 'sister', 'be', 'perhaps', 'lay', 'down', 'upon', 'the', 'bed', 'or', 'in', 'she', '\n', 'dressing', 'gown', 'and', 'therefore', 'not', 'able', 'to', 'come', 'to', 'they', '\n\n', 'oh', 'if', 'that', 's', 'all', 'cry', 'Miss', 'Steele', 'we', 'can', '\n', 'just', 'as', 'well', 'go', 'and', 'see', 'she', '\n\n', 'Elinor', 'begin', 'to', 'find', 'this', 'impertinence', 'too', 'much', 'for', '\n', 'her', 'temper', 'but', 'she', 'be', 'save', 'the', 'trouble', 'of', 'check', 'it', '\n', 'by', 'Lucys', 'sharp', 'reprimand', 'which', 'now', 'as', 'on', 'many', 'occasion', '\n', 'though', 'it', 'do', 'not', 'give', 'much', 'sweetness', 'to', 'the', 'manner', '\n', 'of', 'one', 'sister', 'be', 'of', 'advantage', 'in', 'govern', 'those', 'of', '\n', 'the', 'other', '\n\n\n\n', 'chapter', '33', '\n\n\n', 'after', 'some', 'opposition', 'Marianne', 'yield', 'to', 'her', '\n', 'sister', 'entreatie', 'and', 'consent', 'to', 'go', 'out', 'with', 'she', '\n', 'and', 'Mrs', 'Jennings', 'one', 'morning', 'for', 'half', 'an', 'hour', 'she', '\n', 'expressly', 'condition', 'however', 'for', 'pay', 'no', 'visit', '\n', 'and', 'would', 'do', 'no', 'more', 'than', 'accompany', 'they', 'to', 'Grays', 'in', '\n', 'Sackville', 'Street', 'where', 'Elinor', 'be', 'carry', 'on', 'a', 'negotiation', '\n', 'for', 'the', 'exchange', 'of', 'a', 'few', 'oldfashioned', 'jewel', 'of', 'her', 'mother', '\n\n', 'when', 'they', 'stop', 'at', 'the', 'door', 'Mrs', 'Jennings', 'recollect', '\n', 'that', 'there', 'be', 'a', 'lady', 'at', 'the', 'other', 'end', 'of', 'the', 'street', '\n', 'on', 'whom', 'she', 'ought', 'to', 'call', 'and', 'as', 'she', 'have', 'no', 'business', '\n', 'at', 'Grays', 'it', 'be', 'resolve', 'that', 'while', 'her', 'young', 'friend', '\n', 'transact', 'theirs', 'she', 'should', 'pay', 'her', 'visit', 'and', '\n', 'return', 'for', 'they', '\n\n', 'on', 'ascend', 'the', 'stair', 'the', 'Miss', 'Dashwoods', 'find', '\n', 'so', 'many', 'people', 'before', 'they', 'in', 'the', 'room', 'that', 'there', 'be', '\n', 'not', 'a', 'person', 'at', 'liberty', 'to', 'tend', 'to', 'their', 'order', 'and', 'they', '\n', 'be', 'oblige', 'to', 'wait', ' ', 'all', 'that', 'could', 'be', 'do', 'be', 'to', 'sit', '\n', 'down', 'at', 'that', 'end', 'of', 'the', 'counter', 'which', 'seem', 'to', 'promise', 'the', '\n', 'quick', 'succession', 'one', 'gentleman', 'only', 'be', 'stand', 'there', '\n', 'and', 'it', 'be', 'probable', 'that', 'Elinor', 'be', 'not', 'without', 'hope', '\n', 'of', 'excite', 'his', 'politeness', 'to', 'a', 'quick', 'despatch', '\n', 'but', 'the', 'correctness', 'of', 'his', 'eye', 'and', 'the', 'delicacy', '\n', 'of', 'his', 'taste', 'prove', 'to', 'be', 'beyond', 'his', 'politeness', '\n', 'he', 'be', 'give', 'order', 'for', 'a', 'toothpickcase', 'for', 'himself', '\n', 'and', 'till', 'its', 'size', 'shape', 'and', 'ornament', 'be', 'determine', '\n', 'all', 'of', 'which', 'after', 'examine', 'and', 'debate', 'for', 'a', 'quarter', '\n', 'of', 'an', 'hour', 'over', 'every', 'toothpickcase', 'in', 'the', 'shop', '\n', 'be', 'finally', 'arrange', 'by', 'his', 'own', 'inventive', 'fancy', 'he', 'have', '\n', 'no', 'leisure', 'to', 'bestow', 'any', 'other', 'attention', 'on', 'the', 'two', 'lady', '\n', 'than', 'what', 'be', 'comprise', 'in', 'three', 'or', 'four', 'very', 'broad', 'stare', '\n', 'a', 'kind', 'of', 'notice', 'which', 'serve', 'to', 'imprint', 'on', 'Elinor', '\n', 'the', 'remembrance', 'of', 'a', 'person', 'and', 'face', 'of', 'strong', '\n', 'natural', 'sterling', 'insignificance', 'though', 'adorn', 'in', '\n', 'the', 'first', 'style', 'of', 'fashion', '\n\n', 'Marianne', 'be', 'spare', 'from', 'the', 'troublesome', 'feeling', '\n', 'of', 'contempt', 'and', 'resentment', 'on', 'this', 'impertinent', 'examination', '\n', 'of', 'their', 'feature', 'and', 'on', 'the', 'puppyism', 'of', 'his', 'manner', '\n', 'in', 'decide', 'on', 'all', 'the', 'different', 'horror', 'of', 'the', 'different', '\n', 'toothpickcase', 'present', 'to', 'his', 'inspection', 'by', 'remain', '\n', 'unconscious', 'of', 'it', 'all', 'for', 'she', 'be', 'as', 'well', 'able', 'to', 'collect', '\n', 'her', 'thought', 'within', 'herself', 'and', 'be', 'as', 'ignorant', 'of', 'what', 'be', '\n', 'pass', 'around', 'she', 'in', 'Mr', 'Grays', 'shop', 'as', 'in', 'her', 'own', 'bedroom', '\n\n', 'at', 'last', 'the', 'affair', 'be', 'decide', ' ', 'the', 'ivory', '\n', 'the', 'gold', 'and', 'the', 'pearl', 'all', 'receive', 'their', 'appointment', '\n', 'and', 'the', 'gentleman', 'having', 'name', 'the', 'last', 'day', 'on', 'which', 'his', '\n', 'existence', 'could', 'be', 'continue', 'without', 'the', 'possession', 'of', 'the', '\n', 'toothpickcase', 'draw', 'on', 'his', 'glove', 'with', 'leisurely', 'care', '\n', 'and', 'bestow', 'another', 'glance', 'on', 'the', 'Miss', 'Dashwoods', 'but', 'such', '\n', 'a', 'one', 'as', 'seem', 'rather', 'to', 'demand', 'than', 'express', 'admiration', '\n', 'walk', 'off', 'with', 'a', 'happy', 'air', 'of', 'real', 'conceit', 'and', 'affect', '\n', 'indifference', '\n\n', 'Elinor', 'lose', 'no', 'time', 'in', 'bring', 'her', 'business', 'forward', '\n', 'be', 'on', 'the', 'point', 'of', 'conclude', 'it', 'when', 'another', 'gentleman', '\n', 'present', 'himself', 'at', 'her', 'side', ' ', 'she', 'turn', 'her', 'eye', 'towards', '\n', 'his', 'face', 'and', 'find', 'he', 'with', 'some', 'surprise', 'to', 'be', 'her', 'brother', '\n\n', 'their', 'affection', 'and', 'pleasure', 'in', 'meeting', 'be', 'just', 'enough', '\n', 'to', 'make', 'a', 'very', 'creditable', 'appearance', 'in', 'Mr', 'Grays', 'shop', '\n', 'John', 'Dashwood', 'be', 'really', 'far', 'from', 'be', 'sorry', 'to', 'see', '\n', 'his', 'sister', 'again', 'it', 'rather', 'give', 'they', 'satisfaction', '\n', 'and', 'his', 'inquiry', 'after', 'their', 'mother', 'be', 'respectful', '\n', 'and', 'attentive', '\n\n', 'Elinor', 'find', 'that', 'he', 'and', 'Fanny', 'have', 'be', 'in', 'town', '\n', 'two', 'day', '\n\n', 'I', 'wish', 'very', 'much', 'to', 'call', 'upon', 'you', 'yesterday', '\n', 'say', 'he', 'but', 'it', 'be', 'impossible', 'for', 'we', 'be', 'oblige', '\n', 'to', 'take', 'Harry', 'to', 'see', 'the', 'wild', 'beast', 'at', 'Exeter', 'Exchange', '\n', 'and', 'we', 'spend', 'the', 'rest', 'of', 'the', 'day', 'with', 'Mrs', 'Ferrars', '\n', 'Harry', 'be', 'vastly', 'pleased', ' ', 'this', 'morning', 'I', 'have', 'fully', 'intend', '\n', 'to', 'call', 'on', 'you', 'if', 'I', 'could', 'possibly', 'find', 'a', 'spare', 'half', 'hour', '\n', 'but', 'one', 'have', 'always', 'so', 'much', 'to', 'do', 'on', 'first', 'come', 'to', 'town', '\n', 'I', 'be', 'come', 'here', 'to', 'bespeak', 'Fanny', 'a', 'seal', ' ', 'but', 'tomorrow', 'I', '\n', 'think', 'I', 'shall', 'certainly', 'be', 'able', 'to', 'call', 'in', 'Berkeley', 'Street', '\n', 'and', 'be', 'introduce', 'to', 'your', 'friend', 'Mrs', 'Jennings', '\n', 'I', 'understand', 'she', 'be', 'a', 'woman', 'of', 'very', 'good', 'fortune', '\n', 'and', 'the', 'Middletons', 'too', 'you', 'must', 'introduce', 'I', 'to', 'they', '\n', 'as', 'my', 'motherinlaw', 'relation', 'I', 'shall', 'be', 'happy', 'to', 'show', '\n', 'they', 'every', 'respect', ' ', 'they', 'be', 'excellent', 'neighbour', 'to', 'you', 'in', '\n', 'the', 'country', 'I', 'understand', '\n\n', 'Excellent', 'indeed', ' ', 'their', 'attention', 'to', 'our', 'comfort', '\n', 'their', 'friendliness', 'in', 'every', 'particular', 'be', 'more', 'than', 'I', '\n', 'can', 'express', '\n\n', 'I', 'be', 'extremely', 'glad', 'to', 'hear', 'it', 'upon', 'my', 'word', '\n', 'extremely', 'glad', 'indeed', ' ', 'but', 'so', 'it', 'ought', 'to', 'be', 'they', 'be', '\n', 'people', 'of', 'large', 'fortune', 'they', 'be', 'relate', 'to', 'you', 'and', '\n', 'every', 'civility', 'and', 'accommodation', 'that', 'can', 'serve', 'to', 'make', '\n', 'your', 'situation', 'pleasant', 'might', 'be', 'reasonably', 'expect', '\n', 'and', 'so', 'you', 'be', 'most', 'comfortably', 'settle', 'in', 'your', 'little', 'cottage', '\n', 'and', 'want', 'for', 'nothing', ' ', 'Edward', 'bring', 'we', 'a', 'most', 'charming', '\n', 'account', 'of', 'the', 'place', 'the', 'most', 'complete', 'thing', 'of', 'its', 'kind', '\n', 'he', 'say', 'that', 'ever', 'be', 'and', 'you', 'all', 'seem', 'to', 'enjoy', 'it', 'beyond', '\n', 'any', 'thing', ' ', 'it', 'be', 'a', 'great', 'satisfaction', 'to', 'we', 'to', 'hear', 'it', '\n', 'I', 'assure', 'you', '\n\n', 'Elinor', 'do', 'feel', 'a', 'little', 'ashamed', 'of', 'her', 'brother', '\n', 'and', 'be', 'not', 'sorry', 'to', 'be', 'spare', 'the', 'necessity', 'of', 'answer', 'he', '\n', 'by', 'the', 'arrival', 'of', 'Mrs', 'Jenningss', 'servant', 'who', 'come', 'to', 'tell', '\n', 'she', 'that', 'his', 'mistress', 'wait', 'for', 'they', 'at', 'the', 'door', '\n\n', 'Mr', 'Dashwood', 'attend', 'they', 'down', 'stair', 'be', 'introduce', '\n', 'to', 'Mrs', 'Jennings', 'at', 'the', 'door', 'of', 'her', 'carriage', 'and', 'repeat', '\n', 'his', 'hope', 'of', 'be', 'able', 'to', 'call', 'on', 'they', 'the', 'next', 'day', '\n', 'take', 'leave', '\n\n', 'his', 'visit', 'be', 'duly', 'pay', ' ', 'he', 'come', 'with', 'a', 'pretence', 'at', '\n', 'an', 'apology', 'from', 'their', 'sisterinlaw', 'for', 'not', 'come', 'too', '\n', 'but', 'she', 'be', 'so', 'much', 'engaged', 'with', 'her', 'mother', 'that', 'really', '\n', 'she', 'have', 'no', 'leisure', 'for', 'go', 'any', 'where', ' ', 'Mrs', 'Jennings', '\n', 'however', 'assure', 'he', 'directly', 'that', 'she', 'should', 'not', 'stand', '\n', 'upon', 'ceremony', 'for', 'they', 'be', 'all', 'cousin', 'or', 'something', '\n', 'like', 'it', 'and', 'she', 'should', 'certainly', 'wait', 'on', 'Mrs', 'John', '\n', 'Dashwood', 'very', 'soon', 'and', 'bring', 'her', 'sister', 'to', 'see', 'she', '\n', 'his', 'manner', 'to', 'they', 'though', 'calm', 'be', 'perfectly', 'kind', '\n', 'to', 'Mrs', 'Jennings', 'most', 'attentively', 'civil', 'and', 'on', 'Colonel', '\n', 'brandon', 'come', 'in', 'soon', 'after', 'himself', 'he', 'eye', 'he', 'with', 'a', '\n', 'curiosity', 'which', 'seem', 'to', 'say', 'that', 'he', 'only', 'want', 'to', 'know', '\n', 'he', 'to', 'be', 'rich', 'to', 'be', 'equally', 'civil', 'to', 'HIM', '\n\n', 'after', 'stay', 'with', 'they', 'half', 'an', 'hour', 'he', 'ask', '\n', 'Elinor', 'to', 'walk', 'with', 'he', 'to', 'Conduit', 'Street', 'and', 'introduce', '\n', 'he', 'to', 'Sir', 'John', 'and', 'Lady', 'Middleton', ' ', 'the', 'weather', 'be', '\n', 'remarkably', 'fine', 'and', 'she', 'readily', 'consent', ' ', 'as', 'soon', '\n', 'as', 'they', 'be', 'out', 'of', 'the', 'house', 'his', 'enquiry', 'begin', '\n\n', 'who', 'be', 'Colonel', 'Brandon', ' ', 'be', 'he', 'a', 'man', 'of', 'fortune', '\n\n', 'yes', 'he', 'have', 'very', 'good', 'property', 'in', 'Dorsetshire', '\n\n', 'I', 'be', 'glad', 'of', 'it', ' ', 'he', 'seem', 'a', 'most', 'gentlemanlike', 'man', '\n', 'and', 'I', 'think', 'Elinor', 'I', 'may', 'congratulate', 'you', 'on', 'the', 'prospect', '\n', 'of', 'a', 'very', 'respectable', 'establishment', 'in', 'life', '\n\n', 'I', 'brother', 'what', 'do', 'you', 'mean', '\n\n', 'he', 'like', 'you', ' ', 'I', 'observe', 'he', 'narrowly', 'and', 'be', '\n', 'convinced', 'of', 'it', ' ', 'what', 'be', 'the', 'amount', 'of', 'his', 'fortune', '\n\n', 'I', 'believe', 'about', 'two', 'thousand', 'a', 'year', '\n\n', 'two', 'thousand', 'ayear', 'and', 'then', 'work', 'himself', '\n', 'up', 'to', 'a', 'pitch', 'of', 'enthusiastic', 'generosity', 'he', 'add', '\n', 'Elinor', 'I', 'wish', 'with', 'all', 'my', 'heart', 'it', 'be', 'twice', 'as', 'much', '\n', 'for', 'your', 'sake', '\n\n', 'indeed', 'I', 'believe', 'you', 'reply', 'Elinor', 'but', 'I', 'be', '\n', 'very', 'sure', 'that', 'Colonel', 'Brandon', 'have', 'not', 'the', 'small', 'wish', '\n', 'of', 'marry', 'I', '\n\n', 'you', 'be', 'mistaken', 'Elinor', 'you', 'be', 'very', 'much', 'mistaken', '\n', 'a', 'very', 'little', 'trouble', 'on', 'your', 'side', 'secure', 'he', '\n', 'perhaps', 'just', 'at', 'present', 'he', 'may', 'be', 'undecide', 'the', 'smallness', '\n', 'of', 'your', 'fortune', 'may', 'make', 'he', 'hang', 'back', 'his', 'friend', '\n', 'may', 'all', 'advise', 'he', 'against', 'it', ' ', 'but', 'some', 'of', 'those', 'little', '\n', 'attention', 'and', 'encouragement', 'which', 'lady', 'can', 'so', 'easily', '\n', 'give', 'will', 'fix', 'he', 'in', 'spite', 'of', 'himself', ' ', 'and', 'there', 'can', 'be', '\n', 'no', 'reason', 'why', 'you', 'should', 'not', 'try', 'for', 'he', ' ', 'it', 'be', 'not', 'to', 'be', '\n', 'suppose', 'that', 'any', 'prior', 'attachment', 'on', 'your', 'sidein', 'short', '\n', 'you', 'know', 'as', 'to', 'an', 'attachment', 'of', 'that', 'kind', 'it', 'be', 'quite', '\n', 'out', 'of', 'the', 'question', 'the', 'objection', 'be', 'insurmountable', '\n', 'you', 'have', 'too', 'much', 'sense', 'not', 'to', 'see', 'all', 'that', ' ', 'Colonel', 'Brandon', '\n', 'must', 'be', 'the', 'man', 'and', 'no', 'civility', 'shall', 'be', 'want', 'on', '\n', 'my', 'part', 'to', 'make', 'he', 'pleased', 'with', 'you', 'and', 'your', 'family', '\n', 'it', 'be', 'a', 'match', 'that', 'must', 'give', 'universal', 'satisfaction', '\n', 'in', 'short', 'it', 'be', 'a', 'kind', 'of', 'thing', 'thatlowere', 'his', 'voice', '\n', 'to', 'an', 'important', 'whisperwill', 'be', 'exceedingly', 'welcome', '\n', 'to', 'all', 'party', 'recollect', 'himself', 'however', 'he', 'add', '\n', 'that', 'is', 'I', 'mean', 'to', 'sayyour', 'friend', 'be', 'all', 'truly', '\n', 'anxious', 'to', 'see', 'you', 'well', 'settle', 'Fanny', 'particularly', '\n', 'for', 'she', 'have', 'your', 'interest', 'very', 'much', 'at', 'heart', 'I', 'assure', 'you', '\n', 'and', 'her', 'mother', 'too', 'Mrs', 'Ferrars', 'a', 'very', 'goodnatured', 'woman', '\n', 'I', 'be', 'sure', 'it', 'would', 'give', 'she', 'great', 'pleasure', 'she', 'say', 'as', 'much', '\n', 'the', 'other', 'day', '\n\n', 'Elinor', 'would', 'not', 'vouchsafe', 'any', 'answer', '\n\n', 'it', 'would', 'be', 'something', 'remarkable', 'now', 'he', 'continue', '\n', 'something', 'droll', 'if', 'Fanny', 'should', 'have', 'a', 'brother', 'and', 'I', '\n', 'a', 'sister', 'settle', 'at', 'the', 'same', 'time', ' ', 'and', 'yet', 'it', 'be', 'not', '\n', 'very', 'unlikely', '\n\n', 'be', 'Mr', 'Edward', 'Ferrars', 'say', 'Elinor', 'with', 'resolution', '\n', 'go', 'to', 'be', 'marry', '\n\n', 'it', 'be', 'not', 'actually', 'settle', 'but', 'there', 'be', 'such', '\n', 'a', 'thing', 'in', 'agitation', ' ', 'he', 'have', 'a', 'most', 'excellent', 'mother', '\n', 'Mrs', 'Ferrars', 'with', 'the', 'utmost', 'liberality', 'will', 'come', 'forward', '\n', 'and', 'settle', 'on', 'he', 'a', 'thousand', 'a', 'year', 'if', 'the', 'match', '\n', 'take', 'place', ' ', 'the', 'lady', 'be', 'the', 'Hon', 'Miss', 'Morton', 'only', 'daughter', '\n', 'of', 'the', 'late', 'Lord', 'Morton', 'with', 'thirty', 'thousand', 'pound', '\n', 'a', 'very', 'desirable', 'connection', 'on', 'both', 'side', 'and', 'I', 'have', 'not', '\n', 'a', 'doubt', 'of', 'its', 'taking', 'place', 'in', 'time', ' ', 'a', 'thousand', 'ayear', '\n', 'be', 'a', 'great', 'deal', 'for', 'a', 'mother', 'to', 'give', 'away', 'to', 'make', 'over', '\n', 'for', 'ever', 'but', 'Mrs', 'Ferrars', 'have', 'a', 'noble', 'spirit', ' ', 'to', 'give', '\n', 'you', 'another', 'instance', 'of', 'her', 'liberalitythe', 'other', 'day', '\n', 'as', 'soon', 'as', 'we', 'come', 'to', 'town', 'aware', 'that', 'money', 'could', '\n', 'not', 'be', 'very', 'plenty', 'with', 'we', 'just', 'now', 'she', 'put', 'banknote', '\n', 'into', 'Fannys', 'hand', 'to', 'the', 'amount', 'of', 'two', 'hundred', 'pound', '\n', 'and', 'extremely', 'acceptable', 'it', 'be', 'for', 'we', 'must', 'live', 'at', 'a', 'great', '\n', 'expense', 'while', 'we', 'be', 'here', '\n\n', 'he', 'pause', 'for', 'her', 'assent', 'and', 'compassion', 'and', 'she', '\n', 'force', 'herself', 'to', 'say', '\n\n', 'your', 'expense', 'both', 'in', 'town', 'and', 'country', 'must', 'certainly', '\n', 'be', 'considerable', 'but', 'your', 'income', 'be', 'a', 'large', 'one', '\n\n', 'not', 'so', 'large', 'I', 'dare', 'say', 'as', 'many', 'people', 'suppose', '\n', 'I', 'do', 'not', 'mean', 'to', 'complain', 'however', 'it', 'be', 'undoubtedly', '\n', 'a', 'comfortable', 'one', 'and', 'I', 'hope', 'will', 'in', 'time', 'be', 'well', '\n', 'the', 'enclosure', 'of', 'Norland', 'Common', 'now', 'carry', 'on', '\n', 'be', 'a', 'most', 'serious', 'drain', ' ', 'and', 'then', 'I', 'have', 'make', 'a', 'little', '\n', 'purchase', 'within', 'this', 'half', 'year', 'East', 'Kingham', 'Farm', '\n', 'you', 'must', 'remember', 'the', 'place', 'where', 'old', 'Gibson', 'use', 'to', 'live', '\n', 'the', 'land', 'be', 'so', 'very', 'desirable', 'for', 'I', 'in', 'every', 'respect', '\n', 'so', 'immediately', 'adjoin', 'my', 'own', 'property', 'that', 'I', 'feel', 'it', '\n', 'my', 'duty', 'to', 'buy', 'it', ' ', 'I', 'could', 'not', 'have', 'answer', 'it', 'to', 'my', '\n', 'conscience', 'to', 'let', 'it', 'fall', 'into', 'any', 'other', 'hand', ' ', 'a', 'man', 'must', '\n', 'pay', 'for', 'his', 'convenience', 'and', 'it', 'have', 'cost', 'I', 'a', 'vast', 'deal', '\n', 'of', 'money', '\n\n', 'More', 'than', 'you', 'think', 'it', 'really', 'and', 'intrinsically', 'worth', '\n\n', 'why', 'I', 'hope', 'not', 'that', ' ', 'I', 'might', 'have', 'sell', 'it', 'again', '\n', 'the', 'next', 'day', 'for', 'more', 'than', 'I', 'give', 'but', 'with', 'regard', 'to', 'the', '\n', 'purchasemoney', 'I', 'might', 'have', 'be', 'very', 'unfortunate', 'indeed', '\n', 'for', 'the', 'stock', 'be', 'at', 'that', 'time', 'so', 'low', 'that', 'if', 'I', 'have', 'not', '\n', 'happen', 'to', 'have', 'the', 'necessary', 'sum', 'in', 'my', 'banker', 'hand', '\n', 'I', 'must', 'have', 'sell', 'out', 'to', 'very', 'great', 'loss', '\n\n', 'Elinor', 'could', 'only', 'smile', '\n\n', 'other', 'great', 'and', 'inevitable', 'expense', 'too', 'we', 'have', '\n', 'have', 'on', 'first', 'come', 'to', 'Norland', ' ', 'our', 'respected', 'father', '\n', 'as', 'you', 'well', 'know', 'bequeath', 'all', 'the', 'Stanhill', 'effect', '\n', 'that', 'remain', 'at', 'Norland', 'and', 'very', 'valuable', 'they', 'be', '\n', 'to', 'your', 'mother', ' ', 'far', 'be', 'it', 'from', 'I', 'to', 'repine', 'at', 'his', '\n', 'do', 'so', 'he', 'have', 'an', 'undoubted', 'right', 'to', 'dispose', 'of', 'his', '\n', 'own', 'property', 'as', 'he', 'choose', 'but', 'in', 'consequence', 'of', 'it', '\n', 'we', 'have', 'be', 'oblige', 'to', 'make', 'large', 'purchase', 'of', 'linen', '\n', 'china', 'c', 'to', 'supply', 'the', 'place', 'of', 'what', 'be', 'take', 'away', '\n', 'you', 'may', 'guess', 'after', 'all', 'these', 'expense', 'how', 'very', 'far', 'we', '\n', 'must', 'be', 'from', 'be', 'rich', 'and', 'how', 'acceptable', 'Mrs', 'Ferrarss', '\n', 'kindness', 'be', '\n\n', 'certainly', 'say', 'Elinor', 'and', 'assist', 'by', 'her', 'liberality', '\n', 'I', 'hope', 'you', 'may', 'yet', 'live', 'to', 'be', 'in', 'easy', 'circumstance', '\n\n', 'another', 'year', 'or', 'two', 'may', 'do', 'much', 'towards', 'it', '\n', 'he', 'gravely', 'reply', 'but', 'however', 'there', 'be', 'still', 'a', 'great', '\n', 'deal', 'to', 'be', 'do', ' ', 'there', 'be', 'not', 'a', 'stone', 'lay', 'of', 'Fannys', '\n', 'greenhouse', 'and', 'nothing', 'but', 'the', 'plan', 'of', 'the', 'flowergarden', '\n', 'mark', 'out', '\n\n', 'where', 'be', 'the', 'greenhouse', 'to', 'be', '\n\n', 'upon', 'the', 'knoll', 'behind', 'the', 'house', ' ', 'the', 'old', '\n', 'walnut', 'tree', 'be', 'all', 'come', 'down', 'to', 'make', 'room', 'for', 'it', '\n', 'it', 'will', 'be', 'a', 'very', 'fine', 'object', 'from', 'many', 'part', 'of', 'the', 'park', '\n', 'and', 'the', 'flowergarden', 'will', 'slope', 'down', 'just', 'before', 'it', '\n', 'and', 'be', 'exceedingly', 'pretty', ' ', 'we', 'have', 'clear', 'away', 'all', 'the', 'old', '\n', 'thorn', 'that', 'grow', 'in', 'patch', 'over', 'the', 'brow', '\n\n', 'Elinor', 'keep', 'her', 'concern', 'and', 'her', 'censure', 'to', 'herself', '\n', 'and', 'be', 'very', 'thankful', 'that', 'Marianne', 'be', 'not', 'present', '\n', 'to', 'share', 'the', 'provocation', '\n\n', 'having', 'now', 'say', 'enough', 'to', 'make', 'his', 'poverty', 'clear', '\n', 'and', 'to', 'do', 'away', 'the', 'necessity', 'of', 'buy', 'a', 'pair', 'of', 'earring', '\n', 'for', 'each', 'of', 'his', 'sister', 'in', 'his', 'next', 'visit', 'at', 'Grays', '\n', 'his', 'thought', 'take', 'a', 'cheerfuller', 'turn', 'and', 'he', 'begin', 'to', '\n', 'congratulate', 'Elinor', 'on', 'have', 'such', 'a', 'friend', 'as', 'Mrs', 'Jennings', '\n\n', 'she', 'seem', 'a', 'most', 'valuable', 'woman', 'indeedher', 'house', '\n', 'her', 'style', 'of', 'live', 'all', 'bespeak', 'an', 'exceed', 'good', 'income', '\n', 'and', 'it', 'be', 'an', 'acquaintance', 'that', 'have', 'not', 'only', 'be', '\n', 'of', 'great', 'use', 'to', 'you', 'hitherto', 'but', 'in', 'the', 'end', 'may', 'prove', '\n', 'materially', 'advantageousher', 'invite', 'you', 'to', 'town', 'be', '\n', 'certainly', 'a', 'vast', 'thing', 'in', 'your', 'favour', 'and', 'indeed', 'it', '\n', 'speak', 'altogether', 'so', 'great', 'a', 'regard', 'for', 'you', 'that', 'in', 'all', '\n', 'probability', 'when', 'she', 'die', 'you', 'will', 'not', 'be', 'forget', '\n', 'she', 'must', 'have', 'a', 'great', 'deal', 'to', 'leave', '\n\n', 'nothing', 'at', 'all', 'I', 'should', 'rather', 'suppose', 'for', 'she', 'have', '\n', 'only', 'her', 'jointure', 'which', 'will', 'descend', 'to', 'her', 'child', '\n\n', 'but', 'it', 'be', 'not', 'to', 'be', 'imagine', 'that', 'she', 'live', 'up', 'to', '\n', 'her', 'income', ' ', 'few', 'people', 'of', 'common', 'prudence', 'will', 'do', 'that', '\n', 'and', 'whatever', 'she', 'save', 'she', 'will', 'be', 'able', 'to', 'dispose', 'of', '\n\n', 'and', 'do', 'you', 'not', 'think', 'it', 'more', 'likely', 'that', 'she', '\n', 'should', 'leave', 'it', 'to', 'her', 'daughter', 'than', 'to', 'we', '\n\n', 'her', 'daughter', 'be', 'both', 'exceedingly', 'well', 'marry', '\n', 'and', 'therefore', 'I', 'can', 'not', 'perceive', 'the', 'necessity', 'of', 'she', '\n', 'remember', 'they', 'far', ' ', 'whereas', 'in', 'my', 'opinion', 'by', 'she', '\n', 'take', 'so', 'much', 'notice', 'of', 'you', 'and', 'treat', 'you', 'in', 'this', '\n', 'kind', 'of', 'way', 'she', 'have', 'give', 'you', 'a', 'sort', 'of', 'claim', 'on', 'her', '\n', 'future', 'consideration', 'which', 'a', 'conscientious', 'woman', 'would', '\n', 'not', 'disregard', ' ', 'nothing', 'can', 'be', 'kind', 'than', 'her', 'behaviour', '\n', 'and', 'she', 'can', 'hardly', 'do', 'all', 'this', 'without', 'be', 'aware', '\n', 'of', 'the', 'expectation', 'it', 'raise', '\n\n', 'but', 'she', 'raise', 'none', 'in', 'those', 'most', 'concerned', '\n', 'indeed', 'brother', 'your', 'anxiety', 'for', 'our', 'welfare', 'and', 'prosperity', '\n', 'carry', 'you', 'too', 'far', '\n\n', 'why', 'to', 'be', 'sure', 'say', 'he', 'seem', 'to', 'recollect', 'himself', '\n', 'people', 'have', 'little', 'have', 'very', 'little', 'in', 'their', 'power', '\n', 'but', 'my', 'dear', 'Elinor', 'what', 'be', 'the', 'matter', 'with', 'Marianne', '\n', 'she', 'look', 'very', 'unwell', 'have', 'lose', 'her', 'colour', 'and', 'be', 'grow', '\n', 'quite', 'thin', ' ', 'be', 'she', 'ill', '\n\n', 'she', 'be', 'not', 'well', 'she', 'have', 'have', 'a', 'nervous', 'complaint', '\n', 'on', 'she', 'for', 'several', 'week', '\n\n', 'I', 'be', 'sorry', 'for', 'that', ' ', 'at', 'her', 'time', 'of', 'life', '\n', 'any', 'thing', 'of', 'an', 'illness', 'destroy', 'the', 'bloom', 'for', 'ever', '\n', 'Hers', 'have', 'be', 'a', 'very', 'short', 'one', ' ', 'she', 'be', 'as', 'handsome', 'a', 'girl', '\n', 'last', 'September', 'as', 'I', 'ever', 'see', 'and', 'as', 'likely', 'to', 'attract', '\n', 'the', 'man', ' ', 'there', 'be', 'something', 'in', 'her', 'style', 'of', 'beauty', '\n', 'to', 'please', 'they', 'particularly', ' ', 'I', 'remember', 'Fanny', 'use', 'to', 'say', '\n', 'that', 'she', 'would', 'marry', 'soon', 'and', 'well', 'than', 'you', 'do', '\n', 'not', 'but', 'what', 'she', 'be', 'exceedingly', 'fond', 'of', 'you', 'but', 'so', 'it', '\n', 'happen', 'to', 'strike', 'she', ' ', 'she', 'will', 'be', 'mistake', 'however', '\n', 'I', 'question', 'whether', 'Marianne', 'NOW', 'will', 'marry', 'a', 'man', 'worth', '\n', 'more', 'than', 'five', 'or', 'six', 'hundred', 'ayear', 'at', 'the', 'utmost', '\n', 'and', 'I', 'be', 'very', 'much', 'deceive', 'if', 'you', 'do', 'not', 'do', 'well', '\n', 'dorsetshire', ' ', 'I', 'know', 'very', 'little', 'of', 'Dorsetshire', 'but', 'my', 'dear', '\n', 'Elinor', 'I', 'shall', 'be', 'exceedingly', 'glad', 'to', 'know', 'more', 'of', 'it', '\n', 'and', 'I', 'think', 'I', 'can', 'answer', 'for', 'your', 'have', 'fanny', 'and', 'myself', '\n', 'among', 'the', 'early', 'and', 'well', 'pleased', 'of', 'your', 'visitor', '\n\n', 'Elinor', 'try', 'very', 'seriously', 'to', 'convince', 'he', 'that', '\n', 'there', 'be', 'no', 'likelihood', 'of', 'her', 'marry', 'Colonel', 'Brandon', '\n', 'but', 'it', 'be', 'an', 'expectation', 'of', 'too', 'much', 'pleasure', 'to', 'himself', '\n', 'to', 'be', 'relinquish', 'and', 'he', 'be', 'really', 'resolve', 'on', 'seek', '\n', 'an', 'intimacy', 'with', 'that', 'gentleman', 'and', 'promote', 'the', 'marriage', '\n', 'by', 'every', 'possible', 'attention', ' ', 'he', 'have', 'just', 'compunction', '\n', 'enough', 'for', 'having', 'do', 'nothing', 'for', 'his', 'sister', 'himself', '\n', 'to', 'be', 'exceedingly', 'anxious', 'that', 'everybody', 'else', 'should', '\n', 'do', 'a', 'great', 'deal', 'and', 'an', 'offer', 'from', 'Colonel', 'Brandon', '\n', 'or', 'a', 'legacy', 'from', 'Mrs', 'Jennings', 'be', 'the', 'easy', 'mean', '\n', 'of', 'atone', 'for', 'his', 'own', 'neglect', '\n\n', 'they', 'be', 'lucky', 'enough', 'to', 'find', 'Lady', 'Middleton', '\n', 'at', 'home', 'and', 'Sir', 'John', 'come', 'in', 'before', 'their', 'visit', 'end', '\n', 'Abundance', 'of', 'civility', 'pass', 'on', 'all', 'side', ' ', 'Sir', 'John', '\n', 'be', 'ready', 'to', 'like', 'anybody', 'and', 'though', 'Mr', 'Dashwood', 'do', '\n', 'not', 'seem', 'to', 'know', 'much', 'about', 'horse', 'he', 'soon', 'set', 'he', '\n', 'down', 'as', 'a', 'very', 'goodnatured', 'fellow', 'while', 'Lady', 'Middleton', '\n', 'see', 'enough', 'of', 'fashion', 'in', 'his', 'appearance', 'to', 'think', 'his', '\n', 'acquaintance', 'worth', 'have', 'and', 'Mr', 'Dashwood', 'go', 'away', '\n', 'delight', 'with', 'both', '\n\n', 'I', 'shall', 'have', 'a', 'charming', 'account', 'to', 'carry', '\n', 'to', 'Fanny', 'say', 'he', 'as', 'he', 'walk', 'back', 'with', 'his', 'sister', '\n', 'Lady', 'Middleton', 'be', 'really', 'a', 'most', 'elegant', 'woman', ' ', 'such', '\n', 'a', 'woman', 'as', 'I', 'be', 'sure', 'Fanny', 'will', 'be', 'glad', 'to', 'know', '\n', 'and', 'Mrs', 'Jennings', 'too', 'an', 'exceedingly', 'wellbehave', 'woman', '\n', 'though', 'not', 'so', 'elegant', 'as', 'her', 'daughter', ' ', 'your', 'sister', 'need', '\n', 'not', 'have', 'any', 'scruple', 'even', 'of', 'visit', 'she', 'which', 'to', 'say', '\n', 'the', 'truth', 'have', 'be', 'a', 'little', 'the', 'case', 'and', 'very', 'naturally', '\n', 'for', 'we', 'only', 'know', 'that', 'Mrs', 'Jennings', 'be', 'the', 'widow', 'of', 'a', 'man', '\n', 'who', 'have', 'get', 'all', 'his', 'money', 'in', 'a', 'low', 'way', 'and', 'Fanny', 'and', '\n', 'Mrs', 'Ferrars', 'be', 'both', 'strongly', 'prepossess', 'that', 'neither', '\n', 'she', 'nor', 'her', 'daughter', 'be', 'such', 'kind', 'of', 'woman', 'as', 'Fanny', '\n', 'would', 'like', 'to', 'associate', 'with', ' ', 'but', 'now', 'I', 'can', 'carry', 'she', '\n', 'a', 'most', 'satisfactory', 'account', 'of', 'both', '\n\n\n\n', 'chapter', '34', '\n\n\n', 'Mrs', 'John', 'Dashwood', 'have', 'so', 'much', 'confidence', 'in', 'her', '\n', 'husband', 'judgment', 'that', 'she', 'wait', 'the', 'very', 'next', 'day', '\n', 'both', 'on', 'Mrs', 'Jennings', 'and', 'her', 'daughter', 'and', 'her', '\n', 'confidence', 'be', 'reward', 'by', 'find', 'even', 'the', 'former', '\n', 'even', 'the', 'woman', 'with', 'whom', 'her', 'sister', 'be', 'stay', '\n', 'by', 'no', 'mean', 'unworthy', 'her', 'notice', 'and', 'as', 'for', 'Lady', 'Middleton', '\n', 'she', 'find', 'her', 'one', 'of', 'the', 'most', 'charming', 'woman', 'in', 'the', 'world', '\n\n', 'Lady', 'Middleton', 'be', 'equally', 'pleased', 'with', 'Mrs', 'Dashwood', '\n', 'there', 'be', 'a', 'kind', 'of', 'cold', 'hearted', 'selfishness', 'on', 'both', 'side', '\n', 'which', 'mutually', 'attract', 'they', 'and', 'they', 'sympathise', '\n', 'with', 'each', 'other', 'in', 'an', 'insipid', 'propriety', 'of', 'demeanor', '\n', 'and', 'a', 'general', 'want', 'of', 'understand', '\n\n', 'the', 'same', 'manner', 'however', 'which', 'recommend', 'Mrs', 'John', '\n', 'Dashwood', 'to', 'the', 'good', 'opinion', 'of', 'Lady', 'Middleton', 'do', 'not', 'suit', '\n', 'the', 'fancy', 'of', 'Mrs', 'Jennings', 'and', 'to', 'she', 'she', 'appear', 'nothing', '\n', 'more', 'than', 'a', 'little', 'proudlooke', 'woman', 'of', 'uncordial', 'address', '\n', 'who', 'meet', 'her', 'husband', 'sister', 'without', 'any', 'affection', '\n', 'and', 'almost', 'without', 'have', 'anything', 'to', 'say', 'to', 'they', '\n', 'for', 'of', 'the', 'quarter', 'of', 'an', 'hour', 'bestow', 'on', 'Berkeley', 'Street', '\n', 'she', 'sit', 'at', 'least', 'seven', 'minute', 'and', 'a', 'half', 'in', 'silence', '\n\n', 'Elinor', 'want', 'very', 'much', 'to', 'know', 'though', 'she', 'do', '\n', 'not', 'chuse', 'to', 'ask', 'whether', 'Edward', 'be', 'then', 'in', 'town', '\n', 'but', 'nothing', 'would', 'have', 'induce', 'Fanny', 'voluntarily', '\n', 'to', 'mention', 'his', 'name', 'before', 'she', 'till', 'able', 'to', 'tell', 'she', '\n', 'that', 'his', 'marriage', 'with', 'Miss', 'Morton', 'be', 'resolve', 'on', '\n', 'or', 'till', 'her', 'husband', 'expectation', 'on', 'Colonel', 'Brandon', '\n', 'be', 'answer', 'because', 'she', 'believe', 'they', 'still', 'so', 'very', '\n', 'much', 'attach', 'to', 'each', 'other', 'that', 'they', 'could', 'not', 'be', 'too', '\n', 'sedulously', 'divide', 'in', 'word', 'and', 'deed', 'on', 'every', 'occasion', '\n', 'the', 'intelligence', 'however', 'which', 'she', 'would', 'not', 'give', '\n', 'soon', 'flow', 'from', 'another', 'quarter', ' ', 'Lucy', 'come', 'very', 'shortly', '\n', 'to', 'claim', 'Elinors', 'compassion', 'on', 'be', 'unable', 'to', 'see', 'Edward', '\n', 'though', 'he', 'have', 'arrive', 'in', 'town', 'with', 'Mr', 'and', 'Mrs', 'Dashwood', '\n', 'he', 'dared', 'not', 'come', 'to', 'Bartletts', 'Buildings', 'for', 'fear', '\n', 'of', 'detection', 'and', 'though', 'their', 'mutual', 'impatience', 'to', 'meet', '\n', 'be', 'not', 'to', 'be', 'tell', 'they', 'could', 'do', 'nothing', 'at', 'present', '\n', 'but', 'write', '\n\n', 'Edward', 'assure', 'they', 'himself', 'of', 'his', 'be', 'in', 'town', '\n', 'within', 'a', 'very', 'short', 'time', 'by', 'twice', 'call', 'in', 'Berkeley', 'Street', '\n', 'Twice', 'be', 'his', 'card', 'find', 'on', 'the', 'table', 'when', 'they', 'return', '\n', 'from', 'their', 'morning', 'engagement', ' ', 'Elinor', 'be', 'pleased', '\n', 'that', 'he', 'have', 'call', 'and', 'still', 'more', 'pleased', 'that', 'she', 'have', '\n', 'miss', 'he', '\n\n', 'the', 'Dashwoods', 'be', 'so', 'prodigiously', 'delighted', '\n', 'with', 'the', 'Middletons', 'that', 'though', 'not', 'much', 'in', 'the', 'habit', '\n', 'of', 'give', 'anything', 'they', 'determine', 'to', 'give', 'they', '\n', 'a', 'dinner', 'and', 'soon', 'after', 'their', 'acquaintance', 'began', '\n', 'invite', 'they', 'to', 'dine', 'in', 'Harley', 'Street', 'where', 'they', 'have', '\n', 'take', 'a', 'very', 'good', 'house', 'for', 'three', 'month', ' ', 'their', 'sister', '\n', 'and', 'Mrs', 'Jennings', 'be', 'invite', 'likewise', 'and', 'John', 'Dashwood', '\n', 'be', 'careful', 'to', 'secure', 'Colonel', 'Brandon', 'who', 'always', 'glad', '\n', 'to', 'be', 'where', 'the', 'Miss', 'Dashwoods', 'be', 'receive', 'his', 'eager', '\n', 'civility', 'with', 'some', 'surprise', 'but', 'much', 'more', 'pleasure', '\n', 'they', 'be', 'to', 'meet', 'Mrs', 'Ferrars', 'but', 'Elinor', 'could', 'not', 'learn', '\n', 'whether', 'her', 'son', 'be', 'to', 'be', 'of', 'the', 'party', ' ', 'the', 'expectation', '\n', 'of', 'see', 'she', 'however', 'be', 'enough', 'to', 'make', 'she', 'interested', '\n', 'in', 'the', 'engagement', 'for', 'though', 'she', 'could', 'now', 'meet', 'Edwards', '\n', 'mother', 'without', 'that', 'strong', 'anxiety', 'which', 'have', 'once', 'promise', '\n', 'to', 'attend', 'such', 'an', 'introduction', 'though', 'she', 'could', 'now', 'see', '\n', 'she', 'with', 'perfect', 'indifference', 'as', 'to', 'her', 'opinion', 'of', 'herself', '\n', 'her', 'desire', 'of', 'be', 'in', 'company', 'with', 'Mrs', 'Ferrars', '\n', 'her', 'curiosity', 'to', 'know', 'what', 'she', 'be', 'like', 'be', 'as', 'lively', 'as', 'ever', '\n\n', 'the', 'interest', 'with', 'which', 'she', 'thus', 'anticipate', 'the', '\n', 'party', 'be', 'soon', 'afterwards', 'increase', 'more', 'powerfully', '\n', 'than', 'pleasantly', 'by', 'her', 'hear', 'that', 'the', 'Miss', 'Steeles', '\n', 'be', 'also', 'to', 'be', 'at', 'it', '\n\n', 'so', 'well', 'have', 'they', 'recommend', 'themselves', 'to', 'Lady', 'Middleton', '\n', 'so', 'agreeable', 'have', 'their', 'assiduity', 'make', 'they', 'to', 'she', '\n', 'that', 'though', 'Lucy', 'be', 'certainly', 'not', 'so', 'elegant', 'and', 'her', '\n', 'sister', 'not', 'even', 'genteel', 'she', 'be', 'as', 'ready', 'as', 'Sir', 'John', '\n', 'to', 'ask', 'they', 'to', 'spend', 'a', 'week', 'or', 'two', 'in', 'Conduit', 'Street', '\n', 'and', 'it', 'happen', 'to', 'be', 'particularly', 'convenient', 'to', 'the', 'Miss', '\n', 'Steeles', 'as', 'soon', 'as', 'the', 'Dashwoods', 'invitation', 'be', 'know', '\n', 'that', 'their', 'visit', 'should', 'begin', 'a', 'few', 'day', 'before', 'the', 'party', '\n', 'take', 'place', '\n\n', 'their', 'claim', 'to', 'the', 'notice', 'of', 'Mrs', 'John', 'Dashwood', '\n', 'as', 'the', 'niece', 'of', 'the', 'gentleman', 'who', 'for', 'many', 'year', 'have', '\n', 'have', 'the', 'care', 'of', 'her', 'brother', 'might', 'not', 'have', 'do', 'much', '\n', 'however', 'towards', 'procure', 'they', 'seat', 'at', 'her', 'table', '\n', 'but', 'as', 'Lady', 'Middletons', 'guest', 'they', 'must', 'be', 'welcome', 'and', 'Lucy', '\n', 'who', 'have', 'long', 'want', 'to', 'be', 'personally', 'know', 'to', 'the', 'family', '\n', 'to', 'have', 'a', 'near', 'view', 'of', 'their', 'character', 'and', 'her', 'own', '\n', 'difficulty', 'and', 'to', 'have', 'an', 'opportunity', 'of', 'endeavour', '\n', 'to', 'please', 'they', 'have', 'seldom', 'be', 'happy', 'in', 'her', 'life', '\n', 'than', 'she', 'be', 'on', 'receive', 'Mrs', 'John', 'Dashwoods', 'card', '\n\n', 'on', 'Elinor', 'its', 'effect', 'be', 'very', 'different', ' ', 'she', 'begin', '\n', 'immediately', 'to', 'determine', 'that', 'Edward', 'who', 'live', 'with', '\n', 'his', 'mother', 'must', 'be', 'ask', 'as', 'his', 'mother', 'be', 'to', 'a', 'party', '\n', 'give', 'by', 'his', 'sister', 'and', 'to', 'see', 'he', 'for', 'the', 'first', 'time', '\n', 'after', 'all', 'that', 'pass', 'in', 'the', 'company', 'of', 'Lucyshe', 'hardly', '\n', 'know', 'how', 'she', 'could', 'bear', 'it', '\n\n', 'these', 'apprehension', 'perhaps', 'be', 'not', 'found', '\n', 'entirely', 'on', 'reason', 'and', 'certainly', 'not', 'at', 'all', 'on', 'truth', '\n', 'they', 'be', 'relieve', 'however', 'not', 'by', 'her', 'own', 'recollection', '\n', 'but', 'by', 'the', 'good', 'will', 'of', 'Lucy', 'who', 'believe', 'herself', 'to', 'be', '\n', 'inflict', 'a', 'severe', 'disappointment', 'when', 'she', 'tell', 'she', '\n', 'that', 'Edward', 'certainly', 'would', 'not', 'be', 'in', 'Harley', 'Street', 'on', 'Tuesday', '\n', 'and', 'even', 'hope', 'to', 'be', 'carry', 'the', 'pain', 'still', 'far', '\n', 'by', 'persuade', 'she', 'that', 'he', 'be', 'keep', 'away', 'by', 'the', 'extreme', '\n', 'affection', 'for', 'herself', 'which', 'he', 'could', 'not', 'conceal', 'when', 'they', '\n', 'be', 'together', '\n\n', 'the', 'important', 'Tuesday', 'come', 'that', 'be', 'to', 'introduce', '\n', 'the', 'two', 'young', 'lady', 'to', 'this', 'formidable', 'motherinlaw', '\n\n', 'Pity', 'I', 'dear', 'Miss', 'Dashwood', 'say', 'Lucy', 'as', 'they', '\n', 'walk', 'up', 'the', 'stair', 'togetherfor', 'the', 'Middletons', 'arrive', '\n', 'so', 'directly', 'after', 'Mrs', 'Jennings', 'that', 'they', 'all', 'follow', '\n', 'the', 'servant', 'at', 'the', 'same', 'timeThere', 'be', 'nobody', 'here', 'but', '\n', 'you', 'that', 'can', 'feel', 'for', 'mei', 'declare', 'I', 'can', 'hardly', 'stand', '\n', 'Good', 'graciousIn', 'a', 'moment', 'I', 'shall', 'see', 'the', 'person', 'that', 'all', '\n', 'my', 'happiness', 'depend', 'onthat', 'be', 'to', 'be', 'my', 'mother', '\n\n', 'Elinor', 'could', 'have', 'give', 'her', 'immediate', 'relief', '\n', 'by', 'suggest', 'the', 'possibility', 'of', 'its', 'be', 'Miss', 'Mortons', 'mother', '\n', 'rather', 'than', 'her', 'own', 'whom', 'they', 'be', 'about', 'to', 'behold', '\n', 'but', 'instead', 'of', 'do', 'that', 'she', 'assure', 'she', 'and', 'with', '\n', 'great', 'sincerity', 'that', 'she', 'do', 'pity', 'herto', 'the', 'utter', '\n', 'amazement', 'of', 'Lucy', 'who', 'though', 'really', 'uncomfortable', 'herself', '\n', 'hope', 'at', 'least', 'to', 'be', 'an', 'object', 'of', 'irrepressible', 'envy', 'to', 'Elinor', '\n\n', 'Mrs', 'Ferrars', 'be', 'a', 'little', 'thin', 'woman', 'upright', '\n', 'even', 'to', 'formality', 'in', 'her', 'figure', 'and', 'serious', '\n', 'even', 'to', 'sourness', 'in', 'her', 'aspect', ' ', 'her', 'complexion', 'be', 'sallow', '\n', 'and', 'her', 'feature', 'small', 'without', 'beauty', 'and', 'naturally', '\n', 'without', 'expression', 'but', 'a', 'lucky', 'contraction', 'of', 'the', 'brow', '\n', 'have', 'rescue', 'her', 'countenance', 'from', 'the', 'disgrace', 'of', 'insipidity', '\n', 'by', 'give', 'it', 'the', 'strong', 'character', 'of', 'pride', 'and', 'ill', 'nature', '\n', 'she', 'be', 'not', 'a', 'woman', 'of', 'many', 'word', 'for', 'unlike', 'people', '\n', 'in', 'general', 'she', 'proportion', 'they', 'to', 'the', 'number', 'of', '\n', 'her', 'idea', 'and', 'of', 'the', 'few', 'syllable', 'that', 'do', 'escape', 'she', '\n', 'not', 'one', 'fall', 'to', 'the', 'share', 'of', 'Miss', 'Dashwood', 'whom', 'she', 'eye', '\n', 'with', 'the', 'spirited', 'determination', 'of', 'dislike', 'she', 'at', 'all', 'event', '\n\n', 'Elinor', 'could', 'not', 'now', 'be', 'make', 'unhappy', 'by', 'this', 'behaviour', '\n', 'a', 'few', 'month', 'ago', 'it', 'would', 'have', 'hurt', 'she', 'exceedingly', 'but', 'it', '\n', 'be', 'not', 'in', 'Mrs', 'Ferrars', 'power', 'to', 'distress', 'she', 'by', 'it', 'now', '\n', 'and', 'the', 'difference', 'of', 'her', 'manner', 'to', 'the', 'Miss', 'Steeles', '\n', 'a', 'difference', 'which', 'seemed', 'purposely', 'make', 'to', 'humble', 'she', 'more', '\n', 'only', 'amuse', 'she', ' ', 'she', 'could', 'not', 'but', 'smile', 'to', 'see', 'the', 'graciousness', '\n', 'of', 'both', 'mother', 'and', 'daughter', 'towards', 'the', 'very', 'person', '\n', 'for', 'Lucy', 'be', 'particularly', 'distinguishedwhom', 'of', 'all', 'other', '\n', 'have', 'they', 'know', 'as', 'much', 'as', 'she', 'do', 'they', 'would', 'have', 'be', 'most', '\n', 'anxious', 'to', 'mortify', 'while', 'she', 'herself', 'who', 'have', 'comparatively', '\n', 'no', 'power', 'to', 'wound', 'they', 'sat', 'pointedly', 'slight', 'by', 'both', '\n', 'but', 'while', 'she', 'smile', 'at', 'a', 'graciousness', 'so', 'misapply', '\n', 'she', 'could', 'not', 'reflect', 'on', 'the', 'meanspirited', 'folly', 'from', '\n', 'which', 'it', 'spring', 'nor', 'observe', 'the', 'study', 'attention', '\n', 'with', 'which', 'the', 'Miss', 'Steeles', 'court', 'its', 'continuance', '\n', 'without', 'thoroughly', 'despise', 'they', 'all', 'four', '\n\n', 'Lucy', 'be', 'all', 'exultation', 'on', 'be', 'so', 'honorably', '\n', 'distinguished', 'and', 'Miss', 'Steele', 'want', 'only', 'to', 'be', 'teaze', '\n', 'about', 'Dr', 'Davies', 'to', 'be', 'perfectly', 'happy', '\n\n', 'the', 'dinner', 'be', 'a', 'grand', 'one', 'the', 'servant', 'be', 'numerous', '\n', 'and', 'every', 'thing', 'bespeak', 'the', 'Mistresss', 'inclination', '\n', 'for', 'show', 'and', 'the', 'Masters', 'ability', 'to', 'support', 'it', '\n', 'in', 'spite', 'of', 'the', 'improvement', 'and', 'addition', 'which', 'be', '\n', 'make', 'to', 'the', 'Norland', 'estate', 'and', 'in', 'spite', 'of', 'its', 'owner', '\n', 'having', 'once', 'be', 'within', 'some', 'thousand', 'pound', 'of', 'be', '\n', 'oblige', 'to', 'sell', 'out', 'at', 'a', 'loss', 'nothing', 'give', 'any', 'symptom', '\n', 'of', 'that', 'indigence', 'which', 'he', 'have', 'try', 'to', 'infer', 'from', 'it', '\n', 'no', 'poverty', 'of', 'any', 'kind', 'except', 'of', 'conversation', 'appear', '\n', 'but', 'there', 'the', 'deficiency', 'be', 'considerable', ' ', 'John', 'Dashwood', '\n', 'have', 'not', 'much', 'to', 'say', 'for', 'himself', 'that', 'be', 'worth', 'hear', '\n', 'and', 'his', 'wife', 'have', 'still', 'less', ' ', 'but', 'there', 'be', 'no', 'peculiar', '\n', 'disgrace', 'in', 'this', 'for', 'it', 'be', 'very', 'much', 'the', 'case', 'with', '\n', 'the', 'chief', 'of', 'their', 'visitor', 'who', 'almost', 'all', 'labour', '\n', 'under', 'one', 'or', 'other', 'of', 'these', 'disqualification', 'for', 'be', '\n', 'agreeablewant', 'of', 'sense', 'either', 'natural', 'or', 'improvedwant', '\n', 'of', 'elegancewant', 'of', 'spiritsor', 'want', 'of', 'temper', '\n\n', 'when', 'the', 'lady', 'withdraw', 'to', 'the', 'drawingroom', '\n', 'after', 'dinner', 'this', 'poverty', 'be', 'particularly', 'evident', '\n', 'for', 'the', 'gentleman', 'have', 'supply', 'the', 'discourse', 'with', 'some', '\n', 'varietythe', 'variety', 'of', 'politic', 'inclose', 'land', '\n', 'and', 'break', 'horsesbut', 'then', 'it', 'be', 'all', 'over', 'and', 'one', '\n', 'subject', 'only', 'engage', 'the', 'lady', 'till', 'coffee', 'come', 'in', '\n', 'which', 'be', 'the', 'comparative', 'height', 'of', 'Harry', 'Dashwood', '\n', 'and', 'Lady', 'Middletons', 'second', 'son', 'William', 'who', 'be', 'nearly', '\n', 'of', 'the', 'same', 'age', '\n\n', 'have', 'both', 'the', 'child', 'be', 'there', 'the', 'affair', 'might', '\n', 'have', 'be', 'determine', 'too', 'easily', 'by', 'measure', 'they', 'at', 'once', '\n', 'but', 'as', 'Harry', 'only', 'be', 'present', 'it', 'be', 'all', 'conjectural', '\n', 'assertion', 'on', 'both', 'side', 'and', 'every', 'body', 'have', 'a', 'right', 'to', '\n', 'be', 'equally', 'positive', 'in', 'their', 'opinion', 'and', 'to', 'repeat', 'it', '\n', 'over', 'and', 'over', 'again', 'as', 'often', 'as', 'they', 'like', '\n\n', 'the', 'party', 'stand', 'thus', '\n\n', 'the', 'two', 'mother', 'though', 'each', 'really', 'convince', 'that', '\n', 'her', 'own', 'son', 'be', 'the', 'tall', 'politely', 'decide', 'in', 'favour', '\n', 'of', 'the', 'other', '\n\n', 'the', 'two', 'grandmother', 'with', 'not', 'less', 'partiality', '\n', 'but', 'more', 'sincerity', 'be', 'equally', 'earnest', 'in', 'support', '\n', 'of', 'their', 'own', 'descendant', '\n\n', 'Lucy', 'who', 'be', 'hardly', 'less', 'anxious', 'to', 'please', 'one', 'parent', '\n', 'than', 'the', 'other', 'think', 'the', 'boy', 'be', 'both', 'remarkably', 'tall', '\n', 'for', 'their', 'age', 'and', 'could', 'not', 'conceive', 'that', 'there', 'could', '\n', 'be', 'the', 'small', 'difference', 'in', 'the', 'world', 'between', 'they', '\n', 'and', 'Miss', 'Steele', 'with', 'yet', 'great', 'address', 'give', 'it', '\n', 'as', 'fast', 'as', 'she', 'could', 'in', 'favour', 'of', 'each', '\n\n', 'Elinor', 'having', 'once', 'deliver', 'her', 'opinion', 'on', '\n', 'Williams', 'side', 'by', 'which', 'she', 'offend', 'Mrs', 'Ferrars', 'and', '\n', 'Fanny', 'still', 'more', 'do', 'not', 'see', 'the', 'necessity', 'of', 'enforce', '\n', 'it', 'by', 'any', 'farther', 'assertion', 'and', 'Marianne', 'when', 'call', '\n', 'on', 'for', 'hers', 'offend', 'they', 'all', 'by', 'declare', 'that', 'she', '\n', 'have', 'no', 'opinion', 'to', 'give', 'as', 'she', 'have', 'never', 'think', 'about', 'it', '\n\n', 'before', 'she', 'remove', 'from', 'Norland', 'Elinor', 'have', 'paint', '\n', 'a', 'very', 'pretty', 'pair', 'of', 'screen', 'for', 'her', 'sisterinlaw', '\n', 'which', 'be', 'now', 'just', 'mount', 'and', 'bring', 'home', '\n', 'ornament', 'her', 'present', 'drawing', 'room', 'and', 'these', 'screen', '\n', 'catch', 'the', 'eye', 'of', 'John', 'Dashwood', 'on', 'his', 'follow', '\n', 'the', 'other', 'gentleman', 'into', 'the', 'room', 'be', 'officiously', '\n', 'hand', 'by', 'he', 'to', 'Colonel', 'Brandon', 'for', 'his', 'admiration', '\n\n', 'these', 'be', 'do', 'by', 'my', 'eld', 'sister', 'say', 'he', 'and', 'you', '\n', 'as', 'a', 'man', 'of', 'taste', 'will', 'I', 'dare', 'say', 'be', 'pleased', 'with', 'they', '\n', 'I', 'do', 'not', 'know', 'whether', 'you', 'have', 'ever', 'happen', 'to', 'see', 'any', '\n', 'of', 'her', 'performance', 'before', 'but', 'she', 'be', 'in', 'general', 'reckon', '\n', 'to', 'draw', 'extremely', 'well', '\n\n', 'the', 'Colonel', 'though', 'disclaim', 'all', 'pretension', '\n', 'to', 'connoisseurship', 'warmly', 'admire', 'the', 'screen', 'as', 'he', '\n', 'would', 'have', 'do', 'any', 'thing', 'paint', 'by', 'Miss', 'Dashwood', '\n', 'and', 'on', 'the', 'curiosity', 'of', 'the', 'other', 'be', 'of', 'course', 'excite', '\n', 'they', 'be', 'hand', 'round', 'for', 'general', 'inspection', '\n', 'Mrs', 'Ferrars', 'not', 'aware', 'of', 'their', 'be', 'elinor', 'work', '\n', 'particularly', 'request', 'to', 'look', 'at', 'they', 'and', 'after', 'they', 'have', '\n', 'receive', 'gratifying', 'testimony', 'of', 'Lady', 'Middletonss', 'approbation', '\n', 'Fanny', 'present', 'they', 'to', 'her', 'mother', 'considerately', 'inform', '\n', 'she', 'at', 'the', 'same', 'time', 'that', 'they', 'be', 'do', 'by', 'Miss', 'Dashwood', '\n\n', 'Humsaid', 'Mrs', 'Ferrarsvery', 'prettyand', 'without', '\n', 'regard', 'they', 'at', 'all', 'return', 'they', 'to', 'her', 'daughter', '\n\n', 'perhaps', 'Fanny', 'think', 'for', 'a', 'moment', 'that', 'her', 'mother', '\n', 'have', 'be', 'quite', 'rude', 'enoughfor', 'colour', 'a', 'little', '\n', 'she', 'immediately', 'say', '\n\n', 'they', 'be', 'very', 'pretty', 'maamant', 'they', 'but', 'then', 'again', '\n', 'the', 'dread', 'of', 'having', 'be', 'too', 'civil', 'too', 'encourage', 'herself', '\n', 'probably', 'come', 'over', 'she', 'for', 'she', 'presently', 'add', '\n\n', 'do', 'you', 'not', 'think', 'they', 'be', 'something', 'in', 'Miss', '\n', 'Mortons', 'style', 'of', 'paint', 'MaamShe', 'do', 'paint', 'most', '\n', 'delightfullyhow', 'beautifully', 'her', 'last', 'landscape', 'be', 'do', '\n\n', 'beautifully', 'indeed', ' ', 'but', 'she', 'do', 'every', 'thing', 'well', '\n\n', 'Marianne', 'could', 'not', 'bear', 'thisshe', 'be', 'already', '\n', 'greatly', 'displeased', 'with', 'Mrs', 'Ferrars', 'and', 'such', 'illtimed', '\n', 'praise', 'of', 'another', 'at', 'elinor', 'expense', 'though', 'she', '\n', 'have', 'not', 'any', 'notion', 'of', 'what', 'be', 'principally', 'mean', 'by', 'it', '\n', 'provoke', 'she', 'immediately', 'to', 'say', 'with', 'warmth', '\n\n', 'this', 'be', 'admiration', 'of', 'a', 'very', 'particular', 'kind', '\n', 'what', 'be', 'Miss', 'Morton', 'to', 'uswho', 'know', 'or', 'who', 'care', '\n', 'for', 'herit', 'be', 'Elinor', 'of', 'whom', 'we', 'think', 'and', 'speak', '\n\n', 'and', 'so', 'say', 'she', 'take', 'the', 'screen', 'out', 'of', 'her', '\n', 'sisterinlaw', 'hand', 'to', 'admire', 'they', 'herself', 'as', 'they', '\n', 'ought', 'to', 'be', 'admire', '\n\n', 'Mrs', 'Ferrars', 'look', 'exceedingly', 'angry', 'and', 'draw', '\n', 'herself', 'up', 'more', 'stiffly', 'than', 'ever', 'pronounce', 'in', 'retort', '\n', 'this', 'bitter', 'philippic', 'Miss', 'Morton', 'be', 'Lord', 'Mortons', 'daughter', '\n\n', 'Fanny', 'look', 'very', 'angry', 'too', 'and', 'her', 'husband', 'be', '\n', 'all', 'in', 'a', 'fright', 'at', 'his', 'sister', 'audacity', ' ', 'Elinor', 'be', '\n', 'much', 'more', 'hurt', 'by', 'Mariannes', 'warmth', 'than', 'she', 'have', 'be', '\n', 'by', 'what', 'produce', 'it', 'but', 'Colonel', 'Brandons', 'eye', 'as', 'they', '\n', 'be', 'fix', 'on', 'Marianne', 'declare', 'that', 'he', 'notice', 'only', '\n', 'what', 'be', 'amiable', 'in', 'it', 'the', 'affectionate', 'heart', 'which', 'could', '\n', 'not', 'bear', 'to', 'see', 'a', 'sister', 'slight', 'in', 'the', 'small', 'point', '\n\n', 'Mariannes', 'feeling', 'do', 'not', 'stop', 'here', ' ', 'the', 'cold', '\n', 'insolence', 'of', 'Mrs', 'Ferrarss', 'general', 'behaviour', 'to', 'her', 'sister', '\n', 'seem', 'to', 'she', 'to', 'foretell', 'such', 'difficulty', 'and', 'distress', '\n', 'to', 'Elinor', 'as', 'her', 'own', 'wounded', 'heart', 'teach', 'she', 'to', 'think', '\n', 'of', 'with', 'horror', 'and', 'urge', 'by', 'a', 'strong', 'impulse', 'of', '\n', 'affectionate', 'sensibility', 'she', 'move', 'after', 'a', 'moment', '\n', 'to', 'her', 'sister', 'chair', 'and', 'put', 'one', 'arm', 'round', 'her', 'neck', '\n', 'and', 'one', 'cheek', 'close', 'to', 'hers', 'say', 'in', 'a', 'low', 'but', 'eager', '\n', 'voice', '\n\n', 'dear', 'dear', 'Elinor', 'do', 'not', 'mind', 'they', ' ', 'do', 'not', 'let', 'they', '\n', 'make', 'you', 'unhappy', '\n\n', 'she', 'could', 'say', 'no', 'more', 'her', 'spirit', 'be', 'quite', 'overcome', '\n', 'and', 'hide', 'her', 'face', 'on', 'Elinors', 'shoulder', 'she', 'burst', '\n', 'into', 'tear', ' ', 'every', 'bodys', 'attention', 'be', 'call', 'and', 'almost', '\n', 'every', 'body', 'be', 'concernedColonel', 'Brandon', 'rise', 'up', 'and', 'go', '\n', 'to', 'they', 'without', 'know', 'what', 'he', 'didmrs', 'Jennings', '\n', 'with', 'a', 'very', 'intelligent', 'ah', 'poor', 'dear', 'immediately', 'give', '\n', 'her', 'her', 'salt', 'and', 'Sir', 'John', 'feel', 'so', 'desperately', 'enrage', '\n', 'against', 'the', 'author', 'of', 'this', 'nervous', 'distress', 'that', 'he', '\n', 'instantly', 'change', 'his', 'seat', 'to', 'one', 'close', 'by', 'Lucy', 'Steele', '\n', 'and', 'give', 'she', 'in', 'a', 'whisper', 'a', 'brief', 'account', 'of', 'the', 'whole', '\n', 'shocking', 'affair', '\n\n', 'in', 'a', 'few', 'minute', 'however', 'Marianne', 'be', 'recover', '\n', 'enough', 'to', 'put', 'an', 'end', 'to', 'the', 'bustle', 'and', 'sit', 'down', 'among', '\n', 'the', 'rest', 'though', 'her', 'spirit', 'retain', 'the', 'impression', '\n', 'of', 'what', 'have', 'pass', 'the', 'whole', 'evening', '\n\n', 'Poor', 'Marianne', 'say', 'her', 'brother', 'to', 'Colonel', 'Brandon', '\n', 'in', 'a', 'low', 'voice', 'as', 'soon', 'as', 'he', 'could', 'secure', 'his', 'attention', '\n', 'she', 'have', 'not', 'such', 'good', 'health', 'as', 'her', 'sistershe', 'be', 'very', '\n', 'nervousshe', 'have', 'not', 'elinor', 'constitutionand', 'one', 'must', '\n', 'allow', 'that', 'there', 'be', 'something', 'very', 'try', 'to', 'a', 'young', 'woman', '\n', 'who', 'have', 'be', 'a', 'beauty', 'in', 'the', 'loss', 'of', 'her', 'personal', 'attraction', '\n', 'you', 'would', 'not', 'think', 'it', 'perhaps', 'but', 'Marianne', 'be', 'remarkably', '\n', 'handsome', 'a', 'few', 'month', 'ago', 'quite', 'as', 'handsome', 'as', 'Elinor', '\n', 'now', 'you', 'see', 'it', 'be', 'all', 'go', '\n\n\n\n', 'chapter', '35', '\n\n\n', 'Elinors', 'curiosity', 'to', 'see', 'Mrs', 'Ferrars', 'be', 'satisfied', '\n', 'she', 'have', 'find', 'in', 'she', 'every', 'thing', 'that', 'could', 'tend', 'to', 'make', '\n', 'a', 'farth', 'connection', 'between', 'the', 'family', 'undesirable', '\n', 'she', 'have', 'see', 'enough', 'of', 'her', 'pride', 'her', 'meanness', 'and', 'her', '\n', 'determined', 'prejudice', 'against', 'herself', 'to', 'comprehend', 'all', '\n', 'the', 'difficulty', 'that', 'must', 'have', 'perplex', 'the', 'engagement', '\n', 'and', 'retard', 'the', 'marriage', 'of', 'Edward', 'and', 'herself', 'have', 'he', 'be', '\n', 'otherwise', 'freeand', 'she', 'have', 'see', 'almost', 'enough', 'to', 'be', 'thankful', '\n', 'for', 'her', 'own', 'sake', 'that', 'one', 'great', 'obstacle', 'preserve', 'she', '\n', 'from', 'suffer', 'under', 'any', 'other', 'of', 'Mrs', 'Ferrarss', 'creation', '\n', 'preserve', 'she', 'from', 'all', 'dependence', 'upon', 'her', 'caprice', 'or', 'any', '\n', 'solicitude', 'for', 'her', 'good', 'opinion', ' ', 'or', 'at', 'least', 'if', 'she', 'do', 'not', '\n', 'bring', 'herself', 'quite', 'to', 'rejoice', 'in', 'Edwards', 'be', 'fetter', '\n', 'to', 'Lucy', 'she', 'determine', 'that', 'have', 'Lucy', 'be', 'more', 'amiable', '\n', 'she', 'ought', 'to', 'have', 'rejoice', '\n\n', 'she', 'wonder', 'that', 'Lucys', 'spirit', 'could', 'be', 'so', 'very', 'much', '\n', 'elevate', 'by', 'the', 'civility', 'of', 'Mrs', 'Ferrarsthat', 'her', 'interest', '\n', 'and', 'her', 'vanity', 'should', 'so', 'very', 'much', 'blind', 'she', 'as', 'to', 'make', '\n', 'the', 'attention', 'which', 'seem', 'only', 'pay', 'she', 'because', 'she', 'be', '\n', 'not', 'ELINOR', 'appear', 'a', 'compliment', 'to', 'herselfor', 'to', 'allow', '\n', 'she', 'to', 'derive', 'encouragement', 'from', 'a', 'preference', 'only', 'give', 'she', '\n', 'because', 'her', 'real', 'situation', 'be', 'unknown', ' ', 'but', 'that', 'it', 'be', 'so', '\n', 'have', 'not', 'only', 'be', 'declare', 'by', 'Lucys', 'eye', 'at', 'the', 'time', '\n', 'but', 'be', 'declare', 'over', 'again', 'the', 'next', 'morning', 'more', 'openly', '\n', 'for', 'at', 'her', 'particular', 'desire', 'Lady', 'Middleton', 'set', 'she', 'down', '\n', 'in', 'Berkeley', 'Street', 'on', 'the', 'chance', 'of', 'see', 'Elinor', 'alone', '\n', 'to', 'tell', 'she', 'how', 'happy', 'she', 'be', '\n\n', 'the', 'chance', 'prove', 'a', 'lucky', 'one', 'for', 'a', 'message', 'from', '\n', 'Mrs', 'Palmer', 'soon', 'after', 'she', 'arrive', 'carry', 'Mrs', 'Jennings', 'away', '\n\n', 'my', 'dear', 'friend', 'cry', 'Lucy', 'as', 'soon', 'as', 'they', 'be', '\n', 'by', 'themselves', 'I', 'come', 'to', 'talk', 'to', 'you', 'of', 'my', 'happiness', '\n', 'could', 'anything', 'be', 'so', 'flattering', 'as', 'Mrs', 'Ferrarss', 'way', '\n', 'of', 'treat', 'I', 'yesterday', ' ', 'so', 'exceed', 'affable', 'as', 'she', '\n', 'wasyou', 'know', 'how', 'I', 'dread', 'the', 'thought', 'of', 'see', 'she', '\n', 'but', 'the', 'very', 'moment', 'I', 'be', 'introduce', 'there', 'be', 'such', 'an', '\n', 'affability', 'in', 'her', 'behaviour', 'as', 'really', 'should', 'seem', 'to', 'say', '\n', 'she', 'have', 'quite', 'take', 'a', 'fancy', 'to', 'I', ' ', 'now', 'be', 'not', 'it', 'so', '\n', 'you', 'see', 'it', 'all', 'and', 'be', 'not', 'you', 'quite', 'strike', 'with', 'it', '\n\n', 'she', 'be', 'certainly', 'very', 'civil', 'to', 'you', '\n\n', 'CivilDid', 'you', 'see', 'nothing', 'but', 'only', 'civility', '\n', 'I', 'see', 'a', 'vast', 'deal', 'more', ' ', 'such', 'kindness', 'as', 'fall', 'to', 'the', 'share', '\n', 'of', 'nobody', 'but', 'meno', 'pride', 'no', 'hauteur', 'and', 'your', 'sister', '\n', 'just', 'the', 'sameall', 'sweetness', 'and', 'affability', '\n\n', 'Elinor', 'wish', 'to', 'talk', 'of', 'something', 'else', 'but', 'Lucy', 'still', '\n', 'press', 'she', 'to', 'own', 'that', 'she', 'have', 'reason', 'for', 'her', 'happiness', '\n', 'and', 'Elinor', 'be', 'oblige', 'to', 'go', 'on', '\n\n', 'undoubtedly', 'if', 'they', 'have', 'know', 'your', 'engagement', '\n', 'say', 'she', 'nothing', 'could', 'be', 'more', 'flattering', 'than', 'their', '\n', 'treatment', 'of', 'youbut', 'as', 'that', 'be', 'not', 'the', 'case', '\n\n', 'I', 'guess', 'you', 'would', 'say', 'soreplied', 'Lucy', '\n', 'quicklybut', 'there', 'be', 'no', 'reason', 'in', 'the', 'world', 'why', '\n', 'Mrs', 'Ferrars', 'should', 'seem', 'to', 'like', 'I', 'if', 'she', 'do', 'not', '\n', 'and', 'she', 'like', 'I', 'be', 'every', 'thing', ' ', 'you', 'sha', 'not', 'talk', 'I', '\n', 'out', 'of', 'my', 'satisfaction', ' ', 'I', 'be', 'sure', 'it', 'will', 'all', 'end', 'well', '\n', 'and', 'there', 'will', 'be', 'no', 'difficulty', 'at', 'all', 'to', 'what', 'I', '\n', 'use', 'to', 'think', ' ', 'Mrs', 'Ferrars', 'be', 'a', 'charming', 'woman', '\n', 'and', 'so', 'be', 'your', 'sister', ' ', 'they', 'be', 'both', 'delightful', 'woman', '\n', 'indeedi', 'wonder', 'I', 'should', 'never', 'hear', 'you', 'say', 'how', 'agreeable', '\n', 'Mrs', 'Dashwood', 'be', '\n\n', 'to', 'this', 'Elinor', 'have', 'no', 'answer', 'to', 'make', 'and', 'do', 'not', '\n', 'attempt', 'any', '\n\n', 'be', 'you', 'ill', 'Miss', 'Dashwoodyou', 'seem', 'lowyou', '\n', 'do', 'not', 'speaksure', 'you', 'ant', 'well', '\n\n', 'I', 'never', 'be', 'in', 'well', 'health', '\n\n', 'I', 'be', 'glad', 'of', 'it', 'with', 'all', 'my', 'heart', 'but', 'really', 'you', 'do', '\n', 'not', 'look', 'it', ' ', 'I', 'should', 'be', 'sorry', 'to', 'have', 'you', 'ill', 'you', 'that', 'have', '\n', 'be', 'the', 'great', 'comfort', 'to', 'I', 'in', 'the', 'worldheaven', '\n', 'know', 'what', 'I', 'should', 'have', 'do', 'without', 'your', 'friendship', '\n\n', 'Elinor', 'try', 'to', 'make', 'a', 'civil', 'answer', 'though', 'doubt', '\n', 'her', 'own', 'success', ' ', 'but', 'it', 'seem', 'to', 'satisfy', 'Lucy', 'for', 'she', '\n', 'directly', 'reply', '\n\n', 'indeed', 'I', 'be', 'perfectly', 'convinced', 'of', 'your', 'regard', '\n', 'for', 'I', 'and', 'next', 'to', 'Edwards', 'love', 'it', 'be', 'the', 'great', '\n', 'comfort', 'I', 'havepoor', 'edwardbut', 'now', 'there', 'be', 'one', '\n', 'good', 'thing', 'we', 'shall', 'be', 'able', 'to', 'meet', 'and', 'meet', 'pretty', 'often', '\n', 'for', 'Lady', 'Middletons', 'delight', 'with', 'Mrs', 'Dashwood', '\n', 'so', 'we', 'shall', 'be', 'a', 'good', 'deal', 'in', 'Harley', 'Street', 'I', 'dare', 'say', '\n', 'and', 'Edward', 'spend', 'half', 'his', 'time', 'with', 'his', 'sisterbeside', '\n', 'Lady', 'Middleton', 'and', 'Mrs', 'Ferrars', 'will', 'visit', 'now', '\n', 'and', 'Mrs', 'Ferrars', 'and', 'your', 'sister', 'be', 'both', 'so', 'good', 'to', 'say', '\n', 'more', 'than', 'once', 'they', 'should', 'always', 'be', 'glad', 'to', 'see', 'I', '\n', 'they', 'be', 'such', 'charming', 'womeni', 'be', 'sure', 'if', 'ever', 'you', '\n', 'tell', 'your', 'sister', 'what', 'I', 'think', 'of', 'she', 'you', 'can', 'not', 'speak', '\n', 'too', 'high', '\n\n', 'but', 'Elinor', 'would', 'not', 'give', 'she', 'any', 'encouragement', '\n', 'to', 'hope', 'that', 'she', 'should', 'tell', 'her', 'sister', ' ', 'Lucy', 'continue', '\n\n', 'I', 'be', 'sure', 'I', 'should', 'have', 'see', 'it', 'in', 'a', 'moment', '\n', 'if', 'Mrs', 'Ferrars', 'have', 'take', 'a', 'dislike', 'to', 'I', ' ', 'if', 'she', 'have', 'only', '\n', 'make', 'I', 'a', 'formal', 'courtesy', 'for', 'instance', 'without', 'say', '\n', 'a', 'word', 'and', 'never', 'after', 'have', 'take', 'any', 'notice', 'of', 'I', '\n', 'and', 'never', 'look', 'at', 'I', 'in', 'a', 'pleasant', 'wayyou', 'know', '\n', 'what', 'I', 'meanif', 'I', 'have', 'be', 'treat', 'in', 'that', 'forbid', '\n', 'sort', 'of', 'way', 'I', 'should', 'have', 'give', 'it', 'all', 'up', 'in', 'despair', '\n', 'I', 'could', 'not', 'have', 'stand', 'it', ' ', 'for', 'where', 'she', 'do', 'dislike', '\n', 'I', 'know', 'it', 'be', 'most', 'violent', '\n\n', 'Elinor', 'be', 'prevent', 'from', 'make', 'any', 'reply', 'to', 'this', '\n', 'civil', 'triumph', 'by', 'the', 'door', 'be', 'throw', 'open', 'the', 'servant', '\n', 'announce', 'Mr', 'Ferrars', 'and', 'Edwards', 'immediately', 'walk', 'in', '\n\n', 'it', 'be', 'a', 'very', 'awkward', 'moment', 'and', 'the', 'countenance', 'of', 'each', '\n', 'shew', 'that', 'it', 'be', 'so', ' ', 'they', 'all', 'look', 'exceedingly', 'foolish', '\n', 'and', 'Edward', 'seem', 'to', 'have', 'as', 'great', 'an', 'inclination', 'to', 'walk', '\n', 'out', 'of', 'the', 'room', 'again', 'as', 'to', 'advance', 'far', 'into', 'it', '\n', 'the', 'very', 'circumstance', 'in', 'its', 'unpleasant', 'form', '\n', 'which', 'they', 'would', 'each', 'have', 'be', 'most', 'anxious', 'to', 'avoid', '\n', 'have', 'fall', 'on', 'themthey', 'be', 'not', 'only', 'all', 'three', 'together', '\n', 'but', 'be', 'together', 'without', 'the', 'relief', 'of', 'any', 'other', 'person', '\n', 'the', 'lady', 'recover', 'themselves', 'first', ' ', 'it', 'be', 'not', 'Lucys', '\n', 'business', 'to', 'put', 'herself', 'forward', 'and', 'the', 'appearance', 'of', '\n', 'secrecy', 'must', 'still', 'be', 'keep', 'up', ' ', 'she', 'could', 'therefore', 'only', '\n', 'look', 'her', 'tenderness', 'and', 'after', 'slightly', 'address', 'he', '\n', 'say', 'no', 'more', '\n\n', 'but', 'Elinor', 'have', 'more', 'to', 'do', 'and', 'so', 'anxious', 'be', 'she', '\n', 'for', 'his', 'sake', 'and', 'her', 'own', 'to', 'do', 'it', 'well', 'that', 'she', '\n', 'force', 'herself', 'after', 'a', 'moment', 'recollection', '\n', 'to', 'welcome', 'he', 'with', 'a', 'look', 'and', 'manner', 'that', 'be', 'almost', 'easy', '\n', 'and', 'almost', 'open', 'and', 'another', 'struggle', 'another', 'effort', 'still', '\n', 'improve', 'they', ' ', 'she', 'would', 'not', 'allow', 'the', 'presence', 'of', 'Lucy', '\n', 'nor', 'the', 'consciousness', 'of', 'some', 'injustice', 'towards', 'herself', '\n', 'to', 'deter', 'she', 'from', 'say', 'that', 'she', 'be', 'happy', 'to', 'see', 'he', '\n', 'and', 'that', 'she', 'have', 'very', 'much', 'regret', 'be', 'from', 'home', '\n', 'when', 'he', 'call', 'before', 'in', 'Berkeley', 'Street', ' ', 'she', 'would', '\n', 'not', 'be', 'frightened', 'from', 'pay', 'he', 'those', 'attention', 'which', '\n', 'as', 'a', 'friend', 'and', 'almost', 'a', 'relation', 'be', 'his', 'due', 'by', 'the', '\n', 'observant', 'eye', 'of', 'Lucy', 'though', 'she', 'soon', 'perceive', 'they', '\n', 'to', 'be', 'narrowly', 'watch', 'she', '\n\n', 'her', 'manner', 'give', 'some', 'reassurance', 'to', 'Edward', 'and', 'he', '\n', 'have', 'courage', 'enough', 'to', 'sit', 'down', 'but', 'his', 'embarrassment', 'still', '\n', 'exceed', 'that', 'of', 'the', 'lady', 'in', 'a', 'proportion', 'which', 'the', 'case', '\n', 'render', 'reasonable', 'though', 'his', 'sex', 'might', 'make', 'it', 'rare', '\n', 'for', 'his', 'heart', 'have', 'not', 'the', 'indifference', 'of', 'Lucys', 'nor', '\n', 'could', 'his', 'conscience', 'have', 'quite', 'the', 'ease', 'of', 'Elinors', '\n\n', 'Lucy', 'with', 'a', 'demure', 'and', 'settle', 'air', 'seem', 'determine', '\n', 'to', 'make', 'no', 'contribution', 'to', 'the', 'comfort', 'of', 'the', 'other', '\n', 'and', 'would', 'not', 'say', 'a', 'word', 'and', 'almost', 'every', 'thing', 'that', 'was', '\n', 'say', 'proceed', 'from', 'Elinor', 'who', 'be', 'oblige', 'to', 'volunteer', '\n', 'all', 'the', 'information', 'about', 'her', 'mother', 'health', 'their', 'come', '\n', 'to', 'town', 'c', 'which', 'Edward', 'ought', 'to', 'have', 'inquire', 'about', '\n', 'but', 'never', 'do', '\n\n', 'her', 'exertion', 'do', 'not', 'stop', 'here', 'for', 'she', 'soon', '\n', 'afterwards', 'feel', 'herself', 'so', 'heroically', 'disposed', 'as', '\n', 'to', 'determine', 'under', 'pretence', 'of', 'fetch', 'Marianne', '\n', 'to', 'leave', 'the', 'other', 'by', 'themselves', 'and', 'she', 'really', 'do', 'it', '\n', 'and', 'THAT', 'in', 'the', 'handsome', 'manner', 'for', 'she', 'loiter', 'away', '\n', 'several', 'minute', 'on', 'the', 'landingplace', 'with', 'the', 'most', '\n', 'highminde', 'fortitude', 'before', 'she', 'go', 'to', 'her', 'sister', '\n', 'when', 'that', 'be', 'once', 'do', 'however', 'it', 'be', 'time', 'for', 'the', 'rapture', '\n', 'of', 'Edward', 'to', 'cease', 'for', 'Mariannes', 'joy', 'hurry', 'she', 'into', '\n', 'the', 'drawingroom', 'immediately', ' ', 'her', 'pleasure', 'in', 'see', 'he', '\n', 'be', 'like', 'every', 'other', 'of', 'her', 'feeling', 'strong', 'in', 'itself', '\n', 'and', 'strongly', 'speak', ' ', 'she', 'meet', 'he', 'with', 'a', 'hand', 'that', 'would', '\n', 'be', 'take', 'and', 'a', 'voice', 'that', 'express', 'the', 'affection', 'of', 'a', 'sister', '\n\n', 'Dear', 'Edward', 'she', 'cry', 'this', 'be', 'a', 'moment', 'of', 'great', '\n', 'happinessthis', 'would', 'almost', 'make', 'amend', 'for', 'every', 'thing', '\n\n', 'Edward', 'try', 'to', 'return', 'her', 'kindness', 'as', 'it', 'deserve', '\n', 'but', 'before', 'such', 'witness', 'he', 'dared', 'not', 'say', 'half', 'what', 'he', '\n', 'really', 'feel', ' ', 'again', 'they', 'all', 'sit', 'down', 'and', 'for', 'a', 'moment', '\n', 'or', 'two', 'all', 'be', 'silent', 'while', 'Marianne', 'be', 'look', 'with', 'the', '\n', 'most', 'speak', 'tenderness', 'sometimes', 'at', 'Edward', 'and', 'sometimes', '\n', 'at', 'Elinor', 'regret', 'only', 'that', 'their', 'delight', 'in', 'each', '\n', 'other', 'should', 'be', 'check', 'by', 'Lucys', 'unwelcome', 'presence', '\n', 'Edward', 'be', 'the', 'first', 'to', 'speak', 'and', 'it', 'be', 'to', 'notice', '\n', 'Mariannes', 'alter', 'look', 'and', 'express', 'his', 'fear', 'of', 'her', '\n', 'not', 'find', 'London', 'agree', 'with', 'she', '\n\n', 'oh', 'do', 'not', 'think', 'of', 'I', 'she', 'reply', 'with', 'spirited', '\n', 'earnestness', 'though', 'her', 'eye', 'be', 'fill', 'with', 'tear', '\n', 'as', 'she', 'speak', 'do', 'not', 'think', 'of', 'MY', 'health', ' ', 'Elinor', 'be', 'well', '\n', 'you', 'see', ' ', 'that', 'must', 'be', 'enough', 'for', 'we', 'both', '\n\n', 'this', 'remark', 'be', 'not', 'calculate', 'to', 'make', 'Edward', 'or', '\n', 'Elinor', 'more', 'easy', 'nor', 'to', 'conciliate', 'the', 'good', 'will', 'of', 'Lucy', '\n', 'who', 'look', 'up', 'at', 'Marianne', 'with', 'no', 'very', 'benignant', 'expression', '\n\n', 'do', 'you', 'like', 'London', 'say', 'Edward', 'willing', 'to', 'say', '\n', 'any', 'thing', 'that', 'might', 'introduce', 'another', 'subject', '\n\n', 'not', 'at', 'all', ' ', 'I', 'expect', 'much', 'pleasure', 'in', 'it', '\n', 'but', 'I', 'have', 'find', 'none', ' ', 'the', 'sight', 'of', 'you', 'Edward', 'be', 'the', '\n', 'only', 'comfort', 'it', 'have', 'afford', 'and', 'thank', 'Heaven', 'you', '\n', 'be', 'what', 'you', 'always', 'be', '\n\n', 'she', 'pausedno', 'one', 'speak', '\n\n', 'I', 'think', 'Elinor', 'she', 'presently', 'add', 'we', 'must', '\n', 'employ', 'Edward', 'to', 'take', 'care', 'of', 'we', 'in', 'our', 'return', 'to', 'Barton', '\n', 'in', 'a', 'week', 'or', 'two', 'I', 'suppose', 'we', 'shall', 'be', 'go', 'and', 'I', 'trust', '\n', 'Edward', 'will', 'not', 'be', 'very', 'unwilling', 'to', 'accept', 'the', 'charge', '\n\n', 'Poor', 'Edward', 'mutter', 'something', 'but', 'what', 'it', 'be', '\n', 'nobody', 'know', 'not', 'even', 'himself', ' ', 'but', 'Marianne', 'who', 'see', '\n', 'his', 'agitation', 'and', 'could', 'easily', 'trace', 'it', 'to', 'whatever', '\n', 'cause', 'well', 'please', 'herself', 'be', 'perfectly', 'satisfied', '\n', 'and', 'soon', 'talk', 'of', 'something', 'else', '\n\n', 'we', 'spend', 'such', 'a', 'day', 'Edward', 'in', 'Harley', 'Street', '\n', 'yesterday', ' ', 'so', 'dull', 'so', 'wretchedly', 'dullbut', 'I', 'have', 'much', '\n', 'to', 'say', 'to', 'you', 'on', 'that', 'head', 'which', 'can', 'not', 'be', 'say', 'now', '\n\n', 'and', 'with', 'this', 'admirable', 'discretion', 'do', 'she', 'defer', '\n', 'the', 'assurance', 'of', 'her', 'find', 'their', 'mutual', 'relative', 'more', '\n', 'disagreeable', 'than', 'ever', 'and', 'of', 'she', 'be', 'particularly', '\n', 'disgust', 'with', 'his', 'mother', 'till', 'they', 'be', 'more', 'in', 'private', '\n\n', 'but', 'why', 'be', 'you', 'not', 'there', 'EdwardWhy', 'do', 'you', '\n', 'not', 'come', '\n\n', 'I', 'be', 'engage', 'elsewhere', '\n\n', 'engage', ' ', 'but', 'what', 'be', 'that', 'when', 'such', 'friend', '\n', 'be', 'to', 'be', 'meet', '\n\n', 'perhaps', 'Miss', 'Marianne', 'cry', 'Lucy', 'eager', 'to', 'take', '\n', 'some', 'revenge', 'on', 'she', 'you', 'think', 'young', 'man', 'never', 'stand', '\n', 'upon', 'engagement', 'if', 'they', 'have', 'no', 'mind', 'to', 'keep', 'they', '\n', 'little', 'as', 'well', 'as', 'great', '\n\n', 'Elinor', 'be', 'very', 'angry', 'but', 'Marianne', 'seem', 'entirely', '\n', 'insensible', 'of', 'the', 'sting', 'for', 'she', 'calmly', 'reply', '\n\n', 'not', 'so', 'indeed', 'for', 'seriously', 'speak', 'I', 'be', 'very', '\n', 'sure', 'that', 'conscience', 'only', 'keep', 'Edward', 'from', 'Harley', 'Street', '\n', 'and', 'I', 'really', 'believe', 'he', 'have', 'the', 'most', 'delicate', 'conscience', '\n', 'in', 'the', 'world', 'the', 'most', 'scrupulous', 'in', 'perform', '\n', 'every', 'engagement', 'however', 'minute', 'and', 'however', 'it', '\n', 'may', 'make', 'against', 'his', 'interest', 'or', 'pleasure', ' ', 'he', 'be', 'the', '\n', 'most', 'fearful', 'of', 'give', 'pain', 'of', 'wounding', 'expectation', '\n', 'and', 'the', 'most', 'incapable', 'of', 'be', 'selfish', 'of', 'any', 'body', '\n', 'I', 'ever', 'see', ' ', 'Edward', 'it', 'be', 'so', 'and', 'I', 'will', 'say', 'it', '\n', 'what', 'be', 'you', 'never', 'to', 'hear', 'yourself', 'praisedthen', 'you', '\n', 'must', 'be', 'no', 'friend', 'of', 'mine', 'for', 'those', 'who', 'will', 'accept', '\n', 'of', 'my', 'love', 'and', 'esteem', 'must', 'submit', 'to', 'my', 'open', 'commendation', '\n\n', 'the', 'nature', 'of', 'her', 'commendation', 'in', 'the', 'present', 'case', '\n', 'however', 'happen', 'to', 'be', 'particularly', 'illsuite', 'to', 'the', '\n', 'feeling', 'of', 'two', 'third', 'of', 'her', 'auditor', 'and', 'be', 'so', 'very', '\n', 'unexhilarating', 'to', 'Edward', 'that', 'he', 'very', 'soon', 'get', 'up', 'to', 'go', 'away', '\n\n', 'go', 'so', 'soon', 'say', 'Marianne', 'my', 'dear', 'Edward', '\n', 'this', 'must', 'not', 'be', '\n\n', 'and', 'draw', 'he', 'a', 'little', 'aside', 'she', 'whisper', '\n', 'her', 'persuasion', 'that', 'Lucy', 'could', 'not', 'stay', 'much', 'long', '\n', 'but', 'even', 'this', 'encouragement', 'fail', 'for', 'he', 'would', 'go', '\n', 'and', 'Lucy', 'who', 'would', 'have', 'outstaid', 'he', 'have', 'his', 'visit', 'last', '\n', 'two', 'hour', 'soon', 'afterwards', 'go', 'away', '\n\n', 'what', 'can', 'bring', 'she', 'here', 'so', 'often', 'say', 'Marianne', '\n', 'on', 'she', 'leave', 'they', ' ', 'could', 'not', 'she', 'see', 'that', 'we', 'want', '\n', 'her', 'gonehow', 'teazing', 'to', 'Edward', '\n\n', 'why', 'sowe', 'be', 'all', 'his', 'friend', 'and', 'Lucy', 'have', 'be', '\n', 'the', 'long', 'know', 'to', 'he', 'of', 'any', ' ', 'it', 'be', 'but', 'natural', '\n', 'that', 'he', 'should', 'like', 'to', 'see', 'she', 'as', 'well', 'as', 'ourselves', '\n\n', 'Marianne', 'look', 'at', 'her', 'steadily', 'and', 'say', 'you', 'know', '\n', 'Elinor', 'that', 'this', 'be', 'a', 'kind', 'of', 'talk', 'which', 'I', 'can', 'not', 'bear', '\n', 'if', 'you', 'only', 'hope', 'to', 'have', 'your', 'assertion', 'contradict', '\n', 'as', 'I', 'must', 'suppose', 'to', 'be', 'the', 'case', 'you', 'ought', 'to', 'recollect', '\n', 'that', 'I', 'be', 'the', 'last', 'person', 'in', 'the', 'world', 'to', 'do', 'it', '\n', 'I', 'can', 'not', 'descend', 'to', 'be', 'trick', 'out', 'of', 'assurance', 'that', 'be', '\n', 'not', 'really', 'want', '\n\n', 'she', 'then', 'leave', 'the', 'room', 'and', 'Elinor', 'dared', 'not', 'follow', '\n', 'she', 'to', 'say', 'more', 'for', 'bind', 'as', 'she', 'be', 'by', 'her', 'promise', '\n', 'of', 'secrecy', 'to', 'Lucy', 'she', 'could', 'give', 'no', 'information', 'that', '\n', 'would', 'convince', 'Marianne', 'and', 'painful', 'as', 'the', 'consequence', '\n', 'of', 'she', 'still', 'continue', 'in', 'an', 'error', 'might', 'be', 'she', 'be', '\n', 'oblige', 'to', 'submit', 'to', 'it', ' ', 'all', 'that', 'she', 'could', 'hope', 'be', '\n', 'that', 'Edward', 'would', 'not', 'often', 'expose', 'she', 'or', 'himself', 'to', 'the', '\n', 'distress', 'of', 'hear', 'Mariannes', 'mistaken', 'warmth', 'nor', 'to', 'the', '\n', 'repetition', 'of', 'any', 'other', 'part', 'of', 'the', 'pain', 'that', 'have', 'attend', '\n', 'their', 'recent', 'meetingand', 'this', 'she', 'have', 'every', 'reason', 'to', 'expect', '\n\n\n\n', 'chapter', '36', '\n\n\n', 'within', 'a', 'few', 'day', 'after', 'this', 'meeting', 'the', 'newspaper', '\n', 'announce', 'to', 'the', 'world', 'that', 'the', 'lady', 'of', 'Thomas', 'Palmer', '\n', 'Esq', 'be', 'safely', 'deliver', 'of', 'a', 'son', 'and', 'heir', 'a', 'very', '\n', 'interesting', 'and', 'satisfactory', 'paragraph', 'at', 'least', 'to', 'all', '\n', 'those', 'intimate', 'connection', 'who', 'know', 'it', 'before', '\n\n', 'this', 'event', 'highly', 'important', 'to', 'Mrs', 'Jenningss', 'happiness', '\n', 'produce', 'a', 'temporary', 'alteration', 'in', 'the', 'disposal', 'of', 'her', 'time', '\n', 'and', 'influence', 'in', 'a', 'like', 'degree', 'the', 'engagement', '\n', 'of', 'her', 'young', 'friend', 'for', 'as', 'she', 'wish', 'to', 'be', 'as', 'much', '\n', 'as', 'possible', 'with', 'Charlotte', 'she', 'go', 'thither', 'every', 'morning', '\n', 'as', 'soon', 'as', 'she', 'be', 'dress', 'and', 'do', 'not', 'return', 'till', 'late', '\n', 'in', 'the', 'evening', 'and', 'the', 'Miss', 'Dashwoods', 'at', 'the', 'particular', '\n', 'request', 'of', 'the', 'Middletons', 'spend', 'the', 'whole', 'of', 'every', 'day', '\n', 'in', 'every', 'day', 'in', 'Conduit', 'Street', ' ', 'for', 'their', 'own', 'comfort', '\n', 'they', 'would', 'much', 'rather', 'have', 'remain', 'at', 'least', 'all', '\n', 'the', 'morning', 'in', 'Mrs', 'Jenningss', 'house', 'but', 'it', 'be', 'not', '\n', 'a', 'thing', 'to', 'be', 'urge', 'against', 'the', 'wish', 'of', 'everybody', '\n', 'their', 'hour', 'be', 'therefore', 'make', 'over', 'to', 'Lady', 'Middleton', '\n', 'and', 'the', 'two', 'Miss', 'Steeles', 'by', 'whom', 'their', 'company', 'in', 'fact', '\n', 'be', 'as', 'little', 'value', 'as', 'it', 'be', 'professedly', 'seek', '\n\n', 'they', 'have', 'too', 'much', 'sense', 'to', 'be', 'desirable', 'companion', '\n', 'to', 'the', 'former', 'and', 'by', 'the', 'latter', 'they', 'be', 'consider', 'with', '\n', 'a', 'jealous', 'eye', 'as', 'intrude', 'on', 'their', 'ground', 'and', 'share', '\n', 'the', 'kindness', 'which', 'they', 'want', 'to', 'monopolize', ' ', 'though', 'nothing', '\n', 'could', 'be', 'more', 'polite', 'than', 'Lady', 'Middletons', 'behaviour', 'to', '\n', 'Elinor', 'and', 'Marianne', 'she', 'do', 'not', 'really', 'like', 'they', 'at', 'all', '\n', 'because', 'they', 'neither', 'flatter', 'herself', 'nor', 'her', 'child', '\n', 'she', 'could', 'not', 'believe', 'they', 'goodnatured', 'and', 'because', 'they', '\n', 'be', 'fond', 'of', 'read', 'she', 'fancy', 'they', 'satirical', 'perhaps', '\n', 'without', 'exactly', 'know', 'what', 'it', 'be', 'to', 'be', 'satirical', '\n', 'but', 'that', 'do', 'not', 'signify', ' ', 'it', 'be', 'censure', 'in', 'common', 'use', '\n', 'and', 'easily', 'give', '\n\n', 'their', 'presence', 'be', 'a', 'restraint', 'both', 'on', 'she', 'and', 'on', 'Lucy', '\n', 'it', 'check', 'the', 'idleness', 'of', 'one', 'and', 'the', 'business', 'of', 'the', 'other', '\n', 'Lady', 'Middleton', 'be', 'ashamed', 'of', 'do', 'nothing', 'before', 'they', '\n', 'and', 'the', 'flattery', 'which', 'Lucy', 'be', 'proud', 'to', 'think', 'of', '\n', 'and', 'administer', 'at', 'other', 'time', 'she', 'fear', 'they', 'would', 'despise', '\n', 'she', 'for', 'offer', ' ', 'Miss', 'Steele', 'be', 'the', 'least', 'discompose', '\n', 'of', 'the', 'three', 'by', 'their', 'presence', 'and', 'it', 'be', 'in', 'their', 'power', '\n', 'to', 'reconcile', 'she', 'to', 'it', 'entirely', ' ', 'would', 'either', 'of', 'they', '\n', 'only', 'have', 'give', 'she', 'a', 'full', 'and', 'minute', 'account', 'of', 'the', 'whole', '\n', 'affair', 'between', 'Marianne', 'and', 'Mr', 'Willoughby', 'she', 'would', '\n', 'have', 'think', 'herself', 'amply', 'reward', 'for', 'the', 'sacrifice', '\n', 'of', 'the', 'good', 'place', 'by', 'the', 'fire', 'after', 'dinner', 'which', 'their', '\n', 'arrival', 'occasion', ' ', 'but', 'this', 'conciliation', 'be', 'not', 'grant', '\n', 'for', 'though', 'she', 'often', 'throw', 'out', 'expression', 'of', 'pity', 'for', 'her', '\n', 'sister', 'to', 'Elinor', 'and', 'more', 'than', 'once', 'dropt', 'a', 'reflection', '\n', 'on', 'the', 'inconstancy', 'of', 'beaux', 'before', 'Marianne', 'no', 'effect', '\n', 'be', 'produce', 'but', 'a', 'look', 'of', 'indifference', 'from', 'the', 'former', '\n', 'or', 'of', 'disgust', 'in', 'the', 'latter', ' ', 'an', 'effort', 'even', 'yet', 'light', '\n', 'might', 'have', 'make', 'she', 'their', 'friend', ' ', 'would', 'they', 'only', 'have', '\n', 'laugh', 'at', 'she', 'about', 'the', 'Doctor', ' ', 'but', 'so', 'little', 'be', 'they', '\n', 'anymore', 'than', 'the', 'other', 'inclined', 'to', 'oblige', 'she', '\n', 'that', 'if', 'Sir', 'John', 'dine', 'from', 'home', 'she', 'might', 'spend', 'a', 'whole', '\n', 'day', 'without', 'hear', 'any', 'other', 'raillery', 'on', 'the', 'subject', '\n', 'than', 'what', 'she', 'be', 'kind', 'enough', 'to', 'bestow', 'on', 'herself', '\n\n', 'all', 'these', 'jealousy', 'and', 'discontent', 'however', 'be', 'so', '\n', 'totally', 'unsuspected', 'by', 'Mrs', 'Jennings', 'that', 'she', 'think', '\n', 'it', 'a', 'delightful', 'thing', 'for', 'the', 'girl', 'to', 'be', 'together', '\n', 'and', 'generally', 'congratulate', 'her', 'young', 'friend', 'every', 'night', '\n', 'on', 'having', 'escape', 'the', 'company', 'of', 'a', 'stupid', 'old', 'woman', 'so', 'long', '\n', 'she', 'join', 'they', 'sometimes', 'at', 'Sir', 'Johns', 'sometimes', '\n', 'at', 'her', 'own', 'house', 'but', 'wherever', 'it', 'be', 'she', 'always', 'come', '\n', 'in', 'excellent', 'spirit', 'full', 'of', 'delight', 'and', 'importance', '\n', 'attribute', 'Charlottes', 'well', 'do', 'to', 'her', 'own', 'care', 'and', 'ready', '\n', 'to', 'give', 'so', 'exact', 'so', 'minute', 'a', 'detail', 'of', 'her', 'situation', '\n', 'as', 'only', 'Miss', 'Steele', 'have', 'curiosity', 'enough', 'to', 'desire', '\n', 'one', 'thing', 'do', 'disturb', 'she', 'and', 'of', 'that', 'she', 'make', 'she', '\n', 'daily', 'complaint', ' ', 'Mr', 'Palmer', 'maintain', 'the', 'common', '\n', 'but', 'unfatherly', 'opinion', 'among', 'his', 'sex', 'of', 'all', 'infant', 'be', 'alike', '\n', 'and', 'though', 'she', 'could', 'plainly', 'perceive', 'at', 'different', 'time', '\n', 'the', 'most', 'striking', 'resemblance', 'between', 'this', 'baby', 'and', 'every', '\n', 'one', 'of', 'his', 'relation', 'on', 'both', 'side', 'there', 'be', 'no', 'convincing', '\n', 'his', 'father', 'of', 'it', 'no', 'persuade', 'he', 'to', 'believe', 'that', 'it', '\n', 'be', 'not', 'exactly', 'like', 'every', 'other', 'baby', 'of', 'the', 'same', 'age', '\n', 'nor', 'could', 'he', 'even', 'be', 'bring', 'to', 'acknowledge', 'the', 'simple', '\n', 'proposition', 'of', 'its', 'be', 'the', 'fine', 'child', 'in', 'the', 'world', '\n\n', 'I', 'come', 'now', 'to', 'the', 'relation', 'of', 'a', 'misfortune', '\n', 'which', 'about', 'this', 'time', 'befell', 'Mrs', 'John', 'Dashwood', '\n', 'it', 'so', 'happen', 'that', 'while', 'her', 'two', 'sister', 'with', '\n', 'Mrs', 'Jennings', 'be', 'first', 'call', 'on', 'she', 'in', 'Harley', 'Street', '\n', 'another', 'of', 'her', 'acquaintance', 'have', 'dropt', 'ina', 'circumstance', '\n', 'in', 'itself', 'not', 'apparently', 'likely', 'to', 'produce', 'evil', 'to', 'she', '\n', 'but', 'while', 'the', 'imagination', 'of', 'other', 'people', 'will', 'carry', '\n', 'they', 'away', 'to', 'form', 'wrong', 'judgment', 'of', 'our', 'conduct', '\n', 'and', 'to', 'decide', 'on', 'it', 'by', 'slight', 'appearance', 'one', 'happiness', '\n', 'must', 'in', 'some', 'measure', 'be', 'always', 'at', 'the', 'mercy', 'of', 'chance', '\n', 'in', 'the', 'present', 'instance', 'this', 'lastarrived', 'lady', 'allow', '\n', 'her', 'fancy', 'to', 'so', 'far', 'outrun', 'truth', 'and', 'probability', '\n', 'that', 'on', 'merely', 'hear', 'the', 'name', 'of', 'the', 'Miss', 'Dashwoods', '\n', 'and', 'understand', 'they', 'to', 'be', 'Mr', 'Dashwoods', 'sister', '\n', 'she', 'immediately', 'conclude', 'they', 'to', 'be', 'stay', 'in', 'Harley', 'Street', '\n', 'and', 'this', 'misconstruction', 'produce', 'within', 'a', 'day', '\n', 'or', 'two', 'afterwards', 'card', 'of', 'invitation', 'for', 'they', '\n', 'as', 'well', 'as', 'for', 'their', 'brother', 'and', 'sister', 'to', 'a', 'small', '\n', 'musical', 'party', 'at', 'her', 'house', ' ', 'the', 'consequence', 'of', 'which', 'be', '\n', 'that', 'Mrs', 'John', 'Dashwood', 'be', 'oblige', 'to', 'submit', 'not', 'only', '\n', 'to', 'the', 'exceedingly', 'great', 'inconvenience', 'of', 'send', 'she', '\n', 'carriage', 'for', 'the', 'Miss', 'Dashwoods', 'but', 'what', 'be', 'still', 'bad', '\n', 'must', 'be', 'subject', 'to', 'all', 'the', 'unpleasantness', 'of', 'appear', '\n', 'to', 'treat', 'they', 'with', 'attention', 'and', 'who', 'could', 'tell', 'that', 'they', '\n', 'might', 'not', 'expect', 'to', 'go', 'out', 'with', 'she', 'a', 'second', 'time', ' ', 'the', 'power', '\n', 'of', 'disappoint', 'they', 'it', 'be', 'true', 'must', 'always', 'be', 'her', '\n', 'but', 'that', 'be', 'not', 'enough', 'for', 'when', 'people', 'be', 'determine', '\n', 'on', 'a', 'mode', 'of', 'conduct', 'which', 'they', 'know', 'to', 'be', 'wrong', 'they', 'feel', '\n', 'injure', 'by', 'the', 'expectation', 'of', 'any', 'thing', 'well', 'from', 'they', '\n\n', 'Marianne', 'have', 'now', 'be', 'bring', 'by', 'degree', 'so', 'much', '\n', 'into', 'the', 'habit', 'of', 'go', 'out', 'every', 'day', 'that', 'it', 'be', 'become', '\n', 'a', 'matter', 'of', 'indifference', 'to', 'she', 'whether', 'she', 'go', 'or', 'not', '\n', 'and', 'she', 'prepare', 'quietly', 'and', 'mechanically', 'for', 'every', '\n', 'evening', 'engagement', 'though', 'without', 'expect', 'the', 'small', '\n', 'amusement', 'from', 'any', 'and', 'very', 'often', 'without', 'know', '\n', 'till', 'the', 'last', 'moment', 'where', 'it', 'be', 'to', 'take', 'she', '\n\n', 'to', 'her', 'dress', 'and', 'appearance', 'she', 'be', 'grow', 'so', 'perfectly', '\n', 'indifferent', 'as', 'not', 'to', 'bestow', 'half', 'the', 'consideration', 'on', 'it', '\n', 'during', 'the', 'whole', 'of', 'her', 'toilet', 'which', 'it', 'receive', 'from', '\n', 'Miss', 'Steele', 'in', 'the', 'first', 'five', 'minute', 'of', 'their', 'be', '\n', 'together', 'when', 'it', 'be', 'finish', ' ', 'nothing', 'escape', 'her', 'minute', '\n', 'observation', 'and', 'general', 'curiosity', 'she', 'see', 'every', 'thing', '\n', 'and', 'ask', 'every', 'thing', 'be', 'never', 'easy', 'till', 'she', 'know', 'the', 'price', '\n', 'of', 'every', 'part', 'of', 'Mariannes', 'dress', 'could', 'have', 'guess', 'the', '\n', 'number', 'of', 'her', 'gown', 'altogether', 'with', 'well', 'judgment', 'than', '\n', 'Marianne', 'herself', 'and', 'be', 'not', 'without', 'hope', 'of', 'find', 'out', '\n', 'before', 'they', 'part', 'how', 'much', 'her', 'washing', 'cost', 'per', 'week', '\n', 'and', 'how', 'much', 'she', 'have', 'every', 'year', 'to', 'spend', 'upon', 'herself', '\n', 'the', 'impertinence', 'of', 'these', 'kind', 'of', 'scrutiny', 'moreover', '\n', 'be', 'generally', 'conclude', 'with', 'a', 'compliment', 'which', '\n', 'though', 'mean', 'as', 'its', 'douceur', 'be', 'consider', 'by', 'Marianne', '\n', 'as', 'the', 'great', 'impertinence', 'of', 'all', 'for', 'after', 'undergo', '\n', 'an', 'examination', 'into', 'the', 'value', 'and', 'make', 'of', 'she', 'gown', '\n', 'the', 'colour', 'of', 'her', 'shoe', 'and', 'the', 'arrangement', 'of', 'her', 'hair', '\n', 'she', 'be', 'almost', 'sure', 'of', 'be', 'tell', 'that', 'upon', 'her', 'word', '\n', 'she', 'look', 'vastly', 'smart', 'and', 'she', 'dare', 'to', 'say', 'she', 'would', '\n', 'make', 'a', 'great', 'many', 'conquest', '\n\n', 'with', 'such', 'encouragement', 'as', 'this', 'be', 'she', 'dismiss', '\n', 'on', 'the', 'present', 'occasion', 'to', 'her', 'brother', 'carriage', '\n', 'which', 'they', 'be', 'ready', 'to', 'enter', 'five', 'minute', 'after', 'it', '\n', 'stop', 'at', 'the', 'door', 'a', 'punctuality', 'not', 'very', 'agreeable', '\n', 'to', 'their', 'sisterinlaw', 'who', 'have', 'precede', 'they', 'to', 'the', 'house', '\n', 'of', 'her', 'acquaintance', 'and', 'be', 'there', 'hope', 'for', 'some', 'delay', '\n', 'on', 'their', 'part', 'that', 'might', 'inconvenience', 'either', 'herself', '\n', 'or', 'her', 'coachman', '\n\n', 'the', 'event', 'of', 'this', 'evening', 'be', 'not', 'very', 'remarkable', '\n', 'the', 'party', 'like', 'other', 'musical', 'party', 'comprehend', 'a', '\n', 'great', 'many', 'people', 'who', 'have', 'real', 'taste', 'for', 'the', 'performance', '\n', 'and', 'a', 'great', 'many', 'more', 'who', 'have', 'none', 'at', 'all', 'and', 'the', 'performer', '\n', 'themselves', 'be', 'as', 'usual', 'in', 'their', 'own', 'estimation', '\n', 'and', 'that', 'of', 'their', 'immediate', 'friend', 'the', 'first', 'private', '\n', 'performer', 'in', 'England', '\n\n', 'as', 'Elinor', 'be', 'neither', 'musical', 'nor', 'affect', 'to', 'be', 'so', '\n', 'she', 'make', 'no', 'scruple', 'of', 'turn', 'her', 'eye', 'from', 'the', 'grand', '\n', 'pianoforte', 'whenever', 'it', 'suit', 'she', 'and', 'unrestrained', 'even', '\n', 'by', 'the', 'presence', 'of', 'a', 'harp', 'and', 'violoncello', 'would', 'fix', '\n', 'they', 'at', 'pleasure', 'on', 'any', 'other', 'object', 'in', 'the', 'room', ' ', 'in', 'one', '\n', 'of', 'these', 'excursive', 'glance', 'she', 'perceive', 'among', 'a', 'group', '\n', 'of', 'young', 'man', 'the', 'very', 'he', 'who', 'have', 'give', 'they', 'a', 'lecture', '\n', 'on', 'toothpickcase', 'at', 'Grays', ' ', 'she', 'perceive', 'he', 'soon', '\n', 'afterwards', 'look', 'at', 'herself', 'and', 'speak', 'familiarly', '\n', 'to', 'her', 'brother', 'and', 'have', 'just', 'determine', 'to', 'find', 'out', 'his', '\n', 'name', 'from', 'the', 'latter', 'when', 'they', 'both', 'come', 'towards', 'she', '\n', 'and', 'Mr', 'Dashwood', 'introduce', 'he', 'to', 'she', 'as', 'Mr', 'Robert', 'Ferrars', '\n\n', 'he', 'address', 'she', 'with', 'easy', 'civility', 'and', 'twist', '\n', 'his', 'head', 'into', 'a', 'bow', 'which', 'assure', 'she', 'as', 'plainly', 'as', '\n', 'word', 'could', 'have', 'do', 'that', 'he', 'be', 'exactly', 'the', 'coxcomb', '\n', 'she', 'have', 'hear', 'he', 'describe', 'to', 'be', 'by', 'Lucy', ' ', 'Happy', 'have', '\n', 'it', 'be', 'for', 'she', 'if', 'her', 'regard', 'for', 'Edward', 'have', 'depend', '\n', 'less', 'on', 'his', 'own', 'merit', 'than', 'on', 'the', 'merit', 'of', 'his', 'near', '\n', 'relation', ' ', 'for', 'then', 'his', 'brother', 'bow', 'must', 'have', 'give', '\n', 'the', 'finish', 'stroke', 'to', 'what', 'the', 'illhumour', 'of', 'his', 'mother', '\n', 'and', 'sister', 'would', 'have', 'begin', ' ', 'but', 'while', 'she', 'wonder', '\n', 'at', 'the', 'difference', 'of', 'the', 'two', 'young', 'man', 'she', 'do', 'not', 'find', '\n', 'that', 'the', 'emptiness', 'of', 'conceit', 'of', 'the', 'one', 'put', 'she', 'out', '\n', 'of', 'all', 'charity', 'with', 'the', 'modesty', 'and', 'worth', 'of', 'the', 'other', '\n', 'why', 'they', 'be', 'different', 'Robert', 'exclaim', 'to', 'she', 'himself', '\n', 'in', 'the', 'course', 'of', 'a', 'quarter', 'of', 'an', 'hour', 'conversation', '\n', 'for', 'talk', 'of', 'his', 'brother', 'and', 'lament', 'the', 'extreme', '\n', 'gaucherie', 'which', 'he', 'really', 'believe', 'keep', 'he', 'from', 'mix', '\n', 'in', 'proper', 'society', 'he', 'candidly', 'and', 'generously', 'attribute', 'it', '\n', 'much', 'less', 'to', 'any', 'natural', 'deficiency', 'than', 'to', 'the', 'misfortune', '\n', 'of', 'a', 'private', 'education', 'while', 'he', 'himself', 'though', 'probably', '\n', 'without', 'any', 'particular', 'any', 'material', 'superiority', '\n', 'by', 'nature', 'merely', 'from', 'the', 'advantage', 'of', 'a', 'public', 'school', '\n', 'be', 'as', 'well', 'fit', 'to', 'mix', 'in', 'the', 'world', 'as', 'any', 'other', 'man', '\n\n', 'upon', 'my', 'soul', 'he', 'add', 'I', 'believe', 'it', 'be', 'nothing', 'more', '\n', 'and', 'so', 'I', 'often', 'tell', 'my', 'mother', 'when', 'she', 'be', 'grieve', '\n', 'about', 'it', ' ', 'my', 'dear', 'Madam', 'I', 'always', 'say', 'to', 'she', 'you', 'must', '\n', 'make', 'yourself', 'easy', ' ', 'the', 'evil', 'be', 'now', 'irremediable', '\n', 'and', 'it', 'have', 'be', 'entirely', 'your', 'own', 'do', ' ', 'why', 'would', '\n', 'you', 'be', 'persuade', 'by', 'my', 'uncle', 'Sir', 'Robert', 'against', 'your', '\n', 'own', 'judgment', 'to', 'place', 'Edward', 'under', 'private', 'tuition', '\n', 'at', 'the', 'most', 'critical', 'time', 'of', 'his', 'life', ' ', 'if', 'you', 'have', 'only', 'send', '\n', 'he', 'to', 'Westminster', 'as', 'well', 'as', 'myself', 'instead', 'of', 'send', '\n', 'he', 'to', 'Mr', 'Pratts', 'all', 'this', 'would', 'have', 'be', 'prevent', '\n', 'this', 'be', 'the', 'way', 'in', 'which', 'I', 'always', 'consider', 'the', 'matter', '\n', 'and', 'my', 'mother', 'be', 'perfectly', 'convinced', 'of', 'her', 'error', '\n\n', 'Elinor', 'would', 'not', 'oppose', 'his', 'opinion', 'because', '\n', 'whatever', 'might', 'be', 'her', 'general', 'estimation', 'of', 'the', 'advantage', '\n', 'of', 'a', 'public', 'school', 'she', 'could', 'not', 'think', 'of', 'Edwards', '\n', 'abode', 'in', 'Mr', 'Pratts', 'family', 'with', 'any', 'satisfaction', '\n\n', 'you', 'reside', 'in', 'Devonshire', 'I', 'thinkwa', 'his', '\n', 'next', 'observation', 'in', 'a', 'cottage', 'near', 'dawlish', '\n\n', 'Elinor', 'set', 'he', 'right', 'as', 'to', 'its', 'situation', '\n', 'and', 'it', 'seem', 'rather', 'surprising', 'to', 'he', 'that', 'anybody', '\n', 'could', 'live', 'in', 'Devonshire', 'without', 'live', 'near', 'Dawlish', '\n', 'he', 'bestow', 'his', 'hearty', 'approbation', 'however', 'on', 'their', '\n', 'specie', 'of', 'house', '\n\n', 'for', 'my', 'own', 'part', 'say', 'he', 'I', 'be', 'excessively', 'fond', '\n', 'of', 'a', 'cottage', 'there', 'be', 'always', 'so', 'much', 'comfort', 'so', 'much', '\n', 'elegance', 'about', 'they', ' ', 'and', 'I', 'protest', 'if', 'I', 'have', 'any', 'money', '\n', 'to', 'spare', 'I', 'should', 'buy', 'a', 'little', 'land', 'and', 'build', 'one', 'myself', '\n', 'within', 'a', 'short', 'distance', 'of', 'London', 'where', 'I', 'might', 'drive', '\n', 'myself', 'down', 'at', 'any', 'time', 'and', 'collect', 'a', 'few', 'friend', '\n', 'about', 'I', 'and', 'be', 'happy', ' ', 'I', 'advise', 'every', 'body', 'who', 'be', 'go', '\n', 'to', 'build', 'to', 'build', 'a', 'cottage', ' ', 'my', 'friend', 'Lord', 'Courtland', '\n', 'come', 'to', 'I', 'the', 'other', 'day', 'on', 'purpose', 'to', 'ask', 'my', 'advice', '\n', 'and', 'lay', 'before', 'I', 'three', 'different', 'plan', 'of', 'Bonomis', '\n', 'I', 'be', 'to', 'decide', 'on', 'the', 'good', 'of', 'they', ' ', 'my', 'dear', 'Courtland', '\n', 'say', 'I', 'immediately', 'throw', 'they', 'all', 'into', 'the', 'fire', 'do', 'not', '\n', 'adopt', 'either', 'of', 'they', 'but', 'by', 'all', 'mean', 'build', 'a', 'cottage', '\n', 'and', 'that', 'I', 'fancy', 'will', 'be', 'the', 'end', 'of', 'it', '\n\n', 'some', 'people', 'imagine', 'that', 'there', 'can', 'be', 'no', 'accommodation', '\n', 'no', 'space', 'in', 'a', 'cottage', 'but', 'this', 'be', 'all', 'a', 'mistake', '\n', 'I', 'be', 'last', 'month', 'at', 'my', 'friend', 'Elliotts', 'near', 'Dartford', '\n', 'Lady', 'Elliott', 'wish', 'to', 'give', 'a', 'dance', ' ', 'but', 'how', 'can', 'it', '\n', 'be', 'do', 'say', 'she', 'my', 'dear', 'ferrar', 'do', 'tell', 'I', 'how', 'it', '\n', 'be', 'to', 'be', 'manage', ' ', 'there', 'be', 'not', 'a', 'room', 'in', 'this', 'cottage', '\n', 'that', 'will', 'hold', 'ten', 'couple', 'and', 'where', 'can', 'the', 'supper', 'be', '\n', 'I', 'immediately', 'see', 'that', 'there', 'could', 'be', 'no', 'difficulty', 'in', 'it', '\n', 'so', 'I', 'say', 'my', 'dear', 'Lady', 'Elliott', 'do', 'not', 'be', 'uneasy', '\n', 'the', 'dining', 'parlour', 'will', 'admit', 'eighteen', 'couple', 'with', 'ease', '\n', 'cardtable', 'may', 'be', 'place', 'in', 'the', 'drawingroom', 'the', 'library', '\n', 'may', 'be', 'open', 'for', 'tea', 'and', 'other', 'refreshment', 'and', 'let', 'the', '\n', 'supper', 'be', 'set', 'out', 'in', 'the', 'saloon', ' ', 'Lady', 'Elliott', 'be', 'delight', '\n', 'with', 'the', 'thought', ' ', 'we', 'measure', 'the', 'diningroom', 'and', 'find', '\n', 'it', 'would', 'hold', 'exactly', 'eighteen', 'couple', 'and', 'the', 'affair', '\n', 'be', 'arrange', 'precisely', 'after', 'my', 'plan', ' ', 'so', 'that', 'in', 'fact', '\n', 'you', 'see', 'if', 'people', 'do', 'but', 'know', 'how', 'to', 'set', 'about', 'it', '\n', 'every', 'comfort', 'may', 'be', 'as', 'well', 'enjoy', 'in', 'a', 'cottage', '\n', 'as', 'in', 'the', 'most', 'spacious', 'dwelling', '\n\n', 'Elinor', 'agree', 'to', 'it', 'all', 'for', 'she', 'do', 'not', 'think', '\n', 'he', 'deserve', 'the', 'compliment', 'of', 'rational', 'opposition', '\n\n', 'as', 'John', 'Dashwood', 'have', 'no', 'more', 'pleasure', 'in', 'music', 'than', 'his', '\n', 'eld', 'sister', 'his', 'mind', 'be', 'equally', 'at', 'liberty', 'to', 'fix', 'on', '\n', 'any', 'thing', 'else', 'and', 'a', 'thought', 'strike', 'he', 'during', 'the', 'evening', '\n', 'which', 'he', 'communicate', 'to', 'his', 'wife', 'for', 'her', 'approbation', '\n', 'when', 'they', 'get', 'home', ' ', 'the', 'consideration', 'of', 'Mrs', 'Dennisons', '\n', 'mistake', '\n', 'in', 'suppose', 'his', 'sister', 'their', 'guest', 'have', 'suggest', 'the', '\n', 'propriety', 'of', 'their', 'be', 'really', 'invite', 'to', 'become', 'such', '\n', 'while', 'Mrs', 'Jennings', 'engagement', 'keep', 'she', 'from', 'home', '\n', 'the', 'expense', 'would', 'be', 'nothing', 'the', 'inconvenience', 'not', 'more', '\n', 'and', 'it', 'be', 'altogether', 'an', 'attention', 'which', 'the', 'delicacy', '\n', 'of', 'his', 'conscience', 'point', 'out', 'to', 'be', 'requisite', 'to', 'its', '\n', 'complete', 'enfranchisement', 'from', 'his', 'promise', 'to', 'his', 'father', '\n', 'Fanny', 'be', 'startle', 'at', 'the', 'proposal', '\n\n', 'I', 'do', 'not', 'see', 'how', 'it', 'can', 'be', 'do', 'say', 'she', '\n', 'without', 'affront', 'Lady', 'Middleton', 'for', 'they', 'spend', 'every', 'day', '\n', 'with', 'she', 'otherwise', 'I', 'should', 'be', 'exceedingly', 'glad', 'to', 'do', 'it', '\n', 'you', 'know', 'I', 'be', 'always', 'ready', 'to', 'pay', 'they', 'any', 'attention', '\n', 'in', 'my', 'power', 'as', 'my', 'take', 'they', 'out', 'this', 'evening', 'shews', '\n', 'but', 'they', 'be', 'Lady', 'Middletons', 'visitor', ' ', 'how', 'can', 'I', 'ask', 'they', '\n', 'away', 'from', 'her', '\n\n', 'her', 'husband', 'but', 'with', 'great', 'humility', 'do', 'not', 'see', '\n', 'the', 'force', 'of', 'her', 'objection', ' ', 'they', 'have', 'already', 'spend', 'a', 'week', '\n', 'in', 'this', 'manner', 'in', 'Conduit', 'Street', 'and', 'Lady', 'Middleton', '\n', 'could', 'not', 'be', 'displeased', 'at', 'their', 'give', 'the', 'same', 'number', '\n', 'of', 'day', 'to', 'such', 'near', 'relation', '\n\n', 'Fanny', 'pause', 'a', 'moment', 'and', 'then', 'with', 'fresh', 'vigor', 'say', '\n\n', 'my', 'love', 'I', 'would', 'ask', 'they', 'with', 'all', 'my', 'heart', 'if', 'it', '\n', 'be', 'in', 'my', 'power', ' ', 'but', 'I', 'have', 'just', 'settle', 'within', 'myself', '\n', 'to', 'ask', 'the', 'Miss', 'Steeles', 'to', 'spend', 'a', 'few', 'day', 'with', 'we', '\n', 'they', 'be', 'very', 'well', 'behave', 'good', 'kind', 'of', 'girl', 'and', 'I', 'think', '\n', 'the', 'attention', 'be', 'due', 'to', 'they', 'as', 'their', 'uncle', 'do', 'so', 'very', '\n', 'well', 'by', 'Edward', ' ', 'we', 'can', 'ask', 'your', 'sister', 'some', 'other', 'year', '\n', 'you', 'know', 'but', 'the', 'Miss', 'Steeles', 'may', 'not', 'be', 'in', 'town', 'any', 'more', '\n', 'I', 'be', 'sure', 'you', 'will', 'like', 'they', 'indeed', 'you', 'do', 'like', 'they', '\n', 'you', 'know', 'very', 'much', 'already', 'and', 'so', 'do', 'my', 'mother', 'and', 'they', '\n', 'be', 'such', 'favourite', 'with', 'Harry', '\n\n', 'Mr', 'Dashwood', 'be', 'convince', ' ', 'he', 'see', 'the', 'necessity', '\n', 'of', 'invite', 'the', 'Miss', 'Steeles', 'immediately', 'and', 'his', 'conscience', '\n', 'be', 'pacify', 'by', 'the', 'resolution', 'of', 'invite', 'his', 'sister', '\n', 'another', 'year', 'at', 'the', 'same', 'time', 'however', 'slyly', 'suspecting', '\n', 'that', 'another', 'year', 'would', 'make', 'the', 'invitation', 'needless', '\n', 'by', 'bring', 'Elinor', 'to', 'town', 'as', 'Colonel', 'Brandons', 'wife', '\n', 'and', 'Marianne', 'as', 'their', 'visitor', '\n\n', 'Fanny', 'rejoice', 'in', 'her', 'escape', 'and', 'proud', 'of', 'the', 'ready', '\n', 'wit', 'that', 'have', 'procure', 'it', 'write', 'the', 'next', 'morning', 'to', 'Lucy', '\n', 'to', 'request', 'her', 'company', 'and', 'her', 'sister', 'for', 'some', 'day', '\n', 'in', 'Harley', 'Street', 'as', 'soon', 'as', 'Lady', 'Middleton', 'could', 'spare', 'they', '\n', 'this', 'be', 'enough', 'to', 'make', 'Lucy', 'really', 'and', 'reasonably', 'happy', '\n', 'Mrs', 'Dashwood', 'seem', 'actually', 'work', 'for', 'her', 'herself', '\n', 'cherish', 'all', 'her', 'hope', 'and', 'promote', 'all', 'her', 'view', '\n', 'such', 'an', 'opportunity', 'of', 'be', 'with', 'Edward', 'and', 'his', 'family', 'be', '\n', 'above', 'all', 'thing', 'the', 'most', 'material', 'to', 'her', 'interest', '\n', 'and', 'such', 'an', 'invitation', 'the', 'most', 'gratifying', 'to', 'her', '\n', 'feeling', ' ', 'it', 'be', 'an', 'advantage', 'that', 'could', 'not', 'be', 'too', '\n', 'gratefully', 'acknowledge', 'nor', 'too', 'speedily', 'make', 'use', 'of', '\n', 'and', 'the', 'visit', 'to', 'Lady', 'Middleton', 'which', 'have', 'not', 'before', 'have', '\n', 'any', 'precise', 'limit', 'be', 'instantly', 'discover', 'to', 'have', 'be', '\n', 'always', 'mean', 'to', 'end', 'in', 'two', 'day', 'time', '\n\n', 'when', 'the', 'note', 'be', 'show', 'to', 'Elinor', 'as', 'it', 'be', 'within', 'ten', '\n', 'minute', 'after', 'its', 'arrival', 'it', 'give', 'she', 'for', 'the', 'first', 'time', '\n', 'some', 'share', 'in', 'the', 'expectation', 'of', 'Lucy', 'for', 'such', 'a', 'mark', '\n', 'of', 'uncommon', 'kindness', 'vouchsafe', 'on', 'so', 'short', 'an', 'acquaintance', '\n', 'seem', 'to', 'declare', 'that', 'the', 'goodwill', 'towards', 'her', 'arise', '\n', 'from', 'something', 'more', 'than', 'merely', 'malice', 'against', 'herself', '\n', 'and', 'might', 'be', 'bring', 'by', 'time', 'and', 'address', 'to', 'do', '\n', 'every', 'thing', 'that', 'Lucy', 'wish', ' ', 'her', 'flattery', 'have', 'already', '\n', 'subdue', 'the', 'pride', 'of', 'Lady', 'Middleton', 'and', 'make', 'an', 'entry', '\n', 'into', 'the', 'close', 'heart', 'of', 'Mrs', 'John', 'Dashwood', 'and', 'these', '\n', 'be', 'effect', 'that', 'lay', 'open', 'the', 'probability', 'of', 'great', '\n\n', 'the', 'Miss', 'Steeles', 'remove', 'to', 'Harley', 'Street', 'and', 'all', '\n', 'that', 'reach', 'Elinor', 'of', 'their', 'influence', 'there', 'strengthen', '\n', 'her', 'expectation', 'of', 'the', 'event', ' ', 'Sir', 'John', 'who', 'call', 'on', '\n', 'they', 'more', 'than', 'once', 'bring', 'home', 'such', 'account', 'of', 'the', '\n', 'favour', 'they', 'be', 'in', 'as', 'must', 'be', 'universally', 'strike', '\n', 'Mrs', 'Dashwood', 'have', 'never', 'be', 'so', 'much', 'pleased', 'with', 'any', '\n', 'young', 'woman', 'in', 'her', 'life', 'as', 'she', 'be', 'with', 'they', 'have', 'give', '\n', 'each', 'of', 'they', 'a', 'needle', 'book', 'make', 'by', 'some', 'emigrant', '\n', 'call', 'Lucy', 'by', 'her', 'christian', 'name', 'and', 'do', 'not', 'know', '\n', 'whether', 'she', 'should', 'ever', 'be', 'able', 'to', 'part', 'with', 'they', '\n\n\n\n\n\n', 'at', 'this', 'point', 'in', 'the', 'first', 'and', 'second', 'edtion', 'Volume', 'II', 'end', '\n\n\n\n\n', 'chapter', '37', '\n\n\n', 'Mrs', 'Palmer', 'be', 'so', 'well', 'at', 'the', 'end', 'of', 'a', 'fortnight', '\n', 'that', 'her', 'mother', 'feel', 'it', 'no', 'long', 'necessary', 'to', 'give', 'up', '\n', 'the', 'whole', 'of', 'her', 'time', 'to', 'she', 'and', 'content', 'herself', 'with', '\n', 'visit', 'she', 'once', 'or', 'twice', 'a', 'day', 'return', 'from', 'that', 'period', '\n', 'to', 'her', 'own', 'home', 'and', 'her', 'own', 'habit', 'in', 'which', 'she', 'find', '\n', 'the', 'Miss', 'Dashwoods', 'very', 'ready', 'to', 'resume', 'their', 'former', 'share', '\n\n', 'about', 'the', 'third', 'or', 'fourth', 'morning', 'after', 'their', '\n', 'be', 'thus', 'resettle', 'in', 'Berkeley', 'Street', 'Mrs', 'Jennings', '\n', 'on', 'return', 'from', 'her', 'ordinary', 'visit', 'to', 'Mrs', 'Palmer', '\n', 'enter', 'the', 'drawingroom', 'where', 'Elinor', 'be', 'sit', '\n', 'by', 'herself', 'with', 'an', 'air', 'of', 'such', 'hurrying', 'importance', '\n', 'as', 'prepare', 'she', 'to', 'hear', 'something', 'wonderful', 'and', 'give', 'she', '\n', 'time', 'only', 'to', 'form', 'that', 'idea', 'begin', 'directly', 'to', 'justify', 'it', '\n', 'by', 'say', '\n\n', 'Lord', 'my', 'dear', 'Miss', 'Dashwood', 'have', 'you', 'hear', 'the', 'news', '\n\n', 'no', 'maam', ' ', 'what', 'be', 'it', '\n\n', 'something', 'so', 'strange', ' ', 'but', 'you', 'shall', 'hear', 'it', 'all', '\n', 'when', 'I', 'get', 'to', 'Mr', 'Palmers', 'I', 'find', 'Charlotte', 'quite', '\n', 'in', 'a', 'fuss', 'about', 'the', 'child', ' ', 'she', 'be', 'sure', 'it', 'be', 'very', '\n', 'illit', 'cry', 'and', 'fret', 'and', 'be', 'all', 'over', 'pimple', '\n', 'so', 'I', 'look', 'at', 'it', 'directly', 'and', 'Lord', 'my', 'dear', '\n', 'say', 'I', 'it', 'be', 'nothing', 'in', 'the', 'world', 'but', 'the', 'red', 'gum', '\n', 'and', 'nurse', 'say', 'just', 'the', 'same', ' ', 'but', 'Charlotte', 'she', 'would', '\n', 'not', 'be', 'satisfied', 'so', 'Mr', 'Donavan', 'be', 'send', 'for', 'and', 'luckily', '\n', 'he', 'happen', 'to', 'just', 'come', 'in', 'from', 'Harley', 'Street', 'so', 'he', '\n', 'step', 'over', 'directly', 'and', 'as', 'soon', 'as', 'ever', 'he', 'see', 'the', 'child', '\n', 'be', 'say', 'just', 'as', 'we', 'do', 'that', 'it', 'be', 'nothing', 'in', 'the', 'world', '\n', 'but', 'the', 'red', 'gum', 'and', 'then', 'Charlotte', 'be', 'easy', ' ', 'and', 'so', '\n', 'just', 'as', 'he', 'be', 'go', 'away', 'again', 'it', 'come', 'into', 'my', 'head', '\n', 'I', 'be', 'sure', 'I', 'do', 'not', 'know', 'how', 'I', 'happen', 'to', 'think', 'of', 'it', '\n', 'but', 'it', 'come', 'into', 'my', 'head', 'to', 'ask', 'he', 'if', 'there', 'be', 'any', 'news', '\n', 'so', 'upon', 'that', 'he', 'smirk', 'and', 'simper', 'and', 'look', 'grave', '\n', 'and', 'seem', 'to', 'know', 'something', 'or', 'other', 'and', 'at', 'last', 'he', '\n', 'say', 'in', 'a', 'whisper', 'for', 'fear', 'any', 'unpleasant', 'report', '\n', 'should', 'reach', 'the', 'young', 'lady', 'under', 'your', 'care', 'as', 'to', 'their', '\n', 'sister', 'indisposition', 'I', 'think', 'it', 'advisable', 'to', 'say', '\n', 'that', 'I', 'believe', 'there', 'be', 'no', 'great', 'reason', 'for', 'alarm', 'I', 'hope', '\n', 'Mrs', 'Dashwood', 'will', 'do', 'very', 'well', '\n\n', 'what', 'be', 'Fanny', 'ill', '\n\n', 'that', 'be', 'exactly', 'what', 'I', 'say', 'my', 'dear', ' ', 'Lord', 'say', 'I', '\n', 'be', 'Mrs', 'Dashwood', 'ill', 'so', 'then', 'it', 'all', 'come', 'out', 'and', 'the', '\n', 'long', 'and', 'the', 'short', 'of', 'the', 'matter', 'by', 'all', 'I', 'can', 'learn', '\n', 'seem', 'to', 'be', 'this', ' ', 'Mr', 'Edward', 'Ferrars', 'the', 'very', 'young', '\n', 'man', 'I', 'use', 'to', 'joke', 'with', 'you', 'about', 'but', 'however', 'as', 'it', '\n', 'turn', 'out', 'I', 'be', 'monstrous', 'glad', 'there', 'be', 'never', 'any', 'thing', '\n', 'in', 'it', 'Mr', 'Edward', 'Ferrars', 'it', 'seem', 'have', 'be', 'engage', '\n', 'above', 'this', 'twelvemonth', 'to', 'my', 'cousin', 'LucyTheres', 'for', 'you', '\n', 'my', 'dearand', 'not', 'a', 'creature', 'know', 'a', 'syllable', 'of', 'the', 'matter', '\n', 'except', 'NancyCould', 'you', 'have', 'believe', 'such', 'a', 'thing', 'possible', '\n', 'there', 'be', 'no', 'great', 'wonder', 'in', 'their', 'like', 'one', 'another', '\n', 'but', 'that', 'matter', 'should', 'be', 'bring', 'so', 'forward', 'between', 'they', '\n', 'and', 'nobody', 'suspect', 'itTHAT', 'be', 'strangei', 'never', 'happen', '\n', 'to', 'see', 'they', 'together', 'or', 'I', 'be', 'sure', 'I', 'should', 'have', 'find', 'it', '\n', 'out', 'directly', ' ', 'well', 'and', 'so', 'this', 'be', 'keep', 'a', 'great', 'secret', '\n', 'for', 'fear', 'of', 'Mrs', 'Ferrars', 'and', 'neither', 'she', 'nor', 'your', '\n', 'brother', 'or', 'sister', 'suspect', 'a', 'word', 'of', 'the', 'matter', '\n', 'till', 'this', 'very', 'morning', 'poor', 'Nancy', 'who', 'you', 'know', 'be', 'a', '\n', 'wellmeane', 'creature', 'but', 'no', 'conjurer', 'popt', 'it', 'all', 'out', '\n', 'Lord', 'think', 'she', 'to', 'herself', 'they', 'be', 'all', 'so', 'fond', '\n', 'of', 'Lucy', 'to', 'be', 'sure', 'they', 'will', 'make', 'no', 'difficulty', 'about', 'it', '\n', 'and', 'so', 'away', 'she', 'go', 'to', 'your', 'sister', 'who', 'be', 'sit', 'all', '\n', 'alone', 'at', 'her', 'carpetwork', 'little', 'suspecting', 'what', 'be', 'to', '\n', 'comefor', 'she', 'have', 'just', 'be', 'say', 'to', 'your', 'brother', 'only', 'five', '\n', 'minute', 'before', 'that', 'she', 'think', 'to', 'make', 'a', 'match', 'between', '\n', 'Edward', 'and', 'some', 'Lords', 'daughter', 'or', 'other', 'I', 'forget', 'who', '\n', 'so', 'you', 'may', 'think', 'what', 'a', 'blow', 'it', 'be', 'to', 'all', 'her', 'vanity', '\n', 'and', 'pride', ' ', 'she', 'fall', 'into', 'violent', 'hysteric', 'immediately', '\n', 'with', 'such', 'scream', 'as', 'reach', 'your', 'brother', 'ear', '\n', 'as', 'he', 'be', 'sit', 'in', 'his', 'own', 'dressingroom', 'down', 'stair', '\n', 'think', 'about', 'write', 'a', 'letter', 'to', 'his', 'steward', 'in', 'the', 'country', '\n', 'so', 'up', 'he', 'fly', 'directly', 'and', 'a', 'terrible', 'scene', 'take', 'place', '\n', 'for', 'Lucy', 'be', 'come', 'to', 'they', 'by', 'that', 'time', 'little', 'dream', '\n', 'what', 'be', 'go', 'on', ' ', 'poor', 'soul', ' ', 'I', 'pity', 'she', ' ', 'and', 'I', 'must', 'say', '\n', 'I', 'think', 'she', 'be', 'use', 'very', 'hardly', 'for', 'your', 'sister', 'scold', '\n', 'like', 'any', 'fury', 'and', 'soon', 'drive', 'she', 'into', 'a', 'fainting', 'fit', '\n', 'Nancy', 'she', 'fall', 'upon', 'her', 'knee', 'and', 'cry', 'bitterly', '\n', 'and', 'your', 'brother', 'he', 'walk', 'about', 'the', 'room', 'and', 'say', '\n', 'he', 'do', 'not', 'know', 'what', 'to', 'do', ' ', 'Mrs', 'Dashwood', 'declare', '\n', 'they', 'should', 'not', 'stay', 'a', 'minute', 'long', 'in', 'the', 'house', '\n', 'and', 'your', 'brother', 'be', 'force', 'to', 'go', 'down', 'upon', 'his', 'knee', 'too', '\n', 'to', 'persuade', 'she', 'to', 'let', 'they', 'stay', 'till', 'they', 'have', 'pack', '\n', 'up', 'their', 'clothe', ' ', 'then', 'she', 'fall', 'into', 'hysteric', 'again', '\n', 'and', 'he', 'be', 'so', 'frightened', 'that', 'he', 'would', 'send', 'for', 'Mr', 'Donavan', '\n', 'and', 'Mr', 'Donavan', 'find', 'the', 'house', 'in', 'all', 'this', 'uproar', '\n', 'the', 'carriage', 'be', 'at', 'the', 'door', 'ready', 'to', 'take', 'my', 'poor', '\n', 'cousin', 'away', 'and', 'they', 'be', 'just', 'step', 'in', 'as', 'he', '\n', 'come', 'off', 'poor', 'Lucy', 'in', 'such', 'a', 'condition', 'he', 'say', '\n', 'she', 'could', 'hardly', 'walk', 'and', 'Nancy', 'she', 'be', 'almost', 'as', 'bad', '\n', 'I', 'declare', 'I', 'have', 'no', 'patience', 'with', 'your', 'sister', 'and', 'I', 'hope', '\n', 'with', 'all', 'my', 'heart', 'it', 'will', 'be', 'a', 'match', 'in', 'spite', 'of', 'her', '\n', 'Lord', 'what', 'a', 'take', 'poor', 'Mr', 'Edward', 'will', 'be', 'in', 'when', 'he', '\n', 'hear', 'of', 'it', ' ', 'to', 'have', 'his', 'love', 'use', 'so', 'scornfully', 'for', '\n', 'they', 'say', 'he', 'be', 'monstrous', 'fond', 'of', 'she', 'as', 'well', 'he', 'may', '\n', 'I', 'should', 'not', 'wonder', 'if', 'he', 'be', 'to', 'be', 'in', 'the', 'great', '\n', 'passionand', 'Mr', 'Donavan', 'think', 'just', 'the', 'same', ' ', 'he', 'and', 'I', '\n', 'have', 'a', 'great', 'deal', 'of', 'talk', 'about', 'it', 'and', 'the', 'good', 'of', 'all', 'be', '\n', 'that', 'he', 'be', 'go', 'back', 'again', 'to', 'Harley', 'Street', 'that', 'he', 'may', '\n', 'be', 'within', 'call', 'when', 'Mrs', 'Ferrars', 'be', 'tell', 'of', 'it', 'for', 'she', '\n', 'be', 'send', 'for', 'as', 'soon', 'as', 'ever', 'my', 'cousin', 'leave', 'the', 'house', '\n', 'for', 'your', 'sister', 'be', 'sure', 'she', 'would', 'be', 'in', 'hysteric', 'too', '\n', 'and', 'so', 'she', 'may', 'for', 'what', 'I', 'care', ' ', 'I', 'have', 'no', 'pity', 'for', '\n', 'either', 'of', 'they', ' ', 'I', 'have', 'no', 'notion', 'of', 'people', 'make', '\n', 'such', 'a', 'todo', 'about', 'money', 'and', 'greatness', ' ', 'there', 'be', 'no', '\n', 'reason', 'on', 'earth', 'why', 'Mr', 'Edward', 'and', 'Lucy', 'should', 'not', 'marry', '\n', 'for', 'I', 'be', 'sure', 'Mrs', 'Ferrars', 'may', 'afford', 'to', 'do', 'very', 'well', '\n', 'by', 'her', 'son', 'and', 'though', 'Lucy', 'have', 'next', 'to', 'nothing', 'herself', '\n', 'she', 'know', 'well', 'than', 'any', 'body', 'how', 'to', 'make', 'the', 'most', '\n', 'of', 'every', 'thing', 'I', 'dare', 'say', 'if', 'Mrs', 'Ferrars', 'would', 'only', '\n', 'allow', 'he', 'five', 'hundred', 'ayear', 'she', 'would', 'make', 'as', 'good', '\n', 'an', 'appearance', 'with', 'it', 'as', 'any', 'body', 'else', 'would', 'with', 'eight', '\n', 'Lord', 'how', 'snug', 'they', 'might', 'live', 'in', 'such', 'another', 'cottage', '\n', 'as', 'yoursor', 'a', 'little', 'biggerwith', 'two', 'maid', 'and', 'two', 'man', '\n', 'and', 'I', 'believe', 'I', 'could', 'help', 'they', 'to', 'a', 'housemaid', 'for', 'my', '\n', 'Betty', 'have', 'a', 'sister', 'out', 'of', 'place', 'that', 'would', 'fit', 'they', '\n', 'exactly', '\n\n', 'here', 'Mrs', 'Jennings', 'cease', 'and', 'as', 'Elinor', 'have', 'have', '\n', 'time', 'enough', 'to', 'collect', 'her', 'thought', 'she', 'be', 'able', '\n', 'to', 'give', 'such', 'an', 'answer', 'and', 'make', 'such', 'observation', '\n', 'as', 'the', 'subject', 'might', 'naturally', 'be', 'suppose', 'to', 'produce', '\n', 'happy', 'to', 'find', 'that', 'she', 'be', 'not', 'suspect', 'of', 'any', 'extraordinary', '\n', 'interest', 'in', 'it', 'that', 'Mrs', 'Jennings', 'as', 'she', 'have', 'of', 'late', '\n', 'often', 'hope', 'might', 'be', 'the', 'case', 'have', 'cease', 'to', 'imagine', 'she', '\n', 'at', 'all', 'attach', 'to', 'Edward', 'and', 'happy', 'above', 'all', 'the', 'rest', '\n', 'in', 'the', 'absence', 'of', 'Marianne', 'she', 'feel', 'very', 'well', 'able', '\n', 'to', 'speak', 'of', 'the', 'affair', 'without', 'embarrassment', 'and', 'to', '\n', 'give', 'her', 'judgment', 'as', 'she', 'believe', 'with', 'impartiality', '\n', 'on', 'the', 'conduct', 'of', 'every', 'one', 'concern', 'in', 'it', '\n\n', 'she', 'could', 'hardly', 'determine', 'what', 'her', 'own', 'expectation', '\n', 'of', 'its', 'event', 'really', 'be', 'though', 'she', 'earnestly', 'try', '\n', 'to', 'drive', 'away', 'the', 'notion', 'of', 'its', 'be', 'possible', 'to', 'end', '\n', 'otherwise', 'at', 'last', 'than', 'in', 'the', 'marriage', 'of', 'Edward', 'and', 'Lucy', '\n', 'what', 'Mrs', 'Ferrars', 'would', 'say', 'and', 'do', 'though', 'there', 'could', '\n', 'not', 'be', 'a', 'doubt', 'of', 'its', 'nature', 'she', 'be', 'anxious', 'to', 'hear', '\n', 'and', 'still', 'more', 'anxious', 'to', 'know', 'how', 'Edward', 'would', '\n', 'conduct', 'himself', ' ', 'for', 'HIM', 'she', 'feel', 'much', 'compassion', '\n', 'for', 'Lucy', 'very', 'littleand', 'it', 'cost', 'she', 'some', 'pain', 'to', 'procure', '\n', 'that', 'littlefor', 'the', 'rest', 'of', 'the', 'party', 'none', 'at', 'all', '\n\n', 'as', 'Mrs', 'Jennings', 'could', 'talk', 'on', 'no', 'other', 'subject', '\n', 'Elinor', 'soon', 'see', 'the', 'necessity', 'of', 'prepare', 'Marianne', 'for', '\n', 'its', 'discussion', ' ', 'no', 'time', 'be', 'to', 'be', 'lose', 'in', 'undeceive', 'she', '\n', 'in', 'make', 'she', 'acquaint', 'with', 'the', 'real', 'truth', 'and', 'in', '\n', 'endeavour', 'to', 'bring', 'she', 'to', 'hear', 'it', 'talk', 'of', 'by', 'other', '\n', 'without', 'betray', 'that', 'she', 'feel', 'any', 'uneasiness', 'for', 'her', 'sister', '\n', 'or', 'any', 'resentment', 'against', 'Edward', '\n\n', 'Elinors', 'office', 'be', 'a', 'painful', 'oneshe', 'be', 'go', '\n', 'to', 'remove', 'what', 'she', 'really', 'believe', 'to', 'be', 'her', 'sister', '\n', 'chief', 'consolationto', 'give', 'such', 'particular', 'of', 'Edward', 'as', 'she', '\n', 'fear', 'would', 'ruin', 'he', 'for', 'ever', 'in', 'her', 'good', 'opinionand', '\n', 'to', 'make', 'Marianne', 'by', 'a', 'resemblance', 'in', 'their', 'situation', '\n', 'which', 'to', 'her', 'fancy', 'would', 'seem', 'strong', 'feel', 'all', 'her', 'own', '\n', 'disappointment', 'over', 'again', ' ', 'but', 'unwelcome', 'as', 'such', 'a', 'task', '\n', 'must', 'be', 'it', 'be', 'necessary', 'to', 'be', 'do', 'and', 'Elinor', 'therefore', '\n', 'hasten', 'to', 'perform', 'it', '\n\n', 'she', 'be', 'very', 'far', 'from', 'wish', 'to', 'dwell', 'on', 'her', 'own', '\n', 'feeling', 'or', 'to', 'represent', 'herself', 'as', 'suffer', 'much', '\n', 'any', 'otherwise', 'than', 'as', 'the', 'selfcommand', 'she', 'have', 'practise', '\n', 'since', 'her', 'first', 'knowledge', 'of', 'Edwards', 'engagement', 'might', '\n', 'suggest', 'a', 'hint', 'of', 'what', 'be', 'practicable', 'to', 'Marianne', '\n', 'her', 'narration', 'be', 'clear', 'and', 'simple', 'and', 'though', 'it', 'could', '\n', 'not', 'be', 'give', 'without', 'emotion', 'it', 'be', 'not', 'accompany', '\n', 'by', 'violent', 'agitation', 'nor', 'impetuous', 'griefthat', 'belong', '\n', 'rather', 'to', 'the', 'hearer', 'for', 'Marianne', 'listen', 'with', 'horror', '\n', 'and', 'cry', 'excessively', ' ', 'Elinor', 'be', 'to', 'be', 'the', 'comforter', '\n', 'of', 'other', 'in', 'her', 'own', 'distress', 'no', 'less', 'than', 'in', 'theirs', '\n', 'and', 'all', 'the', 'comfort', 'that', 'could', 'be', 'give', 'by', 'assurance', '\n', 'of', 'her', 'own', 'composure', 'of', 'mind', 'and', 'a', 'very', 'earnest', '\n', 'vindication', 'of', 'Edward', 'from', 'every', 'charge', 'but', 'of', 'imprudence', '\n', 'be', 'readily', 'offer', '\n\n', 'but', 'Marianne', 'for', 'some', 'time', 'would', 'give', 'credit', 'to', 'neither', '\n', 'Edward', 'seem', 'a', 'second', 'Willoughby', 'and', 'acknowledge', '\n', 'as', 'Elinor', 'do', 'that', 'she', 'have', 'love', 'he', 'most', 'sincerely', '\n', 'could', 'she', 'feel', 'less', 'than', 'herself', ' ', 'as', 'for', 'Lucy', 'Steele', '\n', 'she', 'consider', 'she', 'so', 'totally', 'unamiable', 'so', 'absolutely', '\n', 'incapable', 'of', 'attach', 'a', 'sensible', 'man', 'that', 'she', 'could', '\n', 'not', 'be', 'persuade', 'at', 'first', 'to', 'believe', 'and', 'afterwards', '\n', 'to', 'pardon', 'any', 'former', 'affection', 'of', 'Edward', 'for', 'her', '\n', 'she', 'would', 'not', 'even', 'admit', 'it', 'to', 'have', 'be', 'natural', '\n', 'and', 'Elinor', 'leave', 'she', 'to', 'be', 'convince', 'that', 'it', 'be', 'so', '\n', 'by', 'that', 'which', 'only', 'could', 'convince', 'she', 'a', 'well', 'knowledge', '\n', 'of', 'mankind', '\n\n', 'her', 'first', 'communication', 'have', 'reach', 'no', 'far', 'than', '\n', 'to', 'state', 'the', 'fact', 'of', 'the', 'engagement', 'and', 'the', 'length', 'of', 'time', '\n', 'it', 'have', 'existedmarianne', 'feeling', 'have', 'then', 'break', 'in', '\n', 'and', 'put', 'an', 'end', 'to', 'all', 'regularity', 'of', 'detail', 'and', 'for', 'some', '\n', 'time', 'all', 'that', 'could', 'be', 'do', 'be', 'to', 'soothe', 'her', 'distress', '\n', 'lessen', 'her', 'alarm', 'and', 'combat', 'her', 'resentment', ' ', 'the', 'first', '\n', 'question', 'on', 'her', 'side', 'which', 'lead', 'to', 'farther', 'particular', '\n', 'be', '\n\n', 'how', 'long', 'have', 'this', 'be', 'know', 'to', 'you', 'Elinor', 'have', '\n', 'he', 'write', 'to', 'you', '\n\n', 'I', 'have', 'know', 'it', 'these', 'four', 'month', ' ', 'when', 'Lucy', '\n', 'first', 'come', 'to', 'Barton', 'Park', 'last', 'November', 'she', 'tell', 'I', '\n', 'in', 'confidence', 'of', 'her', 'engagement', '\n\n', 'at', 'these', 'word', 'Mariannes', 'eye', 'express', 'the', 'astonishment', '\n', 'which', 'her', 'lip', 'could', 'not', 'utter', ' ', 'after', 'a', 'pause', 'of', 'wonder', '\n', 'she', 'exclaim', '\n\n', 'four', 'monthshave', 'you', 'know', 'of', 'this', 'four', 'month', '\n\n', 'Elinor', 'confirm', 'it', '\n\n', 'Whatwhile', 'attend', 'I', 'in', 'all', 'my', 'misery', 'have', 'this', '\n', 'be', 'on', 'your', 'heartand', 'I', 'have', 'reproach', 'you', 'for', 'be', '\n', 'happy', '\n\n', 'it', 'be', 'not', 'fit', 'that', 'you', 'should', 'then', 'know', 'how', 'much', '\n', 'I', 'be', 'the', 'reverse', '\n\n', 'four', 'monthscrie', 'Marianne', 'againSo', 'calm', '\n', 'so', 'cheerfulhow', 'have', 'you', 'be', 'support', '\n\n', 'by', 'feel', 'that', 'I', 'be', 'do', 'my', 'dutyMy', 'promise', 'to', '\n', 'Lucy', 'oblige', 'I', 'to', 'be', 'secret', ' ', 'I', 'owe', 'it', 'to', 'she', 'therefore', '\n', 'to', 'avoid', 'give', 'any', 'hint', 'of', 'the', 'truth', 'and', 'I', 'owe', 'it', 'to', 'my', '\n', 'family', 'and', 'friend', 'not', 'to', 'create', 'in', 'they', 'a', 'solicitude', 'about', 'I', '\n', 'which', 'it', 'could', 'not', 'be', 'in', 'my', 'power', 'to', 'satisfy', '\n\n', 'Marianne', 'seem', 'much', 'strike', '\n\n', 'I', 'have', 'very', 'often', 'wish', 'to', 'undeceive', 'yourself', 'and', 'my', '\n', 'mother', 'add', 'Elinor', 'and', 'once', 'or', 'twice', 'I', 'have', 'attempt', 'it', '\n', 'but', 'without', 'betray', 'my', 'trust', 'I', 'never', 'could', 'have', 'convince', '\n', 'you', '\n\n', 'four', 'monthsand', 'yet', 'you', 'love', 'he', '\n\n', 'yes', 'but', 'I', 'do', 'not', 'love', 'only', 'himand', 'while', 'the', 'comfort', '\n', 'of', 'other', 'be', 'dear', 'to', 'I', 'I', 'be', 'glad', 'to', 'spare', 'they', 'from', 'know', '\n', 'how', 'much', 'I', 'feel', ' ', 'now', 'I', 'can', 'think', 'and', 'speak', 'of', 'it', 'with', '\n', 'little', 'emotion', ' ', 'I', 'would', 'not', 'have', 'you', 'suffer', 'on', 'my', 'account', '\n', 'for', 'I', 'assure', 'you', 'I', 'no', 'long', 'suffer', 'materially', 'myself', '\n', 'I', 'have', 'many', 'thing', 'to', 'support', 'I', ' ', 'I', 'be', 'not', 'conscious', 'of', 'having', '\n', 'provoke', 'the', 'disappointment', 'by', 'any', 'imprudence', 'of', 'my', 'own', '\n', 'I', 'have', 'bear', 'it', 'as', 'much', 'as', 'possible', 'without', 'spread', '\n', 'it', 'far', ' ', 'I', 'acquit', 'Edward', 'of', 'essential', 'misconduct', '\n', 'I', 'wish', 'he', 'very', 'happy', 'and', 'I', 'be', 'so', 'sure', 'of', 'his', 'always', '\n', 'do', 'his', 'duty', 'that', 'though', 'now', 'he', 'may', 'harbour', 'some', 'regret', '\n', 'in', 'the', 'end', 'he', 'must', 'become', 'so', ' ', 'Lucy', 'do', 'not', 'want', 'sense', '\n', 'and', 'that', 'be', 'the', 'foundation', 'on', 'which', 'every', 'thing', 'good', 'may', '\n', 'be', 'builtand', 'after', 'all', 'Marianne', 'after', 'all', 'that', 'be', '\n', 'bewitch', 'in', 'the', 'idea', 'of', 'a', 'single', 'and', 'constant', 'attachment', '\n', 'and', 'all', 'that', 'can', 'be', 'say', 'of', 'one', 'happiness', 'depend', '\n', 'entirely', 'on', 'any', 'particular', 'person', 'it', 'be', 'not', 'meantit', '\n', 'be', 'not', 'fitit', 'be', 'not', 'possible', 'that', 'it', 'should', 'be', 'so', '\n', 'Edward', 'will', 'marry', 'Lucy', 'he', 'will', 'marry', 'a', 'woman', 'superior', '\n', 'in', 'person', 'and', 'understanding', 'to', 'half', 'her', 'sex', 'and', 'time', '\n', 'and', 'habit', 'will', 'teach', 'he', 'to', 'forget', 'that', 'he', 'ever', 'think', '\n', 'another', 'superior', 'to', 'she', '\n\n', 'if', 'such', 'be', 'your', 'way', 'of', 'thinking', 'say', 'Marianne', '\n', 'if', 'the', 'loss', 'of', 'what', 'be', 'most', 'value', 'be', 'so', 'easily', '\n', 'to', 'be', 'make', 'up', 'by', 'something', 'else', 'your', 'resolution', '\n', 'your', 'selfcommand', 'be', 'perhaps', 'a', 'little', 'less', 'to', 'be', '\n', 'wonder', 'atthey', 'be', 'bring', 'more', 'within', 'my', 'comprehension', '\n\n', 'I', 'understand', 'youYou', 'do', 'not', 'suppose', 'that', 'I', 'have', 'ever', '\n', 'feel', 'muchFor', 'four', 'month', 'Marianne', 'I', 'have', 'have', 'all', 'this', '\n', 'hang', 'on', 'my', 'mind', 'without', 'be', 'at', 'liberty', 'to', 'speak', '\n', 'of', 'it', 'to', 'a', 'single', 'creature', 'know', 'that', 'it', 'would', 'make', '\n', 'you', 'and', 'my', 'mother', 'most', 'unhappy', 'whenever', 'it', 'be', 'explain', '\n', 'to', 'you', 'yet', 'unable', 'to', 'prepare', 'you', 'for', 'it', 'in', 'the', 'least', '\n', 'it', 'be', 'tell', 'meit', 'be', 'in', 'a', 'manner', 'force', 'on', 'I', 'by', 'the', '\n', 'very', 'person', 'herself', 'whose', 'prior', 'engagement', 'ruin', 'all', '\n', 'my', 'prospect', 'and', 'tell', 'I', 'as', 'I', 'think', 'with', 'triumph', '\n', 'this', 'person', 'suspicion', 'therefore', 'I', 'have', 'have', 'to', 'oppose', '\n', 'by', 'endeavour', 'to', 'appear', 'indifferent', 'where', 'I', 'have', 'be', 'most', '\n', 'deeply', 'interestedand', 'it', 'have', 'not', 'be', 'only', 'oncei', 'have', '\n', 'have', 'her', 'hope', 'and', 'exultation', 'to', 'listen', 'to', 'again', 'and', 'again', '\n', 'I', 'have', 'know', 'myself', 'to', 'be', 'divide', 'from', 'Edward', 'for', 'ever', '\n', 'without', 'hear', 'one', 'circumstance', 'that', 'could', 'make', 'I', 'less', '\n', 'desire', 'the', 'connectionnothing', 'have', 'prove', 'he', 'unworthy', '\n', 'nor', 'have', 'anything', 'declare', 'he', 'indifferent', 'to', 'I', '\n', 'I', 'have', 'have', 'to', 'contend', 'against', 'the', 'unkindness', 'of', 'his', 'sister', '\n', 'and', 'the', 'insolence', 'of', 'his', 'mother', 'and', 'have', 'suffer', 'the', '\n', 'punishment', 'of', 'an', 'attachment', 'without', 'enjoy', 'its', 'advantage', '\n', 'and', 'all', 'this', 'have', 'be', 'go', 'on', 'at', 'a', 'time', 'when', 'as', 'you', '\n', 'know', 'too', 'well', 'it', 'have', 'not', 'be', 'my', 'only', 'unhappiness', '\n', 'if', 'you', 'can', 'think', 'I', 'capable', 'of', 'ever', 'feelingsurely', 'you', '\n', 'may', 'suppose', 'that', 'I', 'have', 'suffer', 'NOW', ' ', 'the', 'composure', '\n', 'of', 'mind', 'with', 'which', 'I', 'have', 'bring', 'myself', 'at', 'present', '\n', 'to', 'consider', 'the', 'matter', 'the', 'consolation', 'that', 'I', 'have', 'be', '\n', 'willing', 'to', 'admit', 'have', 'be', 'the', 'effect', 'of', 'constant', 'and', '\n', 'painful', 'exertionthey', 'do', 'not', 'spring', 'up', 'of', 'themselves', '\n', 'they', 'do', 'not', 'occur', 'to', 'relieve', 'my', 'spirit', 'at', 'first', '\n', 'no', 'mariannethen', 'if', 'I', 'have', 'not', 'be', 'bind', 'to', 'silence', '\n', 'perhaps', 'nothing', 'could', 'have', 'keep', 'I', 'entirelynot', 'even', 'what', 'I', '\n', 'owe', 'to', 'my', 'dearest', 'friendsfrom', 'openly', 'shew', 'that', 'I', 'be', '\n', 'very', 'unhappy', '\n\n', 'Marianne', 'be', 'quite', 'subdued', '\n\n', 'oh', 'Elinor', 'she', 'cry', 'you', 'have', 'make', 'I', 'hate', '\n', 'myself', 'for', 'everHow', 'barbarous', 'have', 'I', 'be', 'to', 'you', '\n', 'you', 'who', 'have', 'be', 'my', 'only', 'comfort', 'who', 'have', 'bear', 'with', 'I', '\n', 'in', 'all', 'my', 'misery', 'who', 'have', 'seem', 'to', 'be', 'only', 'suffer', '\n', 'for', 'meis', 'this', 'my', 'gratitudeIs', 'this', 'the', 'only', 'return', 'I', '\n', 'can', 'make', 'youBecause', 'your', 'merit', 'cry', 'out', 'upon', 'myself', '\n', 'I', 'have', 'be', 'try', 'to', 'do', 'it', 'away', '\n\n', 'the', 'tender', 'caress', 'follow', 'this', 'confession', '\n', 'in', 'such', 'a', 'frame', 'of', 'mind', 'as', 'she', 'be', 'now', 'in', 'Elinor', 'have', '\n', 'no', 'difficulty', 'in', 'obtain', 'from', 'she', 'whatever', 'promise', '\n', 'she', 'require', 'and', 'at', 'her', 'request', 'Marianne', 'engage', '\n', 'never', 'to', 'speak', 'of', 'the', 'affair', 'to', 'any', 'one', 'with', 'the', 'least', '\n', 'appearance', 'of', 'bitternessto', 'meet', 'Lucy', 'without', 'betray', '\n', 'the', 'small', 'increase', 'of', 'dislike', 'to', 'herand', 'even', 'to', 'see', '\n', 'Edward', 'himself', 'if', 'chance', 'should', 'bring', 'they', 'together', '\n', 'without', 'any', 'diminution', 'of', 'her', 'usual', 'cordiality', '\n', 'these', 'be', 'great', 'concessionsbut', 'where', 'Marianne', 'feel', '\n', 'that', 'she', 'have', 'injure', 'no', 'reparation', 'could', 'be', 'too', 'much', '\n', 'for', 'she', 'to', 'make', '\n\n', 'she', 'perform', 'her', 'promise', 'of', 'be', 'discreet', '\n', 'to', 'admirationshe', 'attend', 'to', 'all', 'that', 'Mrs', 'Jennings', '\n', 'have', 'to', 'say', 'upon', 'the', 'subject', 'with', 'an', 'unchanging', 'complexion', '\n', 'dissent', 'from', 'she', 'in', 'nothing', 'and', 'be', 'hear', 'three', '\n', 'time', 'to', 'say', 'yes', 'maamshe', 'listen', 'to', 'her', 'praise', '\n', 'of', 'Lucy', 'with', 'only', 'move', 'from', 'one', 'chair', 'to', 'another', '\n', 'and', 'when', 'Mrs', 'Jennings', 'talk', 'of', 'Edwards', 'affection', '\n', 'it', 'cost', 'she', 'only', 'a', 'spasm', 'in', 'her', 'throatsuch', 'advance', '\n', 'towards', 'heroism', 'in', 'her', 'sister', 'make', 'Elinor', 'feel', 'equal', '\n', 'to', 'any', 'thing', 'herself', '\n\n', 'the', 'next', 'morning', 'bring', 'a', 'farth', 'trial', 'of', 'it', '\n', 'in', 'a', 'visit', 'from', 'their', 'brother', 'who', 'come', 'with', 'a', 'most', 'serious', '\n', 'aspect', 'to', 'talk', 'over', 'the', 'dreadful', 'affair', 'and', 'bring', 'they', '\n', 'news', 'of', 'his', 'wife', '\n\n', 'you', 'have', 'hear', 'I', 'suppose', 'say', 'he', 'with', 'great', 'solemnity', '\n', 'as', 'soon', 'as', 'he', 'be', 'seat', 'of', 'the', 'very', 'shocking', 'discovery', '\n', 'that', 'take', 'place', 'under', 'our', 'roof', 'yesterday', '\n\n', 'they', 'all', 'look', 'their', 'assent', 'it', 'seem', 'too', 'awful', '\n', 'a', 'moment', 'for', 'speech', '\n\n', 'your', 'sister', 'he', 'continue', 'have', 'suffer', 'dreadfully', '\n', 'Mrs', 'Ferrars', 'tooin', 'short', 'it', 'have', 'be', 'a', 'scene', 'of', 'such', '\n', 'complicated', 'distressbut', 'I', 'will', 'hope', 'that', 'the', 'storm', 'may', '\n', 'be', 'weather', 'without', 'our', 'be', 'any', 'of', 'we', 'quite', 'overcome', '\n', 'poor', 'Fanny', 'she', 'be', 'in', 'hysteric', 'all', 'yesterday', '\n', 'but', 'I', 'would', 'not', 'alarm', 'you', 'too', 'much', ' ', 'Donavan', 'say', 'there', '\n', 'be', 'nothing', 'materially', 'to', 'be', 'apprehend', 'her', 'constitution', '\n', 'be', 'a', 'good', 'one', 'and', 'her', 'resolution', 'equal', 'to', 'any', 'thing', '\n', 'she', 'have', 'bear', 'it', 'all', 'with', 'the', 'fortitude', 'of', 'an', 'angel', '\n', 'she', 'say', 'she', 'never', 'shall', 'think', 'well', 'of', 'anybody', 'again', '\n', 'and', 'one', 'can', 'not', 'wonder', 'at', 'it', 'after', 'be', 'so', 'deceive', '\n', 'meeting', 'with', 'such', 'ingratitude', 'where', 'so', 'much', 'kindness', '\n', 'have', 'be', 'shew', 'so', 'much', 'confidence', 'have', 'be', 'place', ' ', 'it', '\n', 'be', 'quite', 'out', 'of', 'the', 'benevolence', 'of', 'her', 'heart', 'that', 'she', '\n', 'have', 'ask', 'these', 'young', 'woman', 'to', 'her', 'house', 'merely', 'because', '\n', 'she', 'think', 'they', 'deserve', 'some', 'attention', 'be', 'harmless', '\n', 'wellbehave', 'girl', 'and', 'would', 'be', 'pleasant', 'companion', '\n', 'for', 'otherwise', 'we', 'both', 'wish', 'very', 'much', 'to', 'have', 'invite', 'you', '\n', 'and', 'Marianne', 'to', 'be', 'with', 'we', 'while', 'your', 'kind', 'friend', 'there', '\n', 'be', 'attend', 'her', 'daughter', ' ', 'and', 'now', 'to', 'be', 'so', 'reward', '\n', 'I', 'wish', 'with', 'all', 'my', 'heart', 'say', 'poor', 'Fanny', 'in', 'her', '\n', 'affectionate', 'way', 'that', 'we', 'have', 'ask', 'your', 'sister', 'instead', '\n', 'of', 'they', '\n\n', 'here', 'he', 'stop', 'to', 'be', 'thank', 'which', 'be', 'do', '\n', 'he', 'go', 'on', '\n\n', 'what', 'poor', 'Mrs', 'Ferrars', 'suffer', 'when', 'first', 'Fanny', '\n', 'break', 'it', 'to', 'she', 'be', 'not', 'to', 'be', 'describe', ' ', 'while', 'she', 'with', '\n', 'the', 'true', 'affection', 'have', 'be', 'plan', 'a', 'most', 'eligible', '\n', 'connection', 'for', 'he', 'be', 'it', 'to', 'be', 'suppose', 'that', 'he', 'could', '\n', 'be', 'all', 'the', 'time', 'secretly', 'engage', 'to', 'another', 'personsuch', '\n', 'a', 'suspicion', 'could', 'never', 'have', 'enter', 'her', 'head', ' ', 'if', 'she', '\n', 'suspect', 'any', 'prepossession', 'elsewhere', 'it', 'could', 'not', 'be', '\n', 'in', 'that', 'quarter', ' ', 'there', 'to', 'be', 'sure', 'say', 'she', 'I', 'might', '\n', 'have', 'think', 'myself', 'safe', 'she', 'be', 'quite', 'in', 'an', 'agony', '\n', 'we', 'consult', 'together', 'however', 'as', 'to', 'what', 'should', 'be', 'do', '\n', 'and', 'at', 'last', 'she', 'determine', 'to', 'send', 'for', 'Edward', '\n', 'he', 'come', ' ', 'but', 'I', 'be', 'sorry', 'to', 'relate', 'what', 'ensue', '\n', 'all', 'that', 'Mrs', 'Ferrars', 'could', 'say', 'to', 'make', 'he', 'put', 'an', 'end', '\n', 'to', 'the', 'engagement', 'assist', 'too', 'as', 'you', 'may', 'well', 'suppose', '\n', 'by', 'my', 'argument', 'and', 'Fannys', 'entreaty', 'be', 'of', '\n', 'no', 'avail', ' ', 'Duty', 'affection', 'every', 'thing', 'be', 'disregard', '\n', 'I', 'never', 'think', 'Edward', 'so', 'stubborn', 'so', 'unfeele', 'before', '\n', 'his', 'mother', 'explain', 'to', 'he', 'her', 'liberal', 'design', 'in', 'case', '\n', 'of', 'his', 'marry', 'Miss', 'Morton', 'tell', 'he', 'she', 'would', 'settle', 'on', '\n', 'he', 'the', 'Norfolk', 'estate', 'which', 'clear', 'of', 'landtax', 'bring', '\n', 'in', 'a', 'good', 'thousand', 'ayear', 'offer', 'even', 'when', 'matter', '\n', 'grow', 'desperate', 'to', 'make', 'it', 'twelve', 'hundred', 'and', 'in', 'opposition', '\n', 'to', 'this', 'if', 'he', 'still', 'persist', 'in', 'this', 'low', 'connection', '\n', 'represent', 'to', 'he', 'the', 'certain', 'penury', 'that', 'must', 'attend', '\n', 'the', 'match', ' ', 'his', 'own', 'two', 'thousand', 'pound', 'she', 'protest', '\n', 'should', 'be', 'his', 'all', 'she', 'would', 'never', 'see', 'he', 'again', 'and', 'so', 'far', '\n', 'would', 'she', 'be', 'from', 'afford', 'he', 'the', 'small', 'assistance', '\n', 'that', 'if', 'he', 'be', 'to', 'enter', 'into', 'any', 'profession', 'with', 'a', 'view', '\n', 'of', 'well', 'support', 'she', 'would', 'do', 'all', 'in', 'her', 'power', 'to', 'prevent', '\n', 'he', 'advance', 'in', 'it', '\n\n', 'here', 'Marianne', 'in', 'an', 'ecstasy', 'of', 'indignation', '\n', 'clap', 'her', 'hand', 'together', 'and', 'cry', 'gracious', 'God', '\n', 'can', 'this', 'be', 'possible', '\n\n', 'well', 'may', 'you', 'wonder', 'Marianne', 'reply', 'her', 'brother', '\n', 'at', 'the', 'obstinacy', 'which', 'could', 'resist', 'such', 'argument', 'as', 'these', '\n', 'your', 'exclamation', 'be', 'very', 'natural', '\n\n', 'Marianne', 'be', 'go', 'to', 'retort', 'but', 'she', 'remember', '\n', 'her', 'promise', 'and', 'forbore', '\n\n', 'all', 'this', 'however', 'he', 'continue', 'be', 'urge', 'in', 'vain', '\n', 'Edward', 'say', 'very', 'little', 'but', 'what', 'he', 'do', 'say', 'be', 'in', '\n', 'the', 'most', 'determined', 'manner', ' ', 'nothing', 'should', 'prevail', 'on', '\n', 'he', 'to', 'give', 'up', 'his', 'engagement', ' ', 'he', 'would', 'stand', 'to', 'it', '\n', 'cost', 'he', 'what', 'it', 'might', '\n\n', 'then', 'cry', 'Mrs', 'Jennings', 'with', 'blunt', 'sincerity', '\n', 'no', 'long', 'able', 'to', 'be', 'silent', 'he', 'have', 'act', 'like', 'an', 'honest', '\n', 'man', 'I', 'beg', 'your', 'pardon', 'Mr', 'Dashwood', 'but', 'if', 'he', 'have', '\n', 'do', 'otherwise', 'I', 'should', 'have', 'think', 'he', 'a', 'rascal', '\n', 'I', 'have', 'some', 'little', 'concern', 'in', 'the', 'business', 'as', 'well', '\n', 'as', 'yourself', 'for', 'Lucy', 'Steele', 'be', 'my', 'cousin', 'and', 'I', 'believe', '\n', 'there', 'be', 'not', 'a', 'well', 'kind', 'of', 'girl', 'in', 'the', 'world', 'nor', 'one', '\n', 'who', 'more', 'deserve', 'a', 'good', 'husband', '\n\n', 'John', 'Dashwood', 'be', 'greatly', 'astonish', 'but', 'his', 'nature', '\n', 'be', 'calm', 'not', 'open', 'to', 'provocation', 'and', 'he', 'never', 'wish', '\n', 'to', 'offend', 'anybody', 'especially', 'anybody', 'of', 'good', 'fortune', '\n', 'he', 'therefore', 'reply', 'without', 'any', 'resentment', '\n\n', 'I', 'would', 'by', 'no', 'mean', 'speak', 'disrespectfully', 'of', 'any', '\n', 'relation', 'of', 'yours', 'madam', ' ', 'Miss', 'Lucy', 'Steele', 'be', 'I', 'dare', 'say', '\n', 'a', 'very', 'deserving', 'young', 'woman', 'but', 'in', 'the', 'present', 'case', '\n', 'you', 'know', 'the', 'connection', 'must', 'be', 'impossible', '\n', 'and', 'to', 'have', 'enter', 'into', 'a', 'secret', 'engagement', 'with', 'a', '\n', 'young', 'man', 'under', 'her', 'uncle', 'care', 'the', 'son', 'of', 'a', 'woman', '\n', 'especially', 'of', 'such', 'very', 'large', 'fortune', 'as', 'Mrs', 'Ferrars', '\n', 'be', 'perhaps', 'altogether', 'a', 'little', 'extraordinary', 'in', 'short', '\n', 'I', 'do', 'not', 'mean', 'to', 'reflect', 'upon', 'the', 'behaviour', 'of', 'any', 'person', '\n', 'whom', 'you', 'have', 'a', 'regard', 'for', 'Mrs', 'Jennings', ' ', 'we', 'all', 'wish', '\n', 'her', 'extremely', 'happy', 'and', 'Mrs', 'Ferrarss', 'conduct', 'throughout', '\n', 'the', 'whole', 'have', 'be', 'such', 'as', 'every', 'conscientious', 'good', 'mother', '\n', 'in', 'like', 'circumstance', 'would', 'adopt', ' ', 'it', 'have', 'be', 'dignify', '\n', 'and', 'liberal', ' ', 'Edward', 'have', 'draw', 'his', 'own', 'lot', 'and', 'I', 'fear', '\n', 'it', 'will', 'be', 'a', 'bad', 'one', '\n\n', 'Marianne', 'sigh', 'out', 'her', 'similar', 'apprehension', '\n', 'and', 'Elinors', 'heart', 'wring', 'for', 'the', 'feeling', 'of', 'Edward', '\n', 'while', 'brave', 'his', 'mother', 'threat', 'for', 'a', 'woman', 'who', 'could', '\n', 'not', 'reward', 'he', '\n\n', 'well', 'sir', 'say', 'Mrs', 'Jennings', 'and', 'how', 'do', 'it', 'end', '\n\n', 'I', 'be', 'sorry', 'to', 'say', 'maam', 'in', 'a', 'most', 'unhappy', 'rupture', '\n', 'Edward', 'be', 'dismiss', 'for', 'ever', 'from', 'his', 'mother', 'notice', '\n', 'he', 'leave', 'her', 'house', 'yesterday', 'but', 'where', 'he', 'be', 'go', 'or', 'whether', '\n', 'he', 'be', 'still', 'in', 'town', 'I', 'do', 'not', 'know', 'for', 'WE', 'of', 'course', 'can', '\n', 'make', 'no', 'inquiry', '\n\n', 'poor', 'young', 'manand', 'what', 'be', 'to', 'become', 'of', 'he', '\n\n', 'what', 'indeed', 'maam', ' ', 'it', 'be', 'a', 'melancholy', 'consideration', '\n', 'bear', 'to', 'the', 'prospect', 'of', 'such', 'affluence', ' ', 'I', 'can', 'not', 'conceive', '\n', 'a', 'situation', 'more', 'deplorable', ' ', 'the', 'interest', 'of', 'two', 'thousand', '\n', 'poundshow', 'can', 'a', 'man', 'live', 'on', 'itand', 'when', 'to', 'that', 'be', 'add', '\n', 'the', 'recollection', 'that', 'he', 'might', 'but', 'for', 'his', 'own', 'folly', '\n', 'within', 'three', 'month', 'have', 'be', 'in', 'the', 'receipt', 'of', 'two', '\n', 'thousand', 'five', 'hundred', 'ayear', 'for', 'Miss', 'Morton', 'have', '\n', 'thirty', 'thousand', 'pound', 'I', 'can', 'not', 'picture', 'to', 'myself', '\n', 'a', 'more', 'wretched', 'condition', ' ', 'we', 'must', 'all', 'feel', 'for', 'he', '\n', 'and', 'the', 'more', 'so', 'because', 'it', 'be', 'totally', 'out', 'of', 'our', 'power', '\n', 'to', 'assist', 'he', '\n\n', 'poor', 'young', 'man', 'cry', 'Mrs', 'Jennings', 'I', 'be', 'sure', '\n', 'he', 'should', 'be', 'very', 'welcome', 'to', 'bed', 'and', 'board', 'at', 'my', 'house', '\n', 'and', 'so', 'I', 'would', 'tell', 'he', 'if', 'I', 'could', 'see', 'he', ' ', 'it', 'be', 'not', 'fit', '\n', 'that', 'he', 'should', 'be', 'live', 'about', 'at', 'his', 'own', 'charge', 'now', '\n', 'at', 'lodging', 'and', 'tavern', '\n\n', 'Elinors', 'heart', 'thank', 'she', 'for', 'such', 'kindness', 'towards', 'Edward', '\n', 'though', 'she', 'could', 'not', 'forbear', 'smile', 'at', 'the', 'form', 'of', 'it', '\n\n', 'if', 'he', 'would', 'only', 'have', 'do', 'as', 'well', 'by', 'himself', '\n', 'say', 'John', 'Dashwood', 'as', 'all', 'his', 'friend', 'be', 'dispose', 'to', 'do', '\n', 'by', 'he', 'he', 'might', 'now', 'have', 'be', 'in', 'his', 'proper', 'situation', '\n', 'and', 'would', 'have', 'want', 'for', 'nothing', ' ', 'but', 'as', 'it', 'be', 'it', 'must', '\n', 'be', 'out', 'of', 'anybodys', 'power', 'to', 'assist', 'he', ' ', 'and', 'there', 'be', 'one', '\n', 'thing', 'more', 'prepare', 'against', 'he', 'which', 'must', 'be', 'bad', 'than', '\n', 'allhis', 'mother', 'have', 'determine', 'with', 'a', 'very', 'natural', 'kind', '\n', 'of', 'spirit', 'to', 'settle', 'that', 'estate', 'upon', 'Robert', 'immediately', '\n', 'which', 'might', 'have', 'be', 'Edwards', 'on', 'proper', 'condition', '\n', 'I', 'leave', 'she', 'this', 'morning', 'with', 'her', 'lawyer', 'talk', 'over', '\n', 'the', 'business', '\n\n', 'well', 'say', 'Mrs', 'Jennings', 'that', 'be', 'her', 'revenge', '\n', 'everybody', 'have', 'a', 'way', 'of', 'their', 'own', ' ', 'but', 'I', 'do', 'not', 'think', 'mine', '\n', 'would', 'be', 'to', 'make', 'one', 'son', 'independent', 'because', 'another', 'have', '\n', 'plague', 'I', '\n\n', 'Marianne', 'get', 'up', 'and', 'walk', 'about', 'the', 'room', '\n\n', 'can', 'anything', 'be', 'more', 'galling', 'to', 'the', 'spirit', 'of', 'a', 'man', '\n', 'continue', 'John', 'than', 'to', 'see', 'his', 'young', 'brother', 'in', '\n', 'possession', 'of', 'an', 'estate', 'which', 'might', 'have', 'be', 'his', 'own', '\n', 'Poor', 'Edward', ' ', 'I', 'feel', 'for', 'he', 'sincerely', '\n\n', 'a', 'few', 'minute', 'more', 'spend', 'in', 'the', 'same', 'kind', 'of', 'effusion', '\n', 'conclude', 'his', 'visit', 'and', 'with', 'repeat', 'assurance', 'to', 'his', '\n', 'sister', 'that', 'he', 'really', 'believe', 'there', 'be', 'no', 'material', '\n', 'danger', 'in', 'Fannys', 'indisposition', 'and', 'that', 'they', 'need', '\n', 'not', 'therefore', 'be', 'very', 'uneasy', 'about', 'it', 'he', 'go', 'away', '\n', 'leave', 'the', 'three', 'lady', 'unanimous', 'in', 'their', 'sentiment', '\n', 'on', 'the', 'present', 'occasion', 'as', 'far', 'at', 'least', 'as', 'it', 'regard', '\n', 'Mrs', 'Ferrarss', 'conduct', 'the', 'Dashwoods', 'and', 'Edwards', '\n\n', 'Mariannes', 'indignation', 'burst', 'forth', 'as', 'soon', 'as', 'he', '\n', 'quit', 'the', 'room', 'and', 'as', 'her', 'vehemence', 'make', 'reserve', '\n', 'impossible', 'in', 'Elinor', 'and', 'unnecessary', 'in', 'Mrs', 'Jennings', '\n', 'they', 'all', 'join', 'in', 'a', 'very', 'spirited', 'critique', 'upon', 'the', 'party', '\n\n\n\n', 'chapter', '38', '\n\n\n', 'Mrs', 'Jennings', 'be', 'very', 'warm', 'in', 'her', 'praise', 'of', 'Edwards', '\n', 'conduct', 'but', 'only', 'Elinor', 'and', 'Marianne', 'understand', 'its', '\n', 'true', 'merit', ' ', 'they', 'only', 'know', 'how', 'little', 'he', 'have', 'have', 'to', 'tempt', '\n', 'he', 'to', 'be', 'disobedient', 'and', 'how', 'small', 'be', 'the', 'consolation', '\n', 'beyond', 'the', 'consciousness', 'of', 'do', 'right', 'that', 'could', '\n', 'remain', 'to', 'he', 'in', 'the', 'loss', 'of', 'friend', 'and', 'fortune', '\n', 'Elinor', 'glory', 'in', 'his', 'integrity', 'and', 'Marianne', 'forgave', 'all', '\n', 'his', 'offence', 'in', 'compassion', 'for', 'his', 'punishment', ' ', 'but', 'though', '\n', 'confidence', 'between', 'they', 'be', 'by', 'this', 'public', 'discovery', '\n', 'restore', 'to', 'its', 'proper', 'state', 'it', 'be', 'not', 'a', 'subject', 'on', '\n', 'which', 'either', 'of', 'they', 'be', 'fond', 'of', 'dwelling', 'when', 'alone', '\n', 'Elinor', 'avoid', 'it', 'upon', 'principle', 'as', 'tend', 'to', 'fix', 'still', '\n', 'more', 'upon', 'her', 'thought', 'by', 'the', 'too', 'warm', 'too', 'positive', '\n', 'assurance', 'of', 'Marianne', 'that', 'belief', 'of', 'Edwards', 'continue', '\n', 'affection', 'for', 'herself', 'which', 'she', 'rather', 'wish', 'to', 'do', 'away', '\n', 'and', 'Mariannes', 'courage', 'soon', 'fail', 'she', 'in', 'try', '\n', 'to', 'converse', 'upon', 'a', 'topic', 'which', 'always', 'leave', 'she', 'more', '\n', 'dissatisfied', 'with', 'herself', 'than', 'ever', 'by', 'the', 'comparison', '\n', 'it', 'necessarily', 'produce', 'between', 'elinor', 'conduct', 'and', 'her', 'own', '\n\n', 'she', 'feel', 'all', 'the', 'force', 'of', 'that', 'comparison', 'but', 'not', '\n', 'as', 'her', 'sister', 'have', 'hope', 'to', 'urge', 'she', 'to', 'exertion', 'now', '\n', 'she', 'feel', 'it', 'with', 'all', 'the', 'pain', 'of', 'continual', 'selfreproach', '\n', 'regret', 'most', 'bitterly', 'that', 'she', 'have', 'never', 'exert', '\n', 'herself', 'before', 'but', 'it', 'bring', 'only', 'the', 'torture', 'of', 'penitence', '\n', 'without', 'the', 'hope', 'of', 'amendment', ' ', 'her', 'mind', 'be', 'so', 'much', 'weaken', '\n', 'that', 'she', 'still', 'fancy', 'present', 'exertion', 'impossible', '\n', 'and', 'therefore', 'it', 'only', 'dispirit', 'she', 'more', '\n\n', 'nothing', 'new', 'be', 'hear', 'by', 'they', 'for', 'a', 'day', 'or', 'two', 'afterwards', '\n', 'of', 'affair', 'in', 'Harley', 'Street', 'or', 'Bartletts', 'Buildings', '\n', 'but', 'though', 'so', 'much', 'of', 'the', 'matter', 'be', 'know', 'to', 'they', 'already', '\n', 'that', 'Mrs', 'Jennings', 'might', 'have', 'have', 'enough', 'to', 'do', 'in', 'spread', '\n', 'that', 'knowledge', 'far', 'without', 'seek', 'after', 'more', '\n', 'she', 'have', 'resolve', 'from', 'the', 'first', 'to', 'pay', 'a', 'visit', 'of', 'comfort', '\n', 'and', 'inquiry', 'to', 'her', 'cousin', 'as', 'soon', 'as', 'she', 'could', '\n', 'and', 'nothing', 'but', 'the', 'hindrance', 'of', 'more', 'visitor', 'than', 'usual', '\n', 'have', 'prevent', 'she', 'go', 'to', 'they', 'within', 'that', 'time', '\n\n', 'the', 'third', 'day', 'succeed', 'their', 'knowledge', 'of', 'the', '\n', 'particular', 'be', 'so', 'fine', 'so', 'beautiful', 'a', 'Sunday', 'as', 'to', 'draw', '\n', 'many', 'to', 'Kensington', 'Gardens', 'though', 'it', 'be', 'only', 'the', 'second', '\n', 'week', 'in', 'March', ' ', 'Mrs', 'Jennings', 'and', 'Elinor', 'be', 'of', 'the', 'number', '\n', 'but', 'Marianne', 'who', 'know', 'that', 'the', 'Willoughbys', 'be', 'again', '\n', 'in', 'town', 'and', 'have', 'a', 'constant', 'dread', 'of', 'meet', 'they', '\n', 'choose', 'rather', 'to', 'stay', 'at', 'home', 'than', 'venture', 'into', 'so', 'public', '\n', 'a', 'place', '\n\n', 'an', 'intimate', 'acquaintance', 'of', 'Mrs', 'Jennings', 'join', '\n', 'they', 'soon', 'after', 'they', 'enter', 'the', 'Gardens', 'and', 'Elinor', 'be', '\n', 'not', 'sorry', 'that', 'by', 'she', 'continue', 'with', 'they', 'and', 'engage', '\n', 'all', 'Mrs', 'Jenningss', 'conversation', 'she', 'be', 'herself', 'leave', '\n', 'to', 'quiet', 'reflection', ' ', 'she', 'see', 'nothing', 'of', 'the', 'Willoughbys', '\n', 'nothing', 'of', 'Edward', 'and', 'for', 'some', 'time', 'nothing', 'of', 'anybody', '\n', 'who', 'could', 'by', 'any', 'chance', 'whether', 'grave', 'or', 'gay', 'be', 'interesting', '\n', 'to', 'she', ' ', 'but', 'at', 'last', 'she', 'find', 'herself', 'with', 'some', 'surprise', '\n', 'accost', 'by', 'Miss', 'Steele', 'who', 'though', 'look', 'rather', 'shy', '\n', 'express', 'great', 'satisfaction', 'in', 'meet', 'they', 'and', 'on', 'receive', '\n', 'encouragement', 'from', 'the', 'particular', 'kindness', 'of', 'Mrs', 'Jennings', '\n', 'leave', 'her', 'own', 'party', 'for', 'a', 'short', 'time', 'to', 'join', 'theirs', '\n', 'Mrs', 'Jennings', 'immediately', 'whisper', 'to', 'Elinor', '\n\n', 'get', 'it', 'all', 'out', 'of', 'she', 'my', 'dear', ' ', 'she', 'will', 'tell', 'you', '\n', 'any', 'thing', 'if', 'you', 'ask', ' ', 'you', 'see', 'I', 'can', 'not', 'leave', 'Mrs', 'Clarke', '\n\n', 'it', 'be', 'lucky', 'however', 'for', 'Mrs', 'Jenningss', 'curiosity', '\n', 'and', 'elinor', 'too', 'that', 'she', 'would', 'tell', 'any', 'thing', 'without', '\n', 'be', 'ask', 'for', 'nothing', 'would', 'otherwise', 'have', 'be', 'learn', '\n\n', 'I', 'be', 'so', 'glad', 'to', 'meet', 'you', 'say', 'Miss', 'Steele', '\n', 'take', 'she', 'familiarly', 'by', 'the', 'armfor', 'I', 'want', 'to', 'see', 'you', '\n', 'of', 'all', 'thing', 'in', 'the', 'world', ' ', 'and', 'then', 'lower', 'her', 'voice', '\n', 'I', 'suppose', 'Mrs', 'Jennings', 'have', 'hear', 'all', 'about', 'it', '\n', 'be', 'she', 'angry', '\n\n', 'not', 'at', 'all', 'I', 'believe', 'with', 'you', '\n\n', 'that', 'be', 'a', 'good', 'thing', ' ', 'and', 'Lady', 'Middleton', 'be', 'SHE', 'angry', '\n\n', 'I', 'can', 'not', 'suppose', 'it', 'possible', 'that', 'she', 'should', '\n\n', 'I', 'be', 'monstrous', 'glad', 'of', 'it', ' ', 'good', 'gracious', ' ', 'I', 'have', '\n', 'have', 'such', 'a', 'time', 'of', 'it', ' ', 'I', 'never', 'see', 'Lucy', 'in', 'such', 'a', 'rage', '\n', 'in', 'my', 'life', ' ', 'she', 'vow', 'at', 'first', 'she', 'would', 'never', 'trim', 'I', '\n', 'up', 'a', 'new', 'bonnet', 'nor', 'do', 'any', 'thing', 'else', 'for', 'I', 'again', '\n', 'so', 'long', 'as', 'she', 'live', 'but', 'now', 'she', 'be', 'quite', 'come', 'to', '\n', 'and', 'we', 'be', 'as', 'good', 'friend', 'as', 'ever', ' ', 'look', 'she', 'make', 'I', '\n', 'this', 'bow', 'to', 'my', 'hat', 'and', 'put', 'in', 'the', 'feather', 'last', 'night', '\n', 'there', 'now', 'you', 'be', 'go', 'to', 'laugh', 'at', 'I', 'too', ' ', 'but', 'why', '\n', 'should', 'not', 'I', 'wear', 'pink', 'ribbon', ' ', 'I', 'do', 'not', 'care', 'if', 'it', 'be', '\n', 'the', 'doctor', 'favourite', 'colour', ' ', 'I', 'be', 'sure', 'for', 'my', 'part', '\n', 'I', 'should', 'never', 'have', 'know', 'he', 'do', 'like', 'it', 'well', 'than', '\n', 'any', 'other', 'colour', 'if', 'he', 'have', 'not', 'happen', 'to', 'say', 'so', '\n', 'my', 'cousin', 'have', 'be', 'so', 'plague', 'I', ' ', 'I', 'declare', 'sometimes', '\n', 'I', 'do', 'not', 'know', 'which', 'way', 'to', 'look', 'before', 'they', '\n\n', 'she', 'have', 'wander', 'away', 'to', 'a', 'subject', 'on', 'which', 'Elinor', '\n', 'have', 'nothing', 'to', 'say', 'and', 'therefore', 'soon', 'judge', 'it', 'expedient', '\n', 'to', 'find', 'her', 'way', 'back', 'again', 'to', 'the', 'first', '\n\n', 'well', 'but', 'Miss', 'Dashwood', 'speak', 'triumphantly', '\n', 'people', 'may', 'say', 'what', 'they', 'chuse', 'about', 'Mr', 'Ferrarss', '\n', 'declare', 'he', 'would', 'not', 'have', 'Lucy', 'for', 'it', 'be', 'no', 'such', 'thing', '\n', 'I', 'can', 'tell', 'you', 'and', 'it', 'be', 'quite', 'a', 'shame', 'for', 'such', 'illnatured', '\n', 'report', 'to', 'be', 'spread', 'abroad', ' ', 'whatever', 'Lucy', 'might', 'think', '\n', 'about', 'it', 'herself', 'you', 'know', 'it', 'be', 'no', 'business', 'of', 'other', '\n', 'people', 'to', 'set', 'it', 'down', 'for', 'certain', '\n\n', 'I', 'never', 'hear', 'any', 'thing', 'of', 'the', 'kind', 'hint', 'at', 'before', '\n', 'I', 'assure', 'you', 'say', 'Elinor', '\n\n', 'oh', 'do', 'not', 'you', ' ', 'but', 'it', 'be', 'say', 'I', 'know', 'very', 'well', '\n', 'and', 'by', 'more', 'than', 'one', 'for', 'Miss', 'Godby', 'tell', 'Miss', 'Sparks', '\n', 'that', 'nobody', 'in', 'their', 'sense', 'could', 'expect', 'Mr', 'Ferrars', '\n', 'to', 'give', 'up', 'a', 'woman', 'like', 'Miss', 'Morton', 'with', 'thirty', 'thousand', '\n', 'pound', 'to', 'her', 'fortune', 'for', 'Lucy', 'Steele', 'that', 'have', '\n', 'nothing', 'at', 'all', 'and', 'I', 'have', 'it', 'from', 'Miss', 'Sparks', 'myself', '\n', 'and', 'besides', 'that', 'my', 'cousin', 'Richard', 'say', 'himself', '\n', 'that', 'when', 'it', 'come', 'to', 'the', 'point', 'he', 'be', 'afraid', 'Mr', 'Ferrars', '\n', 'would', 'be', 'off', 'and', 'when', 'Edward', 'do', 'not', 'come', 'near', 'we', '\n', 'for', 'three', 'day', 'I', 'could', 'not', 'tell', 'what', 'to', 'think', 'myself', '\n', 'and', 'I', 'believe', 'in', 'my', 'heart', 'Lucy', 'give', 'it', 'up', 'all', 'for', 'lose', '\n', 'for', 'we', 'come', 'away', 'from', 'your', 'brother', 'Wednesday', '\n', 'and', 'we', 'see', 'nothing', 'of', 'he', 'not', 'all', 'Thursday', 'Friday', '\n', 'and', 'Saturday', 'and', 'do', 'not', 'know', 'what', 'be', 'become', 'of', 'he', '\n', 'once', 'Lucy', 'think', 'to', 'write', 'to', 'he', 'but', 'then', 'her', 'spirit', '\n', 'rise', 'against', 'that', ' ', 'however', 'this', 'morning', 'he', 'come', 'just', '\n', 'as', 'we', 'come', 'home', 'from', 'church', 'and', 'then', 'it', 'all', 'come', 'out', '\n', 'how', 'he', 'have', 'be', 'send', 'for', 'Wednesday', 'to', 'Harley', 'Street', '\n', 'and', 'be', 'talk', 'to', 'by', 'his', 'mother', 'and', 'all', 'of', 'they', '\n', 'and', 'how', 'he', 'have', 'declare', 'before', 'they', 'all', 'that', 'he', 'love', '\n', 'nobody', 'but', 'Lucy', 'and', 'nobody', 'but', 'Lucy', 'would', 'he', 'have', '\n', 'and', 'how', 'he', 'have', 'be', 'so', 'worried', 'by', 'what', 'pass', '\n', 'that', 'as', 'soon', 'as', 'he', 'have', 'go', 'away', 'from', 'his', 'mother', 'house', '\n', 'he', 'have', 'get', 'upon', 'his', 'horse', 'and', 'rid', 'into', 'the', 'country', '\n', 'some', 'where', 'or', 'other', 'and', 'how', 'he', 'have', 'stay', 'about', 'at', 'an', 'inn', '\n', 'all', 'Thursday', 'and', 'Friday', 'on', 'purpose', 'to', 'get', 'the', 'well', '\n', 'of', 'it', ' ', 'and', 'after', 'think', 'it', 'all', 'over', 'and', 'over', 'again', '\n', 'he', 'say', 'it', 'seem', 'to', 'he', 'as', 'if', 'now', 'he', 'have', 'no', 'fortune', '\n', 'and', 'no', 'nothing', 'at', 'all', 'it', 'would', 'be', 'quite', 'unkind', 'to', 'keep', '\n', 'she', 'on', 'to', 'the', 'engagement', 'because', 'it', 'must', 'be', 'for', 'her', 'loss', '\n', 'for', 'he', 'have', 'nothing', 'but', 'two', 'thousand', 'pound', 'and', 'no', 'hope', '\n', 'of', 'any', 'thing', 'else', 'and', 'if', 'he', 'be', 'to', 'go', 'into', 'order', '\n', 'as', 'he', 'have', 'some', 'thought', 'he', 'could', 'get', 'nothing', 'but', 'a', 'curacy', '\n', 'and', 'how', 'be', 'they', 'to', 'live', 'upon', 'thatHe', 'could', 'not', 'bear', '\n', 'to', 'think', 'of', 'she', 'do', 'no', 'well', 'and', 'so', 'he', 'beg', '\n', 'if', 'she', 'have', 'the', 'least', 'mind', 'for', 'it', 'to', 'put', 'an', 'end', 'to', 'the', '\n', 'matter', 'directly', 'and', 'leave', 'he', 'shift', 'for', 'himself', '\n', 'I', 'hear', 'he', 'say', 'all', 'this', 'as', 'plain', 'as', 'could', 'possibly', 'be', '\n', 'and', 'it', 'be', 'entirely', 'for', 'her', 'sake', 'and', 'upon', 'her', 'account', '\n', 'that', 'he', 'say', 'a', 'word', 'about', 'be', 'off', 'and', 'not', 'upon', 'his', 'own', '\n', 'I', 'will', 'take', 'my', 'oath', 'he', 'never', 'dropt', 'a', 'syllable', 'of', 'be', '\n', 'tired', 'of', 'she', 'or', 'of', 'wish', 'to', 'marry', 'Miss', 'Morton', 'or', 'any', '\n', 'thing', 'like', 'it', ' ', 'but', 'to', 'be', 'sure', 'Lucy', 'would', 'not', 'give', '\n', 'ear', 'to', 'such', 'kind', 'of', 'talk', 'so', 'she', 'tell', 'he', 'directly', '\n', 'with', 'a', 'great', 'deal', 'about', 'sweet', 'and', 'love', 'you', 'know', '\n', 'and', 'all', 'thatOh', 'la', 'one', 'can', 'not', 'repeat', 'such', 'kind', 'of', 'thing', '\n', 'you', 'knowshe', 'tell', 'he', 'directly', 'she', 'have', 'not', 'the', 'least', '\n', 'mind', 'in', 'the', 'world', 'to', 'be', 'off', 'for', 'she', 'could', 'live', 'with', 'he', '\n', 'upon', 'a', 'trifle', 'and', 'how', 'little', 'so', 'ever', 'he', 'might', 'have', '\n', 'she', 'should', 'be', 'very', 'glad', 'to', 'have', 'it', 'all', 'you', 'know', '\n', 'or', 'something', 'of', 'the', 'kind', ' ', 'so', 'then', 'he', 'be', 'monstrous', 'happy', '\n', 'and', 'talk', 'on', 'some', 'time', 'about', 'what', 'they', 'should', 'do', '\n', 'and', 'they', 'agree', 'he', 'should', 'take', 'order', 'directly', '\n', 'and', 'they', 'must', 'wait', 'to', 'be', 'marry', 'till', 'he', 'get', 'a', 'living', '\n', 'and', 'just', 'then', 'I', 'could', 'not', 'hear', 'any', 'more', 'for', 'my', 'cousin', '\n', 'call', 'from', 'below', 'to', 'tell', 'I', 'Mrs', 'Richardson', 'be', 'come', 'in', '\n', 'her', 'coach', 'and', 'would', 'take', 'one', 'of', 'we', 'to', 'Kensington', 'Gardens', '\n', 'so', 'I', 'be', 'force', 'to', 'go', 'into', 'the', 'room', 'and', 'interrupt', 'they', '\n', 'to', 'ask', 'Lucy', 'if', 'she', 'would', 'like', 'to', 'go', 'but', 'she', 'do', 'not', '\n', 'care', 'to', 'leave', 'Edward', 'so', 'I', 'just', 'run', 'up', 'stair', 'and', 'put', '\n', 'on', 'a', 'pair', 'of', 'silk', 'stocking', 'and', 'come', 'off', 'with', 'the', 'Richardsons', '\n\n', 'I', 'do', 'not', 'understand', 'what', 'you', 'mean', 'by', 'interrupt', 'they', '\n', 'say', 'Elinor', 'you', 'be', 'all', 'in', 'the', 'same', 'room', 'together', '\n', 'be', 'not', 'you', '\n\n', 'no', 'indeed', 'not', 'we', ' ', 'La', 'Miss', 'Dashwood', 'do', 'you', '\n', 'think', 'people', 'make', 'love', 'when', 'any', 'body', 'else', 'be', 'by', ' ', 'oh', '\n', 'for', 'shameTo', 'be', 'sure', 'you', 'must', 'know', 'well', 'than', 'that', '\n', 'laugh', 'affectedlyNo', 'no', 'they', 'be', 'shut', 'up', 'in', 'the', '\n', 'drawingroom', 'together', 'and', 'all', 'I', 'hear', 'be', 'only', 'by', 'listen', '\n', 'at', 'the', 'door', '\n\n', 'how', 'cry', 'Elinor', 'have', 'you', 'be', 'repeat', 'to', 'I', '\n', 'what', 'you', 'only', 'learn', 'yourself', 'by', 'listen', 'at', 'the', 'door', '\n', 'I', 'be', 'sorry', 'I', 'do', 'not', 'know', 'it', 'before', 'for', 'I', 'certainly', '\n', 'would', 'not', 'have', 'suffer', 'you', 'to', 'give', 'I', 'particular', 'of', 'a', '\n', 'conversation', 'which', 'you', 'ought', 'not', 'to', 'have', 'know', 'yourself', '\n', 'how', 'could', 'you', 'behave', 'so', 'unfairly', 'by', 'your', 'sister', '\n\n', 'oh', 'la', 'there', 'be', 'nothing', 'in', 'that', ' ', 'I', 'only', 'stand', 'at', '\n', 'the', 'door', 'and', 'hear', 'what', 'I', 'could', ' ', 'and', 'I', 'be', 'sure', 'Lucy', 'would', '\n', 'have', 'do', 'just', 'the', 'same', 'by', 'I', 'for', 'a', 'year', 'or', 'two', 'back', '\n', 'when', 'Martha', 'Sharpe', 'and', 'I', 'have', 'so', 'many', 'secret', 'together', '\n', 'she', 'never', 'make', 'any', 'bone', 'of', 'hide', 'in', 'a', 'closet', 'or', 'behind', '\n', 'a', 'chimneyboard', 'on', 'purpose', 'to', 'hear', 'what', 'we', 'say', '\n\n', 'Elinor', 'try', 'to', 'talk', 'of', 'something', 'else', 'but', 'Miss', '\n', 'Steele', 'could', 'not', 'be', 'keep', 'beyond', 'a', 'couple', 'of', 'minute', '\n', 'from', 'what', 'be', 'uppermost', 'in', 'her', 'mind', '\n\n', 'Edward', 'talk', 'of', 'go', 'to', 'Oxford', 'soon', 'say', 'she', '\n', 'but', 'now', 'he', 'be', 'lodge', 'at', 'no', ' ', 'Pall', 'Mall', ' ', 'what', 'an', '\n', 'illnature', 'woman', 'his', 'mother', 'be', 'ant', 'she', 'and', 'your', '\n', 'brother', 'and', 'sister', 'be', 'not', 'very', 'kind', 'however', '\n', 'I', 'shall', 'not', 'say', 'anything', 'against', 'they', 'to', 'you', 'and', 'to', 'be', 'sure', '\n', 'they', 'do', 'send', 'we', 'home', 'in', 'their', 'own', 'chariot', 'which', '\n', 'be', 'more', 'than', 'I', 'look', 'for', ' ', 'and', 'for', 'my', 'part', 'I', 'be', 'all', '\n', 'in', 'a', 'fright', 'for', 'fear', 'your', 'sister', 'should', 'ask', 'we', 'for', 'the', '\n', 'huswife', 'she', 'have', 'give', 'we', 'a', 'day', 'or', 'two', 'before', 'but', 'however', '\n', 'nothing', 'be', 'say', 'about', 'they', 'and', 'I', 'take', 'care', 'to', 'keep', 'mine', '\n', 'out', 'of', 'sight', ' ', 'Edward', 'have', 'get', 'some', 'business', 'at', 'Oxford', '\n', 'he', 'say', 'so', 'he', 'must', 'go', 'there', 'for', 'a', 'time', 'and', 'after', 'that', '\n', 'as', 'soon', 'as', 'he', 'can', 'light', 'upon', 'a', 'Bishop', 'he', 'will', 'be', 'ordain', '\n', 'I', 'wonder', 'what', 'curacy', 'he', 'will', 'getgood', 'gracious', '\n', 'giggle', 'as', 'she', 'speak', 'I', 'd', 'lie', 'my', 'life', 'I', 'know', 'what', '\n', 'my', 'cousin', 'will', 'say', 'when', 'they', 'hear', 'of', 'it', ' ', 'they', 'will', '\n', 'tell', 'I', 'I', 'should', 'write', 'to', 'the', 'Doctor', 'to', 'get', 'Edward', '\n', 'the', 'curacy', 'of', 'his', 'new', 'living', ' ', 'I', 'know', 'they', 'will', 'but', 'I', 'be', '\n', 'sure', 'I', 'would', 'not', 'do', 'such', 'a', 'thing', 'for', 'all', 'the', 'world', '\n', 'La', 'I', 'shall', 'say', 'directly', 'I', 'wonder', 'how', 'you', 'could', 'think', '\n', 'of', 'such', 'a', 'thing', ' ', 'I', 'write', 'to', 'the', 'Doctor', 'indeed', '\n\n', 'well', 'say', 'Elinor', 'it', 'be', 'a', 'comfort', 'to', 'be', 'prepare', '\n', 'against', 'the', 'bad', ' ', 'you', 'have', 'get', 'your', 'answer', 'ready', '\n\n', 'Miss', 'Steele', 'be', 'go', 'to', 'reply', 'on', 'the', 'same', 'subject', '\n', 'but', 'the', 'approach', 'of', 'her', 'own', 'party', 'make', 'another', 'more', 'necessary', '\n\n', 'oh', 'la', 'here', 'come', 'the', 'Richardsons', ' ', 'I', 'have', 'a', 'vast', 'deal', '\n', 'more', 'to', 'say', 'to', 'you', 'but', 'I', 'must', 'not', 'stay', 'away', 'from', 'they', 'not', '\n', 'any', 'long', ' ', 'I', 'assure', 'you', 'they', 'be', 'very', 'genteel', 'people', '\n', 'he', 'make', 'a', 'monstrous', 'deal', 'of', 'money', 'and', 'they', 'keep', 'their', '\n', 'own', 'coach', ' ', 'I', 'have', 'not', 'time', 'to', 'speak', 'to', 'Mrs', 'Jennings', 'about', '\n', 'it', 'myself', 'but', 'pray', 'tell', 'she', 'I', 'be', 'quite', 'happy', 'to', 'hear', 'she', '\n', 'be', 'not', 'in', 'anger', 'against', 'we', 'and', 'Lady', 'Middleton', 'the', 'same', '\n', 'and', 'if', 'anything', 'should', 'happen', 'to', 'take', 'you', 'and', 'your', '\n', 'sister', 'away', 'and', 'Mrs', 'Jennings', 'should', 'want', 'company', '\n', 'I', 'be', 'sure', 'we', 'should', 'be', 'very', 'glad', 'to', 'come', 'and', 'stay', 'with', 'she', '\n', 'for', 'as', 'long', 'a', 'time', 'as', 'she', 'like', ' ', 'I', 'suppose', 'Lady', 'Middleton', '\n', 'will', 'not', 'ask', 'we', 'any', 'more', 'this', 'bout', ' ', 'Goodby', 'I', 'be', 'sorry', '\n', 'Miss', 'Marianne', 'be', 'not', 'here', ' ', 'remember', 'I', 'kindly', 'to', 'her', '\n', 'La', 'if', 'you', 'have', 'not', 'get', 'your', 'spotted', 'muslin', 'oni', 'wonder', '\n', 'you', 'be', 'not', 'afraid', 'of', 'its', 'be', 'tear', '\n\n', 'such', 'be', 'her', 'parting', 'concern', 'for', 'after', 'this', 'she', 'have', '\n', 'time', 'only', 'to', 'pay', 'her', 'farewell', 'compliment', 'to', 'Mrs', 'Jennings', '\n', 'before', 'her', 'company', 'be', 'claim', 'by', 'Mrs', 'Richardson', '\n', 'and', 'Elinor', 'be', 'leave', 'in', 'possession', 'of', 'knowledge', 'which', '\n', 'might', 'feed', 'her', 'power', 'of', 'reflection', 'some', 'time', 'though', 'she', '\n', 'have', 'learn', 'very', 'little', 'more', 'than', 'what', 'have', 'be', 'already', '\n', 'foresee', 'and', 'foreplanne', 'in', 'her', 'own', 'mind', ' ', 'Edwards', 'marriage', '\n', 'with', 'Lucy', 'be', 'as', 'firmly', 'determined', 'on', 'and', 'the', 'time', '\n', 'of', 'its', 'taking', 'place', 'remain', 'as', 'absolutely', 'uncertain', '\n', 'as', 'she', 'have', 'conclude', 'it', 'would', 'beevery', 'thing', 'depend', '\n', 'exactly', 'after', 'her', 'expectation', 'on', 'his', 'get', 'that', 'preferment', '\n', 'of', 'which', 'at', 'present', 'there', 'seem', 'not', 'the', 'small', 'chance', '\n\n', 'as', 'soon', 'as', 'they', 'return', 'to', 'the', 'carriage', '\n', 'Mrs', 'Jennings', 'be', 'eager', 'for', 'information', 'but', 'as', 'Elinor', '\n', 'wish', 'to', 'spread', 'as', 'little', 'as', 'possible', 'intelligence', '\n', 'that', 'have', 'in', 'the', 'first', 'place', 'be', 'so', 'unfairly', 'obtain', '\n', 'she', 'confine', 'herself', 'to', 'the', 'brief', 'repetition', 'of', 'such', '\n', 'simple', 'particular', 'as', 'she', 'feel', 'assure', 'that', 'Lucy', '\n', 'for', 'the', 'sake', 'of', 'her', 'own', 'consequence', 'would', 'choose', '\n', 'to', 'have', 'know', ' ', 'the', 'continuance', 'of', 'their', 'engagement', '\n', 'and', 'the', 'mean', 'that', 'be', 'able', 'to', 'be', 'take', 'for', 'promote', '\n', 'its', 'end', 'be', 'all', 'her', 'communication', 'and', 'this', 'produce', '\n', 'from', 'Mrs', 'Jennings', 'the', 'follow', 'natural', 'remark', '\n\n', 'wait', 'for', 'his', 'have', 'a', 'livingay', 'we', 'all', 'know', 'how', '\n', 'that', 'will', 'endthey', 'will', 'wait', 'a', 'twelvemonth', 'and', 'find', '\n', 'no', 'good', 'come', 'of', 'it', 'will', 'set', 'down', 'upon', 'a', 'curacy', 'of', 'fifty', '\n', 'pound', 'ayear', 'with', 'the', 'interest', 'of', 'his', 'two', 'thousand', 'pound', '\n', 'and', 'what', 'little', 'matter', 'Mr', 'Steele', 'and', 'Mr', 'Pratt', 'can', '\n', 'give', 'herthen', 'they', 'will', 'have', 'a', 'child', 'every', 'year', 'and', '\n', 'Lord', 'help', 'em', 'how', 'poor', 'they', 'will', 'beI', 'must', 'see', '\n', 'what', 'I', 'can', 'give', 'they', 'towards', 'furnish', 'their', 'house', '\n', 'two', 'maid', 'and', 'two', 'man', 'indeedas', 'I', 'talk', 'of', 'tother', '\n', 'dayNo', 'no', 'they', 'must', 'get', 'a', 'stout', 'girl', 'of', 'all', 'work', '\n', 'Bettys', 'sister', 'would', 'never', 'do', 'for', 'they', 'NOW', '\n\n', 'the', 'next', 'morning', 'bring', 'Elinor', 'a', 'letter', 'by', 'the', '\n', 'twopenny', 'post', 'from', 'Lucy', 'herself', ' ', 'it', 'be', 'as', 'follow', '\n\n ', 'Bartletts', 'Building', 'March', '\n\n ', 'I', 'hope', 'my', 'dear', 'Miss', 'Dashwood', 'will', 'excuse', 'the', '\n ', 'liberty', 'I', 'take', 'of', 'writing', 'to', 'she', 'but', 'I', 'know', 'your', '\n ', 'friendship', 'for', 'I', 'will', 'make', 'you', 'pleased', 'to', 'hear', 'such', '\n ', 'a', 'good', 'account', 'of', 'myself', 'and', 'my', 'dear', 'Edward', 'after', '\n ', 'all', 'the', 'trouble', 'we', 'have', 'go', 'through', 'lately', '\n ', 'therefore', 'will', 'make', 'no', 'more', 'apology', 'but', 'proceed', '\n ', 'to', 'say', 'that', 'thank', 'God', 'though', 'we', 'have', 'suffer', '\n ', 'dreadfully', 'we', 'be', 'both', 'quite', 'well', 'now', 'and', 'as', 'happy', '\n ', 'as', 'we', 'must', 'always', 'be', 'in', 'one', 'another', 'love', ' ', 'we', 'have', '\n ', 'have', 'great', 'trial', 'and', 'great', 'persecution', 'but', '\n ', 'however', 'at', 'the', 'same', 'time', 'gratefully', 'acknowledge', '\n ', 'many', 'friend', 'yourself', 'not', 'the', 'least', 'among', 'they', '\n ', 'whose', 'great', 'kindness', 'I', 'shall', 'always', 'thankfully', '\n ', 'remember', 'as', 'will', 'edward', 'too', 'who', 'I', 'have', 'tell', 'of', '\n ', 'it', ' ', 'I', 'be', 'sure', 'you', 'will', 'be', 'glad', 'to', 'hear', 'as', 'likewise', '\n ', 'dear', 'Mrs', 'Jennings', 'I', 'spend', 'two', 'happy', 'hour', 'with', '\n ', 'he', 'yesterday', 'afternoon', 'he', 'would', 'not', 'hear', 'of', 'our', '\n ', 'parting', 'though', 'earnestly', 'do', 'I', 'as', 'I', 'think', 'my', '\n ', 'duty', 'require', 'urge', 'he', 'to', 'it', 'for', 'prudence', 'sake', '\n ', 'and', 'would', 'have', 'part', 'for', 'ever', 'on', 'the', 'spot', 'would', '\n ', 'he', 'consent', 'to', 'it', 'but', 'he', 'say', 'it', 'should', 'never', 'be', '\n ', 'he', 'do', 'not', 'regard', 'his', 'mother', 'anger', 'while', 'he', 'could', '\n ', 'have', 'my', 'affection', 'our', 'prospect', 'be', 'not', 'very', '\n ', 'bright', 'to', 'be', 'sure', 'but', 'we', 'must', 'wait', 'and', 'hope', 'for', '\n ', 'the', 'good', 'he', 'will', 'be', 'ordain', 'shortly', 'and', 'should', '\n ', 'it', 'ever', 'be', 'in', 'your', 'power', 'to', 'recommend', 'he', 'to', 'any', '\n ', 'body', 'that', 'have', 'a', 'living', 'to', 'bestow', 'be', 'very', 'sure', 'you', '\n ', 'will', 'not', 'forget', 'we', 'and', 'dear', 'Mrs', 'Jennings', 'too', '\n ', 'trust', 'she', 'will', 'speak', 'a', 'good', 'word', 'for', 'we', 'to', 'Sir', 'John', '\n ', 'or', 'Mr', 'Palmer', 'or', 'any', 'friend', 'that', 'may', 'be', 'able', 'to', '\n ', 'assist', 'uspoor', 'Anne', 'be', 'much', 'to', 'blame', 'for', 'what', '\n ', 'she', 'do', 'but', 'she', 'do', 'it', 'for', 'the', 'good', 'so', 'I', 'say', '\n ', 'nothing', 'hope', 'Mrs', 'Jennings', 'will', 'not', 'think', 'it', 'too', 'much', '\n ', 'trouble', 'to', 'give', 'we', 'a', 'call', 'should', 'she', 'come', 'this', 'way', '\n ', 'any', 'morning', 'twould', 'be', 'a', 'great', 'kindness', 'and', 'my', '\n ', 'cousin', 'would', 'be', 'proud', 'to', 'know', 'herMy', 'paper', 'remind', '\n ', 'I', 'to', 'conclude', 'and', 'beg', 'to', 'be', 'most', 'gratefully', '\n ', 'and', 'respectfully', 'remember', 'to', 'she', 'and', 'to', 'Sir', 'John', '\n ', 'and', 'Lady', 'Middleton', 'and', 'the', 'dear', 'child', 'when', 'you', '\n ', 'chance', 'to', 'see', 'they', 'and', 'love', 'to', 'Miss', 'Marianne', '\n\n ', 'I', 'be', 'c', '\n\n', 'as', 'soon', 'as', 'Elinor', 'have', 'finish', 'it', 'she', 'perform', '\n', 'what', 'she', 'conclude', 'to', 'be', 'its', 'writer', 'real', 'design', '\n', 'by', 'place', 'it', 'in', 'the', 'hand', 'of', 'Mrs', 'Jennings', 'who', 'read', 'it', '\n', 'aloud', 'with', 'many', 'comment', 'of', 'satisfaction', 'and', 'praise', '\n\n', 'very', 'well', 'indeedhow', 'prettily', 'she', 'writesaye', '\n', 'that', 'be', 'quite', 'proper', 'to', 'let', 'he', 'be', 'off', 'if', 'he', 'would', '\n', 'that', 'be', 'just', 'like', 'LucyPoor', 'soul', 'I', 'wish', 'I', 'could', 'get', '\n', 'he', 'a', 'living', 'with', 'all', 'my', 'heartshe', 'call', 'I', 'dear', '\n', 'Mrs', 'Jennings', 'you', 'see', ' ', 'she', 'be', 'a', 'goodhearted', 'girl', '\n', 'as', 'ever', 'livedvery', 'well', 'upon', 'my', 'word', ' ', 'that', 'sentence', '\n', 'be', 'very', 'prettily', 'turn', ' ', 'yes', 'yes', 'I', 'will', 'go', 'and', 'see', 'she', '\n', 'sure', 'enough', ' ', 'how', 'attentive', 'she', 'be', 'to', 'think', 'of', 'every', '\n', 'bodythank', 'you', 'my', 'dear', 'for', 'shew', 'it', 'I', ' ', 'it', 'be', '\n', 'as', 'pretty', 'a', 'letter', 'as', 'ever', 'I', 'see', 'and', 'do', 'Lucys', 'head', '\n', 'and', 'heart', 'great', 'credit', '\n\n\n\n', 'chapter', '39', '\n\n\n', 'the', 'Miss', 'Dashwoods', 'have', 'now', 'be', 'rather', 'more', 'than', '\n', 'two', 'month', 'in', 'town', 'and', 'Mariannes', 'impatience', 'to', 'be', 'gone', '\n', 'increase', 'every', 'day', ' ', 'she', 'sigh', 'for', 'the', 'air', 'the', 'liberty', '\n', 'the', 'quiet', 'of', 'the', 'country', 'and', 'fancy', 'that', 'if', 'any', 'place', '\n', 'could', 'give', 'her', 'ease', 'Barton', 'must', 'do', 'it', ' ', 'Elinor', 'be', 'hardly', '\n', 'less', 'anxious', 'than', 'herself', 'for', 'their', 'removal', 'and', 'only', 'so', 'much', '\n', 'less', 'bent', 'on', 'its', 'be', 'effect', 'immediately', 'as', 'that', 'she', '\n', 'be', 'conscious', 'of', 'the', 'difficulty', 'of', 'so', 'long', 'a', 'journey', '\n', 'which', 'Marianne', 'could', 'not', 'be', 'bring', 'to', 'acknowledge', '\n', 'she', 'begin', 'however', 'seriously', 'to', 'turn', 'her', 'thought', 'towards', '\n', 'its', 'accomplishment', 'and', 'have', 'already', 'mention', 'their', 'wish', '\n', 'to', 'their', 'kind', 'hostess', 'who', 'resist', 'they', 'with', 'all', 'the', '\n', 'eloquence', 'of', 'her', 'goodwill', 'when', 'a', 'plan', 'be', 'suggest', '\n', 'which', 'though', 'detain', 'they', 'from', 'home', 'yet', 'a', 'few', 'week', '\n', 'long', 'appear', 'to', 'Elinor', 'altogether', 'much', 'more', 'eligible', '\n', 'than', 'any', 'other', 'the', 'Palmers', 'be', 'to', 'remove', 'to', 'Cleveland', '\n', 'about', 'the', 'end', 'of', 'March', 'for', 'the', 'Easter', 'holiday', '\n', 'and', 'Mrs', 'Jennings', 'with', 'both', 'her', 'friend', 'receive', 'a', 'very', '\n', 'warm', 'invitation', 'from', 'Charlotte', 'to', 'go', 'with', 'they', ' ', 'this', 'would', '\n', 'not', 'in', 'itself', 'have', 'be', 'sufficient', 'for', 'the', 'delicacy', 'of', '\n', 'Miss', 'Dashwoodbut', 'it', 'be', 'inforce', 'with', 'so', 'much', 'real', '\n', 'politeness', 'by', 'Mr', 'Palmer', 'himself', 'as', 'join', 'to', 'the', 'very', '\n', 'great', 'amendment', 'of', 'his', 'manner', 'towards', 'they', 'since', 'her', '\n', 'sister', 'have', 'be', 'know', 'to', 'be', 'unhappy', 'induce', 'she', 'to', 'accept', '\n', 'it', 'with', 'pleasure', '\n\n', 'when', 'she', 'tell', 'Marianne', 'what', 'she', 'have', 'do', 'however', '\n', 'her', 'first', 'reply', 'be', 'not', 'very', 'auspicious', '\n\n', 'Clevelandshe', 'cry', 'with', 'great', 'agitation', '\n', 'no', 'I', 'can', 'not', 'go', 'to', 'Cleveland', '\n\n', 'you', 'forget', 'say', 'Elinor', 'gently', 'that', 'its', 'situation', '\n', 'be', 'notthat', 'it', 'be', 'not', 'in', 'the', 'neighbourhood', 'of', '\n\n', 'but', 'it', 'be', 'in', 'SomersetshireI', 'can', 'not', 'go', '\n', 'into', 'SomersetshireThere', 'where', 'I', 'look', 'forward', '\n', 'to', 'goingNo', 'Elinor', 'you', 'can', 'not', 'expect', 'I', 'to', 'go', 'there', '\n\n', 'Elinor', 'would', 'not', 'argue', 'upon', 'the', 'propriety', 'of', 'overcome', '\n', 'such', 'feelingsshe', 'only', 'endeavour', 'to', 'counteract', 'they', 'by', '\n', 'work', 'on', 'othersrepresente', 'it', 'therefore', 'as', 'a', 'measure', '\n', 'which', 'would', 'fix', 'the', 'time', 'of', 'she', 'return', 'to', 'that', 'dear', 'mother', '\n', 'whom', 'she', 'so', 'much', 'wish', 'to', 'see', 'in', 'a', 'more', 'eligible', '\n', 'more', 'comfortable', 'manner', 'than', 'any', 'other', 'plan', 'could', 'do', '\n', 'and', 'perhaps', 'without', 'any', 'great', 'delay', ' ', 'from', 'Cleveland', '\n', 'which', 'be', 'within', 'a', 'few', 'mile', 'of', 'Bristol', 'the', 'distance', 'to', '\n', 'Barton', 'be', 'not', 'beyond', 'one', 'day', 'though', 'a', 'long', 'day', 'journey', '\n', 'and', 'their', 'mother', 'servant', 'might', 'easily', 'come', 'there', 'to', 'attend', '\n', 'they', 'down', 'and', 'as', 'there', 'could', 'be', 'no', 'occasion', 'of', 'their', '\n', 'stay', 'above', 'a', 'week', 'at', 'Cleveland', 'they', 'might', 'now', 'be', 'at', '\n', 'home', 'in', 'little', 'more', 'than', 'three', 'week', 'time', ' ', 'as', 'Mariannes', '\n', 'affection', 'for', 'her', 'mother', 'be', 'sincere', 'it', 'must', 'triumph', '\n', 'with', 'little', 'difficulty', 'over', 'the', 'imaginary', 'evil', 'she', 'have', 'start', '\n\n', 'Mrs', 'Jennings', 'be', 'so', 'far', 'from', 'be', 'weary', 'of', 'her', 'guest', '\n', 'that', 'she', 'press', 'they', 'very', 'earnestly', 'to', 'return', 'with', 'she', 'again', '\n', 'from', 'Cleveland', ' ', 'Elinor', 'be', 'grateful', 'for', 'the', 'attention', '\n', 'but', 'it', 'could', 'not', 'alter', 'her', 'design', 'and', 'their', 'mother', '\n', 'concurrence', 'be', 'readily', 'gain', 'every', 'thing', 'relative', '\n', 'to', 'their', 'return', 'be', 'arrange', 'as', 'far', 'as', 'it', 'could', 'be', '\n', 'and', 'Marianne', 'find', 'some', 'relief', 'in', 'draw', 'up', 'a', 'statement', '\n', 'of', 'the', 'hour', 'that', 'be', 'yet', 'to', 'divide', 'she', 'from', 'Barton', '\n\n', 'ah', 'Colonel', 'I', 'do', 'not', 'know', 'what', 'you', 'and', 'I', 'shall', '\n', 'do', 'without', 'the', 'Miss', 'Dashwoodswas', 'Mrs', 'Jenningss', '\n', 'address', 'to', 'he', 'when', 'he', 'first', 'call', 'on', 'she', 'after', 'their', '\n', 'leave', 'she', 'be', 'settledfor', 'they', 'be', 'quite', 'resolve', '\n', 'upon', 'go', 'home', 'from', 'the', 'Palmersand', 'how', 'forlorn', 'we', '\n', 'shall', 'be', 'when', 'I', 'come', 'backlord', 'we', 'shall', 'sit', 'and', 'gape', '\n', 'at', 'one', 'another', 'as', 'dull', 'as', 'two', 'cat', '\n\n', 'perhaps', 'Mrs', 'Jennings', 'be', 'in', 'hope', 'by', 'this', 'vigorous', '\n', 'sketch', 'of', 'their', 'future', 'ennui', 'to', 'provoke', 'he', 'to', 'make', '\n', 'that', 'offer', 'which', 'might', 'give', 'himself', 'an', 'escape', 'from', 'it', '\n', 'and', 'if', 'so', 'she', 'have', 'soon', 'afterwards', 'good', 'reason', 'to', 'think', '\n', 'her', 'object', 'gain', 'for', 'on', 'elinor', 'move', 'to', 'the', 'window', '\n', 'to', 'take', 'more', 'expeditiously', 'the', 'dimension', 'of', 'a', 'print', '\n', 'which', 'she', 'be', 'go', 'to', 'copy', 'for', 'her', 'friend', 'he', 'follow', '\n', 'she', 'to', 'it', 'with', 'a', 'look', 'of', 'particular', 'meaning', 'and', 'converse', '\n', 'with', 'she', 'there', 'for', 'several', 'minute', ' ', 'the', 'effect', 'of', 'his', '\n', 'discourse', 'on', 'the', 'lady', 'too', 'could', 'not', 'escape', 'her', 'observation', '\n', 'for', 'though', 'she', 'be', 'too', 'honorable', 'to', 'listen', 'and', 'have', 'even', '\n', 'change', 'her', 'seat', 'on', 'purpose', 'that', 'she', 'might', 'not', 'hear', '\n', 'to', 'one', 'close', 'by', 'the', 'piano', 'forte', 'on', 'which', 'Marianne', '\n', 'be', 'play', 'she', 'could', 'not', 'keep', 'herself', 'from', 'see', '\n', 'that', 'Elinor', 'change', 'colour', 'attend', 'with', 'agitation', '\n', 'and', 'be', 'too', 'intent', 'on', 'what', 'he', 'say', 'to', 'pursue', 'her', 'employment', '\n', 'still', 'far', 'in', 'confirmation', 'of', 'her', 'hope', 'in', 'the', 'interval', '\n', 'of', 'Mariannes', 'turn', 'from', 'one', 'lesson', 'to', 'another', '\n', 'some', 'word', 'of', 'the', 'Colonels', 'inevitably', 'reach', 'her', 'ear', '\n', 'in', 'which', 'he', 'seem', 'to', 'be', 'apologise', 'for', 'the', 'badness', '\n', 'of', 'his', 'house', ' ', 'this', 'set', 'the', 'matter', 'beyond', 'a', 'doubt', '\n', 'she', 'wonder', 'indeed', 'at', 'his', 'thinking', 'it', 'necessary', '\n', 'to', 'do', 'so', 'but', 'suppose', 'it', 'to', 'be', 'the', 'proper', 'etiquette', '\n', 'what', 'Elinor', 'say', 'in', 'reply', 'she', 'could', 'not', 'distinguish', '\n', 'but', 'judge', 'from', 'the', 'motion', 'of', 'her', 'lip', 'that', 'she', 'do', '\n', 'not', 'think', 'that', 'any', 'material', 'objectionand', 'Mrs', 'Jennings', '\n', 'commend', 'she', 'in', 'her', 'heart', 'for', 'be', 'so', 'honest', '\n', 'they', 'then', 'talk', 'on', 'for', 'a', 'few', 'minute', 'long', 'without', 'her', '\n', 'catch', 'a', 'syllable', 'when', 'another', 'lucky', 'stop', 'in', 'Mariannes', '\n', 'performance', 'bring', 'she', 'these', 'word', 'in', 'the', 'Colonels', 'calm', 'voice', '\n\n', 'I', 'be', 'afraid', 'it', 'can', 'not', 'take', 'place', 'very', 'soon', '\n\n', 'astonish', 'and', 'shock', 'at', 'so', 'unloverlike', 'a', 'speech', '\n', 'she', 'be', 'almost', 'ready', 'to', 'cry', 'out', 'Lord', 'what', 'should', '\n', 'hinder', 'itbut', 'check', 'her', 'desire', 'confine', 'herself', '\n', 'to', 'this', 'silent', 'ejaculation', '\n\n', 'this', 'be', 'very', 'strangesure', 'he', 'need', 'not', 'wait', 'to', 'be', 'old', '\n\n', 'this', 'delay', 'on', 'the', 'Colonels', 'side', 'however', 'do', 'not', '\n', 'seem', 'to', 'offend', 'or', 'mortify', 'his', 'fair', 'companion', 'in', 'the', 'least', '\n', 'for', 'on', 'their', 'break', 'up', 'the', 'conference', 'soon', 'afterwards', '\n', 'and', 'move', 'different', 'way', 'Mrs', 'Jennings', 'very', 'plainly', 'hear', '\n', 'Elinor', 'say', 'and', 'with', 'a', 'voice', 'which', 'shew', 'she', 'to', 'feel', 'what', 'she', 'say', '\n\n', 'I', 'shall', 'always', 'think', 'myself', 'very', 'much', 'oblige', 'to', 'you', '\n\n', 'Mrs', 'Jennings', 'be', 'delighted', 'with', 'her', 'gratitude', '\n', 'and', 'only', 'wonder', 'that', 'after', 'hear', 'such', 'a', 'sentence', '\n', 'the', 'Colonel', 'should', 'be', 'able', 'to', 'take', 'leave', 'of', 'they', 'as', 'he', '\n', 'immediately', 'do', 'with', 'the', 'utmost', 'sangfroid', 'and', 'go', 'away', '\n', 'without', 'make', 'she', 'any', 'replyshe', 'have', 'not', 'think', 'her', 'old', '\n', 'friend', 'could', 'have', 'make', 'so', 'indifferent', 'a', 'suitor', '\n\n', 'what', 'have', 'really', 'pass', 'between', 'they', 'be', 'to', 'this', 'effect', '\n\n', 'I', 'have', 'hear', 'say', 'he', 'with', 'great', 'compassion', '\n', 'of', 'the', 'injustice', 'your', 'friend', 'Mr', 'Ferrars', 'have', 'suffer', '\n', 'from', 'his', 'family', 'for', 'if', 'I', 'understand', 'the', 'matter', 'right', '\n', 'he', 'have', 'be', 'entirely', 'cast', 'off', 'by', 'they', 'for', 'persevere', '\n', 'in', 'his', 'engagement', 'with', 'a', 'very', 'deserving', 'young', 'woman', '\n', 'have', 'I', 'be', 'rightly', 'informedis', 'it', 'so', '\n\n', 'Elinor', 'tell', 'he', 'that', 'it', 'be', '\n\n', 'the', 'cruelty', 'the', 'impolitic', 'crueltyhe', 'reply', '\n', 'with', 'great', 'feelingof', 'dividing', 'or', 'attempt', 'to', 'divide', '\n', 'two', 'young', 'people', 'long', 'attach', 'to', 'each', 'other', 'be', 'terrible', '\n', 'Mrs', 'Ferrars', 'do', 'not', 'know', 'what', 'she', 'may', 'be', 'doingwhat', '\n', 'she', 'may', 'drive', 'her', 'son', 'to', ' ', 'I', 'have', 'see', 'Mr', 'Ferrars', 'two', '\n', 'or', 'three', 'time', 'in', 'Harley', 'Street', 'and', 'be', 'much', 'pleased', '\n', 'with', 'he', ' ', 'he', 'be', 'not', 'a', 'young', 'man', 'with', 'whom', 'one', 'can', '\n', 'be', 'intimately', 'acquaint', 'in', 'a', 'short', 'time', 'but', 'I', 'have', '\n', 'see', 'enough', 'of', 'he', 'to', 'wish', 'he', 'well', 'for', 'his', 'own', 'sake', '\n', 'and', 'as', 'a', 'friend', 'of', 'your', 'I', 'wish', 'it', 'still', 'more', '\n', 'I', 'understand', 'that', 'he', 'intend', 'to', 'take', 'order', ' ', 'will', 'you', '\n', 'be', 'so', 'good', 'as', 'to', 'tell', 'he', 'that', 'the', 'living', 'of', 'Delaford', '\n', 'now', 'just', 'vacant', 'as', 'I', 'be', 'inform', 'by', 'this', 'day', 'post', '\n', 'be', 'his', 'if', 'he', 'think', 'it', 'worth', 'his', 'acceptancebut', 'that', '\n', 'perhaps', 'so', 'unfortunately', 'circumstanced', 'as', 'he', 'be', 'now', '\n', 'it', 'may', 'be', ' ', 'nonsense', 'to', 'appear', 'to', 'doubt', 'I', 'only', 'wish', 'it', '\n', 'be', 'more', ' ', 'valuable', 'it', 'be', 'a', 'rectory', 'but', 'a', 'small', 'one', '\n', 'the', 'late', 'incumbent', 'I', 'believe', 'do', 'not', 'make', 'more', 'than', '\n', '200', 'L', 'per', 'annum', 'and', 'though', 'it', 'be', 'certainly', 'capable', '\n', 'of', 'improvement', 'I', 'fear', 'not', 'to', 'such', 'an', 'amount', 'as', '\n', 'to', 'afford', 'he', 'a', 'very', 'comfortable', 'income', ' ', 'such', 'as', 'it', 'be', '\n', 'however', 'my', 'pleasure', 'in', 'present', 'he', 'to', 'it', '\n', 'will', 'be', 'very', 'great', ' ', 'Pray', 'assure', 'he', 'of', 'it', '\n\n', 'elinor', 'astonishment', 'at', 'this', 'commission', 'could', '\n', 'hardly', 'have', 'be', 'great', 'have', 'the', 'Colonel', 'be', 'really', '\n', 'make', 'she', 'an', 'offer', 'of', 'his', 'hand', ' ', 'the', 'preferment', '\n', 'which', 'only', 'two', 'day', 'before', 'she', 'have', 'consider', 'as', 'hopeless', '\n', 'for', 'Edward', 'be', 'already', 'provide', 'to', 'enable', 'he', 'to', 'marry', '\n', 'and', 'SHE', 'of', 'all', 'people', 'in', 'the', 'world', 'be', 'fix', 'on', 'to', '\n', 'bestow', 'ither', 'emotion', 'be', 'such', 'as', 'Mrs', 'Jennings', 'have', '\n', 'attribute', 'to', 'a', 'very', 'different', 'causebut', 'whatever', 'minor', '\n', 'feeling', 'less', 'pure', 'less', 'pleasing', 'might', 'have', 'a', 'share', '\n', 'in', 'that', 'emotion', 'her', 'esteem', 'for', 'the', 'general', 'benevolence', '\n', 'and', 'her', 'gratitude', 'for', 'the', 'particular', 'friendship', '\n', 'which', 'together', 'prompt', 'Colonel', 'Brandon', 'to', 'this', 'act', '\n', 'be', 'strongly', 'feel', 'and', 'warmly', 'express', ' ', 'she', 'thank', 'he', '\n', 'for', 'it', 'with', 'all', 'her', 'heart', 'speak', 'of', 'Edwards', 'principle', 'and', '\n', 'disposition', 'with', 'that', 'praise', 'which', 'she', 'know', 'they', 'to', 'deserve', '\n', 'and', 'promise', 'to', 'undertake', 'the', 'commission', 'with', 'pleasure', '\n', 'if', 'it', 'be', 'really', 'his', 'wish', 'to', 'put', 'off', 'so', 'agreeable', 'an', 'office', '\n', 'to', 'another', ' ', 'but', 'at', 'the', 'same', 'time', 'she', 'could', 'not', 'help', '\n', 'think', 'that', 'no', 'one', 'could', 'so', 'well', 'perform', 'it', 'as', 'himself', '\n', 'it', 'be', 'an', 'office', 'in', 'short', 'from', 'which', 'unwilling', 'to', 'give', '\n', 'Edward', 'the', 'pain', 'of', 'receive', 'an', 'obligation', 'from', 'she', '\n', 'she', 'would', 'have', 'be', 'very', 'glad', 'to', 'be', 'spare', 'herself', '\n', 'but', 'Colonel', 'Brandon', 'on', 'motive', 'of', 'equal', 'delicacy', '\n', 'decline', 'it', 'likewise', 'still', 'seem', 'so', 'desirous', 'of', 'its', 'be', '\n', 'give', 'through', 'her', 'mean', 'that', 'she', 'would', 'not', 'on', 'any', 'account', '\n', 'make', 'farth', 'opposition', ' ', 'Edward', 'she', 'believe', 'be', 'still', 'in', '\n', 'town', '\n', 'and', 'fortunately', 'she', 'have', 'hear', 'his', 'address', 'from', 'Miss', 'Steele', '\n', 'she', 'could', 'undertake', 'therefore', 'to', 'inform', 'he', 'of', 'it', '\n', 'in', 'the', 'course', 'of', 'the', 'day', ' ', 'after', 'this', 'have', 'be', 'settle', '\n', 'Colonel', 'Brandon', 'begin', 'to', 'talk', 'of', 'his', 'own', 'advantage', '\n', 'in', 'secure', 'so', 'respectable', 'and', 'agreeable', 'a', 'neighbour', '\n', 'and', 'then', 'it', 'be', 'that', 'he', 'mention', 'with', 'regret', 'that', 'the', '\n', 'house', 'be', 'small', 'and', 'indifferentan', 'evil', 'which', 'Elinor', '\n', 'as', 'Mrs', 'Jennings', 'have', 'suppose', 'she', 'to', 'do', 'make', 'very', 'light', 'of', '\n', 'at', 'least', 'as', 'far', 'as', 'regard', 'its', 'size', '\n\n', 'the', 'smallness', 'of', 'the', 'house', 'say', 'she', '\n', 'I', 'can', 'not', 'imagine', 'any', 'inconvenience', 'to', 'they', '\n', 'for', 'it', 'will', 'be', 'in', 'proportion', 'to', 'their', 'family', 'and', 'income', '\n\n', 'by', 'which', 'the', 'Colonel', 'be', 'surprised', 'to', 'find', 'that', 'SHE', '\n', 'be', 'consider', 'Mr', 'Ferrarss', 'marriage', 'as', 'the', 'certain', '\n', 'consequence', 'of', 'the', 'presentation', 'for', 'he', 'do', 'not', 'suppose', 'it', '\n', 'possible', 'that', 'Delaford', 'living', 'could', 'supply', 'such', 'an', 'income', '\n', 'as', 'anybody', 'in', 'his', 'style', 'of', 'life', 'would', 'venture', 'to', 'settle', 'on', '\n', 'and', 'he', 'say', 'so', '\n\n', 'this', 'little', 'rectory', 'can', 'do', 'no', 'more', 'than', 'make', 'Mr', 'ferrar', '\n', 'comfortable', 'as', 'a', 'bachelor', 'it', 'can', 'not', 'enable', 'he', 'to', 'marry', '\n', 'I', 'be', 'sorry', 'to', 'say', 'that', 'my', 'patronage', 'end', 'with', 'this', '\n', 'and', 'my', 'interest', 'be', 'hardly', 'more', 'extensive', ' ', 'if', 'however', '\n', 'by', 'an', 'unforeseen', 'chance', 'it', 'should', 'be', 'in', 'my', 'power', 'to', 'serve', '\n', 'he', 'far', 'I', 'must', 'think', 'very', 'differently', 'of', 'he', '\n', 'from', 'what', 'I', 'now', 'do', 'if', 'I', 'be', 'not', 'as', 'ready', 'to', 'be', 'useful', '\n', 'to', 'he', 'then', 'as', 'I', 'sincerely', 'wish', 'I', 'could', 'be', 'at', 'present', '\n', 'what', 'I', 'be', 'now', 'do', 'indeed', 'seem', 'nothing', 'at', 'all', '\n', 'since', 'it', 'can', 'advance', 'he', 'so', 'little', 'towards', 'what', 'must', '\n', 'be', 'his', 'principal', 'his', 'only', 'object', 'of', 'happiness', '\n', 'his', 'marriage', 'must', 'still', 'be', 'a', 'distant', 'goodat', 'least', '\n', 'I', 'be', 'afraid', 'it', 'can', 'not', 'take', 'place', 'very', 'soon', '\n\n', 'such', 'be', 'the', 'sentence', 'which', 'when', 'misunderstood', '\n', 'so', 'justly', 'offend', 'the', 'delicate', 'feeling', 'of', 'Mrs', 'Jennings', '\n', 'but', 'after', 'this', 'narration', 'of', 'what', 'really', 'pass', 'between', '\n', 'Colonel', 'Brandon', 'and', 'Elinor', 'while', 'they', 'stand', 'at', 'the', 'window', '\n', 'the', 'gratitude', 'express', 'by', 'the', 'latter', 'on', 'their', 'parting', 'may', '\n', 'perhaps', 'appear', 'in', 'general', 'not', 'less', 'reasonably', 'excited', '\n', 'nor', 'less', 'properly', 'word', 'than', 'if', 'it', 'have', 'arise', 'from', '\n', 'an', 'offer', 'of', 'marriage', '\n\n\n\n', 'chapter', '40', '\n\n\n', 'well', 'Miss', 'Dashwood', 'say', 'Mrs', 'Jennings', '\n', 'sagaciously', 'smile', 'as', 'soon', 'as', 'the', 'gentleman', 'have', 'withdraw', '\n', 'I', 'do', 'not', 'ask', 'you', 'what', 'the', 'Colonel', 'have', 'be', 'say', 'to', 'you', '\n', 'for', 'though', 'upon', 'my', 'honour', 'I', 'try', 'to', 'keep', 'out', 'of', 'hearing', '\n', 'I', 'could', 'not', 'help', 'catch', 'enough', 'to', 'understand', 'his', 'business', '\n', 'and', 'I', 'assure', 'you', 'I', 'never', 'be', 'well', 'pleased', 'in', 'my', 'life', '\n', 'and', 'I', 'wish', 'you', 'joy', 'of', 'it', 'with', 'all', 'my', 'heart', '\n\n', 'thank', 'you', 'maam', 'say', 'Elinor', ' ', 'it', 'be', 'a', 'matter', '\n', 'of', 'great', 'joy', 'to', 'I', 'and', 'I', 'feel', 'the', 'goodness', 'of', 'Colonel', '\n', 'Brandon', 'most', 'sensibly', ' ', 'there', 'be', 'not', 'many', 'man', 'who', 'would', '\n', 'act', 'as', 'he', 'have', 'do', ' ', 'few', 'people', 'who', 'have', 'so', 'compassionate', '\n', 'a', 'heart', ' ', 'I', 'never', 'be', 'more', 'astonished', 'in', 'my', 'life', '\n\n', 'Lord', 'my', 'dear', 'you', 'be', 'very', 'modest', ' ', 'I', 'ant', 'the', 'least', '\n', 'astonish', 'at', 'it', 'in', 'the', 'world', 'for', 'I', 'have', 'often', 'think', '\n', 'of', 'late', 'there', 'be', 'nothing', 'more', 'likely', 'to', 'happen', '\n\n', 'you', 'judge', 'from', 'your', 'knowledge', 'of', 'the', 'Colonels', '\n', 'general', 'benevolence', 'but', 'at', 'least', 'you', 'could', 'not', 'foresee', '\n', 'that', 'the', 'opportunity', 'would', 'so', 'very', 'soon', 'occur', '\n\n', 'opportunity', 'repeat', 'Mrs', 'JenningsOh', 'as', 'to', 'that', '\n', 'when', 'a', 'man', 'have', 'once', 'make', 'up', 'his', 'mind', 'to', 'such', 'a', 'thing', '\n', 'somehow', 'or', 'other', 'he', 'will', 'soon', 'find', 'an', 'opportunity', '\n', 'well', 'my', 'dear', 'I', 'wish', 'you', 'joy', 'of', 'it', 'again', 'and', 'again', '\n', 'and', 'if', 'ever', 'there', 'be', 'a', 'happy', 'couple', 'in', 'the', 'world', 'I', 'think', '\n', 'I', 'shall', 'soon', 'know', 'where', 'to', 'look', 'for', 'they', '\n\n', 'you', 'mean', 'to', 'go', 'to', 'Delaford', 'after', 'they', 'I', 'suppose', '\n', 'say', 'Elinor', 'with', 'a', 'faint', 'smile', '\n\n', 'aye', 'my', 'dear', 'that', 'I', 'do', 'indeed', ' ', 'and', 'as', 'to', 'the', 'house', '\n', 'be', 'a', 'bad', 'one', 'I', 'do', 'not', 'know', 'what', 'the', 'Colonel', 'would', 'be', 'at', '\n', 'for', 'it', 'be', 'as', 'good', 'a', 'one', 'as', 'ever', 'I', 'see', '\n\n', 'he', 'speak', 'of', 'its', 'be', 'out', 'of', 'repair', '\n\n', 'well', 'and', 'whose', 'fault', 'be', 'that', 'why', 'do', 'not', 'he', 'repair', 'it', '\n', 'who', 'should', 'do', 'it', 'but', 'himself', '\n\n', 'they', 'be', 'interrupt', 'by', 'the', 'servant', 'come', 'in', 'to', '\n', 'announce', 'the', 'carriage', 'be', 'at', 'the', 'door', 'and', 'Mrs', 'Jennings', '\n', 'immediately', 'prepare', 'to', 'go', 'say', '\n\n', 'well', 'my', 'dear', 'I', 'must', 'be', 'go', 'before', 'I', 'have', 'have', 'half', '\n', 'my', 'talk', 'out', ' ', 'but', 'however', 'we', 'may', 'have', 'it', 'all', 'over', 'in', '\n', 'the', 'evening', 'for', 'we', 'shall', 'be', 'quite', 'alone', ' ', 'I', 'do', 'not', 'ask', '\n', 'you', 'to', 'go', 'with', 'I', 'for', 'I', 'dare', 'say', 'your', 'mind', 'be', 'too', 'full', '\n', 'of', 'the', 'matter', 'to', 'care', 'for', 'company', 'and', 'besides', 'you', 'must', '\n', 'long', 'to', 'tell', 'your', 'sister', 'all', 'about', 'it', '\n\n', 'Marianne', 'have', 'leave', 'the', 'room', 'before', 'the', 'conversation', 'begin', '\n\n', 'certainly', 'maam', 'I', 'shall', 'tell', 'Marianne', 'of', 'it', '\n', 'but', 'I', 'shall', 'not', 'mention', 'it', 'at', 'present', 'to', 'any', 'body', 'else', '\n\n', 'oh', 'very', 'well', 'say', 'Mrs', 'Jennings', 'rather', 'disappoint', '\n', 'then', 'you', 'would', 'not', 'have', 'I', 'tell', 'it', 'to', 'Lucy', 'for', 'I', 'think', '\n', 'of', 'go', 'as', 'far', 'as', 'Holborn', 'today', '\n\n', 'no', 'maam', 'not', 'even', 'Lucy', 'if', 'you', 'please', '\n', 'one', 'day', 'delay', 'will', 'not', 'be', 'very', 'material', 'and', 'till', 'I', '\n', 'have', 'write', 'to', 'Mr', 'Ferrars', 'I', 'think', 'it', 'ought', 'not', 'to', 'be', '\n', 'mention', 'to', 'any', 'body', 'else', ' ', 'I', 'shall', 'do', 'that', 'directly', '\n', 'it', 'be', 'of', 'importance', 'that', 'no', 'time', 'should', 'be', 'lose', 'with', 'he', '\n', 'for', 'he', 'will', 'of', 'course', 'have', 'much', 'to', 'do', 'relative', 'to', '\n', 'his', 'ordination', '\n\n', 'this', 'speech', 'at', 'first', 'puzzle', 'Mrs', 'Jennings', 'exceedingly', '\n', 'why', 'Mr', 'Ferrars', 'be', 'to', 'have', 'be', 'write', 'to', 'about', 'it', '\n', 'in', 'such', 'a', 'hurry', 'she', 'could', 'not', 'immediately', 'comprehend', '\n', 'a', 'few', 'moment', 'reflection', 'however', 'produce', 'a', 'very', 'happy', 'idea', '\n', 'and', 'she', 'exclaim', '\n\n', 'oh', 'hoi', 'understand', 'you', ' ', 'Mr', 'Ferrars', 'be', 'to', 'be', '\n', 'the', 'man', ' ', 'well', 'so', 'much', 'the', 'well', 'for', 'he', ' ', 'ay', 'to', 'be', 'sure', '\n', 'he', 'must', 'be', 'ordain', 'in', 'readiness', 'and', 'I', 'be', 'very', 'glad', '\n', 'to', 'find', 'thing', 'be', 'so', 'forward', 'between', 'you', ' ', 'but', 'my', 'dear', '\n', 'be', 'not', 'this', 'rather', 'out', 'of', 'character', ' ', 'should', 'not', 'the', 'Colonel', '\n', 'write', 'himselfsure', 'he', 'be', 'the', 'proper', 'person', '\n\n', 'Elinor', 'do', 'not', 'quite', 'understand', 'the', 'beginning', 'of', '\n', 'Mrs', 'Jenningss', 'speech', 'neither', 'do', 'she', 'think', 'it', 'worth', '\n', 'inquire', 'into', 'and', 'therefore', 'only', 'reply', 'to', 'its', 'conclusion', '\n\n', 'Colonel', 'Brandon', 'be', 'so', 'delicate', 'a', 'man', 'that', 'he', 'rather', '\n', 'wish', 'any', 'one', 'to', 'announce', 'his', 'intention', 'to', 'Mr', 'Ferrars', '\n', 'than', 'himself', '\n\n', 'and', 'so', 'you', 'be', 'force', 'to', 'do', 'it', ' ', 'well', 'that', 'be', 'an', 'odd', '\n', 'kind', 'of', 'delicacy', ' ', 'however', 'I', 'will', 'not', 'disturb', 'you', 'see', '\n', 'she', 'prepare', 'to', 'write', ' ', 'you', 'know', 'your', 'own', 'concern', 'well', '\n', 'so', 'goodby', 'my', 'dear', ' ', 'I', 'have', 'not', 'hear', 'of', 'any', 'thing', 'to', '\n', 'please', 'I', 'so', 'well', 'since', 'Charlotte', 'be', 'bring', 'to', 'bed', '\n\n', 'and', 'away', 'she', 'go', 'but', 'return', 'again', 'in', 'a', 'moment', '\n\n', 'I', 'have', 'just', 'be', 'think', 'of', 'Bettys', 'sister', 'my', 'dear', '\n', 'I', 'should', 'be', 'very', 'glad', 'to', 'get', 'she', 'so', 'good', 'a', 'mistress', '\n', 'but', 'whether', 'she', 'would', 'do', 'for', 'a', 'ladys', 'maid', 'I', 'be', 'sure', 'I', '\n', 'can', 'not', 'tell', ' ', 'she', 'be', 'an', 'excellent', 'housemaid', 'and', 'work', '\n', 'very', 'well', 'at', 'her', 'needle', ' ', 'however', 'you', 'will', 'think', 'of', 'all', '\n', 'that', 'at', 'your', 'leisure', '\n\n', 'certainly', 'maam', 'reply', 'Elinor', 'not', 'hear', '\n', 'much', 'of', 'what', 'she', 'say', 'and', 'more', 'anxious', 'to', 'be', 'alone', '\n', 'than', 'to', 'be', 'mistress', 'of', 'the', 'subject', '\n\n', 'how', 'she', 'should', 'beginhow', 'she', 'should', 'express', '\n', 'herself', 'in', 'her', 'note', 'to', 'Edward', 'be', 'now', 'all', 'her', 'concern', '\n', 'the', 'particular', 'circumstance', 'between', 'they', 'make', '\n', 'a', 'difficulty', 'of', 'that', 'which', 'to', 'any', 'other', 'person', 'would', '\n', 'have', 'be', 'the', 'easy', 'thing', 'in', 'the', 'world', 'but', 'she', '\n', 'equally', 'fear', 'to', 'say', 'too', 'much', 'or', 'too', 'little', 'and', 'sit', '\n', 'deliberate', 'over', 'her', 'paper', 'with', 'the', 'pen', 'in', 'her', 'band', '\n', 'till', 'break', 'in', 'on', 'by', 'the', 'entrance', 'of', 'Edward', 'himself', '\n\n', 'he', 'have', 'meet', 'Mrs', 'Jennings', 'at', 'the', 'door', 'in', 'her', 'way', 'to', '\n', 'the', 'carriage', 'as', 'he', 'come', 'to', 'leave', 'his', 'farewell', 'card', 'and', 'she', '\n', 'after', 'apologise', 'for', 'not', 'return', 'herself', 'have', 'oblige', '\n', 'he', 'to', 'enter', 'by', 'say', 'that', 'Miss', 'Dashwood', 'be', 'above', '\n', 'and', 'want', 'to', 'speak', 'with', 'he', 'on', 'very', 'particular', 'business', '\n\n', 'Elinor', 'have', 'just', 'be', 'congratulate', 'herself', '\n', 'in', 'the', 'midst', 'of', 'her', 'perplexity', 'that', 'however', 'difficult', 'it', '\n', 'might', 'be', 'to', 'express', 'herself', 'properly', 'by', 'letter', 'it', 'be', '\n', 'at', 'least', 'preferable', 'to', 'give', 'the', 'information', 'by', 'word', '\n', 'of', 'mouth', 'when', 'her', 'visitor', 'enter', 'to', 'force', 'she', 'upon', 'this', '\n', 'great', 'exertion', 'of', 'all', ' ', 'her', 'astonishment', 'and', 'confusion', '\n', 'be', 'very', 'great', 'on', 'his', 'so', 'sudden', 'appearance', ' ', 'she', 'have', '\n', 'not', 'see', 'he', 'before', 'since', 'his', 'engagement', 'become', 'public', '\n', 'and', 'therefore', 'not', 'since', 'his', 'know', 'she', 'to', 'be', 'acquaint', '\n', 'with', 'it', 'which', 'with', 'the', 'consciousness', 'of', 'what', 'she', '\n', 'have', 'be', 'think', 'of', 'and', 'what', 'she', 'have', 'to', 'tell', 'he', '\n', 'make', 'she', 'feel', 'particularly', 'uncomfortable', 'for', 'some', 'minute', '\n', 'he', 'too', 'be', 'much', 'distressed', 'and', 'they', 'sit', 'down', 'together', '\n', 'in', 'a', 'most', 'promising', 'state', 'of', 'embarrassmentwhether', 'he', '\n', 'have', 'ask', 'her', 'pardon', 'for', 'his', 'intrusion', 'on', 'first', 'come', '\n', 'into', 'the', 'room', 'he', 'could', 'not', 'recollect', 'but', 'determine', '\n', 'to', 'be', 'on', 'the', 'safe', 'side', 'he', 'make', 'his', 'apology', 'in', 'form', '\n', 'as', 'soon', 'as', 'he', 'could', 'say', 'any', 'thing', 'after', 'take', 'a', 'chair', '\n\n', 'Mrs', 'Jennings', 'tell', 'I', 'say', 'he', 'that', 'you', 'wish', '\n', 'to', 'speak', 'with', 'I', 'at', 'least', 'I', 'understand', 'her', 'soor', 'I', '\n', 'certainly', 'should', 'not', 'have', 'intrude', 'on', 'you', 'in', 'such', 'a', 'manner', '\n', 'though', 'at', 'the', 'same', 'time', 'I', 'should', 'have', 'be', 'extremely', '\n', 'sorry', 'to', 'leave', 'London', 'without', 'see', 'you', 'and', 'your', 'sister', '\n', 'especially', 'as', 'it', 'will', 'most', 'likely', 'be', 'some', 'timeit', '\n', 'be', 'not', 'probable', 'that', 'I', 'should', 'soon', 'have', 'the', 'pleasure', '\n', 'of', 'meet', 'you', 'again', ' ', 'I', 'go', 'to', 'Oxford', 'tomorrow', '\n\n', 'you', 'would', 'not', 'have', 'go', 'however', 'say', 'Elinor', '\n', 'recover', 'herself', 'and', 'determine', 'to', 'get', 'over', 'what', 'she', '\n', 'so', 'much', 'dread', 'as', 'soon', 'as', 'possible', 'without', 'receive', '\n', 'our', 'good', 'wish', 'even', 'if', 'we', 'have', 'not', 'be', 'able', 'to', 'give', 'they', '\n', 'in', 'person', ' ', 'Mrs', 'Jennings', 'be', 'quite', 'right', 'in', 'what', 'she', 'say', '\n', 'I', 'have', 'something', 'of', 'consequence', 'to', 'inform', 'you', 'of', '\n', 'which', 'I', 'be', 'on', 'the', 'point', 'of', 'communicating', 'by', 'paper', '\n', 'I', 'be', 'charge', 'with', 'a', 'most', 'agreeable', 'office', 'breathing', '\n', 'rather', 'fast', 'than', 'usual', 'as', 'she', 'speak', ' ', 'Colonel', 'Brandon', '\n', 'who', 'be', 'here', 'only', 'ten', 'minute', 'ago', 'have', 'desire', 'I', 'to', 'say', '\n', 'that', 'understanding', 'you', 'mean', 'to', 'take', 'order', 'he', 'have', '\n', 'great', 'pleasure', 'in', 'offer', 'you', 'the', 'living', 'of', 'Delaford', '\n', 'now', 'just', 'vacant', 'and', 'only', 'wish', 'it', 'be', 'more', 'valuable', '\n', 'allow', 'I', 'to', 'congratulate', 'you', 'on', 'have', 'so', 'respectable', '\n', 'and', 'welljudge', 'a', 'friend', 'and', 'to', 'join', 'in', 'his', 'wish', 'that', '\n', 'the', 'livingit', 'be', 'about', 'two', 'hundred', 'ayearwere', 'much', '\n', 'more', 'considerable', 'and', 'such', 'as', 'might', 'well', 'enable', 'you', '\n', 'toas', 'might', 'be', 'more', 'than', 'a', 'temporary', 'accommodation', 'to', '\n', 'yourselfsuch', 'in', 'short', 'as', 'might', 'establish', 'all', 'your', 'view', '\n', 'of', 'happiness', '\n\n', 'what', 'Edward', 'feel', 'as', 'he', 'could', 'not', 'say', 'it', 'himself', '\n', 'it', 'can', 'not', 'be', 'expect', 'that', 'any', 'one', 'else', 'should', 'say', 'for', 'he', '\n', 'he', 'look', 'all', 'the', 'astonishment', 'which', 'such', 'unexpected', '\n', 'such', 'unthoughtof', 'information', 'could', 'not', 'fail', 'of', 'exciting', '\n', 'but', 'he', 'say', 'only', 'these', 'two', 'word', '\n\n', 'Colonel', 'Brandon', '\n\n', 'ye', 'continue', 'Elinor', 'gather', 'more', 'resolution', '\n', 'as', 'some', 'of', 'the', 'bad', 'be', 'over', 'Colonel', 'Brandon', 'mean', '\n', 'it', 'as', 'a', 'testimony', 'of', 'his', 'concern', 'for', 'what', 'have', 'lately', '\n', 'passedfor', 'the', 'cruel', 'situation', 'in', 'which', 'the', 'unjustifiable', '\n', 'conduct', 'of', 'your', 'family', 'have', 'place', 'youa', 'concern', '\n', 'which', 'I', 'be', 'sure', 'Marianne', 'myself', 'and', 'all', 'your', 'friend', '\n', 'must', 'share', 'and', 'likewise', 'as', 'a', 'proof', 'of', 'his', 'high', 'esteem', '\n', 'for', 'your', 'general', 'character', 'and', 'his', 'particular', 'approbation', '\n', 'of', 'your', 'behaviour', 'on', 'the', 'present', 'occasion', '\n\n', 'Colonel', 'Brandon', 'give', 'I', 'a', 'livingcan', 'it', 'be', 'possible', '\n\n', 'the', 'unkindness', 'of', 'your', 'own', 'relation', 'have', 'make', 'you', '\n', 'astonish', 'to', 'find', 'friendship', 'any', 'where', '\n\n', 'no', 'reply', 'be', 'with', 'sudden', 'consciousness', 'not', 'to', '\n', 'find', 'it', 'in', 'you', 'for', 'I', 'can', 'not', 'be', 'ignorant', 'that', 'to', 'you', '\n', 'to', 'your', 'goodness', 'I', 'owe', 'it', 'allI', 'feel', 'iti', 'would', 'express', '\n', 'it', 'if', 'I', 'couldbut', 'as', 'you', 'well', 'know', 'I', 'be', 'no', 'orator', '\n\n', 'you', 'be', 'very', 'much', 'mistaken', ' ', 'I', 'do', 'assure', 'you', '\n', 'that', 'you', 'owe', 'it', 'entirely', 'at', 'least', 'almost', 'entirely', '\n', 'to', 'your', 'own', 'merit', 'and', 'Colonel', 'Brandons', 'discernment', '\n', 'of', 'it', ' ', 'I', 'have', 'have', 'no', 'hand', 'in', 'it', ' ', 'I', 'do', 'not', 'even', 'know', '\n', 'till', 'I', 'understand', 'his', 'design', 'that', 'the', 'living', 'be', 'vacant', '\n', 'nor', 'have', 'it', 'ever', 'occur', 'to', 'I', 'that', 'he', 'might', 'have', '\n', 'have', 'such', 'a', 'living', 'in', 'his', 'gift', ' ', 'as', 'a', 'friend', 'of', 'mine', '\n', 'of', 'my', 'family', 'he', 'may', 'perhapsindeed', 'I', 'know', 'he', 'have', '\n', 'still', 'great', 'pleasure', 'in', 'bestow', 'it', 'but', 'upon', 'my', 'word', '\n', 'you', 'owe', 'nothing', 'to', 'my', 'solicitation', '\n\n', 'Truth', 'oblige', 'she', 'to', 'acknowledge', 'some', 'small', 'share', '\n', 'in', 'the', 'action', 'but', 'she', 'be', 'at', 'the', 'same', 'time', 'so', 'unwilling', '\n', 'to', 'appear', 'as', 'the', 'benefactress', 'of', 'Edward', 'that', 'she', 'acknowledge', '\n', 'it', 'with', 'hesitation', 'which', 'probably', 'contribute', 'to', 'fix', '\n', 'that', 'suspicion', 'in', 'his', 'mind', 'which', 'have', 'recently', 'enter', 'it', '\n', 'for', 'a', 'short', 'time', 'he', 'sit', 'deep', 'in', 'thought', 'after', 'Elinor', 'have', 'cease', '\n', 'to', 'speakat', 'last', 'and', 'as', 'if', 'it', 'be', 'rather', 'an', 'effort', 'he', 'say', '\n\n', 'Colonel', 'Brandon', 'seem', 'a', 'man', 'of', 'great', 'worth', 'and', 'respectability', '\n', 'I', 'have', 'always', 'hear', 'he', 'speak', 'of', 'as', 'such', 'and', 'your', 'brother', '\n', 'I', 'know', 'esteem', 'he', 'highly', ' ', 'he', 'be', 'undoubtedly', 'a', 'sensible', 'man', '\n', 'and', 'in', 'his', 'manner', 'perfectly', 'the', 'gentleman', '\n\n', 'indeed', 'reply', 'Elinor', 'I', 'believe', 'that', 'you', 'will', 'find', 'he', '\n', 'on', 'farther', 'acquaintance', 'all', 'that', 'you', 'have', 'hear', 'he', 'to', 'be', '\n', 'and', 'as', 'you', 'will', 'be', 'such', 'very', 'near', 'neighbour', 'for', 'I', 'understand', '\n', 'the', 'parsonage', 'be', 'almost', 'close', 'to', 'the', 'mansionhouse', '\n', 'it', 'be', 'particularly', 'important', 'that', 'he', 'should', 'be', 'all', 'this', '\n\n', 'Edward', 'make', 'no', 'answer', 'but', 'when', 'she', 'have', 'turn', '\n', 'away', 'her', 'head', 'give', 'she', 'a', 'look', 'so', 'serious', 'so', 'earnest', '\n', 'so', 'uncheerful', 'as', 'seem', 'to', 'say', 'that', 'he', 'might', 'hereafter', 'wish', '\n', 'the', 'distance', 'between', 'the', 'parsonage', 'and', 'the', 'mansionhouse', '\n', 'much', 'great', '\n\n', 'Colonel', 'Brandon', 'I', 'think', 'lodge', 'in', 'St', 'James', 'Street', '\n', 'say', 'he', 'soon', 'afterwards', 'rise', 'from', 'his', 'chair', '\n\n', 'Elinor', 'tell', 'he', 'the', 'number', 'of', 'the', 'house', '\n\n', 'I', 'must', 'hurry', 'away', 'then', 'to', 'give', 'he', 'those', 'thank', '\n', 'which', 'you', 'will', 'not', 'allow', 'I', 'to', 'give', 'you', 'to', 'assure', 'he', '\n', 'that', 'he', 'have', 'make', 'I', 'a', 'veryan', 'exceedingly', 'happy', 'man', '\n\n', 'Elinor', 'do', 'not', 'offer', 'to', 'detain', 'he', 'and', 'they', 'part', '\n', 'with', 'a', 'very', 'earnest', 'assurance', 'on', 'her', 'side', 'of', 'her', 'uncease', '\n', 'good', 'wish', 'for', 'his', 'happiness', 'in', 'every', 'change', 'of', 'situation', '\n', 'that', 'might', 'befall', 'he', 'on', 'his', 'with', 'rather', 'an', 'attempt', 'to', '\n', 'return', 'the', 'same', 'good', 'will', 'than', 'the', 'power', 'of', 'express', 'it', '\n\n', 'when', 'I', 'see', 'he', 'again', 'say', 'Elinor', 'to', 'herself', '\n', 'as', 'the', 'door', 'shut', 'he', 'out', 'I', 'shall', 'see', 'he', 'the', 'husband', '\n', 'of', 'Lucy', '\n\n', 'and', 'with', 'this', 'pleasing', 'anticipation', 'she', 'sit', 'down', '\n', 'to', 'reconsider', 'the', 'past', 'recall', 'the', 'word', 'and', 'endeavour', '\n', 'to', 'comprehend', 'all', 'the', 'feeling', 'of', 'Edward', 'and', 'of', 'course', '\n', 'to', 'reflect', 'on', 'her', 'own', 'with', 'discontent', '\n\n', 'when', 'Mrs', 'Jennings', 'come', 'home', 'though', 'she', 'return', '\n', 'from', 'see', 'people', 'whom', 'she', 'have', 'never', 'see', 'before', '\n', 'and', 'of', 'whom', 'therefore', 'she', 'must', 'have', 'a', 'great', 'deal', 'to', 'say', '\n', 'her', 'mind', 'be', 'so', 'much', 'more', 'occupy', 'by', 'the', 'important', 'secret', '\n', 'in', 'her', 'possession', 'than', 'by', 'anything', 'else', 'that', 'she', '\n', 'revert', 'to', 'it', 'again', 'as', 'soon', 'as', 'Elinor', 'appear', '\n\n', 'well', 'my', 'dear', 'she', 'cry', 'I', 'send', 'you', 'up', 'to', 'the', '\n', 'young', 'man', ' ', 'do', 'not', 'I', 'do', 'rightand', 'I', 'suppose', 'you', 'have', '\n', 'no', 'great', 'difficultyyou', 'do', 'not', 'find', 'he', 'very', 'unwilling', '\n', 'to', 'accept', 'your', 'proposal', '\n\n', 'no', 'maam', 'that', 'be', 'not', 'very', 'likely', '\n\n', 'well', 'and', 'how', 'soon', 'will', 'he', 'be', 'readyfor', 'it', 'seem', '\n', 'all', 'to', 'depend', 'upon', 'that', '\n\n', 'really', 'say', 'Elinor', 'I', 'know', 'so', 'little', 'of', 'these', 'kind', '\n', 'of', 'form', 'that', 'I', 'can', 'hardly', 'even', 'conjecture', 'as', 'to', 'the', 'time', '\n', 'or', 'the', 'preparation', 'necessary', 'but', 'I', 'suppose', 'two', 'or', 'three', '\n', 'month', 'will', 'complete', 'his', 'ordination', '\n\n', 'two', 'or', 'three', 'month', 'cry', 'Mrs', 'Jennings', 'Lord', 'my', 'dear', '\n', 'how', 'calmly', 'you', 'talk', 'of', 'it', 'and', 'can', 'the', 'Colonel', 'wait', 'two', '\n', 'or', 'three', 'month', 'Lord', 'bless', 'meI', 'be', 'sure', 'it', 'would', 'put', 'I', '\n', 'quite', 'out', 'of', 'patienceAnd', 'though', 'one', 'would', 'be', 'very', 'glad', '\n', 'to', 'do', 'a', 'kindness', 'by', 'poor', 'Mr', 'Ferrars', 'I', 'do', 'think', 'it', 'be', '\n', 'not', 'worth', 'while', 'to', 'wait', 'two', 'or', 'three', 'month', 'for', 'he', '\n', 'sure', 'somebody', 'else', 'might', 'be', 'find', 'that', 'would', 'do', 'as', 'well', '\n', 'somebody', 'that', 'be', 'in', 'order', 'already', '\n\n', 'my', 'dear', 'maam', 'say', 'Elinor', 'what', 'can', 'you', 'be', 'think', 'of', '\n', 'why', 'Colonel', 'Brandons', 'only', 'object', 'be', 'to', 'be', 'of', 'use', 'to', 'Mr', 'Ferrars', '\n\n', 'Lord', 'bless', 'you', 'my', 'dearsure', 'you', 'do', 'not', 'mean', 'to', 'persuade', '\n', 'I', 'that', 'the', 'Colonel', 'only', 'marry', 'you', 'for', 'the', 'sake', 'of', 'give', '\n', 'ten', 'guinea', 'to', 'Mr', 'Ferrars', '\n\n', 'the', 'deception', 'could', 'not', 'continue', 'after', 'this', '\n', 'and', 'an', 'explanation', 'immediately', 'take', 'place', 'by', 'which', 'both', '\n', 'gain', 'considerable', 'amusement', 'for', 'the', 'moment', 'without', 'any', '\n', 'material', 'loss', 'of', 'happiness', 'to', 'either', 'for', 'Mrs', 'Jennings', '\n', 'only', 'exchange', 'one', 'form', 'of', 'delight', 'for', 'another', 'and', 'still', '\n', 'without', 'forfeit', 'her', 'expectation', 'of', 'the', 'first', '\n\n', 'aye', 'aye', 'the', 'parsonage', 'be', 'but', 'a', 'small', 'one', 'say', 'she', '\n', 'after', 'the', 'first', 'ebullition', 'of', 'surprise', 'and', 'satisfaction', '\n', 'be', 'over', 'and', 'very', 'likely', 'may', 'be', 'out', 'of', 'repair', 'but', 'to', 'hear', '\n', 'a', 'man', 'apologise', 'as', 'I', 'think', 'for', 'a', 'house', 'that', 'to', 'my', '\n', 'knowledge', 'have', 'five', 'sit', 'room', 'on', 'the', 'groundfloor', 'and', 'I', '\n', 'think', 'the', 'housekeeper', 'tell', 'I', 'could', 'make', 'up', 'fifteen', 'bed', '\n', 'and', 'to', 'you', 'too', 'that', 'have', 'be', 'use', 'to', 'live', 'in', 'Barton', 'cottage', '\n', 'it', 'seem', 'quite', 'ridiculous', ' ', 'but', 'my', 'dear', 'we', 'must', '\n', 'touch', 'up', 'the', 'Colonel', 'to', 'do', 'some', 'thing', 'to', 'the', 'parsonage', '\n', 'and', 'make', 'it', 'comfortable', 'for', 'they', 'before', 'Lucy', 'go', 'to', 'it', '\n\n', 'but', 'Colonel', 'Brandon', 'do', 'not', 'seem', 'to', 'have', 'any', 'idea', '\n', 'of', 'the', 'living', 'be', 'enough', 'to', 'allow', 'they', 'to', 'marry', '\n\n', 'the', 'Colonel', 'be', 'a', 'ninny', 'my', 'dear', 'because', 'he', 'have', 'two', '\n', 'thousand', 'ayear', 'himself', 'he', 'think', 'that', 'nobody', 'else', 'can', 'marry', '\n', 'on', 'less', ' ', 'take', 'my', 'word', 'for', 'it', 'that', 'if', 'I', 'be', 'alive', 'I', 'shall', '\n', 'be', 'pay', 'a', 'visit', 'at', 'Delaford', 'Parsonage', 'before', 'Michaelmas', '\n', 'and', 'I', 'be', 'sure', 'I', 'sha', 'not', 'go', 'if', 'Lucy', 'ant', 'there', '\n\n', 'Elinor', 'be', 'quite', 'of', 'her', 'opinion', 'as', 'to', 'the', 'probability', '\n', 'of', 'their', 'not', 'wait', 'for', 'any', 'thing', 'more', '\n\n\n\n', 'chapter', '41', '\n\n\n', 'Edward', 'having', 'carry', 'his', 'thank', 'to', 'Colonel', 'Brandon', '\n', 'proceed', 'with', 'his', 'happiness', 'to', 'Lucy', 'and', 'such', 'be', 'the', '\n', 'excess', 'of', 'it', 'by', 'the', 'time', 'he', 'reach', 'Bartletts', 'building', '\n', 'that', 'she', 'be', 'able', 'to', 'assure', 'Mrs', 'Jennings', 'who', 'call', '\n', 'on', 'she', 'again', 'the', 'next', 'day', 'with', 'her', 'congratulation', '\n', 'that', 'she', 'have', 'never', 'see', 'he', 'in', 'such', 'spirit', 'before', '\n', 'in', 'her', 'life', '\n\n', 'her', 'own', 'happiness', 'and', 'her', 'own', 'spirit', 'be', 'at', '\n', 'least', 'very', 'certain', 'and', 'she', 'join', 'Mrs', 'Jennings', 'most', '\n', 'heartily', 'in', 'her', 'expectation', 'of', 'their', 'be', 'all', 'comfortably', '\n', 'together', 'in', 'Delaford', 'Parsonage', 'before', 'Michaelmas', '\n', 'so', 'far', 'be', 'she', 'at', 'the', 'same', 'time', 'from', 'any', 'backwardness', '\n', 'to', 'give', 'Elinor', 'that', 'credit', 'which', 'Edward', 'would', 'give', 'she', '\n', 'that', 'she', 'speak', 'of', 'her', 'friendship', 'for', 'they', 'both', 'with', 'the', 'most', '\n', 'grateful', 'warmth', 'be', 'ready', 'to', 'own', 'all', 'their', 'obligation', '\n', 'to', 'she', 'and', 'openly', 'declare', 'that', 'no', 'exertion', 'for', 'their', '\n', 'good', 'on', 'Miss', 'Dashwoods', 'part', 'either', 'present', 'or', 'future', '\n', 'would', 'ever', 'surprise', 'she', 'for', 'she', 'believe', 'her', 'capable', 'of', '\n', 'do', 'any', 'thing', 'in', 'the', 'world', 'for', 'those', 'she', 'really', 'value', '\n', 'as', 'for', 'Colonel', 'Brandon', 'she', 'be', 'not', 'only', 'ready', 'to', 'worship', '\n', 'he', 'as', 'a', 'saint', 'but', 'be', 'moreover', 'truly', 'anxious', 'that', '\n', 'he', 'should', 'be', 'treat', 'as', 'one', 'in', 'all', 'worldly', 'concern', '\n', 'anxious', 'that', 'his', 'tithe', 'should', 'be', 'raise', 'to', 'the', 'utmost', '\n', 'and', 'scarcely', 'resolve', 'to', 'avail', 'herself', 'at', 'Delaford', '\n', 'as', 'far', 'as', 'she', 'possibly', 'could', 'of', 'his', 'servant', 'his', 'carriage', '\n', 'his', 'cow', 'and', 'his', 'poultry', '\n\n', 'it', 'be', 'now', 'above', 'a', 'week', 'since', 'John', 'Dashwood', 'have', '\n', 'call', 'in', 'Berkeley', 'Street', 'and', 'as', 'since', 'that', 'time', 'no', 'notice', '\n', 'have', 'be', 'take', 'by', 'they', 'of', 'his', 'wife', 'indisposition', '\n', 'beyond', 'one', 'verbal', 'enquiry', 'Elinor', 'begin', 'to', 'feel', 'it', '\n', 'necessary', 'to', 'pay', 'she', 'a', 'visitthis', 'be', 'an', 'obligation', '\n', 'however', 'which', 'not', 'only', 'oppose', 'her', 'own', 'inclination', '\n', 'but', 'which', 'have', 'not', 'the', 'assistance', 'of', 'any', 'encouragement', '\n', 'from', 'her', 'companion', ' ', 'Marianne', 'not', 'content', 'with', '\n', 'absolutely', 'refuse', 'to', 'go', 'herself', 'be', 'very', 'urgent', '\n', 'to', 'prevent', 'her', 'sister', 'go', 'at', 'all', 'and', 'Mrs', 'Jennings', '\n', 'though', 'her', 'carriage', 'be', 'always', 'at', 'Elinors', 'service', '\n', 'so', 'very', 'much', 'dislike', 'Mrs', 'John', 'Dashwood', 'that', 'not', 'even', 'her', '\n', 'curiosity', 'to', 'see', 'how', 'she', 'look', 'after', 'the', 'late', 'discovery', '\n', 'nor', 'her', 'strong', 'desire', 'to', 'affront', 'she', 'by', 'take', 'Edwards', 'part', '\n', 'could', 'overcome', 'her', 'unwillingness', 'to', 'be', 'in', 'her', 'company', 'again', '\n', 'the', 'consequence', 'be', 'that', 'Elinor', 'set', 'out', 'by', 'herself', '\n', 'to', 'pay', 'a', 'visit', 'for', 'which', 'no', 'one', 'could', 'really', 'have', '\n', 'less', 'inclination', 'and', 'to', 'run', 'the', 'risk', 'of', 'a', 'teteatete', '\n', 'with', 'a', 'woman', 'whom', 'neither', 'of', 'the', 'other', 'have', 'so', 'much', '\n', 'reason', 'to', 'dislike', '\n\n', 'Mrs', 'Dashwood', 'be', 'deny', 'but', 'before', 'the', 'carriage', 'could', '\n', 'turn', 'from', 'the', 'house', 'her', 'husband', 'accidentally', 'come', 'out', '\n', 'he', 'express', 'great', 'pleasure', 'in', 'meet', 'Elinor', 'tell', 'she', '\n', 'that', 'he', 'have', 'be', 'just', 'go', 'to', 'call', 'in', 'Berkeley', 'Street', '\n', 'and', 'assure', 'she', 'that', 'Fanny', 'would', 'be', 'very', 'glad', 'to', 'see', 'she', '\n', 'invite', 'she', 'to', 'come', 'in', '\n\n', 'they', 'walk', 'up', 'stair', 'in', 'to', 'the', 'drawingroomnobody', 'be', 'there', '\n\n', 'Fanny', 'be', 'in', 'her', 'own', 'room', 'I', 'suppose', 'say', 'hei', '\n', 'will', 'go', 'to', 'she', 'presently', 'for', 'I', 'be', 'sure', 'she', 'will', 'not', '\n', 'have', 'the', 'least', 'objection', 'in', 'the', 'world', 'to', 'see', 'you', '\n', 'very', 'far', 'from', 'it', 'indeed', ' ', 'now', 'especially', 'there', '\n', 'can', 'not', 'bebut', 'however', 'you', 'and', 'Marianne', 'be', 'always', '\n', 'great', 'favouritesWhy', 'would', 'not', 'Marianne', 'come', '\n\n', 'Elinor', 'make', 'what', 'excuse', 'she', 'could', 'for', 'she', '\n\n', 'I', 'be', 'not', 'sorry', 'to', 'see', 'you', 'alone', 'he', 'reply', '\n', 'for', 'I', 'have', 'a', 'good', 'deal', 'to', 'say', 'to', 'you', ' ', 'this', 'living', '\n', 'of', 'Colonel', 'Brandonscan', 'it', 'be', 'trueha', 'he', 'really', 'give', '\n', 'it', 'to', 'edwardi', 'hear', 'it', 'yesterday', 'by', 'chance', 'and', 'be', '\n', 'come', 'to', 'you', 'on', 'purpose', 'to', 'enquire', 'far', 'about', 'it', '\n\n', 'it', 'be', 'perfectly', 'truecolonel', 'Brandon', 'have', 'give', '\n', 'the', 'living', 'of', 'Delaford', 'to', 'Edward', '\n\n', 'ReallyWell', 'this', 'be', 'very', 'astonishingno', '\n', 'relationshipno', 'connection', 'between', 'themand', 'now', '\n', 'that', 'living', 'fetch', 'such', 'a', 'pricewhat', 'be', 'the', 'value', 'of', 'this', '\n\n', 'about', 'two', 'hundred', 'a', 'year', '\n\n', 'very', 'welland', 'for', 'the', 'next', 'presentation', 'to', 'a', 'living', '\n', 'of', 'that', 'valuesuppose', 'the', 'late', 'incumbent', 'to', 'have', '\n', 'be', 'old', 'and', 'sickly', 'and', 'likely', 'to', 'vacate', 'it', 'soonhe', '\n', 'might', 'have', 'get', 'I', 'dare', 'sayfourteen', 'hundred', 'pound', '\n', 'and', 'how', 'come', 'he', 'not', 'to', 'have', 'settle', 'that', 'matter', 'before', 'this', '\n', 'person', 'deathnow', 'indeed', 'it', 'would', 'be', 'too', 'late', 'to', 'sell', 'it', '\n', 'but', 'a', 'man', 'of', 'Colonel', 'Brandons', 'senseI', 'wonder', 'he', 'should', '\n', 'be', 'so', 'improvident', 'in', 'a', 'point', 'of', 'such', 'common', 'such', 'natural', '\n', 'concernwell', 'I', 'be', 'convinced', 'that', 'there', 'be', 'a', 'vast', 'deal', '\n', 'of', 'inconsistency', 'in', 'almost', 'every', 'human', 'character', ' ', 'I', 'suppose', '\n', 'howeveron', 'recollectionthat', 'the', 'case', 'may', 'probably', 'be', 'this', '\n', 'Edward', 'be', 'only', 'to', 'hold', 'the', 'living', 'till', 'the', 'person', 'to', 'whom', '\n', 'the', 'Colonel', 'have', 'really', 'sell', 'the', 'presentation', 'be', 'old', 'enough', '\n', 'to', 'take', 'itaye', 'aye', 'that', 'be', 'the', 'fact', 'depend', 'upon', 'it', '\n\n', 'Elinor', 'contradict', 'it', 'however', 'very', 'positively', '\n', 'and', 'by', 'relate', 'that', 'she', 'have', 'herself', 'be', 'employ', '\n', 'in', 'convey', 'the', 'offer', 'from', 'Colonel', 'Brandon', 'to', 'Edward', '\n', 'and', 'therefore', 'must', 'understand', 'the', 'term', 'on', 'which', 'it', '\n', 'be', 'give', 'oblige', 'he', 'to', 'submit', 'to', 'her', 'authority', '\n\n', 'it', 'be', 'truly', 'astonishinghe', 'cry', 'after', 'hear', '\n', 'what', 'she', 'saidwhat', 'could', 'be', 'the', 'Colonels', 'motive', '\n\n', 'a', 'very', 'simple', 'oneto', 'be', 'of', 'use', 'to', 'Mr', 'Ferrars', '\n\n', 'well', 'well', 'whatever', 'Colonel', 'Brandon', 'may', 'be', '\n', 'Edward', 'be', 'a', 'very', 'lucky', 'manyou', 'will', 'not', 'mention', 'the', 'matter', '\n', 'to', 'Fanny', 'however', 'for', 'though', 'I', 'have', 'break', 'it', 'to', 'she', '\n', 'and', 'she', 'bear', 'it', 'vastly', 'wellshe', 'will', 'not', 'like', 'to', 'hear', '\n', 'it', 'much', 'talk', 'of', '\n\n', 'Elinor', 'have', 'some', 'difficulty', 'here', 'to', 'refrain', 'from', 'observe', '\n', 'that', 'she', 'think', 'Fanny', 'might', 'have', 'bear', 'with', 'composure', '\n', 'an', 'acquisition', 'of', 'wealth', 'to', 'her', 'brother', 'by', 'which', 'neither', '\n', 'she', 'nor', 'her', 'child', 'could', 'be', 'possibly', 'impoverish', '\n\n', 'Mrs', 'Ferrars', 'add', 'he', 'lower', 'his', 'voice', 'to', 'the', '\n', 'tone', 'become', 'so', 'important', 'a', 'subject', 'know', 'nothing', '\n', 'about', 'it', 'at', 'present', 'and', 'I', 'believe', 'it', 'will', 'be', 'good', 'to', '\n', 'keep', 'it', 'entirely', 'conceal', 'from', 'she', 'as', 'long', 'as', 'may', 'be', '\n', 'when', 'the', 'marriage', 'take', 'place', 'I', 'fear', 'she', 'must', 'hear', '\n', 'of', 'it', 'all', '\n\n', 'but', 'why', 'should', 'such', 'precaution', 'be', 'usedthough', '\n', 'it', 'be', 'not', 'to', 'be', 'suppose', 'that', 'Mrs', 'Ferrars', 'can', 'have', '\n', 'the', 'small', 'satisfaction', 'in', 'know', 'that', 'her', 'son', 'have', '\n', 'money', 'enough', 'to', 'live', 'uponfor', 'that', 'must', 'be', 'quite', '\n', 'out', 'of', 'the', 'question', 'yet', 'why', 'upon', 'her', 'late', 'behaviour', '\n', 'be', 'she', 'suppose', 'to', 'feel', 'at', 'allShe', 'have', 'do', 'with', 'her', '\n', 'son', 'she', 'cast', 'he', 'off', 'for', 'ever', 'and', 'have', 'make', 'all', 'those', '\n', 'over', 'whom', 'she', 'have', 'any', 'influence', 'cast', 'he', 'off', 'likewise', '\n', 'surely', 'after', 'do', 'so', 'she', 'can', 'not', 'be', 'imagine', 'liable', '\n', 'to', 'any', 'impression', 'of', 'sorrow', 'or', 'of', 'joy', 'on', 'his', 'account', '\n', 'she', 'can', 'not', 'be', 'interested', 'in', 'any', 'thing', 'that', 'befall', 'he', '\n', 'she', 'would', 'not', 'be', 'so', 'weak', 'as', 'to', 'throw', 'away', 'the', 'comfort', '\n', 'of', 'a', 'child', 'and', 'yet', 'retain', 'the', 'anxiety', 'of', 'a', 'parent', '\n\n', 'ah', 'Elinor', 'say', 'John', 'your', 'reasoning', 'be', 'very', 'good', '\n', 'but', 'it', 'be', 'found', 'on', 'ignorance', 'of', 'human', 'nature', '\n', 'when', 'Edwards', 'unhappy', 'match', 'take', 'place', 'depend', 'upon', 'it', '\n', 'his', 'mother', 'will', 'feel', 'as', 'much', 'as', 'if', 'she', 'have', 'never', 'discard', 'he', '\n', 'and', 'therefore', 'every', 'circumstance', 'that', 'may', 'accelerate', 'that', '\n', 'dreadful', 'event', 'must', 'be', 'conceal', 'from', 'she', 'as', 'much', 'as', 'possible', '\n', 'Mrs', 'Ferrars', 'can', 'never', 'forget', 'that', 'Edward', 'be', 'her', 'son', '\n\n', 'you', 'surprise', 'I', 'I', 'should', 'think', 'it', 'must', 'nearly', '\n', 'have', 'escape', 'her', 'memory', 'by', 'this', 'time', '\n\n', 'you', 'wrong', 'her', 'exceedingly', ' ', 'Mrs', 'Ferrars', 'be', 'one', '\n', 'of', 'the', 'most', 'affectionate', 'mother', 'in', 'the', 'world', '\n\n', 'Elinor', 'be', 'silent', '\n\n', 'we', 'think', 'NOWsaid', 'Mr', 'Dashwood', 'after', 'a', 'short', 'pause', '\n', 'of', 'ROBERTS', 'marry', 'Miss', 'Morton', '\n\n', 'Elinor', 'smile', 'at', 'the', 'grave', 'and', 'decisive', 'importance', '\n', 'of', 'her', 'brother', 'tone', 'calmly', 'reply', '\n\n', 'the', 'lady', 'I', 'suppose', 'have', 'no', 'choice', 'in', 'the', 'affair', '\n\n', 'Choicehow', 'do', 'you', 'mean', '\n\n', 'I', 'only', 'mean', 'that', 'I', 'suppose', 'from', 'your', 'manner', '\n', 'of', 'speak', 'it', 'must', 'be', 'the', 'same', 'to', 'Miss', 'Morton', 'whether', '\n', 'she', 'marry', 'Edward', 'or', 'Robert', '\n\n', 'certainly', 'there', 'can', 'be', 'no', 'difference', 'for', 'Robert', '\n', 'will', 'now', 'to', 'all', 'intent', 'and', 'purpose', 'be', 'consider', '\n', 'as', 'the', 'eld', 'sonand', 'as', 'to', 'any', 'thing', 'else', 'they', 'be', '\n', 'both', 'very', 'agreeable', 'young', 'man', 'I', 'do', 'not', 'know', 'that', 'one', '\n', 'be', 'superior', 'to', 'the', 'other', '\n\n', 'Elinor', 'say', 'no', 'more', 'and', 'John', 'be', 'also', 'for', 'a', 'short', '\n', 'time', 'silenthis', 'reflection', 'end', 'thus', '\n\n', 'of', 'one', 'thing', 'my', 'dear', 'sister', 'kindly', 'take', 'her', 'hand', '\n', 'and', 'speak', 'in', 'an', 'awful', 'whisperi', 'may', 'assure', 'you', '\n', 'and', 'I', 'will', 'do', 'it', 'because', 'I', 'know', 'it', 'must', 'gratify', 'you', '\n', 'I', 'have', 'good', 'reason', 'to', 'thinkindeed', 'I', 'have', 'it', 'from', 'the', '\n', 'good', 'authority', 'or', 'I', 'should', 'not', 'repeat', 'it', 'for', 'otherwise', '\n', 'it', 'would', 'be', 'very', 'wrong', 'to', 'say', 'any', 'thing', 'about', 'itbut', '\n', 'I', 'have', 'it', 'from', 'the', 'very', 'good', 'authoritynot', 'that', 'I', 'ever', '\n', 'precisely', 'hear', 'Mrs', 'Ferrars', 'say', 'it', 'herselfbut', 'her', '\n', 'daughter', 'do', 'and', 'I', 'have', 'it', 'from', 'herthat', 'in', 'short', '\n', 'whatever', 'objection', 'there', 'might', 'be', 'against', 'a', 'certaina', '\n', 'certain', 'connectionyou', 'understand', 'meit', 'would', 'have', 'be', '\n', 'far', 'preferable', 'to', 'she', 'it', 'would', 'not', 'have', 'give', 'she', 'half', '\n', 'the', 'vexation', 'that', 'this', 'do', ' ', 'I', 'be', 'exceedingly', 'pleased', '\n', 'to', 'hear', 'that', 'Mrs', 'Ferrars', 'consider', 'it', 'in', 'that', 'light', '\n', 'a', 'very', 'gratifying', 'circumstance', 'you', 'know', 'to', 'we', 'all', '\n', 'it', 'would', 'have', 'be', 'beyond', 'comparison', 'she', 'say', 'the', 'least', '\n', 'evil', 'of', 'the', 'two', 'and', 'she', 'would', 'be', 'glad', 'to', 'compound', 'NOW', '\n', 'for', 'nothing', 'bad', 'but', 'however', 'all', 'that', 'be', 'quite', 'out', '\n', 'of', 'the', 'questionnot', 'to', 'be', 'think', 'of', 'or', 'mention', '\n', 'as', 'to', 'any', 'attachment', 'you', 'knowit', 'never', 'could', 'beall', '\n', 'that', 'be', 'go', 'by', ' ', 'but', 'I', 'think', 'I', 'would', 'just', 'tell', 'you', '\n', 'of', 'this', 'because', 'I', 'know', 'how', 'much', 'it', 'must', 'please', 'you', '\n', 'not', 'that', 'you', 'have', 'any', 'reason', 'to', 'regret', 'my', 'dear', 'Elinor', ' ', 'there', '\n', 'be', 'no', 'doubt', 'of', 'your', 'do', 'exceedingly', 'wellquite', 'as', 'well', '\n', 'or', 'well', 'perhaps', 'all', 'thing', 'consider', ' ', 'have', 'Colonel', '\n', 'Brandon', 'be', 'with', 'you', 'lately', '\n\n', 'Elinor', 'have', 'hear', 'enough', 'if', 'not', 'to', 'gratify', 'her', 'vanity', '\n', 'and', 'raise', 'her', 'selfimportance', 'to', 'agitate', 'her', 'nerve', '\n', 'and', 'fill', 'her', 'mindand', 'she', 'be', 'therefore', 'glad', 'to', 'be', '\n', 'spare', 'from', 'the', 'necessity', 'of', 'say', 'much', 'in', 'reply', 'herself', '\n', 'and', 'from', 'the', 'danger', 'of', 'hear', 'any', 'thing', 'more', 'from', '\n', 'her', 'brother', 'by', 'the', 'entrance', 'of', 'Mr', 'Robert', 'Ferrars', '\n', 'after', 'a', 'few', 'moment', 'chat', 'John', 'Dashwood', 'recollect', 'that', '\n', 'Fanny', 'be', 'yet', 'uninformed', 'of', 'her', 'sister', 'be', 'there', '\n', 'quit', 'the', 'room', 'in', 'quest', 'of', 'she', 'and', 'Elinor', 'be', 'leave', '\n', 'to', 'improve', 'her', 'acquaintance', 'with', 'Robert', 'who', 'by', 'the', '\n', 'gay', 'unconcern', 'the', 'happy', 'selfcomplacency', 'of', 'his', 'manner', '\n', 'while', 'enjoy', 'so', 'unfair', 'a', 'division', 'of', 'his', 'mother', 'love', '\n', 'and', 'liberality', 'to', 'the', 'prejudice', 'of', 'his', 'banished', 'brother', '\n', 'earn', 'only', 'by', 'his', 'own', 'dissipate', 'course', 'of', 'life', 'and', 'that', '\n', 'brother', 'integrity', 'be', 'confirm', 'her', 'most', 'unfavourable', '\n', 'opinion', 'of', 'his', 'head', 'and', 'heart', '\n\n', 'they', 'have', 'scarcely', 'be', 'two', 'minute', 'by', 'themselves', '\n', 'before', 'he', 'begin', 'to', 'speak', 'of', 'Edward', 'for', 'he', 'too', 'have', 'hear', '\n', 'of', 'the', 'living', 'and', 'be', 'very', 'inquisitive', 'on', 'the', 'subject', '\n', 'Elinor', 'repeat', 'the', 'particular', 'of', 'it', 'as', 'she', 'have', 'give', 'they', '\n', 'to', 'John', 'and', 'their', 'effect', 'on', 'Robert', 'though', 'very', 'different', '\n', 'be', 'not', 'less', 'striking', 'than', 'it', 'have', 'be', 'on', 'HIM', ' ', 'he', 'laugh', '\n', 'most', 'immoderately', ' ', 'the', 'idea', 'of', 'Edwards', 'be', 'a', 'clergyman', '\n', 'and', 'live', 'in', 'a', 'small', 'parsonagehouse', 'divert', 'he', '\n', 'beyond', 'measureand', 'when', 'to', 'that', 'be', 'add', 'the', 'fanciful', '\n', 'imagery', 'of', 'Edward', 'reading', 'prayer', 'in', 'a', 'white', 'surplice', '\n', 'and', 'publish', 'the', 'bann', 'of', 'marriage', 'between', 'John', 'Smith', 'and', '\n', 'Mary', 'Brown', 'he', 'could', 'conceive', 'nothing', 'more', 'ridiculous', '\n\n', 'Elinor', 'while', 'she', 'wait', 'in', 'silence', 'and', 'immovable', '\n', 'gravity', 'the', 'conclusion', 'of', 'such', 'folly', 'could', 'not', 'restrain', '\n', 'her', 'eye', 'from', 'be', 'fix', 'on', 'he', 'with', 'a', 'look', 'that', 'speak', '\n', 'all', 'the', 'contempt', 'it', 'excite', ' ', 'it', 'be', 'a', 'look', 'however', '\n', 'very', 'well', 'bestow', 'for', 'it', 'relieve', 'her', 'own', 'feeling', 'and', 'give', '\n', 'no', 'intelligence', 'to', 'he', ' ', 'he', 'be', 'recall', 'from', 'wit', 'to', 'wisdom', '\n', 'not', 'by', 'any', 'reproof', 'of', 'her', 'but', 'by', 'his', 'own', 'sensibility', '\n\n', 'we', 'may', 'treat', 'it', 'as', 'a', 'joke', 'say', 'he', 'at', 'last', '\n', 'recover', 'from', 'the', 'affected', 'laugh', 'which', 'have', 'considerably', '\n', 'lengthen', 'out', 'the', 'genuine', 'gaiety', 'of', 'the', 'momentbut', 'upon', '\n', 'my', 'soul', 'it', 'be', 'a', 'most', 'serious', 'business', ' ', 'Poor', 'Edward', '\n', 'he', 'be', 'ruin', 'for', 'ever', ' ', 'I', 'be', 'extremely', 'sorry', 'for', 'it', '\n', 'for', 'I', 'know', 'he', 'to', 'be', 'a', 'very', 'goodhearted', 'creature', 'as', '\n', 'wellmeane', 'a', 'fellow', 'perhaps', 'as', 'any', 'in', 'the', 'world', '\n', 'you', 'must', 'not', 'judge', 'of', 'he', 'Miss', 'Dashwood', 'from', 'your', '\n', 'slight', 'acquaintancepoor', 'EdwardHis', 'manner', 'be', 'certainly', '\n', 'not', 'the', 'happy', 'in', 'naturebut', 'we', 'be', 'not', 'all', 'bear', '\n', 'you', 'know', 'with', 'the', 'same', 'powersthe', 'same', 'address', '\n', 'poor', 'fellowto', 'see', 'he', 'in', 'a', 'circle', 'of', 'stranger', '\n', 'to', 'be', 'sure', 'it', 'be', 'pitiable', 'enoughbut', 'upon', 'my', 'soul', '\n', 'I', 'believe', 'he', 'have', 'as', 'good', 'a', 'heart', 'as', 'any', 'in', 'the', 'kingdom', '\n', 'and', 'I', 'declare', 'and', 'protest', 'to', 'you', 'I', 'never', 'be', 'so', 'shocked', 'in', 'my', '\n', 'life', 'as', 'when', 'it', 'all', 'burst', 'forth', ' ', 'I', 'could', 'not', 'believe', 'it', '\n', 'my', 'mother', 'be', 'the', 'first', 'person', 'who', 'tell', 'I', 'of', 'it', '\n', 'and', 'I', 'feel', 'myself', 'call', 'on', 'to', 'act', 'with', 'resolution', '\n', 'immediately', 'say', 'to', 'her', 'my', 'dear', 'madam', 'I', 'do', 'not', 'know', '\n', 'what', 'you', 'may', 'intend', 'to', 'do', 'on', 'the', 'occasion', 'but', 'as', 'for', 'myself', '\n', 'I', 'must', 'say', 'that', 'if', 'Edward', 'do', 'marry', 'this', 'young', 'woman', '\n', 'I', 'never', 'will', 'see', 'he', 'again', 'that', 'be', 'what', 'I', 'say', 'immediately', '\n', 'I', 'be', 'most', 'uncommonly', 'shocked', 'indeedpoor', 'Edwardhe', 'have', '\n', 'do', 'for', 'himself', 'completelyshut', 'himself', 'out', 'for', 'ever', 'from', '\n', 'all', 'decent', 'societybut', 'as', 'I', 'directly', 'say', 'to', 'my', 'mother', '\n', 'I', 'be', 'not', 'in', 'the', 'least', 'surprised', 'at', 'it', 'from', 'his', 'style', '\n', 'of', 'education', 'it', 'be', 'always', 'to', 'be', 'expect', ' ', 'my', 'poor', 'mother', '\n', 'be', 'half', 'frantic', '\n\n', 'have', 'you', 'ever', 'see', 'the', 'lady', '\n\n', 'yes', 'once', 'while', 'she', 'be', 'stay', 'in', 'this', 'house', '\n', 'I', 'happen', 'to', 'drop', 'in', 'for', 'ten', 'minute', 'and', 'I', 'see', '\n', 'quite', 'enough', 'of', 'her', ' ', 'the', 'mere', 'awkward', 'country', 'girl', '\n', 'without', 'style', 'or', 'elegance', 'and', 'almost', 'without', 'beauty', '\n', 'I', 'remember', 'she', 'perfectly', ' ', 'just', 'the', 'kind', 'of', 'girl', 'I', '\n', 'should', 'suppose', 'likely', 'to', 'captivate', 'poor', 'Edward', '\n', 'I', 'offer', 'immediately', 'as', 'soon', 'as', 'my', 'mother', 'relate', '\n', 'the', 'affair', 'to', 'I', 'to', 'talk', 'to', 'he', 'myself', 'and', 'dissuade', '\n', 'he', 'from', 'the', 'match', 'but', 'it', 'be', 'too', 'late', 'then', 'I', 'find', '\n', 'to', 'do', 'any', 'thing', 'for', 'unluckily', 'I', 'be', 'not', 'in', 'the', 'way', '\n', 'at', 'first', 'and', 'know', 'nothing', 'of', 'it', 'till', 'after', 'the', 'breach', '\n', 'have', 'take', 'place', 'when', 'it', 'be', 'not', 'for', 'I', 'you', 'know', '\n', 'to', 'interfere', ' ', 'but', 'have', 'I', 'be', 'inform', 'of', 'it', 'a', 'few', '\n', 'hour', 'earlierI', 'think', 'it', 'be', 'most', 'probablethat', 'something', '\n', 'might', 'have', 'be', 'hit', 'on', ' ', 'I', 'certainly', 'should', 'have', 'represent', '\n', 'it', 'to', 'Edward', 'in', 'a', 'very', 'strong', 'light', ' ', 'my', 'dear', 'fellow', '\n', 'I', 'should', 'have', 'say', 'consider', 'what', 'you', 'be', 'do', '\n', 'you', 'be', 'make', 'a', 'most', 'disgraceful', 'connection', 'and', 'such', 'a', 'one', '\n', 'as', 'your', 'family', 'be', 'unanimous', 'in', 'disapprove', 'I', 'can', 'not', '\n', 'help', 'think', 'in', 'short', 'that', 'mean', 'might', 'have', 'be', 'find', '\n', 'but', 'now', 'it', 'be', 'all', 'too', 'late', ' ', 'he', 'must', 'be', 'starve', 'you', 'know', '\n', 'that', 'be', 'certain', 'absolutely', 'starve', '\n\n', 'he', 'have', 'just', 'settle', 'this', 'point', 'with', 'great', 'composure', '\n', 'when', 'the', 'entrance', 'of', 'Mrs', 'John', 'Dashwood', 'put', 'an', 'end', 'to', 'the', '\n', 'subject', '\n', 'but', 'though', 'she', 'never', 'speak', 'of', 'it', 'out', 'of', 'her', 'own', 'family', '\n', 'Elinor', 'could', 'see', 'its', 'influence', 'on', 'her', 'mind', 'in', 'the', 'something', '\n', 'like', 'confusion', 'of', 'countenance', 'with', 'which', 'she', 'enter', '\n', 'and', 'an', 'attempt', 'at', 'cordiality', 'in', 'her', 'behaviour', 'to', 'herself', '\n', 'she', 'even', 'proceed', 'so', 'far', 'as', 'to', 'be', 'concern', 'to', 'find', '\n', 'that', 'Elinor', 'and', 'her', 'sister', 'be', 'so', 'soon', 'to', 'leave', 'town', '\n', 'as', 'she', 'have', 'hope', 'to', 'see', 'more', 'of', 'theman', 'exertion', '\n', 'in', 'which', 'her', 'husband', 'who', 'attend', 'she', 'into', 'the', 'room', '\n', 'and', 'hang', 'enamour', 'over', 'her', 'accent', 'seem', 'to', 'distinguish', '\n', 'every', 'thing', 'that', 'be', 'most', 'affectionate', 'and', 'graceful', '\n\n\n\n', 'chapter', '42', '\n\n\n', 'one', 'other', 'short', 'call', 'in', 'Harley', 'Street', 'in', 'which', 'Elinor', '\n', 'receive', 'her', 'brother', 'congratulation', 'on', 'their', 'travel', '\n', 'so', 'far', 'towards', 'Barton', 'without', 'any', 'expense', 'and', 'on', 'Colonel', '\n', 'brandon', 'be', 'to', 'follow', 'they', 'to', 'Cleveland', 'in', 'a', 'day', 'or', 'two', '\n', 'complete', 'the', 'intercourse', 'of', 'the', 'brother', 'and', 'sister', '\n', 'in', 'townand', 'a', 'faint', 'invitation', 'from', 'Fanny', 'to', 'come', '\n', 'to', 'Norland', 'whenever', 'it', 'should', 'happen', 'to', 'be', 'in', 'their', 'way', '\n', 'which', 'of', 'all', 'thing', 'be', 'the', 'most', 'unlikely', 'to', 'occur', '\n', 'with', 'a', 'more', 'warm', 'though', 'less', 'public', 'assurance', 'from', 'John', '\n', 'to', 'Elinor', 'of', 'the', 'promptitude', 'with', 'which', 'he', 'should', 'come', '\n', 'to', 'see', 'she', 'at', 'Delaford', 'be', 'all', 'that', 'foretell', 'any', 'meeting', '\n', 'in', 'the', 'country', '\n\n', 'it', 'amuse', 'she', 'to', 'observe', 'that', 'all', 'her', 'friend', 'seem', '\n', 'determined', 'to', 'send', 'she', 'to', 'Delaforda', 'place', 'in', 'which', '\n', 'of', 'all', 'other', 'she', 'would', 'now', 'least', 'chuse', 'to', 'visit', '\n', 'or', 'wish', 'to', 'reside', 'for', 'not', 'only', 'be', 'it', 'consider', 'as', '\n', 'her', 'future', 'home', 'by', 'her', 'brother', 'and', 'Mrs', 'Jennings', 'but', 'even', 'Lucy', '\n', 'when', 'they', 'part', 'give', 'she', 'a', 'press', 'invitation', 'to', 'visit', 'she', 'there', '\n\n', 'very', 'early', 'in', 'April', 'and', 'tolerably', 'early', 'in', 'the', 'day', '\n', 'the', 'two', 'party', 'from', 'Hanover', 'Square', 'and', 'Berkeley', 'Street', 'set', '\n', 'out', 'from', 'their', 'respective', 'home', 'to', 'meet', 'by', 'appointment', '\n', 'on', 'the', 'road', ' ', 'for', 'the', 'convenience', 'of', 'Charlotte', 'and', 'her', 'child', '\n', 'they', 'be', 'to', 'be', 'more', 'than', 'two', 'day', 'on', 'their', 'journey', '\n', 'and', 'Mr', 'Palmer', 'travel', 'more', 'expeditiously', 'with', 'Colonel', 'Brandon', '\n', 'be', 'to', 'join', 'they', 'at', 'Cleveland', 'soon', 'after', 'their', 'arrival', '\n\n', 'Marianne', 'few', 'as', 'have', 'be', 'her', 'hour', 'of', 'comfort', '\n', 'in', 'London', 'and', 'eager', 'as', 'she', 'have', 'long', 'be', 'to', 'quit', 'it', '\n', 'could', 'not', 'when', 'it', 'come', 'to', 'the', 'point', 'bid', 'adieu', 'to', '\n', 'the', 'house', 'in', 'which', 'she', 'have', 'for', 'the', 'last', 'time', 'enjoy', '\n', 'those', 'hope', 'and', 'that', 'confidence', 'in', 'Willoughby', '\n', 'which', 'be', 'now', 'extinguish', 'for', 'ever', 'without', 'great', 'pain', '\n', 'nor', 'could', 'she', 'leave', 'the', 'place', 'in', 'which', 'Willoughby', 'remain', '\n', 'busy', 'in', 'new', 'engagement', 'and', 'new', 'scheme', 'in', 'which', 'she', '\n', 'could', 'have', 'no', 'share', 'without', 'shed', 'many', 'tear', '\n\n', 'Elinors', 'satisfaction', 'at', 'the', 'moment', 'of', 'removal', '\n', 'be', 'more', 'positive', ' ', 'she', 'have', 'no', 'such', 'object', 'for', 'her', 'linger', '\n', 'thought', 'to', 'fix', 'on', 'she', 'leave', 'no', 'creature', 'behind', 'from', 'whom', '\n', 'it', 'would', 'give', 'she', 'a', 'moment', 'regret', 'to', 'be', 'divide', 'for', 'ever', '\n', 'she', 'be', 'pleased', 'to', 'be', 'free', 'herself', 'from', 'the', 'persecution', '\n', 'of', 'Lucys', 'friendship', 'she', 'be', 'grateful', 'for', 'bring', '\n', 'her', 'sister', 'away', 'unseen', 'by', 'Willoughby', 'since', 'his', 'marriage', '\n', 'and', 'she', 'look', 'forward', 'with', 'hope', 'to', 'what', 'a', 'few', 'month', '\n', 'of', 'tranquility', 'at', 'Barton', 'might', 'do', 'towards', 'restore', '\n', 'Mariannes', 'peace', 'of', 'mind', 'and', 'confirm', 'her', 'own', '\n\n', 'their', 'journey', 'be', 'safely', 'perform', ' ', 'the', 'second', '\n', 'day', 'bring', 'they', 'into', 'the', 'cherished', 'or', 'the', 'prohibit', '\n', 'county', 'of', 'Somerset', 'for', 'as', 'such', 'be', 'it', 'dwelt', 'on', 'by', 'turn', '\n', 'in', 'Mariannes', 'imagination', 'and', 'in', 'the', 'forenoon', 'of', 'the', 'third', '\n', 'they', 'drive', 'up', 'to', 'Cleveland', '\n\n', 'Cleveland', 'be', 'a', 'spacious', 'modernbuilt', 'house', '\n', 'situate', 'on', 'a', 'slope', 'lawn', ' ', 'it', 'have', 'no', 'park', 'but', 'the', '\n', 'pleasureground', 'be', 'tolerably', 'extensive', 'and', 'like', '\n', 'every', 'other', 'place', 'of', 'the', 'same', 'degree', 'of', 'importance', '\n', 'it', 'have', 'its', 'open', 'shrubbery', 'and', 'close', 'wood', 'walk', '\n', 'a', 'road', 'of', 'smooth', 'gravel', 'winding', 'round', 'a', 'plantation', '\n', 'lead', 'to', 'the', 'front', 'the', 'lawn', 'be', 'dot', 'over', 'with', 'timber', '\n', 'the', 'house', 'itself', 'be', 'under', 'the', 'guardianship', 'of', 'the', 'fir', '\n', 'the', 'mountainash', 'and', 'the', 'acacia', 'and', 'a', 'thick', 'screen', 'of', '\n', 'they', 'altogether', 'intersperse', 'with', 'tall', 'lombardy', 'poplar', '\n', 'shut', 'out', 'the', 'office', '\n\n', 'Marianne', 'enter', 'the', 'house', 'with', 'a', 'heart', 'swell', '\n', 'with', 'emotion', 'from', 'the', 'consciousness', 'of', 'be', 'only', 'eighty', '\n', 'mile', 'from', 'Barton', 'and', 'not', 'thirty', 'from', 'Combe', 'Magna', '\n', 'and', 'before', 'she', 'have', 'be', 'five', 'minute', 'within', 'its', 'wall', '\n', 'while', 'the', 'other', 'be', 'busily', 'help', 'Charlotte', 'to', 'show', '\n', 'her', 'child', 'to', 'the', 'housekeeper', 'she', 'quit', 'it', 'again', '\n', 'steal', 'away', 'through', 'the', 'wind', 'shrubbery', 'now', 'just', '\n', 'begin', 'to', 'be', 'in', 'beauty', 'to', 'gain', 'a', 'distant', 'eminence', '\n', 'where', 'from', 'its', 'grecian', 'temple', 'her', 'eye', 'wander', 'over', '\n', 'a', 'wide', 'tract', 'of', 'country', 'to', 'the', 'southeast', 'could', 'fondly', '\n', 'rest', 'on', 'the', 'farth', 'ridge', 'of', 'hill', 'in', 'the', 'horizon', '\n', 'and', 'fancy', 'that', 'from', 'their', 'summit', 'Combe', 'Magna', 'might', 'be', 'see', '\n\n', 'in', 'such', 'moment', 'of', 'precious', 'invaluable', 'misery', '\n', 'she', 'rejoice', 'in', 'tear', 'of', 'agony', 'to', 'be', 'at', 'Cleveland', '\n', 'and', 'as', 'she', 'return', 'by', 'a', 'different', 'circuit', 'to', 'the', 'house', '\n', 'feel', 'all', 'the', 'happy', 'privilege', 'of', 'country', 'liberty', '\n', 'of', 'wander', 'from', 'place', 'to', 'place', 'in', 'free', 'and', 'luxurious', 'solitude', '\n', 'she', 'resolve', 'to', 'spend', 'almost', 'every', 'hour', 'of', 'every', 'day', '\n', 'while', 'she', 'remain', 'with', 'the', 'Palmers', 'in', 'the', 'indulgence', 'of', '\n', 'such', 'solitary', 'ramble', '\n\n', 'she', 'return', 'just', 'in', 'time', 'to', 'join', 'the', 'other', '\n', 'as', 'they', 'quit', 'the', 'house', 'on', 'an', 'excursion', 'through', 'its', '\n', 'more', 'immediate', 'premise', 'and', 'the', 'rest', 'of', 'the', 'morning', 'be', '\n', 'easily', 'while', 'away', 'in', 'lounge', 'round', 'the', 'kitchen', 'garden', '\n', 'examine', 'the', 'bloom', 'upon', 'its', 'wall', 'and', 'listen', 'to', 'the', '\n', 'gardener', 'lamentation', 'upon', 'blight', 'in', 'dawdle', 'through', '\n', 'the', 'greenhouse', 'where', 'the', 'loss', 'of', 'her', 'favourite', 'plant', '\n', 'unwarily', 'expose', 'and', 'nip', 'by', 'the', 'linger', 'frost', '\n', 'raise', 'the', 'laughter', 'of', 'Charlotteand', 'in', 'visit', 'her', '\n', 'poultryyard', 'where', 'in', 'the', 'disappointed', 'hope', 'of', 'her', '\n', 'dairymaid', 'by', 'hen', 'forsake', 'their', 'nest', 'or', 'be', '\n', 'steal', 'by', 'a', 'fox', 'or', 'in', 'the', 'rapid', 'decrease', 'of', 'a', 'promising', '\n', 'young', 'brood', 'she', 'find', 'fresh', 'source', 'of', 'merriment', '\n\n', 'the', 'morning', 'be', 'fine', 'and', 'dry', 'and', 'Marianne', '\n', 'in', 'her', 'plan', 'of', 'employment', 'abroad', 'have', 'not', 'calculate', '\n', 'for', 'any', 'change', 'of', 'weather', 'during', 'their', 'stay', 'at', 'Cleveland', '\n', 'with', 'great', 'surprise', 'therefore', 'do', 'she', 'find', 'herself', 'prevent', '\n', 'by', 'a', 'settle', 'rain', 'from', 'go', 'out', 'again', 'after', 'dinner', '\n', 'she', 'have', 'depend', 'on', 'a', 'twilight', 'walk', 'to', 'the', 'grecian', 'temple', '\n', 'and', 'perhaps', 'all', 'over', 'the', 'ground', 'and', 'an', 'evening', 'merely', '\n', 'cold', 'or', 'damp', 'would', 'not', 'have', 'deter', 'she', 'from', 'it', '\n', 'but', 'a', 'heavy', 'and', 'settle', 'rain', 'even', 'she', 'could', 'not', 'fancy', 'dry', '\n', 'or', 'pleasant', 'weather', 'for', 'walk', '\n\n', 'their', 'party', 'be', 'small', 'and', 'the', 'hour', 'pass', 'quietly', 'away', '\n', 'Mrs', 'Palmer', 'have', 'her', 'child', 'and', 'Mrs', 'Jennings', 'her', 'carpetwork', '\n', 'they', 'talk', 'of', 'the', 'friend', 'they', 'have', 'leave', 'behind', '\n', 'arrange', 'Lady', 'Middletons', 'engagement', 'and', 'wonder', '\n', 'whether', 'Mr', 'Palmer', 'and', 'Colonel', 'Brandon', 'would', 'get', 'far', '\n', 'than', 'read', 'that', 'night', ' ', 'Elinor', 'however', 'little', 'concern', '\n', 'in', 'it', 'join', 'in', 'their', 'discourse', 'and', 'Marianne', 'who', 'have', '\n', 'the', 'knack', 'of', 'find', 'her', 'way', 'in', 'every', 'house', 'to', 'the', 'library', '\n', 'however', 'it', 'might', 'be', 'avoid', 'by', 'the', 'family', 'in', 'general', '\n', 'soon', 'procure', 'herself', 'a', 'book', '\n\n', 'nothing', 'be', 'want', 'on', 'Mrs', 'Palmers', 'side', 'that', 'constant', '\n', 'and', 'friendly', 'good', 'humour', 'could', 'do', 'to', 'make', 'they', 'feel', '\n', 'themselves', 'welcome', ' ', 'the', 'openness', 'and', 'heartiness', 'of', 'her', '\n', 'manner', 'more', 'than', 'atone', 'for', 'that', 'want', 'of', 'recollection', '\n', 'and', 'elegance', 'which', 'make', 'she', 'often', 'deficient', 'in', 'the', 'form', '\n', 'of', 'politeness', 'her', 'kindness', 'recommend', 'by', 'so', 'pretty', '\n', 'a', 'face', 'be', 'engage', 'her', 'folly', 'though', 'evident', '\n', 'be', 'not', 'disgusting', 'because', 'it', 'be', 'not', 'conceite', '\n', 'and', 'Elinor', 'could', 'have', 'forgive', 'every', 'thing', 'but', 'her', 'laugh', '\n\n', 'the', 'two', 'gentleman', 'arrive', 'the', 'next', 'day', 'to', 'a', 'very', '\n', 'late', 'dinner', 'afford', 'a', 'pleasant', 'enlargement', 'of', 'the', 'party', '\n', 'and', 'a', 'very', 'welcome', 'variety', 'to', 'their', 'conversation', 'which', 'a', '\n', 'long', 'morning', 'of', 'the', 'same', 'continued', 'rain', 'have', 'reduce', 'very', 'low', '\n\n', 'Elinor', 'have', 'see', 'so', 'little', 'of', 'Mr', 'Palmer', 'and', 'in', 'that', '\n', 'little', 'have', 'see', 'so', 'much', 'variety', 'in', 'his', 'address', 'to', 'her', '\n', 'sister', 'and', 'herself', 'that', 'she', 'know', 'not', 'what', 'to', 'expect', '\n', 'to', 'find', 'he', 'in', 'his', 'own', 'family', ' ', 'she', 'find', 'he', 'however', '\n', 'perfectly', 'the', 'gentleman', 'in', 'his', 'behaviour', 'to', 'all', 'his', 'visitor', '\n', 'and', 'only', 'occasionally', 'rude', 'to', 'his', 'wife', 'and', 'her', 'mother', '\n', 'she', 'find', 'he', 'very', 'capable', 'of', 'be', 'a', 'pleasant', 'companion', '\n', 'and', 'only', 'prevent', 'from', 'be', 'so', 'always', 'by', 'too', 'great', '\n', 'an', 'aptitude', 'to', 'fancy', 'himself', 'as', 'much', 'superior', 'to', 'people', '\n', 'in', 'general', 'as', 'he', 'must', 'feel', 'himself', 'to', 'be', 'to', 'Mrs', 'Jennings', '\n', 'and', 'Charlotte', ' ', 'for', 'the', 'rest', 'of', 'his', 'character', 'and', 'habit', '\n', 'they', 'be', 'mark', 'as', 'far', 'as', 'Elinor', 'could', 'perceive', '\n', 'with', 'no', 'trait', 'at', 'all', 'unusual', 'in', 'his', 'sex', 'and', 'time', 'of', 'life', '\n', 'he', 'be', 'nice', 'in', 'his', 'eat', 'uncertain', 'in', 'his', 'hour', '\n', 'fond', 'of', 'his', 'child', 'though', 'affect', 'to', 'slight', 'it', '\n', 'and', 'idle', 'away', 'the', 'morning', 'at', 'billiard', 'which', 'ought', '\n', 'to', 'have', 'be', 'devote', 'to', 'business', ' ', 'she', 'like', 'he', 'however', '\n', 'upon', 'the', 'whole', 'much', 'well', 'than', 'she', 'have', 'expect', 'and', 'in', '\n', 'her', 'heart', 'be', 'not', 'sorry', 'that', 'she', 'could', 'like', 'he', 'no', 'more', '\n', 'not', 'sorry', 'to', 'be', 'drive', 'by', 'the', 'observation', 'of', 'his', 'epicurism', '\n', 'his', 'selfishness', 'and', 'his', 'conceit', 'to', 'rest', 'with', 'complacency', '\n', 'on', 'the', 'remembrance', 'of', 'Edwards', 'generous', 'temper', 'simple', 'taste', '\n', 'and', 'diffident', 'feeling', '\n\n', 'of', 'Edward', 'or', 'at', 'least', 'of', 'some', 'of', 'his', 'concern', '\n', 'she', 'now', 'receive', 'intelligence', 'from', 'Colonel', 'Brandon', '\n', 'who', 'have', 'be', 'into', 'Dorsetshire', 'lately', 'and', 'who', '\n', 'treat', 'she', 'at', 'once', 'as', 'the', 'disintereste', 'friend', '\n', 'of', 'Mr', 'Ferrars', 'and', 'the', 'kind', 'of', 'confidant', 'of', 'himself', '\n', 'talk', 'to', 'she', 'a', 'great', 'deal', 'of', 'the', 'parsonage', 'at', 'Delaford', '\n', 'describe', 'its', 'deficiency', 'and', 'tell', 'she', 'what', 'he', 'mean', '\n', 'to', 'do', 'himself', 'towards', 'remove', 'themhis', 'behaviour', '\n', 'to', 'she', 'in', 'this', 'as', 'well', 'as', 'in', 'every', 'other', 'particular', '\n', 'his', 'open', 'pleasure', 'in', 'meet', 'she', 'after', 'an', 'absence', '\n', 'of', 'only', 'ten', 'day', 'his', 'readiness', 'to', 'converse', 'with', 'she', '\n', 'and', 'his', 'deference', 'for', 'her', 'opinion', 'might', 'very', 'well', '\n', 'justify', 'Mrs', 'Jenningss', 'persuasion', 'of', 'his', 'attachment', '\n', 'and', 'would', 'have', 'be', 'enough', 'perhaps', 'have', 'not', 'Elinor', 'still', '\n', 'as', 'from', 'the', 'first', 'believe', 'Marianne', 'his', 'real', 'favourite', '\n', 'to', 'make', 'she', 'suspect', 'it', 'herself', ' ', 'but', 'as', 'it', 'be', '\n', 'such', 'a', 'notion', 'have', 'scarcely', 'ever', 'enter', 'her', 'head', '\n', 'except', 'by', 'Mrs', 'Jenningss', 'suggestion', 'and', 'she', 'could', '\n', 'not', 'help', 'believe', 'herself', 'the', 'nice', 'observer', 'of', 'the', '\n', 'twoshe', 'watch', 'his', 'eye', 'while', 'Mrs', 'Jennings', 'think', '\n', 'only', 'of', 'his', 'behaviourand', 'while', 'his', 'look', 'of', 'anxious', '\n', 'solicitude', 'on', 'Mariannes', 'feel', 'in', 'her', 'head', 'and', 'throat', '\n', 'the', 'beginning', 'of', 'a', 'heavy', 'cold', 'because', 'unexpresse', 'by', 'word', '\n', 'entirely', 'escape', 'the', 'latter', 'ladys', 'observationSHE', 'could', '\n', 'discover', 'in', 'they', 'the', 'quick', 'feeling', 'and', 'needless', 'alarm', '\n', 'of', 'a', 'lover', '\n\n', 'two', 'delighful', 'twilight', 'walk', 'on', 'the', 'third', 'and', 'fourth', '\n', 'evening', 'of', 'she', 'be', 'there', 'not', 'merely', 'on', 'the', 'dry', 'gravel', '\n', 'of', 'the', 'shrubbery', 'but', 'all', 'over', 'the', 'ground', 'and', 'especially', '\n', 'in', 'the', 'most', 'distant', 'part', 'of', 'they', 'where', 'there', 'be', 'something', '\n', 'more', 'of', 'wildness', 'than', 'in', 'the', 'rest', 'where', 'the', 'tree', 'be', '\n', 'the', 'old', 'and', 'the', 'grass', 'be', 'the', 'long', 'and', 'wet', '\n', 'hadassiste', 'by', 'the', 'still', 'great', 'imprudence', 'of', 'sitting', '\n', 'in', 'her', 'wet', 'shoe', 'and', 'stockingsgiven', 'Marianne', 'a', 'cold', '\n', 'so', 'violent', 'as', 'though', 'for', 'a', 'day', 'or', 'two', 'trifle', 'with', '\n', 'or', 'deny', 'would', 'force', 'itself', 'by', 'increase', 'ailment', 'on', '\n', 'the', 'concern', 'of', 'every', 'body', 'and', 'the', 'notice', 'of', 'herself', '\n', 'Prescriptions', 'pour', 'in', 'from', 'all', 'quarter', 'and', 'as', 'usual', '\n', 'be', 'all', 'decline', ' ', 'though', 'heavy', 'and', 'feverish', 'with', 'a', 'pain', '\n', 'in', 'her', 'limb', 'and', 'a', 'cough', 'and', 'a', 'sore', 'throat', 'a', 'good', 'night', '\n', 'rest', 'be', 'to', 'cure', 'she', 'entirely', 'and', 'it', 'be', 'with', 'difficulty', '\n', 'that', 'Elinor', 'prevail', 'on', 'she', 'when', 'she', 'go', 'to', 'bed', '\n', 'to', 'try', 'one', 'or', 'two', 'of', 'the', 'simple', 'of', 'the', 'remedy', '\n\n\n\n', 'chapter', '43', '\n\n\n', 'Marianne', 'get', 'up', 'the', 'next', 'morning', 'at', 'her', 'usual', 'time', '\n', 'to', 'every', 'inquiry', 'reply', 'that', 'she', 'be', 'well', 'and', 'try', 'to', '\n', 'prove', 'herself', 'so', 'by', 'engage', 'in', 'her', 'accustomary', 'employment', '\n', 'but', 'a', 'day', 'spend', 'in', 'sit', 'shiver', 'over', 'the', 'fire', '\n', 'with', 'a', 'book', 'in', 'her', 'hand', 'which', 'she', 'be', 'unable', 'to', 'read', '\n', 'or', 'in', 'lie', 'weary', 'and', 'languid', 'on', 'a', 'sofa', 'do', 'not', 'speak', '\n', 'much', 'in', 'favour', 'of', 'her', 'amendment', 'and', 'when', 'at', 'last', '\n', 'she', 'go', 'early', 'to', 'bed', 'more', 'and', 'more', 'indisposed', 'Colonel', '\n', 'Brandon', 'be', 'only', 'astonish', 'at', 'her', 'sister', 'composure', '\n', 'who', 'though', 'attend', 'and', 'nurse', 'she', 'the', 'whole', 'day', '\n', 'against', 'Marianne', 'inclination', 'and', 'force', 'proper', 'medicine', '\n', 'on', 'she', 'at', 'night', 'trust', 'like', 'Marianne', 'to', 'the', 'certainty', '\n', 'and', 'efficacy', 'of', 'sleep', 'and', 'feel', 'no', 'real', 'alarm', '\n\n', 'a', 'very', 'restless', 'and', 'feverish', 'night', 'however', '\n', 'disappoint', 'the', 'expectation', 'of', 'both', 'and', 'when', 'Marianne', '\n', 'after', 'persist', 'in', 'rise', 'confess', 'herself', 'unable', '\n', 'to', 'sit', 'up', 'and', 'return', 'voluntarily', 'to', 'her', 'bed', '\n', 'Elinor', 'be', 'very', 'ready', 'to', 'adopt', 'Mrs', 'Jenningss', 'advice', '\n', 'of', 'send', 'for', 'the', 'Palmers', 'apothecary', '\n\n', 'he', 'come', 'examine', 'his', 'patient', 'and', 'though', 'encourage', '\n', 'Miss', 'Dashwood', 'to', 'expect', 'that', 'a', 'very', 'few', 'day', 'would', 'restore', '\n', 'her', 'sister', 'to', 'health', 'yet', 'by', 'pronounce', 'her', 'disorder', '\n', 'to', 'have', 'a', 'putrid', 'tendency', 'and', 'allow', 'the', 'word', 'infection', '\n', 'to', 'pass', 'his', 'lip', 'give', 'instant', 'alarm', 'to', 'Mrs', 'Palmer', '\n', 'on', 'her', 'babys', 'account', ' ', 'Mrs', 'Jennings', 'who', 'have', 'be', 'incline', '\n', 'from', 'the', 'first', 'to', 'think', 'Mariannes', 'complaint', 'more', 'serious', '\n', 'than', 'Elinor', 'now', 'look', 'very', 'grave', 'on', 'Mr', 'Harriss', 'report', '\n', 'and', 'confirm', 'Charlottes', 'fear', 'and', 'caution', 'urge', 'the', '\n', 'necessity', 'of', 'her', 'immediate', 'removal', 'with', 'her', 'infant', '\n', 'and', 'Mr', 'Palmer', 'though', 'treat', 'their', 'apprehension', 'as', 'idle', '\n', 'find', 'the', 'anxiety', 'and', 'importunity', 'of', 'his', 'wife', 'too', 'great', '\n', 'to', 'be', 'withstand', ' ', 'her', 'departure', 'therefore', 'be', 'fix', 'on', '\n', 'and', 'within', 'an', 'hour', 'after', 'Mr', 'Harriss', 'arrival', 'she', 'set', 'off', '\n', 'with', 'her', 'little', 'boy', 'and', 'his', 'nurse', 'for', 'the', 'house', 'of', 'a', '\n', 'near', 'relation', 'of', 'Mr', 'Palmers', 'who', 'live', 'a', 'few', 'mile', '\n', 'on', 'the', 'other', 'side', 'of', 'Bath', 'whither', 'her', 'husband', 'promise', '\n', 'at', 'her', 'earnest', 'entreaty', 'to', 'join', 'she', 'in', 'a', 'day', 'or', 'two', '\n', 'and', 'whither', 'she', 'be', 'almost', 'equally', 'urgent', 'with', 'her', '\n', 'mother', 'to', 'accompany', 'she', ' ', 'Mrs', 'Jennings', 'however', 'with', 'a', '\n', 'kindness', 'of', 'heart', 'which', 'make', 'Elinor', 'really', 'love', 'she', '\n', 'declare', 'her', 'resolution', 'of', 'not', 'stir', 'from', 'Cleveland', '\n', 'as', 'long', 'as', 'Marianne', 'remain', 'ill', 'and', 'of', 'endeavouring', '\n', 'by', 'her', 'own', 'attentive', 'care', 'to', 'supply', 'to', 'she', 'the', 'place', '\n', 'of', 'the', 'mother', 'she', 'have', 'take', 'she', 'from', 'and', 'Elinor', 'find', 'she', '\n', 'on', 'every', 'occasion', 'a', 'most', 'willing', 'and', 'active', 'helpmate', '\n', 'desirous', 'to', 'share', 'in', 'all', 'her', 'fatigue', 'and', 'often', 'by', 'her', '\n', 'well', 'experience', 'in', 'nursing', 'of', 'material', 'use', '\n\n', 'Poor', 'Marianne', 'languid', 'and', 'low', 'from', 'the', 'nature', '\n', 'of', 'her', 'malady', 'and', 'feel', 'herself', 'universally', 'ill', '\n', 'could', 'no', 'long', 'hope', 'that', 'tomorrow', 'would', 'find', 'she', 'recover', '\n', 'and', 'the', 'idea', 'of', 'what', 'tomorrow', 'would', 'have', 'produce', '\n', 'but', 'for', 'this', 'unlucky', 'illness', 'make', 'every', 'ailment', 'severe', '\n', 'for', 'on', 'that', 'day', 'they', 'be', 'to', 'have', 'begin', 'their', 'journey', 'home', '\n', 'and', 'attend', 'the', 'whole', 'way', 'by', 'a', 'servant', 'of', 'Mrs', 'Jennings', '\n', 'be', 'to', 'have', 'take', 'their', 'mother', 'by', 'surprise', 'on', 'the', '\n', 'follow', 'forenoon', ' ', 'the', 'little', 'she', 'say', 'be', 'all', 'in', '\n', 'lamentation', 'of', 'this', 'inevitable', 'delay', 'though', 'Elinor', 'try', '\n', 'to', 'raise', 'her', 'spirit', 'and', 'make', 'she', 'believe', 'as', 'she', 'then', '\n', 'really', 'believe', 'herself', 'that', 'it', 'would', 'be', 'a', 'very', 'short', 'one', '\n\n', 'the', 'next', 'day', 'produce', 'little', 'or', 'no', 'alteration', 'in', 'the', '\n', 'state', 'of', 'the', 'patient', 'she', 'certainly', 'be', 'not', 'well', 'and', '\n', 'except', 'that', 'there', 'be', 'no', 'amendment', 'do', 'not', 'appear', 'bad', '\n', 'their', 'party', 'be', 'now', 'far', 'reduce', 'for', 'Mr', 'Palmer', '\n', 'though', 'very', 'unwilling', 'to', 'go', 'as', 'well', 'from', 'real', 'humanity', '\n', 'and', 'goodnature', 'as', 'from', 'a', 'dislike', 'of', 'appear', 'to', 'be', '\n', 'frighten', 'away', 'by', 'his', 'wife', 'be', 'persuade', 'at', 'last', '\n', 'by', 'Colonel', 'Brandon', 'to', 'perform', 'his', 'promise', 'of', 'follow', 'she', '\n', 'and', 'while', 'he', 'be', 'prepare', 'to', 'go', 'Colonel', 'Brandon', 'himself', '\n', 'with', 'a', 'much', 'great', 'exertion', 'begin', 'to', 'talk', 'of', 'go', '\n', 'likewisehere', 'however', 'the', 'kindness', 'of', 'Mrs', 'Jennings', '\n', 'interpose', 'most', 'acceptably', 'for', 'to', 'send', 'the', 'Colonel', 'away', '\n', 'while', 'his', 'love', 'be', 'in', 'so', 'much', 'uneasiness', 'on', 'her', 'sister', '\n', 'account', 'would', 'be', 'to', 'deprive', 'they', 'both', 'she', 'think', '\n', 'of', 'every', 'comfort', 'and', 'therefore', 'tell', 'he', 'at', 'once', '\n', 'that', 'his', 'stay', 'at', 'Cleveland', 'be', 'necessary', 'to', 'herself', '\n', 'that', 'she', 'should', 'want', 'he', 'to', 'play', 'at', 'piquet', 'of', 'an', 'evening', '\n', 'while', 'Miss', 'Dashwood', 'be', 'above', 'with', 'her', 'sister', 'c', 'she', '\n', 'urge', 'he', 'so', 'strongly', 'to', 'remain', 'that', 'he', 'who', 'be', 'gratify', '\n', 'the', 'first', 'wish', 'of', 'his', 'own', 'heart', 'by', 'a', 'compliance', 'could', 'not', '\n', 'long', 'even', 'affect', 'to', 'demur', 'especially', 'as', 'Mrs', 'Jenningss', '\n', 'entreaty', 'be', 'warmly', 'second', 'by', 'Mr', 'Palmer', 'who', 'seem', '\n', 'to', 'feel', 'a', 'relief', 'to', 'himself', 'in', 'leave', 'behind', 'he', 'a', 'person', '\n', 'so', 'well', 'able', 'to', 'assist', 'or', 'advise', 'Miss', 'Dashwood', 'in', 'any', 'emergence', '\n\n', 'Marianne', 'be', 'of', 'course', 'keep', 'in', 'ignorance', 'of', 'all', '\n', 'these', 'arrangement', ' ', 'she', 'know', 'not', 'that', 'she', 'have', 'be', '\n', 'the', 'mean', 'of', 'send', 'the', 'owner', 'of', 'Cleveland', 'away', '\n', 'in', 'about', 'seven', 'day', 'from', 'the', 'time', 'of', 'their', 'arrival', '\n', 'it', 'give', 'she', 'no', 'surprise', 'that', 'she', 'see', 'nothing', '\n', 'of', 'Mrs', 'Palmer', 'and', 'as', 'it', 'give', 'she', 'likewise', 'no', 'concern', '\n', 'she', 'never', 'mention', 'her', 'name', '\n\n', 'two', 'day', 'pass', 'away', 'from', 'the', 'time', 'of', 'Mr', 'Palmers', 'departure', '\n', 'and', 'her', 'situation', 'continue', 'with', 'little', 'variation', '\n', 'the', 'same', ' ', 'Mr', 'Harris', 'who', 'attend', 'she', 'every', 'day', '\n', 'still', 'talk', 'boldly', 'of', 'a', 'speedy', 'recovery', 'and', 'Miss', 'Dashwood', '\n', 'be', 'equally', 'sanguine', 'but', 'the', 'expectation', 'of', 'the', 'other', '\n', 'be', 'by', 'no', 'means', 'so', 'cheerful', ' ', 'Mrs', 'Jennings', 'have', 'determine', '\n', 'very', 'early', 'in', 'the', 'seizure', 'that', 'Marianne', 'would', 'never', '\n', 'get', 'over', 'it', 'and', 'Colonel', 'Brandon', 'who', 'be', 'chiefly', '\n', 'of', 'use', 'in', 'listen', 'to', 'Mrs', 'Jenningss', 'foreboding', '\n', 'be', 'not', 'in', 'a', 'state', 'of', 'mind', 'to', 'resist', 'their', 'influence', '\n', 'he', 'try', 'to', 'reason', 'himself', 'out', 'of', 'fear', 'which', 'the', 'different', '\n', 'judgment', 'of', 'the', 'apothecary', 'seem', 'to', 'render', 'absurd', '\n', 'but', 'the', 'many', 'hour', 'of', 'each', 'day', 'in', 'which', 'he', 'be', 'leave', '\n', 'entirely', 'alone', 'be', 'but', 'too', 'favourable', 'for', 'the', 'admission', '\n', 'of', 'every', 'melancholy', 'idea', 'and', 'he', 'could', 'not', 'expel', 'from', '\n', 'his', 'mind', 'the', 'persuasion', 'that', 'he', 'should', 'see', 'Marianne', 'no', 'more', '\n\n', 'on', 'the', 'morning', 'of', 'the', 'third', 'day', 'however', 'the', 'gloomy', '\n', 'anticipation', 'of', 'both', 'be', 'almost', 'do', 'away', 'for', 'when', '\n', 'Mr', 'Harris', 'arrive', 'he', 'declare', 'his', 'patient', 'materially', 'well', '\n', 'her', 'pulse', 'be', 'much', 'strong', 'and', 'every', 'symptom', 'more', 'favourable', '\n', 'than', 'on', 'the', 'precede', 'visit', ' ', 'Elinor', 'confirm', 'in', 'every', '\n', 'pleasant', 'hope', 'be', 'all', 'cheerfulness', 'rejoice', 'that', '\n', 'in', 'her', 'letter', 'to', 'her', 'mother', 'she', 'have', 'pursue', 'her', 'own', '\n', 'judgment', 'rather', 'than', 'her', 'friend', 'in', 'make', 'very', 'light', '\n', 'of', 'the', 'indisposition', 'which', 'delay', 'they', 'at', 'Cleveland', '\n', 'and', 'almost', 'fix', 'on', 'the', 'time', 'when', 'Marianne', 'would', 'be', '\n', 'able', 'to', 'travel', '\n\n', 'but', 'the', 'day', 'do', 'not', 'close', 'so', 'auspiciously', 'as', 'it', 'begin', '\n', 'towards', 'the', 'evening', 'Marianne', 'become', 'ill', 'again', 'grow', '\n', 'more', 'heavy', 'restless', 'and', 'uncomfortable', 'than', 'before', '\n', 'her', 'sister', 'however', 'still', 'sanguine', 'be', 'willing', 'to', '\n', 'attribute', 'the', 'change', 'to', 'nothing', 'more', 'than', 'the', 'fatigue', '\n', 'of', 'having', 'sit', 'up', 'to', 'have', 'her', 'bed', 'make', 'and', 'carefully', '\n', 'administer', 'the', 'cordial', 'prescribe', 'see', 'she', 'with', '\n', 'satisfaction', 'sink', 'at', 'last', 'into', 'a', 'slumber', 'from', 'which', '\n', 'she', 'expect', 'the', 'most', 'beneficial', 'effect', ' ', 'her', 'sleep', '\n', 'though', 'not', 'so', 'quiet', 'as', 'Elinor', 'wish', 'to', 'see', 'it', '\n', 'last', 'a', 'considerable', 'time', 'and', 'anxious', 'to', 'observe', '\n', 'the', 'result', 'of', 'it', 'herself', 'she', 'resolve', 'to', 'sit', 'with', 'she', '\n', 'during', 'the', 'whole', 'of', 'it', ' ', 'Mrs', 'Jennings', 'know', 'nothing', '\n', 'of', 'any', 'change', 'in', 'the', 'patient', 'go', 'unusually', 'early', 'to', 'bed', '\n', 'her', 'maid', 'who', 'be', 'one', 'of', 'the', 'principal', 'nurse', 'be', 'recreate', '\n', 'herself', 'in', 'the', 'housekeeper', 'room', 'and', 'Elinor', 'remain', '\n', 'alone', 'with', 'Marianne', '\n\n', 'the', 'repose', 'of', 'the', 'latter', 'become', 'more', 'and', 'more', 'disturbed', '\n', 'and', 'her', 'sister', 'who', 'watch', 'with', 'unremitting', 'attention', '\n', 'her', 'continual', 'change', 'of', 'posture', 'and', 'hear', 'the', 'frequent', '\n', 'but', 'inarticulate', 'sound', 'of', 'complaint', 'which', 'pass', 'her', 'lip', '\n', 'be', 'almost', 'wish', 'to', 'rouse', 'she', 'from', 'so', 'painful', 'a', 'slumber', '\n', 'when', 'Marianne', 'suddenly', 'awaken', 'by', 'some', 'accidental', 'noise', '\n', 'in', 'the', 'house', 'start', 'hastily', 'up', 'and', 'with', 'feverish', 'wildness', '\n', 'cry', 'out', '\n\n', 'be', 'mama', 'come', '\n\n', 'not', 'yet', 'cry', 'the', 'other', 'conceal', 'her', 'terror', '\n', 'and', 'assist', 'Marianne', 'to', 'lie', 'down', 'again', 'but', 'she', 'will', '\n', 'be', 'here', 'I', 'hope', 'before', 'it', 'be', 'long', ' ', 'it', 'be', 'a', 'great', 'way', '\n', 'you', 'know', 'from', 'hence', 'to', 'Barton', '\n\n', 'but', 'she', 'must', 'not', 'go', 'round', 'by', 'London', 'cry', 'Marianne', '\n', 'in', 'the', 'same', 'hurried', 'manner', ' ', 'I', 'shall', 'never', 'see', 'she', '\n', 'if', 'she', 'go', 'by', 'London', '\n\n', 'Elinor', 'perceive', 'with', 'alarm', 'that', 'she', 'be', 'not', '\n', 'quite', 'herself', 'and', 'while', 'attempt', 'to', 'soothe', 'she', '\n', 'eagerly', 'feel', 'her', 'pulse', ' ', 'it', 'be', 'low', 'and', 'quick', 'than', 'ever', '\n', 'and', 'Marianne', 'still', 'talk', 'wildly', 'of', 'mama', 'her', 'alarm', '\n', 'increase', 'so', 'rapidly', 'as', 'to', 'determine', 'she', 'on', 'send', '\n', 'instantly', 'for', 'Mr', 'Harris', 'and', 'despatch', 'a', 'messenger', '\n', 'to', 'Barton', 'for', 'her', 'mother', ' ', 'to', 'consult', 'with', 'Colonel', 'Brandon', '\n', 'on', 'the', 'good', 'mean', 'of', 'effect', 'the', 'latter', 'be', 'a', 'thought', '\n', 'which', 'immediately', 'follow', 'the', 'resolution', 'of', 'its', 'performance', '\n', 'and', 'as', 'soon', 'she', 'have', 'ring', 'up', 'the', 'maid', 'to', 'take', 'her', 'place', '\n', 'by', 'her', 'sister', 'she', 'hasten', 'down', 'to', 'the', 'drawingroom', '\n', 'where', 'she', 'know', 'he', 'be', 'generally', 'to', 'be', 'find', 'at', 'a', 'much', '\n', 'later', 'hour', 'than', 'the', 'present', '\n\n', 'it', 'be', 'no', 'time', 'for', 'hesitation', ' ', 'her', 'fear', 'and', 'her', '\n', 'difficulty', 'be', 'immediately', 'before', 'he', ' ', 'her', 'fear', '\n', 'he', 'have', 'no', 'courage', 'no', 'confidence', 'to', 'attempt', 'the', 'removal', 'of', '\n', 'he', 'listen', 'to', 'they', 'in', 'silent', 'despondencebut', 'her', '\n', 'difficulty', 'be', 'instantly', 'obviate', 'for', 'with', 'a', 'readiness', '\n', 'that', 'seem', 'to', 'speak', 'the', 'occasion', 'and', 'the', 'service', '\n', 'prearrange', 'in', 'his', 'mind', 'he', 'offer', 'himself', 'as', 'the', '\n', 'messenger', 'who', 'should', 'fetch', 'Mrs', 'Dashwood', ' ', 'Elinor', 'make', 'no', '\n', 'resistance', 'that', 'be', 'not', 'easily', 'overcome', ' ', 'she', 'thank', 'he', '\n', 'with', 'brief', 'though', 'fervent', 'gratitude', 'and', 'while', 'he', 'go', '\n', 'to', 'hurry', 'off', 'his', 'servant', 'with', 'a', 'message', 'to', 'Mr', 'Harris', 'and', '\n', 'an', 'order', 'for', 'posthorse', 'directly', 'she', 'write', 'a', 'few', 'line', '\n', 'to', 'her', 'mother', '\n\n', 'the', 'comfort', 'of', 'such', 'a', 'friend', 'at', 'that', 'moment', 'as', 'Colonel', '\n', 'Brandonor', 'such', 'a', 'companion', 'for', 'her', 'motherhow', 'gratefully', '\n', 'be', 'it', 'felta', 'companion', 'whose', 'judgment', 'would', 'guide', '\n', 'whose', 'attendance', 'must', 'relieve', 'and', 'whose', 'friendship', 'might', '\n', 'soothe', 'hera', 'far', 'as', 'the', 'shock', 'of', 'such', 'a', 'summon', 'could', '\n', 'be', 'lessen', 'to', 'she', 'his', 'presence', 'his', 'manner', 'his', 'assistance', '\n', 'would', 'lessen', 'it', '\n\n', 'he', 'meanwhile', 'whatever', 'he', 'might', 'feel', 'act', 'with', 'all', '\n', 'the', 'firmness', 'of', 'a', 'collect', 'mind', 'make', 'every', 'necessary', '\n', 'arrangement', 'with', 'the', 'utmost', 'despatch', 'and', 'calculate', '\n', 'with', 'exactness', 'the', 'time', 'in', 'which', 'she', 'might', 'look', 'for', '\n', 'his', 'return', ' ', 'not', 'a', 'moment', 'be', 'lose', 'in', 'delay', 'of', 'any', 'kind', '\n', 'the', 'horse', 'arrive', 'even', 'before', 'they', 'be', 'expect', '\n', 'and', 'Colonel', 'Brandon', 'only', 'press', 'her', 'hand', 'with', 'a', 'look', '\n', 'of', 'solemnity', 'and', 'a', 'few', 'word', 'speak', 'too', 'low', 'to', 'reach', 'her', 'ear', '\n', 'hurry', 'into', 'the', 'carriage', ' ', 'it', 'be', 'then', 'about', 'twelve', '\n', 'oclock', 'and', 'she', 'return', 'to', 'her', 'sister', 'apartment', 'to', 'wait', '\n', 'for', 'the', 'arrival', 'of', 'the', 'apothecary', 'and', 'to', 'watch', 'by', 'her', '\n', 'the', 'rest', 'of', 'the', 'night', ' ', 'it', 'be', 'a', 'night', 'of', 'almost', 'equal', '\n', 'suffering', 'to', 'both', ' ', 'Hour', 'after', 'hour', 'pass', 'away', 'in', 'sleepless', '\n', 'pain', 'and', 'delirium', 'on', 'Mariannes', 'side', 'and', 'in', 'the', 'most', '\n', 'cruel', 'anxiety', 'on', 'Elinors', 'before', 'Mr', 'Harris', 'appear', '\n', 'her', 'apprehension', 'once', 'raised', 'pay', 'by', 'their', 'excess', 'for', 'all', '\n', 'her', 'former', 'security', 'and', 'the', 'servant', 'who', 'sit', 'up', 'with', 'she', '\n', 'for', 'she', 'would', 'not', 'allow', 'Mrs', 'Jennings', 'to', 'be', 'call', '\n', 'only', 'torture', 'she', 'more', 'by', 'hint', 'of', 'what', 'her', 'mistress', '\n', 'have', 'always', 'think', '\n\n', 'Mariannes', 'idea', 'be', 'still', 'at', 'interval', '\n', 'fix', 'incoherently', 'on', 'her', 'mother', 'and', 'whenever', 'she', '\n', 'mention', 'her', 'name', 'it', 'give', 'a', 'pang', 'to', 'the', 'heart', 'of', '\n', 'poor', 'Elinor', 'who', 'reproach', 'herself', 'for', 'having', 'trifle', '\n', 'with', 'so', 'many', 'day', 'of', 'illness', 'and', 'wretche', 'for', 'some', '\n', 'immediate', 'relief', 'fancy', 'that', 'all', 'relief', 'might', 'soon', '\n', 'be', 'in', 'vain', 'that', 'every', 'thing', 'have', 'be', 'delay', 'too', 'long', '\n', 'and', 'picture', 'to', 'herself', 'her', 'suffer', 'mother', 'arrive', '\n', 'too', 'late', 'to', 'see', 'this', 'darling', 'child', 'or', 'to', 'see', 'her', 'rational', '\n\n', 'she', 'be', 'on', 'the', 'point', 'of', 'send', 'again', 'for', 'Mr', 'Harris', '\n', 'or', 'if', 'he', 'could', 'not', 'come', 'for', 'some', 'other', 'advice', '\n', 'when', 'the', 'formerbut', 'not', 'till', 'after', 'five', 'oclockarrive', '\n', 'his', 'opinion', 'however', 'make', 'some', 'little', 'amend', 'for', 'his', 'delay', '\n', 'for', 'though', 'acknowledge', 'a', 'very', 'unexpected', 'and', 'unpleasant', '\n', 'alteration', 'in', 'his', 'patient', 'he', 'would', 'not', 'allow', 'the', 'danger', '\n', 'to', 'be', 'material', 'and', 'talk', 'of', 'the', 'relief', 'which', 'a', 'fresh', '\n', 'mode', 'of', 'treatment', 'must', 'procure', 'with', 'a', 'confidence', 'which', '\n', 'in', 'a', 'less', 'degree', 'be', 'communicate', 'to', 'Elinor', ' ', 'he', 'promise', '\n', 'to', 'call', 'again', 'in', 'the', 'course', 'of', 'three', 'or', 'four', 'hour', '\n', 'and', 'leave', 'both', 'the', 'patient', 'and', 'her', 'anxious', 'attendant', 'more', '\n', 'compose', 'than', 'he', 'have', 'find', 'they', '\n\n', 'with', 'strong', 'concern', 'and', 'with', 'many', 'reproach', 'for', 'not', '\n', 'be', 'call', 'to', 'their', 'aid', 'do', 'Mrs', 'Jennings', 'hear', 'in', 'the', '\n', 'morning', 'of', 'what', 'have', 'pass', ' ', 'her', 'former', 'apprehension', '\n', 'now', 'with', 'great', 'reason', 'restore', 'leave', 'she', 'no', 'doubt', 'of', '\n', 'the', 'event', 'and', 'though', 'try', 'to', 'speak', 'comfort', 'to', 'Elinor', '\n', 'her', 'conviction', 'of', 'her', 'sister', 'danger', 'would', 'not', 'allow', 'she', '\n', 'to', 'offer', 'the', 'comfort', 'of', 'hope', ' ', 'her', 'heart', 'be', 'really', 'grieve', '\n', 'the', 'rapid', 'decay', 'the', 'early', 'death', 'of', 'a', 'girl', 'so', 'young', '\n', 'so', 'lovely', 'as', 'Marianne', 'must', 'have', 'strike', 'a', 'less', 'interested', '\n', 'person', 'with', 'concern', ' ', 'on', 'Mrs', 'Jenningss', 'compassion', '\n', 'she', 'have', 'other', 'claim', ' ', 'she', 'have', 'be', 'for', 'three', 'month', '\n', 'her', 'companion', 'be', 'still', 'under', 'her', 'care', 'and', 'she', 'be', '\n', 'know', 'to', 'have', 'be', 'greatly', 'injure', 'and', 'long', 'unhappy', '\n', 'the', 'distress', 'of', 'her', 'sister', 'too', 'particularly', 'a', 'favourite', '\n', 'be', 'before', 'herand', 'as', 'for', 'their', 'mother', 'when', 'Mrs', 'Jennings', '\n', 'consider', 'that', 'Marianne', 'might', 'probably', 'be', 'to', 'she', 'what', '\n', 'Charlotte', 'be', 'to', 'herself', 'her', 'sympathy', 'in', 'her', 'suffering', '\n', 'be', 'very', 'sincere', '\n\n', 'Mr', 'Harris', 'be', 'punctual', 'in', 'his', 'second', 'visit', '\n', 'but', 'he', 'come', 'to', 'be', 'disappoint', 'in', 'his', 'hope', 'of', 'what', 'the', '\n', 'last', 'would', 'produce', ' ', 'his', 'medicine', 'have', 'failedthe', 'fever', '\n', 'be', 'unabated', 'and', 'Marianne', 'only', 'more', 'quietnot', 'more', '\n', 'herselfremaine', 'in', 'a', 'heavy', 'stupor', ' ', 'Elinor', 'catch', 'all', '\n', 'and', 'more', 'than', 'all', 'his', 'fear', 'in', 'a', 'moment', 'propose', 'to', 'call', '\n', 'in', 'further', 'advice', ' ', 'but', 'he', 'judge', 'it', 'unnecessary', 'he', 'have', '\n', 'still', 'something', 'more', 'to', 'try', 'some', 'more', 'fresh', 'application', '\n', 'of', 'whose', 'success', 'he', 'be', 'as', 'confident', 'as', 'the', 'last', 'and', 'his', '\n', 'visit', 'conclude', 'with', 'encourage', 'assurance', 'which', 'reach', '\n', 'the', 'ear', 'but', 'could', 'not', 'enter', 'the', 'heart', 'of', 'Miss', 'Dashwood', '\n', 'she', 'be', 'calm', 'except', 'when', 'she', 'think', 'of', 'her', 'mother', '\n', 'but', 'she', 'be', 'almost', 'hopeless', 'and', 'in', 'this', 'state', 'she', 'continue', '\n', 'till', 'noon', 'scarcely', 'stir', 'from', 'her', 'sister', 'bed', '\n', 'her', 'thought', 'wander', 'from', 'one', 'image', 'of', 'grief', '\n', 'one', 'suffer', 'friend', 'to', 'another', 'and', 'her', 'spirit', 'oppress', '\n', 'to', 'the', 'utmost', 'by', 'the', 'conversation', 'of', 'Mrs', 'Jennings', '\n', 'who', 'scruple', 'not', 'to', 'attribute', 'the', 'severity', 'and', 'danger', '\n', 'of', 'this', 'attack', 'to', 'the', 'many', 'week', 'of', 'previous', 'indisposition', '\n', 'which', 'Mariannes', 'disappointment', 'have', 'bring', 'on', '\n', 'Elinor', 'feel', 'all', 'the', 'reasonableness', 'of', 'the', 'idea', 'and', 'it', '\n', 'give', 'fresh', 'misery', 'to', 'her', 'reflection', '\n\n', 'about', 'noon', 'however', 'she', 'beganbut', 'with', 'a', 'cautiona', '\n', 'dread', 'of', 'disappointment', 'which', 'for', 'some', 'time', 'keep', 'her', 'silent', '\n', 'even', 'to', 'her', 'friendto', 'fancy', 'to', 'hope', 'she', 'could', 'perceive', '\n', 'a', 'slight', 'amendment', 'in', 'her', 'sister', 'pulseshe', 'wait', '\n', 'watch', 'and', 'examine', 'it', 'again', 'and', 'againand', 'at', 'last', '\n', 'with', 'an', 'agitation', 'more', 'difficult', 'to', 'bury', 'under', 'exterior', 'calmness', '\n', 'than', 'all', 'her', 'forego', 'distress', 'venture', 'to', 'communicate', '\n', 'her', 'hope', ' ', 'Mrs', 'Jennings', 'though', 'force', 'on', 'examination', '\n', 'to', 'acknowledge', 'a', 'temporary', 'revival', 'try', 'to', 'keep', 'her', '\n', 'young', 'friend', 'from', 'indulge', 'a', 'thought', 'of', 'its', 'continuance', '\n', 'and', 'Elinor', 'con', 'over', 'every', 'injunction', 'of', 'distrust', '\n', 'tell', 'herself', 'likewise', 'not', 'to', 'hope', ' ', 'but', 'it', 'be', 'too', 'late', '\n', 'Hope', 'have', 'already', 'enter', 'and', 'feel', 'all', 'its', 'anxious', 'flutter', '\n', 'she', 'bend', 'over', 'her', 'sister', 'to', 'watchshe', 'hardly', 'know', 'for', 'what', '\n', 'half', 'an', 'hour', 'pass', 'away', 'and', 'the', 'favourable', 'symptom', '\n', 'yet', 'bless', 'her', ' ', 'other', 'even', 'arise', 'to', 'confirm', 'it', '\n', 'her', 'breath', 'her', 'skin', 'her', 'lip', 'all', 'flattered', 'Elinor', '\n', 'with', 'sign', 'of', 'amendment', 'and', 'Marianne', 'fix', 'her', 'eye', 'on', '\n', 'she', 'with', 'a', 'rational', 'though', 'languid', 'gaze', ' ', 'Anxiety', 'and', '\n', 'hope', 'now', 'oppress', 'she', 'in', 'equal', 'degree', 'and', 'leave', 'she', 'no', '\n', 'moment', 'of', 'tranquillity', 'till', 'the', 'arrival', 'of', 'Mr', 'Harris', 'at', '\n', 'four', 'oclockwhen', 'his', 'assurance', 'his', 'felicitation', 'on', '\n', 'a', 'recovery', 'in', 'her', 'sister', 'even', 'surpass', 'his', 'expectation', '\n', 'give', 'her', 'confidence', 'comfort', 'and', 'tear', 'of', 'joy', '\n\n', 'Marianne', 'be', 'in', 'every', 'respect', 'materially', 'well', '\n', 'and', 'he', 'declare', 'she', 'entirely', 'out', 'of', 'danger', ' ', 'Mrs', 'Jennings', '\n', 'perhaps', 'satisfied', 'with', 'the', 'partial', 'justification', 'of', 'her', '\n', 'foreboding', 'which', 'have', 'be', 'find', 'in', 'their', 'late', 'alarm', '\n', 'allow', 'herself', 'to', 'trust', 'in', 'his', 'judgment', 'and', 'admit', '\n', 'with', 'unfeigned', 'joy', 'and', 'soon', 'with', 'unequivocal', 'cheerfulness', '\n', 'the', 'probability', 'of', 'an', 'entire', 'recovery', '\n\n', 'Elinor', 'could', 'not', 'be', 'cheerful', ' ', 'her', 'joy', 'be', 'of', 'a', '\n', 'different', 'kind', 'and', 'lead', 'to', 'any', 'thing', 'rather', 'than', 'to', 'gaiety', '\n', 'Marianne', 'restore', 'to', 'life', 'health', 'friend', 'and', 'to', 'her', '\n', 'doting', 'mother', 'be', 'an', 'idea', 'to', 'fill', 'her', 'heart', 'with', 'sensation', '\n', 'of', 'exquisite', 'comfort', 'and', 'expand', 'it', 'in', 'fervent', 'gratitude', '\n', 'but', 'it', 'lead', 'to', 'no', 'outward', 'demonstration', 'of', 'joy', 'no', 'word', '\n', 'no', 'smile', ' ', 'all', 'within', 'Elinors', 'breast', 'be', 'satisfaction', '\n', 'silent', 'and', 'strong', '\n\n', 'she', 'continue', 'by', 'the', 'side', 'of', 'her', 'sister', 'with', 'little', '\n', 'intermission', 'the', 'whole', 'afternoon', 'calm', 'every', 'fear', '\n', 'satisfy', 'every', 'inquiry', 'of', 'her', 'enfeeble', 'spirit', '\n', 'supply', 'every', 'succour', 'and', 'watch', 'almost', 'every', 'look', 'and', '\n', 'every', 'breath', ' ', 'the', 'possibility', 'of', 'a', 'relapse', 'would', 'of', 'course', '\n', 'in', 'some', 'moment', 'occur', 'to', 'remind', 'she', 'of', 'what', 'anxiety', 'be', '\n', 'but', 'when', 'she', 'see', 'on', 'her', 'frequent', 'and', 'minute', 'examination', '\n', 'that', 'every', 'symptom', 'of', 'recovery', 'continue', 'and', 'see', 'Marianne', '\n', 'at', 'six', 'oclock', 'sink', 'into', 'a', 'quiet', 'steady', 'and', 'to', 'all', '\n', 'appearance', 'comfortable', 'sleep', 'she', 'silence', 'every', 'doubt', '\n\n', 'the', 'time', 'be', 'now', 'draw', 'on', 'when', 'Colonel', 'Brandon', '\n', 'might', 'be', 'expect', 'back', ' ', 'at', 'ten', 'oclock', 'she', 'trust', '\n', 'or', 'at', 'least', 'not', 'much', 'later', 'her', 'mother', 'would', 'be', 'relieve', '\n', 'from', 'the', 'dreadful', 'suspense', 'in', 'which', 'she', 'must', 'now', 'be', '\n', 'travel', 'towards', 'they', ' ', 'the', 'Colonel', 'tooperhap', 'scarcely', '\n', 'less', 'an', 'object', 'of', 'pityohhow', 'slow', 'be', 'the', 'progress', '\n', 'of', 'time', 'which', 'yet', 'keep', 'they', 'in', 'ignorance', '\n\n', 'at', 'seven', 'oclock', 'leave', 'Marianne', 'still', 'sweetly', 'asleep', '\n', 'she', 'join', 'Mrs', 'Jennings', 'in', 'the', 'drawingroom', 'to', 'tea', '\n', 'of', 'breakfast', 'she', 'have', 'be', 'keep', 'by', 'her', 'fear', 'and', 'of', '\n', 'dinner', 'by', 'their', 'sudden', 'reverse', 'from', 'eat', 'much', '\n', 'and', 'the', 'present', 'refreshment', 'therefore', 'with', 'such', 'feeling', '\n', 'of', 'content', 'as', 'she', 'bring', 'to', 'it', 'be', 'particularly', 'welcome', '\n', 'Mrs', 'Jennings', 'would', 'have', 'persuade', 'she', 'at', 'its', 'conclusion', '\n', 'to', 'take', 'some', 'rest', 'before', 'her', 'mother', 'arrival', 'and', 'allow', 'she', 'to', '\n', 'take', 'her', 'place', 'by', 'Marianne', 'but', 'Elinor', 'have', 'no', 'sense', 'of', 'fatigue', '\n', 'no', 'capability', 'of', 'sleep', 'at', 'that', 'moment', 'about', 'she', 'and', 'she', 'be', '\n', 'not', 'to', 'be', 'keep', 'away', 'from', 'her', 'sister', 'an', 'unnecessary', 'instant', '\n', 'Mrs', 'Jennings', 'therefore', 'attend', 'she', 'up', 'stair', 'into', 'the', '\n', 'sick', 'chamber', 'to', 'satisfy', 'herself', 'that', 'all', 'continue', 'right', '\n', 'leave', 'she', 'there', 'again', 'to', 'her', 'charge', 'and', 'her', 'thought', '\n', 'and', 'retire', 'to', 'her', 'own', 'room', 'to', 'write', 'letter', 'and', 'sleep', '\n\n', 'the', 'night', 'be', 'cold', 'and', 'stormy', ' ', 'the', 'wind', 'roar', '\n', 'round', 'the', 'house', 'and', 'the', 'rain', 'beat', 'against', 'the', 'window', '\n', 'but', 'Elinor', 'all', 'happiness', 'within', 'regard', 'it', 'not', '\n', 'Marianne', 'sleep', 'through', 'every', 'blast', 'and', 'the', 'traveller', '\n', 'they', 'have', 'a', 'rich', 'reward', 'in', 'store', 'for', 'every', 'present', 'inconvenience', '\n\n', 'the', 'clock', 'strike', 'eight', ' ', 'have', 'it', 'be', 'ten', '\n', 'Elinor', 'would', 'have', 'be', 'convince', 'that', 'at', 'that', 'moment', '\n', 'she', 'hear', 'a', 'carriage', 'drive', 'up', 'to', 'the', 'house', '\n', 'and', 'so', 'strong', 'be', 'the', 'persuasion', 'that', 'she', 'do', 'in', 'spite', '\n', 'of', 'the', 'almost', 'impossibility', 'of', 'their', 'be', 'already', 'come', '\n', 'that', 'she', 'move', 'into', 'the', 'adjoining', 'dressingcloset', 'and', '\n', 'open', 'a', 'window', 'shutter', 'to', 'be', 'satisfied', 'of', 'the', 'truth', '\n', 'she', 'instantly', 'see', 'that', 'her', 'ear', 'have', 'not', 'deceive', 'she', '\n', 'the', 'flare', 'lamp', 'of', 'a', 'carriage', 'be', 'immediately', 'in', 'view', '\n', 'by', 'their', 'uncertain', 'light', 'she', 'think', 'she', 'could', 'discern', 'it', '\n', 'to', 'be', 'draw', 'by', 'four', 'horse', 'and', 'this', 'while', 'it', 'tell', 'the', '\n', 'excess', 'of', 'her', 'poor', 'mother', 'alarm', 'give', 'some', 'explanation', '\n', 'to', 'such', 'unexpected', 'rapidity', '\n\n', 'never', 'in', 'her', 'life', 'have', 'Elinor', 'find', 'it', 'so', 'difficult', '\n', 'to', 'be', 'calm', 'as', 'at', 'that', 'moment', ' ', 'the', 'knowledge', 'of', 'what', 'her', '\n', 'mother', 'must', 'be', 'feel', 'as', 'the', 'carriage', 'stopt', 'at', 'the', 'door', '\n', 'of', 'her', 'doubther', 'dreadperhap', 'her', 'despairand', '\n', 'of', 'what', 'she', 'have', 'to', 'tellwith', 'such', 'knowledge', 'it', 'be', '\n', 'impossible', 'to', 'be', 'calm', ' ', 'all', 'that', 'remain', 'to', 'be', 'do', '\n', 'be', 'to', 'be', 'speedy', 'and', 'therefore', 'stay', 'only', 'till', '\n', 'she', 'could', 'leave', 'Mrs', 'Jenningss', 'maid', 'with', 'her', 'sister', '\n', 'she', 'hurry', 'down', 'stair', '\n\n', 'the', 'bustle', 'in', 'the', 'vestibule', 'as', 'she', 'pass', 'along', '\n', 'an', 'inner', 'lobby', 'assure', 'she', 'that', 'they', 'be', 'already', '\n', 'in', 'the', 'house', ' ', 'she', 'rush', 'to', 'the', 'drawingroomshe', '\n', 'enter', 'itand', 'see', 'only', 'Willoughby', '\n\n\n\n', 'chapter', '44', '\n\n\n', 'Elinor', 'start', 'back', 'with', 'a', 'look', 'of', 'horror', 'at', '\n', 'the', 'sight', 'of', 'he', 'obey', 'the', 'first', 'impulse', 'of', 'her', 'heart', '\n', 'in', 'turn', 'instantly', 'to', 'quit', 'the', 'room', 'and', 'her', 'hand', '\n', 'be', 'already', 'on', 'the', 'lock', 'when', 'its', 'action', 'be', 'suspend', '\n', 'by', 'his', 'hastily', 'advance', 'and', 'say', 'in', 'a', 'voice', 'rather', '\n', 'of', 'command', 'than', 'supplication', '\n\n', 'Miss', 'Dashwood', 'for', 'half', 'an', 'hourfor', 'ten', 'minute', '\n', 'I', 'entreat', 'you', 'to', 'stay', '\n\n', 'no', 'sir', 'she', 'reply', 'with', 'firmness', 'I', 'shall', 'not', 'stay', '\n', 'your', 'business', 'can', 'not', 'be', 'with', 'I', ' ', 'the', 'servant', 'I', 'suppose', '\n', 'forgot', 'to', 'tell', 'you', 'that', 'Mr', 'Palmer', 'be', 'not', 'in', 'the', 'house', '\n\n', 'have', 'they', 'tell', 'I', 'he', 'cry', 'with', 'vehemence', '\n', 'that', 'Mr', 'Palmer', 'and', 'all', 'his', 'relation', 'be', 'at', 'the', 'devil', '\n', 'it', 'would', 'not', 'have', 'turn', 'I', 'from', 'the', 'door', ' ', 'my', 'business', '\n', 'be', 'with', 'you', 'and', 'only', 'you', '\n\n', 'with', 'mein', 'the', 'utmost', 'amazementwell', 'sir', '\n', 'be', 'quickand', 'if', 'you', 'canless', 'violent', '\n\n', 'sit', 'down', 'and', 'I', 'will', 'be', 'both', '\n\n', 'she', 'hesitate', 'she', 'know', 'not', 'what', 'to', 'do', ' ', 'the', 'possibility', '\n', 'of', 'Colonel', 'Brandons', 'arrive', 'and', 'find', 'she', 'there', '\n', 'come', 'across', 'she', ' ', 'but', 'she', 'have', 'promise', 'to', 'hear', 'he', '\n', 'and', 'her', 'curiosity', 'no', 'less', 'than', 'her', 'honor', 'be', 'engage', '\n', 'after', 'a', 'moment', 'recollection', 'therefore', 'conclude', 'that', '\n', 'prudence', 'require', 'dispatch', 'and', 'that', 'her', 'acquiescence', 'would', '\n', 'good', 'promote', 'it', 'she', 'walk', 'silently', 'towards', 'the', 'table', '\n', 'and', 'sit', 'down', ' ', 'he', 'take', 'the', 'opposite', 'chair', 'and', 'for', 'half', '\n', 'a', 'minute', 'not', 'a', 'word', 'be', 'say', 'by', 'either', '\n\n', 'pray', 'be', 'quick', 'sirsaid', 'Elinor', 'impatiently', '\n', 'I', 'have', 'no', 'time', 'to', 'spare', '\n\n', 'he', 'be', 'sit', 'in', 'an', 'attitude', 'of', 'deep', 'meditation', '\n', 'and', 'seem', 'not', 'to', 'hear', 'she', '\n\n', 'your', 'sister', 'say', 'he', 'with', 'abruptness', 'a', 'moment', '\n', 'afterwardsis', 'out', 'of', 'danger', ' ', 'I', 'hear', 'it', 'from', 'the', 'servant', '\n', 'God', 'be', 'praisedbut', 'be', 'it', 'true', 'be', 'it', 'really', 'true', '\n\n', 'Elinor', 'would', 'not', 'speak', ' ', 'he', 'repeat', 'the', 'inquiry', 'with', '\n', 'yet', 'great', 'eagerness', '\n\n', 'for', 'Gods', 'sake', 'tell', 'I', 'be', 'she', 'out', 'of', 'danger', 'or', 'be', 'she', 'not', '\n\n', 'we', 'hope', 'she', 'be', '\n\n', 'he', 'rise', 'up', 'and', 'walk', 'across', 'the', 'room', '\n\n', 'have', 'I', 'know', 'as', 'much', 'half', 'an', 'hour', 'agobut', '\n', 'since', 'I', 'be', 'herespeake', 'with', 'a', 'force', 'vivacity', 'as', 'he', '\n', 'return', 'to', 'his', 'seatwhat', 'do', 'it', 'signifyFor', 'once', '\n', 'Miss', 'Dashwoodit', 'will', 'be', 'the', 'last', 'time', 'perhapslet', 'we', '\n', 'be', 'cheerful', 'togetherI', 'be', 'in', 'a', 'fine', 'mood', 'for', 'gaiety', '\n', 'tell', 'I', 'honestlya', 'deep', 'glow', 'overspread', 'his', 'cheek', '\n', 'do', 'you', 'think', 'I', 'most', 'a', 'knave', 'or', 'a', 'fool', '\n\n', 'Elinor', 'look', 'at', 'he', 'with', 'great', 'astonishment', 'than', 'ever', '\n', 'she', 'begin', 'to', 'think', 'that', 'be', 'must', 'be', 'in', 'liquorthe', '\n', 'strangeness', 'of', 'such', 'a', 'visit', 'and', 'of', 'such', 'manner', '\n', 'seem', 'no', 'otherwise', 'intelligible', 'and', 'with', 'this', 'impression', '\n', 'she', 'immediately', 'rise', 'say', '\n\n', 'Mr', 'Willoughby', 'I', 'advise', 'you', 'at', 'present', 'to', 'return', '\n', 'to', 'combei', 'be', 'not', 'at', 'leisure', 'to', 'remain', 'with', 'you', 'long', '\n', 'whatever', 'your', 'business', 'may', 'be', 'with', 'I', 'will', 'it', 'be', 'well', '\n', 'recollect', 'and', 'explain', 'tomorrow', '\n\n', 'I', 'understand', 'you', 'he', 'reply', 'with', 'an', 'expressive', 'smile', '\n', 'and', 'a', 'voice', 'perfectly', 'calm', 'yes', 'I', 'be', 'very', 'drunk', '\n', 'a', 'pint', 'of', 'porter', 'with', 'my', 'cold', 'beef', 'at', 'Marlborough', 'be', '\n', 'enough', 'to', 'overset', 'I', '\n\n', 'at', 'Marlboroughcried', 'Elinor', 'more', 'and', 'more', 'at', '\n', 'a', 'loss', 'to', 'understand', 'what', 'he', 'would', 'be', 'at', '\n\n', 'YesI', 'leave', 'London', 'this', 'morning', 'at', 'eight', 'oclock', '\n', 'and', 'the', 'only', 'ten', 'minute', 'I', 'have', 'spend', 'out', 'of', 'my', 'chaise', '\n', 'since', 'that', 'time', 'procure', 'I', 'a', 'nuncheon', 'at', 'Marlborough', '\n\n', 'the', 'steadiness', 'of', 'his', 'manner', 'and', 'the', 'intelligence', '\n', 'of', 'his', 'eye', 'as', 'he', 'speak', 'convince', 'Elinor', 'that', 'whatever', '\n', 'other', 'unpardonable', 'folly', 'might', 'bring', 'he', 'to', 'Cleveland', '\n', 'he', 'be', 'not', 'bring', 'there', 'by', 'intoxication', 'she', 'say', '\n', 'after', 'a', 'moment', 'recollection', '\n\n', 'Mr', 'Willoughby', 'you', 'ought', 'to', 'feel', 'and', 'I', 'certainly', '\n', 'DOthat', 'after', 'what', 'have', 'passedyour', 'come', 'here', 'in', '\n', 'this', 'manner', 'and', 'force', 'yourself', 'upon', 'my', 'notice', '\n', 'require', 'a', 'very', 'particular', 'excusewhat', 'be', 'it', '\n', 'that', 'you', 'mean', 'by', 'it', '\n\n', 'I', 'meansaid', 'he', 'with', 'serious', 'energyif', 'I', 'can', '\n', 'to', 'make', 'you', 'hate', 'I', 'one', 'degree', 'less', 'than', 'you', 'do', 'now', '\n', 'I', 'mean', 'to', 'offer', 'some', 'kind', 'of', 'explanation', 'some', 'kind', '\n', 'of', 'apology', 'for', 'the', 'past', 'to', 'open', 'my', 'whole', 'heart', 'to', 'you', '\n', 'and', 'by', 'convince', 'you', 'that', 'though', 'I', 'have', 'be', 'always', '\n', 'a', 'blockhead', 'I', 'have', 'not', 'be', 'always', 'a', 'rascal', 'to', 'obtain', '\n', 'something', 'like', 'forgiveness', 'from', 'Mafrom', 'your', 'sister', '\n\n', 'be', 'this', 'the', 'real', 'reason', 'of', 'your', 'come', '\n\n', 'upon', 'my', 'soul', 'it', 'iswa', 'his', 'answer', 'with', 'a', 'warmth', '\n', 'which', 'bring', 'all', 'the', 'former', 'Willoughby', 'to', 'her', 'remembrance', '\n', 'and', 'in', 'spite', 'of', 'herself', 'make', 'she', 'think', 'he', 'sincere', '\n\n', 'if', 'that', 'be', 'all', 'you', 'may', 'be', 'satisfied', 'already', '\n', 'for', 'Marianne', 'DOESshe', 'have', 'long', 'forgive', 'you', '\n\n', 'have', 'shehe', 'cry', 'in', 'the', 'same', 'eager', 'tone', '\n', 'then', 'she', 'have', 'forgive', 'I', 'before', 'she', 'ought', 'to', 'have', 'do', 'it', '\n', 'but', 'she', 'shall', 'forgive', 'I', 'again', 'and', 'on', 'more', 'reasonable', '\n', 'groundsnow', 'will', 'you', 'listen', 'to', 'I', '\n\n', 'Elinor', 'bow', 'her', 'assent', '\n\n', 'I', 'do', 'not', 'know', 'say', 'he', 'after', 'a', 'pause', 'of', 'expectation', '\n', 'on', 'her', 'side', 'and', 'thoughtfulness', 'on', 'his', 'ownhow', 'you', '\n', 'may', 'have', 'account', 'for', 'my', 'behaviour', 'to', 'your', 'sister', '\n', 'or', 'what', 'diabolical', 'motive', 'you', 'may', 'have', 'impute', 'to', 'I', '\n', 'perhaps', 'you', 'will', 'hardly', 'think', 'the', 'well', 'of', 'meit', 'be', '\n', 'worth', 'the', 'trial', 'however', 'and', 'you', 'shall', 'hear', 'every', 'thing', '\n', 'when', 'I', 'first', 'become', 'intimate', 'in', 'your', 'family', 'I', 'have', 'no', '\n', 'other', 'intention', 'no', 'other', 'view', 'in', 'the', 'acquaintance', '\n', 'than', 'to', 'pass', 'my', 'time', 'pleasantly', 'while', 'I', 'be', 'oblige', 'to', 'remain', '\n', 'in', 'Devonshire', 'more', 'pleasantly', 'than', 'I', 'have', 'ever', 'do', 'before', '\n', 'your', 'sister', 'lovely', 'person', 'and', 'interesting', 'manner', '\n', 'could', 'not', 'but', 'please', 'I', 'and', 'her', 'behaviour', 'to', 'I', 'almost', '\n', 'from', 'the', 'first', 'be', 'of', 'a', 'kindIt', 'be', 'astonish', '\n', 'when', 'I', 'reflect', 'on', 'what', 'it', 'be', 'and', 'what', 'she', 'be', 'that', 'my', '\n', 'heart', 'should', 'have', 'be', 'so', 'insensible', ' ', 'but', 'at', 'first', '\n', 'I', 'must', 'confess', 'my', 'vanity', 'only', 'be', 'elevate', 'by', 'it', '\n', 'careless', 'of', 'her', 'happiness', 'think', 'only', 'of', 'my', 'own', 'amusement', '\n', 'give', 'way', 'to', 'feeling', 'which', 'I', 'have', 'always', 'be', 'too', 'much', '\n', 'in', 'the', 'habit', 'of', 'indulge', 'I', 'endeavour', 'by', 'every', 'mean', '\n', 'in', 'my', 'power', 'to', 'make', 'myself', 'pleasing', 'to', 'she', 'without', 'any', '\n', 'design', 'of', 'return', 'her', 'affection', '\n\n', 'Miss', 'Dashwood', 'at', 'this', 'point', 'turn', 'her', 'eye', 'on', 'he', '\n', 'with', 'the', 'most', 'angry', 'contempt', 'stop', 'he', 'by', 'say', '\n\n', 'it', 'be', 'hardly', 'worth', 'while', 'Mr', 'Willoughby', '\n', 'for', 'you', 'to', 'relate', 'or', 'for', 'I', 'to', 'listen', 'any', 'long', '\n', 'such', 'a', 'beginning', 'as', 'this', 'can', 'not', 'be', 'follow', 'by', 'any', 'thing', '\n', 'do', 'not', 'let', 'I', 'be', 'pain', 'by', 'hear', 'any', 'thing', 'more', 'on', '\n', 'the', 'subject', '\n\n', 'I', 'insist', 'on', 'you', 'hear', 'the', 'whole', 'of', 'it', 'he', 'reply', '\n', 'my', 'fortune', 'be', 'never', 'large', 'and', 'I', 'have', 'always', 'be', 'expensive', '\n', 'always', 'in', 'the', 'habit', 'of', 'associate', 'with', 'people', 'of', 'well', '\n', 'income', 'than', 'myself', ' ', 'every', 'year', 'since', 'my', 'coming', 'of', 'age', '\n', 'or', 'even', 'before', 'I', 'believe', 'have', 'add', 'to', 'my', 'debt', 'and', 'though', '\n', 'the', 'death', 'of', 'my', 'old', 'cousin', 'Mrs', 'Smith', 'be', 'to', 'set', 'I', 'free', '\n', 'yet', 'that', 'event', 'be', 'uncertain', 'and', 'possibly', 'far', 'distant', '\n', 'it', 'have', 'be', 'for', 'some', 'time', 'my', 'intention', 'to', 'reestablish', 'my', '\n', 'circumstance', 'by', 'marry', 'a', 'woman', 'of', 'fortune', ' ', 'to', 'attach', '\n', 'myself', 'to', 'your', 'sister', 'therefore', 'be', 'not', 'a', 'thing', 'to', 'be', '\n', 'think', 'ofand', 'with', 'a', 'meanness', 'selfishness', 'cruelty', '\n', 'which', 'no', 'indignant', 'no', 'contemptuous', 'look', 'even', 'of', 'yours', '\n', 'Miss', 'Dashwood', 'can', 'ever', 'reprobate', 'too', 'muchI', 'be', 'act', '\n', 'in', 'this', 'manner', 'try', 'to', 'engage', 'her', 'regard', 'without', 'a', '\n', 'thought', 'of', 'return', 'itbut', 'one', 'thing', 'may', 'be', 'say', '\n', 'for', 'I', 'even', 'in', 'that', 'horrid', 'state', 'of', 'selfish', 'vanity', '\n', 'I', 'do', 'not', 'know', 'the', 'extent', 'of', 'the', 'injury', 'I', 'meditate', '\n', 'because', 'I', 'do', 'not', 'then', 'know', 'what', 'it', 'be', 'to', 'love', '\n', 'but', 'have', 'I', 'ever', 'know', 'itwell', 'may', 'it', 'be', 'doubt', 'for', 'have', 'I', '\n', 'really', 'love', 'could', 'I', 'have', 'sacrifice', 'my', 'feeling', 'to', 'vanity', '\n', 'to', 'avariceor', 'what', 'be', 'more', 'could', 'I', 'have', 'sacrifice', 'hers', '\n', 'but', 'I', 'have', 'do', 'it', ' ', 'to', 'avoid', 'a', 'comparative', 'poverty', '\n', 'which', 'her', 'affection', 'and', 'her', 'society', 'would', 'have', 'deprive', '\n', 'of', 'all', 'its', 'horror', 'I', 'have', 'by', 'raise', 'myself', 'to', 'affluence', '\n', 'lose', 'every', 'thing', 'that', 'could', 'make', 'it', 'a', 'blessing', '\n\n', 'you', 'do', 'then', 'say', 'Elinor', 'a', 'little', 'softened', '\n', 'believe', 'yourself', 'at', 'one', 'time', 'attach', 'to', 'she', '\n\n', 'to', 'have', 'resist', 'such', 'attraction', 'to', 'have', 'withstood', '\n', 'such', 'tendernessIs', 'there', 'a', 'man', 'on', 'earth', 'who', 'could', 'have', '\n', 'do', 'itYes', 'I', 'find', 'myself', 'by', 'insensible', 'degree', '\n', 'sincerely', 'fond', 'of', 'she', 'and', 'the', 'happy', 'hour', 'of', 'my', 'life', '\n', 'be', 'what', 'I', 'spend', 'with', 'she', 'when', 'I', 'feel', 'my', 'intention', '\n', 'be', 'strictly', 'honourable', 'and', 'my', 'feeling', 'blameless', '\n', 'even', 'then', 'however', 'when', 'fully', 'determine', 'on', 'pay', '\n', 'my', 'address', 'to', 'she', 'I', 'allow', 'myself', 'most', 'improperly', '\n', 'to', 'put', 'off', 'from', 'day', 'to', 'day', 'the', 'moment', 'of', 'do', 'it', '\n', 'from', 'an', 'unwillingness', 'to', 'enter', 'into', 'an', 'engagement', '\n', 'while', 'my', 'circumstance', 'be', 'so', 'greatly', 'embarrassed', '\n', 'I', 'will', 'not', 'reason', 'herenor', 'will', 'I', 'stop', 'for', 'you', 'to', 'expatiate', '\n', 'on', 'the', 'absurdity', 'and', 'the', 'bad', 'than', 'absurdity', 'of', 'scruple', '\n', 'to', 'engage', 'my', 'faith', 'where', 'my', 'honour', 'be', 'already', 'bind', '\n', 'the', 'event', 'have', 'prove', 'that', 'I', 'be', 'a', 'cunning', 'fool', '\n', 'provide', 'with', 'great', 'circumspection', 'for', 'a', 'possible', '\n', 'opportunity', 'of', 'make', 'myself', 'contemptible', 'and', 'wretche', '\n', 'for', 'ever', ' ', 'at', 'last', 'however', 'my', 'resolution', 'be', 'take', '\n', 'and', 'I', 'have', 'determine', 'as', 'soon', 'as', 'I', 'could', 'engage', 'she', 'alone', '\n', 'to', 'justify', 'the', 'attention', 'I', 'have', 'so', 'invariably', 'pay', 'she', '\n', 'and', 'openly', 'assure', 'she', 'of', 'an', 'affection', 'which', 'I', 'have', 'already', '\n', 'take', 'such', 'pain', 'to', 'display', ' ', 'but', 'in', 'the', 'interimin', 'the', '\n', 'interim', 'of', 'the', 'very', 'few', 'hour', 'that', 'be', 'to', 'pass', 'before', 'I', '\n', 'could', 'have', 'an', 'opportunity', 'of', 'speak', 'with', 'she', 'in', 'private', '\n', 'a', 'circumstance', 'occurredan', 'unlucky', 'circumstance', 'to', 'ruin', '\n', 'all', 'my', 'resolution', 'and', 'with', 'it', 'all', 'my', 'comfort', ' ', 'a', 'discovery', '\n', 'take', 'placehere', 'he', 'hesitate', 'and', 'look', 'downMrs', 'Smith', '\n', 'have', 'somehow', 'or', 'other', 'be', 'inform', 'I', 'imagine', 'by', 'some', '\n', 'distant', 'relation', 'whose', 'interest', 'it', 'be', 'to', 'deprive', 'I', 'of', '\n', 'her', 'favour', 'of', 'an', 'affair', 'a', 'connectionbut', 'I', 'need', 'not', '\n', 'explain', 'myself', 'far', 'he', 'add', 'look', 'at', 'she', 'with', 'an', '\n', 'heighten', 'colour', 'and', 'an', 'enquire', 'eyeyour', 'particular', '\n', 'intimacyyou', 'have', 'probably', 'hear', 'the', 'whole', 'story', 'long', 'ago', '\n\n', 'I', 'have', 'return', 'Elinor', 'colour', 'likewise', '\n', 'and', 'harden', 'her', 'heart', 'anew', 'against', 'any', 'compassion', 'for', 'he', '\n', 'I', 'have', 'hear', 'it', 'all', ' ', 'and', 'how', 'you', 'will', 'explain', 'away', 'any', '\n', 'part', 'of', 'your', 'guilt', 'in', 'that', 'dreadful', 'business', 'I', 'confess', '\n', 'be', 'beyond', 'my', 'comprehension', '\n\n', 'remember', 'cry', 'Willoughby', 'from', 'whom', 'you', 'receive', '\n', 'the', 'account', ' ', 'could', 'it', 'be', 'an', 'impartial', 'one', ' ', 'I', 'acknowledge', '\n', 'that', 'her', 'situation', 'and', 'her', 'character', 'ought', 'to', 'have', 'be', '\n', 'respect', 'by', 'I', ' ', 'I', 'do', 'not', 'mean', 'to', 'justify', 'myself', 'but', 'at', '\n', 'the', 'same', 'time', 'can', 'not', 'leave', 'you', 'to', 'suppose', 'that', 'I', 'have', 'nothing', '\n', 'to', 'urgethat', 'because', 'she', 'be', 'injure', 'she', 'be', 'irreproachable', '\n', 'and', 'because', 'I', 'be', 'a', 'libertine', 'she', 'must', 'be', 'a', 'saint', '\n', 'if', 'the', 'violence', 'of', 'her', 'passion', 'the', 'weakness', 'of', 'her', '\n', 'understandingI', 'do', 'not', 'mean', 'however', 'to', 'defend', 'myself', '\n', 'her', 'affection', 'for', 'I', 'deserve', 'well', 'treatment', 'and', 'I', 'often', '\n', 'with', 'great', 'selfreproach', 'recall', 'the', 'tenderness', 'which', '\n', 'for', 'a', 'very', 'short', 'time', 'have', 'the', 'power', 'of', 'create', 'any', 'return', '\n', 'I', 'wishi', 'heartily', 'wish', 'it', 'have', 'never', 'be', ' ', 'but', 'I', 'have', 'injure', '\n', 'more', 'than', 'herself', 'and', 'I', 'have', 'injure', 'one', 'whose', 'affection', '\n', 'for', 'memay', 'I', 'say', 'it', 'be', 'scarcely', 'less', 'warm', 'than', 'hers', '\n', 'and', 'whose', 'mindOh', 'how', 'infinitely', 'superior', '\n\n', 'your', 'indifference', 'however', 'towards', 'that', 'unfortunate', '\n', 'girli', 'must', 'say', 'it', 'unpleasant', 'to', 'I', 'as', 'the', 'discussion', '\n', 'of', 'such', 'a', 'subject', 'may', 'well', 'beyour', 'indifference', 'be', 'no', '\n', 'apology', 'for', 'your', 'cruel', 'neglect', 'of', 'her', ' ', 'do', 'not', 'think', 'yourself', '\n', 'excuse', 'by', 'any', 'weakness', 'any', 'natural', 'defect', 'of', 'understanding', '\n', 'on', 'her', 'side', 'in', 'the', 'wanton', 'cruelty', 'so', 'evident', 'on', 'your', '\n', 'you', 'must', 'have', 'know', 'that', 'while', 'you', 'be', 'enjoy', 'yourself', '\n', 'in', 'Devonshire', 'pursue', 'fresh', 'scheme', 'always', 'gay', '\n', 'always', 'happy', 'she', 'be', 'reduce', 'to', 'the', 'extreme', 'indigence', '\n\n', 'but', 'upon', 'my', 'soul', 'I', 'do', 'not', 'know', 'it', 'he', 'warmly', '\n', 'reply', 'I', 'do', 'not', 'recollect', 'that', 'I', 'have', 'omit', 'to', 'give', '\n', 'her', 'my', 'direction', 'and', 'common', 'sense', 'might', 'have', 'tell', 'she', '\n', 'how', 'to', 'find', 'it', 'out', '\n\n', 'well', 'sir', 'and', 'what', 'say', 'Mrs', 'Smith', '\n\n', 'she', 'tax', 'I', 'with', 'the', 'offence', 'at', 'once', 'and', 'my', 'confusion', '\n', 'may', 'be', 'guess', ' ', 'the', 'purity', 'of', 'her', 'life', 'the', 'formality', '\n', 'of', 'her', 'notion', 'her', 'ignorance', 'of', 'the', 'worldevery', 'thing', '\n', 'be', 'against', 'I', ' ', 'the', 'matter', 'itself', 'I', 'could', 'not', 'deny', '\n', 'and', 'vain', 'be', 'every', 'endeavour', 'to', 'soften', 'it', ' ', 'she', 'be', '\n', 'previously', 'dispose', 'I', 'believe', 'to', 'doubt', 'the', 'morality', 'of', 'my', '\n', 'conduct', 'in', 'general', 'and', 'be', 'moreover', 'discontent', 'with', '\n', 'the', 'very', 'little', 'attention', 'the', 'very', 'little', 'portion', 'of', 'my', '\n', 'time', 'that', 'I', 'have', 'bestow', 'on', 'she', 'in', 'my', 'present', 'visit', '\n', 'in', 'short', 'it', 'end', 'in', 'a', 'total', 'breach', ' ', 'by', 'one', 'measure', 'I', '\n', 'might', 'have', 'save', 'myself', ' ', 'in', 'the', 'height', 'of', 'her', 'morality', '\n', 'good', 'woman', 'she', 'offer', 'to', 'forgive', 'the', 'past', 'if', 'I', 'would', '\n', 'marry', 'Eliza', ' ', 'that', 'could', 'not', 'beand', 'I', 'be', 'formally', '\n', 'dismiss', 'from', 'her', 'favour', 'and', 'her', 'house', ' ', 'the', 'night', '\n', 'follow', 'this', 'affairI', 'be', 'to', 'go', 'the', 'next', 'morning', '\n', 'be', 'spend', 'by', 'I', 'in', 'deliberate', 'on', 'what', 'my', 'future', 'conduct', '\n', 'should', 'be', ' ', 'the', 'struggle', 'be', 'greatbut', 'it', 'end', 'too', 'soon', '\n', 'my', 'affection', 'for', 'Marianne', 'my', 'thorough', 'conviction', 'of', 'her', '\n', 'attachment', 'to', 'meit', 'be', 'all', 'insufficient', 'to', 'outweigh', '\n', 'that', 'dread', 'of', 'poverty', 'or', 'get', 'the', 'well', 'of', 'those', 'false', '\n', 'idea', 'of', 'the', 'necessity', 'of', 'rich', 'which', 'I', 'be', 'naturally', '\n', 'inclined', 'to', 'feel', 'and', 'expensive', 'society', 'have', 'increase', '\n', 'I', 'have', 'reason', 'to', 'believe', 'myself', 'secure', 'of', 'my', 'present', 'wife', '\n', 'if', 'I', 'choose', 'to', 'address', 'she', 'and', 'I', 'persuade', 'myself', 'to', 'think', '\n', 'that', 'nothing', 'else', 'in', 'common', 'prudence', 'remain', 'for', 'I', 'to', 'do', '\n', 'a', 'heavy', 'scene', 'however', 'await', 'I', 'before', 'I', 'could', 'leave', '\n', 'DevonshireI', 'be', 'engage', 'to', 'dine', 'with', 'you', 'on', 'that', 'very', 'day', '\n', 'some', 'apology', 'be', 'therefore', 'necessary', 'for', 'my', 'breaking', '\n', 'this', 'engagement', ' ', 'but', 'whether', 'I', 'should', 'write', 'this', 'apology', '\n', 'or', 'deliver', 'it', 'in', 'person', 'be', 'a', 'point', 'of', 'long', 'debate', '\n', 'to', 'see', 'Marianne', 'I', 'feel', 'would', 'be', 'dreadful', 'and', 'I', 'even', 'doubt', '\n', 'whether', 'I', 'could', 'see', 'she', 'again', 'and', 'keep', 'to', 'my', 'resolution', '\n', 'in', 'that', 'point', 'however', 'I', 'undervalue', 'my', 'own', 'magnanimity', '\n', 'as', 'the', 'event', 'declare', 'for', 'I', 'go', 'I', 'see', 'she', 'and', 'see', '\n', 'her', 'miserable', 'and', 'leave', 'her', 'miserableand', 'leave', 'she', 'hope', '\n', 'never', 'to', 'see', 'she', 'again', '\n\n', 'why', 'do', 'you', 'call', 'Mr', 'Willoughby', 'say', 'Elinor', '\n', 'reproachfully', 'a', 'note', 'would', 'have', 'answer', 'every', 'purpose', '\n', 'why', 'be', 'it', 'necessary', 'to', 'call', '\n\n', 'it', 'be', 'necessary', 'to', 'my', 'own', 'pride', ' ', 'I', 'could', 'not', 'bear', '\n', 'to', 'leave', 'the', 'country', 'in', 'a', 'manner', 'that', 'might', 'lead', 'you', '\n', 'or', 'the', 'rest', 'of', 'the', 'neighbourhood', 'to', 'suspect', 'any', 'part', '\n', 'of', 'what', 'have', 'really', 'pass', 'between', 'Mrs', 'Smith', 'and', 'myself', '\n', 'and', 'I', 'resolve', 'therefore', 'on', 'call', 'at', 'the', 'cottage', '\n', 'in', 'my', 'way', 'to', 'Honiton', ' ', 'the', 'sight', 'of', 'your', 'dear', 'sister', '\n', 'however', 'be', 'really', 'dreadful', 'and', 'to', 'heighten', 'the', 'matter', '\n', 'I', 'find', 'she', 'alone', ' ', 'you', 'be', 'all', 'go', 'I', 'do', 'not', 'know', 'where', '\n', 'I', 'have', 'leave', 'she', 'only', 'the', 'evening', 'before', 'so', 'fully', '\n', 'so', 'firmly', 'resolve', 'within', 'my', 'self', 'on', 'do', 'right', '\n', 'a', 'few', 'hour', 'be', 'to', 'have', 'engage', 'she', 'to', 'I', 'for', 'ever', '\n', 'and', 'I', 'remember', 'how', 'happy', 'how', 'gay', 'be', 'my', 'spirit', 'as', 'I', '\n', 'walk', 'from', 'the', 'cottage', 'to', 'Allenham', 'satisfied', 'with', 'myself', '\n', 'delight', 'with', 'every', 'body', ' ', 'but', 'in', 'this', 'our', 'last', 'interview', '\n', 'of', 'friendship', 'I', 'approach', 'she', 'with', 'a', 'sense', 'of', 'guilt', '\n', 'that', 'almost', 'take', 'from', 'I', 'the', 'power', 'of', 'dissemble', '\n', 'her', 'sorrow', 'her', 'disappointment', 'her', 'deep', 'regret', 'when', 'I', 'tell', '\n', 'she', 'that', 'I', 'be', 'oblige', 'to', 'leave', 'Devonshire', 'so', 'immediatelyI', '\n', 'never', 'shall', 'forget', 'itunite', 'too', 'with', 'such', 'reliance', '\n', 'such', 'confidence', 'in', 'meOh', 'Godwhat', 'a', 'hardhearte', '\n', 'rascal', 'I', 'be', '\n\n', 'they', 'be', 'both', 'silent', 'for', 'a', 'few', 'moment', '\n', 'Elinor', 'first', 'speak', '\n\n', 'do', 'you', 'tell', 'she', 'that', 'you', 'should', 'soon', 'return', '\n\n', 'I', 'do', 'not', 'know', 'what', 'I', 'tell', 'she', 'he', 'reply', 'impatiently', '\n', 'less', 'than', 'be', 'due', 'to', 'the', 'past', 'beyond', 'a', 'doubt', 'and', 'in', 'all', '\n', 'likelihood', 'much', 'more', 'than', 'be', 'justify', 'by', 'the', 'future', '\n', 'I', 'can', 'not', 'think', 'of', 'itIt', 'will', 'not', 'dothen', 'come', 'your', 'dear', 'mother', '\n', 'to', 'torture', 'I', 'far', 'with', 'all', 'her', 'kindness', 'and', 'confidence', '\n', 'thank', 'Heaven', 'it', 'do', 'torture', 'I', ' ', 'I', 'be', 'miserable', '\n', 'Miss', 'Dashwood', 'you', 'can', 'not', 'have', 'an', 'idea', 'of', 'the', 'comfort', 'it', '\n', 'give', 'I', 'to', 'look', 'back', 'on', 'my', 'own', 'misery', ' ', 'I', 'owe', 'such', 'a', 'grudge', '\n', 'to', 'myself', 'for', 'the', 'stupid', 'rascally', 'folly', 'of', 'my', 'own', 'heart', '\n', 'that', 'all', 'my', 'past', 'suffering', 'under', 'it', 'be', 'only', 'triumph', 'and', '\n', 'exultation', 'to', 'I', 'now', ' ', 'well', 'I', 'go', 'leave', 'all', 'that', 'I', 'love', '\n', 'and', 'go', 'to', 'those', 'to', 'whom', 'at', 'good', 'I', 'be', 'only', 'indifferent', '\n', 'my', 'journey', 'to', 'towntravelling', 'with', 'my', 'own', 'horse', '\n', 'and', 'therefore', 'so', 'tediouslyno', 'creature', 'to', 'speak', 'tomy', '\n', 'own', 'reflection', 'so', 'cheerfulwhen', 'I', 'look', 'forward', '\n', 'every', 'thing', 'so', 'invitingwhen', 'I', 'look', 'back', 'at', 'Barton', '\n', 'the', 'picture', 'so', 'soothingoh', 'it', 'be', 'a', 'blessed', 'journey', '\n\n', 'he', 'stop', '\n\n', 'well', 'sir', 'say', 'Elinor', 'who', 'though', 'pity', 'he', '\n', 'grow', 'impatient', 'for', 'his', 'departure', 'and', 'this', 'be', 'all', '\n\n', 'ahnohave', 'you', 'forgot', 'what', 'pass', 'in', 'town', '\n', 'that', 'infamous', 'letterdid', 'she', 'shew', 'it', 'you', '\n\n', 'yes', 'I', 'see', 'every', 'note', 'that', 'pass', '\n\n', 'when', 'the', 'first', 'of', 'hers', 'reach', 'I', 'as', 'it', 'immediately', 'do', '\n', 'for', 'I', 'be', 'in', 'town', 'the', 'whole', 'time', 'what', 'I', 'feel', 'be', '\n', 'in', 'the', 'common', 'phrase', 'not', 'to', 'be', 'express', 'in', 'a', 'more', '\n', 'simple', 'oneperhap', 'too', 'simple', 'to', 'raise', 'any', 'emotion', '\n', 'my', 'feeling', 'be', 'very', 'very', 'painfulevery', 'line', 'every', 'word', '\n', 'wasin', 'the', 'hackneyed', 'metaphor', 'which', 'their', 'dear', 'writer', '\n', 'be', 'she', 'here', 'would', 'forbida', 'dagger', 'to', 'my', 'heart', '\n', 'to', 'know', 'that', 'Marianne', 'be', 'in', 'town', 'wasin', 'the', 'same', 'language', '\n', 'a', 'thunderboltthunderbolt', 'and', 'daggerswhat', 'a', 'reproof', '\n', 'would', 'she', 'have', 'give', 'meher', 'taste', 'her', 'opinionsi', 'believe', '\n', 'they', 'be', 'well', 'know', 'to', 'I', 'than', 'my', 'ownand', 'I', 'be', 'sure', '\n', 'they', 'be', 'dearer', '\n\n', 'Elinors', 'heart', 'which', 'have', 'undergo', 'many', 'change', '\n', 'in', 'the', 'course', 'of', 'this', 'extraordinary', 'conversation', '\n', 'be', 'now', 'soften', 'againyet', 'she', 'feel', 'it', 'her', 'duty', 'to', 'check', '\n', 'such', 'idea', 'in', 'her', 'companion', 'as', 'the', 'last', '\n\n', 'this', 'be', 'not', 'right', 'Mr', 'WilloughbyRemember', 'that', '\n', 'you', 'be', 'marry', ' ', 'Relate', 'only', 'what', 'in', 'your', 'conscience', '\n', 'you', 'think', 'necessary', 'for', 'I', 'to', 'hear', '\n\n', 'Mariannes', 'note', 'by', 'assure', 'I', 'that', 'I', 'be', 'still', '\n', 'as', 'dear', 'to', 'she', 'as', 'in', 'former', 'day', 'that', 'in', 'spite', 'of', 'the', 'many', '\n', 'many', 'week', 'we', 'have', 'be', 'separate', 'she', 'be', 'as', 'constant', '\n', 'in', 'her', 'own', 'feeling', 'and', 'as', 'full', 'of', 'faith', 'in', 'the', 'constancy', '\n', 'of', 'mine', 'as', 'ever', 'awaken', 'all', 'my', 'remorse', ' ', 'I', 'say', 'awaken', '\n', 'because', 'time', 'and', 'London', 'business', 'and', 'dissipation', '\n', 'have', 'in', 'some', 'measure', 'quiet', 'it', 'and', 'I', 'have', 'be', 'grow', '\n', 'a', 'fine', 'harden', 'villain', 'fancy', 'myself', 'indifferent', 'to', 'she', '\n', 'and', 'chuse', 'to', 'fancy', 'that', 'she', 'too', 'must', 'have', 'become', '\n', 'indifferent', 'to', 'I', 'talk', 'to', 'myself', 'of', 'our', 'past', 'attachment', '\n', 'as', 'a', 'mere', 'idle', 'trifling', 'business', 'shrug', 'up', 'my', 'shoulder', '\n', 'in', 'proof', 'of', 'its', 'be', 'so', 'and', 'silence', 'every', 'reproach', '\n', 'overcome', 'every', 'scruple', 'by', 'secretly', 'say', 'now', 'and', 'then', '\n', 'I', 'shall', 'be', 'heartily', 'glad', 'to', 'hear', 'she', 'be', 'well', 'married', '\n', 'but', 'this', 'note', 'make', 'I', 'know', 'myself', 'well', ' ', 'I', 'feel', 'that', '\n', 'she', 'be', 'infinitely', 'dear', 'to', 'I', 'than', 'any', 'other', 'woman', '\n', 'in', 'the', 'world', 'and', 'that', 'I', 'be', 'use', 'she', 'infamously', '\n', 'but', 'every', 'thing', 'be', 'then', 'just', 'settle', 'between', 'Miss', 'Grey', '\n', 'and', 'I', ' ', 'to', 'retreat', 'be', 'impossible', ' ', 'all', 'that', 'I', 'have', 'to', 'do', '\n', 'be', 'to', 'avoid', 'you', 'both', ' ', 'I', 'send', 'no', 'answer', 'to', 'Marianne', '\n', 'intend', 'by', 'that', 'to', 'preserve', 'myself', 'from', 'her', 'farther', 'notice', '\n', 'and', 'for', 'some', 'time', 'I', 'be', 'even', 'determined', 'not', 'to', 'call', 'in', '\n', 'Berkeley', 'Streetbut', 'at', 'last', 'judge', 'it', 'wise', 'to', 'affect', '\n', 'the', 'air', 'of', 'a', 'cool', 'common', 'acquaintance', 'than', 'anything', 'else', '\n', 'I', 'watch', 'you', 'all', 'safely', 'out', 'of', 'the', 'house', 'one', 'morning', '\n', 'and', 'leave', 'my', 'name', '\n\n', 'watch', 'we', 'out', 'of', 'the', 'house', '\n\n', 'even', 'so', ' ', 'you', 'would', 'be', 'surprised', 'to', 'hear', 'how', 'often', '\n', 'I', 'watch', 'you', 'how', 'often', 'I', 'be', 'on', 'the', 'point', 'of', 'fall', '\n', 'in', 'with', 'you', ' ', 'I', 'have', 'enter', 'many', 'a', 'shop', 'to', 'avoid', 'your', 'sight', '\n', 'as', 'the', 'carriage', 'drive', 'by', ' ', 'Lodging', 'as', 'I', 'do', 'in', 'Bond', 'Street', '\n', 'there', 'be', 'hardly', 'a', 'day', 'in', 'which', 'I', 'do', 'not', 'catch', 'a', 'glimpse', '\n', 'of', 'one', 'or', 'other', 'of', 'you', 'and', 'nothing', 'but', 'the', 'most', 'constant', '\n', 'watchfulness', 'on', 'my', 'side', 'a', 'most', 'invariably', 'prevail', '\n', 'desire', 'to', 'keep', 'out', 'of', 'your', 'sight', 'could', 'have', 'separate', 'we', '\n', 'so', 'long', ' ', 'I', 'avoid', 'the', 'Middletons', 'as', 'much', 'as', 'possible', '\n', 'as', 'well', 'as', 'everybody', 'else', 'who', 'be', 'likely', 'to', 'prove', '\n', 'an', 'acquaintance', 'in', 'common', ' ', 'not', 'aware', 'of', 'their', 'be', '\n', 'in', 'town', 'however', 'I', 'blunder', 'on', 'Sir', 'John', 'I', 'believe', '\n', 'the', 'first', 'day', 'of', 'his', 'come', 'and', 'the', 'day', 'after', 'I', 'have', 'call', '\n', 'at', 'Mrs', 'Jenningss', ' ', 'he', 'ask', 'I', 'to', 'a', 'party', 'a', 'dance', 'at', 'his', '\n', 'house', 'in', 'the', 'eveningHad', 'he', 'not', 'tell', 'I', 'as', 'an', 'inducement', '\n', 'that', 'you', 'and', 'your', 'sister', 'be', 'to', 'be', 'there', 'I', 'should', 'have', '\n', 'feel', 'it', 'too', 'certain', 'a', 'thing', 'to', 'trust', 'myself', 'near', 'he', '\n', 'the', 'next', 'morning', 'bring', 'another', 'short', 'note', 'from', 'Marianne', '\n', 'still', 'affectionate', 'open', 'artless', 'confidingeverything', '\n', 'that', 'could', 'make', 'my', 'conduct', 'most', 'hateful', ' ', 'I', 'could', 'not', '\n', 'answer', 'it', ' ', 'I', 'triedbut', 'could', 'not', 'frame', 'a', 'sentence', '\n', 'but', 'I', 'think', 'of', 'she', 'I', 'believe', 'every', 'moment', 'of', 'the', 'day', '\n', 'if', 'you', 'can', 'pity', 'I', 'Miss', 'Dashwood', 'pity', 'my', 'situation', 'as', 'it', '\n', 'be', 'then', ' ', 'with', 'my', 'head', 'and', 'heart', 'full', 'of', 'your', 'sister', '\n', 'I', 'be', 'force', 'to', 'play', 'the', 'happy', 'lover', 'to', 'another', 'womanThose', '\n', 'three', 'or', 'four', 'week', 'be', 'bad', 'than', 'all', ' ', 'well', 'at', 'last', '\n', 'as', 'I', 'need', 'not', 'tell', 'you', 'you', 'be', 'force', 'on', 'I', 'and', 'what', 'a', '\n', 'sweet', 'figure', 'I', 'cutwhat', 'an', 'evening', 'of', 'agony', 'it', 'be', '\n', 'Marianne', 'beautiful', 'as', 'an', 'angel', 'on', 'one', 'side', 'call', 'I', '\n', 'Willoughby', 'in', 'such', 'a', 'toneOh', 'Godholding', 'out', 'her', 'hand', '\n', 'to', 'I', 'ask', 'I', 'for', 'an', 'explanation', 'with', 'those', 'bewitch', '\n', 'eye', 'fix', 'in', 'such', 'speak', 'solicitude', 'on', 'my', 'faceand', '\n', 'Sophia', 'jealous', 'as', 'the', 'devil', 'on', 'the', 'other', 'hand', 'look', '\n', 'all', 'that', 'waswell', 'it', 'do', 'not', 'signify', 'it', 'be', 'over', 'now', '\n', 'such', 'an', 'eveningI', 'run', 'away', 'from', 'you', 'all', 'as', 'soon', 'as', 'I', 'could', '\n', 'but', 'not', 'before', 'I', 'have', 'see', 'Mariannes', 'sweet', 'face', 'as', 'white', '\n', 'as', 'deathTHAT', 'be', 'the', 'last', 'last', 'look', 'I', 'ever', 'have', 'of', 'her', '\n', 'the', 'last', 'manner', 'in', 'which', 'she', 'appear', 'to', 'I', ' ', 'it', 'be', 'a', 'horrid', '\n', 'sightyet', 'when', 'I', 'think', 'of', 'she', 'today', 'as', 'really', 'die', '\n', 'it', 'be', 'a', 'kind', 'of', 'comfort', 'to', 'I', 'to', 'imagine', 'that', 'I', 'know', '\n', 'exactly', 'how', 'she', 'would', 'appear', 'to', 'those', 'who', 'see', 'she', 'last', '\n', 'in', 'this', 'world', ' ', 'she', 'be', 'before', 'I', 'constantly', 'before', 'I', '\n', 'as', 'I', 'travel', 'in', 'the', 'same', 'look', 'and', 'hue', '\n\n', 'a', 'short', 'pause', 'of', 'mutual', 'thoughtfulness', 'succeed', '\n', 'Willoughby', 'first', 'rouse', 'himself', 'break', 'it', 'thus', '\n\n', 'well', 'let', 'I', 'make', 'haste', 'and', 'be', 'go', ' ', 'your', 'sister', '\n', 'be', 'certainly', 'well', 'certainly', 'out', 'of', 'danger', '\n\n', 'we', 'be', 'assure', 'of', 'it', '\n\n', 'your', 'poor', 'mother', 'toodote', 'on', 'Marianne', '\n\n', 'but', 'the', 'letter', 'Mr', 'Willoughby', 'your', 'own', 'letter', '\n', 'have', 'you', 'any', 'thing', 'to', 'say', 'about', 'that', '\n\n', 'yes', 'yes', 'that', 'in', 'particular', ' ', 'your', 'sister', '\n', 'write', 'to', 'I', 'again', 'you', 'know', 'the', 'very', 'next', 'morning', '\n', 'you', 'see', 'what', 'she', 'say', ' ', 'I', 'be', 'breakfast', 'at', 'the', '\n', 'Ellisonsand', 'her', 'letter', 'with', 'some', 'other', 'be', 'bring', '\n', 'to', 'I', 'there', 'from', 'my', 'lodging', ' ', 'it', 'happen', 'to', 'catch', '\n', 'Sophias', 'eye', 'before', 'it', 'catch', 'mineand', 'its', 'size', '\n', 'the', 'elegance', 'of', 'the', 'paper', 'the', 'handwriting', 'altogether', '\n', 'immediately', 'give', 'she', 'a', 'suspicion', ' ', 'some', 'vague', 'report', 'have', '\n', 'reach', 'she', 'before', 'of', 'my', 'attachment', 'to', 'some', 'young', 'lady', '\n', 'in', 'Devonshire', 'and', 'what', 'have', 'pass', 'within', 'her', 'observation', '\n', 'the', 'precede', 'evening', 'have', 'mark', 'who', 'the', 'young', 'lady', 'be', '\n', 'and', 'make', 'she', 'more', 'jealous', 'than', 'ever', ' ', 'affect', 'that', 'air', '\n', 'of', 'playfulness', 'therefore', 'which', 'be', 'delightful', 'in', 'a', 'woman', '\n', 'one', 'love', 'she', 'open', 'the', 'letter', 'directly', 'and', 'read', '\n', 'its', 'content', ' ', 'she', 'be', 'well', 'pay', 'for', 'her', 'impudence', '\n', 'she', 'read', 'what', 'make', 'she', 'wretched', ' ', 'her', 'wretchedness', 'I', 'could', '\n', 'have', 'bear', 'but', 'her', 'passionher', 'maliceAt', 'all', 'event', 'it', '\n', 'must', 'be', 'appease', ' ', 'and', 'in', 'shortwhat', 'do', 'you', 'think', 'of', 'my', '\n', 'wife', 'style', 'of', 'letterwritingdelicatetender', '\n', 'truly', 'femininewa', 'it', 'not', '\n\n', 'your', 'wifeThe', 'letter', 'be', 'in', 'your', 'own', 'handwriting', '\n\n', 'yes', 'but', 'I', 'have', 'only', 'the', 'credit', 'of', 'servilely', 'copy', '\n', 'such', 'sentence', 'as', 'I', 'be', 'ashamed', 'to', 'put', 'my', 'name', 'to', '\n', 'the', 'original', 'be', 'all', 'her', 'ownher', 'own', 'happy', 'thought', '\n', 'and', 'gentle', 'diction', ' ', 'but', 'what', 'could', 'I', 'dowe', 'be', 'engage', '\n', 'every', 'thing', 'in', 'preparation', 'the', 'day', 'almost', 'fixedbut', 'I', 'be', '\n', 'talk', 'like', 'a', 'fool', ' ', 'PreparationdayIn', 'honest', 'word', '\n', 'her', 'money', 'be', 'necessary', 'to', 'I', 'and', 'in', 'a', 'situation', 'like', '\n', 'mine', 'any', 'thing', 'be', 'to', 'be', 'do', 'to', 'prevent', 'a', 'rupture', '\n', 'and', 'after', 'all', 'what', 'do', 'it', 'signify', 'to', 'my', 'character', '\n', 'in', 'the', 'opinion', 'of', 'Marianne', 'and', 'her', 'friend', 'in', 'what', 'language', '\n', 'my', 'answer', 'be', 'couchedIt', 'must', 'have', 'be', 'only', 'to', 'one', 'end', '\n', 'my', 'business', 'be', 'to', 'declare', 'myself', 'a', 'scoundrel', 'and', 'whether', '\n', 'I', 'do', 'it', 'with', 'a', 'bow', 'or', 'a', 'bluster', 'be', 'of', 'little', 'importance', '\n', 'I', 'be', 'ruin', 'for', 'ever', 'in', 'their', 'opinion', 'say', 'I', 'to', '\n', 'myselfI', 'be', 'shut', 'out', 'for', 'ever', 'from', 'their', 'society', '\n', 'they', 'already', 'think', 'I', 'an', 'unprincipled', 'fellow', 'this', 'letter', '\n', 'will', 'only', 'make', 'they', 'think', 'I', 'a', 'blackguard', 'one', 'such', 'be', '\n', 'my', 'reasoning', 'as', 'in', 'a', 'sort', 'of', 'desperate', 'carelessness', '\n', 'I', 'copy', 'my', 'wife', 'word', 'and', 'part', 'with', 'the', 'last', 'relic', '\n', 'of', 'Marianne', ' ', 'her', 'three', 'notesunluckily', 'they', 'be', 'all', '\n', 'in', 'my', 'pocketbook', 'or', 'I', 'should', 'have', 'deny', 'their', 'existence', '\n', 'and', 'hoard', 'they', 'for', 'everI', 'be', 'force', 'to', 'put', 'they', 'up', '\n', 'and', 'could', 'not', 'even', 'kiss', 'they', ' ', 'and', 'the', 'lock', 'of', 'hairthat', 'too', '\n', 'I', 'have', 'always', 'carry', 'about', 'I', 'in', 'the', 'same', 'pocketbook', '\n', 'which', 'be', 'now', 'search', 'by', 'Madam', 'with', 'the', 'most', 'ingratiating', '\n', 'virulencethe', 'dear', 'lockall', 'every', 'memento', 'be', 'tear', 'from', 'I', '\n\n', 'you', 'be', 'very', 'wrong', 'Mr', 'Willoughby', 'very', 'blamable', '\n', 'say', 'Elinor', 'while', 'her', 'voice', 'in', 'spite', 'of', 'herself', '\n', 'betray', 'her', 'compassionate', 'emotion', 'you', 'ought', 'not', 'to', 'speak', '\n', 'in', 'this', 'way', 'either', 'of', 'Mrs', 'Willoughby', 'or', 'my', 'sister', '\n', 'you', 'have', 'make', 'your', 'own', 'choice', ' ', 'it', 'be', 'not', 'force', 'on', 'you', '\n', 'your', 'wife', 'have', 'a', 'claim', 'to', 'your', 'politeness', 'to', 'your', 'respect', '\n', 'at', 'least', ' ', 'she', 'must', 'be', 'attach', 'to', 'you', 'or', 'she', 'would', 'not', '\n', 'have', 'marry', 'you', ' ', 'to', 'treat', 'she', 'with', 'unkindness', 'to', 'speak', '\n', 'of', 'her', 'slightingly', 'be', 'no', 'atonement', 'to', 'Mariannenor', 'can', 'I', '\n', 'suppose', 'it', 'a', 'relief', 'to', 'your', 'own', 'conscience', '\n\n', 'do', 'not', 'talk', 'to', 'I', 'of', 'my', 'wife', 'say', 'he', 'with', 'a', 'heavy', 'sigh', '\n', 'she', 'do', 'not', 'deserve', 'your', 'compassionshe', 'know', 'I', 'have', 'no', '\n', 'regard', 'for', 'she', 'when', 'we', 'marriedwell', 'marry', 'we', 'be', '\n', 'and', 'come', 'down', 'to', 'Combe', 'Magna', 'to', 'be', 'happy', 'and', 'afterwards', '\n', 'return', 'to', 'town', 'to', 'be', 'gayand', 'now', 'do', 'you', 'pity', 'I', '\n', 'Miss', 'Dashwoodor', 'have', 'I', 'say', 'all', 'this', 'to', 'no', 'purpose', '\n', 'be', 'Ibe', 'it', 'only', 'one', 'degreeam', 'I', 'less', 'guilty', 'in', 'your', 'opinion', '\n', 'than', 'I', 'be', 'beforemy', 'intention', 'be', 'not', 'always', 'wrong', '\n', 'have', 'I', 'explain', 'away', 'any', 'part', 'of', 'my', 'guilt', '\n\n', 'yes', 'you', 'have', 'certainly', 'remove', 'somethinga', 'little', '\n', 'you', 'have', 'prove', 'yourself', 'on', 'the', 'whole', 'less', 'faulty', 'than', '\n', 'I', 'have', 'believe', 'you', ' ', 'you', 'have', 'prove', 'your', 'heart', 'less', 'wicked', '\n', 'much', 'less', 'wicked', ' ', 'but', 'I', 'hardly', 'knowthe', 'misery', 'that', '\n', 'you', 'have', 'inflictedI', 'hardly', 'know', 'what', 'could', 'have', 'make', '\n', 'it', 'bad', '\n\n', 'will', 'you', 'repeat', 'to', 'your', 'sister', 'when', 'she', 'be', 'recover', '\n', 'what', 'I', 'have', 'be', 'tell', 'youLet', 'I', 'be', 'a', 'little', 'lightened', '\n', 'too', 'in', 'her', 'opinion', 'as', 'well', 'as', 'in', 'yours', ' ', 'you', 'tell', 'I', 'that', '\n', 'she', 'have', 'forgive', 'I', 'already', ' ', 'let', 'I', 'be', 'able', 'to', 'fancy', 'that', '\n', 'a', 'well', 'knowledge', 'of', 'my', 'heart', 'and', 'of', 'my', 'present', 'feeling', '\n', 'will', 'draw', 'from', 'she', 'a', 'more', 'spontaneous', 'more', 'natural', 'more', '\n', 'gentle', 'less', 'dignified', 'forgiveness', ' ', 'tell', 'she', 'of', 'my', 'misery', '\n', 'and', 'my', 'penitencetell', 'she', 'that', 'my', 'heart', 'be', 'never', 'inconstant', '\n', 'to', 'she', 'and', 'if', 'you', 'will', 'that', 'at', 'this', 'moment', 'she', 'be', 'dearer', '\n', 'to', 'I', 'than', 'ever', '\n\n', 'I', 'will', 'tell', 'she', 'all', 'that', 'be', 'necessary', 'to', 'what', 'may', '\n', 'comparatively', 'be', 'call', 'your', 'justification', ' ', 'but', 'you', 'have', '\n', 'not', 'explain', 'to', 'I', 'the', 'particular', 'reason', 'of', 'your', 'come', 'now', '\n', 'nor', 'how', 'you', 'hear', 'of', 'her', 'illness', '\n\n', 'last', 'night', 'in', 'Drury', 'Lane', 'lobby', 'I', 'run', 'against', 'Sir', '\n', 'John', 'Middleton', 'and', 'when', 'he', 'see', 'who', 'I', 'wasfor', 'the', 'first', '\n', 'time', 'these', 'two', 'monthshe', 'speak', 'to', 'methat', 'he', 'have', 'cut', '\n', 'I', 'ever', 'since', 'my', 'marriage', 'I', 'have', 'see', 'without', 'surprise', '\n', 'or', 'resentment', ' ', 'now', 'however', 'his', 'goodnatured', 'honest', '\n', 'stupid', 'soul', 'full', 'of', 'indignation', 'against', 'I', 'and', 'concern', '\n', 'for', 'your', 'sister', 'could', 'not', 'resist', 'the', 'temptation', 'of', 'tell', '\n', 'I', 'what', 'he', 'know', 'ought', 'tothough', 'probably', 'he', 'do', 'not', '\n', 'think', 'it', 'WOULDvex', 'I', 'horridly', ' ', 'as', 'bluntly', 'as', 'he', 'could', '\n', 'speak', 'it', 'therefore', 'he', 'tell', 'I', 'that', 'Marianne', 'Dashwood', '\n', 'be', 'die', 'of', 'a', 'putrid', 'fever', 'at', 'Clevelanda', 'letter', 'that', '\n', 'morning', 'receive', 'from', 'Mrs', 'Jennings', 'declare', 'her', 'danger', '\n', 'most', 'imminentthe', 'Palmers', 'be', 'all', 'go', 'off', 'in', 'a', 'fright', '\n', 'cI', 'be', 'too', 'much', 'shocked', 'to', 'be', 'able', 'to', 'pass', 'myself', '\n', 'off', 'as', 'insensible', 'even', 'to', 'the', 'undiscerne', 'Sir', 'John', '\n', 'his', 'heart', 'be', 'soften', 'in', 'see', 'mine', 'suffer', 'and', 'so', 'much', '\n', 'of', 'his', 'illwill', 'be', 'do', 'away', 'that', 'when', 'we', 'part', '\n', 'he', 'almost', 'shake', 'I', 'by', 'the', 'hand', 'while', 'he', 'remind', 'I', 'of', 'an', '\n', 'old', 'promise', 'about', 'a', 'pointer', 'puppy', ' ', 'what', 'I', 'feel', 'on', 'hear', '\n', 'that', 'your', 'sister', 'be', 'dyingand', 'die', 'too', 'believe', 'I', '\n', 'the', 'great', 'villain', 'upon', 'earth', 'scorn', 'hate', 'I', '\n', 'in', 'her', 'late', 'momentsfor', 'how', 'could', 'I', 'tell', 'what', 'horrid', '\n', 'project', 'might', 'not', 'have', 'be', 'impute', ' ', 'one', 'person', 'I', '\n', 'be', 'sure', 'would', 'represent', 'I', 'as', 'capable', 'of', 'any', 'thing', '\n', 'what', 'I', 'feel', 'be', 'dreadfulMy', 'resolution', 'be', 'soon', 'make', '\n', 'and', 'at', 'eight', 'oclock', 'this', 'morning', 'I', 'be', 'in', 'my', 'carriage', '\n', 'now', 'you', 'know', 'all', '\n\n', 'Elinor', 'make', 'no', 'answer', ' ', 'her', 'thought', 'be', 'silently', 'fix', '\n', 'on', 'the', 'irreparable', 'injury', 'which', 'too', 'early', 'an', 'independence', '\n', 'and', 'its', 'consequent', 'habit', 'of', 'idleness', 'dissipation', 'and', 'luxury', '\n', 'have', 'make', 'in', 'the', 'mind', 'the', 'character', 'the', 'happiness', '\n', 'of', 'a', 'man', 'who', 'to', 'every', 'advantage', 'of', 'person', 'and', 'talent', '\n', 'unite', 'a', 'disposition', 'naturally', 'open', 'and', 'honest', 'and', 'a', '\n', 'feeling', 'affectionate', 'temper', ' ', 'the', 'world', 'have', 'make', 'he', '\n', 'extravagant', 'and', 'vainextravagance', 'and', 'vanity', 'have', 'make', 'he', '\n', 'coldhearte', 'and', 'selfish', ' ', 'Vanity', 'while', 'seek', 'its', 'own', '\n', 'guilty', 'triumph', 'at', 'the', 'expense', 'of', 'another', 'have', 'involve', '\n', 'he', 'in', 'a', 'real', 'attachment', 'which', 'extravagance', 'or', 'at', 'least', '\n', 'its', 'offspring', 'necessity', 'have', 'require', 'to', 'be', 'sacrifice', '\n', 'each', 'faulty', 'propensity', 'in', 'lead', 'he', 'to', 'evil', 'have', 'lead', '\n', 'he', 'likewise', 'to', 'punishment', ' ', 'the', 'attachment', 'from', 'which', '\n', 'against', 'honour', 'against', 'feel', 'against', 'every', 'well', 'interest', '\n', 'he', 'have', 'outwardly', 'tear', 'himself', 'now', 'when', 'no', 'long', 'allowable', '\n', 'govern', 'every', 'thought', 'and', 'the', 'connection', 'for', 'the', 'sake', '\n', 'of', 'which', 'he', 'have', 'with', 'little', 'scruple', 'leave', 'her', 'sister', '\n', 'to', 'misery', 'be', 'likely', 'to', 'prove', 'a', 'source', 'of', 'unhappiness', '\n', 'to', 'himself', 'of', 'a', 'far', 'more', 'incurable', 'nature', ' ', 'from', 'a', 'reverie', '\n', 'of', 'this', 'kind', 'she', 'be', 'recall', 'at', 'the', 'end', 'of', 'some', 'minute', '\n', 'by', 'Willoughby', 'who', 'rouse', 'himself', 'from', 'a', 'reverie', 'at', 'least', '\n', 'equally', 'painful', 'start', 'up', 'in', 'preparation', 'for', 'go', 'and', 'say', '\n\n', 'there', 'be', 'no', 'use', 'in', 'stay', 'here', 'I', 'must', 'be', 'off', '\n\n', 'be', 'you', 'go', 'back', 'to', 'town', '\n\n', 'Noto', 'Combe', 'Magna', ' ', 'I', 'have', 'business', 'there', '\n', 'from', 'thence', 'to', 'town', 'in', 'a', 'day', 'or', 'two', ' ', 'good', 'bye', '\n\n', 'he', 'hold', 'out', 'his', 'hand', ' ', 'she', 'could', 'not', 'refuse', 'to', 'give', '\n', 'he', 'hersshe', 'press', 'it', 'with', 'affection', '\n\n', 'and', 'you', 'do', 'think', 'something', 'well', 'of', 'I', 'than', '\n', 'you', 'didsaid', 'he', 'let', 'it', 'fall', 'and', 'lean', 'against', '\n', 'the', 'mantelpiece', 'as', 'if', 'forget', 'he', 'be', 'to', 'go', '\n\n', 'Elinor', 'assure', 'he', 'that', 'she', 'didthat', 'she', 'forgave', '\n', 'pity', 'wish', 'he', 'wellwa', 'even', 'interested', 'in', 'his', '\n', 'happinessand', 'add', 'some', 'gentle', 'counsel', 'as', 'to', 'the', 'behaviour', '\n', 'most', 'likely', 'to', 'promote', 'it', ' ', 'his', 'answer', 'be', 'not', 'very', 'encouraging', '\n\n', 'as', 'to', 'that', 'say', 'he', 'I', 'must', 'rub', 'through', 'the', 'world', '\n', 'as', 'well', 'as', 'I', 'can', ' ', 'domestic', 'happiness', 'be', 'out', 'of', 'the', 'question', '\n', 'if', 'however', 'I', 'be', 'allow', 'to', 'think', 'that', 'you', 'and', 'yours', 'feel', '\n', 'an', 'interest', 'in', 'my', 'fate', 'and', 'action', 'it', 'may', 'be', 'the', 'meansit', '\n', 'may', 'put', 'I', 'on', 'my', 'guardat', 'least', 'it', 'may', 'be', 'something', 'to', '\n', 'live', 'for', ' ', 'Marianne', 'to', 'be', 'sure', 'be', 'lose', 'to', 'I', 'for', 'ever', '\n', 'be', 'I', 'even', 'by', 'any', 'bless', 'chance', 'at', 'liberty', 'again', '\n\n', 'Elinor', 'stop', 'he', 'with', 'a', 'reproof', '\n\n', 'wellhe', 'repliedonce', 'more', 'good', 'bye', 'I', 'shall', '\n', 'now', 'go', 'away', 'and', 'live', 'in', 'dread', 'of', 'one', 'event', '\n\n', 'what', 'do', 'you', 'mean', '\n\n', 'your', 'sister', 'marriage', '\n\n', 'you', 'be', 'very', 'wrong', ' ', 'she', 'can', 'never', 'be', 'more', 'lost', '\n', 'to', 'you', 'than', 'she', 'be', 'now', '\n\n', 'but', 'she', 'will', 'be', 'gain', 'by', 'some', 'one', 'else', ' ', 'and', 'if', '\n', 'that', 'some', 'one', 'should', 'be', 'the', 'very', 'he', 'whom', 'of', 'all', 'other', '\n', 'I', 'could', 'least', 'bearbut', 'I', 'will', 'not', 'stay', 'to', 'rob', 'myself', '\n', 'of', 'all', 'your', 'compassionate', 'goodwill', 'by', 'shew', '\n', 'that', 'where', 'I', 'have', 'most', 'injure', 'I', 'can', 'least', 'forgive', '\n', 'good', 'byeGod', 'bless', 'you', '\n\n', 'and', 'with', 'these', 'word', 'he', 'almost', 'run', 'out', 'of', 'the', 'room', '\n\n\n\n', 'chapter', '45', '\n\n\n', 'Elinor', 'for', 'some', 'time', 'after', 'he', 'leave', 'she', 'for', 'some', 'time', '\n', 'even', 'after', 'the', 'sound', 'of', 'his', 'carriage', 'have', 'die', 'away', 'remain', '\n', 'too', 'much', 'oppress', 'by', 'a', 'crowd', 'of', 'idea', 'widely', 'differ', 'in', '\n', 'themselves', 'but', 'of', 'which', 'sadness', 'be', 'the', 'general', 'result', '\n', 'to', 'think', 'even', 'of', 'her', 'sister', '\n\n', 'Willoughby', 'he', 'whom', 'only', 'half', 'an', 'hour', 'ago', 'she', 'have', '\n', 'abhor', 'as', 'the', 'most', 'worthless', 'of', 'man', 'Willoughby', 'in', 'spite', '\n', 'of', 'all', 'his', 'fault', 'excite', 'a', 'degree', 'of', 'commiseration', '\n', 'for', 'the', 'suffering', 'produce', 'by', 'they', 'which', 'make', 'she', '\n', 'think', 'of', 'he', 'as', 'now', 'separate', 'for', 'ever', 'from', 'her', 'family', '\n', 'with', 'a', 'tenderness', 'a', 'regret', 'rather', 'in', 'proportion', 'as', 'she', '\n', 'soon', 'acknowledge', 'within', 'herselfto', 'his', 'wish', 'than', 'to', '\n', 'his', 'merit', ' ', 'she', 'feel', 'that', 'his', 'influence', 'over', 'her', 'mind', '\n', 'be', 'heighten', 'by', 'circumstance', 'which', 'ought', 'not', 'in', 'reason', '\n', 'to', 'have', 'weight', 'by', 'that', 'person', 'of', 'uncommon', 'attraction', '\n', 'that', 'open', 'affectionate', 'and', 'lively', 'manner', 'which', 'it', '\n', 'be', 'no', 'merit', 'to', 'possess', 'and', 'by', 'that', 'still', 'ardent', 'love', '\n', 'for', 'Marianne', 'which', 'it', 'be', 'not', 'even', 'innocent', 'to', 'indulge', '\n', 'but', 'she', 'feel', 'that', 'it', 'be', 'so', 'long', 'long', 'before', 'she', 'could', '\n', 'feel', 'his', 'influence', 'less', '\n\n', 'when', 'at', 'last', 'she', 'return', 'to', 'the', 'unconscious', 'Marianne', '\n', 'she', 'find', 'she', 'just', 'awake', 'refresh', 'by', 'so', 'long', 'and', 'sweet', '\n', 'a', 'sleep', 'to', 'the', 'extent', 'of', 'her', 'hope', ' ', 'Elinors', 'heart', 'be', 'full', '\n', 'the', 'past', 'the', 'present', 'the', 'future', 'Willoughbys', 'visit', '\n', 'Mariannes', 'safety', 'and', 'her', 'mother', 'expect', 'arrival', '\n', 'throw', 'she', 'altogether', 'into', 'an', 'agitation', 'of', 'spirit', '\n', 'which', 'keep', 'off', 'every', 'indication', 'of', 'fatigue', 'and', 'make', '\n', 'her', 'only', 'fearful', 'of', 'betray', 'herself', 'to', 'her', 'sister', '\n', 'Short', 'be', 'the', 'time', 'however', 'in', 'which', 'that', 'fear', 'could', '\n', 'affect', 'she', 'for', 'within', 'half', 'an', 'hour', 'after', 'Willoughbys', '\n', 'leave', 'the', 'house', 'she', 'be', 'again', 'call', 'down', 'stair', '\n', 'by', 'the', 'sound', 'of', 'another', 'carriageeager', 'to', 'save', 'her', '\n', 'mother', 'from', 'every', 'unnecessary', 'moment', 'horrible', 'suspense', '\n', 'she', 'run', 'immediately', 'into', 'the', 'hall', 'and', 'reach', 'the', 'outward', '\n', 'door', 'just', 'in', 'time', 'to', 'receive', 'and', 'support', 'she', 'as', 'she', 'enter', 'it', '\n\n', 'Mrs', 'Dashwood', 'whose', 'terror', 'as', 'they', 'draw', 'near', 'the', '\n', 'house', 'have', 'produce', 'almost', 'the', 'conviction', 'of', 'Mariannes', '\n', 'be', 'no', 'more', 'have', 'no', 'voice', 'to', 'inquire', 'after', 'her', '\n', 'no', 'voice', 'even', 'for', 'Elinor', 'but', 'she', 'wait', 'neither', 'for', '\n', 'salutation', 'nor', 'inquiry', 'instantly', 'give', 'the', 'joyful', 'relief', '\n', 'and', 'her', 'mother', 'catch', 'it', 'with', 'all', 'her', 'usual', 'warmth', '\n', 'be', 'in', 'a', 'moment', 'as', 'much', 'overcome', 'by', 'her', 'happiness', 'as', 'she', '\n', 'have', 'be', 'before', 'by', 'her', 'fear', ' ', 'she', 'be', 'support', 'into', '\n', 'the', 'drawingroom', 'between', 'her', 'daughter', 'and', 'her', 'friend', '\n', 'and', 'there', 'shed', 'tear', 'of', 'joy', 'though', 'still', 'unable', '\n', 'to', 'speak', 'embrace', 'Elinor', 'again', 'and', 'again', 'turn', 'from', 'she', '\n', 'at', 'interval', 'to', 'press', 'Colonel', 'Brandons', 'hand', 'with', 'a', 'look', '\n', 'which', 'speak', 'at', 'once', 'her', 'gratitude', 'and', 'her', 'conviction', '\n', 'of', 'his', 'sharing', 'with', 'herself', 'in', 'the', 'bliss', 'of', 'the', 'moment', '\n', 'he', 'share', 'it', 'however', 'in', 'a', 'silence', 'even', 'great', 'than', 'her', 'own', '\n\n', 'as', 'soon', 'as', 'Mrs', 'Dashwood', 'have', 'recover', 'herself', '\n', 'to', 'see', 'Marianne', 'be', 'her', 'first', 'desire', 'and', 'in', 'two', 'minute', 'she', '\n', 'be', 'with', 'her', 'beloved', 'child', 'render', 'dearer', 'to', 'she', 'than', 'ever', '\n', 'by', 'absence', 'unhappiness', 'and', 'danger', ' ', 'elinor', 'delight', '\n', 'as', 'she', 'see', 'what', 'each', 'feel', 'in', 'the', 'meeting', 'be', 'only', 'check', '\n', 'by', 'an', 'apprehension', 'of', 'its', 'robbing', 'Marianne', 'of', 'farther', 'sleep', '\n', 'but', 'Mrs', 'Dashwood', 'could', 'be', 'calm', 'could', 'be', 'even', 'prudent', '\n', 'when', 'the', 'life', 'of', 'a', 'child', 'be', 'at', 'stake', 'and', 'Marianne', '\n', 'satisfy', 'in', 'know', 'her', 'mother', 'be', 'near', 'she', 'and', 'conscious', '\n', 'of', 'be', 'too', 'weak', 'for', 'conversation', 'submit', 'readily', 'to', 'the', '\n', 'silence', 'and', 'quiet', 'prescribe', 'by', 'every', 'nurse', 'around', 'her', '\n', 'Mrs', 'Dashwood', 'would', 'sit', 'up', 'with', 'she', 'all', 'night', 'and', 'Elinor', '\n', 'in', 'compliance', 'with', 'her', 'mother', 'entreaty', 'go', 'to', 'bed', '\n', 'but', 'the', 'rest', 'which', 'one', 'night', 'entirely', 'sleepless', '\n', 'and', 'many', 'hour', 'of', 'the', 'most', 'wear', 'anxiety', 'seem', 'to', '\n', 'make', 'requisite', 'be', 'keep', 'off', 'by', 'irritation', 'of', 'spirit', '\n', 'Willoughby', 'poor', 'Willoughby', 'as', 'she', 'now', 'allow', '\n', 'herself', 'to', 'call', 'he', 'be', 'constantly', 'in', 'her', 'thought', 'she', '\n', 'would', 'not', 'but', 'have', 'hear', 'his', 'vindication', 'for', 'the', 'world', '\n', 'and', 'now', 'blame', 'now', 'acquit', 'herself', 'for', 'having', 'judge', 'he', '\n', 'so', 'harshly', 'before', ' ', 'but', 'her', 'promise', 'of', 'relate', 'it', 'to', 'her', '\n', 'sister', 'be', 'invariably', 'painful', ' ', 'she', 'dread', 'the', 'performance', '\n', 'of', 'it', 'dread', 'what', 'its', 'effect', 'on', 'Marianne', 'might', 'be', '\n', 'doubt', 'whether', 'after', 'such', 'an', 'explanation', 'she', 'could', 'ever', '\n', 'be', 'happy', 'with', 'another', 'and', 'for', 'a', 'moment', 'wish', 'Willoughby', '\n', 'a', 'widower', ' ', 'then', 'remember', 'Colonel', 'Brandon', 'reprove', 'herself', '\n', 'feel', 'that', 'to', 'his', 'suffering', 'and', 'his', 'constancy', 'far', 'more', '\n', 'than', 'to', 'his', 'rival', 'the', 'reward', 'of', 'her', 'sister', 'be', 'due', '\n', 'and', 'wish', 'any', 'thing', 'rather', 'than', 'Mrs', 'Willoughbys', 'death', '\n\n', 'the', 'shock', 'of', 'Colonel', 'Brandons', 'errand', 'at', 'Barton', 'have', 'be', '\n', 'much', 'soften', 'to', 'Mrs', 'Dashwood', 'by', 'her', 'own', 'previous', 'alarm', '\n', 'for', 'so', 'great', 'be', 'her', 'uneasiness', 'about', 'Marianne', 'that', 'she', '\n', 'have', 'already', 'determine', 'to', 'set', 'out', 'for', 'Cleveland', 'on', 'that', '\n', 'very', 'day', 'without', 'wait', 'for', 'any', 'further', 'intelligence', '\n', 'and', 'have', 'so', 'far', 'settle', 'her', 'journey', 'before', 'his', 'arrival', '\n', 'that', 'the', 'Careys', 'be', 'then', 'expect', 'every', 'moment', 'to', 'fetch', '\n', 'Margaret', 'away', 'as', 'her', 'mother', 'be', 'unwilling', 'to', 'take', 'she', '\n', 'where', 'there', 'might', 'be', 'infection', '\n\n', 'Marianne', 'continue', 'to', 'mend', 'every', 'day', 'and', 'the', 'brilliant', '\n', 'cheerfulness', 'of', 'Mrs', 'Dashwoods', 'look', 'and', 'spirit', 'prove', '\n', 'she', 'to', 'be', 'as', 'she', 'repeatedly', 'declare', 'herself', 'one', 'of', '\n', 'the', 'happy', 'woman', 'in', 'the', 'world', ' ', 'Elinor', 'could', 'not', 'hear', '\n', 'the', 'declaration', 'nor', 'witness', 'its', 'proof', 'without', 'sometimes', '\n', 'wonder', 'whether', 'her', 'mother', 'ever', 'recollect', 'Edward', '\n', 'but', 'Mrs', 'Dashwood', 'trust', 'to', 'the', 'temperate', 'account', '\n', 'of', 'her', 'own', 'disappointment', 'which', 'Elinor', 'have', 'send', 'she', '\n', 'be', 'lead', 'away', 'by', 'the', 'exuberance', 'of', 'her', 'joy', 'to', 'think', 'only', '\n', 'of', 'what', 'would', 'increase', 'it', ' ', 'Marianne', 'be', 'restore', 'to', 'she', '\n', 'from', 'a', 'danger', 'in', 'which', 'as', 'she', 'now', 'begin', 'to', 'feel', '\n', 'her', 'own', 'mistaken', 'judgment', 'in', 'encourage', 'the', 'unfortunate', '\n', 'attachment', 'to', 'Willoughby', 'have', 'contribute', 'to', 'place', 'she', '\n', 'and', 'in', 'her', 'recovery', 'she', 'have', 'yet', 'another', 'source', 'of', 'joy', '\n', 'unthought', 'of', 'by', 'Elinor', ' ', 'it', 'be', 'thus', 'impart', 'to', 'she', '\n', 'as', 'soon', 'as', 'any', 'opportunity', 'of', 'private', 'conference', '\n', 'between', 'they', 'occur', '\n\n', 'at', 'last', 'we', 'be', 'alone', ' ', 'my', 'elinor', 'you', 'do', 'not', 'yet', '\n', 'know', 'all', 'my', 'happiness', ' ', 'Colonel', 'Brandon', 'love', 'Marianne', '\n', 'he', 'have', 'tell', 'I', 'so', 'himself', '\n\n', 'her', 'daughter', 'feel', 'by', 'turn', 'both', 'pleased', 'and', 'pain', '\n', 'surprised', 'and', 'not', 'surprised', 'be', 'all', 'silent', 'attention', '\n\n', 'you', 'be', 'never', 'like', 'I', 'dear', 'Elinor', 'or', 'I', 'should', '\n', 'wonder', 'at', 'your', 'composure', 'now', ' ', 'have', 'I', 'sit', 'down', 'to', 'wish', '\n', 'for', 'any', 'possible', 'good', 'to', 'my', 'family', 'I', 'should', 'have', 'fix', '\n', 'on', 'Colonel', 'Brandons', 'marry', 'one', 'of', 'you', 'as', 'the', 'object', '\n', 'most', 'desirable', ' ', 'and', 'I', 'believe', 'Marianne', 'will', 'be', 'the', 'most', '\n', 'happy', 'with', 'he', 'of', 'the', 'two', '\n\n', 'Elinor', 'be', 'half', 'inclined', 'to', 'ask', 'her', 'reason', 'for', 'think', 'so', '\n', 'because', 'satisfy', 'that', 'none', 'found', 'on', 'an', 'impartial', '\n', 'consideration', 'of', 'their', 'age', 'character', 'or', 'feeling', '\n', 'could', 'be', 'givenbut', 'her', 'mother', 'must', 'always', 'be', 'carry', '\n', 'away', 'by', 'her', 'imagination', 'on', 'any', 'interesting', 'subject', '\n', 'and', 'therefore', 'instead', 'of', 'an', 'inquiry', 'she', 'pass', 'it', 'off', 'with', 'a', '\n', 'smile', '\n\n', 'he', 'open', 'his', 'whole', 'heart', 'to', 'I', 'yesterday', 'as', 'we', 'travel', '\n', 'it', 'come', 'out', 'quite', 'unawares', 'quite', 'undesignedly', ' ', 'I', 'you', 'may', '\n', 'well', 'believe', 'could', 'talk', 'of', 'nothing', 'but', 'my', 'childhe', 'could', '\n', 'not', 'conceal', 'his', 'distress', 'I', 'see', 'that', 'it', 'equal', 'my', 'own', '\n', 'and', 'he', 'perhaps', 'think', 'that', 'mere', 'friendship', 'as', 'the', 'world', '\n', 'now', 'go', 'would', 'not', 'justify', 'so', 'warm', 'a', 'sympathyor', 'rather', '\n', 'not', 'think', 'at', 'all', 'I', 'supposegive', 'way', 'to', 'irresistible', '\n', 'feeling', 'make', 'I', 'acquaint', 'with', 'his', 'earnest', 'tender', 'constant', '\n', 'affection', 'for', 'Marianne', ' ', 'he', 'have', 'love', 'she', 'my', 'Elinor', 'ever', 'since', '\n', 'the', 'first', 'moment', 'of', 'see', 'she', '\n\n', 'here', 'however', 'Elinor', 'perceivednot', 'the', 'language', '\n', 'not', 'the', 'profession', 'of', 'Colonel', 'Brandon', 'but', 'the', 'natural', '\n', 'embellishment', 'of', 'her', 'mother', 'active', 'fancy', 'which', 'fashion', '\n', 'every', 'thing', 'delightful', 'to', 'she', 'as', 'it', 'choose', '\n\n', 'his', 'regard', 'for', 'her', 'infinitely', 'surpass', 'anything', '\n', 'that', 'Willoughby', 'ever', 'feel', 'or', 'feign', 'as', 'much', 'more', 'warm', '\n', 'as', 'more', 'sincere', 'or', 'constantwhich', 'ever', 'we', 'be', 'to', 'call', 'it', '\n', 'have', 'subsist', 'through', 'all', 'the', 'knowledge', 'of', 'dear', 'Mariannes', '\n', 'unhappy', 'prepossession', 'for', 'that', 'worthless', 'young', 'manand', '\n', 'without', 'selfishnesswithout', 'encourage', 'a', 'hopecould', '\n', 'he', 'have', 'see', 'she', 'happy', 'with', 'anothersuch', 'a', 'noble', 'mind', '\n', 'such', 'openness', 'such', 'sincerityno', 'one', 'can', 'be', 'deceive', '\n', 'in', 'HIM', '\n\n', 'Colonel', 'Brandons', 'character', 'say', 'Elinor', '\n', 'as', 'an', 'excellent', 'man', 'be', 'well', 'establish', '\n\n', 'I', 'know', 'it', 'isreplie', 'her', 'mother', 'seriously', 'or', '\n', 'after', 'such', 'a', 'warning', 'I', 'should', 'be', 'the', 'last', 'to', 'encourage', '\n', 'such', 'affection', 'or', 'even', 'to', 'be', 'please', 'by', 'it', ' ', 'but', 'his', 'coming', '\n', 'for', 'I', 'as', 'he', 'do', 'with', 'such', 'active', 'such', 'ready', 'friendship', '\n', 'be', 'enough', 'to', 'prove', 'he', 'one', 'of', 'the', 'worthy', 'of', 'man', '\n\n', 'his', 'character', 'however', 'answer', 'Elinor', 'do', 'not', 'rest', '\n', 'on', 'one', 'act', 'of', 'kindness', 'to', 'which', 'his', 'affection', 'for', 'Marianne', '\n', 'be', 'humanity', 'out', 'of', 'the', 'case', 'would', 'have', 'prompt', 'he', '\n', 'to', 'Mrs', 'Jennings', 'to', 'the', 'Middletons', 'he', 'have', 'be', 'long', '\n', 'and', 'intimately', 'known', 'they', 'equally', 'love', 'and', 'respect', 'he', '\n', 'and', 'even', 'my', 'own', 'knowledge', 'of', 'he', 'though', 'lately', 'acquire', '\n', 'be', 'very', 'considerable', 'and', 'so', 'highly', 'do', 'I', 'value', 'and', 'esteem', 'he', '\n', 'that', 'if', 'Marianne', 'can', 'be', 'happy', 'with', 'he', 'I', 'shall', 'be', 'as', 'ready', '\n', 'as', 'yourself', 'to', 'think', 'our', 'connection', 'the', 'great', 'blessing', '\n', 'to', 'we', 'in', 'the', 'world', ' ', 'what', 'answer', 'do', 'you', 'give', 'himDid', 'you', '\n', 'allow', 'he', 'to', 'hope', '\n\n', 'oh', 'my', 'love', 'I', 'could', 'not', 'then', 'talk', 'of', 'hope', 'to', 'he', '\n', 'or', 'to', 'myself', ' ', 'Marianne', 'might', 'at', 'that', 'moment', 'be', 'die', '\n', 'but', 'he', 'do', 'not', 'ask', 'for', 'hope', 'or', 'encouragement', ' ', 'his', 'be', '\n', 'an', 'involuntary', 'confidence', 'an', 'irrepressible', 'effusion', '\n', 'to', 'a', 'soothe', 'friendnot', 'an', 'application', 'to', 'a', 'parent', '\n', 'yet', 'after', 'a', 'time', 'I', 'do', 'say', 'for', 'at', 'first', 'I', 'be', 'quite', '\n', 'overcomethat', 'if', 'she', 'live', 'as', 'I', 'trust', 'she', 'might', '\n', 'my', 'great', 'happiness', 'would', 'lie', 'in', 'promote', 'their', 'marriage', '\n', 'and', 'since', 'our', 'arrival', 'since', 'our', 'delightful', 'security', '\n', 'I', 'have', 'repeat', 'it', 'to', 'he', 'more', 'fully', 'have', 'give', 'he', 'every', '\n', 'encouragement', 'in', 'my', 'power', ' ', 'Time', 'a', 'very', 'little', 'time', '\n', 'I', 'tell', 'he', 'will', 'do', 'everythingMariannes', 'heart', 'be', '\n', 'not', 'to', 'be', 'waste', 'for', 'ever', 'on', 'such', 'a', 'man', 'as', 'Willoughby', '\n', 'his', 'own', 'merit', 'must', 'soon', 'secure', 'it', '\n\n', 'to', 'judge', 'from', 'the', 'Colonels', 'spirit', 'however', '\n', 'you', 'have', 'not', 'yet', 'make', 'he', 'equally', 'sanguine', '\n\n', 'NoHe', 'think', 'Mariannes', 'affection', 'too', 'deeply', '\n', 'root', 'for', 'any', 'change', 'in', 'it', 'under', 'a', 'great', 'length', 'of', 'time', '\n', 'and', 'even', 'suppose', 'her', 'heart', 'again', 'free', 'be', 'too', 'diffident', '\n', 'of', 'himself', 'to', 'believe', 'that', 'with', 'such', 'a', 'difference', 'of', 'age', '\n', 'and', 'disposition', 'he', 'could', 'ever', 'attach', 'she', ' ', 'there', 'however', '\n', 'he', 'be', 'quite', 'mistaken', ' ', 'his', 'age', 'be', 'only', 'so', 'much', 'beyond', '\n', 'hers', 'as', 'to', 'be', 'an', 'advantage', 'as', 'to', 'make', 'his', 'character', 'and', '\n', 'principle', 'fixedand', 'his', 'disposition', 'I', 'be', 'well', 'convinced', '\n', 'be', 'exactly', 'the', 'very', 'one', 'to', 'make', 'your', 'sister', 'happy', '\n', 'and', 'his', 'person', 'his', 'manner', 'too', 'be', 'all', 'in', 'his', 'favour', '\n', 'my', 'partiality', 'do', 'not', 'blind', 'I', 'he', 'certainly', 'be', 'not', '\n', 'so', 'handsome', 'as', 'Willoughbybut', 'at', 'the', 'same', 'time', '\n', 'there', 'be', 'something', 'much', 'more', 'pleasing', 'in', 'his', 'countenance', '\n', 'there', 'be', 'always', 'a', 'somethingif', 'you', 'rememberin', 'Willoughbys', '\n', 'eye', 'at', 'time', 'which', 'I', 'do', 'not', 'like', '\n\n', 'Elinor', 'could', 'not', 'remember', 'itbut', 'her', 'mother', '\n', 'without', 'wait', 'for', 'her', 'assent', 'continue', '\n\n', 'and', 'his', 'manner', 'the', 'Colonels', 'manner', 'be', 'not', 'only', '\n', 'more', 'pleasing', 'to', 'I', 'than', 'Willoughbys', 'ever', 'be', 'but', 'they', '\n', 'be', 'of', 'a', 'kind', 'I', 'well', 'know', 'to', 'be', 'more', 'solidly', 'attach', '\n', 'to', 'Marianne', ' ', 'their', 'gentleness', 'their', 'genuine', 'attention', '\n', 'to', 'other', 'people', 'and', 'their', 'manly', 'unstudied', 'simplicity', '\n', 'be', 'much', 'more', 'accordant', 'with', 'her', 'real', 'disposition', 'than', '\n', 'the', 'livelinessoften', 'artificial', 'and', 'often', 'illtimed', '\n', 'of', 'the', 'other', ' ', 'I', 'be', 'very', 'sure', 'myself', 'that', 'have', 'Willoughby', '\n', 'turn', 'out', 'as', 'really', 'amiable', 'as', 'he', 'have', 'prove', 'himself', '\n', 'the', 'contrary', 'Marianne', 'would', 'yet', 'never', 'have', 'be', 'so', 'happy', '\n', 'with', 'HIM', 'as', 'she', 'will', 'be', 'with', 'Colonel', 'Brandon', '\n\n', 'she', 'pausedher', 'daughter', 'could', 'not', 'quite', 'agree', '\n', 'with', 'she', 'but', 'her', 'dissent', 'be', 'not', 'hear', 'and', 'therefore', '\n', 'give', 'no', 'offence', '\n\n', 'at', 'Delaford', 'she', 'will', 'be', 'within', 'an', 'easy', 'distance', 'of', 'I', '\n', 'add', 'Mrs', 'Dashwood', 'even', 'if', 'I', 'remain', 'at', 'Barton', 'and', 'in', 'all', '\n', 'probabilityfor', 'I', 'hear', 'it', 'be', 'a', 'large', 'villageindeed', 'there', '\n', 'certainly', 'must', 'be', 'some', 'small', 'house', 'or', 'cottage', 'close', 'by', '\n', 'that', 'would', 'suit', 'we', 'quite', 'as', 'well', 'as', 'our', 'present', 'situation', '\n\n', 'Poor', 'Elinorhere', 'be', 'a', 'new', 'scheme', 'for', 'get', '\n', 'she', 'to', 'delafordbut', 'her', 'spirit', 'be', 'stubborn', '\n\n', 'his', 'fortune', 'toofor', 'at', 'my', 'time', 'of', 'life', 'you', 'know', '\n', 'everybody', 'care', 'about', 'THATand', 'though', 'I', 'neither', 'know', '\n', 'nor', 'desire', 'to', 'know', 'what', 'it', 'really', 'be', 'I', 'be', 'sure', 'it', 'must', 'be', '\n', 'a', 'good', 'one', '\n\n', 'here', 'they', 'be', 'interrupt', 'by', 'the', 'entrance', 'of', 'a', '\n', 'third', 'person', 'and', 'Elinor', 'withdraw', 'to', 'think', 'it', 'all', 'over', '\n', 'in', 'private', 'to', 'wish', 'success', 'to', 'her', 'friend', 'and', 'yet', '\n', 'in', 'wish', 'it', 'to', 'feel', 'a', 'pang', 'for', 'Willoughby', '\n\n\n\n', 'chapter', '46', '\n\n\n', 'Mariannes', 'illness', 'though', 'weaken', 'in', 'its', 'kind', '\n', 'have', 'not', 'be', 'long', 'enough', 'to', 'make', 'her', 'recovery', 'slow', '\n', 'and', 'with', 'youth', 'natural', 'strength', 'and', 'her', 'mother', 'presence', '\n', 'in', 'aid', 'it', 'proceed', 'so', 'smoothly', 'as', 'to', 'enable', 'she', 'to', 'remove', '\n', 'within', 'four', 'day', 'after', 'the', 'arrival', 'of', 'the', 'latter', '\n', 'into', 'Mrs', 'Palmers', 'dressingroom', ' ', 'when', 'there', 'at', 'her', 'own', '\n', 'particular', 'request', 'for', 'she', 'be', 'impatient', 'to', 'pour', 'forth', '\n', 'her', 'thank', 'to', 'he', 'for', 'fetch', 'her', 'mother', 'Colonel', 'Brandon', '\n', 'be', 'invite', 'to', 'visit', 'she', '\n\n', 'his', 'emotion', 'on', 'enter', 'the', 'room', 'in', 'see', 'she', 'alter', '\n', 'look', 'and', 'in', 'receive', 'the', 'pale', 'hand', 'which', 'she', 'immediately', '\n', 'hold', 'out', 'to', 'he', 'be', 'such', 'as', 'in', 'Elinors', 'conjecture', '\n', 'must', 'arise', 'from', 'something', 'more', 'than', 'his', 'affection', 'for', 'Marianne', '\n', 'or', 'the', 'consciousness', 'of', 'its', 'be', 'know', 'to', 'other', '\n', 'and', 'she', 'soon', 'discover', 'in', 'his', 'melancholy', 'eye', 'and', 'varying', '\n', 'complexion', 'as', 'he', 'look', 'at', 'her', 'sister', 'the', 'probable', '\n', 'recurrence', 'of', 'many', 'past', 'scene', 'of', 'misery', 'to', 'his', 'mind', '\n', 'bring', 'back', 'by', 'that', 'resemblance', 'between', 'Marianne', 'and', 'Eliza', '\n', 'already', 'acknowledge', 'and', 'now', 'strengthen', 'by', 'the', 'hollow', 'eye', '\n', 'the', 'sickly', 'skin', 'the', 'posture', 'of', 'recline', 'weakness', '\n', 'and', 'the', 'warm', 'acknowledgment', 'of', 'peculiar', 'obligation', '\n\n', 'Mrs', 'Dashwood', 'not', 'less', 'watchful', 'of', 'what', 'pass', 'than', '\n', 'her', 'daughter', 'but', 'with', 'a', 'mind', 'very', 'differently', 'influence', '\n', 'and', 'therefore', 'watch', 'to', 'very', 'different', 'effect', '\n', 'see', 'nothing', 'in', 'the', 'Colonels', 'behaviour', 'but', 'what', 'arise', '\n', 'from', 'the', 'most', 'simple', 'and', 'selfevident', 'sensation', 'while', 'in', '\n', 'the', 'action', 'and', 'word', 'of', 'Marianne', 'she', 'persuade', 'herself', '\n', 'to', 'think', 'that', 'something', 'more', 'than', 'gratitude', 'already', 'dawn', '\n\n', 'at', 'the', 'end', 'of', 'another', 'day', 'or', 'two', 'Marianne', 'grow', '\n', 'visibly', 'strong', 'every', 'twelve', 'hour', 'Mrs', 'Dashwood', '\n', 'urge', 'equally', 'by', 'her', 'own', 'and', 'her', 'daughter', 'wishes', '\n', 'begin', 'to', 'talk', 'of', 'remove', 'to', 'Barton', ' ', 'on', 'her', 'measure', '\n', 'depend', 'those', 'of', 'her', 'two', 'friend', 'Mrs', 'Jennings', 'could', '\n', 'not', 'quit', 'Cleveland', 'during', 'the', 'Dashwoods', 'stay', 'and', 'Colonel', '\n', 'Brandon', 'be', 'soon', 'bring', 'by', 'their', 'united', 'request', '\n', 'to', 'consider', 'his', 'own', 'abode', 'there', 'as', 'equally', 'determinate', '\n', 'if', 'not', 'equally', 'indispensable', ' ', 'at', 'his', 'and', 'Mrs', 'Jenningss', '\n', 'united', 'request', 'in', 'return', 'Mrs', 'Dashwood', 'be', 'prevail', '\n', 'on', 'to', 'accept', 'the', 'use', 'of', 'his', 'carriage', 'on', 'her', 'journey', 'back', '\n', 'for', 'the', 'well', 'accommodation', 'of', 'her', 'sick', 'child', 'and', 'the', 'Colonel', '\n', 'at', 'the', 'joint', 'invitation', 'of', 'Mrs', 'Dashwood', 'and', 'Mrs', 'Jennings', '\n', 'whose', 'active', 'goodnature', 'make', 'she', 'friendly', 'and', 'hospitable', '\n', 'for', 'other', 'people', 'as', 'well', 'as', 'herself', 'engage', 'with', 'pleasure', '\n', 'to', 'redeem', 'it', 'by', 'a', 'visit', 'at', 'the', 'cottage', 'in', 'the', 'course', '\n', 'of', 'a', 'few', 'week', '\n\n', 'the', 'day', 'of', 'separation', 'and', 'departure', 'arrive', '\n', 'and', 'Marianne', 'after', 'take', 'so', 'particular', 'and', 'lengthen', '\n', 'a', 'leave', 'of', 'Mrs', 'Jennings', 'one', 'so', 'earnestly', 'grateful', 'so', 'full', '\n', 'of', 'respect', 'and', 'kind', 'wish', 'as', 'seem', 'due', 'to', 'her', 'own', 'heart', '\n', 'from', 'a', 'secret', 'acknowledgment', 'of', 'past', 'inattention', 'and', 'bidding', '\n', 'Colonel', 'Brandon', 'farewell', 'with', 'a', 'cordiality', 'of', 'a', 'friend', '\n', 'be', 'carefully', 'assist', 'by', 'he', 'into', 'the', 'carriage', 'of', 'which', 'he', '\n', 'seem', 'anxious', 'that', 'she', 'should', 'engross', 'at', 'least', 'half', '\n', 'Mrs', 'Dashwood', 'and', 'Elinor', 'then', 'follow', 'and', 'the', 'other', '\n', 'be', 'leave', 'by', 'themselves', 'to', 'talk', 'of', 'the', 'traveller', '\n', 'and', 'feel', 'their', 'own', 'dullness', 'till', 'Mrs', 'Jennings', 'be', 'summon', '\n', 'to', 'her', 'chaise', 'to', 'take', 'comfort', 'in', 'the', 'gossip', 'of', 'her', 'maid', '\n', 'for', 'the', 'loss', 'of', 'her', 'two', 'young', 'companion', 'and', 'Colonel', 'Brandon', '\n', 'immediately', 'afterwards', 'take', 'his', 'solitary', 'way', 'to', 'Delaford', '\n\n', 'the', 'Dashwoods', 'be', 'two', 'day', 'on', 'the', 'road', 'and', 'Marianne', '\n', 'bear', 'her', 'journey', 'on', 'both', 'without', 'essential', 'fatigue', '\n', 'every', 'thing', 'that', 'the', 'most', 'zealous', 'affection', 'the', 'most', '\n', 'solicitous', 'care', 'could', 'do', 'to', 'render', 'her', 'comfortable', '\n', 'be', 'the', 'office', 'of', 'each', 'watchful', 'companion', 'and', 'each', '\n', 'find', 'their', 'reward', 'in', 'her', 'bodily', 'ease', 'and', 'her', 'calmness', '\n', 'of', 'spirit', ' ', 'to', 'Elinor', 'the', 'observation', 'of', 'the', 'latter', '\n', 'be', 'particularly', 'grateful', ' ', 'she', 'who', 'have', 'see', 'her', 'week', '\n', 'after', 'week', 'so', 'constantly', 'suffer', 'oppress', 'by', 'anguish', '\n', 'of', 'heart', 'which', 'she', 'have', 'neither', 'courage', 'to', 'speak', 'of', '\n', 'nor', 'fortitude', 'to', 'conceal', 'now', 'see', 'with', 'a', 'joy', 'which', 'no', 'other', '\n', 'could', 'equally', 'share', 'an', 'apparent', 'composure', 'of', 'mind', 'which', '\n', 'in', 'be', 'the', 'result', 'as', 'she', 'trust', 'of', 'serious', 'reflection', '\n', 'must', 'eventually', 'lead', 'she', 'to', 'contentment', 'and', 'cheerfulness', '\n\n', 'as', 'they', 'approach', 'Barton', 'indeed', 'and', 'enter', '\n', 'on', 'scene', 'of', 'which', 'every', 'field', 'and', 'every', 'tree', 'bring', '\n', 'some', 'peculiar', 'some', 'painful', 'recollection', 'she', 'grow', 'silent', '\n', 'and', 'thoughtful', 'and', 'turn', 'away', 'her', 'face', 'from', 'their', 'notice', '\n', 'sit', 'earnestly', 'gaze', 'through', 'the', 'window', ' ', 'but', 'here', '\n', 'Elinor', 'could', 'neither', 'wonder', 'nor', 'blame', 'and', 'when', 'she', 'see', '\n', 'as', 'she', 'assist', 'Marianne', 'from', 'the', 'carriage', 'that', 'she', '\n', 'have', 'be', 'cry', 'she', 'see', 'only', 'an', 'emotion', 'too', 'natural', '\n', 'in', 'itself', 'to', 'raise', 'any', 'thing', 'less', 'tender', 'than', 'pity', '\n', 'and', 'in', 'its', 'unobtrusiveness', 'entitle', 'to', 'praise', ' ', 'in', 'the', '\n', 'whole', 'of', 'her', 'subsequent', 'manner', 'she', 'trace', 'the', 'direction', '\n', 'of', 'a', 'mind', 'awaken', 'to', 'reasonable', 'exertion', 'for', 'no', 'soon', '\n', 'have', 'they', 'enter', 'their', 'common', 'sittingroom', 'than', 'Marianne', '\n', 'turn', 'her', 'eye', 'around', 'it', 'with', 'a', 'look', 'of', 'resolute', 'firmness', '\n', 'as', 'if', 'determine', 'at', 'once', 'to', 'accustom', 'herself', 'to', 'the', 'sight', '\n', 'of', 'every', 'object', 'with', 'which', 'the', 'remembrance', 'of', 'Willoughby', 'could', '\n', 'be', 'connectedshe', 'say', 'little', 'but', 'every', 'sentence', 'aim', '\n', 'at', 'cheerfulness', 'and', 'though', 'a', 'sigh', 'sometimes', 'escape', 'she', '\n', 'it', 'never', 'pass', 'away', 'without', 'the', 'atonement', 'of', 'a', 'smile', '\n', 'after', 'dinner', 'she', 'would', 'try', 'her', 'pianoforte', 'she', 'go', 'to', 'it', '\n', 'but', 'the', 'music', 'on', 'which', 'her', 'eye', 'first', 'rest', 'be', 'an', 'opera', '\n', 'procure', 'for', 'she', 'by', 'Willoughby', 'contain', 'some', 'of', 'their', '\n', 'favourite', 'duet', 'and', 'bear', 'on', 'its', 'outward', 'leaf', 'her', 'own', 'name', '\n', 'in', 'his', 'handwritingthat', 'would', 'not', 'doshe', 'shake', 'her', 'head', '\n', 'put', 'the', 'music', 'aside', 'and', 'after', 'run', 'over', 'the', 'key', '\n', 'for', 'a', 'minute', 'complain', 'of', 'feebleness', 'in', 'her', 'finger', '\n', 'and', 'close', 'the', 'instrument', 'again', 'declare', 'however', 'with', 'firmness', '\n', 'as', 'she', 'do', 'so', 'that', 'she', 'should', 'in', 'future', 'practice', 'much', '\n\n', 'the', 'next', 'morning', 'produce', 'no', 'abatement', 'in', 'these', '\n', 'happy', 'symptom', ' ', 'on', 'the', 'contrary', 'with', 'a', 'mind', 'and', 'body', '\n', 'alike', 'strengthen', 'by', 'rest', 'she', 'look', 'and', 'speak', 'with', '\n', 'more', 'genuine', 'spirit', 'anticipate', 'the', 'pleasure', 'of', '\n', 'margaret', 'return', 'and', 'talk', 'of', 'the', 'dear', 'family', 'party', '\n', 'which', 'would', 'then', 'be', 'restore', 'of', 'their', 'mutual', 'pursuit', '\n', 'and', 'cheerful', 'society', 'as', 'the', 'only', 'happiness', 'worth', 'a', 'wish', '\n\n', 'when', 'the', 'weather', 'be', 'settle', 'and', 'I', 'have', 'recover', '\n', 'my', 'strength', 'say', 'she', 'we', 'will', 'take', 'long', 'walk', 'together', '\n', 'every', 'day', ' ', 'we', 'will', 'walk', 'to', 'the', 'farm', 'at', 'the', 'edge', 'of', 'the', 'down', '\n', 'and', 'see', 'how', 'the', 'child', 'go', 'on', 'we', 'will', 'walk', 'to', 'Sir', 'Johns', '\n', 'new', 'plantation', 'at', 'Barton', 'Cross', 'and', 'the', 'Abbeyland', '\n', 'and', 'we', 'will', 'often', 'go', 'the', 'old', 'ruin', 'of', 'the', 'priory', '\n', 'and', 'try', 'to', 'trace', 'its', 'foundation', 'as', 'far', 'as', 'we', 'be', 'tell', '\n', 'they', 'once', 'reach', ' ', 'I', 'know', 'we', 'shall', 'be', 'happy', ' ', 'I', 'know', '\n', 'the', 'summer', 'will', 'pass', 'happily', 'away', ' ', 'I', 'mean', 'never', 'to', 'be', '\n', 'later', 'in', 'rise', 'than', 'six', 'and', 'from', 'that', 'time', 'till', 'dinner', '\n', 'I', 'shall', 'divide', 'every', 'moment', 'between', 'music', 'and', 'reading', '\n', 'I', 'have', 'form', 'my', 'plan', 'and', 'be', 'determined', 'to', 'enter', 'on', 'a', 'course', '\n', 'of', 'serious', 'study', ' ', 'our', 'own', 'library', 'be', 'too', 'well', 'known', 'to', 'I', '\n', 'to', 'be', 'resort', 'to', 'for', 'any', 'thing', 'beyond', 'mere', 'amusement', '\n', 'but', 'there', 'be', 'many', 'work', 'well', 'worth', 'read', 'at', 'the', 'Park', '\n', 'and', 'there', 'be', 'other', 'of', 'more', 'modern', 'production', 'which', 'I', '\n', 'know', 'I', 'can', 'borrow', 'of', 'Colonel', 'Brandon', ' ', 'by', 'read', 'only', 'six', '\n', 'hour', 'aday', 'I', 'shall', 'gain', 'in', 'the', 'course', 'of', 'a', 'twelvemonth', '\n', 'a', 'great', 'deal', 'of', 'instruction', 'which', 'I', 'now', 'feel', 'myself', 'to', 'want', '\n\n', 'Elinor', 'honour', 'she', 'for', 'a', 'plan', 'which', 'originate', '\n', 'so', 'nobly', 'as', 'this', 'though', 'smile', 'to', 'see', 'the', 'same', 'eager', '\n', 'fancy', 'which', 'have', 'be', 'lead', 'she', 'to', 'the', 'extreme', 'of', 'languid', '\n', 'indolence', 'and', 'selfish', 'repining', 'now', 'at', 'work', 'in', 'introduce', '\n', 'excess', 'into', 'a', 'scheme', 'of', 'such', 'rational', 'employment', 'and', 'virtuous', '\n', 'selfcontrol', 'her', 'smile', 'however', 'change', 'to', 'a', 'sigh', 'when', 'she', '\n', 'remember', 'that', 'promise', 'to', 'Willoughby', 'be', 'yet', 'unfulfille', '\n', 'and', 'fear', 'she', 'have', 'that', 'to', 'communicate', 'which', 'might', 'again', '\n', 'unsettle', 'the', 'mind', 'of', 'Marianne', 'and', 'ruin', 'at', 'least', 'for', 'a', 'time', '\n', 'this', 'fair', 'prospect', 'of', 'busy', 'tranquillity', ' ', 'Willing', 'therefore', '\n', 'to', 'delay', 'the', 'evil', 'hour', 'she', 'resolve', 'to', 'wait', 'till', 'her', '\n', 'sister', 'health', 'be', 'more', 'secure', 'before', 'she', 'appoint', 'it', '\n', 'but', 'the', 'resolution', 'be', 'make', 'only', 'to', 'be', 'break', '\n\n', 'Marianne', 'have', 'be', 'two', 'or', 'three', 'day', 'at', 'home', 'before', '\n', 'the', 'weather', 'be', 'fine', 'enough', 'for', 'an', 'invalid', 'like', 'herself', '\n', 'to', 'venture', 'out', ' ', 'but', 'at', 'last', 'a', 'soft', 'genial', 'morning', 'appear', '\n', 'such', 'as', 'might', 'tempt', 'the', 'daughter', 'wish', 'and', 'the', '\n', 'mother', 'confidence', 'and', 'Marianne', 'lean', 'on', 'elinor', 'arm', '\n', 'be', 'authorise', 'to', 'walk', 'as', 'long', 'as', 'she', 'could', 'without', 'fatigue', '\n', 'in', 'the', 'lane', 'before', 'the', 'house', '\n\n', 'the', 'sister', 'set', 'out', 'at', 'a', 'pace', 'slow', 'as', 'the', 'feebleness', '\n', 'of', 'Marianne', 'in', 'an', 'exercise', 'hitherto', 'untried', 'since', 'her', '\n', 'illness', 'requiredand', 'they', 'have', 'advance', 'only', 'so', 'far', '\n', 'beyond', 'the', 'house', 'as', 'to', 'admit', 'a', 'full', 'view', 'of', 'the', 'hill', '\n', 'the', 'important', 'hill', 'behind', 'when', 'pause', 'with', 'her', 'eye', '\n', 'turn', 'towards', 'it', 'Marianne', 'calmly', 'say', '\n\n', 'there', 'exactly', 'therepointe', 'with', 'one', 'hand', '\n', 'on', 'that', 'project', 'moundthere', 'I', 'fall', 'and', 'there', '\n', 'I', 'first', 'see', 'Willoughby', '\n\n', 'her', 'voice', 'sink', 'with', 'the', 'word', 'but', 'presently', 'revive', 'she', 'add', '\n\n', 'I', 'be', 'thankful', 'to', 'find', 'that', 'I', 'can', 'look', 'with', 'so', 'little', 'pain', '\n', 'on', 'the', 'spotshall', 'we', 'ever', 'talk', 'on', 'that', 'subject', 'Elinor', '\n', 'hesitatingly', 'it', 'be', 'saidor', 'will', 'it', 'be', 'wrongi', 'can', 'talk', '\n', 'of', 'it', 'now', 'I', 'hope', 'as', 'I', 'ought', 'to', 'do', '\n\n', 'Elinor', 'tenderly', 'invite', 'she', 'to', 'be', 'open', '\n\n', 'as', 'for', 'regret', 'say', 'Marianne', 'I', 'have', 'do', 'with', 'that', '\n', 'as', 'far', 'as', 'he', 'be', 'concern', ' ', 'I', 'do', 'not', 'mean', 'to', 'talk', 'to', 'you', '\n', 'of', 'what', 'my', 'feeling', 'have', 'be', 'for', 'he', 'but', 'what', 'they', '\n', 'be', 'NOWAt', 'present', 'if', 'I', 'could', 'be', 'satisfied', 'on', 'one', 'point', '\n', 'if', 'I', 'could', 'be', 'allow', 'to', 'think', 'that', 'he', 'be', 'not', 'always', '\n', 'act', 'a', 'part', 'not', 'always', 'deceive', 'mebut', 'above', 'all', '\n', 'if', 'I', 'could', 'be', 'assure', 'that', 'he', 'never', 'be', 'so', 'very', 'wicked', '\n', 'as', 'my', 'fear', 'have', 'sometimes', 'fancy', 'he', 'since', 'the', 'story', '\n', 'of', 'that', 'unfortunate', 'girl', '\n\n', 'she', 'stopt', ' ', 'Elinor', 'joyfully', 'treasure', 'her', 'word', '\n', 'as', 'she', 'answer', '\n\n', 'if', 'you', 'could', 'be', 'assure', 'of', 'that', 'you', 'think', 'you', '\n', 'should', 'be', 'easy', '\n\n', 'yes', 'my', 'peace', 'of', 'mind', 'be', 'doubly', 'involved', 'in', 'it', '\n', 'for', 'not', 'only', 'be', 'it', 'horrible', 'to', 'suspect', 'a', 'person', 'who', 'have', '\n', 'be', 'what', 'he', 'have', 'be', 'to', 'I', 'of', 'such', 'designsbut', 'what', 'must', '\n', 'it', 'make', 'I', 'appear', 'to', 'myselfwhat', 'in', 'a', 'situation', 'like', 'mine', '\n', 'but', 'a', 'most', 'shamefully', 'unguarde', 'affection', 'could', 'expose', '\n', 'I', 'to', '\n\n', 'how', 'then', 'ask', 'her', 'sister', 'would', 'you', 'account', '\n', 'for', 'his', 'behaviour', '\n\n', 'I', 'would', 'suppose', 'himoh', 'how', 'gladly', 'would', 'I', 'suppose', 'he', '\n', 'only', 'fickle', 'very', 'very', 'fickle', '\n\n', 'Elinor', 'say', 'no', 'more', ' ', 'she', 'be', 'debate', 'within', 'herself', '\n', 'on', 'the', 'eligibility', 'of', 'begin', 'her', 'story', 'directly', '\n', 'or', 'postpone', 'it', 'till', 'Marianne', 'be', 'in', 'strong', 'health', '\n', 'and', 'they', 'creep', 'on', 'for', 'a', 'few', 'minute', 'in', 'silence', '\n\n', 'I', 'be', 'not', 'wish', 'he', 'too', 'much', 'good', 'say', 'Marianne', '\n', 'at', 'last', 'with', 'a', 'sigh', 'when', 'I', 'wish', 'his', 'secret', 'reflection', '\n', 'may', 'be', 'no', 'more', 'unpleasant', 'than', 'my', 'own', ' ', 'he', 'will', 'suffer', '\n', 'enough', 'in', 'they', '\n\n', 'do', 'you', 'compare', 'your', 'conduct', 'with', 'his', '\n\n', 'no', 'I', 'compare', 'it', 'with', 'what', 'it', 'ought', 'to', 'have', 'be', '\n', 'I', 'compare', 'it', 'with', 'your', '\n\n', 'our', 'situation', 'have', 'bear', 'little', 'resemblance', '\n\n', 'they', 'have', 'bear', 'more', 'than', 'our', 'conductDo', 'not', '\n', 'my', 'dear', 'Elinor', 'let', 'your', 'kindness', 'defend', 'what', 'I', 'know', '\n', 'your', 'judgment', 'must', 'censure', ' ', 'my', 'illness', 'have', 'make', 'I', 'think', '\n', 'it', 'have', 'give', 'I', 'leisure', 'and', 'calmness', 'for', 'serious', 'recollection', '\n', 'long', 'before', 'I', 'be', 'enough', 'recover', 'to', 'talk', 'I', 'be', 'perfectly', '\n', 'able', 'to', 'reflect', ' ', 'I', 'consider', 'the', 'past', 'I', 'see', 'in', 'my', '\n', 'own', 'behaviour', 'since', 'the', 'beginning', 'of', 'our', 'acquaintance', '\n', 'with', 'he', 'last', 'autumn', 'nothing', 'but', 'a', 'series', 'of', 'imprudence', '\n', 'towards', 'myself', 'and', 'want', 'of', 'kindness', 'to', 'other', '\n', 'I', 'see', 'that', 'my', 'own', 'feeling', 'have', 'prepare', 'my', 'suffering', '\n', 'and', 'that', 'my', 'want', 'of', 'fortitude', 'under', 'they', 'have', 'almost', 'lead', '\n', 'I', 'to', 'the', 'grave', ' ', 'my', 'illness', 'I', 'well', 'know', 'have', 'be', '\n', 'entirely', 'bring', 'on', 'by', 'myself', 'by', 'such', 'negligence', 'of', 'my', '\n', 'own', 'health', 'as', 'I', 'have', 'feel', 'even', 'at', 'the', 'time', 'to', 'be', 'wrong', '\n', 'have', 'I', 'diedit', 'would', 'have', 'be', 'selfdestruction', 'I', '\n', 'do', 'not', 'know', 'my', 'danger', 'till', 'the', 'danger', 'be', 'remove', '\n', 'but', 'with', 'such', 'feeling', 'as', 'these', 'reflection', 'give', 'I', '\n', 'I', 'wonder', 'at', 'my', 'recoverywonder', 'that', 'the', 'very', 'eagerness', '\n', 'of', 'my', 'desire', 'to', 'live', 'to', 'have', 'time', 'for', 'atonement', 'to', 'my', 'God', '\n', 'and', 'to', 'you', 'all', 'do', 'not', 'kill', 'I', 'at', 'once', ' ', 'have', 'I', 'die', '\n', 'in', 'what', 'peculiar', 'misery', 'should', 'I', 'have', 'leave', 'you', 'my', 'nurse', '\n', 'my', 'friend', 'my', 'sisteryou', 'who', 'have', 'see', 'all', 'the', 'fretful', '\n', 'selfishness', 'of', 'my', 'latter', 'day', 'who', 'have', 'know', 'all', 'the', '\n', 'murmuring', 'of', 'my', 'heartHow', 'should', 'I', 'have', 'live', 'in', 'your', '\n', 'remembranceMy', 'mother', 'too', 'how', 'could', 'you', 'have', 'console', '\n', 'herI', 'can', 'not', 'express', 'my', 'own', 'abhorrence', 'of', 'myself', '\n', 'whenever', 'I', 'look', 'towards', 'the', 'past', 'I', 'see', 'some', 'duty', 'neglect', '\n', 'or', 'some', 'fail', 'indulge', ' ', 'every', 'body', 'seem', 'injure', 'by', 'I', '\n', 'the', 'kindness', 'the', 'unceasing', 'kindness', 'of', 'Mrs', 'Jennings', '\n', 'I', 'have', 'repay', 'with', 'ungrateful', 'contempt', ' ', 'to', 'the', 'Middletons', '\n', 'to', 'the', 'Palmers', 'the', 'Steeles', 'to', 'every', 'common', 'acquaintance', 'even', '\n', 'I', 'have', 'be', 'insolent', 'and', 'unjust', 'with', 'a', 'heart', 'harden', '\n', 'against', 'their', 'merit', 'and', 'a', 'temper', 'irritate', 'by', 'their', '\n', 'very', 'attentionto', 'John', 'to', 'Fannyyes', 'even', 'to', 'they', '\n', 'little', 'as', 'they', 'deserve', 'I', 'have', 'give', 'less', 'than', 'their', 'due', '\n', 'but', 'youyou', 'above', 'all', 'above', 'my', 'mother', 'have', 'be', 'wrong', '\n', 'by', 'I', ' ', 'I', 'and', 'only', 'I', 'know', 'your', 'heart', 'and', 'its', 'sorrow', '\n', 'yet', 'to', 'what', 'do', 'it', 'influence', 'menot', 'to', 'any', 'compassion', '\n', 'that', 'could', 'benefit', 'you', 'or', 'myselfyour', 'example', 'be', '\n', 'before', 'I', 'but', 'to', 'what', 'availWas', 'I', 'more', 'considerate', '\n', 'of', 'you', 'and', 'your', 'comfort', ' ', 'do', 'I', 'imitate', 'your', 'forbearance', '\n', 'or', 'lessen', 'your', 'restraint', 'by', 'take', 'any', 'part', 'in', 'those', '\n', 'office', 'of', 'general', 'complaisance', 'or', 'particular', 'gratitude', '\n', 'which', 'you', 'have', 'hitherto', 'be', 'leave', 'to', 'discharge', 'aloneNo', '\n', 'not', 'less', 'when', 'I', 'know', 'you', 'to', 'be', 'unhappy', 'than', 'when', 'I', '\n', 'have', 'believe', 'you', 'at', 'ease', 'do', 'I', 'turn', 'away', 'from', 'every', '\n', 'exertion', 'of', 'duty', 'or', 'friendship', 'scarcely', 'allow', 'sorrow', '\n', 'to', 'exist', 'but', 'with', 'I', 'regret', 'only', 'that', 'heart', '\n', 'which', 'have', 'desert', 'and', 'wrong', 'I', 'and', 'leave', 'you', '\n', 'for', 'or', 'I', 'profess', 'an', 'unbounded', 'affection', 'to', 'be', 'miserable', '\n', 'for', 'my', 'sake', '\n\n', 'here', 'cease', 'the', 'rapid', 'flow', 'of', 'her', 'selfreproving', 'spirit', '\n', 'and', 'Elinor', 'impatient', 'to', 'soothe', 'though', 'too', 'honest', '\n', 'to', 'flatter', 'give', 'she', 'instantly', 'that', 'praise', 'and', 'support', '\n', 'which', 'her', 'frankness', 'and', 'her', 'contrition', 'so', 'well', 'deserve', '\n', 'Marianne', 'press', 'her', 'hand', 'and', 'reply', '\n\n', 'you', 'be', 'very', 'goodThe', 'future', 'must', 'be', 'my', 'proof', '\n', 'I', 'have', 'lay', 'down', 'my', 'plan', 'and', 'if', 'I', 'be', 'capable', 'of', 'adhere', '\n', 'to', 'itmy', 'feeling', 'shall', 'be', 'govern', 'and', 'my', 'temper', 'improve', '\n', 'they', 'shall', 'no', 'long', 'worry', 'other', 'nor', 'torture', 'myself', '\n', 'I', 'shall', 'now', 'live', 'solely', 'for', 'my', 'family', ' ', 'you', 'my', 'mother', '\n', 'and', 'Margaret', 'must', 'henceforth', 'be', 'all', 'the', 'world', 'to', 'I', '\n', 'you', 'will', 'share', 'my', 'affection', 'entirely', 'between', 'you', '\n', 'from', 'you', 'from', 'my', 'home', 'I', 'shall', 'never', 'again', 'have', 'the', 'small', '\n', 'incitement', 'to', 'move', 'and', 'if', 'I', 'do', 'mix', 'in', 'other', 'society', '\n', 'it', 'will', 'be', 'only', 'to', 'shew', 'that', 'my', 'spirit', 'be', 'humble', '\n', 'my', 'heart', 'amend', 'and', 'that', 'I', 'can', 'practise', 'the', 'civility', '\n', 'the', 'less', 'duty', 'of', 'life', 'with', 'gentleness', 'and', 'forbearance', '\n', 'as', 'for', 'Willoughbyto', 'say', 'that', 'I', 'shall', 'soon', 'or', 'that', 'I', 'shall', '\n', 'ever', 'forget', 'he', 'would', 'be', 'idle', ' ', 'his', 'remembrance', 'can', 'be', 'overcome', '\n', 'by', 'no', 'change', 'of', 'circumstance', 'or', 'opinion', ' ', 'but', 'it', 'shall', '\n', 'be', 'regulate', 'it', 'shall', 'be', 'check', 'by', 'religion', 'by', 'reason', '\n', 'by', 'constant', 'employment', '\n\n', 'she', 'pausedand', 'add', 'in', 'a', 'low', 'voice', 'if', 'I', 'could', '\n', 'but', 'know', 'his', 'heart', 'everything', 'would', 'become', 'easy', '\n\n', 'Elinor', 'who', 'have', 'now', 'be', 'for', 'some', 'time', 'reflect', '\n', 'on', 'the', 'propriety', 'or', 'impropriety', 'of', 'speedily', 'hazard', '\n', 'her', 'narration', 'without', 'feel', 'at', 'all', 'near', 'decision', 'than', '\n', 'at', 'first', 'hear', 'this', 'and', 'perceive', 'that', 'as', 'reflection', '\n', 'do', 'nothing', 'resolution', 'must', 'do', 'all', 'soon', 'find', 'herself', '\n', 'lead', 'to', 'the', 'fact', '\n\n', 'she', 'manage', 'the', 'recital', 'as', 'she', 'hope', 'with', 'address', '\n', 'prepare', 'her', 'anxious', 'listener', 'with', 'caution', 'relate', 'simply', '\n', 'and', 'honestly', 'the', 'chief', 'point', 'on', 'which', 'Willoughby', '\n', 'ground', 'his', 'apology', 'do', 'justice', 'to', 'his', 'repentance', '\n', 'and', 'soften', 'only', 'his', 'protestation', 'of', 'present', 'regard', '\n', 'Marianne', 'say', 'not', 'a', 'wordshe', 'tremble', 'her', 'eye', '\n', 'be', 'fix', 'on', 'the', 'ground', 'and', 'her', 'lip', 'become', 'white', '\n', 'than', 'even', 'sickness', 'have', 'leave', 'they', ' ', 'a', 'thousand', 'inquiry', '\n', 'spring', 'up', 'from', 'her', 'heart', 'but', 'she', 'dare', 'not', 'urge', 'one', '\n', 'she', 'catch', 'every', 'syllable', 'with', 'pant', 'eagerness', 'her', 'hand', '\n', 'unknowingly', 'to', 'herself', 'closely', 'press', 'her', 'sister', 'and', '\n', 'tear', 'cover', 'her', 'cheek', '\n\n', 'Elinor', 'dread', 'she', 'be', 'tired', 'lead', 'she', 'towards', 'home', '\n', 'and', 'till', 'they', 'reach', 'the', 'door', 'of', 'the', 'cottage', '\n', 'easily', 'conjecture', 'what', 'her', 'curiosity', 'must', 'be', '\n', 'though', 'no', 'question', 'be', 'suffer', 'to', 'speak', 'it', 'talk', 'of', '\n', 'nothing', 'but', 'Willoughby', 'and', 'their', 'conversation', 'together', '\n', 'and', 'be', 'carefully', 'minute', 'in', 'every', 'particular', 'of', 'speech', '\n', 'and', 'look', 'where', 'minuteness', 'could', 'be', 'safely', 'indulge', '\n', 'as', 'soon', 'as', 'they', 'enter', 'the', 'house', 'Marianne', 'with', 'a', 'kiss', '\n', 'of', 'gratitude', 'and', 'these', 'two', 'word', 'just', 'articulate', 'through', '\n', 'her', 'tear', 'Tell', 'mama', 'withdraw', 'from', 'her', 'sister', 'and', '\n', 'walk', 'slowly', 'up', 'stair', ' ', 'Elinor', 'would', 'not', 'attempt', '\n', 'to', 'disturb', 'a', 'solitude', 'so', 'reasonable', 'as', 'what', 'she', 'now', 'seek', '\n', 'and', 'with', 'a', 'mind', 'anxiously', 'prearrange', 'its', 'result', '\n', 'and', 'a', 'resolution', 'of', 'revive', 'the', 'subject', 'again', '\n', 'should', 'Marianne', 'fail', 'to', 'do', 'it', 'she', 'turn', 'into', 'the', 'parlour', '\n', 'to', 'fulfill', 'her', 'parting', 'injunction', '\n\n\n\n', 'chapter', '47', '\n\n\n', 'Mrs', 'Dashwood', 'do', 'not', 'hear', 'unmove', 'the', 'vindication', '\n', 'of', 'her', 'former', 'favourite', ' ', 'she', 'rejoice', 'in', 'his', 'be', '\n', 'clear', 'from', 'some', 'part', 'of', 'his', 'imputed', 'guiltshe', 'be', '\n', 'sorry', 'for', 'himshe', 'wish', 'he', 'happy', ' ', 'but', 'the', 'feeling', '\n', 'of', 'the', 'past', 'could', 'not', 'be', 'recallednothe', 'could', 'restore', '\n', 'he', 'with', 'a', 'faith', 'unbrokena', 'character', 'unblemishe', '\n', 'to', 'Marianne', ' ', 'nothing', 'could', 'do', 'away', 'the', 'knowledge', '\n', 'of', 'what', 'the', 'latter', 'have', 'suffer', 'through', 'his', 'mean', '\n', 'nor', 'remove', 'the', 'guilt', 'of', 'his', 'conduct', 'towards', 'Eliza', '\n', 'nothing', 'could', 'replace', 'he', 'therefore', 'in', 'her', 'former', 'esteem', '\n', 'nor', 'injure', 'the', 'interest', 'of', 'Colonel', 'Brandon', '\n\n', 'have', 'Mrs', 'Dashwood', 'like', 'her', 'daughter', 'hear', 'Willoughbys', '\n', 'story', 'from', 'himselfhad', 'she', 'witness', 'his', 'distress', '\n', 'and', 'be', 'under', 'the', 'influence', 'of', 'his', 'countenance', 'and', 'his', '\n', 'manner', 'it', 'be', 'probable', 'that', 'her', 'compassion', 'would', 'have', '\n', 'be', 'great', ' ', 'but', 'it', 'be', 'neither', 'in', 'Elinors', 'power', '\n', 'nor', 'in', 'her', 'wish', 'to', 'rouse', 'such', 'feeling', 'in', 'another', 'by', 'her', '\n', 'retailed', 'explanation', 'as', 'have', 'at', 'first', 'be', 'call', 'forth', '\n', 'in', 'herself', ' ', 'Reflection', 'have', 'give', 'calmness', 'to', 'her', 'judgment', '\n', 'and', 'sober', 'her', 'own', 'opinion', 'of', 'Willoughbys', 'desert', '\n', 'she', 'wish', 'therefore', 'to', 'declare', 'only', 'the', 'simple', 'truth', '\n', 'and', 'lie', 'open', 'such', 'fact', 'as', 'be', 'really', 'due', 'to', 'his', 'character', '\n', 'without', 'any', 'embellishment', 'of', 'tenderness', 'to', 'lead', 'the', '\n', 'fancy', 'astray', '\n\n', 'in', 'the', 'evening', 'when', 'they', 'be', 'all', 'three', 'together', '\n', 'Marianne', 'begin', 'voluntarily', 'to', 'speak', 'of', 'he', 'again', '\n', 'but', 'that', 'it', 'be', 'not', 'without', 'an', 'effort', 'the', 'restless', '\n', 'unquiet', 'thoughtfulness', 'in', 'which', 'she', 'have', 'be', 'for', 'some', 'time', '\n', 'previously', 'sittingher', 'rise', 'colour', 'as', 'she', 'speak', '\n', 'and', 'her', 'unsteady', 'voice', 'plainly', 'shew', '\n\n', 'I', 'wish', 'to', 'assure', 'you', 'both', 'say', 'she', 'that', 'I', 'see', '\n', 'every', 'thingas', 'you', 'can', 'desire', 'I', 'to', 'do', '\n\n', 'Mrs', 'Dashwood', 'would', 'have', 'interrupt', 'she', 'instantly', '\n', 'with', 'soothe', 'tenderness', 'have', 'not', 'Elinor', 'who', 'really', 'wish', '\n', 'to', 'hear', 'her', 'sister', 'unbiased', 'opinion', 'by', 'an', 'eager', 'sign', '\n', 'engage', 'her', 'silence', ' ', 'Marianne', 'slowly', 'continue', '\n\n', 'it', 'be', 'a', 'great', 'relief', 'to', 'mewhat', 'Elinor', 'tell', '\n', 'I', 'this', 'morningI', 'have', 'now', 'hear', 'exactly', 'what', 'I', '\n', 'wish', 'to', 'hearfor', 'some', 'moment', 'her', 'voice', 'be', 'lose', '\n', 'but', 'recover', 'herself', 'she', 'add', 'and', 'with', 'great', '\n', 'calmness', 'than', 'beforeI', 'be', 'now', 'perfectly', 'satisfied', '\n', 'I', 'wish', 'for', 'no', 'change', ' ', 'I', 'never', 'could', 'have', 'be', 'happy', '\n', 'with', 'he', 'after', 'know', 'as', 'soon', 'or', 'later', 'I', 'must', '\n', 'have', 'know', 'all', 'thisI', 'should', 'have', 'have', 'no', 'confidence', '\n', 'no', 'esteem', ' ', 'nothing', 'could', 'have', 'do', 'it', 'away', 'to', 'my', 'feeling', '\n\n', 'I', 'know', 'iti', 'know', 'it', 'cry', 'her', 'mother', '\n', 'Happy', 'with', 'a', 'man', 'of', 'libertine', 'practicesWith', 'one', '\n', 'who', 'so', 'injure', 'the', 'peace', 'of', 'the', 'dear', 'of', 'our', 'friend', '\n', 'and', 'the', 'good', 'of', 'mennomy', 'Marianne', 'have', 'not', 'a', 'heart', '\n', 'to', 'be', 'make', 'happy', 'with', 'such', 'a', 'manher', 'conscience', 'her', '\n', 'sensitive', 'conscience', 'would', 'have', 'feel', 'all', 'that', 'the', '\n', 'conscience', 'of', 'her', 'husband', 'ought', 'to', 'have', 'feel', '\n\n', 'Marianne', 'sigh', 'and', 'repeat', 'I', 'wish', 'for', 'no', 'change', '\n\n', 'you', 'consider', 'the', 'matter', 'say', 'Elinor', 'exactly', 'as', '\n', 'a', 'good', 'mind', 'and', 'a', 'sound', 'understanding', 'must', 'consider', 'it', '\n', 'and', 'I', 'dare', 'say', 'you', 'perceive', 'as', 'well', 'as', 'myself', 'not', 'only', '\n', 'in', 'this', 'but', 'in', 'many', 'other', 'circumstance', 'reason', 'enough', '\n', 'to', 'be', 'convince', 'that', 'your', 'marriage', 'must', 'have', 'involve', 'you', '\n', 'in', 'many', 'certain', 'trouble', 'and', 'disappointment', 'in', 'which', '\n', 'you', 'would', 'have', 'be', 'poorly', 'support', 'by', 'an', 'affection', '\n', 'on', 'his', 'side', 'much', 'less', 'certain', ' ', 'have', 'you', 'marry', '\n', 'you', 'must', 'have', 'be', 'always', 'poor', ' ', 'his', 'expensiveness', 'be', '\n', 'acknowledge', 'even', 'by', 'himself', 'and', 'his', 'whole', 'conduct', 'declare', '\n', 'that', 'selfdenial', 'be', 'a', 'word', 'hardly', 'understand', 'by', 'he', '\n', 'his', 'demand', 'and', 'your', 'inexperience', 'together', 'on', 'a', 'small', '\n', 'very', 'small', 'income', 'must', 'have', 'bring', 'on', 'distress', 'which', '\n', 'would', 'not', 'be', 'the', 'less', 'grievous', 'to', 'you', 'from', 'having', 'be', '\n', 'entirely', 'unknown', 'and', 'unthought', 'of', 'before', ' ', 'your', 'sense', '\n', 'of', 'honour', 'and', 'honesty', 'would', 'have', 'lead', 'you', 'I', 'know', '\n', 'when', 'aware', 'of', 'your', 'situation', 'to', 'attempt', 'all', 'the', 'economy', '\n', 'that', 'would', 'appear', 'to', 'you', 'possible', 'and', 'perhaps', 'as', 'long', '\n', 'as', 'your', 'frugality', 'retrench', 'only', 'on', 'your', 'own', 'comfort', '\n', 'you', 'might', 'have', 'be', 'suffer', 'to', 'practice', 'it', 'but', 'beyond', 'that', '\n', 'and', 'how', 'little', 'could', 'the', 'utmost', 'of', 'your', 'single', 'management', '\n', 'do', 'to', 'stop', 'the', 'ruin', 'which', 'have', 'begin', 'before', 'your', 'marriage', '\n', 'beyond', 'that', 'have', 'you', 'endeavour', 'however', 'reasonably', '\n', 'to', 'abridge', 'his', 'enjoyment', 'be', 'it', 'not', 'to', 'be', 'fear', 'that', 'instead', '\n', 'of', 'prevail', 'on', 'feeling', 'so', 'selfish', 'to', 'consent', 'to', 'it', '\n', 'you', 'would', 'have', 'lessen', 'your', 'own', 'influence', 'on', 'his', 'heart', '\n', 'and', 'make', 'he', 'regret', 'the', 'connection', 'which', 'have', 'involve', 'he', '\n', 'in', 'such', 'difficulty', '\n\n', 'Mariannes', 'lip', 'quiver', 'and', 'she', 'repeat', 'the', 'word', '\n', 'selfish', 'in', 'a', 'tone', 'that', 'implieddo', 'you', 'really', 'think', '\n', 'he', 'selfish', '\n\n', 'the', 'whole', 'of', 'his', 'behaviour', 'reply', 'Elinor', '\n', 'from', 'the', 'beginning', 'to', 'the', 'end', 'of', 'the', 'affair', 'have', 'be', '\n', 'ground', 'on', 'selfishness', ' ', 'it', 'be', 'selfishness', 'which', 'first', '\n', 'make', 'he', 'sport', 'with', 'your', 'affection', 'which', 'afterwards', '\n', 'when', 'his', 'own', 'be', 'engage', 'make', 'he', 'delay', 'the', 'confession', '\n', 'of', 'it', 'and', 'which', 'finally', 'carry', 'he', 'from', 'Barton', '\n', 'his', 'own', 'enjoyment', 'or', 'his', 'own', 'ease', 'be', 'in', 'every', 'particular', '\n', 'his', 'rule', 'principle', '\n\n', 'it', 'be', 'very', 'true', ' ', 'MY', 'happiness', 'never', 'be', 'his', 'object', '\n\n', 'at', 'present', 'continue', 'Elinor', 'he', 'regret', 'what', 'he', '\n', 'have', 'do', ' ', 'and', 'why', 'do', 'he', 'regret', 'itBecause', 'he', 'find', '\n', 'it', 'have', 'not', 'answer', 'towards', 'himself', ' ', 'it', 'have', 'not', 'make', '\n', 'he', 'happy', ' ', 'his', 'circumstance', 'be', 'now', 'unembarrassedhe', '\n', 'suffer', 'from', 'no', 'evil', 'of', 'that', 'kind', 'and', 'he', 'think', 'only', '\n', 'that', 'he', 'have', 'marry', 'a', 'woman', 'of', 'a', 'less', 'amiable', 'temper', '\n', 'than', 'yourself', ' ', 'but', 'do', 'it', 'follow', 'that', 'have', 'he', 'marry', 'you', '\n', 'he', 'would', 'have', 'be', 'happythe', 'inconvenience', 'would', 'have', '\n', 'be', 'different', ' ', 'he', 'would', 'then', 'have', 'suffer', 'under', 'the', '\n', 'pecuniary', 'distress', 'which', 'because', 'they', 'be', 'remove', '\n', 'he', 'now', 'reckon', 'as', 'nothing', ' ', 'he', 'would', 'have', 'have', 'a', 'wife', '\n', 'of', 'whose', 'temper', 'he', 'could', 'make', 'no', 'complaint', 'but', 'he', 'would', '\n', 'have', 'be', 'always', 'necessitousalway', 'poor', 'and', 'probably', '\n', 'would', 'soon', 'have', 'learn', 'to', 'rank', 'the', 'innumerable', 'comfort', '\n', 'of', 'a', 'clear', 'estate', 'and', 'good', 'income', 'as', 'of', 'far', 'more', 'importance', '\n', 'even', 'to', 'domestic', 'happiness', 'than', 'the', 'mere', 'temper', 'of', 'a', 'wife', '\n\n', 'I', 'have', 'not', 'a', 'doubt', 'of', 'it', 'say', 'Marianne', 'and', 'I', '\n', 'have', 'nothing', 'to', 'regretnothing', 'but', 'my', 'own', 'folly', '\n\n', 'rather', 'say', 'your', 'mother', 'imprudence', 'my', 'child', '\n', 'say', 'Mrs', 'Dashwood', 'she', 'must', 'be', 'answerable', '\n\n', 'Marianne', 'would', 'not', 'let', 'her', 'proceedand', 'Elinor', '\n', 'satisfy', 'that', 'each', 'feel', 'their', 'own', 'error', 'wish', 'to', 'avoid', '\n', 'any', 'survey', 'of', 'the', 'past', 'that', 'might', 'weaken', 'her', 'sister', '\n', 'spirit', 'she', 'therefore', 'pursue', 'the', 'first', 'subject', '\n', 'immediately', 'continue', '\n\n', 'one', 'observation', 'may', 'I', 'think', 'be', 'fairly', 'draw', 'from', '\n', 'the', 'whole', 'of', 'the', 'storythat', 'all', 'Willoughbys', 'difficulty', '\n', 'have', 'arise', 'from', 'the', 'first', 'offence', 'against', 'virtue', 'in', 'his', '\n', 'behaviour', 'to', 'Eliza', 'Williams', ' ', 'that', 'crime', 'have', 'be', 'the', 'origin', '\n', 'of', 'every', 'less', 'one', 'and', 'of', 'all', 'his', 'present', 'discontent', '\n\n', 'Marianne', 'assent', 'most', 'feelingly', 'to', 'the', 'remark', '\n', 'and', 'her', 'mother', 'be', 'lead', 'by', 'it', 'to', 'an', 'enumeration', 'of', 'Colonel', '\n', 'Brandons', 'injury', 'and', 'merit', 'warm', 'as', 'friendship', '\n', 'and', 'design', 'could', 'unitedly', 'dictate', ' ', 'her', 'daughter', 'do', '\n', 'not', 'look', 'however', 'as', 'if', 'much', 'of', 'it', 'be', 'hear', 'by', 'her', '\n\n', 'Elinor', 'accord', 'to', 'her', 'expectation', 'see', 'on', 'the', 'two', '\n', 'or', 'three', 'follow', 'day', 'that', 'Marianne', 'do', 'not', 'continue', '\n', 'to', 'gain', 'strength', 'as', 'she', 'have', 'do', 'but', 'while', 'her', 'resolution', '\n', 'be', 'unsubdue', 'and', 'she', 'still', 'try', 'to', 'appear', 'cheerful', '\n', 'and', 'easy', 'her', 'sister', 'could', 'safely', 'trust', 'to', 'the', 'effect', '\n', 'of', 'time', 'upon', 'her', 'health', '\n\n', 'Margaret', 'return', 'and', 'the', 'family', 'be', 'again', 'all', '\n', 'restore', 'to', 'each', 'other', 'again', 'quietly', 'settle', 'at', 'the', 'cottage', '\n', 'and', 'if', 'not', 'pursue', 'their', 'usual', 'study', 'with', 'quite', '\n', 'so', 'much', 'vigour', 'as', 'when', 'they', 'first', 'come', 'to', 'Barton', '\n', 'at', 'least', 'plan', 'a', 'vigorous', 'prosecution', 'of', 'they', 'in', 'future', '\n\n', 'Elinor', 'grow', 'impatient', 'for', 'some', 'tiding', 'of', 'Edward', '\n', 'she', 'have', 'hear', 'nothing', 'of', 'he', 'since', 'she', 'leave', 'London', '\n', 'nothing', 'new', 'of', 'his', 'plan', 'nothing', 'certain', 'even', 'of', 'his', '\n', 'present', 'abode', ' ', 'some', 'letter', 'have', 'pass', 'between', 'she', '\n', 'and', 'her', 'brother', 'in', 'consequence', 'of', 'Mariannes', 'illness', '\n', 'and', 'in', 'the', 'first', 'of', 'Johns', 'there', 'have', 'be', 'this', 'sentence', '\n', 'we', 'know', 'nothing', 'of', 'our', 'unfortunate', 'Edward', 'and', 'can', 'make', 'no', '\n', 'enquiry', 'on', 'so', 'prohibit', 'a', 'subject', 'but', 'conclude', 'he', '\n', 'to', 'be', 'still', 'at', 'Oxford', 'which', 'be', 'all', 'the', 'intelligence', '\n', 'of', 'Edward', 'afford', 'she', 'by', 'the', 'correspondence', 'for', 'his', 'name', '\n', 'be', 'not', 'even', 'mention', 'in', 'any', 'of', 'the', 'succeed', 'letter', '\n', 'she', 'be', 'not', 'doom', 'however', 'to', 'be', 'long', 'in', 'ignorance', 'of', '\n', 'his', 'measure', '\n\n', 'their', 'manservant', 'have', 'be', 'send', 'one', 'morning', 'to', 'Exeter', '\n', 'on', 'business', 'and', 'when', 'as', 'he', 'wait', 'at', 'table', 'he', 'have', '\n', 'satisfy', 'the', 'inquiry', 'of', 'his', 'mistress', 'as', 'to', 'the', 'event', '\n', 'of', 'his', 'errand', 'this', 'be', 'his', 'voluntary', 'communication', '\n\n', 'I', 'suppose', 'you', 'know', 'maam', 'that', 'Mr', 'Ferrars', 'be', 'marry', '\n\n', 'Marianne', 'give', 'a', 'violent', 'start', 'fix', 'her', 'eye', '\n', 'upon', 'Elinor', 'see', 'she', 'turning', 'pale', 'and', 'fall', 'back', 'in', 'her', '\n', 'chair', 'in', 'hysteric', ' ', 'Mrs', 'Dashwood', 'whose', 'eye', 'as', 'she', '\n', 'answer', 'the', 'servant', 'inquiry', 'have', 'intuitively', 'take', '\n', 'the', 'same', 'direction', 'be', 'shock', 'to', 'perceive', 'by', 'Elinors', '\n', 'countenance', 'how', 'much', 'she', 'really', 'suffer', 'and', 'a', 'moment', '\n', 'afterwards', 'alike', 'distress', 'by', 'Mariannes', 'situation', '\n', 'know', 'not', 'on', 'which', 'child', 'to', 'bestow', 'her', 'principal', 'attention', '\n\n', 'the', 'servant', 'who', 'see', 'only', 'that', 'Miss', 'Marianne', 'be', '\n', 'take', 'ill', 'have', 'sense', 'enough', 'to', 'call', 'one', 'of', 'the', 'maid', '\n', 'who', 'with', 'Mrs', 'Dashwoods', 'assistance', 'support', 'she', 'into', '\n', 'the', 'other', 'room', ' ', 'by', 'that', 'time', 'Marianne', 'be', 'rather', 'well', '\n', 'and', 'her', 'mother', 'leave', 'she', 'to', 'the', 'care', 'of', 'Margaret', '\n', 'and', 'the', 'maid', 'return', 'to', 'Elinor', 'who', 'though', 'still', '\n', 'much', 'disorder', 'have', 'so', 'far', 'recover', 'the', 'use', 'of', 'her', 'reason', '\n', 'and', 'voice', 'as', 'to', 'be', 'just', 'begin', 'an', 'inquiry', 'of', 'Thomas', '\n', 'as', 'to', 'the', 'source', 'of', 'his', 'intelligence', ' ', 'Mrs', 'Dashwood', '\n', 'immediately', 'take', 'all', 'that', 'trouble', 'on', 'herself', 'and', 'Elinor', '\n', 'have', 'the', 'benefit', 'of', 'the', 'information', 'without', 'the', 'exertion', '\n', 'of', 'seek', 'it', '\n\n', 'who', 'tell', 'you', 'that', 'Mr', 'Ferrars', 'be', 'marry', 'Thomas', '\n\n', 'I', 'see', 'Mr', 'Ferrars', 'myself', 'maam', 'this', 'morning', '\n', 'in', 'Exeter', 'and', 'his', 'lady', 'too', 'Miss', 'Steele', 'as', 'be', ' ', 'they', 'be', '\n', 'stop', 'in', 'a', 'chaise', 'at', 'the', 'door', 'of', 'the', 'New', 'London', 'Inn', '\n', 'as', 'I', 'go', 'there', 'with', 'a', 'message', 'from', 'Sally', 'at', 'the', 'Park', '\n', 'to', 'her', 'brother', 'who', 'be', 'one', 'of', 'the', 'postboy', 'I', 'happen', '\n', 'to', 'look', 'up', 'as', 'I', 'go', 'by', 'the', 'chaise', 'and', 'so', 'I', 'see', 'directly', '\n', 'it', 'be', 'the', 'young', 'Miss', 'Steele', 'so', 'I', 'take', 'off', 'my', 'hat', '\n', 'and', 'she', 'know', 'I', 'and', 'call', 'to', 'I', 'and', 'inquire', 'after', 'you', '\n', 'maam', 'and', 'the', 'young', 'lady', 'especially', 'Miss', 'Marianne', '\n', 'and', 'bid', 'I', 'I', 'should', 'give', 'her', 'compliment', 'and', 'Mr', 'Ferrarss', '\n', 'their', 'good', 'compliment', 'and', 'service', 'and', 'how', 'sorry', 'they', '\n', 'be', 'they', 'have', 'not', 'time', 'to', 'come', 'on', 'and', 'see', 'you', 'but', 'they', 'be', '\n', 'in', 'a', 'great', 'hurry', 'to', 'go', 'forwards', 'for', 'they', 'be', 'go', 'far', '\n', 'down', 'for', 'a', 'little', 'while', 'but', 'howsever', 'when', 'they', 'come', 'back', '\n', 'they', 'd', 'make', 'sure', 'to', 'come', 'and', 'see', 'you', '\n\n', 'but', 'do', 'she', 'tell', 'you', 'she', 'be', 'marry', 'Thomas', '\n\n', 'yes', 'maam', 'she', 'smile', 'and', 'say', 'how', 'she', '\n', 'have', 'change', 'her', 'name', 'since', 'she', 'be', 'in', 'these', 'part', '\n', 'she', 'be', 'always', 'a', 'very', 'affable', 'and', 'freespoken', 'young', 'lady', '\n', 'and', 'very', 'civil', 'behave', ' ', 'so', 'I', 'make', 'free', 'to', 'wish', 'her', 'joy', '\n\n', 'be', 'Mr', 'Ferrars', 'in', 'the', 'carriage', 'with', 'her', '\n\n', 'yes', 'maam', 'I', 'just', 'see', 'he', 'lean', 'back', 'in', 'it', '\n', 'but', 'he', 'do', 'not', 'look', 'uphe', 'never', 'be', 'a', 'gentleman', 'much', '\n', 'for', 'talk', '\n\n', 'Elinors', 'heart', 'could', 'easily', 'account', 'for', 'his', 'not', '\n', 'put', 'himself', 'forward', 'and', 'Mrs', 'Dashwood', 'probably', '\n', 'find', 'the', 'same', 'explanation', '\n\n', 'be', 'there', 'no', 'one', 'else', 'in', 'the', 'carriage', '\n\n', 'no', 'maam', 'only', 'they', 'two', '\n\n', 'do', 'you', 'know', 'where', 'they', 'come', 'from', '\n\n', 'they', 'come', 'straight', 'from', 'town', 'as', 'Miss', 'Lucy', '\n', 'Mrs', 'Ferrars', 'tell', 'I', '\n\n', 'and', 'be', 'they', 'go', 'far', 'westward', '\n\n', 'yes', 'maambut', 'not', 'to', 'bide', 'long', ' ', 'they', 'will', 'soon', '\n', 'be', 'back', 'again', 'and', 'then', 'they', 'd', 'be', 'sure', 'and', 'call', 'here', '\n\n', 'Mrs', 'Dashwood', 'now', 'look', 'at', 'her', 'daughter', '\n', 'but', 'Elinor', 'know', 'well', 'than', 'to', 'expect', 'they', '\n', 'she', 'recognise', 'the', 'whole', 'of', 'Lucy', 'in', 'the', 'message', 'and', 'be', '\n', 'very', 'confident', 'that', 'Edward', 'would', 'never', 'come', 'near', 'they', '\n', 'she', 'observe', 'in', 'a', 'low', 'voice', 'to', 'her', 'mother', 'that', 'they', '\n', 'be', 'probably', 'go', 'down', 'to', 'Mr', 'Pratts', 'near', 'Plymouth', '\n\n', 'Thomass', 'intelligence', 'seem', 'over', ' ', 'Elinor', 'look', '\n', 'as', 'if', 'she', 'wish', 'to', 'hear', 'more', '\n\n', 'do', 'you', 'see', 'they', 'off', 'before', 'you', 'come', 'away', '\n\n', 'no', 'maamthe', 'horse', 'be', 'just', 'come', 'out', 'but', 'I', '\n', 'could', 'not', 'bide', 'any', 'long', 'I', 'be', 'afraid', 'of', 'be', 'late', '\n\n', 'do', 'Mrs', 'Ferrars', 'look', 'well', '\n\n', 'yes', 'maam', 'she', 'say', 'how', 'she', 'be', 'very', 'well', '\n', 'and', 'to', 'my', 'mind', 'she', 'be', 'always', 'a', 'very', 'handsome', 'young', '\n', 'ladyand', 'she', 'seem', 'vastly', 'content', '\n\n', 'Mrs', 'Dashwood', 'could', 'think', 'of', 'no', 'other', 'question', '\n', 'and', 'Thomas', 'and', 'the', 'tablecloth', 'now', 'alike', 'needless', '\n', 'be', 'soon', 'afterwards', 'dismiss', ' ', 'Marianne', 'have', 'already', 'send', '\n', 'to', 'say', 'that', 'she', 'should', 'eat', 'nothing', 'more', ' ', 'Mrs', 'Dashwoods', '\n', 'and', 'Elinors', 'appetite', 'be', 'equally', 'lose', 'and', 'Margaret', '\n', 'might', 'think', 'herself', 'very', 'well', 'off', 'that', 'with', 'so', 'much', '\n', 'uneasiness', 'as', 'both', 'her', 'sister', 'have', 'lately', 'experience', '\n', 'so', 'much', 'reason', 'as', 'they', 'have', 'often', 'have', 'to', 'be', 'careless', '\n', 'of', 'their', 'meal', 'she', 'have', 'never', 'be', 'oblige', 'to', 'go', 'without', '\n', 'her', 'dinner', 'before', '\n\n', 'when', 'the', 'dessert', 'and', 'the', 'wine', 'be', 'arrange', '\n', 'and', 'Mrs', 'Dashwood', 'and', 'Elinor', 'be', 'leave', 'by', 'themselves', '\n', 'they', 'remain', 'long', 'together', 'in', 'a', 'similarity', 'of', 'thoughtfulness', '\n', 'and', 'silence', ' ', 'Mrs', 'Dashwood', 'fear', 'to', 'hazard', 'any', 'remark', '\n', 'and', 'venture', 'not', 'to', 'offer', 'consolation', ' ', 'she', 'now', 'find', '\n', 'that', 'she', 'have', 'err', 'in', 'rely', 'on', 'Elinors', 'representation', '\n', 'of', 'herself', 'and', 'justly', 'conclude', 'that', 'every', 'thing', '\n', 'have', 'be', 'expressly', 'soften', 'at', 'the', 'time', 'to', 'spare', 'she', '\n', 'from', 'an', 'increase', 'of', 'unhappiness', 'suffer', 'as', 'she', 'then', '\n', 'have', 'suffer', 'for', 'Marianne', ' ', 'she', 'find', 'that', 'she', 'have', 'be', '\n', 'mislead', 'by', 'the', 'careful', 'the', 'considerate', 'attention', 'of', '\n', 'her', 'daughter', 'to', 'think', 'the', 'attachment', 'which', 'once', 'she', '\n', 'have', 'so', 'well', 'understand', 'much', 'slighter', 'in', 'reality', 'than', '\n', 'she', 'have', 'be', 'will', 'not', 'to', 'believe', 'or', 'than', 'it', 'be', 'now', 'prove', '\n', 'to', 'be', ' ', 'she', 'fear', 'that', 'under', 'this', 'persuasion', 'she', 'have', '\n', 'be', 'unjust', 'inattentive', 'nay', 'almost', 'unkind', 'to', 'her', 'Elinor', '\n', 'that', 'Mariannes', 'affliction', 'because', 'more', 'acknowledge', '\n', 'more', 'immediately', 'before', 'she', 'have', 'too', 'much', 'engross', '\n', 'her', 'tenderness', 'and', 'lead', 'she', 'away', 'to', 'forget', 'that', 'in', 'Elinor', '\n', 'she', 'might', 'have', 'a', 'daughter', 'suffer', 'almost', 'as', 'much', '\n', 'certainly', 'with', 'less', 'selfprovocation', 'and', 'great', 'fortitude', '\n\n\n\n', 'chapter', '48', '\n\n\n', 'Elinor', 'now', 'find', 'the', 'difference', 'between', 'the', 'expectation', '\n', 'of', 'an', 'unpleasant', 'event', 'however', 'certain', 'the', 'mind', 'may', 'be', 'tell', '\n', 'to', 'consider', 'it', 'and', 'certainty', 'itself', ' ', 'she', 'now', 'find', 'that', '\n', 'in', 'spite', 'of', 'herself', 'she', 'have', 'always', 'admit', 'a', 'hope', '\n', 'while', 'Edward', 'remain', 'single', 'that', 'something', 'would', 'occur', '\n', 'to', 'prevent', 'his', 'marry', 'Lucy', 'that', 'some', 'resolution', 'of', '\n', 'his', 'own', 'some', 'mediation', 'of', 'friend', 'or', 'some', 'more', 'eligible', '\n', 'opportunity', 'of', 'establishment', 'for', 'the', 'lady', 'would', 'arise', '\n', 'to', 'assist', 'the', 'happiness', 'of', 'all', ' ', 'but', 'he', 'be', 'now', 'marry', '\n', 'and', 'she', 'condemn', 'her', 'heart', 'for', 'the', 'lurk', 'flattery', '\n', 'which', 'so', 'much', 'heighten', 'the', 'pain', 'of', 'the', 'intelligence', '\n\n', 'that', 'he', 'should', 'be', 'marry', 'soon', 'before', 'as', 'she', 'imagine', '\n', 'he', 'could', 'be', 'in', 'order', 'and', 'consequently', 'before', 'he', 'could', '\n', 'be', 'in', 'possession', 'of', 'the', 'living', 'surprise', 'she', 'a', 'little', '\n', 'at', 'first', ' ', 'but', 'she', 'soon', 'see', 'how', 'likely', 'it', 'be', 'that', 'Lucy', '\n', 'in', 'her', 'selfprovident', 'care', 'in', 'her', 'haste', 'to', 'secure', 'he', '\n', 'should', 'overlook', 'every', 'thing', 'but', 'the', 'risk', 'of', 'delay', '\n', 'they', 'be', 'marry', 'married', 'in', 'town', 'and', 'now', 'hasten', '\n', 'down', 'to', 'her', 'uncle', ' ', 'what', 'have', 'Edward', 'feel', 'on', 'be', 'within', '\n', 'four', 'mile', 'from', 'Barton', 'on', 'see', 'her', 'mother', 'servant', '\n', 'on', 'hear', 'Lucys', 'message', '\n\n', 'they', 'would', 'soon', 'she', 'supposed', 'be', 'settle', 'at', '\n', 'DelafordDelafordthat', 'place', 'in', 'which', 'so', 'much', '\n', 'conspire', 'to', 'give', 'she', 'an', 'interest', 'which', 'she', 'wish', '\n', 'to', 'be', 'acquaint', 'with', 'and', 'yet', 'desire', 'to', 'avoid', '\n', 'she', 'see', 'they', 'in', 'an', 'instant', 'in', 'their', 'parsonagehouse', 'see', '\n', 'in', 'Lucy', 'the', 'active', 'contrive', 'manager', 'unite', 'at', 'once', '\n', 'a', 'desire', 'of', 'smart', 'appearance', 'with', 'the', 'utmost', 'frugality', '\n', 'and', 'ashamed', 'to', 'be', 'suspect', 'of', 'half', 'her', 'economical', 'practice', '\n', 'pursue', 'her', 'own', 'interest', 'in', 'every', 'thought', 'court', 'the', '\n', 'favour', 'of', 'Colonel', 'Brandon', 'of', 'Mrs', 'Jennings', 'and', 'of', 'every', '\n', 'wealthy', 'friend', ' ', 'in', 'Edwardshe', 'know', 'not', 'what', 'she', 'see', '\n', 'nor', 'what', 'she', 'wish', 'to', 'seehappy', 'or', 'unhappynothing', '\n', 'please', 'she', 'she', 'turn', 'away', 'her', 'head', 'from', 'every', 'sketch', 'of', 'he', '\n\n', 'Elinor', 'flatter', 'herself', 'that', 'some', 'one', 'of', 'their', '\n', 'connection', 'in', 'London', 'would', 'write', 'to', 'they', 'to', 'announce', '\n', 'the', 'event', 'and', 'give', 'far', 'particularsbut', 'day', 'after', '\n', 'day', 'pass', 'off', 'and', 'bring', 'no', 'letter', 'no', 'tiding', '\n', 'though', 'uncertain', 'that', 'any', 'one', 'be', 'to', 'blame', 'she', 'find', '\n', 'fault', 'with', 'every', 'absent', 'friend', ' ', 'they', 'be', 'all', 'thoughtless', '\n', 'or', 'indolent', '\n\n', 'when', 'do', 'you', 'write', 'to', 'Colonel', 'Brandon', 'maam', '\n', 'be', 'an', 'inquiry', 'which', 'spring', 'from', 'the', 'impatience', '\n', 'of', 'her', 'mind', 'to', 'have', 'something', 'go', 'on', '\n\n', 'I', 'write', 'to', 'he', 'my', 'love', 'last', 'week', 'and', 'rather', '\n', 'expect', 'to', 'see', 'than', 'to', 'hear', 'from', 'he', 'again', ' ', 'I', 'earnestly', '\n', 'press', 'his', 'come', 'to', 'we', 'and', 'should', 'not', 'be', 'surprise', '\n', 'to', 'see', 'he', 'walk', 'in', 'today', 'or', 'tomorrow', 'or', 'any', 'day', '\n\n', 'this', 'be', 'gain', 'something', 'something', 'to', 'look', 'forward', 'to', '\n', 'Colonel', 'Brandon', 'must', 'have', 'some', 'information', 'to', 'give', '\n\n', 'Scarcely', 'have', 'she', 'so', 'determine', 'it', 'when', 'the', 'figure', '\n', 'of', 'a', 'man', 'on', 'horseback', 'draw', 'her', 'eye', 'to', 'the', 'window', '\n', 'he', 'stopt', 'at', 'their', 'gate', ' ', 'it', 'be', 'a', 'gentleman', 'it', '\n', 'be', 'Colonel', 'Brandon', 'himself', ' ', 'now', 'she', 'could', 'hear', 'more', '\n', 'and', 'she', 'tremble', 'in', 'expectation', 'of', 'it', ' ', 'Butit', 'be', '\n', 'not', 'Colonel', 'Brandonneither', 'his', 'airnor', 'his', 'height', '\n', 'be', 'it', 'possible', 'she', 'must', 'say', 'it', 'must', 'be', 'Edward', '\n', 'she', 'look', 'again', ' ', 'he', 'have', 'just', 'dismountedshe', 'could', 'not', 'be', '\n', 'mistakenit', 'WAS', 'Edward', ' ', 'she', 'move', 'away', 'and', 'sit', 'down', '\n', 'he', 'come', 'from', 'Mr', 'Pratts', 'purposely', 'to', 'see', 'we', ' ', 'I', 'will', 'be', '\n', 'calm', 'I', 'will', 'be', 'mistress', 'of', 'myself', '\n\n', 'in', 'a', 'moment', 'she', 'perceive', 'that', 'the', 'other', 'be', 'likewise', '\n', 'aware', 'of', 'the', 'mistake', ' ', 'she', 'see', 'her', 'mother', 'and', 'Marianne', '\n', 'change', 'colour', 'see', 'they', 'look', 'at', 'herself', 'and', 'whisper', '\n', 'a', 'few', 'sentence', 'to', 'each', 'other', ' ', 'she', 'would', 'have', 'give', '\n', 'the', 'world', 'to', 'be', 'able', 'to', 'speakand', 'to', 'make', 'they', 'understand', '\n', 'that', 'she', 'hope', 'no', 'coolness', 'no', 'slight', 'would', 'appear', '\n', 'in', 'their', 'behaviour', 'to', 'himbut', 'she', 'have', 'no', 'utterance', '\n', 'and', 'be', 'oblige', 'to', 'leave', 'all', 'to', 'their', 'own', 'discretion', '\n\n', 'not', 'a', 'syllable', 'pass', 'aloud', ' ', 'they', 'all', 'wait', '\n', 'in', 'silence', 'for', 'the', 'appearance', 'of', 'their', 'visitor', '\n', 'his', 'footstep', 'be', 'hear', 'along', 'the', 'gravel', 'path', 'in', 'a', 'moment', '\n', 'he', 'be', 'in', 'the', 'passage', 'and', 'in', 'another', 'he', 'be', 'before', 'they', '\n\n', 'his', 'countenance', 'as', 'he', 'enter', 'the', 'room', 'be', 'not', '\n', 'too', 'happy', 'even', 'for', 'Elinor', ' ', 'his', 'complexion', 'be', 'white', '\n', 'with', 'agitation', 'and', 'he', 'look', 'as', 'if', 'fearful', 'of', 'his', '\n', 'reception', 'and', 'conscious', 'that', 'he', 'merit', 'no', 'kind', 'one', '\n', 'Mrs', 'Dashwood', 'however', 'conform', 'as', 'she', 'trust', '\n', 'to', 'the', 'wish', 'of', 'that', 'daughter', 'by', 'whom', 'she', 'then', 'mean', '\n', 'in', 'the', 'warmth', 'of', 'her', 'heart', 'to', 'be', 'guide', 'in', 'every', 'thing', '\n', 'meet', 'with', 'a', 'look', 'of', 'force', 'complacency', 'give', 'he', 'her', 'hand', '\n', 'and', 'wish', 'he', 'joy', '\n\n', 'he', 'colour', 'and', 'stammer', 'out', 'an', 'unintelligible', 'reply', '\n', 'Elinors', 'lip', 'have', 'move', 'with', 'her', 'mother', 'and', 'when', 'the', '\n', 'moment', 'of', 'action', 'be', 'over', 'she', 'wish', 'that', 'she', 'have', 'shake', '\n', 'hand', 'with', 'he', 'too', ' ', 'but', 'it', 'be', 'then', 'too', 'late', 'and', 'with', 'a', '\n', 'countenance', 'meaning', 'to', 'be', 'open', 'she', 'sit', 'down', 'again', '\n', 'and', 'talk', 'of', 'the', 'weather', '\n\n', 'Marianne', 'have', 'retreat', 'as', 'much', 'as', 'possible', '\n', 'out', 'of', 'sight', 'to', 'conceal', 'her', 'distress', 'and', 'Margaret', '\n', 'understand', 'some', 'part', 'but', 'not', 'the', 'whole', 'of', 'the', 'case', '\n', 'think', 'it', 'incumbent', 'on', 'she', 'to', 'be', 'dignified', 'and', 'therefore', '\n', 'take', 'a', 'seat', 'as', 'far', 'from', 'he', 'as', 'she', 'could', 'and', 'maintain', '\n', 'a', 'strict', 'silence', '\n\n', 'when', 'Elinor', 'have', 'cease', 'to', 'rejoice', 'in', 'the', 'dryness', '\n', 'of', 'the', 'season', 'a', 'very', 'awful', 'pause', 'take', 'place', ' ', 'it', 'be', 'put', '\n', 'an', 'end', 'to', 'by', 'Mrs', 'Dashwood', 'who', 'feel', 'oblige', 'to', 'hope', 'that', 'he', '\n', 'have', 'leave', 'Mrs', 'Ferrars', 'very', 'well', ' ', 'in', 'a', 'hurried', 'manner', '\n', 'he', 'reply', 'in', 'the', 'affirmative', '\n\n', 'another', 'pause', '\n\n', 'elinor', 'resolve', 'to', 'exert', 'herself', 'though', 'fear', '\n', 'the', 'sound', 'of', 'her', 'own', 'voice', 'now', 'say', '\n\n', 'be', 'Mrs', 'Ferrars', 'at', 'Longstaple', '\n\n', 'at', 'Longstaple', 'he', 'reply', 'with', 'an', 'air', 'of', 'surprise', '\n', 'no', 'my', 'mother', 'be', 'in', 'town', '\n\n', 'I', 'mean', 'say', 'Elinor', 'take', 'up', 'some', 'work', 'from', '\n', 'the', 'table', 'to', 'inquire', 'for', 'Mrs', 'EDWARD', 'ferrar', '\n\n', 'she', 'dared', 'not', 'look', 'upbut', 'her', 'mother', 'and', 'Marianne', 'both', '\n', 'turn', 'their', 'eye', 'on', 'he', ' ', 'he', 'colour', 'seem', 'perplex', '\n', 'look', 'doubtingly', 'and', 'after', 'some', 'hesitation', 'say', '\n\n', 'perhaps', 'you', 'meanmy', 'brotheryou', 'mean', 'MrsMrs', '\n', 'ROBERT', 'Ferrars', '\n\n', 'Mrs', 'Robert', 'Ferrarswas', 'repeat', 'by', 'Marianne', 'and', 'her', '\n', 'mother', 'in', 'an', 'accent', 'of', 'the', 'utmost', 'amazementand', 'though', '\n', 'Elinor', 'could', 'not', 'speak', 'even', 'her', 'eye', 'be', 'fix', 'on', 'he', '\n', 'with', 'the', 'same', 'impatient', 'wonder', ' ', 'he', 'rise', 'from', 'his', 'seat', '\n', 'and', 'walk', 'to', 'the', 'window', 'apparently', 'from', 'not', 'know', '\n', 'what', 'to', 'do', 'take', 'up', 'a', 'pair', 'of', 'scissor', 'that', 'lie', 'there', '\n', 'and', 'while', 'spoil', 'both', 'they', 'and', 'their', 'sheath', 'by', 'cut', '\n', 'the', 'latter', 'to', 'piece', 'as', 'he', 'speak', 'say', 'in', 'a', 'hurried', 'voice', '\n\n', 'perhaps', 'you', 'do', 'not', 'knowyou', 'may', 'not', 'have', 'hear', '\n', 'that', 'my', 'brother', 'be', 'lately', 'marry', 'toto', 'the', 'youngestto', '\n', 'Miss', 'Lucy', 'Steele', '\n\n', 'his', 'word', 'be', 'echo', 'with', 'unspeakable', 'astonishment', '\n', 'by', 'all', 'but', 'Elinor', 'who', 'sit', 'with', 'her', 'head', 'lean', 'over', '\n', 'her', 'work', 'in', 'a', 'state', 'of', 'such', 'agitation', 'as', 'make', 'she', 'hardly', '\n', 'know', 'where', 'she', 'be', '\n\n', 'yes', 'say', 'he', 'they', 'be', 'marry', 'last', 'week', '\n', 'and', 'be', 'now', 'at', 'Dawlish', '\n\n', 'Elinor', 'could', 'sit', 'it', 'no', 'long', ' ', 'she', 'almost', 'run', '\n', 'out', 'of', 'the', 'room', 'and', 'as', 'soon', 'as', 'the', 'door', 'be', 'close', '\n', 'burst', 'into', 'tear', 'of', 'joy', 'which', 'at', 'first', 'she', 'think', 'would', '\n', 'never', 'cease', ' ', 'Edward', 'who', 'have', 'till', 'then', 'look', 'any', 'where', '\n', 'rather', 'than', 'at', 'she', 'see', 'she', 'hurry', 'away', 'and', 'perhaps', 'see', '\n', 'or', 'even', 'hear', 'her', 'emotion', 'for', 'immediately', 'afterwards', '\n', 'he', 'fall', 'into', 'a', 'reverie', 'which', 'no', 'remark', 'no', 'inquiry', '\n', 'no', 'affectionate', 'address', 'of', 'Mrs', 'Dashwood', 'could', 'penetrate', '\n', 'and', 'at', 'last', 'without', 'say', 'a', 'word', 'quit', 'the', 'room', '\n', 'and', 'walk', 'out', 'towards', 'the', 'villageleave', 'the', 'other', '\n', 'in', 'the', 'great', 'astonishment', 'and', 'perplexity', 'on', 'a', 'change', '\n', 'in', 'his', 'situation', 'so', 'wonderful', 'and', 'so', 'suddena', 'perplexity', '\n', 'which', 'they', 'have', 'no', 'mean', 'of', 'lessening', 'but', 'by', 'their', '\n', 'own', 'conjecture', '\n\n\n\n', 'chapter', '49', '\n\n\n', 'unaccountable', 'however', 'as', 'the', 'circumstance', 'of', 'his', '\n', 'release', 'might', 'appear', 'to', 'the', 'whole', 'family', 'it', 'be', 'certain', '\n', 'that', 'Edward', 'be', 'free', 'and', 'to', 'what', 'purpose', 'that', 'freedom', 'would', '\n', 'be', 'employ', 'be', 'easily', 'predetermine', 'by', 'allfor', 'after', '\n', 'experience', 'the', 'blessing', 'of', 'one', 'imprudent', 'engagement', '\n', 'contract', 'without', 'his', 'mother', 'consent', 'as', 'he', 'have', 'already', '\n', 'do', 'for', 'more', 'than', 'four', 'year', 'nothing', 'less', 'could', 'be', 'expect', '\n', 'of', 'he', 'in', 'the', 'failure', 'of', 'that', 'than', 'the', 'immediate', 'contraction', '\n', 'of', 'another', '\n\n', 'his', 'errand', 'at', 'Barton', 'in', 'fact', 'be', 'a', 'simple', 'one', '\n', 'it', 'be', 'only', 'to', 'ask', 'Elinor', 'to', 'marry', 'himand', 'consider', '\n', 'that', 'he', 'be', 'not', 'altogether', 'inexperienced', 'in', 'such', 'a', 'question', '\n', 'it', 'might', 'be', 'strange', 'that', 'he', 'should', 'feel', 'so', 'uncomfortable', '\n', 'in', 'the', 'present', 'case', 'as', 'he', 'really', 'do', 'so', 'much', 'in', 'need', 'of', '\n', 'encouragement', 'and', 'fresh', 'air', '\n\n', 'how', 'soon', 'he', 'have', 'walk', 'himself', 'into', 'the', 'proper', '\n', 'resolution', 'however', 'how', 'soon', 'an', 'opportunity', 'of', 'exercise', '\n', 'it', 'occur', 'in', 'what', 'manner', 'he', 'express', 'himself', '\n', 'and', 'how', 'he', 'be', 'receive', 'need', 'not', 'be', 'particularly', 'tell', '\n', 'this', 'only', 'need', 'be', 'saidthat', 'when', 'they', 'all', 'sit', 'down', 'to', '\n', 'table', 'at', 'four', 'oclock', 'about', 'three', 'hour', 'after', 'his', 'arrival', '\n', 'he', 'have', 'secure', 'his', 'lady', 'engage', 'her', 'mother', 'consent', '\n', 'and', 'be', 'not', 'only', 'in', 'the', 'rapturous', 'profession', 'of', '\n', 'the', 'lover', 'but', 'in', 'the', 'reality', 'of', 'reason', 'and', 'truth', '\n', 'one', 'of', 'the', 'happy', 'of', 'man', ' ', 'his', 'situation', 'indeed', 'be', '\n', 'more', 'than', 'commonly', 'joyful', ' ', 'he', 'have', 'more', 'than', 'the', 'ordinary', '\n', 'triumph', 'of', 'accept', 'love', 'to', 'swell', 'his', 'heart', 'and', 'raise', '\n', 'his', 'spirit', ' ', 'he', 'be', 'release', 'without', 'any', 'reproach', '\n', 'to', 'himself', 'from', 'an', 'entanglement', 'which', 'have', 'long', 'form', '\n', 'his', 'misery', 'from', 'a', 'woman', 'whom', 'he', 'have', 'long', 'cease', 'to', 'love', '\n', 'and', 'elevate', 'at', 'once', 'to', 'that', 'security', 'with', 'another', '\n', 'which', 'he', 'must', 'have', 'think', 'of', 'almost', 'with', 'despair', '\n', 'as', 'soon', 'as', 'he', 'have', 'learn', 'to', 'consider', 'it', 'with', 'desire', '\n', 'he', 'be', 'bring', 'not', 'from', 'doubt', 'or', 'suspense', 'but', 'from', '\n', 'misery', 'to', 'happinessand', 'the', 'change', 'be', 'openly', 'speak', '\n', 'in', 'such', 'a', 'genuine', 'flow', 'grateful', 'cheerfulness', '\n', 'as', 'his', 'friend', 'have', 'never', 'witness', 'in', 'he', 'before', '\n\n', 'his', 'heart', 'be', 'now', 'open', 'to', 'Elinor', 'all', 'its', 'weakness', '\n', 'all', 'its', 'error', 'confess', 'and', 'his', 'first', 'boyish', 'attachment', '\n', 'to', 'Lucy', 'treat', 'with', 'all', 'the', 'philosophic', 'dignity', 'of', 'twentyfour', '\n\n', 'it', 'be', 'a', 'foolish', 'idle', 'inclination', 'on', 'my', 'side', '\n', 'say', 'he', 'the', 'consequence', 'of', 'ignorance', 'of', 'the', 'world', '\n', 'and', 'want', 'of', 'employment', ' ', 'have', 'my', 'brother', 'give', 'I', '\n', 'some', 'active', 'profession', 'when', 'I', 'be', 'remove', 'at', 'eighteen', '\n', 'from', 'the', 'care', 'of', 'Mr', 'Pratt', 'I', 'thinknay', 'I', 'be', 'sure', '\n', 'it', 'would', 'never', 'have', 'happen', 'for', 'though', 'I', 'leave', 'Longstaple', '\n', 'with', 'what', 'I', 'think', 'at', 'the', 'time', 'a', 'most', 'unconquerable', '\n', 'preference', 'for', 'his', 'niece', 'yet', 'have', 'I', 'then', 'have', 'any', 'pursuit', '\n', 'any', 'object', 'to', 'engage', 'my', 'time', 'and', 'keep', 'I', 'at', 'a', 'distance', '\n', 'from', 'she', 'for', 'a', 'few', 'month', 'I', 'should', 'very', 'soon', 'have', '\n', 'outgrow', 'the', 'fancied', 'attachment', 'especially', 'by', 'mix', '\n', 'more', 'with', 'the', 'world', 'as', 'in', 'such', 'case', 'I', 'must', 'have', 'do', '\n', 'but', 'instead', 'of', 'have', 'any', 'thing', 'to', 'do', 'instead', 'of', 'have', 'any', '\n', 'profession', 'choose', 'for', 'I', 'or', 'be', 'allow', 'to', 'chuse', 'any', 'myself', '\n', 'I', 'return', 'home', 'to', 'be', 'completely', 'idle', 'and', 'for', 'the', 'first', '\n', 'twelvemonth', 'afterwards', 'I', 'have', 'not', 'even', 'the', 'nominal', 'employment', '\n', 'which', 'belong', 'to', 'the', 'university', 'would', 'have', 'give', 'I', '\n', 'for', 'I', 'be', 'not', 'enter', 'at', 'Oxford', 'till', 'I', 'be', 'nineteen', '\n', 'I', 'have', 'therefore', 'nothing', 'in', 'the', 'world', 'to', 'do', 'but', 'to', 'fancy', '\n', 'myself', 'in', 'love', 'and', 'as', 'my', 'mother', 'do', 'not', 'make', 'my', 'home', '\n', 'in', 'every', 'respect', 'comfortable', 'as', 'I', 'have', 'no', 'friend', '\n', 'no', 'companion', 'in', 'my', 'brother', 'and', 'dislike', 'new', 'acquaintance', '\n', 'it', 'be', 'not', 'unnatural', 'for', 'I', 'to', 'be', 'very', 'often', 'at', 'Longstaple', '\n', 'where', 'I', 'always', 'feel', 'myself', 'at', 'home', 'and', 'be', 'always', 'sure', '\n', 'of', 'a', 'welcome', 'and', 'accordingly', 'I', 'spend', 'the', 'great', 'part', '\n', 'of', 'my', 'time', 'there', 'from', 'eighteen', 'to', 'nineteen', 'Lucy', 'appear', '\n', 'everything', 'that', 'be', 'amiable', 'and', 'obliging', ' ', 'she', 'be', 'pretty', '\n', 'tooat', 'least', 'I', 'think', 'so', 'then', 'and', 'I', 'have', 'see', 'so', 'little', '\n', 'of', 'other', 'woman', 'that', 'I', 'could', 'make', 'no', 'comparison', 'and', 'see', '\n', 'no', 'defect', ' ', 'consider', 'everything', 'therefore', 'I', 'hope', '\n', 'foolish', 'as', 'our', 'engagement', 'be', 'foolish', 'as', 'it', 'have', 'since', '\n', 'in', 'every', 'way', 'be', 'prove', 'it', 'be', 'not', 'at', 'the', 'time', 'an', 'unnatural', '\n', 'or', 'an', 'inexcusable', 'piece', 'of', 'folly', '\n\n', 'the', 'change', 'which', 'a', 'few', 'hour', 'have', 'work', 'in', 'the', 'mind', '\n', 'and', 'the', 'happiness', 'of', 'the', 'Dashwoods', 'be', 'suchso', 'greata', '\n', 'promise', 'they', 'all', 'the', 'satisfaction', 'of', 'a', 'sleepless', 'night', '\n', 'Mrs', 'Dashwood', 'too', 'happy', 'to', 'be', 'comfortable', 'know', 'not', 'how', '\n', 'to', 'love', 'Edward', 'nor', 'praise', 'Elinor', 'enough', 'how', 'to', 'be', 'enough', '\n', 'thankful', 'for', 'his', 'release', 'without', 'wound', 'his', 'delicacy', '\n', 'nor', 'how', 'at', 'once', 'to', 'give', 'they', 'leisure', 'for', 'unrestrained', '\n', 'conversation', 'together', 'and', 'yet', 'enjoy', 'as', 'she', 'wish', '\n', 'the', 'sight', 'and', 'society', 'of', 'both', '\n\n', 'Marianne', 'could', 'speak', 'her', 'happiness', 'only', 'by', 'tear', '\n', 'Comparisons', 'would', 'occurregret', 'would', 'ariseand', 'her', 'joy', '\n', 'though', 'sincere', 'as', 'her', 'love', 'for', 'her', 'sister', 'be', 'of', 'a', 'kind', 'to', '\n', 'give', 'she', 'neither', 'spirit', 'nor', 'language', '\n\n', 'but', 'Elinorhow', 'be', 'her', 'feeling', 'to', 'be', 'describedfrom', '\n', 'the', 'moment', 'of', 'learn', 'that', 'Lucy', 'be', 'married', 'to', 'another', '\n', 'that', 'Edward', 'be', 'free', 'to', 'the', 'moment', 'of', 'his', 'justifying', '\n', 'the', 'hope', 'which', 'have', 'so', 'instantly', 'follow', 'she', 'be', 'every', '\n', 'thing', 'by', 'turn', 'but', 'tranquil', ' ', 'but', 'when', 'the', 'second', 'moment', '\n', 'have', 'pass', 'when', 'she', 'find', 'every', 'doubt', 'every', 'solicitude', '\n', 'remove', 'compare', 'her', 'situation', 'with', 'what', 'so', 'lately', 'it', '\n', 'have', 'beensaw', 'he', 'honourably', 'release', 'from', 'his', 'former', '\n', 'engagement', 'see', 'he', 'instantly', 'profiting', 'by', 'the', 'release', '\n', 'to', 'address', 'herself', 'and', 'declare', 'an', 'affection', 'as', 'tender', '\n', 'as', 'constant', 'as', 'she', 'have', 'ever', 'suppose', 'it', 'to', 'beshe', '\n', 'be', 'oppress', 'she', 'be', 'overcome', 'by', 'her', 'own', 'felicity', '\n', 'and', 'happily', 'dispose', 'as', 'be', 'the', 'human', 'mind', 'to', 'be', 'easily', '\n', 'familiarize', 'with', 'any', 'change', 'for', 'the', 'well', 'it', 'require', '\n', 'several', 'hour', 'to', 'give', 'sedateness', 'to', 'her', 'spirit', 'or', 'any', '\n', 'degree', 'of', 'tranquillity', 'to', 'her', 'heart', '\n\n', 'Edward', 'be', 'now', 'fix', 'at', 'the', 'cottage', 'at', 'least', 'for', '\n', 'a', 'weekfor', 'whatever', 'other', 'claim', 'might', 'be', 'make', 'on', 'he', '\n', 'it', 'be', 'impossible', 'that', 'less', 'than', 'a', 'week', 'should', 'be', 'give', '\n', 'up', 'to', 'the', 'enjoyment', 'of', 'Elinors', 'company', 'or', 'suffice', '\n', 'to', 'say', 'half', 'that', 'be', 'to', 'be', 'say', 'of', 'the', 'past', 'the', 'present', '\n', 'and', 'the', 'futurefor', 'though', 'a', 'very', 'few', 'hour', 'spend', 'in', '\n', 'the', 'hard', 'labor', 'of', 'incessant', 'talking', 'will', 'despatch', 'more', '\n', 'subject', 'than', 'can', 'really', 'be', 'in', 'common', 'between', 'any', 'two', '\n', 'rational', 'creature', 'yet', 'with', 'lover', 'it', 'be', 'different', '\n', 'between', 'them', 'no', 'subject', 'be', 'finish', 'no', 'communication', '\n', 'be', 'even', 'make', 'till', 'it', 'have', 'be', 'make', 'at', 'least', 'twenty', '\n', 'time', 'over', '\n\n', 'Lucys', 'marriage', 'the', 'unceasing', 'and', 'reasonable', 'wonder', '\n', 'among', 'they', 'all', 'form', 'of', 'course', 'one', 'of', 'the', 'early', '\n', 'discussion', 'of', 'the', 'loversand', 'Elinors', 'particular', 'knowledge', '\n', 'of', 'each', 'party', 'make', 'it', 'appear', 'to', 'she', 'in', 'every', 'view', 'as', 'one', '\n', 'of', 'the', 'most', 'extraordinary', 'and', 'unaccountable', 'circumstance', '\n', 'she', 'have', 'ever', 'hear', ' ', 'how', 'they', 'could', 'be', 'throw', 'together', '\n', 'and', 'by', 'what', 'attraction', 'Robert', 'could', 'be', 'draw', 'on', 'to', 'marry', '\n', 'a', 'girl', 'of', 'whose', 'beauty', 'she', 'have', 'herself', 'hear', 'he', 'speak', '\n', 'without', 'any', 'admirationa', 'girl', 'too', 'already', 'engage', '\n', 'to', 'his', 'brother', 'and', 'on', 'whose', 'account', 'that', 'brother', 'have', 'be', '\n', 'throw', 'off', 'by', 'his', 'familyit', 'be', 'beyond', 'her', 'comprehension', '\n', 'to', 'make', 'out', ' ', 'to', 'her', 'own', 'heart', 'it', 'be', 'a', 'delightful', 'affair', '\n', 'to', 'her', 'imagination', 'it', 'be', 'even', 'a', 'ridiculous', 'one', 'but', '\n', 'to', 'her', 'reason', 'her', 'judgment', 'it', 'be', 'completely', 'a', 'puzzle', '\n\n', 'Edward', 'could', 'only', 'attempt', 'an', 'explanation', 'by', 'suppose', '\n', 'that', 'perhaps', 'at', 'first', 'accidentally', 'meet', 'the', 'vanity', '\n', 'of', 'the', 'one', 'have', 'be', 'so', 'work', 'on', 'by', 'the', 'flattery', '\n', 'of', 'the', 'other', 'as', 'to', 'lead', 'by', 'degree', 'to', 'all', 'the', 'rest', '\n', 'Elinor', 'remember', 'what', 'Robert', 'have', 'tell', 'she', 'in', 'Harley', 'Street', '\n', 'of', 'his', 'opinion', 'of', 'what', 'his', 'own', 'mediation', 'in', 'his', 'brother', '\n', 'affair', 'might', 'have', 'do', 'if', 'apply', 'to', 'in', 'time', '\n', 'she', 'repeat', 'it', 'to', 'Edward', '\n\n', 'that', 'be', 'exactly', 'like', 'Robertwas', 'his', 'immediate', '\n', 'observationand', 'that', 'he', 'presently', 'add', 'might', '\n', 'perhaps', 'be', 'in', 'his', 'head', 'when', 'the', 'acquaintance', 'between', '\n', 'they', 'first', 'begin', ' ', 'and', 'Lucy', 'perhaps', 'at', 'first', 'might', '\n', 'think', 'only', 'of', 'procure', 'his', 'good', 'office', 'in', 'my', 'favour', '\n', 'other', 'design', 'might', 'afterward', 'arise', '\n\n', 'how', 'long', 'it', 'have', 'be', 'carry', 'on', 'between', 'they', '\n', 'however', 'he', 'be', 'equally', 'at', 'a', 'loss', 'with', 'herself', 'to', 'make', 'out', '\n', 'for', 'at', 'Oxford', 'where', 'he', 'have', 'remain', 'for', 'choice', 'ever', 'since', '\n', 'his', 'quit', 'London', 'he', 'have', 'have', 'no', 'mean', 'of', 'hearing', 'of', 'she', '\n', 'but', 'from', 'herself', 'and', 'her', 'letter', 'to', 'the', 'very', 'last', 'be', '\n', 'neither', 'less', 'frequent', 'nor', 'less', 'affectionate', 'than', 'usual', '\n', 'not', 'the', 'small', 'suspicion', 'therefore', 'have', 'ever', 'occur', '\n', 'to', 'prepare', 'he', 'for', 'what', 'followedand', 'when', 'at', 'last', 'it', '\n', 'burst', 'on', 'he', 'in', 'a', 'letter', 'from', 'Lucy', 'herself', 'he', 'have', 'be', '\n', 'for', 'some', 'time', 'he', 'believe', 'half', 'stupifie', 'between', '\n', 'the', 'wonder', 'the', 'horror', 'and', 'the', 'joy', 'of', 'such', 'a', 'deliverance', '\n', 'he', 'put', 'the', 'letter', 'into', 'Elinors', 'hand', '\n\n ', 'DEAR', 'SIR', '\n\n ', 'be', 'very', 'sure', 'I', 'have', 'long', 'lose', 'your', 'affection', '\n ', 'I', 'have', 'think', 'myself', 'at', 'liberty', 'to', 'bestow', 'my', 'own', '\n ', 'on', 'another', 'and', 'have', 'no', 'doubt', 'of', 'be', 'as', 'happy', 'with', '\n ', 'he', 'as', 'I', 'once', 'use', 'to', 'think', 'I', 'might', 'be', 'with', 'you', '\n ', 'but', 'I', 'scorn', 'to', 'accept', 'a', 'hand', 'while', 'the', 'heart', 'be', '\n ', 'another', ' ', 'sincerely', 'wish', 'you', 'happy', 'in', 'your', 'choice', '\n ', 'and', 'it', 'shall', 'not', 'be', 'my', 'fault', 'if', 'we', 'be', 'not', 'always', '\n ', 'good', 'friend', 'as', 'our', 'near', 'relationship', 'now', 'make', '\n ', 'proper', ' ', 'I', 'can', 'safely', 'say', 'I', 'owe', 'you', 'no', 'illwill', '\n ', 'and', 'be', 'sure', 'you', 'will', 'be', 'too', 'generous', 'to', 'do', 'we', 'any', '\n ', 'ill', 'office', ' ', 'your', 'brother', 'have', 'gain', 'my', 'affection', '\n ', 'entirely', 'and', 'as', 'we', 'could', 'not', 'live', 'without', 'one', '\n ', 'another', 'we', 'be', 'just', 'return', 'from', 'the', 'altar', 'and', '\n ', 'be', 'now', 'on', 'our', 'way', 'to', 'dawlish', 'for', 'a', 'few', 'week', 'which', '\n ', 'place', 'your', 'dear', 'brother', 'have', 'great', 'curiosity', 'to', 'see', '\n ', 'but', 'think', 'I', 'would', 'first', 'trouble', 'you', 'with', 'these', '\n ', 'few', 'line', 'and', 'shall', 'always', 'remain', '\n\n ', 'your', 'sincere', 'wellwisher', 'friend', 'and', 'sister', '\n ', 'LUCY', 'FERRARS', '\n\n ', 'I', 'have', 'burn', 'all', 'your', 'letter', 'and', 'will', 'return', '\n ', 'your', 'picture', 'the', 'first', 'opportunity', ' ', 'please', 'to', 'destroy', '\n ', 'my', 'scrawlsbut', 'the', 'ring', 'with', 'my', 'hair', 'you', 'be', 'very', '\n ', 'welcome', 'to', 'keep', '\n\n', 'Elinor', 'read', 'and', 'return', 'it', 'without', 'any', 'comment', '\n\n', 'I', 'will', 'not', 'ask', 'your', 'opinion', 'of', 'it', 'as', 'a', 'composition', '\n', 'say', 'EdwardFor', 'world', 'would', 'not', 'I', 'have', 'have', 'a', 'letter', '\n', 'of', 'hers', 'see', 'by', 'you', 'in', 'former', 'daysIn', 'a', 'sister', 'it', '\n', 'be', 'bad', 'enough', 'but', 'in', 'a', 'wifehow', 'I', 'have', 'blush', 'over', '\n', 'the', 'page', 'of', 'her', 'writingand', 'I', 'believe', 'I', 'may', 'say', 'that', '\n', 'since', 'the', 'first', 'half', 'year', 'of', 'our', 'foolishbusinessthis', '\n', 'be', 'the', 'only', 'letter', 'I', 'ever', 'receive', 'from', 'she', 'of', 'which', '\n', 'the', 'substance', 'make', 'I', 'any', 'amend', 'for', 'the', 'defect', 'of', 'the', 'style', '\n\n', 'however', 'it', 'may', 'have', 'come', 'about', 'say', 'Elinor', '\n', 'after', 'a', 'pausethey', 'be', 'certainly', 'marry', ' ', 'and', 'your', 'mother', '\n', 'have', 'bring', 'on', 'herself', 'a', 'most', 'appropriate', 'punishment', '\n', 'the', 'independence', 'she', 'settle', 'on', 'Robert', 'through', 'resentment', '\n', 'against', 'you', 'have', 'put', 'it', 'in', 'his', 'power', 'to', 'make', 'his', 'own', 'choice', '\n', 'and', 'she', 'have', 'actually', 'be', 'bribe', 'one', 'son', 'with', 'a', 'thousand', '\n', 'ayear', 'to', 'do', 'the', 'very', 'deed', 'which', 'she', 'disinherit', 'the', '\n', 'other', 'for', 'intend', 'to', 'do', ' ', 'she', 'will', 'hardly', 'be', 'less', 'hurt', '\n', 'I', 'suppose', 'by', 'Roberts', 'marry', 'Lucy', 'than', 'she', 'would', 'have', '\n', 'be', 'by', 'your', 'marry', 'she', '\n\n', 'she', 'will', 'be', 'more', 'hurt', 'by', 'it', 'for', 'Robert', 'always', '\n', 'be', 'she', 'favouriteShe', 'will', 'be', 'more', 'hurt', 'by', 'it', '\n', 'and', 'on', 'the', 'same', 'principle', 'will', 'forgive', 'he', 'much', 'soon', '\n\n', 'in', 'what', 'state', 'the', 'affair', 'stand', 'at', 'present', 'between', 'they', '\n', 'Edward', 'know', 'not', 'for', 'no', 'communication', 'with', 'any', 'of', 'his', 'family', '\n', 'have', 'yet', 'be', 'attempt', 'by', 'he', ' ', 'he', 'have', 'quit', 'Oxford', '\n', 'within', 'four', 'and', 'twenty', 'hour', 'after', 'Lucys', 'letter', 'arrive', '\n', 'and', 'with', 'only', 'one', 'object', 'before', 'he', 'the', 'near', 'road', '\n', 'to', 'Barton', 'have', 'have', 'no', 'leisure', 'to', 'form', 'any', 'scheme', 'of', 'conduct', '\n', 'with', 'which', 'that', 'road', 'do', 'not', 'hold', 'the', 'most', 'intimate', 'connection', '\n', 'he', 'could', 'do', 'nothing', 'till', 'he', 'be', 'assure', 'of', 'his', 'fate', 'with', '\n', 'Miss', 'Dashwood', 'and', 'by', 'his', 'rapidity', 'in', 'seek', 'that', 'fate', '\n', 'it', 'be', 'to', 'be', 'suppose', 'in', 'spite', 'of', 'the', 'jealousy', 'with', '\n', 'which', 'he', 'have', 'once', 'think', 'of', 'Colonel', 'Brandon', 'in', 'spite', '\n', 'of', 'the', 'modesty', 'with', 'which', 'he', 'rate', 'his', 'own', 'desert', '\n', 'and', 'the', 'politeness', 'with', 'which', 'he', 'talk', 'of', 'his', 'doubt', '\n', 'he', 'do', 'not', 'upon', 'the', 'whole', 'expect', 'a', 'very', 'cruel', 'reception', '\n', 'it', 'be', 'his', 'business', 'however', 'to', 'say', 'that', 'he', 'do', 'and', 'he', '\n', 'say', 'it', 'very', 'prettily', ' ', 'what', 'he', 'might', 'say', 'on', 'the', 'subject', '\n', 'a', 'twelvemonth', 'after', 'must', 'be', 'refer', 'to', 'the', 'imagination', '\n', 'of', 'husband', 'and', 'wife', '\n\n', 'that', 'Lucy', 'have', 'certainly', 'mean', 'to', 'deceive', 'to', 'go', 'off', '\n', 'with', 'a', 'flourish', 'of', 'malice', 'against', 'he', 'in', 'her', 'message', '\n', 'by', 'Thomas', 'be', 'perfectly', 'clear', 'to', 'Elinor', 'and', 'Edward', 'himself', '\n', 'now', 'thoroughly', 'enlighten', 'on', 'her', 'character', 'have', 'no', '\n', 'scruple', 'in', 'believe', 'her', 'capable', 'of', 'the', 'utmost', 'meanness', '\n', 'of', 'wanton', 'illnature', 'though', 'his', 'eye', 'have', 'be', 'long', 'open', '\n', 'even', 'before', 'his', 'acquaintance', 'with', 'Elinor', 'begin', 'to', 'her', '\n', 'ignorance', 'and', 'a', 'want', 'of', 'liberality', 'in', 'some', 'of', 'her', 'opinion', '\n', 'they', 'have', 'be', 'equally', 'impute', 'by', 'he', 'to', 'her', 'want', '\n', 'of', 'education', 'and', 'till', 'her', 'last', 'letter', 'reach', 'he', '\n', 'he', 'have', 'always', 'believe', 'she', 'to', 'be', 'a', 'welldisposed', '\n', 'goodhearted', 'girl', 'and', 'thoroughly', 'attach', 'to', 'himself', '\n', 'nothing', 'but', 'such', 'a', 'persuasion', 'could', 'have', 'prevent', '\n', 'his', 'put', 'an', 'end', 'to', 'an', 'engagement', 'which', 'long', 'before', '\n', 'the', 'discovery', 'of', 'it', 'lay', 'he', 'open', 'to', 'his', 'mother', 'anger', '\n', 'have', 'be', 'a', 'continual', 'source', 'of', 'disquiet', 'and', 'regret', 'to', 'he', '\n\n', 'I', 'think', 'it', 'my', 'duty', 'say', 'he', 'independent', 'of', 'my', 'feeling', '\n', 'to', 'give', 'she', 'the', 'option', 'of', 'continue', 'the', 'engagement', 'or', 'not', '\n', 'when', 'I', 'be', 'renounce', 'by', 'my', 'mother', 'and', 'stand', 'to', 'all', '\n', 'appearance', 'without', 'a', 'friend', 'in', 'the', 'world', 'to', 'assist', 'I', '\n', 'in', 'such', 'a', 'situation', 'as', 'that', 'where', 'there', 'seem', 'nothing', '\n', 'to', 'tempt', 'the', 'avarice', 'or', 'the', 'vanity', 'of', 'any', 'live', 'creature', '\n', 'how', 'could', 'I', 'suppose', 'when', 'she', 'so', 'earnestly', 'so', 'warmly', 'insist', '\n', 'on', 'share', 'my', 'fate', 'whatever', 'it', 'might', 'be', 'that', 'any', 'thing', '\n', 'but', 'the', 'most', 'disinterested', 'affection', 'be', 'her', 'inducement', '\n', 'and', 'even', 'now', 'I', 'can', 'not', 'comprehend', 'on', 'what', 'motive', 'she', 'act', '\n', 'or', 'what', 'fancy', 'advantage', 'it', 'could', 'be', 'to', 'she', 'to', 'be', '\n', 'fetter', 'to', 'a', 'man', 'for', 'whom', 'she', 'have', 'not', 'the', 'small', 'regard', '\n', 'and', 'who', 'have', 'only', 'two', 'thousand', 'pound', 'in', 'the', 'world', '\n', 'she', 'could', 'not', 'foresee', 'that', 'Colonel', 'Brandon', 'would', 'give', 'I', 'a', '\n', 'living', '\n\n', 'no', 'but', 'she', 'might', 'suppose', 'that', 'something', 'would', 'occur', '\n', 'in', 'your', 'favour', 'that', 'your', 'own', 'family', 'might', 'in', 'time', 'relent', '\n', 'and', 'at', 'any', 'rate', 'she', 'lose', 'nothing', 'by', 'continue', 'the', 'engagement', '\n', 'for', 'she', 'have', 'prove', 'that', 'it', 'fetter', 'neither', 'her', 'inclination', '\n', 'nor', 'her', 'action', ' ', 'the', 'connection', 'be', 'certainly', 'a', '\n', 'respectable', 'one', 'and', 'probably', 'gain', 'her', 'consideration', 'among', '\n', 'her', 'friend', 'and', 'if', 'nothing', 'more', 'advantageous', 'occur', '\n', 'it', 'would', 'be', 'well', 'for', 'she', 'to', 'marry', 'you', 'than', 'be', 'single', '\n\n', 'Edward', 'be', 'of', 'course', 'immediately', 'convince', 'that', '\n', 'nothing', 'could', 'have', 'be', 'more', 'natural', 'than', 'Lucys', 'conduct', '\n', 'nor', 'more', 'selfevident', 'than', 'the', 'motive', 'of', 'it', '\n\n', 'Elinor', 'scold', 'he', 'harshly', 'as', 'lady', 'always', 'scold', '\n', 'the', 'imprudence', 'which', 'compliment', 'themselves', 'for', 'having', '\n', 'spend', 'so', 'much', 'time', 'with', 'they', 'at', 'Norland', 'when', 'he', 'must', '\n', 'have', 'feel', 'his', 'own', 'inconstancy', '\n\n', 'your', 'behaviour', 'be', 'certainly', 'very', 'wrong', 'say', 'she', '\n', 'becauseto', 'say', 'nothing', 'of', 'my', 'own', 'conviction', 'our', 'relation', '\n', 'be', 'all', 'lead', 'away', 'by', 'it', 'to', 'fancy', 'and', 'expect', 'what', 'as', 'you', '\n', 'be', 'then', 'situate', 'could', 'never', 'be', '\n\n', 'he', 'could', 'only', 'plead', 'an', 'ignorance', 'of', 'his', 'own', 'heart', '\n', 'and', 'a', 'mistaken', 'confidence', 'in', 'the', 'force', 'of', 'his', 'engagement', '\n\n', 'I', 'be', 'simple', 'enough', 'to', 'think', 'that', 'because', 'my', 'faith', '\n', 'be', 'plight', 'to', 'another', 'there', 'could', 'be', 'no', 'danger', 'in', 'my', 'be', '\n', 'with', 'you', 'and', 'that', 'the', 'consciousness', 'of', 'my', 'engagement', 'be', '\n', 'to', 'keep', 'my', 'heart', 'as', 'safe', 'and', 'sacred', 'as', 'my', 'honour', ' ', 'I', 'feel', '\n', 'that', 'I', 'admire', 'you', 'but', 'I', 'tell', 'myself', 'it', 'be', 'only', 'friendship', '\n', 'and', 'till', 'I', 'begin', 'to', 'make', 'comparison', 'between', 'yourself', '\n', 'and', 'Lucy', 'I', 'do', 'not', 'know', 'how', 'far', 'I', 'be', 'get', ' ', 'after', 'that', '\n', 'I', 'suppose', 'I', 'be', 'wrong', 'in', 'remain', 'so', 'much', 'in', 'Sussex', '\n', 'and', 'the', 'argument', 'with', 'which', 'I', 'reconcile', 'myself', 'to', 'the', '\n', 'expediency', 'of', 'it', 'be', 'no', 'well', 'than', 'thesethe', 'danger', '\n', 'be', 'my', 'own', 'I', 'be', 'do', 'no', 'injury', 'to', 'anybody', 'but', 'myself', '\n\n', 'Elinor', 'smile', 'and', 'shake', 'her', 'head', '\n\n', 'Edward', 'hear', 'with', 'pleasure', 'of', 'Colonel', 'Brandons', '\n', 'be', 'expect', 'at', 'the', 'Cottage', 'as', 'he', 'really', 'wish', '\n', 'not', 'only', 'to', 'be', 'well', 'acquaint', 'with', 'he', 'but', 'to', 'have', 'an', '\n', 'opportunity', 'of', 'convince', 'he', 'that', 'he', 'no', 'long', 'resent', '\n', 'his', 'give', 'he', 'the', 'living', 'of', 'DelafordWhich', 'at', 'present', '\n', 'say', 'he', 'after', 'thank', 'so', 'ungraciously', 'deliver', 'as', 'mine', '\n', 'be', 'on', 'the', 'occasion', 'he', 'must', 'think', 'I', 'have', 'never', 'forgive', '\n', 'he', 'for', 'offer', '\n\n', 'now', 'he', 'felt', 'astonish', 'himself', 'that', 'he', 'have', 'never', 'yet', '\n', 'be', 'to', 'the', 'place', ' ', 'but', 'so', 'little', 'interest', 'have', 'be', 'take', '\n', 'in', 'the', 'matter', 'that', 'he', 'owe', 'all', 'his', 'knowledge', 'of', 'the', 'house', '\n', 'garden', 'and', 'glebe', 'extent', 'of', 'the', 'parish', 'condition', 'of', '\n', 'the', 'land', 'and', 'rate', 'of', 'the', 'tithe', 'to', 'Elinor', 'herself', '\n', 'who', 'have', 'hear', 'so', 'much', 'of', 'it', 'from', 'Colonel', 'Brandon', '\n', 'and', 'hear', 'it', 'with', 'so', 'much', 'attention', 'as', 'to', 'be', 'entirely', '\n', 'mistress', 'of', 'the', 'subject', '\n\n', 'one', 'question', 'after', 'this', 'only', 'remain', 'undecided', '\n', 'between', 'they', 'one', 'difficulty', 'only', 'be', 'to', 'be', 'overcome', '\n', 'they', 'be', 'bring', 'together', 'by', 'mutual', 'affection', '\n', 'with', 'the', 'warm', 'approbation', 'of', 'their', 'real', 'friend', '\n', 'their', 'intimate', 'knowledge', 'of', 'each', 'other', 'seem', 'to', 'make', '\n', 'their', 'happiness', 'certainand', 'they', 'only', 'want', 'something', '\n', 'to', 'live', 'upon', ' ', 'Edward', 'have', 'two', 'thousand', 'pound', 'and', 'Elinor', '\n', 'one', 'which', 'with', 'Delaford', 'living', 'be', 'all', 'that', 'they', 'could', '\n', 'call', 'their', 'own', 'for', 'it', 'be', 'impossible', 'that', 'Mrs', 'Dashwood', '\n', 'should', 'advance', 'anything', 'and', 'they', 'be', 'neither', 'of', 'they', '\n', 'quite', 'enough', 'in', 'love', 'to', 'think', 'that', 'three', 'hundred', 'and', 'fifty', '\n', 'pound', 'ayear', 'would', 'supply', 'they', 'with', 'the', 'comfort', 'of', 'life', '\n\n', 'Edward', 'be', 'not', 'entirely', 'without', 'hope', 'of', 'some', '\n', 'favourable', 'change', 'in', 'his', 'mother', 'towards', 'he', 'and', 'on', 'that', '\n', 'he', 'rest', 'for', 'the', 'residue', 'of', 'their', 'income', ' ', 'but', 'Elinor', '\n', 'have', 'no', 'such', 'dependence', 'for', 'since', 'Edward', 'would', 'still', '\n', 'be', 'unable', 'to', 'marry', 'Miss', 'Morton', 'and', 'his', 'chusing', 'herself', '\n', 'have', 'be', 'speak', 'of', 'in', 'Mrs', 'Ferrarss', 'flattering', 'language', '\n', 'as', 'only', 'a', 'less', 'evil', 'than', 'his', 'chuse', 'Lucy', 'Steele', '\n', 'she', 'fear', 'that', 'Roberts', 'offence', 'would', 'serve', 'no', 'other', '\n', 'purpose', 'than', 'to', 'enrich', 'Fanny', '\n\n', 'about', 'four', 'day', 'after', 'Edwards', 'arrival', 'Colonel', '\n', 'Brandon', 'appear', 'to', 'complete', 'Mrs', 'Dashwoods', 'satisfaction', '\n', 'and', 'to', 'give', 'she', 'the', 'dignity', 'of', 'have', 'for', 'the', 'first', 'time', '\n', 'since', 'she', 'live', 'at', 'Barton', 'more', 'company', 'with', 'she', 'than', '\n', 'her', 'house', 'would', 'hold', ' ', 'Edward', 'be', 'allow', 'to', 'retain', 'the', '\n', 'privilege', 'of', 'first', 'comer', 'and', 'Colonel', 'Brandon', 'therefore', '\n', 'walk', 'every', 'night', 'to', 'his', 'old', 'quarter', 'at', 'the', 'Park', '\n', 'from', 'whence', 'he', 'usually', 'return', 'in', 'the', 'morning', 'early', 'enough', '\n', 'to', 'interrupt', 'the', 'lover', 'first', 'teteatete', 'before', 'breakfast', '\n\n', 'a', 'three', 'week', 'residence', 'at', 'Delaford', 'where', '\n', 'in', 'his', 'evening', 'hour', 'at', 'least', 'he', 'have', 'little', 'to', 'do', '\n', 'but', 'to', 'calculate', 'the', 'disproportion', 'between', 'thirtysix', '\n', 'and', 'seventeen', 'bring', 'he', 'to', 'Barton', 'in', 'a', 'temper', 'of', 'mind', '\n', 'which', 'need', 'all', 'the', 'improvement', 'in', 'Mariannes', 'look', '\n', 'all', 'the', 'kindness', 'of', 'her', 'welcome', 'and', 'all', 'the', 'encouragement', '\n', 'of', 'her', 'mother', 'language', 'to', 'make', 'it', 'cheerful', '\n', 'among', 'such', 'friend', 'however', 'and', 'such', 'flattery', 'he', 'do', 'revive', '\n', 'no', 'rumour', 'of', 'Lucys', 'marriage', 'have', 'yet', 'reach', 'himhe', 'know', '\n', 'nothing', 'of', 'what', 'have', 'pass', 'and', 'the', 'first', 'hour', 'of', 'his', '\n', 'visit', 'be', 'consequently', 'spend', 'in', 'hearing', 'and', 'in', 'wonder', '\n', 'every', 'thing', 'be', 'explain', 'to', 'he', 'by', 'Mrs', 'Dashwood', '\n', 'and', 'he', 'find', 'fresh', 'reason', 'to', 'rejoice', 'in', 'what', 'he', 'have', 'do', '\n', 'for', 'Mr', 'Ferrars', 'since', 'eventually', 'it', 'promote', 'the', 'interest', '\n', 'of', 'Elinor', '\n\n', 'it', 'would', 'be', 'needless', 'to', 'say', 'that', 'the', 'gentleman', 'advance', '\n', 'in', 'the', 'good', 'opinion', 'of', 'each', 'other', 'as', 'they', 'advance', 'in', 'each', '\n', 'other', 'acquaintance', 'for', 'it', 'could', 'not', 'be', 'otherwise', '\n', 'their', 'resemblance', 'in', 'good', 'principle', 'and', 'good', 'sense', '\n', 'in', 'disposition', 'and', 'manner', 'of', 'thinking', 'would', 'probably', '\n', 'have', 'be', 'sufficient', 'to', 'unite', 'they', 'in', 'friendship', '\n', 'without', 'any', 'other', 'attraction', 'but', 'their', 'be', 'in', 'love', '\n', 'with', 'two', 'sister', 'and', 'two', 'sister', 'fond', 'of', 'each', 'other', '\n', 'make', 'that', 'mutual', 'regard', 'inevitable', 'and', 'immediate', '\n', 'which', 'might', 'otherwise', 'have', 'wait', 'the', 'effect', 'of', 'time', '\n', 'and', 'judgment', '\n\n', 'the', 'letter', 'from', 'town', 'which', 'a', 'few', 'day', 'before', 'would', '\n', 'have', 'make', 'every', 'nerve', 'in', 'Elinors', 'body', 'thrill', 'with', 'transport', '\n', 'now', 'arrive', 'to', 'be', 'read', 'with', 'less', 'emotion', 'that', 'mirth', '\n', 'Mrs', 'Jennings', 'write', 'to', 'tell', 'the', 'wonderful', 'tale', 'to', 'vent', 'her', '\n', 'honest', 'indignation', 'against', 'the', 'jilt', 'girl', 'and', 'pour', 'forth', '\n', 'her', 'compassion', 'towards', 'poor', 'Mr', 'Edward', 'who', 'she', 'be', 'sure', '\n', 'have', 'quite', 'dote', 'upon', 'the', 'worthless', 'hussy', 'and', 'be', 'now', '\n', 'by', 'all', 'account', 'almost', 'brokenhearte', 'at', 'Oxford', '\n', 'I', 'do', 'think', 'she', 'continue', 'nothing', 'be', 'ever', 'carry', '\n', 'on', 'so', 'sly', 'for', 'it', 'be', 'but', 'two', 'day', 'before', 'Lucy', 'call', '\n', 'and', 'sit', 'a', 'couple', 'of', 'hour', 'with', 'I', ' ', 'not', 'a', 'soul', 'suspect', '\n', 'anything', 'of', 'the', 'matter', 'not', 'even', 'Nancy', 'who', 'poor', 'soul', '\n', 'came', 'cry', 'to', 'I', 'the', 'day', 'after', 'in', 'a', 'great', 'fright', '\n', 'for', 'fear', 'of', 'Mrs', 'Ferrars', 'as', 'well', 'as', 'not', 'know', 'how', 'to', '\n', 'get', 'to', 'Plymouth', 'for', 'Lucy', 'it', 'seem', 'borrow', 'all', 'her', '\n', 'money', 'before', 'she', 'go', 'off', 'to', 'be', 'marry', 'on', 'purpose', '\n', 'we', 'suppose', 'to', 'make', 'a', 'show', 'with', 'and', 'poor', 'Nancy', 'have', 'not', '\n', 'seven', 'shilling', 'in', 'the', 'worldso', 'I', 'be', 'very', 'glad', 'to', 'give', '\n', 'her', 'five', 'guinea', 'to', 'take', 'she', 'down', 'to', 'Exeter', 'where', 'she', '\n', 'think', 'of', 'stay', 'three', 'or', 'four', 'week', 'with', 'Mrs', 'Burgess', '\n', 'in', 'hope', 'as', 'I', 'tell', 'she', 'to', 'fall', 'in', 'with', 'the', 'Doctor', 'again', '\n', 'and', 'I', 'must', 'say', 'that', 'Lucys', 'crossness', 'not', 'to', 'take', 'they', '\n', 'along', 'with', 'they', 'in', 'the', 'chaise', 'be', 'bad', 'than', 'all', '\n', 'Poor', 'Mr', 'Edward', 'I', 'can', 'not', 'get', 'he', 'out', 'of', 'my', 'head', 'but', 'you', '\n', 'must', 'send', 'for', 'he', 'to', 'Barton', 'and', 'Miss', 'Marianne', 'must', 'try', 'to', '\n', 'comfort', 'he', '\n\n', 'Mr', 'Dashwoods', 'strain', 'be', 'more', 'solemn', '\n', 'Mrs', 'Ferrars', 'be', 'the', 'most', 'unfortunate', 'of', 'womenpoor', '\n', 'Fanny', 'have', 'suffer', 'agony', 'of', 'sensibilityand', 'he', '\n', 'consider', 'the', 'existence', 'of', 'each', 'under', 'such', 'a', 'blow', '\n', 'with', 'grateful', 'wonder', ' ', 'Roberts', 'offence', 'be', 'unpardonable', '\n', 'but', 'Lucys', 'be', 'infinitely', 'bad', ' ', 'neither', 'of', 'they', 'be', '\n', 'ever', 'again', 'to', 'be', 'mention', 'to', 'Mrs', 'Ferrars', 'and', 'even', '\n', 'if', 'she', 'might', 'hereafter', 'be', 'induce', 'to', 'forgive', 'her', 'son', '\n', 'his', 'wife', 'should', 'never', 'be', 'acknowledge', 'as', 'her', 'daughter', '\n', 'nor', 'be', 'permit', 'to', 'appear', 'in', 'her', 'presence', ' ', 'the', 'secrecy', '\n', 'with', 'which', 'everything', 'have', 'be', 'carry', 'on', 'between', 'they', '\n', 'be', 'rationally', 'treat', 'as', 'enormously', 'heighten', '\n', 'the', 'crime', 'because', 'have', 'any', 'suspicion', 'of', 'it', 'occur', '\n', 'to', 'the', 'other', 'proper', 'measure', 'would', 'have', 'be', 'take', '\n', 'to', 'prevent', 'the', 'marriage', 'and', 'he', 'call', 'on', 'Elinor', 'to', 'join', '\n', 'with', 'he', 'in', 'regret', 'that', 'Lucys', 'engagement', 'with', 'Edward', '\n', 'have', 'not', 'rather', 'be', 'fulfil', 'than', 'that', 'she', 'should', 'thus', '\n', 'be', 'the', 'mean', 'of', 'spread', 'misery', 'far', 'in', 'the', 'family', '\n', 'he', 'thus', 'continue', '\n\n', 'Mrs', 'Ferrars', 'have', 'never', 'yet', 'mention', 'Edwards', 'name', '\n', 'which', 'do', 'not', 'surprise', 'we', 'but', 'to', 'our', 'great', 'astonishment', '\n', 'not', 'a', 'line', 'have', 'be', 'receive', 'from', 'he', 'on', 'the', 'occasion', '\n', 'perhaps', 'however', 'he', 'be', 'keep', 'silent', 'by', 'his', 'fear', 'of', 'offend', '\n', 'and', 'I', 'shall', 'therefore', 'give', 'he', 'a', 'hint', 'by', 'a', 'line', '\n', 'to', 'Oxford', 'that', 'his', 'sister', 'and', 'I', 'both', 'think', 'a', 'letter', '\n', 'of', 'proper', 'submission', 'from', 'he', 'address', 'perhaps', 'to', 'Fanny', '\n', 'and', 'by', 'she', 'shewn', 'to', 'her', 'mother', 'might', 'not', 'be', 'take', 'amiss', '\n', 'for', 'we', 'all', 'know', 'the', 'tenderness', 'of', 'Mrs', 'Ferrarss', 'heart', '\n', 'and', 'that', 'she', 'wish', 'for', 'nothing', 'so', 'much', 'as', 'to', 'be', 'on', 'good', 'term', '\n', 'with', 'her', 'child', '\n\n', 'this', 'paragraph', 'be', 'of', 'some', 'importance', 'to', 'the', '\n', 'prospect', 'and', 'conduct', 'of', 'Edward', ' ', 'it', 'determine', 'he', '\n', 'to', 'attempt', 'a', 'reconciliation', 'though', 'not', 'exactly', '\n', 'in', 'the', 'manner', 'point', 'out', 'by', 'their', 'brother', 'and', 'sister', '\n\n', 'a', 'letter', 'of', 'proper', 'submission', 'repeat', 'he', '\n', 'would', 'they', 'have', 'I', 'beg', 'my', 'mother', 'pardon', 'for', 'Roberts', '\n', 'ingratitude', 'to', 'she', 'and', 'breach', 'of', 'honour', 'to', 'MEI', 'can', '\n', 'make', 'no', 'submissioni', 'am', 'grow', 'neither', 'humble', 'nor', '\n', 'penitent', 'by', 'what', 'have', 'passedi', 'am', 'grow', 'very', 'happy', '\n', 'but', 'that', 'would', 'not', 'interesti', 'know', 'of', 'no', 'submission', '\n', 'that', 'be', 'proper', 'for', 'I', 'to', 'make', '\n\n', 'you', 'may', 'certainly', 'ask', 'to', 'be', 'forgive', 'say', 'Elinor', '\n', 'because', 'you', 'have', 'offendedand', 'I', 'should', 'think', 'you', '\n', 'might', 'now', 'venture', 'so', 'far', 'as', 'to', 'profess', 'some', 'concern', '\n', 'for', 'having', 'ever', 'form', 'the', 'engagement', 'which', 'draw', 'on', 'you', '\n', 'your', 'mother', 'anger', '\n\n', 'he', 'agree', 'that', 'he', 'might', '\n\n', 'and', 'when', 'she', 'have', 'forgive', 'you', 'perhaps', 'a', 'little', 'humility', '\n', 'may', 'be', 'convenient', 'while', 'acknowledge', 'a', 'second', 'engagement', '\n', 'almost', 'as', 'imprudent', 'in', 'her', 'eye', 'as', 'the', 'first', '\n\n', 'he', 'have', 'nothing', 'to', 'urge', 'against', 'it', 'but', 'still', '\n', 'resist', 'the', 'idea', 'of', 'a', 'letter', 'of', 'proper', 'submission', '\n', 'and', 'therefore', 'to', 'make', 'it', 'easy', 'to', 'he', 'as', 'he', 'declare', '\n', 'a', 'much', 'great', 'willingness', 'to', 'make', 'mean', 'concession', '\n', 'by', 'word', 'of', 'mouth', 'than', 'on', 'paper', 'it', 'be', 'resolve', 'that', '\n', 'instead', 'of', 'write', 'to', 'Fanny', 'he', 'should', 'go', 'to', 'London', '\n', 'and', 'personally', 'intreat', 'her', 'good', 'office', 'in', 'his', 'favour', '\n', 'and', 'if', 'they', 'really', 'do', 'interest', 'themselves', 'say', 'Marianne', '\n', 'in', 'her', 'new', 'character', 'of', 'candour', 'in', 'bring', 'about', '\n', 'a', 'reconciliation', 'I', 'shall', 'think', 'that', 'even', 'John', 'and', 'Fanny', '\n', 'be', 'not', 'entirely', 'without', 'merit', '\n\n', 'after', 'a', 'visit', 'on', 'Colonel', 'Brandons', 'side', 'of', 'only', 'three', '\n', 'or', 'four', 'day', 'the', 'two', 'gentleman', 'quit', 'Barton', 'together', '\n', 'they', 'be', 'to', 'go', 'immediately', 'to', 'Delaford', 'that', 'Edward', '\n', 'might', 'have', 'some', 'personal', 'knowledge', 'of', 'his', 'future', 'home', '\n', 'and', 'assist', 'his', 'patron', 'and', 'friend', 'in', 'decide', 'on', 'what', '\n', 'improvement', 'be', 'need', 'to', 'it', 'and', 'from', 'thence', '\n', 'after', 'stay', 'there', 'a', 'couple', 'of', 'night', 'he', 'be', 'to', 'proceed', '\n', 'on', 'his', 'journey', 'to', 'town', '\n\n\n\n', 'chapter', '50', '\n\n\n', 'after', 'a', 'proper', 'resistance', 'on', 'the', 'part', 'of', 'Mrs', 'Ferrars', '\n', 'just', 'so', 'violent', 'and', 'so', 'steady', 'as', 'to', 'preserve', 'she', 'from', 'that', '\n', 'reproach', 'which', 'she', 'always', 'seem', 'fearful', 'of', 'incur', '\n', 'the', 'reproach', 'of', 'be', 'too', 'amiable', 'Edward', 'be', 'admit', '\n', 'to', 'her', 'presence', 'and', 'pronounce', 'to', 'be', 'again', 'her', 'son', '\n\n', 'her', 'family', 'have', 'of', 'late', 'be', 'exceedingly', 'fluctuating', '\n', 'for', 'many', 'year', 'of', 'her', 'life', 'she', 'have', 'have', 'two', 'son', '\n', 'but', 'the', 'crime', 'and', 'annihilation', 'of', 'Edward', 'a', 'few', 'week', 'ago', '\n', 'have', 'rob', 'she', 'of', 'one', 'the', 'similar', 'annihilation', 'of', 'Robert', '\n', 'have', 'leave', 'she', 'for', 'a', 'fortnight', 'without', 'any', 'and', 'now', '\n', 'by', 'the', 'resuscitation', 'of', 'Edward', 'she', 'have', 'one', 'again', '\n\n', 'in', 'spite', 'of', 'his', 'be', 'allow', 'once', 'more', 'to', 'live', '\n', 'however', 'he', 'do', 'not', 'feel', 'the', 'continuance', 'of', 'his', 'existence', '\n', 'secure', 'till', 'he', 'have', 'reveal', 'his', 'present', 'engagement', '\n', 'for', 'the', 'publication', 'of', 'that', 'circumstance', 'he', 'fear', '\n', 'might', 'give', 'a', 'sudden', 'turn', 'to', 'his', 'constitution', 'and', 'carry', '\n', 'he', 'off', 'as', 'rapidly', 'as', 'before', ' ', 'with', 'apprehensive', 'caution', '\n', 'therefore', 'it', 'be', 'reveal', 'and', 'he', 'be', 'listen', 'to', 'with', '\n', 'unexpected', 'calmness', ' ', 'Mrs', 'Ferrars', 'at', 'first', 'reasonably', '\n', 'endeavour', 'to', 'dissuade', 'he', 'from', 'marry', 'Miss', 'Dashwood', '\n', 'by', 'every', 'argument', 'in', 'her', 'powertold', 'he', 'that', 'in', 'Miss', 'Morton', '\n', 'he', 'would', 'have', 'a', 'woman', 'of', 'high', 'rank', 'and', 'large', 'fortune', '\n', 'and', 'enforce', 'the', 'assertion', 'by', 'observe', 'that', 'Miss', 'Morton', '\n', 'be', 'the', 'daughter', 'of', 'a', 'nobleman', 'with', 'thirty', 'thousand', 'pound', '\n', 'while', 'Miss', 'Dashwood', 'be', 'only', 'the', 'daughter', 'of', 'a', 'private', '\n', 'gentleman', 'with', 'no', 'more', 'than', 'three', 'but', 'when', 'she', 'find', 'that', '\n', 'though', 'perfectly', 'admit', 'the', 'truth', 'of', 'her', 'representation', '\n', 'he', 'be', 'by', 'no', 'mean', 'incline', 'to', 'be', 'guide', 'by', 'it', '\n', 'she', 'judge', 'it', 'wise', 'from', 'the', 'experience', 'of', 'the', 'past', '\n', 'to', 'submitand', 'therefore', 'after', 'such', 'an', 'ungracious', 'delay', '\n', 'as', 'she', 'owe', 'to', 'her', 'own', 'dignity', 'and', 'as', 'serve', 'to', 'prevent', '\n', 'every', 'suspicion', 'of', 'goodwill', 'she', 'issue', 'her', 'decree', '\n', 'of', 'consent', 'to', 'the', 'marriage', 'of', 'Edward', 'and', 'Elinor', '\n\n', 'what', 'she', 'would', 'engage', 'to', 'do', 'towards', 'augment', '\n', 'their', 'income', 'be', 'next', 'to', 'be', 'consider', 'and', 'here', 'it', '\n', 'plainly', 'appear', 'that', 'though', 'Edward', 'be', 'now', 'her', 'only', 'son', '\n', 'he', 'be', 'by', 'no', 'means', 'her', 'eld', 'for', 'while', 'Robert', 'be', '\n', 'inevitably', 'endow', 'with', 'a', 'thousand', 'pound', 'ayear', '\n', 'not', 'the', 'small', 'objection', 'be', 'make', 'against', 'Edwards', 'take', '\n', 'order', 'for', 'the', 'sake', 'of', 'two', 'hundred', 'and', 'fifty', 'at', 'the', 'utmost', '\n', 'nor', 'be', 'anything', 'promise', 'either', 'for', 'the', 'present', 'or', 'in', 'future', '\n', 'beyond', 'the', 'ten', 'thousand', 'pound', 'which', 'have', 'be', 'give', 'with', 'Fanny', '\n\n', 'it', 'be', 'as', 'much', 'however', 'as', 'be', 'desire', '\n', 'and', 'more', 'than', 'be', 'expect', 'by', 'Edward', 'and', 'Elinor', '\n', 'and', 'Mrs', 'Ferrars', 'herself', 'by', 'her', 'shuffle', 'excuse', '\n', 'seem', 'the', 'only', 'person', 'surprised', 'at', 'she', 'not', 'give', 'more', '\n\n', 'with', 'an', 'income', 'quite', 'sufficient', 'to', 'their', 'want', '\n', 'thus', 'secure', 'to', 'they', 'they', 'have', 'nothing', 'to', 'wait', 'for', '\n', 'after', 'Edward', 'be', 'in', 'possession', 'of', 'the', 'living', 'but', 'the', '\n', 'readiness', 'of', 'the', 'house', 'to', 'which', 'Colonel', 'Brandon', '\n', 'with', 'an', 'eager', 'desire', 'for', 'the', 'accommodation', 'of', 'Elinor', '\n', 'be', 'make', 'considerable', 'improvement', 'and', 'after', 'wait', '\n', 'some', 'time', 'for', 'their', 'completion', 'after', 'experience', '\n', 'as', 'usual', 'a', 'thousand', 'disappointment', 'and', 'delay', '\n', 'from', 'the', 'unaccountable', 'dilatoriness', 'of', 'the', 'workman', 'Elinor', '\n', 'as', 'usual', 'break', 'through', 'the', 'first', 'positive', 'resolution', '\n', 'of', 'not', 'marry', 'till', 'every', 'thing', 'be', 'ready', 'and', 'the', '\n', 'ceremony', 'take', 'place', 'in', 'Barton', 'church', 'early', 'in', 'the', 'autumn', '\n\n', 'the', 'first', 'month', 'after', 'their', 'marriage', 'be', 'spend', '\n', 'with', 'their', 'friend', 'at', 'the', 'Mansionhouse', 'from', 'whence', '\n', 'they', 'could', 'superintend', 'the', 'progress', 'of', 'the', 'Parsonage', '\n', 'and', 'direct', 'every', 'thing', 'as', 'they', 'like', 'on', 'the', 'spot', '\n', 'could', 'chuse', 'paper', 'project', 'shrubbery', 'and', 'invent', 'a', 'sweep', '\n', 'Mrs', 'Jenningss', 'prophecy', 'though', 'rather', 'jumble', 'together', '\n', 'be', 'chiefly', 'fulfil', 'for', 'she', 'be', 'able', 'to', 'visit', 'Edward', '\n', 'and', 'his', 'wife', 'in', 'their', 'parsonage', 'by', 'Michaelmas', 'and', 'she', '\n', 'find', 'in', 'Elinor', 'and', 'her', 'husband', 'as', 'she', 'really', 'believe', '\n', 'one', 'of', 'the', 'happy', 'couple', 'in', 'the', 'world', ' ', 'they', 'have', '\n', 'in', 'fact', 'nothing', 'to', 'wish', 'for', 'but', 'the', 'marriage', 'of', 'Colonel', '\n', 'Brandon', 'and', 'Marianne', 'and', 'rather', 'well', 'pasturage', 'for', '\n', 'their', 'cow', '\n\n', 'they', 'be', 'visit', 'on', 'their', 'first', 'settle', 'by', 'almost', '\n', 'all', 'their', 'relation', 'and', 'friend', ' ', 'Mrs', 'Ferrars', 'come', '\n', 'to', 'inspect', 'the', 'happiness', 'which', 'she', 'be', 'almost', 'ashamed', '\n', 'of', 'having', 'authorise', 'and', 'even', 'the', 'Dashwoods', 'be', 'at', '\n', 'the', 'expense', 'of', 'a', 'journey', 'from', 'Sussex', 'to', 'do', 'they', 'honour', '\n\n', 'I', 'will', 'not', 'say', 'that', 'I', 'be', 'disappoint', 'my', 'dear', 'sister', '\n', 'say', 'John', 'as', 'they', 'be', 'walk', 'together', 'one', 'morning', 'before', '\n', 'the', 'gate', 'of', 'Delaford', 'House', 'that', 'would', 'be', 'say', 'too', 'much', '\n', 'for', 'certainly', 'you', 'have', 'be', 'one', 'of', 'the', 'most', 'fortunate', 'young', '\n', 'woman', 'in', 'the', 'world', 'as', 'it', 'be', ' ', 'but', 'I', 'confess', 'it', 'would', '\n', 'give', 'I', 'great', 'pleasure', 'to', 'call', 'Colonel', 'Brandon', 'brother', '\n', 'his', 'property', 'here', 'his', 'place', 'his', 'house', 'every', 'thing', 'be', 'in', '\n', 'such', 'respectable', 'and', 'excellent', 'conditionand', 'his', 'woodsI', '\n', 'have', 'not', 'see', 'such', 'timber', 'any', 'where', 'in', 'Dorsetshire', 'as', 'there', '\n', 'be', 'now', 'stand', 'in', 'Delaford', 'HangerAnd', 'though', 'perhaps', '\n', 'Marianne', 'may', 'not', 'seem', 'exactly', 'the', 'person', 'to', 'attract', 'he', '\n', 'yet', 'I', 'think', 'it', 'would', 'altogether', 'be', 'advisable', 'for', 'you', 'to', '\n', 'have', 'they', 'now', 'frequently', 'stay', 'with', 'you', 'for', 'as', 'Colonel', '\n', 'Brandon', 'seem', 'a', 'great', 'deal', 'at', 'home', 'nobody', 'can', 'tell', 'what', '\n', 'may', 'happenfor', 'when', 'people', 'be', 'much', 'throw', 'together', '\n', 'and', 'see', 'little', 'of', 'anybody', 'elseand', 'it', 'will', 'always', 'be', '\n', 'in', 'your', 'power', 'to', 'set', 'she', 'off', 'to', 'advantage', 'and', 'so', 'forth', '\n', 'in', 'short', 'you', 'may', 'as', 'well', 'give', 'she', 'a', 'chanceyou', 'understand', '\n', 'I', '\n\n', 'but', 'though', 'Mrs', 'Ferrars', 'do', 'come', 'to', 'see', 'they', 'and', 'always', '\n', 'treat', 'they', 'with', 'the', 'makebelieve', 'of', 'decent', 'affection', '\n', 'they', 'be', 'never', 'insult', 'by', 'her', 'real', 'favour', 'and', 'preference', '\n', 'that', 'be', 'due', 'to', 'the', 'folly', 'of', 'Robert', 'and', 'the', 'cunning', '\n', 'of', 'his', 'wife', 'and', 'it', 'be', 'earn', 'by', 'they', 'before', 'many', 'month', '\n', 'have', 'pass', 'away', ' ', 'the', 'selfish', 'sagacity', 'of', 'the', 'latter', '\n', 'which', 'have', 'at', 'first', 'draw', 'Robert', 'into', 'the', 'scrape', '\n', 'be', 'the', 'principal', 'instrument', 'of', 'his', 'deliverance', 'from', 'it', '\n', 'for', 'her', 'respectful', 'humility', 'assiduous', 'attention', '\n', 'and', 'endless', 'flattery', 'as', 'soon', 'as', 'the', 'small', 'opening', '\n', 'be', 'give', 'for', 'their', 'exercise', 'reconcile', 'Mrs', 'Ferrars', '\n', 'to', 'his', 'choice', 'and', 'reestablish', 'he', 'completely', 'in', '\n', 'her', 'favour', '\n\n', 'the', 'whole', 'of', 'Lucys', 'behaviour', 'in', 'the', 'affair', '\n', 'and', 'the', 'prosperity', 'which', 'crown', 'it', 'therefore', 'may', 'be', 'hold', '\n', 'forth', 'as', 'a', 'most', 'encouraging', 'instance', 'of', 'what', 'an', 'earnest', '\n', 'an', 'uncease', 'attention', 'to', 'selfinterest', 'however', 'its', 'progress', '\n', 'may', 'be', 'apparently', 'obstruct', 'will', 'do', 'in', 'secure', 'every', '\n', 'advantage', 'of', 'fortune', 'with', 'no', 'other', 'sacrifice', 'than', 'that', 'of', 'time', '\n', 'and', 'conscience', ' ', 'when', 'Robert', 'first', 'seek', 'her', 'acquaintance', '\n', 'and', 'privately', 'visit', 'she', 'in', 'Bartletts', 'Buildings', '\n', 'it', 'be', 'only', 'with', 'the', 'view', 'impute', 'to', 'he', 'by', 'his', 'brother', '\n', 'he', 'merely', 'mean', 'to', 'persuade', 'she', 'to', 'give', 'up', 'the', 'engagement', '\n', 'and', 'as', 'there', 'could', 'be', 'nothing', 'to', 'overcome', 'but', 'the', 'affection', '\n', 'of', 'both', 'he', 'naturally', 'expect', 'that', 'one', 'or', 'two', 'interview', '\n', 'would', 'settle', 'the', 'matter', ' ', 'in', 'that', 'point', 'however', '\n', 'and', 'that', 'only', 'he', 'erredfor', 'though', 'Lucy', 'soon', 'give', 'he', '\n', 'hope', 'that', 'his', 'eloquence', 'would', 'convince', 'she', 'in', 'TIME', '\n', 'another', 'visit', 'another', 'conversation', 'be', 'always', 'want', '\n', 'to', 'produce', 'this', 'conviction', ' ', 'some', 'doubt', 'always', 'linger', '\n', 'in', 'her', 'mind', 'when', 'they', 'part', 'which', 'could', 'only', 'be', '\n', 'remove', 'by', 'another', 'half', 'hour', 'discourse', 'with', 'himself', '\n', 'his', 'attendance', 'be', 'by', 'this', 'mean', 'secure', 'and', 'the', 'rest', '\n', 'follow', 'in', 'course', ' ', 'instead', 'of', 'talk', 'of', 'Edward', '\n', 'they', 'come', 'gradually', 'to', 'talk', 'only', 'of', 'Roberta', 'subject', '\n', 'on', 'which', 'he', 'have', 'always', 'more', 'to', 'say', 'than', 'on', 'any', 'other', '\n', 'and', 'in', 'which', 'she', 'soon', 'betray', 'an', 'interest', 'even', 'equal', '\n', 'to', 'his', 'own', 'and', 'in', 'short', 'it', 'become', 'speedily', 'evident', '\n', 'to', 'both', 'that', 'he', 'have', 'entirely', 'supplant', 'his', 'brother', '\n', 'he', 'be', 'proud', 'of', 'his', 'conquest', 'proud', 'of', 'trick', 'Edward', '\n', 'and', 'very', 'proud', 'of', 'marry', 'privately', 'without', 'his', '\n', 'mother', 'consent', ' ', 'what', 'immediately', 'follow', 'be', 'know', '\n', 'they', 'pass', 'some', 'month', 'in', 'great', 'happiness', 'at', 'Dawlish', '\n', 'for', 'she', 'have', 'many', 'relation', 'and', 'old', 'acquaintance', 'to', '\n', 'cutand', 'he', 'draw', 'several', 'plan', 'for', 'magnificent', 'cottage', '\n', 'and', 'from', 'thence', 'return', 'to', 'town', 'procure', 'the', 'forgiveness', '\n', 'of', 'Mrs', 'Ferrars', 'by', 'the', 'simple', 'expedient', 'of', 'ask', 'it', '\n', 'which', 'at', 'Lucys', 'instigation', 'be', 'adopt', ' ', 'the', 'forgiveness', '\n', 'at', 'first', 'indeed', 'as', 'be', 'reasonable', 'comprehend', 'only', 'Robert', '\n', 'and', 'Lucy', 'who', 'have', 'owe', 'his', 'mother', 'no', 'duty', 'and', 'therefore', '\n', 'could', 'have', 'transgress', 'none', 'still', 'remain', 'some', 'week', '\n', 'long', 'unpardoned', ' ', 'but', 'perseverance', 'in', 'humility', 'of', 'conduct', '\n', 'and', 'message', 'in', 'selfcondemnation', 'for', 'Roberts', 'offence', '\n', 'and', 'gratitude', 'for', 'the', 'unkindness', 'she', 'be', 'treat', 'with', '\n', 'procure', 'she', 'in', 'time', 'the', 'haughty', 'notice', 'which', 'overcome', '\n', 'she', 'by', 'its', 'graciousness', 'and', 'lead', 'soon', 'afterwards', 'by', 'rapid', '\n', 'degree', 'to', 'the', 'high', 'state', 'of', 'affection', 'and', 'influence', '\n', 'Lucy', 'become', 'as', 'necessary', 'to', 'Mrs', 'Ferrars', 'as', 'either', 'Robert', '\n', 'or', 'Fanny', 'and', 'while', 'Edward', 'be', 'never', 'cordially', 'forgive', '\n', 'for', 'having', 'once', 'intend', 'to', 'marry', 'she', 'and', 'Elinor', '\n', 'though', 'superior', 'to', 'she', 'in', 'fortune', 'and', 'birth', 'be', 'speak', '\n', 'of', 'as', 'an', 'intruder', 'she', 'be', 'in', 'every', 'thing', 'consider', '\n', 'and', 'always', 'openly', 'acknowledge', 'to', 'be', 'a', 'favourite', 'child', '\n', 'they', 'settle', 'in', 'town', 'receive', 'very', 'liberal', 'assistance', '\n', 'from', 'Mrs', 'Ferrars', 'be', 'on', 'the', 'good', 'term', 'imaginable', '\n', 'with', 'the', 'Dashwoods', 'and', 'set', 'aside', 'the', 'jealousy', '\n', 'and', 'illwill', 'continually', 'subsist', 'between', 'Fanny', 'and', 'Lucy', '\n', 'in', 'which', 'their', 'husband', 'of', 'course', 'take', 'a', 'part', 'as', 'well', '\n', 'as', 'the', 'frequent', 'domestic', 'disagreement', 'between', 'Robert', 'and', '\n', 'Lucy', 'themselves', 'nothing', 'could', 'exceed', 'the', 'harmony', 'in', 'which', '\n', 'they', 'all', 'live', 'together', '\n\n', 'what', 'Edward', 'have', 'do', 'to', 'forfeit', 'the', 'right', 'of', 'eld', '\n', 'son', 'might', 'have', 'puzzle', 'many', 'people', 'to', 'find', 'out', 'and', 'what', '\n', 'Robert', 'have', 'do', 'to', 'succeed', 'to', 'it', 'might', 'have', 'puzzle', 'they', '\n', 'still', 'more', ' ', 'it', 'be', 'an', 'arrangement', 'however', 'justify', 'in', '\n', 'its', 'effect', 'if', 'not', 'in', 'its', 'cause', 'for', 'nothing', 'ever', '\n', 'appear', 'in', 'Roberts', 'style', 'of', 'living', 'or', 'of', 'talk', 'to', 'give', '\n', 'a', 'suspicion', 'of', 'his', 'regret', 'the', 'extent', 'of', 'his', 'income', '\n', 'as', 'either', 'leave', 'his', 'brother', 'too', 'little', 'or', 'bring', '\n', 'himself', 'too', 'muchand', 'if', 'Edward', 'might', 'be', 'judge', 'from', '\n', 'the', 'ready', 'discharge', 'of', 'his', 'duty', 'in', 'every', 'particular', '\n', 'from', 'an', 'increase', 'attachment', 'to', 'his', 'wife', 'and', 'his', 'home', '\n', 'and', 'from', 'the', 'regular', 'cheerfulness', 'of', 'his', 'spirit', '\n', 'he', 'might', 'be', 'suppose', 'no', 'less', 'content', 'with', 'his', 'lot', '\n', 'no', 'less', 'free', 'from', 'every', 'wish', 'of', 'an', 'exchange', '\n\n', 'Elinors', 'marriage', 'divide', 'she', 'as', 'little', 'from', 'her', '\n', 'family', 'as', 'could', 'well', 'be', 'contrive', 'without', 'render', '\n', 'the', 'cottage', 'at', 'Barton', 'entirely', 'useless', 'for', 'her', 'mother', '\n', 'and', 'sister', 'spend', 'much', 'more', 'than', 'half', 'their', 'time', 'with', 'her', '\n', 'Mrs', 'Dashwood', 'be', 'act', 'on', 'motive', 'of', 'policy', 'as', 'well', '\n', 'as', 'pleasure', 'in', 'the', 'frequency', 'of', 'her', 'visit', 'at', 'Delaford', '\n', 'for', 'her', 'wish', 'of', 'bring', 'Marianne', 'and', 'Colonel', 'Brandon', 'together', '\n', 'be', 'hardly', 'less', 'earnest', 'though', 'rather', 'more', 'liberal', 'than', '\n', 'what', 'John', 'have', 'express', ' ', 'it', 'be', 'now', 'her', 'darling', 'object', '\n', 'precious', 'as', 'be', 'the', 'company', 'of', 'her', 'daughter', 'to', 'her', '\n', 'she', 'desire', 'nothing', 'so', 'much', 'as', 'to', 'give', 'up', 'its', 'constant', '\n', 'enjoyment', 'to', 'her', 'value', 'friend', 'and', 'to', 'see', 'Marianne', 'settle', 'at', '\n', 'the', 'mansionhouse', 'be', 'equally', 'the', 'wish', 'of', 'Edward', 'and', 'Elinor', '\n', 'they', 'each', 'feel', 'his', 'sorrow', 'and', 'their', 'own', 'obligation', '\n', 'and', 'Marianne', 'by', 'general', 'consent', 'be', 'to', 'be', 'the', 'reward', '\n', 'of', 'all', '\n\n', 'with', 'such', 'a', 'confederacy', 'against', 'herwith', 'a', 'knowledge', '\n', 'so', 'intimate', 'of', 'his', 'goodnesswith', 'a', 'conviction', 'of', 'his', 'fond', '\n', 'attachment', 'to', 'herself', 'which', 'at', 'last', 'though', 'long', 'after', 'it', '\n', 'be', 'observable', 'to', 'everybody', 'elseburst', 'on', 'herwhat', 'could', 'she', '\n', 'do', '\n\n', 'Marianne', 'Dashwood', 'be', 'bear', 'to', 'an', 'extraordinary', 'fate', '\n', 'she', 'be', 'bear', 'to', 'discover', 'the', 'falsehood', 'of', 'her', 'own', 'opinion', '\n', 'and', 'to', 'counteract', 'by', 'her', 'conduct', 'her', 'most', 'favourite', 'maxim', '\n', 'she', 'be', 'bear', 'to', 'overcome', 'an', 'affection', 'form', 'so', 'late', '\n', 'in', 'life', 'as', 'at', 'seventeen', 'and', 'with', 'no', 'sentiment', '\n', 'superior', 'to', 'strong', 'esteem', 'and', 'lively', 'friendship', '\n', 'voluntarily', 'to', 'give', 'her', 'hand', 'to', 'anotherand', 'that', 'other', '\n', 'a', 'man', 'who', 'have', 'suffer', 'no', 'less', 'than', 'herself', 'under', 'the', '\n', 'event', 'of', 'a', 'former', 'attachment', 'whom', 'two', 'year', 'before', '\n', 'she', 'have', 'consider', 'too', 'old', 'to', 'be', 'marriedand', 'who', 'still', '\n', 'seek', 'the', 'constitutional', 'safeguard', 'of', 'a', 'flannel', 'waistcoat', '\n\n', 'but', 'so', 'it', 'be', ' ', 'instead', 'of', 'fall', 'a', 'sacrifice', '\n', 'to', 'an', 'irresistible', 'passion', 'as', 'once', 'she', 'have', 'fondly', '\n', 'flatter', 'herself', 'with', 'expectinginstead', 'of', 'remain', '\n', 'even', 'for', 'ever', 'with', 'her', 'mother', 'and', 'find', 'she', 'only', '\n', 'pleasure', 'in', 'retirement', 'and', 'study', 'as', 'afterwards', 'in', 'her', '\n', 'more', 'calm', 'and', 'sober', 'judgment', 'she', 'have', 'determine', 'on', '\n', 'she', 'find', 'herself', 'at', 'nineteen', 'submit', 'to', 'new', 'attachment', '\n', 'enter', 'on', 'new', 'duty', 'place', 'in', 'a', 'new', 'home', 'a', 'wife', '\n', 'the', 'mistress', 'of', 'a', 'family', 'and', 'the', 'patroness', 'of', 'a', 'village', '\n\n', 'Colonel', 'Brandon', 'be', 'now', 'as', 'happy', 'as', 'all', 'those', 'who', 'well', '\n', 'love', 'he', 'believe', 'he', 'deserve', 'to', 'bein', 'Marianne', 'he', '\n', 'be', 'console', 'for', 'every', 'past', 'afflictionher', 'regard', 'and', 'her', '\n', 'society', 'restore', 'his', 'mind', 'to', 'animation', 'and', 'his', 'spirit', '\n', 'to', 'cheerfulness', 'and', 'that', 'Marianne', 'find', 'her', 'own', 'happiness', '\n', 'in', 'form', 'his', 'be', 'equally', 'the', 'persuasion', 'and', 'delight', '\n', 'of', 'each', 'observe', 'friend', ' ', 'Marianne', 'could', 'never', 'love', '\n', 'by', 'half', 'and', 'her', 'whole', 'heart', 'become', 'in', 'time', 'as', 'much', '\n', 'devoted', 'to', 'her', 'husband', 'as', 'it', 'have', 'once', 'be', 'to', 'Willoughby', '\n\n', 'Willoughby', 'could', 'not', 'hear', 'of', 'her', 'marriage', 'without', '\n', 'a', 'pang', 'and', 'his', 'punishment', 'be', 'soon', 'afterwards', 'complete', '\n', 'in', 'the', 'voluntary', 'forgiveness', 'of', 'Mrs', 'Smith', 'who', 'by', 'state', '\n', 'his', 'marriage', 'with', 'a', 'woman', 'of', 'character', 'as', 'the', 'source', '\n', 'of', 'her', 'clemency', 'give', 'he', 'reason', 'for', 'believe', 'that', 'have', 'he', '\n', 'behave', 'with', 'honour', 'towards', 'Marianne', 'he', 'might', 'at', 'once', 'have', '\n', 'be', 'happy', 'and', 'rich', ' ', 'that', 'his', 'repentance', 'of', 'misconduct', '\n', 'which', 'thus', 'bring', 'its', 'own', 'punishment', 'be', 'sincere', '\n', 'need', 'not', 'be', 'doubtednor', 'that', 'he', 'long', 'think', 'of', 'Colonel', '\n', 'Brandon', 'with', 'envy', 'and', 'of', 'Marianne', 'with', 'regret', ' ', 'but', 'that', '\n', 'he', 'be', 'for', 'ever', 'inconsolable', 'that', 'he', 'flee', 'from', 'society', '\n', 'or', 'contract', 'an', 'habitual', 'gloom', 'of', 'temper', 'or', 'die', 'of', 'a', '\n', 'break', 'heart', 'must', 'not', 'be', 'depend', 'onfor', 'he', 'do', 'neither', '\n', 'he', 'live', 'to', 'exert', 'and', 'frequently', 'to', 'enjoy', 'himself', '\n', 'his', 'wife', 'be', 'not', 'always', 'out', 'of', 'humour', 'nor', 'his', 'home', '\n', 'always', 'uncomfortable', 'and', 'in', 'his', 'breed', 'of', 'horse', 'and', 'dog', '\n', 'and', 'in', 'sporting', 'of', 'every', 'kind', 'he', 'find', 'no', 'inconsiderable', '\n', 'degree', 'of', 'domestic', 'felicity', '\n\n', 'for', 'Marianne', 'howeverin', 'spite', 'of', 'his', 'incivility', '\n', 'in', 'survive', 'her', 'losshe', 'always', 'retain', 'that', 'decide', '\n', 'regard', 'which', 'interest', 'he', 'in', 'every', 'thing', 'that', 'befell', 'she', '\n', 'and', 'make', 'she', 'his', 'secret', 'standard', 'of', 'perfection', 'in', 'woman', '\n', 'and', 'many', 'a', 'rise', 'beauty', 'would', 'be', 'slight', 'by', 'he', 'in', '\n', 'afterday', 'as', 'bear', 'no', 'comparison', 'with', 'Mrs', 'Brandon', '\n\n', 'Mrs', 'Dashwood', 'be', 'prudent', 'enough', 'to', 'remain', 'at', 'the', 'cottage', '\n', 'without', 'attempt', 'a', 'removal', 'to', 'Delaford', 'and', 'fortunately', 'for', '\n', 'Sir', 'John', 'and', 'Mrs', 'Jennings', 'when', 'Marianne', 'be', 'take', 'from', 'they', '\n', 'Margaret', 'have', 'reach', 'an', 'age', 'highly', 'suitable', 'for', 'dancing', '\n', 'and', 'not', 'very', 'ineligible', 'for', 'be', 'suppose', 'to', 'have', 'a', 'lover', '\n\n', 'between', 'Barton', 'and', 'Delaford', 'there', 'be', 'that', 'constant', '\n', 'communication', 'which', 'strong', 'family', 'affection', 'would', '\n', 'naturally', 'dictateand', 'among', 'the', 'merit', 'and', 'the', 'happiness', '\n', 'of', 'Elinor', 'and', 'Marianne', 'let', 'it', 'not', 'be', 'rank', 'as', 'the', 'least', '\n', 'considerable', 'that', 'though', 'sister', 'and', 'live', 'almost', 'within', '\n', 'sight', 'of', 'each', 'other', 'they', 'could', 'live', 'without', 'disagreement', '\n', 'between', 'themselves', 'or', 'produce', 'coolness', 'between', 'their', 'husband', '\n\n', 'the', 'END', '\n\n\n']
# Question 1a
# penn treebank pos
from nltk import FreqDist
def pos_nltk_counts (pos_tag, text):
pos_words = [word for word, tag in text if tag == pos_tag]
total_words = len(pos_words)
freq_dist = FreqDist(pos_words)
word_counts = dict(freq_dist)
percent_counts = {word: count/total_words for word, count in word_counts.items()}
return total_words, word_counts, percent_counts
# from here I picked some tags to show data for
# you can see the words in the pos tag, a count of how many of each
# exist, and percentages of how much that word makes up the pos tag
#formula should work for all words in any tag
pos_nltk_counts("NN", sense_pos)
pos_tag = "NN"
total_words, word_counts, percent_counts = pos_nltk_counts(pos_tag, sense_pos)
print("Word counts:", word_counts)
Word counts: {'\ufeffThe': 1, 'eBook': 10, 'use': 26, 'anyone': 5, 'world': 89, 'cost': 6, 'online': 3, 'www.gutenberg.org': 4, 'country': 35, 'Title': 1, 'Sense': 1, '[': 1, 'proofreading': 1, 'correction': 1, 'etext': 1, 'CHAPTER': 33, 'family': 81, 'estate': 19, 'residence': 7, 'centre': 2, 'property': 11, 'manner': 56, 'opinion': 63, 'acquaintance': 64, 'owner': 5, 'man': 117, 'age': 18, 'life': 53, 'companion': 19, 'housekeeper': 5, 'sister': 253, 'death': 11, 'alteration': 16, 'home': 66, 'loss': 19, 'house': 145, 'inheritor': 1, 'person': 71, 'society': 24, 'nephew': 2, 'niece': 3, 'attachment': 34, 'attention': 58, 'interest': 44, 'goodness': 7, 'heart': 122, 'degree': 12, 'comfort': 57, 'cheerfulness': 15, 'relish': 1, 'existence': 7, 'marriage': 43, 'son': 31, 'lady': 42, 'fortune': 36, 'mother': 247, 'half': 17, 'coming': 3, 'likewise': 7, 'wealth': 6, 'succession': 3, 'father': 29, '’': 144, 's': 333, 'nothing': 162, 'disposal': 5, 'moiety': 1, 'wife': 48, 'child': 39, 'life-interest': 1, 'gentleman': 23, 'disappointment': 21, 'pleasure': 65, 'value': 7, 'sake': 28, '—but': 11, 'way': 72, 'power': 44, 'provision': 5, 'charge': 9, 'sale': 1, 'whole': 29, 'benefit': 3, 'uncle': 16, 'articulation': 1, 'desire': 19, 'deal': 33, 'noise': 6, 'mark': 6, 'affection': 78, 'temper': 19, 'sanguine': 1, 'lay': 5, 'sum': 10, 'produce': 1, 'improvement': 8, 'twelvemonth': 6, 'widow': 5, 'danger': 22, 'strength': 8, 'urgency': 1, 'illness': 11, 'mother-in-law': 9, 'rest': 47, 'recommendation': 4, 'nature': 23, 'time': 233, 'thing': 182, 'assurance': 13, 'leisure': 12, 'propriety': 13, 'discharge': 2, 'woman': 64, '—he': 3, 'fond': 20, 'caricature': 1, 'promise': 21, 'present': 5, 'prospect': 15, 'thousand': 4, 'a-year': 4, 'addition': 7, 'income': 22, 'generosity': 6, '”': 295, 'day': 141, 'sooner': 10, 'funeral': 1, 'notice': 24, 'intention': 6, 'one': 30, 'right': 14, 'husband': 41, 'moment': 95, 'decease': 1, 'indelicacy': 1, 'conduct': 35, 'situation': 53, 'mind': 94, 'sense': 30, 'honor': 2, 'offence': 13, 'kind': 94, 'whomsoever': 1, 'source': 7, 'disgust': 2, 'opportunity': 28, 'occasion': 23, 'behaviour': 62, 'daughter-in-law': 5, 'arrival': 34, 'latter': 18, 'entreaty': 5, 'girl': 30, 'tender': 10, 'love': 45, 'breach': 5, 'brother': 77, 'daughter': 38, 'advice': 10, 'understanding': 9, 'coolness': 3, 'judgment': 30, 'counsellor': 1, 'advantage': 20, 'eagerness': 11, 'imprudence': 11, 'disposition': 20, 'knowledge': 28, 'clever': 1, 'everything': 15, 'moderation': 2, 'prudent': 1, 'resemblance': 11, 'concern': 27, 'excess': 7, 'sensibility': 8, 'violence': 3, 'affliction': 16, 'agony': 8, 'grief': 11, 'sorrow': 10, 'increase': 9, 'wretchedness': 5, 'reflection': 12, 'consolation': 14, 'sister-in-law': 10, 'exertion': 21, 'forbearance': 4, 'romance': 1, 'fair': 2, 'period': 6, 'mistress': 11, 'sisters-in-law': 1, 'condition': 10, 'civility': 16, 'kindness': 39, 'anybody': 11, 'earnestness': 8, 'plan': 21, 'neighbourhood': 10, 'invitation': 32, 'continuance': 9, 'place': 76, 'delight': 24, 'possess': 2, 'expectation': 26, 'happiness': 63, 'fancy': 19, 'alloy': 1, 'approve': 1, 'boy': 5, 'subject': 63, 'claim': 5, 'blood': 2, 'relationship': 3, 'amount': 4, 'money': 27, 'request': 10, 'daughters.': 1, 'child.': 1, 'home.': 1, 'something': 68, 'boy—': 1, 'difference': 19, 'instance': 7, 'addition.': 1, '“': 434, 'anything': 26, 'earth': 5, '—But': 4, 'spirit': 16, 'mean': 3, 'enough': 7, 'more.': 1, '_they_': 2, 'question': 24, 'mine': 14, 'woman.': 2, 'pounds.': 1, 'them—something': 1, 'annuity': 4, 'year': 33, 'consent': 10, 'in.': 1, 'forty': 3, 'business': 43, 'trouble': 13, 'payment': 3, 'restriction': 1, 'abhorrence': 3, 'world.': 5, 'rent': 3, 'independence.': 1, 'secure': 8, 'gratitude': 18, 'discretion': 6, 'expenses.': 1, 'case': 32, 'assistance': 15, 'allowance': 4, 'style': 17, 'sure': 3, 'richer': 1, 'end': 47, 'truth': 26, 'idea': 23, 'game': 6, 'season': 5, 'course': 31, 'board': 2, 'housekeeping': 2, 'carriage': 40, 'company': 29, 'something.': 1, 'word': 46, 'engagement': 60, 'furniture': 10, 'china': 4, 'plate': 3, 'linen': 3, 'consideration': 12, 'legacy': 2, 'stock': 1, 'here.': 2, 'set': 3, 'breakfast': 15, 'argument': 3, 'decision': 4, 'disinclination': 2, 'sight': 17, 'well': 2, 'spot': 9, 'emotion': 20, 'while': 10, 'dwelling': 3, 'ease': 16, 'prudence': 8, 'part': 52, 'favour': 26, 'sincerity': 8, 'satisfaction': 37, 'herself': 28, 'affluence': 2, 'merit': 11, 'welfare': 4, 'liberality': 7, 'contempt': 6, 'character': 32, 'spite': 35, 'politeness': 14, 'side': 54, 'circumstance': 19, 'eligibility': 2, 'establishment': 7, 'intimacy': 10, 'trifling': 1, 'partiality': 10, 'doctrine': 3, 'asunder': 1, 'comprehension': 2, 'address': 19, 'justice': 12, 'shyness': 3, 'indication': 2, 'education': 10, 'figure': 8, 'parliament': 1, 'ambition': 2, 'barouche': 2, 'turn': 7, 'quiet': 3, 'careless': 3, 'conversation': 37, 'contrast': 3, 'him.': 8, 'smile': 16, 'sentiment': 4, 'approbation': 13, 'inferior': 1, 'esteem': 12, 'love.': 1, 'reserve': 9, 'persuasion': 13, 'regard': 43, 'penetration': 3, 'worth': 7, 'quietness': 2, 'affectionate': 6, 'symptom': 5, 'probability': 13, 'separation': 9, 'choice': 10, 'surprise': 35, 'none': 18, 'grace': 2, 'fire': 15, 'virtue': 2, 'intelligence': 17, 'taste': 26, 'admiration': 21, 'fact': 12, 'matter': 46, 'lover': 10, 'connoisseur': 1, 'point': 34, 'coincide': 1, 'music': 17, 'mama': 6, 'spiritless': 2, 'tame': 2, 'night': 33, 'composure': 17, 'seat': 9, 'calmness': 17, 'indifference': 19, 'prose': 1, 'charm.': 1, 'despair': 4, 'destiny': 1, 'pity': 15, 'drawing.': 1, 'deficient': 4, 'learning': 1, 'picture': 10, 'simplicity': 4, 'mistake': 9, 'account': 37, 'length': 10, 'praise': 16, 'minuter': 2, 'commendation': 7, 'doubt': 30, 'excellence': 2, 'principle': 4, 'literature': 1, 'venture': 8, 'enjoyment': 19, 'imagination': 12, 'observation': 17, 'delicate': 2, 'pure': 1, 'respect': 21, 'upon': 5, 'handsome': 3, 'expression': 12, 'sweetness': 4, 'countenance': 27, 'imperfection': 1, 'face': 25, 'heart.': 4, 'declaration': 5, 'sorry': 1, 'warmth': 15, 'speaking': 7, 'certainty': 3, 'conviction': 21, 'agreeable': 1, 'next—that': 1, 'state': 31, 'him—that': 1, 'forth': 17, 'Elinor': 4, 'room': 97, 'moment.': 3, 'hope': 26, 'believe': 2, 'extent': 6, 'encouragement': 14, 'preference': 7, 'inclination': 16, 'mention': 4, 'rank.': 1, 'delay': 12, 'favourite': 7, 'pursuit': 4, 'felicity': 5, 'genius': 4, 'want': 26, 'spoke': 5, 'inquietude': 1, 'dejection': 3, 'cause': 15, 'dependent': 1, 'indulgence': 4, 'comfortable': 1, 'aggrandizement': 1, 'result': 8, 'her': 5, 'longer': 3, 'friendship': 17, 'uncivil': 1, 'resolution': 25, 'endeavor': 1, 'answer': 24, 'inconvenience': 12, 'expense': 14, 'removal': 11, 'week': 33, 'letter': 75, 'post': 7, 'proposal': 6, 'offer': 9, 'relation': 14, 'consequence': 17, 'accommodation': 7, 'need': 6, 'cottage': 54, 'garden': 11, 'whence': 5, 'parish': 2, 'cousin': 13, 'deliberation': 1, 'inquiry': 19, 'county': 4, 'objection': 12, 'belonging': 1, 'evil': 9, 'object': 28, 'blessing': 3, 'comparison': 13, 'misery': 27, 'guest': 3, 'acknowledgment': 4, 'acceptance': 3, 'distance': 12, 'head': 35, 'scale': 1, 'charm': 1, 'vicinity': 1, 'attempt': 5, 'acquiescence': 2, 'son-in-law': 3, 'inhabiting': 1, 'voice': 51, 'explanation': 13, 'Devonshire': 1, 'hence': 2, 'difficulty': 18, 'them.': 4, 'resolve': 1, 'effect': 23, 'disapprobation': 1, 'match': 14, 'service': 9, 'performance': 8, 'arrangement': 6, 'water': 4, 'household': 3, 'pianoforte': 6, 'sigh': 8, 'article': 2, 'possession': 12, 'agreement': 19, 'future': 18, 'west': 1, 'wisdom': 1, 'number': 11, 'visitor': 8, 'description': 3, 'curiosity': 24, 'diminution': 2, 'departure': 7, 'accomplishment': 2, 'drift': 1, 'discourse': 19, 'maintenance': 2, 'purse': 1, 'calculation': 1, 'design': 10, 'abode': 5, 'journey': 22, 'adieus': 2, 'evening': 49, 'learn': 1, '—Oh': 3, '—And': 2, 'same.—No': 1, 'leaf': 1, 'branch': 1, 'become': 1, '—No': 2, 'regret': 15, 'change': 22, 'shade': 3, 'appearance': 28, 'view': 19, 'fertile': 1, 'pasture': 1, 'mile': 4, 'court': 3, 'demesne': 1, 'front': 4, 'wicket': 1, 'gate': 5, 'building': 4, 'roof': 3, 'window': 21, 'passage': 6, 'behind': 1, 'entrance': 18, 'repair': 2, 'recollection': 17, 'joy': 23, 'weather': 18, 'impression': 7, 'woody': 1, 'village': 10, 'valley': 10, 'direction': 10, 'name': 41, 'size': 7, 'elegance': 19, 'spring': 4, 'plenty': 2, 'remainder': 1, 'drawing': 2, 'above': 1, 'sitting': 1, 'landlord': 1, 'theirs': 1, 'solicitude': 12, 'living': 28, 'perseverance': 2, 'hour': 33, 'basket': 6, 'stuff': 1, 'fruit': 1, 'park': 30, 'newspaper': 5, 'message': 8, 'visit': 49, 'ladyship': 8, 'tall': 2, 'striking': 1, 'graceful': 1, 'share': 22, 'frankness': 3, 'remark': 6, 'precaution': 2, 'extremity': 2, 'beauty': 21, 'party': 48, 'particular': 5, 'body': 51, 'projection': 1, 'hill': 7, 'hospitality': 1, 'gratification': 2, 'talent': 1, 'compass': 1, 'sportsman': 3, 'shot': 2, 'round': 15, 'exercise': 5, 'breeding': 1, 'table': 20, 'vanity': 12, 'noisier': 1, 'summer': 3, 'ham': 1, 'winter': 5, 'appetite': 2, 'fifteen': 1, 'captivating': 1, 'friendliness': 2, 'sex': 7, 'manor': 1, 'door': 36, 'friend': 52, 'smallness': 3, 'morning': 82, 'merry': 2, 'fat': 1, 'vulgar': 3, 'laughter': 3, 'dinner': 21, 'raillery': 6, 'grave': 9, 'bachelor': 3, 'thirty': 5, 'insipidity': 4, 'gravity': 5, 'mirth': 4, 'noisy': 3, 'instrument': 7, 'chief': 5, 'position': 1, 'event': 24, 'song': 4, 'loud': 1, 'order': 3, 'compliment': 6, 'shameless': 1, 'insensibility': 1, 'acuteness': 2, 'feeling': 13, 'colonel': 3, 'humanity': 2, 'jointure': 2, 'promotion': 2, 'ability': 3, 'discovery': 7, 'discernment': 2, 'listening': 1, '_he_': 2, 'connection': 21, 'pretty': 3, 'understood': 1, 'absurdity': 4, 'impertinence': 5, 'ridicule': 3, 'accusation': 1, 'sensation': 2, 'wit': 6, 'infirmity': 2, 'Infirmity': 1, 'infirm': 1, 'limbs': 2, 'complain': 1, 'rheumatism': 1, 'dearest': 3, 'rate': 7, 'terror': 3, 'decay': 2, 'miracle': 1, 'matrimony.': 1, 'matrimony': 1, 'chance': 21, 'happen': 1, 'nurse': 5, 'security': 6, 'marrying': 2, 'compact': 1, 'convenience': 5, 'exchange': 5, 'other.': 5, 'confinement': 4, 'chamber': 2, 'yesterday': 13, 'damp': 1, 'feel': 6, 'shoulders.': 1, 'flannel': 3, 'waistcoat': 2, 'ailment': 2, 'feeble.': 1, 'violent': 2, 'fever': 5, 'cheek': 2, 'eye': 19, 'pulse': 4, 'alarm': 17, 'fortnight': 13, 'Nothing': 13, 'indisposition': 7, 'anxiety': 17, 'readiness': 7, 'grate': 1, 'bedchamber': 1, 'hurry': 5, 'time.': 3, 'meaning': 10, 'farewell': 6, 'distinction': 4, 'self-command': 8, 'restless': 2, 'habit': 7, 'occupation': 1, 'amazement': 10, 'independence': 6, 'wish': 16, 'resolute': 2, 'walk': 7, 'ancient': 1, 'mansion': 1, 'enquiry': 4, 'possessor': 1, 'air': 17, 'alternative': 1, 'dirt': 2, 'beneath': 2, 'sunshine': 1, 'showery': 2, 'sky': 4, 'rain': 11, 'preceding': 2, 'pencil': 1, 'book': 6, 'threatening': 1, 'cloud': 1, 'glimpse': 2, 'wind': 5, 'hours.': 1, 'twenty': 4, 'shelter': 2, 'exigence': 1, '—it': 2, 'speed': 1, 'step': 1, 'suddenly': 1, 'ground': 7, 'bottom': 2, 'safety': 2, 'gun': 2, 'accident': 4, 'ran': 1, 'foot': 2, 'fall': 2, 'modesty': 3, 'hold': 2, 'till': 20, 'chair': 9, 'parlour': 11, 'wonder': 18, 'intrusion': 3, 'act': 4, 'influence': 14, 'youth': 7, 'action': 6, 'wet': 2, 'honour': 16, 'tomorrow': 11, 'midst': 2, 'gracefulness': 1, 'theme': 1, 'laugh': 8, 'gallantry': 1, 'less': 1, 'confusion': 6, 'up': 1, 'energy': 4, 'hero': 1, 'story': 9, 'formality': 3, 'rapidity': 4, 'thought': 17, 'shooting-jacket': 1, 'pain': 23, 'ankle': 1, 'interval': 4, 'news': 14, 'year.': 4, 'sort': 9, 'fellow': 8, 'bolder': 2, 'rider': 2, 'soul': 20, 'bitch': 1, 'pointer': 4, 'today': 8, 'colour': 11, 'shades': 1, 'care.': 1, 'humoured': 3, '_my_': 1, 'him_': 1, 'employment': 12, 'hop': 1, 'clock': 12, 'down.': 1, 'fatigue.': 1, 'aye': 7, 'cap': 3, 'dislike': 8, 'common-place': 2, 'phrase': 6, 'conquest': 4, 'tendency': 4, 'construction': 1, 'reproof': 5, 'preserver': 1, 'precision': 1, 'interview': 2, 'complexion': 9, 'form': 11, 'height': 4, 'cant': 1, 'skin': 3, 'transparency': 1, 'brilliant': 1, 'embarrassment': 8, 'remembrance': 11, 'good-breeding': 3, 'vivacity': 2, 'dancing': 1, 'look': 31, 'stay': 6, 'amusement': 14, 'discussion': 4, 'conformity': 1, 'examination': 5, 'convert': 1, 'each—or': 1, 'arose': 3, 'force': 5, 'brightness': 2, 'enthusiasm': 2, 'familiarity': 4, 'importance': 14, 'despatch': 3, 'topic': 3, 'meeting': 18, 'picturesque': 4, 'notion': 10, 'decorum': 2, 'dull': 3, 'reproach': 8, 'jest': 1, 'friend.': 1, 'proof': 14, 'excuse': 7, 'reception': 6, 'recovery': 8, 'ardour': 3, 'example': 3, 'estimation': 4, 'propensity': 2, 'caution': 5, 'support': 8, 'desperation': 1, 'sixteen': 1, 'perfection': 2, 'brighter': 1, 'earnest': 5, 'sons-in-law': 1, 'rival': 2, 'opposition': 12, 'hindrance': 2, 'indifferent': 2, 'oppression': 3, 'gloominess': 1, 'belief': 7, 'compassion': 20, 'nobody': 15, 'indignity': 1, 'abuse': 2, 'censure': 7, 'defence': 3, '_protégé_': 2, 'thinking': 6, 'information': 20, 'nature.': 1, 'climate': 1, 'nabobs': 1, 'gold': 2, 'mohrs': 1, 'palanquins.': 1, 'candour': 2, 'brilliancy': 1, 'expression.': 1, 'mass': 1, 'reason': 52, 'fault': 5, 'hanging': 2, 'curricle': 4, 'mare': 1, 'return': 23, 'privilege': 5, 'execution': 1, 'receiving': 3, 'concealment': 4, 'disgrace': 5, 'unreserve': 4, 'restraint': 3, 'effort': 9, 'subjection': 2, 'illustration': 1, 'hand': 39, 'couple': 11, 'display': 3, 'talker': 1, 'history': 1, 'memory': 3, 'silent': 5, 'presence': 15, 'add': 1, 'suspicion': 14, 'silence': 31, 'faint': 5, 'attachments.': 1, 'basis': 1, 'opinions.': 1, 'ignorance': 12, 'nought': 1, 'advantage.': 1, 'pause': 17, 'inconstancy': 6, 'perverseness': 2, 'minutiae': 1, 'admit': 1, 'sentiments—No': 1, 'experience': 3, 'change—from': 1, 'series': 3, 'circumstances—': 1, 'rise': 2, 'XII': 1, 'piece': 5, 'testimony': 4, 'horse': 8, 'gift': 4, 'servant': 19, 'hesitation': 5, 'groom': 2, 'gallop': 1, 'dream': 1, 'affair': 26, 'trifle': 2, '_him': 1, 'creature': 14, 'impropriety': 5, 'Opposition': 1, 'appeal': 1, 'indulgent': 1, 'express': 1, 'you.': 5, 'sentence': 10, 'light': 5, 'neck': 4, 'miniature': 2, 'lock': 10, 'hair.': 1, 'care': 23, 'hair': 16, 'tea': 10, 'back': 4, 'paper': 8, 'authority': 4, 'credit': 8, 'unison': 1, 'sagacity': 2, 'joke': 6, 'harm': 5, 'pray': 10, 'curate': 1, '_that_': 7, 'profession': 11, 'invention': 1, 'existence.': 1, 'interruption': 2, 'mindful': 1, 'piano-forte': 4, 'recover': 1, 'twelve': 3, 'brother-in-law': 1, 'proprietor': 1, 'judge': 2, 'sail': 1, 'undertaking': 1, 'cold': 5, 'XIII': 1, 'excursion': 4, 'sun': 3, 'humour': 7, 'Nobody': 2, 'None': 1, 'town': 82, 'business.': 2, 't': 38, 'dear': 31, 'madam': 4, 'attendance': 4, 'admittance': 2, 'blow': 7, 'note': 15, 'return.': 1, 'hour.': 1, 'trick': 1, 'writing.': 1, 'purpose': 15, 'is.': 2, 'horseback': 3, 'mind.': 1, 'power.': 1, 'leave': 7, 'seeing': 1, 'hitherto': 3, 'heard': 8, 'before': 2, 'fear': 19, 'ladies.': 1, 'daughter.': 1, 'fortune.': 1, 'consultation': 1, 'drive': 3, 'dance': 9, 'contentment': 3, 'elder': 4, 'morning.': 3, 'enquire': 1, 'method': 5, 'dining-room': 2, 'pleasanter': 1, 'life.': 2, 'pleasantness': 1, 'propriety.': 1, 'pleasure.': 1, 'impertinent': 1, 'hint': 7, 'remarkably': 1, 'corner': 3, 'bowling-green': 1, 'wood': 3, 'church': 6, 'XIV': 1, 'termination': 1, 'steadiness': 3, 'wonderer': 1, 'intermission': 3, 'distress': 21, 'determination': 4, 'bye': 3, 'bargain.': 1, 'conjecture': 5, 'justify': 1, 'variety': 11, 'speculation': 1, 'poverty': 7, 'secrecy': 9, 'practice': 4, 'distinguishing': 1, 'tenderness': 18, 'perfect': 1, 'stone': 3, 'inch': 1, 'glad': 7, 'better.': 2, 'dispose': 1, 'defect': 5, 'cottage.': 2, 'kitchen': 2, 'tone': 12, 'variation': 3, 'disadvantage': 2, 'staircase': 2, 'faultless': 1, 'prescience': 1, 'apartment': 4, 'farther': 9, 'Shall': 1, 'o': 4, 'pretext': 1, 'foresight': 1, 'handkerchief': 4, 'mantel-piece': 2, 'partook': 1, 'exhilaration': 1, '—and': 13, 'twelvemonth.': 1, 'shame': 7, 'inclination.': 1, 'nature—that—I': 1, 'dare': 1, 'minute': 9, 'speech': 10, 'solitude': 7, 'uneasiness': 6, 'distrust': 4, 'affectation': 3, 'unwillingness': 4, 'backwardness': 2, 'quarrel': 3, 'relief': 18, 'duty': 13, 'work': 54, 'strange': 3, 'trust': 7, 'confess': 2, 'absent': 2, 'cavil': 1, 'satisfactory': 1, 'answer.': 1, 'guilt': 7, 'apology': 10, 'inadvertence': 1, 'ill': 6, 'possibility': 7, 'deviation': 2, 'happy—and': 1, 'concealing': 1, 'incautiousness.': 1, 'both.': 2, 'syllable': 3, 'occur': 1, 'confidence': 31, '_one_': 3, 'carelessness': 2, 'mighty': 1, 'concession': 1, 'altar': 2, 'inconsistency': 2, 'integrity': 5, 'cordiality': 6, 'temptation': 5, 'plain': 4, 'avowal': 2, 'foundation': 4, 'stranger': 1, 'liberty': 18, 'fortitude': 9, 'command': 2, 'instant': 5, 'bed': 22, 'repose': 2, 'headache': 1, 'nourishment': 2, 'crying': 2, 'reverse': 4, 'line': 5, 'sadness': 2, 'calmer': 1, 'melancholy': 6, 'correspondence': 4, 'sufficient': 1, 'mystery': 1, 'inflict': 1, 'confession': 6, 'revealment': 1, 'denial': 2, 'vain': 6, 'sunk': 6, 'delicacy': 10, 'witticisms': 1, 'volume': 1, 'happens.': 1, 'reply': 10, 'downs': 1, 'speedy': 1, 'seclusion': 1, 'road': 7, 'chiefly': 4, '_mind_': 1, 'stretch': 1, 'scene': 5, 'riding': 1, 'air.': 1, 'coat': 2, 'particularity': 1, 'pace': 2, '_him_': 3, 'whither': 1, 'continuation': 1, 'coldness': 5, 'deficiency': 4, 'elect': 1, 'month': 3, 'ago.': 1, 'leaves.': 2, 'nuisance': 1, 'sight.': 1, 'passion': 4, 'reverie': 5, 'left': 1, 'grandeur': 2, 'winter.': 2, 'lane.': 1, 'pleasant': 3, 'c.': 6, 'extorting': 1, 'past': 13, 'resentment': 8, 'displeasure': 3, 'welcome': 4, 'indignant': 2, 'orator': 1, 'fame': 1, 'matter.': 1, 'eloquence.': 1, 'moderate': 1, 'it.': 8, 'competence': 3, 'self': 3, 'less.': 1, 'somebody': 3, 'animation': 3, 'cheeks': 3, 'glowing': 1, 'insufficiency': 1, 'wealth.': 1, 'help.': 1, 'commission': 4, 'print': 3, 'you—and': 1, 'greatness': 2, '—Thomson': 1, 'copy': 9, 'tree': 3, 'disputes.': 1, 'gay': 5, 'it—and': 2, 'cash': 1, 'collection': 5, 'books.': 1, 'bulk': 1, 'heirs.': 1, 'reward': 7, 'maxim': 1, 'yourself.': 1, 'gaiety': 5, 'character.': 2, 'girl—she': 1, 'animation—but': 1, 'misapprehension': 4, 'deception': 2, 'shy': 1, 'awkwardness': 1, 'gentility': 2, 'inattention': 4, 'inferiority': 2, 'started—': 1, 'very.': 1, '—how': 6, 'fast': 1, 'thoughtfulness': 5, 'extent—and': 1, 'inspiring': 1, 'reservedness': 1, 'breakfast-room': 1, 'uncouth': 1, 'medium': 6, 'hazy': 1, 'country—the': 1, 'timber': 3, 'farm': 2, 'utility—and': 1, 'moss': 1, 'brush': 1, 'picturesque.': 1, 'discrimination': 1, 'own.': 1, 'landscape': 3, 'scenery': 1, 'jargon': 2, 'language': 10, 'meaning.': 1, 'heath': 1, 'snug': 1, 'farm-house': 1, 'watch-tower—and': 1, 'troop': 1, 'tidy': 1, 'banditti': 1, 'ring': 6, 'plait': 1, 'promising': 1, 'vexation': 4, 'glance': 5, 'setting': 1, 'theft': 1, 'contrivance': 1, 'affront': 1, 'henceforward': 1, 'absence': 9, 'forgiveness': 6, 'middle': 5, 'survey': 2, 'newness': 1, 'sprung': 2, 'entertainment': 1, 'party.': 1, 'necessity': 18, 'blushing': 1, 'brief': 3, 'whisper': 6, 'guess': 2, 'archness': 1, 'good': 6, 'self-mortification': 1, 'them—but': 1, 'lie': 1, 'openness': 5, 'consistency': 1, 'shortness': 1, 'grievance': 1, 'parent': 5, 'renewal': 1, 'finger': 1, 'it—you': 1, 'least—you': 1, 'misfortune': 5, 'nicety': 2, 'army': 1, 'law': 9, 'study': 3, 'navy': 1, 'fashion': 5, 'dashing': 1, 'idleness': 4, 'eighteen': 3, 'bent': 2, 'accent': 2, 'thing.': 1, 'effusion': 3, 'patience—or': 1, 'discontent': 3, 'parting': 3, 'advancement': 2, 'faulty': 3, 'calm': 3, 'mortifying': 2, 'meditation': 3, 'abundance': 1, 'closing': 1, 'ceremony': 6, 'turf': 1, 'casement': 1, 'space': 2, 'way.': 3, 'plump': 1, 'prepossessing': 1, 'willingness': 2, 'self-consequence': 1, 'briefly': 1, 'ma': 9, 'meantime': 1, 'astonishment': 17, 'help': 4, 'girl.': 1, 'ever.': 1, 'ceiling': 1, 'bow': 6, 'elsewhere.': 1, 'drawing-room': 14, 'public.': 1, 'room—': 1, 'devil': 4, 'billiard': 1, 'weather.': 1, 'dropt': 1, 'today.': 1, 'don': 6, 'ten': 4, 'place.': 1, 'vile': 1, 'dining': 3, 'cross': 1, 'insolence': 3, 'humour.': 1, 'bias': 1, 'blunder': 1, 'treatment': 5, 'motive': 6, 'superiority': 2, 'ill-breeding': 1, '—My': 1, 'view.': 1, 'election': 1, 'hardship': 2, 'obligation': 5, '—won': 1, 'writing': 4, 'palm': 1, 'droll': 2, 'speak': 2, 'imagine': 1, 'stop': 2, 'confirmation': 3, 'neighbour': 2, 'match.': 1, 'pretend': 3, 'town.': 1, 'body.': 1, 'know': 1, 'school': 6, 'wondering': 1, 'unsuitableness': 1, 'zeal': 2, 'worse': 1, 'philosophy': 1, 'reprimand': 2, 'dress': 6, 'philanthropic': 1, 'come—you': 1, 'declare': 2, 'coach': 4, '_You_': 1, 'anew': 2, 'introduction': 3, 'smartness': 1, 'importunate': 1, 'endurance': 1, 'offspring': 3, 'complacency': 4, 'pocket': 4, 'window—': 1, 'tricks.': 1, 'quiet—Never': 1, 'pin': 1, 'pattern': 1, 'gentleness': 5, 'consternation': 1, 'emergency': 1, 'sufferer': 1, 'lap': 2, 'wound': 1, 'lavender-water': 1, 'mouth': 3, 'stuffed': 1, 'sugar': 1, 'apricot': 1, 'marmalade': 1, 'temple': 3, 'remedy': 1, 'scratch': 1, 'therefore': 5, 'quest': 2, 'medicine': 1, 'accident.': 1, 'reality.': 1, 'task': 3, 'eclat': 1, 'life.—I': 1, 'children.': 3, 'outside': 1, 'freedom': 3, '_must_': 2, 'admire': 1, 'beaux': 8, 'ashamed': 2, 'genteel': 1, 'bear': 1, 'beau': 10, 'clerk': 1, 'else.': 1, 'specimen': 2, 'artlessness': 1, 'proportion': 4, 'lot': 4, 'whatever': 1, 'luck': 3, 'drinking': 2, 'significancy': 1, 'productive': 1, 'alphabet': 1, 'inquisitiveness': 1, 'secret.': 1, 'amendment': 7, 'knowing': 1, 'disadvantage.—But': 1, 'toleration': 1, 'vulgarity': 1, 'endeavour': 5, 'communication': 12, 'aid': 3, 'illiterate': 1, 'neglect': 3, 'rectitude': 1, 'insincerity': 2, 'instruction': 2, 'equality': 1, 'show': 3, 'deference': 2, 'cottage—': 1, 'her.': 3, '_you_': 5, 'come—how': 1, 'herself—when': 1, 'brother.': 1, 'disbelief': 1, 'assertion': 8, 'firm': 2, 'incredulity': 1, 'fit': 3, 'swoon': 1, 'dependence': 7, 'sisters.': 1, 'standing': 1, 'years.': 2, 'day.': 2, 'date': 3, 'while.': 1, 'talk': 7, 'pupil': 1, 'falsehood—': 1, '—I': 4, 'pardon': 6, 'depends.': 1, 'perplexity': 4, 'secret': 5, '_occasion_': 1, 'painting': 2, 'falsehood': 4, 'likeness': 1, 'vexed': 1, 'opportunity.': 1, 'calmly': 3, 'safety.': 1, 'making': 1, 'betraying': 1, 'tongue': 2, 'fright': 5, 'suspense': 6, 'uncertainty': 2, 'entirely.': 1, 'too—so': 1, 'veracity': 2, 'sheet': 1, 'success': 8, 'END': 3, 'folly': 3, 'proofs': 3, 'dissatisfaction': 1, 'intimate': 3, 'evidence': 1, 'overcame': 1, 'ill-treatment': 1, 'indignation': 9, 'dupe': 1, 'illusion': 1, 'softener': 1, 'hopeless': 4, 'regain': 1, 'tranquillity': 4, 'her—illiterate': 1, 'infatuation': 1, 'nineteen': 1, 'succeeding': 1, 'spent': 4, 'supposition': 1, 'patience': 5, 'unkindness': 4, 'unhappiness': 5, 'smart': 2, 'extinction': 1, 'aggravation': 1, 'condemnation': 2, 'counsel': 4, 'firmness': 5, 'agitation': 17, 'venturing': 1, 'weight': 3, 'disclosure': 1, 'honesty': 2, 'repetition': 5, 'joining': 1, 'chat': 2, 'eating': 2, 'charity': 2, 'club': 1, 'fairer': 1, 'opening': 4, 'tranquil': 3, 'permission': 7, 'seclude': 1, 'novelty': 1, 'impossibility': 4, 'preparation': 5, 'candlelight': 1, 'to-morrow': 1, 'angel': 3, 'eyes—will': 1, 'bell': 2, 'alacrity': 2, 'rubber': 4, '_she_': 4, 'labour': 1, 'utmost': 7, 'harmony': 2, 'interesting': 1, 'risk': 5, 'XXIV': 1, 'ice': 1, 'mother.': 1, 'constancy': 5, 'test': 1, 'trial': 3, 'first.': 2, 'lowness': 1, 'tediousness': 2, 'anger': 4, 'measures.': 1, 'disinterestedness': 1, 'reason.': 1, 'brother—silly': 1, 'coxcomb.': 1, 'coxcomb': 2, 'ear': 4, 'coxcombs.': 1, 'lip': 1, 'protection': 3, 'concerto': 1, 'scheme': 6, 'incumbent': 3, 'rest.': 1, 'husband.': 2, 'wishes.': 1, 'solemnity': 3, 'person.': 2, 'pique': 1, 'stress': 1, 'duration': 1, 'conclusion': 5, 'reluctance': 2, 'card': 10, 'alone': 2, 'aware': 3, 'confidante': 2, 'whenever': 3, 'celebration': 1, 'festival': 1, 'XXV': 1, 'portion': 2, 'habitation': 1, 'approach': 3, 'refusal': 1, 'chaise': 6, 'poking': 1, 'bargain': 1, 'absence—Oh': 1, 'struggle.': 1, 'cautiousness': 1, 'impediment': 1, 'obstacle': 2, 'unpleasantness': 2, 'guidance': 1, 'mercy': 2, 'abridgement': 1, 'family.': 1, 'shock': 5, 'attack': 3, 'dread': 6, 'acquisition': 3, 'perturbation': 1, 'impatience': 6, 'restorative': 1, 'score': 1, 'station': 1, 'measure': 8, 'rapture': 2, 'blank': 1, 'nature—she': 1, 'complaisance': 2, 'companionableness': 1, 'wrapt': 1, 'drew': 2, 'exclamation': 4, 'inn': 2, 'preferring': 1, 'salmon': 1, 'luxury': 2, 'mantelpiece': 1, 'footman': 2, 'conveyed': 1, 'flutter': 2, 'sound': 5, 'rap': 4, 'ecstasy': 3, 'you—sorry': 1, 'bee': 1, 'too—which': 1, 'Ah': 1, 'mildness': 3, 'watch': 1, 'purchase': 2, 'indecision': 2, 'porter': 2, '_I_': 2, 'interference': 1, 'whist': 1, 'country.': 1, 'severity': 2, 'longer—nay': 1, 'tonight': 2, 'week.': 1, 'warrant': 1, 'post.': 1, 'privacy': 2, 'watchfulness': 2, 'frost': 3, 'muff': 1, 'clouds': 1, 'afternoon.': 1, 'atmosphere': 1, 'city': 1, 'occurrence': 1, 'mistress.': 1, 'provoking': 1, 'little—not': 1, 'much.': 1, '_you_—you': 1, 'Business': 1, 'appointment': 4, 'ball': 1, 'reputation': 1, 'collation': 1, 'recognition': 1, 'enough—_he_': 1, 'bit': 1, 'street': 3, 'Impatient': 1, 'health': 12, 'morrow': 1, 'application': 4, 'plea': 1, 'disclosing': 1, 'ready': 1, 'simple': 1, 'expedient': 3, 'correspond': 1, 'of.': 1, 'to—': 1, 'ceasing': 1, '—took': 1, 'staid': 1, 'attitude': 4, 'destination': 1, 'string': 1, 'landing-place': 2, 'tribute': 1, 'crowd': 3, 'heat': 1, 'reach': 2, 'feature': 1, 'touch': 2, 'heaven': 1, 'lavender': 2, 'peace': 4, 'hartshorn': 1, 'consciousness': 12, 'misconduct': 4, 'investigation': 1, 'Absence': 1, 'deepest': 1, 'rupture': 3, 'housemaid': 3, 'flow': 2, 'sleep': 8, 'sobs': 2, 'pen': 3, 'irritability': 1, 'wander': 1, 'ate': 1, 'meal': 1, 'working': 1, 'paleness': 1, 'sickness': 1, 'tremour': 1, 'liking': 3, 'rug': 1, 'report': 4, 'eager': 3, 'burst': 1, 'first': 1, 'read': 2, 'meant': 1, 'honourable': 1, 'feeling—so': 1, 'release': 4, 'faith': 5, 'insult': 2, 'writer': 3, 'villainy': 1, 'perusal': 1, 'disengagement': 1, 'escape': 3, 'deliverance': 3, 'depravity': 1, 'chariot': 2, 'contributing': 1, 'off': 2, 'floor': 1, 'giddy': 1, 'food': 1, 'stomach': 1, 'faintness': 1, 'glass': 2, 'wine': 5, 'anguish': 2, 'torrent': 1, 'think': 8, 'suffer': 2, 'grief.': 1, 'state.': 1, 'period—if': 1, 'Yes': 2, 'hither': 1, 'adieu': 2, '—': 4, 'call': 4, 'insulting': 1, 'justification': 3, 'covenant': 1, 'same.': 1, 'art': 2, 'supplication': 2, 'distress—can': 1, 'cruelty': 7, 'suspect': 2, 'enemy': 1, 'triumph': 6, 'innocence': 2, 'pride': 8, 'mortification—but': 1, 'mine—': 1, 'me—ought': 1, '—Elinor': 1, 'woman—who': 1, '—Who': 1, 'one—he': 1, 'myself.': 3, 'sake—and': 1, 'posture': 3, 'motionless': 1, 'dressing': 1, 'disturb': 1, 'cry': 1, 'tiptoe': 1, 'bustle': 3, 'abstraction': 1, 'fondness': 1, 'check': 1, 'sign': 2, 'Lord': 4, 'bless': 3, 'aunt': 1, 'signify': 1, 'reform': 1, 'supper': 3, 'allusion': 1, 'good-nature': 5, 'considerate': 2, 'tis': 4, 'blown': 1, 'sister.': 3, 'hereafter': 3, 'enforcement': 1, 'hilarity': 1, 'ill-wind': 1, 'chuckle': 1, 'debt': 2, 'mulberry': 1, 'dove-cote': 1, 'canal': 2, 'quarter': 7, 'turnpike-road': 1, 'yew': 2, 'arbour': 2, 'parsonage-house': 3, 'throw': 1, 'meat': 1, 'nearer': 1, 'shoulder': 2, 'mutton': 1, 'impatient': 4, 'suffering': 3, 'pillow': 1, 'wine-glass': 1, 'colicky': 1, 'gout': 2, 'asleep': 1, 'compromise': 1, 'dear.': 1, 'elucidation': 1, 'stationer': 1, 'shop': 6, 'secret—it': 1, 'sister—how': 1, 'perhaps—but': 2, 'hardness': 1, 'so—she': 1, 'bloom': 3, 'XXXI': 1, 'avoiding': 1, 'injustice': 4, 'refinement': 1, 'weakness': 4, 'impulse': 3, 'goodwill': 2, 'contrition': 2, 'explanatory': 1, 'convincing': 1, 'eloquence': 4, 'page': 3, 'dearer': 4, 'except': 1, 'perceiving': 1, 'conscience': 12, 'others.': 1, 'error': 3, 'thither': 1, 'disturbed': 1, 'salutation': 2, 'means': 4, 'comfort—but': 1, 'mother—will': 1, '_very_': 1, 'idea—I': 1, 'narrator': 1, 'conversation—': 1, 'dance—in': 1, 'resembling': 1, 'orphan': 1, 'infancy': 1, 'guardianship': 2, 'guardian': 1, 'treachery': 1, 'one—but': 1, 'regiment': 1, 'weight—was': 1, 'divorce': 1, 'gloom': 2, 'search': 2, 'seducer': 1, 'deeper': 1, 'sin': 1, 'extravagance': 2, 'spunging-house': 1, 'blooming': 1, 'her—but': 1, 'stage': 2, 'consumption': 1, 'fate': 7, 'lead': 1, 'years—it': 1, 'concise': 1, 'daughter—better': 1, 'clue': 1, 'looks': 1, 'incivility': 2, 'ignorant': 2, 'sister—but': 1, 'usage': 1, 'doubtless': 1, 'self-reproach': 3, 'Concern': 1, 'recital': 2, 'unworthiness': 1, 'lying-in': 1, 'delivery': 1, 'XXXII': 1, 'vindication': 4, 'no': 1, 'compassionate': 2, 'seduction': 1, 'desertion': 1, 'designs': 1, 'entreat': 2, 'humiliating': 1, 'origin': 2, 'cheat': 1, 'Design': 1, 'negligence': 2, 'retirement': 2, 'alleviation': 1, 'sympathy': 3, 'militate': 1, 'carefulness': 1, 'covert': 1, 'scoundrel': 2, 'dog': 1, 'everybody': 6, 'good-for-nothing': 1, 'approaching': 1, 'coachmaker': 1, 'painter': 1, 'portrait': 1, 'unconcern': 1, 'circle': 2, 'qualification': 1, 'condolence': 1, 'vent': 1, 'dignity': 4, 'pitying': 1, 'honours': 1, 'receipt': 4, 'office': 7, '_still_': 1, 'emphasis': 1, '_month_': 1, '_hurry_': 1, 'word_.': 1, 'exultation': 4, 'join': 1, 'post-chaise': 1, '‘': 9, 'mine.': 1, 'cessation': 1, 'unfit': 1, 'conversation.': 1, 'word.': 1, 'gown': 2, 'negotiation': 1, 'stairs': 2, 'counter': 1, 'quicker': 1, 'correctness': 1, 'toothpick-case': 3, 'shape': 1, 'insignificance': 1, 'puppyism': 1, 'inspection': 2, 'bedroom': 1, 'ivory': 1, 'pearls': 1, 'conceit': 3, 'forward': 1, 'seal': 1, 'pretence': 2, 'where.': 1, 'pitch': 1, 'sake.': 2, 'mistaken': 2, 'side—in': 1, 'whisper—': 1, 'settling': 2, 'assent': 4, 'one.': 4, 'enclosure': 1, 'drain': 1, 'land': 4, 'money.': 1, 'purchase-money': 1, 'banker': 1, 'loss.': 1, 'circumstances.': 1, 'laid': 1, 'green-house': 3, 'out.': 1, 'knoll': 1, 'walnut': 1, 'brow.': 1, 'provocation': 2, 'pair': 4, 'cheerfuller': 1, 'prosperity': 2, 'complaint': 5, 'Dorsetshire': 1, 'visitors.': 1, 'likelihood': 2, 'compunction': 1, 'selfishness': 6, 'demeanor': 1, 'deed': 2, 'detection': 1, 'them—a': 1, '_her_': 3, 'hearing': 5, '—she': 2, 'envy': 2, 'aspect': 2, 'contraction': 2, 'brow': 1, 'graciousness': 3, 'distinguished—whom': 1, 'indigence': 1, 'appeared—but': 1, 'agreeable—Want': 1, 'improved—want': 1, 'elegance—want': 1, 'spirits—or': 1, 'horses—but': 1, 'coffee': 1, 'descendant': 1, 'removing': 1, 'am—an': 1, 'does_': 1, 'paint': 1, '—How': 1, 'well.': 2, 'this.—She': 1, 'speak.': 1, 'stiffly': 1, 'retort': 1, 'philippic': 1, 'audacity': 1, 'horror': 4, 'arm': 2, 'close': 3, 'author': 1, 'shocking': 1, 'constitution': 3, 'meanness': 3, 'prejudice': 2, 'creation': 2, 'caprice': 1, 'down': 3, 'affability': 2, '—Did': 2, 'hauteur': 1, 'same—all': 1, 'case—': 1, 'quickly—': 1, '—you': 1, 'health.': 1, 'friendship.': 1, 'courtesy': 1, 'way—you': 1, 'struggle': 2, 're-assurance': 1, 'courage': 4, 'demure': 1, 'contribution': 1, '—This': 1, 'agree': 1, 'charge.': 1, '—Why': 1, 'revenge': 2, 'great.': 1, 'sting': 1, '—Then': 1, 'commendation.': 1, 'aside': 1, 'bound': 1, 'meeting—and': 1, 'heir': 1, 'paragraph': 10, 'reading': 2, 'flattery': 5, 'administer': 1, 'offering': 1, 'sacrifice': 3, 'conciliation': 1, 'Doctor': 1, 'detail': 2, '_did_': 2, 'baby': 3, 'proposition': 1, 'befell': 1, 'misconstruction': 1, 'mode': 2, 'toilet': 1, 'price': 2, 'douceur': 1, 'punctuality': 1, 'coachman': 1, 'scruple': 4, 'harp': 1, 'violoncello': 1, 'group': 2, 'lecture': 1, 'stroke': 1, 'ill-humour': 1, 'emptiness': 1, 'extreme': 2, '_gaucherie_': 1, 'tuition': 1, 'hearty': 1, 'library': 4, 'saloon.': 1, 'dwelling.': 1, 'struck': 2, 'enfranchisement': 1, 'otherwise': 3, 'humility': 4, 'relations.': 1, 'vigor': 1, 'suspecting': 1, 'needless': 1, 'proud': 3, 'vouchsafed': 1, 'malice': 2, 'entry': 1, 'emigrant': 1, 'once': 1, 'Dashwood': 1, 'fuss': 1, 'gum': 2, '_That_': 4, 'conjurer': 1, 'carpet-work': 2, 'dressing-room': 2, 'steward': 1, 'fury': 1, 'Nancy': 1, 'uproar': 1, 'yours—or': 1, 'bigger—with': 1, 'impartiality': 1, 'one.—She': 1, 'narration': 3, 'hearer': 1, 'comforter': 1, 'mankind': 1, 'regularity': 1, 'combat': 1, 'duty.—My': 1, 'comprehension.': 1, 'punishment': 6, '_Then_': 1, 'friends—from': 1, '—Is': 1, 'tenderest': 1, 'frame': 1, 'bitterness': 1, 'reparation': 1, 'discreet': 1, 'am.': 1, 'spasm': 1, 'heroism': 1, 'yesterday.': 1, 'distress—but': 1, 'storm': 1, 'ingratitude': 2, 'benevolence': 3, 'prepossession': 2, '_There_': 1, 'avail': 1, 'penury': 1, 'obstinacy': 1, 'blunt': 1, 'rascal': 1, 'apprehension': 2, 'wrung': 1, 'sir': 5, '—Edward': 1, '_we_': 1, 'inquiry.': 1, 'pounds—how': 1, 'preparing': 2, 'all—his': 1, 'lawyer': 1, 'Everybody': 1, 'vehemence': 2, 'critique': 1, 'torture': 3, 'penitence': 1, '_without_': 1, 'arm—': 1, 'rage': 1, 'bonnet': 1, 'hat': 2, 'feather': 1, 'certain.': 1, 'curacy': 4, '—He': 1, 'shift': 1, 'oath': 1, 'sweet': 1, 'that—Oh': 1, 'la': 3, 'repeat': 1, 'silk': 1, '—To': 1, 'door.': 1, 'hiding': 1, 'closet': 1, 'huswifes': 1, 'write': 2, 'ready.': 1, 'bout': 1, 'La': 1, 'muslin': 1, 'preferment': 2, '—they': 1, 'em': 1, 'stout': 1, 'myself': 1, 'afternoon': 2, 'twould': 1, '—aye': 1, '—Thank': 1, 'credit.': 1, 'hostess': 1, 'good-will': 2, 'of—': 1, 'staying': 1, 'concurrence': 1, 'relative': 1, 'statement': 1, '—Lord': 1, 'cats.': 1, 'sketch': 2, 'ennui': 1, 'hear': 2, 'piano': 1, 'forte': 1, 'lesson': 1, 'badness': 1, 'etiquette': 1, 'motion': 1, 'ejaculation': 1, '—sure': 2, 'breaking': 2, 'conference': 2, 'suitor': 1, 'dividing': 1, 'rectory': 2, 'annum': 1, 'pleasing': 2, 'income.': 1, 'presentation': 3, 'patronage': 1, 'principal': 2, 'misunderstood': 1, 'repair.': 1, 'ordination.': 2, 'ho': 1, 'understand': 1, 'beginning': 6, 'maid': 6, 'tell': 1, 'needle': 1, 'leisure.': 1, 'embarrassment.—Whether': 1, 'so—or': 1, 'time—it': 1, 'tomorrow.': 1, 'communicating': 1, 'vacant': 1, 'living—it': 1, 'happiness.': 1, 'else': 1, 'occasion.': 1, '_me_': 1, 'it—I': 1, 'orator.': 1, 'benefactress': 1, 'respectability': 1, 'gentleman.': 1, 'parsonage': 5, 'mansion-house': 3, '_you': 1, 'very—an': 1, 'man.': 1, 'anticipation': 1, 'difficulty—You': 1, 'wait': 1, 'ebullition': 1, '_may_': 1, 'ground-floor': 1, 'there.': 1, 'saint': 2, 'poultry': 1, 'visit.—This': 1, 'drawing-room.—Nobody': 1, '—has': 1, '—Well': 1, '—no': 2, 'well—and': 1, 'one—to': 1, 'man.—You': 1, 'reasoning': 1, 'affair.': 1, 'certain—a': 1, '_this_': 1, '_now_': 1, 'worse.': 1, '—not': 1, 'self-importance': 1, 'self-complacency': 1, 'division': 1, 'clergyman': 1, 'imagery': 1, 'surplice': 1, 'banns': 1, 'well-meaning': 1, 'kingdom': 1, '_then_': 1, 'hung': 1, 'XLII': 1, 'travelling': 1, 'intercourse': 1, 'promptitude': 1, 'chuse': 2, 'bid': 1, 'persecution': 1, 'tranquility': 1, 'forenoon': 2, 'lawn': 2, 'shrubbery': 2, 'gravel': 2, 'plantation': 1, 'fir': 1, 'mountain-ash': 1, 'acacia': 1, 'screen': 1, 'eighty': 1, 'winding': 1, 'eminence': 1, 'tract': 1, 'south-east': 1, 'ridge': 1, 'horizon': 1, 'circuit': 1, 'gardener': 1, 'lingering': 1, 'poultry-yard': 1, 'dairy-maid': 1, 'fox': 1, 'decrease': 1, 'brood': 1, 'merriment': 1, 'twilight': 1, 'knack': 1, 'heartiness': 1, 'evident': 1, 'enlargement': 1, 'aptitude': 1, 'uncertain': 1, 'Epicurism': 1, 'suggestion': 1, 'observer': 1, 'throat': 2, 'wildness': 2, 'grass': 1, 'cough': 1, 'sore': 1, 'simplest': 1, 'shivering': 1, 'sofa': 1, 'attending': 1, 'nursing': 2, 'efficacy': 1, 'apothecary': 2, 'patient': 6, 'disorder': 1, 'infection': 2, 'infant': 1, 'importunity': 1, 'withstood': 2, 'helpmate': 1, 'material': 1, 'languid': 2, 'malady': 1, 'lamentation': 1, 'piquet': 1, 'compliance': 6, 'emergence': 1, 'seizure': 1, 'absurd': 1, 'admission': 1, 'fatigue': 5, 'sink': 2, 'slumber': 2, 'frequent': 2, 'messenger': 2, 'despondence': 1, 'resistance': 2, '—as': 1, 'Hour': 1, 'sleepless': 3, 'delirium': 1, 'pang': 3, 'rational': 1, 'former—but': 1, 'attendant': 1, 'stupor': 1, 'image': 1, 'reasonableness': 1, 'noon': 1, 'foregoing': 1, 'revival': 1, 'injunction': 2, 'breath': 2, 'gaze': 1, 'Anxiety': 1, 'breast': 1, 'succour': 1, 'relapse': 1, 'was—but': 1, 'slow': 2, 'progress': 3, 'refreshment': 1, 'content': 1, 'capability': 1, 'stormy': 1, 'beat': 1, 'blast': 1, 'travellers—they': 1, 'store': 1, 'dressing-closet': 1, 'shutter': 1, 'stopt': 1, 'door—of': 1, 'doubt—her': 1, '—with': 1, 'vestibule': 1, 'lobby': 2, 'hastily': 1, 'advancing': 1, 'house.': 1, 'amazement—': 1, 'dispatch': 1, 'promote': 1, 'abruptness': 1, 'afterwards—': 1, 'mood': 1, 'glow': 1, 'knave': 1, 'fool': 3, 'liquor': 1, 'strangeness': 1, 'pint': 1, 'beef': 1, 'me.': 3, 'nuncheon': 1, 'intoxication': 1, 'blockhead': 1, '_Now_': 2, 'kind—it': 1, 'indulging': 1, 'affection.': 1, 'subject.': 1, 'injury': 3, 'blameless': 1, 'here—nor': 1, 'cunning': 2, 'circumspection': 1, 'interim—in': 1, 'interim': 1, 'private—a': 1, 'occurred—an': 1, 'connection—but': 1, 'enquiring': 1, 'intimacy—you': 1, 'libertine': 1, 'mind—Oh': 1, 'cruel': 1, 'wanton': 1, 'indigence.': 1, 'purity': 1, 'morality': 2, 'affair—I': 1, 'morning—was': 1, 'insufficient': 1, 'debate': 1, 'magnanimity': 1, 'miserable—and': 1, 'myself—and': 1, 'reliance': 1, 'do.—Then': 1, 'grudge': 1, '—when': 1, '—oh': 1, 'passed.': 1, 'hackneyed': 1, 'metaphor': 1, 'dagger': 1, 'language—a': 1, 'remorse': 1, 'dissipation': 2, 'villain': 2, 'infamously': 1, 'cool': 1, 'drove': 1, 'inducement': 2, 'tried—but': 1, 'beautiful': 1, 'was—Well': 1, 'hue.': 1, 'haste': 2, 'hand-writing': 1, 'playfulness': 1, 'impudence': 1, 'passion—her': 1, 'malice—At': 1, 'letter-writing': 1, '—delicate—tender—truly': 1, 'own—her': 1, 'diction': 1, 'fixed—But': 1, 'Preparation': 1, 'bluster': 1, 'blackguard': 1, 'pocketbook': 1, 'pocket-book': 1, 'virulence': 1, '—all': 1, 'memento': 1, 'slightingly': 1, 'atonement': 3, 'conscience.': 1, '—am': 1, 'yours': 1, 'penitence—tell': 1, 'ill-will': 1, 'puppy': 1, 'moments—for': 1, 'vain—Extravagance': 1, 'thence': 3, 'bye.': 1, 'forgetting': 1, 'happiness—and': 1, 'means—it': 1, 'guard—at': 1, 'again—': 1, 'replied—': 1, 'event.': 1, 'marriage.': 1, 'bear—but': 1, 'commiseration': 1, 'attraction': 3, 'altogether': 1, 'fearful': 2, 'carriage.—Eager': 1, 'hall': 1, 'neither': 1, 'overcome': 1, 'bliss': 1, 'felt': 1, 'stake': 1, 'requisite': 1, 'irritation': 1, 'widower': 1, 'errand': 3, 'temperate': 1, 'exuberance': 1, 'unthought': 1, 'two.': 1, 'sympathy—or': 1, 'delightful': 1, 'it—has': 1, 'worthless': 2, 'selfishness—without': 1, '—could': 1, 'warning': 1, 'men.': 1, 'liveliness': 1, 'dissent': 1, 'situation.': 1, '—for': 1, 'weakening': 1, 'pale': 1, 'recurrence': 1, 'hollow': 1, 'bidding': 1, 'dullness': 1, 'gossip': 1, 'field': 1, 'peculiar': 1, 'unobtrusiveness': 1, 'sitting-room': 1, 'opera': 1, 'outward': 1, 'hand-writing.—That': 1, 'feebleness': 2, 'abatement': 1, 'edge': 1, 'production': 2, 'indolence': 1, 'repining': 1, 'self-control': 1, 'ruin': 2, 'lane': 1, 'mound': 1, 'girl—': 1, 'fickle': 1, 'yours.': 1, 'autumn': 2, '—wonder': 1, 'incitement': 1, 'religion': 1, 'employment.': 1, 'listener': 1, 'repentance': 2, 'word.—She': 1, 'minuteness': 1, 'kiss': 1, 'Reflection': 1, 'embellishment': 1, 'astray': 1, 'thing—as': 1, 'this.—I': 1, '—No—my': 1, 'change.': 1, 'expensiveness': 1, 'inexperience': 1, 'economy': 1, 'frugality': 2, 'management': 1, 'principle.': 1, 'wife.': 1, 'folly.': 1, 'crime': 3, 'discontents.': 1, 'enumeration': 1, 'vigour': 1, 'prosecution': 1, 'start': 1, 'joy.': 1, 'afraid': 1, 'lady—and': 1, 'tablecloth': 1, 'dessert': 1, 'similarity': 1, 'representation': 2, 'careful': 1, 'slighter': 1, 'reality': 2, 'nay': 1, 'away': 1, 'self-provocation': 1, 'mediation': 2, 'lurking': 1, 'saw': 1, 'manager': 2, 'thoughtless': 1, 'indolent': 1, 'slight': 1, 'utterance': 1, 'aloud': 1, 'path': 1, 'dryness': 1, 'sheath': 1, 'youngest—to': 1, 'leaning': 1, 'failure': 1, 'entanglement': 1, 'twenty-four': 1, 'chosen': 1, 'university': 1, 'great—as': 1, 'thankful': 1, 'sedateness': 1, 'suffice': 1, 'labor': 1, 'family—it': 1, 'puzzle': 1, 'proper': 2, 'scrawls—but': 1, 'comment': 1, 'composition': 1, 'days.—In': 1, 'foolish—business—this': 1, 'substance': 1, 'style.': 1, 'hurt': 1, 'favourite.—She': 1, 'sooner.': 1, 'jealousy': 1, 'flourish': 1, 'ill-nature': 1, 'opinions—they': 1, 'option': 1, 'avarice': 1, 'relent': 1, 'self-evident': 1, '_faith_': 1, 'expediency': 1, '—The': 1, 'offering.': 1, 'glebe': 1, 'certain—and': 1, 'residue': 1, 'comer': 1, 'tête-à-tête': 1, 'disproportion': 1, 'rumour': 1, 'immediate': 1, 'nerve': 1, 'thrill': 1, 'transport': 1, 'tale': 1, 'jilting': 1, 'hussy': 1, 'crossness': 1, 'solemn': 1, 'sensibility—and': 1, 'offending': 1, 'submission': 5, 'reconciliation': 2, 'anger.': 1, 'convenient': 1, 'imprudent': 1, 'merit.': 1, 'patron': 1, 'incurring': 1, 'annihilation': 2, 'resuscitation': 1, 'publication': 1, 'rank': 1, 'nobleman': 1, 'decree': 1, 'shuffling': 1, 'completion': 1, 'dilatoriness': 1, 'project': 1, 'sweep': 1, 'Parsonage': 1, 'pasturage': 1, 'make-believe': 1, 'drawn': 1, 'scrape': 1, 'self-interest': 1, '_time_': 1, 'magnificent': 1, 'instigation': 1, 'self-condemnation': 1, 'haughty': 1, 'birth': 1, 'intruder': 1, 'policy': 1, 'frequency': 1, 'darling': 1, 'confederacy': 1, 'goodness—with': 1, 'her—what': 1, 'seventeen': 1, 'safeguard': 1, '—instead': 1, 'patroness': 1, 'clemency': 1, 'breed': 1, 'sporting': 1, 'standard': 1, 'bearing': 1, 'disagreement': 1, '*': 2, 'file': 2, 'https': 1, '//www.gutenberg.org/1/6/161/': 1, 'copyright': 15, 'license': 5, 'concept': 2, 'trademark': 12, 'Project': 4, 'research': 2, 'redistribution': 1, 'START': 1, 'mission': 3, 'distribution': 6, 'www.gutenberg.org/license': 1, 'Section': 5, 'trademark/copyright': 1, 'fee': 8, 'access': 10, 'refund': 8, 'entity': 3, 'compilation': 1, 'domain': 2, 'distributing': 1, 'format': 4, 'downloading': 1, 'copying': 1, 'status': 4, 'texts': 1, 'holder': 4, 'paragraphs': 1, 'perform': 1, 'distribute': 1, 'processing': 1, 'version': 1, 'website': 3, 'user': 3, 'royalty': 1, '%': 1, 'Royalty': 2, 'tax': 6, 'Information': 5, 's/he': 1, 'accordance': 2, 'replacement': 3, 'transcribe': 1, 'proofread': 1, 'transcription': 1, 'infringement': 1, 'disk': 1, 'computer': 2, 'virus': 1, 'equipment': 3, 'liability': 2, 'lieu': 2, 'problem': 1, 'exclusion': 1, 'limitation': 3, 'disclaimer': 2, 'invalidity': 1, 'unenforceability': 1, 'agent': 1, 'employee': 1, 'harmless': 1, 'b': 1, 'modification': 1, 'c': 1, 'corporation': 1, 'identification': 1, '596-1887': 1, 'contact': 2, 'array': 1, 'Compliance': 1, 'paperwork': 1, 'www.gutenberg.org/donate': 1, 'solicitation': 1, 'prohibition': 1, 'staff': 1, 'web': 1, 'donation': 1, 'works': 1, 'originator': 1, 'network': 1, 'volunteer': 1, 'edition': 1, 'facility': 1, 'email': 1, 'newsletter': 1}
print("Percentage counts:", percent_counts)
Percentage counts: {'\ufeffThe': 5.738880918220947e-05, 'eBook': 0.0005738880918220947, 'use': 0.0014921090387374461, 'anyone': 0.00028694404591104734, 'world': 0.005107604017216643, 'cost': 0.0003443328550932568, 'online': 0.0001721664275466284, 'www.gutenberg.org': 0.0002295552367288379, 'country': 0.0020086083213773313, 'Title': 5.738880918220947e-05, 'Sense': 5.738880918220947e-05, '[': 5.738880918220947e-05, 'proofreading': 5.738880918220947e-05, 'correction': 5.738880918220947e-05, 'etext': 5.738880918220947e-05, 'CHAPTER': 0.0018938307030129124, 'family': 0.004648493543758967, 'estate': 0.0010903873744619798, 'residence': 0.0004017216642754663, 'centre': 0.00011477761836441894, 'property': 0.0006312769010043042, 'manner': 0.0032137733142037304, 'opinion': 0.0036154949784791965, 'acquaintance': 0.003672883787661406, 'owner': 0.00028694404591104734, 'man': 0.006714490674318508, 'age': 0.0010329985652797705, 'life': 0.003041606886657102, 'companion': 0.0010903873744619798, 'housekeeper': 0.00028694404591104734, 'sister': 0.014519368723098995, 'death': 0.0006312769010043042, 'alteration': 0.0009182209469153516, 'home': 0.003787661406025825, 'loss': 0.0010903873744619798, 'house': 0.008321377331420373, 'inheritor': 5.738880918220947e-05, 'person': 0.004074605451936873, 'society': 0.0013773314203730273, 'nephew': 0.00011477761836441894, 'niece': 0.0001721664275466284, 'attachment': 0.001951219512195122, 'attention': 0.003328550932568149, 'interest': 0.002525107604017217, 'goodness': 0.0004017216642754663, 'heart': 0.007001434720229556, 'degree': 0.0006886657101865136, 'comfort': 0.0032711621233859397, 'cheerfulness': 0.000860832137733142, 'relish': 5.738880918220947e-05, 'existence': 0.0004017216642754663, 'marriage': 0.002467718794835007, 'son': 0.0017790530846484936, 'lady': 0.0024103299856527978, 'fortune': 0.002065997130559541, 'mother': 0.01417503586800574, 'half': 0.000975609756097561, 'coming': 0.0001721664275466284, 'likewise': 0.0004017216642754663, 'wealth': 0.0003443328550932568, 'succession': 0.0001721664275466284, 'father': 0.0016642754662840745, '’': 0.008263988522238164, 's': 0.019110473457675754, 'nothing': 0.009296987087517933, 'disposal': 0.00028694404591104734, 'moiety': 5.738880918220947e-05, 'wife': 0.0027546628407460545, 'child': 0.0022381635581061694, 'life-interest': 5.738880918220947e-05, 'gentleman': 0.0013199426111908177, 'disappointment': 0.0012051649928263989, 'pleasure': 0.0037302725968436155, 'value': 0.0004017216642754663, 'sake': 0.0016068866571018652, '—but': 0.0006312769010043042, 'way': 0.004131994261119082, 'power': 0.002525107604017217, 'provision': 0.00028694404591104734, 'charge': 0.0005164992826398853, 'sale': 5.738880918220947e-05, 'whole': 0.0016642754662840745, 'benefit': 0.0001721664275466284, 'uncle': 0.0009182209469153516, 'articulation': 5.738880918220947e-05, 'desire': 0.0010903873744619798, 'deal': 0.0018938307030129124, 'noise': 0.0003443328550932568, 'mark': 0.0003443328550932568, 'affection': 0.004476327116212339, 'temper': 0.0010903873744619798, 'sanguine': 5.738880918220947e-05, 'lay': 0.00028694404591104734, 'sum': 0.0005738880918220947, 'produce': 5.738880918220947e-05, 'improvement': 0.0004591104734576758, 'twelvemonth': 0.0003443328550932568, 'widow': 0.00028694404591104734, 'danger': 0.0012625538020086084, 'strength': 0.0004591104734576758, 'urgency': 5.738880918220947e-05, 'illness': 0.0006312769010043042, 'mother-in-law': 0.0005164992826398853, 'rest': 0.0026972740315638452, 'recommendation': 0.0002295552367288379, 'nature': 0.0013199426111908177, 'time': 0.013371592539454807, 'thing': 0.010444763271162123, 'assurance': 0.0007460545193687231, 'leisure': 0.0006886657101865136, 'propriety': 0.0007460545193687231, 'discharge': 0.00011477761836441894, 'woman': 0.003672883787661406, '—he': 0.0001721664275466284, 'fond': 0.0011477761836441894, 'caricature': 5.738880918220947e-05, 'promise': 0.0012051649928263989, 'present': 0.00028694404591104734, 'prospect': 0.000860832137733142, 'thousand': 0.0002295552367288379, 'a-year': 0.0002295552367288379, 'addition': 0.0004017216642754663, 'income': 0.0012625538020086084, 'generosity': 0.0003443328550932568, '”': 0.016929698708751793, 'day': 0.008091822094691534, 'sooner': 0.0005738880918220947, 'funeral': 5.738880918220947e-05, 'notice': 0.0013773314203730273, 'intention': 0.0003443328550932568, 'one': 0.001721664275466284, 'right': 0.0008034433285509326, 'husband': 0.002352941176470588, 'moment': 0.0054519368723099, 'decease': 5.738880918220947e-05, 'indelicacy': 5.738880918220947e-05, 'conduct': 0.0020086083213773313, 'situation': 0.003041606886657102, 'mind': 0.0053945480631276905, 'sense': 0.001721664275466284, 'honor': 0.00011477761836441894, 'offence': 0.0007460545193687231, 'kind': 0.0053945480631276905, 'whomsoever': 5.738880918220947e-05, 'source': 0.0004017216642754663, 'disgust': 0.00011477761836441894, 'opportunity': 0.0016068866571018652, 'occasion': 0.0013199426111908177, 'behaviour': 0.003558106169296987, 'daughter-in-law': 0.00028694404591104734, 'arrival': 0.001951219512195122, 'latter': 0.0010329985652797705, 'entreaty': 0.00028694404591104734, 'girl': 0.001721664275466284, 'tender': 0.0005738880918220947, 'love': 0.002582496413199426, 'breach': 0.00028694404591104734, 'brother': 0.0044189383070301295, 'daughter': 0.0021807747489239596, 'advice': 0.0005738880918220947, 'understanding': 0.0005164992826398853, 'coolness': 0.0001721664275466284, 'judgment': 0.001721664275466284, 'counsellor': 5.738880918220947e-05, 'advantage': 0.0011477761836441894, 'eagerness': 0.0006312769010043042, 'imprudence': 0.0006312769010043042, 'disposition': 0.0011477761836441894, 'knowledge': 0.0016068866571018652, 'clever': 5.738880918220947e-05, 'everything': 0.000860832137733142, 'moderation': 0.00011477761836441894, 'prudent': 5.738880918220947e-05, 'resemblance': 0.0006312769010043042, 'concern': 0.0015494978479196557, 'excess': 0.0004017216642754663, 'sensibility': 0.0004591104734576758, 'violence': 0.0001721664275466284, 'affliction': 0.0009182209469153516, 'agony': 0.0004591104734576758, 'grief': 0.0006312769010043042, 'sorrow': 0.0005738880918220947, 'increase': 0.0005164992826398853, 'wretchedness': 0.00028694404591104734, 'reflection': 0.0006886657101865136, 'consolation': 0.0008034433285509326, 'sister-in-law': 0.0005738880918220947, 'exertion': 0.0012051649928263989, 'forbearance': 0.0002295552367288379, 'romance': 5.738880918220947e-05, 'fair': 0.00011477761836441894, 'period': 0.0003443328550932568, 'mistress': 0.0006312769010043042, 'sisters-in-law': 5.738880918220947e-05, 'condition': 0.0005738880918220947, 'civility': 0.0009182209469153516, 'kindness': 0.0022381635581061694, 'anybody': 0.0006312769010043042, 'earnestness': 0.0004591104734576758, 'plan': 0.0012051649928263989, 'neighbourhood': 0.0005738880918220947, 'invitation': 0.001836441893830703, 'continuance': 0.0005164992826398853, 'place': 0.004361549497847919, 'delight': 0.0013773314203730273, 'possess': 0.00011477761836441894, 'expectation': 0.0014921090387374461, 'happiness': 0.0036154949784791965, 'fancy': 0.0010903873744619798, 'alloy': 5.738880918220947e-05, 'approve': 5.738880918220947e-05, 'boy': 0.00028694404591104734, 'subject': 0.0036154949784791965, 'claim': 0.00028694404591104734, 'blood': 0.00011477761836441894, 'relationship': 0.0001721664275466284, 'amount': 0.0002295552367288379, 'money': 0.0015494978479196557, 'request': 0.0005738880918220947, 'daughters.': 5.738880918220947e-05, 'child.': 5.738880918220947e-05, 'home.': 5.738880918220947e-05, 'something': 0.003902439024390244, 'boy—': 5.738880918220947e-05, 'difference': 0.0010903873744619798, 'instance': 0.0004017216642754663, 'addition.': 5.738880918220947e-05, '“': 0.02490674318507891, 'anything': 0.0014921090387374461, 'earth': 0.00028694404591104734, '—But': 0.0002295552367288379, 'spirit': 0.0009182209469153516, 'mean': 0.0001721664275466284, 'enough': 0.0004017216642754663, 'more.': 5.738880918220947e-05, '_they_': 0.00011477761836441894, 'question': 0.0013773314203730273, 'mine': 0.0008034433285509326, 'woman.': 0.00011477761836441894, 'pounds.': 5.738880918220947e-05, 'them—something': 5.738880918220947e-05, 'annuity': 0.0002295552367288379, 'year': 0.0018938307030129124, 'consent': 0.0005738880918220947, 'in.': 5.738880918220947e-05, 'forty': 0.0001721664275466284, 'business': 0.002467718794835007, 'trouble': 0.0007460545193687231, 'payment': 0.0001721664275466284, 'restriction': 5.738880918220947e-05, 'abhorrence': 0.0001721664275466284, 'world.': 0.00028694404591104734, 'rent': 0.0001721664275466284, 'independence.': 5.738880918220947e-05, 'secure': 0.0004591104734576758, 'gratitude': 0.0010329985652797705, 'discretion': 0.0003443328550932568, 'expenses.': 5.738880918220947e-05, 'case': 0.001836441893830703, 'assistance': 0.000860832137733142, 'allowance': 0.0002295552367288379, 'style': 0.000975609756097561, 'sure': 0.0001721664275466284, 'richer': 5.738880918220947e-05, 'end': 0.0026972740315638452, 'truth': 0.0014921090387374461, 'idea': 0.0013199426111908177, 'game': 0.0003443328550932568, 'season': 0.00028694404591104734, 'course': 0.0017790530846484936, 'board': 0.00011477761836441894, 'housekeeping': 0.00011477761836441894, 'carriage': 0.0022955523672883787, 'company': 0.0016642754662840745, 'something.': 5.738880918220947e-05, 'word': 0.0026398852223816355, 'engagement': 0.003443328550932568, 'furniture': 0.0005738880918220947, 'china': 0.0002295552367288379, 'plate': 0.0001721664275466284, 'linen': 0.0001721664275466284, 'consideration': 0.0006886657101865136, 'legacy': 0.00011477761836441894, 'stock': 5.738880918220947e-05, 'here.': 0.00011477761836441894, 'set': 0.0001721664275466284, 'breakfast': 0.000860832137733142, 'argument': 0.0001721664275466284, 'decision': 0.0002295552367288379, 'disinclination': 0.00011477761836441894, 'sight': 0.000975609756097561, 'well': 0.00011477761836441894, 'spot': 0.0005164992826398853, 'emotion': 0.0011477761836441894, 'while': 0.0005738880918220947, 'dwelling': 0.0001721664275466284, 'ease': 0.0009182209469153516, 'prudence': 0.0004591104734576758, 'part': 0.0029842180774748922, 'favour': 0.0014921090387374461, 'sincerity': 0.0004591104734576758, 'satisfaction': 0.0021233859397417503, 'herself': 0.0016068866571018652, 'affluence': 0.00011477761836441894, 'merit': 0.0006312769010043042, 'welfare': 0.0002295552367288379, 'liberality': 0.0004017216642754663, 'contempt': 0.0003443328550932568, 'character': 0.001836441893830703, 'spite': 0.0020086083213773313, 'politeness': 0.0008034433285509326, 'side': 0.0030989956958393113, 'circumstance': 0.0010903873744619798, 'eligibility': 0.00011477761836441894, 'establishment': 0.0004017216642754663, 'intimacy': 0.0005738880918220947, 'trifling': 5.738880918220947e-05, 'partiality': 0.0005738880918220947, 'doctrine': 0.0001721664275466284, 'asunder': 5.738880918220947e-05, 'comprehension': 0.00011477761836441894, 'address': 0.0010903873744619798, 'justice': 0.0006886657101865136, 'shyness': 0.0001721664275466284, 'indication': 0.00011477761836441894, 'education': 0.0005738880918220947, 'figure': 0.0004591104734576758, 'parliament': 5.738880918220947e-05, 'ambition': 0.00011477761836441894, 'barouche': 0.00011477761836441894, 'turn': 0.0004017216642754663, 'quiet': 0.0001721664275466284, 'careless': 0.0001721664275466284, 'conversation': 0.0021233859397417503, 'contrast': 0.0001721664275466284, 'him.': 0.0004591104734576758, 'smile': 0.0009182209469153516, 'sentiment': 0.0002295552367288379, 'approbation': 0.0007460545193687231, 'inferior': 5.738880918220947e-05, 'esteem': 0.0006886657101865136, 'love.': 5.738880918220947e-05, 'reserve': 0.0005164992826398853, 'persuasion': 0.0007460545193687231, 'regard': 0.002467718794835007, 'penetration': 0.0001721664275466284, 'worth': 0.0004017216642754663, 'quietness': 0.00011477761836441894, 'affectionate': 0.0003443328550932568, 'symptom': 0.00028694404591104734, 'probability': 0.0007460545193687231, 'separation': 0.0005164992826398853, 'choice': 0.0005738880918220947, 'surprise': 0.0020086083213773313, 'none': 0.0010329985652797705, 'grace': 0.00011477761836441894, 'fire': 0.000860832137733142, 'virtue': 0.00011477761836441894, 'intelligence': 0.000975609756097561, 'taste': 0.0014921090387374461, 'admiration': 0.0012051649928263989, 'fact': 0.0006886657101865136, 'matter': 0.0026398852223816355, 'lover': 0.0005738880918220947, 'connoisseur': 5.738880918220947e-05, 'point': 0.001951219512195122, 'coincide': 5.738880918220947e-05, 'music': 0.000975609756097561, 'mama': 0.0003443328550932568, 'spiritless': 0.00011477761836441894, 'tame': 0.00011477761836441894, 'night': 0.0018938307030129124, 'composure': 0.000975609756097561, 'seat': 0.0005164992826398853, 'calmness': 0.000975609756097561, 'indifference': 0.0010903873744619798, 'prose': 5.738880918220947e-05, 'charm.': 5.738880918220947e-05, 'despair': 0.0002295552367288379, 'destiny': 5.738880918220947e-05, 'pity': 0.000860832137733142, 'drawing.': 5.738880918220947e-05, 'deficient': 0.0002295552367288379, 'learning': 5.738880918220947e-05, 'picture': 0.0005738880918220947, 'simplicity': 0.0002295552367288379, 'mistake': 0.0005164992826398853, 'account': 0.0021233859397417503, 'length': 0.0005738880918220947, 'praise': 0.0009182209469153516, 'minuter': 0.00011477761836441894, 'commendation': 0.0004017216642754663, 'doubt': 0.001721664275466284, 'excellence': 0.00011477761836441894, 'principle': 0.0002295552367288379, 'literature': 5.738880918220947e-05, 'venture': 0.0004591104734576758, 'enjoyment': 0.0010903873744619798, 'imagination': 0.0006886657101865136, 'observation': 0.000975609756097561, 'delicate': 0.00011477761836441894, 'pure': 5.738880918220947e-05, 'respect': 0.0012051649928263989, 'upon': 0.00028694404591104734, 'handsome': 0.0001721664275466284, 'expression': 0.0006886657101865136, 'sweetness': 0.0002295552367288379, 'countenance': 0.0015494978479196557, 'imperfection': 5.738880918220947e-05, 'face': 0.0014347202295552368, 'heart.': 0.0002295552367288379, 'declaration': 0.00028694404591104734, 'sorry': 5.738880918220947e-05, 'warmth': 0.000860832137733142, 'speaking': 0.0004017216642754663, 'certainty': 0.0001721664275466284, 'conviction': 0.0012051649928263989, 'agreeable': 5.738880918220947e-05, 'next—that': 5.738880918220947e-05, 'state': 0.0017790530846484936, 'him—that': 5.738880918220947e-05, 'forth': 0.000975609756097561, 'Elinor': 0.0002295552367288379, 'room': 0.005566714490674318, 'moment.': 0.0001721664275466284, 'hope': 0.0014921090387374461, 'believe': 0.00011477761836441894, 'extent': 0.0003443328550932568, 'encouragement': 0.0008034433285509326, 'preference': 0.0004017216642754663, 'inclination': 0.0009182209469153516, 'mention': 0.0002295552367288379, 'rank.': 5.738880918220947e-05, 'delay': 0.0006886657101865136, 'favourite': 0.0004017216642754663, 'pursuit': 0.0002295552367288379, 'felicity': 0.00028694404591104734, 'genius': 0.0002295552367288379, 'want': 0.0014921090387374461, 'spoke': 0.00028694404591104734, 'inquietude': 5.738880918220947e-05, 'dejection': 0.0001721664275466284, 'cause': 0.000860832137733142, 'dependent': 5.738880918220947e-05, 'indulgence': 0.0002295552367288379, 'comfortable': 5.738880918220947e-05, 'aggrandizement': 5.738880918220947e-05, 'result': 0.0004591104734576758, 'her': 0.00028694404591104734, 'longer': 0.0001721664275466284, 'friendship': 0.000975609756097561, 'uncivil': 5.738880918220947e-05, 'resolution': 0.0014347202295552368, 'endeavor': 5.738880918220947e-05, 'answer': 0.0013773314203730273, 'inconvenience': 0.0006886657101865136, 'expense': 0.0008034433285509326, 'removal': 0.0006312769010043042, 'week': 0.0018938307030129124, 'letter': 0.00430416068866571, 'post': 0.0004017216642754663, 'proposal': 0.0003443328550932568, 'offer': 0.0005164992826398853, 'relation': 0.0008034433285509326, 'consequence': 0.000975609756097561, 'accommodation': 0.0004017216642754663, 'need': 0.0003443328550932568, 'cottage': 0.0030989956958393113, 'garden': 0.0006312769010043042, 'whence': 0.00028694404591104734, 'parish': 0.00011477761836441894, 'cousin': 0.0007460545193687231, 'deliberation': 5.738880918220947e-05, 'inquiry': 0.0010903873744619798, 'county': 0.0002295552367288379, 'objection': 0.0006886657101865136, 'belonging': 5.738880918220947e-05, 'evil': 0.0005164992826398853, 'object': 0.0016068866571018652, 'blessing': 0.0001721664275466284, 'comparison': 0.0007460545193687231, 'misery': 0.0015494978479196557, 'guest': 0.0001721664275466284, 'acknowledgment': 0.0002295552367288379, 'acceptance': 0.0001721664275466284, 'distance': 0.0006886657101865136, 'head': 0.0020086083213773313, 'scale': 5.738880918220947e-05, 'charm': 5.738880918220947e-05, 'vicinity': 5.738880918220947e-05, 'attempt': 0.00028694404591104734, 'acquiescence': 0.00011477761836441894, 'son-in-law': 0.0001721664275466284, 'inhabiting': 5.738880918220947e-05, 'voice': 0.002926829268292683, 'explanation': 0.0007460545193687231, 'Devonshire': 5.738880918220947e-05, 'hence': 0.00011477761836441894, 'difficulty': 0.0010329985652797705, 'them.': 0.0002295552367288379, 'resolve': 5.738880918220947e-05, 'effect': 0.0013199426111908177, 'disapprobation': 5.738880918220947e-05, 'match': 0.0008034433285509326, 'service': 0.0005164992826398853, 'performance': 0.0004591104734576758, 'arrangement': 0.0003443328550932568, 'water': 0.0002295552367288379, 'household': 0.0001721664275466284, 'pianoforte': 0.0003443328550932568, 'sigh': 0.0004591104734576758, 'article': 0.00011477761836441894, 'possession': 0.0006886657101865136, 'agreement': 0.0010903873744619798, 'future': 0.0010329985652797705, 'west': 5.738880918220947e-05, 'wisdom': 5.738880918220947e-05, 'number': 0.0006312769010043042, 'visitor': 0.0004591104734576758, 'description': 0.0001721664275466284, 'curiosity': 0.0013773314203730273, 'diminution': 0.00011477761836441894, 'departure': 0.0004017216642754663, 'accomplishment': 0.00011477761836441894, 'drift': 5.738880918220947e-05, 'discourse': 0.0010903873744619798, 'maintenance': 0.00011477761836441894, 'purse': 5.738880918220947e-05, 'calculation': 5.738880918220947e-05, 'design': 0.0005738880918220947, 'abode': 0.00028694404591104734, 'journey': 0.0012625538020086084, 'adieus': 0.00011477761836441894, 'evening': 0.002812051649928264, 'learn': 5.738880918220947e-05, '—Oh': 0.0001721664275466284, '—And': 0.00011477761836441894, 'same.—No': 5.738880918220947e-05, 'leaf': 5.738880918220947e-05, 'branch': 5.738880918220947e-05, 'become': 5.738880918220947e-05, '—No': 0.00011477761836441894, 'regret': 0.000860832137733142, 'change': 0.0012625538020086084, 'shade': 0.0001721664275466284, 'appearance': 0.0016068866571018652, 'view': 0.0010903873744619798, 'fertile': 5.738880918220947e-05, 'pasture': 5.738880918220947e-05, 'mile': 0.0002295552367288379, 'court': 0.0001721664275466284, 'demesne': 5.738880918220947e-05, 'front': 0.0002295552367288379, 'wicket': 5.738880918220947e-05, 'gate': 0.00028694404591104734, 'building': 0.0002295552367288379, 'roof': 0.0001721664275466284, 'window': 0.0012051649928263989, 'passage': 0.0003443328550932568, 'behind': 5.738880918220947e-05, 'entrance': 0.0010329985652797705, 'repair': 0.00011477761836441894, 'recollection': 0.000975609756097561, 'joy': 0.0013199426111908177, 'weather': 0.0010329985652797705, 'impression': 0.0004017216642754663, 'woody': 5.738880918220947e-05, 'village': 0.0005738880918220947, 'valley': 0.0005738880918220947, 'direction': 0.0005738880918220947, 'name': 0.002352941176470588, 'size': 0.0004017216642754663, 'elegance': 0.0010903873744619798, 'spring': 0.0002295552367288379, 'plenty': 0.00011477761836441894, 'remainder': 5.738880918220947e-05, 'drawing': 0.00011477761836441894, 'above': 5.738880918220947e-05, 'sitting': 5.738880918220947e-05, 'landlord': 5.738880918220947e-05, 'theirs': 5.738880918220947e-05, 'solicitude': 0.0006886657101865136, 'living': 0.0016068866571018652, 'perseverance': 0.00011477761836441894, 'hour': 0.0018938307030129124, 'basket': 0.0003443328550932568, 'stuff': 5.738880918220947e-05, 'fruit': 5.738880918220947e-05, 'park': 0.001721664275466284, 'newspaper': 0.00028694404591104734, 'message': 0.0004591104734576758, 'visit': 0.002812051649928264, 'ladyship': 0.0004591104734576758, 'tall': 0.00011477761836441894, 'striking': 5.738880918220947e-05, 'graceful': 5.738880918220947e-05, 'share': 0.0012625538020086084, 'frankness': 0.0001721664275466284, 'remark': 0.0003443328550932568, 'precaution': 0.00011477761836441894, 'extremity': 0.00011477761836441894, 'beauty': 0.0012051649928263989, 'party': 0.0027546628407460545, 'particular': 0.00028694404591104734, 'body': 0.002926829268292683, 'projection': 5.738880918220947e-05, 'hill': 0.0004017216642754663, 'hospitality': 5.738880918220947e-05, 'gratification': 0.00011477761836441894, 'talent': 5.738880918220947e-05, 'compass': 5.738880918220947e-05, 'sportsman': 0.0001721664275466284, 'shot': 0.00011477761836441894, 'round': 0.000860832137733142, 'exercise': 0.00028694404591104734, 'breeding': 5.738880918220947e-05, 'table': 0.0011477761836441894, 'vanity': 0.0006886657101865136, 'noisier': 5.738880918220947e-05, 'summer': 0.0001721664275466284, 'ham': 5.738880918220947e-05, 'winter': 0.00028694404591104734, 'appetite': 0.00011477761836441894, 'fifteen': 5.738880918220947e-05, 'captivating': 5.738880918220947e-05, 'friendliness': 0.00011477761836441894, 'sex': 0.0004017216642754663, 'manor': 5.738880918220947e-05, 'door': 0.002065997130559541, 'friend': 0.0029842180774748922, 'smallness': 0.0001721664275466284, 'morning': 0.004705882352941176, 'merry': 0.00011477761836441894, 'fat': 5.738880918220947e-05, 'vulgar': 0.0001721664275466284, 'laughter': 0.0001721664275466284, 'dinner': 0.0012051649928263989, 'raillery': 0.0003443328550932568, 'grave': 0.0005164992826398853, 'bachelor': 0.0001721664275466284, 'thirty': 0.00028694404591104734, 'insipidity': 0.0002295552367288379, 'gravity': 0.00028694404591104734, 'mirth': 0.0002295552367288379, 'noisy': 0.0001721664275466284, 'instrument': 0.0004017216642754663, 'chief': 0.00028694404591104734, 'position': 5.738880918220947e-05, 'event': 0.0013773314203730273, 'song': 0.0002295552367288379, 'loud': 5.738880918220947e-05, 'order': 0.0001721664275466284, 'compliment': 0.0003443328550932568, 'shameless': 5.738880918220947e-05, 'insensibility': 5.738880918220947e-05, 'acuteness': 0.00011477761836441894, 'feeling': 0.0007460545193687231, 'colonel': 0.0001721664275466284, 'humanity': 0.00011477761836441894, 'jointure': 0.00011477761836441894, 'promotion': 0.00011477761836441894, 'ability': 0.0001721664275466284, 'discovery': 0.0004017216642754663, 'discernment': 0.00011477761836441894, 'listening': 5.738880918220947e-05, '_he_': 0.00011477761836441894, 'connection': 0.0012051649928263989, 'pretty': 0.0001721664275466284, 'understood': 5.738880918220947e-05, 'absurdity': 0.0002295552367288379, 'impertinence': 0.00028694404591104734, 'ridicule': 0.0001721664275466284, 'accusation': 5.738880918220947e-05, 'sensation': 0.00011477761836441894, 'wit': 0.0003443328550932568, 'infirmity': 0.00011477761836441894, 'Infirmity': 5.738880918220947e-05, 'infirm': 5.738880918220947e-05, 'limbs': 0.00011477761836441894, 'complain': 5.738880918220947e-05, 'rheumatism': 5.738880918220947e-05, 'dearest': 0.0001721664275466284, 'rate': 0.0004017216642754663, 'terror': 0.0001721664275466284, 'decay': 0.00011477761836441894, 'miracle': 5.738880918220947e-05, 'matrimony.': 5.738880918220947e-05, 'matrimony': 5.738880918220947e-05, 'chance': 0.0012051649928263989, 'happen': 5.738880918220947e-05, 'nurse': 0.00028694404591104734, 'security': 0.0003443328550932568, 'marrying': 0.00011477761836441894, 'compact': 5.738880918220947e-05, 'convenience': 0.00028694404591104734, 'exchange': 0.00028694404591104734, 'other.': 0.00028694404591104734, 'confinement': 0.0002295552367288379, 'chamber': 0.00011477761836441894, 'yesterday': 0.0007460545193687231, 'damp': 5.738880918220947e-05, 'feel': 0.0003443328550932568, 'shoulders.': 5.738880918220947e-05, 'flannel': 0.0001721664275466284, 'waistcoat': 0.00011477761836441894, 'ailment': 0.00011477761836441894, 'feeble.': 5.738880918220947e-05, 'violent': 0.00011477761836441894, 'fever': 0.00028694404591104734, 'cheek': 0.00011477761836441894, 'eye': 0.0010903873744619798, 'pulse': 0.0002295552367288379, 'alarm': 0.000975609756097561, 'fortnight': 0.0007460545193687231, 'Nothing': 0.0007460545193687231, 'indisposition': 0.0004017216642754663, 'anxiety': 0.000975609756097561, 'readiness': 0.0004017216642754663, 'grate': 5.738880918220947e-05, 'bedchamber': 5.738880918220947e-05, 'hurry': 0.00028694404591104734, 'time.': 0.0001721664275466284, 'meaning': 0.0005738880918220947, 'farewell': 0.0003443328550932568, 'distinction': 0.0002295552367288379, 'self-command': 0.0004591104734576758, 'restless': 0.00011477761836441894, 'habit': 0.0004017216642754663, 'occupation': 5.738880918220947e-05, 'amazement': 0.0005738880918220947, 'independence': 0.0003443328550932568, 'wish': 0.0009182209469153516, 'resolute': 0.00011477761836441894, 'walk': 0.0004017216642754663, 'ancient': 5.738880918220947e-05, 'mansion': 5.738880918220947e-05, 'enquiry': 0.0002295552367288379, 'possessor': 5.738880918220947e-05, 'air': 0.000975609756097561, 'alternative': 5.738880918220947e-05, 'dirt': 0.00011477761836441894, 'beneath': 0.00011477761836441894, 'sunshine': 5.738880918220947e-05, 'showery': 0.00011477761836441894, 'sky': 0.0002295552367288379, 'rain': 0.0006312769010043042, 'preceding': 0.00011477761836441894, 'pencil': 5.738880918220947e-05, 'book': 0.0003443328550932568, 'threatening': 5.738880918220947e-05, 'cloud': 5.738880918220947e-05, 'glimpse': 0.00011477761836441894, 'wind': 0.00028694404591104734, 'hours.': 5.738880918220947e-05, 'twenty': 0.0002295552367288379, 'shelter': 0.00011477761836441894, 'exigence': 5.738880918220947e-05, '—it': 0.00011477761836441894, 'speed': 5.738880918220947e-05, 'step': 5.738880918220947e-05, 'suddenly': 5.738880918220947e-05, 'ground': 0.0004017216642754663, 'bottom': 0.00011477761836441894, 'safety': 0.00011477761836441894, 'gun': 0.00011477761836441894, 'accident': 0.0002295552367288379, 'ran': 5.738880918220947e-05, 'foot': 0.00011477761836441894, 'fall': 0.00011477761836441894, 'modesty': 0.0001721664275466284, 'hold': 0.00011477761836441894, 'till': 0.0011477761836441894, 'chair': 0.0005164992826398853, 'parlour': 0.0006312769010043042, 'wonder': 0.0010329985652797705, 'intrusion': 0.0001721664275466284, 'act': 0.0002295552367288379, 'influence': 0.0008034433285509326, 'youth': 0.0004017216642754663, 'action': 0.0003443328550932568, 'wet': 0.00011477761836441894, 'honour': 0.0009182209469153516, 'tomorrow': 0.0006312769010043042, 'midst': 0.00011477761836441894, 'gracefulness': 5.738880918220947e-05, 'theme': 5.738880918220947e-05, 'laugh': 0.0004591104734576758, 'gallantry': 5.738880918220947e-05, 'less': 5.738880918220947e-05, 'confusion': 0.0003443328550932568, 'up': 5.738880918220947e-05, 'energy': 0.0002295552367288379, 'hero': 5.738880918220947e-05, 'story': 0.0005164992826398853, 'formality': 0.0001721664275466284, 'rapidity': 0.0002295552367288379, 'thought': 0.000975609756097561, 'shooting-jacket': 5.738880918220947e-05, 'pain': 0.0013199426111908177, 'ankle': 5.738880918220947e-05, 'interval': 0.0002295552367288379, 'news': 0.0008034433285509326, 'year.': 0.0002295552367288379, 'sort': 0.0005164992826398853, 'fellow': 0.0004591104734576758, 'bolder': 0.00011477761836441894, 'rider': 0.00011477761836441894, 'soul': 0.0011477761836441894, 'bitch': 5.738880918220947e-05, 'pointer': 0.0002295552367288379, 'today': 0.0004591104734576758, 'colour': 0.0006312769010043042, 'shades': 5.738880918220947e-05, 'care.': 5.738880918220947e-05, 'humoured': 0.0001721664275466284, '_my_': 5.738880918220947e-05, 'him_': 5.738880918220947e-05, 'employment': 0.0006886657101865136, 'hop': 5.738880918220947e-05, 'clock': 0.0006886657101865136, 'down.': 5.738880918220947e-05, 'fatigue.': 5.738880918220947e-05, 'aye': 0.0004017216642754663, 'cap': 0.0001721664275466284, 'dislike': 0.0004591104734576758, 'common-place': 0.00011477761836441894, 'phrase': 0.0003443328550932568, 'conquest': 0.0002295552367288379, 'tendency': 0.0002295552367288379, 'construction': 5.738880918220947e-05, 'reproof': 0.00028694404591104734, 'preserver': 5.738880918220947e-05, 'precision': 5.738880918220947e-05, 'interview': 0.00011477761836441894, 'complexion': 0.0005164992826398853, 'form': 0.0006312769010043042, 'height': 0.0002295552367288379, 'cant': 5.738880918220947e-05, 'skin': 0.0001721664275466284, 'transparency': 5.738880918220947e-05, 'brilliant': 5.738880918220947e-05, 'embarrassment': 0.0004591104734576758, 'remembrance': 0.0006312769010043042, 'good-breeding': 0.0001721664275466284, 'vivacity': 0.00011477761836441894, 'dancing': 5.738880918220947e-05, 'look': 0.0017790530846484936, 'stay': 0.0003443328550932568, 'amusement': 0.0008034433285509326, 'discussion': 0.0002295552367288379, 'conformity': 5.738880918220947e-05, 'examination': 0.00028694404591104734, 'convert': 5.738880918220947e-05, 'each—or': 5.738880918220947e-05, 'arose': 0.0001721664275466284, 'force': 0.00028694404591104734, 'brightness': 0.00011477761836441894, 'enthusiasm': 0.00011477761836441894, 'familiarity': 0.0002295552367288379, 'importance': 0.0008034433285509326, 'despatch': 0.0001721664275466284, 'topic': 0.0001721664275466284, 'meeting': 0.0010329985652797705, 'picturesque': 0.0002295552367288379, 'notion': 0.0005738880918220947, 'decorum': 0.00011477761836441894, 'dull': 0.0001721664275466284, 'reproach': 0.0004591104734576758, 'jest': 5.738880918220947e-05, 'friend.': 5.738880918220947e-05, 'proof': 0.0008034433285509326, 'excuse': 0.0004017216642754663, 'reception': 0.0003443328550932568, 'recovery': 0.0004591104734576758, 'ardour': 0.0001721664275466284, 'example': 0.0001721664275466284, 'estimation': 0.0002295552367288379, 'propensity': 0.00011477761836441894, 'caution': 0.00028694404591104734, 'support': 0.0004591104734576758, 'desperation': 5.738880918220947e-05, 'sixteen': 5.738880918220947e-05, 'perfection': 0.00011477761836441894, 'brighter': 5.738880918220947e-05, 'earnest': 0.00028694404591104734, 'sons-in-law': 5.738880918220947e-05, 'rival': 0.00011477761836441894, 'opposition': 0.0006886657101865136, 'hindrance': 0.00011477761836441894, 'indifferent': 0.00011477761836441894, 'oppression': 0.0001721664275466284, 'gloominess': 5.738880918220947e-05, 'belief': 0.0004017216642754663, 'compassion': 0.0011477761836441894, 'nobody': 0.000860832137733142, 'indignity': 5.738880918220947e-05, 'abuse': 0.00011477761836441894, 'censure': 0.0004017216642754663, 'defence': 0.0001721664275466284, '_protégé_': 0.00011477761836441894, 'thinking': 0.0003443328550932568, 'information': 0.0011477761836441894, 'nature.': 5.738880918220947e-05, 'climate': 5.738880918220947e-05, 'nabobs': 5.738880918220947e-05, 'gold': 0.00011477761836441894, 'mohrs': 5.738880918220947e-05, 'palanquins.': 5.738880918220947e-05, 'candour': 0.00011477761836441894, 'brilliancy': 5.738880918220947e-05, 'expression.': 5.738880918220947e-05, 'mass': 5.738880918220947e-05, 'reason': 0.0029842180774748922, 'fault': 0.00028694404591104734, 'hanging': 0.00011477761836441894, 'curricle': 0.0002295552367288379, 'mare': 5.738880918220947e-05, 'return': 0.0013199426111908177, 'privilege': 0.00028694404591104734, 'execution': 5.738880918220947e-05, 'receiving': 0.0001721664275466284, 'concealment': 0.0002295552367288379, 'disgrace': 0.00028694404591104734, 'unreserve': 0.0002295552367288379, 'restraint': 0.0001721664275466284, 'effort': 0.0005164992826398853, 'subjection': 0.00011477761836441894, 'illustration': 5.738880918220947e-05, 'hand': 0.0022381635581061694, 'couple': 0.0006312769010043042, 'display': 0.0001721664275466284, 'talker': 5.738880918220947e-05, 'history': 5.738880918220947e-05, 'memory': 0.0001721664275466284, 'silent': 0.00028694404591104734, 'presence': 0.000860832137733142, 'add': 5.738880918220947e-05, 'suspicion': 0.0008034433285509326, 'silence': 0.0017790530846484936, 'faint': 0.00028694404591104734, 'attachments.': 5.738880918220947e-05, 'basis': 5.738880918220947e-05, 'opinions.': 5.738880918220947e-05, 'ignorance': 0.0006886657101865136, 'nought': 5.738880918220947e-05, 'advantage.': 5.738880918220947e-05, 'pause': 0.000975609756097561, 'inconstancy': 0.0003443328550932568, 'perverseness': 0.00011477761836441894, 'minutiae': 5.738880918220947e-05, 'admit': 5.738880918220947e-05, 'sentiments—No': 5.738880918220947e-05, 'experience': 0.0001721664275466284, 'change—from': 5.738880918220947e-05, 'series': 0.0001721664275466284, 'circumstances—': 5.738880918220947e-05, 'rise': 0.00011477761836441894, 'XII': 5.738880918220947e-05, 'piece': 0.00028694404591104734, 'testimony': 0.0002295552367288379, 'horse': 0.0004591104734576758, 'gift': 0.0002295552367288379, 'servant': 0.0010903873744619798, 'hesitation': 0.00028694404591104734, 'groom': 0.00011477761836441894, 'gallop': 5.738880918220947e-05, 'dream': 5.738880918220947e-05, 'affair': 0.0014921090387374461, 'trifle': 0.00011477761836441894, '_him': 5.738880918220947e-05, 'creature': 0.0008034433285509326, 'impropriety': 0.00028694404591104734, 'Opposition': 5.738880918220947e-05, 'appeal': 5.738880918220947e-05, 'indulgent': 5.738880918220947e-05, 'express': 5.738880918220947e-05, 'you.': 0.00028694404591104734, 'sentence': 0.0005738880918220947, 'light': 0.00028694404591104734, 'neck': 0.0002295552367288379, 'miniature': 0.00011477761836441894, 'lock': 0.0005738880918220947, 'hair.': 5.738880918220947e-05, 'care': 0.0013199426111908177, 'hair': 0.0009182209469153516, 'tea': 0.0005738880918220947, 'back': 0.0002295552367288379, 'paper': 0.0004591104734576758, 'authority': 0.0002295552367288379, 'credit': 0.0004591104734576758, 'unison': 5.738880918220947e-05, 'sagacity': 0.00011477761836441894, 'joke': 0.0003443328550932568, 'harm': 0.00028694404591104734, 'pray': 0.0005738880918220947, 'curate': 5.738880918220947e-05, '_that_': 0.0004017216642754663, 'profession': 0.0006312769010043042, 'invention': 5.738880918220947e-05, 'existence.': 5.738880918220947e-05, 'interruption': 0.00011477761836441894, 'mindful': 5.738880918220947e-05, 'piano-forte': 0.0002295552367288379, 'recover': 5.738880918220947e-05, 'twelve': 0.0001721664275466284, 'brother-in-law': 5.738880918220947e-05, 'proprietor': 5.738880918220947e-05, 'judge': 0.00011477761836441894, 'sail': 5.738880918220947e-05, 'undertaking': 5.738880918220947e-05, 'cold': 0.00028694404591104734, 'XIII': 5.738880918220947e-05, 'excursion': 0.0002295552367288379, 'sun': 0.0001721664275466284, 'humour': 0.0004017216642754663, 'Nobody': 0.00011477761836441894, 'None': 5.738880918220947e-05, 'town': 0.004705882352941176, 'business.': 0.00011477761836441894, 't': 0.0021807747489239596, 'dear': 0.0017790530846484936, 'madam': 0.0002295552367288379, 'attendance': 0.0002295552367288379, 'admittance': 0.00011477761836441894, 'blow': 0.0004017216642754663, 'note': 0.000860832137733142, 'return.': 5.738880918220947e-05, 'hour.': 5.738880918220947e-05, 'trick': 5.738880918220947e-05, 'writing.': 5.738880918220947e-05, 'purpose': 0.000860832137733142, 'is.': 0.00011477761836441894, 'horseback': 0.0001721664275466284, 'mind.': 5.738880918220947e-05, 'power.': 5.738880918220947e-05, 'leave': 0.0004017216642754663, 'seeing': 5.738880918220947e-05, 'hitherto': 0.0001721664275466284, 'heard': 0.0004591104734576758, 'before': 0.00011477761836441894, 'fear': 0.0010903873744619798, 'ladies.': 5.738880918220947e-05, 'daughter.': 5.738880918220947e-05, 'fortune.': 5.738880918220947e-05, 'consultation': 5.738880918220947e-05, 'drive': 0.0001721664275466284, 'dance': 0.0005164992826398853, 'contentment': 0.0001721664275466284, 'elder': 0.0002295552367288379, 'morning.': 0.0001721664275466284, 'enquire': 5.738880918220947e-05, 'method': 0.00028694404591104734, 'dining-room': 0.00011477761836441894, 'pleasanter': 5.738880918220947e-05, 'life.': 0.00011477761836441894, 'pleasantness': 5.738880918220947e-05, 'propriety.': 5.738880918220947e-05, 'pleasure.': 5.738880918220947e-05, 'impertinent': 5.738880918220947e-05, 'hint': 0.0004017216642754663, 'remarkably': 5.738880918220947e-05, 'corner': 0.0001721664275466284, 'bowling-green': 5.738880918220947e-05, 'wood': 0.0001721664275466284, 'church': 0.0003443328550932568, 'XIV': 5.738880918220947e-05, 'termination': 5.738880918220947e-05, 'steadiness': 0.0001721664275466284, 'wonderer': 5.738880918220947e-05, 'intermission': 0.0001721664275466284, 'distress': 0.0012051649928263989, 'determination': 0.0002295552367288379, 'bye': 0.0001721664275466284, 'bargain.': 5.738880918220947e-05, 'conjecture': 0.00028694404591104734, 'justify': 5.738880918220947e-05, 'variety': 0.0006312769010043042, 'speculation': 5.738880918220947e-05, 'poverty': 0.0004017216642754663, 'secrecy': 0.0005164992826398853, 'practice': 0.0002295552367288379, 'distinguishing': 5.738880918220947e-05, 'tenderness': 0.0010329985652797705, 'perfect': 5.738880918220947e-05, 'stone': 0.0001721664275466284, 'inch': 5.738880918220947e-05, 'glad': 0.0004017216642754663, 'better.': 0.00011477761836441894, 'dispose': 5.738880918220947e-05, 'defect': 0.00028694404591104734, 'cottage.': 0.00011477761836441894, 'kitchen': 0.00011477761836441894, 'tone': 0.0006886657101865136, 'variation': 0.0001721664275466284, 'disadvantage': 0.00011477761836441894, 'staircase': 0.00011477761836441894, 'faultless': 5.738880918220947e-05, 'prescience': 5.738880918220947e-05, 'apartment': 0.0002295552367288379, 'farther': 0.0005164992826398853, 'Shall': 5.738880918220947e-05, 'o': 0.0002295552367288379, 'pretext': 5.738880918220947e-05, 'foresight': 5.738880918220947e-05, 'handkerchief': 0.0002295552367288379, 'mantel-piece': 0.00011477761836441894, 'partook': 5.738880918220947e-05, 'exhilaration': 5.738880918220947e-05, '—and': 0.0007460545193687231, 'twelvemonth.': 5.738880918220947e-05, 'shame': 0.0004017216642754663, 'inclination.': 5.738880918220947e-05, 'nature—that—I': 5.738880918220947e-05, 'dare': 5.738880918220947e-05, 'minute': 0.0005164992826398853, 'speech': 0.0005738880918220947, 'solitude': 0.0004017216642754663, 'uneasiness': 0.0003443328550932568, 'distrust': 0.0002295552367288379, 'affectation': 0.0001721664275466284, 'unwillingness': 0.0002295552367288379, 'backwardness': 0.00011477761836441894, 'quarrel': 0.0001721664275466284, 'relief': 0.0010329985652797705, 'duty': 0.0007460545193687231, 'work': 0.0030989956958393113, 'strange': 0.0001721664275466284, 'trust': 0.0004017216642754663, 'confess': 0.00011477761836441894, 'absent': 0.00011477761836441894, 'cavil': 5.738880918220947e-05, 'satisfactory': 5.738880918220947e-05, 'answer.': 5.738880918220947e-05, 'guilt': 0.0004017216642754663, 'apology': 0.0005738880918220947, 'inadvertence': 5.738880918220947e-05, 'ill': 0.0003443328550932568, 'possibility': 0.0004017216642754663, 'deviation': 0.00011477761836441894, 'happy—and': 5.738880918220947e-05, 'concealing': 5.738880918220947e-05, 'incautiousness.': 5.738880918220947e-05, 'both.': 0.00011477761836441894, 'syllable': 0.0001721664275466284, 'occur': 5.738880918220947e-05, 'confidence': 0.0017790530846484936, '_one_': 0.0001721664275466284, 'carelessness': 0.00011477761836441894, 'mighty': 5.738880918220947e-05, 'concession': 5.738880918220947e-05, 'altar': 0.00011477761836441894, 'inconsistency': 0.00011477761836441894, 'integrity': 0.00028694404591104734, 'cordiality': 0.0003443328550932568, 'temptation': 0.00028694404591104734, 'plain': 0.0002295552367288379, 'avowal': 0.00011477761836441894, 'foundation': 0.0002295552367288379, 'stranger': 5.738880918220947e-05, 'liberty': 0.0010329985652797705, 'fortitude': 0.0005164992826398853, 'command': 0.00011477761836441894, 'instant': 0.00028694404591104734, 'bed': 0.0012625538020086084, 'repose': 0.00011477761836441894, 'headache': 5.738880918220947e-05, 'nourishment': 0.00011477761836441894, 'crying': 0.00011477761836441894, 'reverse': 0.0002295552367288379, 'line': 0.00028694404591104734, 'sadness': 0.00011477761836441894, 'calmer': 5.738880918220947e-05, 'melancholy': 0.0003443328550932568, 'correspondence': 0.0002295552367288379, 'sufficient': 5.738880918220947e-05, 'mystery': 5.738880918220947e-05, 'inflict': 5.738880918220947e-05, 'confession': 0.0003443328550932568, 'revealment': 5.738880918220947e-05, 'denial': 0.00011477761836441894, 'vain': 0.0003443328550932568, 'sunk': 0.0003443328550932568, 'delicacy': 0.0005738880918220947, 'witticisms': 5.738880918220947e-05, 'volume': 5.738880918220947e-05, 'happens.': 5.738880918220947e-05, 'reply': 0.0005738880918220947, 'downs': 5.738880918220947e-05, 'speedy': 5.738880918220947e-05, 'seclusion': 5.738880918220947e-05, 'road': 0.0004017216642754663, 'chiefly': 0.0002295552367288379, '_mind_': 5.738880918220947e-05, 'stretch': 5.738880918220947e-05, 'scene': 0.00028694404591104734, 'riding': 5.738880918220947e-05, 'air.': 5.738880918220947e-05, 'coat': 0.00011477761836441894, 'particularity': 5.738880918220947e-05, 'pace': 0.00011477761836441894, '_him_': 0.0001721664275466284, 'whither': 5.738880918220947e-05, 'continuation': 5.738880918220947e-05, 'coldness': 0.00028694404591104734, 'deficiency': 0.0002295552367288379, 'elect': 5.738880918220947e-05, 'month': 0.0001721664275466284, 'ago.': 5.738880918220947e-05, 'leaves.': 0.00011477761836441894, 'nuisance': 5.738880918220947e-05, 'sight.': 5.738880918220947e-05, 'passion': 0.0002295552367288379, 'reverie': 0.00028694404591104734, 'left': 5.738880918220947e-05, 'grandeur': 0.00011477761836441894, 'winter.': 0.00011477761836441894, 'lane.': 5.738880918220947e-05, 'pleasant': 0.0001721664275466284, 'c.': 0.0003443328550932568, 'extorting': 5.738880918220947e-05, 'past': 0.0007460545193687231, 'resentment': 0.0004591104734576758, 'displeasure': 0.0001721664275466284, 'welcome': 0.0002295552367288379, 'indignant': 0.00011477761836441894, 'orator': 5.738880918220947e-05, 'fame': 5.738880918220947e-05, 'matter.': 5.738880918220947e-05, 'eloquence.': 5.738880918220947e-05, 'moderate': 5.738880918220947e-05, 'it.': 0.0004591104734576758, 'competence': 0.0001721664275466284, 'self': 0.0001721664275466284, 'less.': 5.738880918220947e-05, 'somebody': 0.0001721664275466284, 'animation': 0.0001721664275466284, 'cheeks': 0.0001721664275466284, 'glowing': 5.738880918220947e-05, 'insufficiency': 5.738880918220947e-05, 'wealth.': 5.738880918220947e-05, 'help.': 5.738880918220947e-05, 'commission': 0.0002295552367288379, 'print': 0.0001721664275466284, 'you—and': 5.738880918220947e-05, 'greatness': 0.00011477761836441894, '—Thomson': 5.738880918220947e-05, 'copy': 0.0005164992826398853, 'tree': 0.0001721664275466284, 'disputes.': 5.738880918220947e-05, 'gay': 0.00028694404591104734, 'it—and': 0.00011477761836441894, 'cash': 5.738880918220947e-05, 'collection': 0.00028694404591104734, 'books.': 5.738880918220947e-05, 'bulk': 5.738880918220947e-05, 'heirs.': 5.738880918220947e-05, 'reward': 0.0004017216642754663, 'maxim': 5.738880918220947e-05, 'yourself.': 5.738880918220947e-05, 'gaiety': 0.00028694404591104734, 'character.': 0.00011477761836441894, 'girl—she': 5.738880918220947e-05, 'animation—but': 5.738880918220947e-05, 'misapprehension': 0.0002295552367288379, 'deception': 0.00011477761836441894, 'shy': 5.738880918220947e-05, 'awkwardness': 5.738880918220947e-05, 'gentility': 0.00011477761836441894, 'inattention': 0.0002295552367288379, 'inferiority': 0.00011477761836441894, 'started—': 5.738880918220947e-05, 'very.': 5.738880918220947e-05, '—how': 0.0003443328550932568, 'fast': 5.738880918220947e-05, 'thoughtfulness': 0.00028694404591104734, 'extent—and': 5.738880918220947e-05, 'inspiring': 5.738880918220947e-05, 'reservedness': 5.738880918220947e-05, 'breakfast-room': 5.738880918220947e-05, 'uncouth': 5.738880918220947e-05, 'medium': 0.0003443328550932568, 'hazy': 5.738880918220947e-05, 'country—the': 5.738880918220947e-05, 'timber': 0.0001721664275466284, 'farm': 0.00011477761836441894, 'utility—and': 5.738880918220947e-05, 'moss': 5.738880918220947e-05, 'brush': 5.738880918220947e-05, 'picturesque.': 5.738880918220947e-05, 'discrimination': 5.738880918220947e-05, 'own.': 5.738880918220947e-05, 'landscape': 0.0001721664275466284, 'scenery': 5.738880918220947e-05, 'jargon': 0.00011477761836441894, 'language': 0.0005738880918220947, 'meaning.': 5.738880918220947e-05, 'heath': 5.738880918220947e-05, 'snug': 5.738880918220947e-05, 'farm-house': 5.738880918220947e-05, 'watch-tower—and': 5.738880918220947e-05, 'troop': 5.738880918220947e-05, 'tidy': 5.738880918220947e-05, 'banditti': 5.738880918220947e-05, 'ring': 0.0003443328550932568, 'plait': 5.738880918220947e-05, 'promising': 5.738880918220947e-05, 'vexation': 0.0002295552367288379, 'glance': 0.00028694404591104734, 'setting': 5.738880918220947e-05, 'theft': 5.738880918220947e-05, 'contrivance': 5.738880918220947e-05, 'affront': 5.738880918220947e-05, 'henceforward': 5.738880918220947e-05, 'absence': 0.0005164992826398853, 'forgiveness': 0.0003443328550932568, 'middle': 0.00028694404591104734, 'survey': 0.00011477761836441894, 'newness': 5.738880918220947e-05, 'sprung': 0.00011477761836441894, 'entertainment': 5.738880918220947e-05, 'party.': 5.738880918220947e-05, 'necessity': 0.0010329985652797705, 'blushing': 5.738880918220947e-05, 'brief': 0.0001721664275466284, 'whisper': 0.0003443328550932568, 'guess': 0.00011477761836441894, 'archness': 5.738880918220947e-05, 'good': 0.0003443328550932568, 'self-mortification': 5.738880918220947e-05, 'them—but': 5.738880918220947e-05, 'lie': 5.738880918220947e-05, 'openness': 0.00028694404591104734, 'consistency': 5.738880918220947e-05, 'shortness': 5.738880918220947e-05, 'grievance': 5.738880918220947e-05, 'parent': 0.00028694404591104734, 'renewal': 5.738880918220947e-05, 'finger': 5.738880918220947e-05, 'it—you': 5.738880918220947e-05, 'least—you': 5.738880918220947e-05, 'misfortune': 0.00028694404591104734, 'nicety': 0.00011477761836441894, 'army': 5.738880918220947e-05, 'law': 0.0005164992826398853, 'study': 0.0001721664275466284, 'navy': 5.738880918220947e-05, 'fashion': 0.00028694404591104734, 'dashing': 5.738880918220947e-05, 'idleness': 0.0002295552367288379, 'eighteen': 0.0001721664275466284, 'bent': 0.00011477761836441894, 'accent': 0.00011477761836441894, 'thing.': 5.738880918220947e-05, 'effusion': 0.0001721664275466284, 'patience—or': 5.738880918220947e-05, 'discontent': 0.0001721664275466284, 'parting': 0.0001721664275466284, 'advancement': 0.00011477761836441894, 'faulty': 0.0001721664275466284, 'calm': 0.0001721664275466284, 'mortifying': 0.00011477761836441894, 'meditation': 0.0001721664275466284, 'abundance': 5.738880918220947e-05, 'closing': 5.738880918220947e-05, 'ceremony': 0.0003443328550932568, 'turf': 5.738880918220947e-05, 'casement': 5.738880918220947e-05, 'space': 0.00011477761836441894, 'way.': 0.0001721664275466284, 'plump': 5.738880918220947e-05, 'prepossessing': 5.738880918220947e-05, 'willingness': 0.00011477761836441894, 'self-consequence': 5.738880918220947e-05, 'briefly': 5.738880918220947e-05, 'ma': 0.0005164992826398853, 'meantime': 5.738880918220947e-05, 'astonishment': 0.000975609756097561, 'help': 0.0002295552367288379, 'girl.': 5.738880918220947e-05, 'ever.': 5.738880918220947e-05, 'ceiling': 5.738880918220947e-05, 'bow': 0.0003443328550932568, 'elsewhere.': 5.738880918220947e-05, 'drawing-room': 0.0008034433285509326, 'public.': 5.738880918220947e-05, 'room—': 5.738880918220947e-05, 'devil': 0.0002295552367288379, 'billiard': 5.738880918220947e-05, 'weather.': 5.738880918220947e-05, 'dropt': 5.738880918220947e-05, 'today.': 5.738880918220947e-05, 'don': 0.0003443328550932568, 'ten': 0.0002295552367288379, 'place.': 5.738880918220947e-05, 'vile': 5.738880918220947e-05, 'dining': 0.0001721664275466284, 'cross': 5.738880918220947e-05, 'insolence': 0.0001721664275466284, 'humour.': 5.738880918220947e-05, 'bias': 5.738880918220947e-05, 'blunder': 5.738880918220947e-05, 'treatment': 0.00028694404591104734, 'motive': 0.0003443328550932568, 'superiority': 0.00011477761836441894, 'ill-breeding': 5.738880918220947e-05, '—My': 5.738880918220947e-05, 'view.': 5.738880918220947e-05, 'election': 5.738880918220947e-05, 'hardship': 0.00011477761836441894, 'obligation': 0.00028694404591104734, '—won': 5.738880918220947e-05, 'writing': 0.0002295552367288379, 'palm': 5.738880918220947e-05, 'droll': 0.00011477761836441894, 'speak': 0.00011477761836441894, 'imagine': 5.738880918220947e-05, 'stop': 0.00011477761836441894, 'confirmation': 0.0001721664275466284, 'neighbour': 0.00011477761836441894, 'match.': 5.738880918220947e-05, 'pretend': 0.0001721664275466284, 'town.': 5.738880918220947e-05, 'body.': 5.738880918220947e-05, 'know': 5.738880918220947e-05, 'school': 0.0003443328550932568, 'wondering': 5.738880918220947e-05, 'unsuitableness': 5.738880918220947e-05, 'zeal': 0.00011477761836441894, 'worse': 5.738880918220947e-05, 'philosophy': 5.738880918220947e-05, 'reprimand': 0.00011477761836441894, 'dress': 0.0003443328550932568, 'philanthropic': 5.738880918220947e-05, 'come—you': 5.738880918220947e-05, 'declare': 0.00011477761836441894, 'coach': 0.0002295552367288379, '_You_': 5.738880918220947e-05, 'anew': 0.00011477761836441894, 'introduction': 0.0001721664275466284, 'smartness': 5.738880918220947e-05, 'importunate': 5.738880918220947e-05, 'endurance': 5.738880918220947e-05, 'offspring': 0.0001721664275466284, 'complacency': 0.0002295552367288379, 'pocket': 0.0002295552367288379, 'window—': 5.738880918220947e-05, 'tricks.': 5.738880918220947e-05, 'quiet—Never': 5.738880918220947e-05, 'pin': 5.738880918220947e-05, 'pattern': 5.738880918220947e-05, 'gentleness': 0.00028694404591104734, 'consternation': 5.738880918220947e-05, 'emergency': 5.738880918220947e-05, 'sufferer': 5.738880918220947e-05, 'lap': 0.00011477761836441894, 'wound': 5.738880918220947e-05, 'lavender-water': 5.738880918220947e-05, 'mouth': 0.0001721664275466284, 'stuffed': 5.738880918220947e-05, 'sugar': 5.738880918220947e-05, 'apricot': 5.738880918220947e-05, 'marmalade': 5.738880918220947e-05, 'temple': 0.0001721664275466284, 'remedy': 5.738880918220947e-05, 'scratch': 5.738880918220947e-05, 'therefore': 0.00028694404591104734, 'quest': 0.00011477761836441894, 'medicine': 5.738880918220947e-05, 'accident.': 5.738880918220947e-05, 'reality.': 5.738880918220947e-05, 'task': 0.0001721664275466284, 'eclat': 5.738880918220947e-05, 'life.—I': 5.738880918220947e-05, 'children.': 0.0001721664275466284, 'outside': 5.738880918220947e-05, 'freedom': 0.0001721664275466284, '_must_': 0.00011477761836441894, 'admire': 5.738880918220947e-05, 'beaux': 0.0004591104734576758, 'ashamed': 0.00011477761836441894, 'genteel': 5.738880918220947e-05, 'bear': 5.738880918220947e-05, 'beau': 0.0005738880918220947, 'clerk': 5.738880918220947e-05, 'else.': 5.738880918220947e-05, 'specimen': 0.00011477761836441894, 'artlessness': 5.738880918220947e-05, 'proportion': 0.0002295552367288379, 'lot': 0.0002295552367288379, 'whatever': 5.738880918220947e-05, 'luck': 0.0001721664275466284, 'drinking': 0.00011477761836441894, 'significancy': 5.738880918220947e-05, 'productive': 5.738880918220947e-05, 'alphabet': 5.738880918220947e-05, 'inquisitiveness': 5.738880918220947e-05, 'secret.': 5.738880918220947e-05, 'amendment': 0.0004017216642754663, 'knowing': 5.738880918220947e-05, 'disadvantage.—But': 5.738880918220947e-05, 'toleration': 5.738880918220947e-05, 'vulgarity': 5.738880918220947e-05, 'endeavour': 0.00028694404591104734, 'communication': 0.0006886657101865136, 'aid': 0.0001721664275466284, 'illiterate': 5.738880918220947e-05, 'neglect': 0.0001721664275466284, 'rectitude': 5.738880918220947e-05, 'insincerity': 0.00011477761836441894, 'instruction': 0.00011477761836441894, 'equality': 5.738880918220947e-05, 'show': 0.0001721664275466284, 'deference': 0.00011477761836441894, 'cottage—': 5.738880918220947e-05, 'her.': 0.0001721664275466284, '_you_': 0.00028694404591104734, 'come—how': 5.738880918220947e-05, 'herself—when': 5.738880918220947e-05, 'brother.': 5.738880918220947e-05, 'disbelief': 5.738880918220947e-05, 'assertion': 0.0004591104734576758, 'firm': 0.00011477761836441894, 'incredulity': 5.738880918220947e-05, 'fit': 0.0001721664275466284, 'swoon': 5.738880918220947e-05, 'dependence': 0.0004017216642754663, 'sisters.': 5.738880918220947e-05, 'standing': 5.738880918220947e-05, 'years.': 0.00011477761836441894, 'day.': 0.00011477761836441894, 'date': 0.0001721664275466284, 'while.': 5.738880918220947e-05, 'talk': 0.0004017216642754663, 'pupil': 5.738880918220947e-05, 'falsehood—': 5.738880918220947e-05, '—I': 0.0002295552367288379, 'pardon': 0.0003443328550932568, 'depends.': 5.738880918220947e-05, 'perplexity': 0.0002295552367288379, 'secret': 0.00028694404591104734, '_occasion_': 5.738880918220947e-05, 'painting': 0.00011477761836441894, 'falsehood': 0.0002295552367288379, 'likeness': 5.738880918220947e-05, 'vexed': 5.738880918220947e-05, 'opportunity.': 5.738880918220947e-05, 'calmly': 0.0001721664275466284, 'safety.': 5.738880918220947e-05, 'making': 5.738880918220947e-05, 'betraying': 5.738880918220947e-05, 'tongue': 0.00011477761836441894, 'fright': 0.00028694404591104734, 'suspense': 0.0003443328550932568, 'uncertainty': 0.00011477761836441894, 'entirely.': 5.738880918220947e-05, 'too—so': 5.738880918220947e-05, 'veracity': 0.00011477761836441894, 'sheet': 5.738880918220947e-05, 'success': 0.0004591104734576758, 'END': 0.0001721664275466284, 'folly': 0.0001721664275466284, 'proofs': 0.0001721664275466284, 'dissatisfaction': 5.738880918220947e-05, 'intimate': 0.0001721664275466284, 'evidence': 5.738880918220947e-05, 'overcame': 5.738880918220947e-05, 'ill-treatment': 5.738880918220947e-05, 'indignation': 0.0005164992826398853, 'dupe': 5.738880918220947e-05, 'illusion': 5.738880918220947e-05, 'softener': 5.738880918220947e-05, 'hopeless': 0.0002295552367288379, 'regain': 5.738880918220947e-05, 'tranquillity': 0.0002295552367288379, 'her—illiterate': 5.738880918220947e-05, 'infatuation': 5.738880918220947e-05, 'nineteen': 5.738880918220947e-05, 'succeeding': 5.738880918220947e-05, 'spent': 0.0002295552367288379, 'supposition': 5.738880918220947e-05, 'patience': 0.00028694404591104734, 'unkindness': 0.0002295552367288379, 'unhappiness': 0.00028694404591104734, 'smart': 0.00011477761836441894, 'extinction': 5.738880918220947e-05, 'aggravation': 5.738880918220947e-05, 'condemnation': 0.00011477761836441894, 'counsel': 0.0002295552367288379, 'firmness': 0.00028694404591104734, 'agitation': 0.000975609756097561, 'venturing': 5.738880918220947e-05, 'weight': 0.0001721664275466284, 'disclosure': 5.738880918220947e-05, 'honesty': 0.00011477761836441894, 'repetition': 0.00028694404591104734, 'joining': 5.738880918220947e-05, 'chat': 0.00011477761836441894, 'eating': 0.00011477761836441894, 'charity': 0.00011477761836441894, 'club': 5.738880918220947e-05, 'fairer': 5.738880918220947e-05, 'opening': 0.0002295552367288379, 'tranquil': 0.0001721664275466284, 'permission': 0.0004017216642754663, 'seclude': 5.738880918220947e-05, 'novelty': 5.738880918220947e-05, 'impossibility': 0.0002295552367288379, 'preparation': 0.00028694404591104734, 'candlelight': 5.738880918220947e-05, 'to-morrow': 5.738880918220947e-05, 'angel': 0.0001721664275466284, 'eyes—will': 5.738880918220947e-05, 'bell': 0.00011477761836441894, 'alacrity': 0.00011477761836441894, 'rubber': 0.0002295552367288379, '_she_': 0.0002295552367288379, 'labour': 5.738880918220947e-05, 'utmost': 0.0004017216642754663, 'harmony': 0.00011477761836441894, 'interesting': 5.738880918220947e-05, 'risk': 0.00028694404591104734, 'XXIV': 5.738880918220947e-05, 'ice': 5.738880918220947e-05, 'mother.': 5.738880918220947e-05, 'constancy': 0.00028694404591104734, 'test': 5.738880918220947e-05, 'trial': 0.0001721664275466284, 'first.': 0.00011477761836441894, 'lowness': 5.738880918220947e-05, 'tediousness': 0.00011477761836441894, 'anger': 0.0002295552367288379, 'measures.': 5.738880918220947e-05, 'disinterestedness': 5.738880918220947e-05, 'reason.': 5.738880918220947e-05, 'brother—silly': 5.738880918220947e-05, 'coxcomb.': 5.738880918220947e-05, 'coxcomb': 0.00011477761836441894, 'ear': 0.0002295552367288379, 'coxcombs.': 5.738880918220947e-05, 'lip': 5.738880918220947e-05, 'protection': 0.0001721664275466284, 'concerto': 5.738880918220947e-05, 'scheme': 0.0003443328550932568, 'incumbent': 0.0001721664275466284, 'rest.': 5.738880918220947e-05, 'husband.': 0.00011477761836441894, 'wishes.': 5.738880918220947e-05, 'solemnity': 0.0001721664275466284, 'person.': 0.00011477761836441894, 'pique': 5.738880918220947e-05, 'stress': 5.738880918220947e-05, 'duration': 5.738880918220947e-05, 'conclusion': 0.00028694404591104734, 'reluctance': 0.00011477761836441894, 'card': 0.0005738880918220947, 'alone': 0.00011477761836441894, 'aware': 0.0001721664275466284, 'confidante': 0.00011477761836441894, 'whenever': 0.0001721664275466284, 'celebration': 5.738880918220947e-05, 'festival': 5.738880918220947e-05, 'XXV': 5.738880918220947e-05, 'portion': 0.00011477761836441894, 'habitation': 5.738880918220947e-05, 'approach': 0.0001721664275466284, 'refusal': 5.738880918220947e-05, 'chaise': 0.0003443328550932568, 'poking': 5.738880918220947e-05, 'bargain': 5.738880918220947e-05, 'absence—Oh': 5.738880918220947e-05, 'struggle.': 5.738880918220947e-05, 'cautiousness': 5.738880918220947e-05, 'impediment': 5.738880918220947e-05, 'obstacle': 0.00011477761836441894, 'unpleasantness': 0.00011477761836441894, 'guidance': 5.738880918220947e-05, 'mercy': 0.00011477761836441894, 'abridgement': 5.738880918220947e-05, 'family.': 5.738880918220947e-05, 'shock': 0.00028694404591104734, 'attack': 0.0001721664275466284, 'dread': 0.0003443328550932568, 'acquisition': 0.0001721664275466284, 'perturbation': 5.738880918220947e-05, 'impatience': 0.0003443328550932568, 'restorative': 5.738880918220947e-05, 'score': 5.738880918220947e-05, 'station': 5.738880918220947e-05, 'measure': 0.0004591104734576758, 'rapture': 0.00011477761836441894, 'blank': 5.738880918220947e-05, 'nature—she': 5.738880918220947e-05, 'complaisance': 0.00011477761836441894, 'companionableness': 5.738880918220947e-05, 'wrapt': 5.738880918220947e-05, 'drew': 0.00011477761836441894, 'exclamation': 0.0002295552367288379, 'inn': 0.00011477761836441894, 'preferring': 5.738880918220947e-05, 'salmon': 5.738880918220947e-05, 'luxury': 0.00011477761836441894, 'mantelpiece': 5.738880918220947e-05, 'footman': 0.00011477761836441894, 'conveyed': 5.738880918220947e-05, 'flutter': 0.00011477761836441894, 'sound': 0.00028694404591104734, 'rap': 0.0002295552367288379, 'ecstasy': 0.0001721664275466284, 'you—sorry': 5.738880918220947e-05, 'bee': 5.738880918220947e-05, 'too—which': 5.738880918220947e-05, 'Ah': 5.738880918220947e-05, 'mildness': 0.0001721664275466284, 'watch': 5.738880918220947e-05, 'purchase': 0.00011477761836441894, 'indecision': 0.00011477761836441894, 'porter': 0.00011477761836441894, '_I_': 0.00011477761836441894, 'interference': 5.738880918220947e-05, 'whist': 5.738880918220947e-05, 'country.': 5.738880918220947e-05, 'severity': 0.00011477761836441894, 'longer—nay': 5.738880918220947e-05, 'tonight': 0.00011477761836441894, 'week.': 5.738880918220947e-05, 'warrant': 5.738880918220947e-05, 'post.': 5.738880918220947e-05, 'privacy': 0.00011477761836441894, 'watchfulness': 0.00011477761836441894, 'frost': 0.0001721664275466284, 'muff': 5.738880918220947e-05, 'clouds': 5.738880918220947e-05, 'afternoon.': 5.738880918220947e-05, 'atmosphere': 5.738880918220947e-05, 'city': 5.738880918220947e-05, 'occurrence': 5.738880918220947e-05, 'mistress.': 5.738880918220947e-05, 'provoking': 5.738880918220947e-05, 'little—not': 5.738880918220947e-05, 'much.': 5.738880918220947e-05, '_you_—you': 5.738880918220947e-05, 'Business': 5.738880918220947e-05, 'appointment': 0.0002295552367288379, 'ball': 5.738880918220947e-05, 'reputation': 5.738880918220947e-05, 'collation': 5.738880918220947e-05, 'recognition': 5.738880918220947e-05, 'enough—_he_': 5.738880918220947e-05, 'bit': 5.738880918220947e-05, 'street': 0.0001721664275466284, 'Impatient': 5.738880918220947e-05, 'health': 0.0006886657101865136, 'morrow': 5.738880918220947e-05, 'application': 0.0002295552367288379, 'plea': 5.738880918220947e-05, 'disclosing': 5.738880918220947e-05, 'ready': 5.738880918220947e-05, 'simple': 5.738880918220947e-05, 'expedient': 0.0001721664275466284, 'correspond': 5.738880918220947e-05, 'of.': 5.738880918220947e-05, 'to—': 5.738880918220947e-05, 'ceasing': 5.738880918220947e-05, '—took': 5.738880918220947e-05, 'staid': 5.738880918220947e-05, 'attitude': 0.0002295552367288379, 'destination': 5.738880918220947e-05, 'string': 5.738880918220947e-05, 'landing-place': 0.00011477761836441894, 'tribute': 5.738880918220947e-05, 'crowd': 0.0001721664275466284, 'heat': 5.738880918220947e-05, 'reach': 0.00011477761836441894, 'feature': 5.738880918220947e-05, 'touch': 0.00011477761836441894, 'heaven': 5.738880918220947e-05, 'lavender': 0.00011477761836441894, 'peace': 0.0002295552367288379, 'hartshorn': 5.738880918220947e-05, 'consciousness': 0.0006886657101865136, 'misconduct': 0.0002295552367288379, 'investigation': 5.738880918220947e-05, 'Absence': 5.738880918220947e-05, 'deepest': 5.738880918220947e-05, 'rupture': 0.0001721664275466284, 'housemaid': 0.0001721664275466284, 'flow': 0.00011477761836441894, 'sleep': 0.0004591104734576758, 'sobs': 0.00011477761836441894, 'pen': 0.0001721664275466284, 'irritability': 5.738880918220947e-05, 'wander': 5.738880918220947e-05, 'ate': 5.738880918220947e-05, 'meal': 5.738880918220947e-05, 'working': 5.738880918220947e-05, 'paleness': 5.738880918220947e-05, 'sickness': 5.738880918220947e-05, 'tremour': 5.738880918220947e-05, 'liking': 0.0001721664275466284, 'rug': 5.738880918220947e-05, 'report': 0.0002295552367288379, 'eager': 0.0001721664275466284, 'burst': 5.738880918220947e-05, 'first': 5.738880918220947e-05, 'read': 0.00011477761836441894, 'meant': 5.738880918220947e-05, 'honourable': 5.738880918220947e-05, 'feeling—so': 5.738880918220947e-05, 'release': 0.0002295552367288379, 'faith': 0.00028694404591104734, 'insult': 0.00011477761836441894, 'writer': 0.0001721664275466284, 'villainy': 5.738880918220947e-05, 'perusal': 5.738880918220947e-05, 'disengagement': 5.738880918220947e-05, 'escape': 0.0001721664275466284, 'deliverance': 0.0001721664275466284, 'depravity': 5.738880918220947e-05, 'chariot': 0.00011477761836441894, 'contributing': 5.738880918220947e-05, 'off': 0.00011477761836441894, 'floor': 5.738880918220947e-05, 'giddy': 5.738880918220947e-05, 'food': 5.738880918220947e-05, 'stomach': 5.738880918220947e-05, 'faintness': 5.738880918220947e-05, 'glass': 0.00011477761836441894, 'wine': 0.00028694404591104734, 'anguish': 0.00011477761836441894, 'torrent': 5.738880918220947e-05, 'think': 0.0004591104734576758, 'suffer': 0.00011477761836441894, 'grief.': 5.738880918220947e-05, 'state.': 5.738880918220947e-05, 'period—if': 5.738880918220947e-05, 'Yes': 0.00011477761836441894, 'hither': 5.738880918220947e-05, 'adieu': 0.00011477761836441894, '—': 0.0002295552367288379, 'call': 0.0002295552367288379, 'insulting': 5.738880918220947e-05, 'justification': 0.0001721664275466284, 'covenant': 5.738880918220947e-05, 'same.': 5.738880918220947e-05, 'art': 0.00011477761836441894, 'supplication': 0.00011477761836441894, 'distress—can': 5.738880918220947e-05, 'cruelty': 0.0004017216642754663, 'suspect': 0.00011477761836441894, 'enemy': 5.738880918220947e-05, 'triumph': 0.0003443328550932568, 'innocence': 0.00011477761836441894, 'pride': 0.0004591104734576758, 'mortification—but': 5.738880918220947e-05, 'mine—': 5.738880918220947e-05, 'me—ought': 5.738880918220947e-05, '—Elinor': 5.738880918220947e-05, 'woman—who': 5.738880918220947e-05, '—Who': 5.738880918220947e-05, 'one—he': 5.738880918220947e-05, 'myself.': 0.0001721664275466284, 'sake—and': 5.738880918220947e-05, 'posture': 0.0001721664275466284, 'motionless': 5.738880918220947e-05, 'dressing': 5.738880918220947e-05, 'disturb': 5.738880918220947e-05, 'cry': 5.738880918220947e-05, 'tiptoe': 5.738880918220947e-05, 'bustle': 0.0001721664275466284, 'abstraction': 5.738880918220947e-05, 'fondness': 5.738880918220947e-05, 'check': 5.738880918220947e-05, 'sign': 0.00011477761836441894, 'Lord': 0.0002295552367288379, 'bless': 0.0001721664275466284, 'aunt': 5.738880918220947e-05, 'signify': 5.738880918220947e-05, 'reform': 5.738880918220947e-05, 'supper': 0.0001721664275466284, 'allusion': 5.738880918220947e-05, 'good-nature': 0.00028694404591104734, 'considerate': 0.00011477761836441894, 'tis': 0.0002295552367288379, 'blown': 5.738880918220947e-05, 'sister.': 0.0001721664275466284, 'hereafter': 0.0001721664275466284, 'enforcement': 5.738880918220947e-05, 'hilarity': 5.738880918220947e-05, 'ill-wind': 5.738880918220947e-05, 'chuckle': 5.738880918220947e-05, 'debt': 0.00011477761836441894, 'mulberry': 5.738880918220947e-05, 'dove-cote': 5.738880918220947e-05, 'canal': 0.00011477761836441894, 'quarter': 0.0004017216642754663, 'turnpike-road': 5.738880918220947e-05, 'yew': 0.00011477761836441894, 'arbour': 0.00011477761836441894, 'parsonage-house': 0.0001721664275466284, 'throw': 5.738880918220947e-05, 'meat': 5.738880918220947e-05, 'nearer': 5.738880918220947e-05, 'shoulder': 0.00011477761836441894, 'mutton': 5.738880918220947e-05, 'impatient': 0.0002295552367288379, 'suffering': 0.0001721664275466284, 'pillow': 5.738880918220947e-05, 'wine-glass': 5.738880918220947e-05, 'colicky': 5.738880918220947e-05, 'gout': 0.00011477761836441894, 'asleep': 5.738880918220947e-05, 'compromise': 5.738880918220947e-05, 'dear.': 5.738880918220947e-05, 'elucidation': 5.738880918220947e-05, 'stationer': 5.738880918220947e-05, 'shop': 0.0003443328550932568, 'secret—it': 5.738880918220947e-05, 'sister—how': 5.738880918220947e-05, 'perhaps—but': 0.00011477761836441894, 'hardness': 5.738880918220947e-05, 'so—she': 5.738880918220947e-05, 'bloom': 0.0001721664275466284, 'XXXI': 5.738880918220947e-05, 'avoiding': 5.738880918220947e-05, 'injustice': 0.0002295552367288379, 'refinement': 5.738880918220947e-05, 'weakness': 0.0002295552367288379, 'impulse': 0.0001721664275466284, 'goodwill': 0.00011477761836441894, 'contrition': 0.00011477761836441894, 'explanatory': 5.738880918220947e-05, 'convincing': 5.738880918220947e-05, 'eloquence': 0.0002295552367288379, 'page': 0.0001721664275466284, 'dearer': 0.0002295552367288379, 'except': 5.738880918220947e-05, 'perceiving': 5.738880918220947e-05, 'conscience': 0.0006886657101865136, 'others.': 5.738880918220947e-05, 'error': 0.0001721664275466284, 'thither': 5.738880918220947e-05, 'disturbed': 5.738880918220947e-05, 'salutation': 0.00011477761836441894, 'means': 0.0002295552367288379, 'comfort—but': 5.738880918220947e-05, 'mother—will': 5.738880918220947e-05, '_very_': 5.738880918220947e-05, 'idea—I': 5.738880918220947e-05, 'narrator': 5.738880918220947e-05, 'conversation—': 5.738880918220947e-05, 'dance—in': 5.738880918220947e-05, 'resembling': 5.738880918220947e-05, 'orphan': 5.738880918220947e-05, 'infancy': 5.738880918220947e-05, 'guardianship': 0.00011477761836441894, 'guardian': 5.738880918220947e-05, 'treachery': 5.738880918220947e-05, 'one—but': 5.738880918220947e-05, 'regiment': 5.738880918220947e-05, 'weight—was': 5.738880918220947e-05, 'divorce': 5.738880918220947e-05, 'gloom': 0.00011477761836441894, 'search': 0.00011477761836441894, 'seducer': 5.738880918220947e-05, 'deeper': 5.738880918220947e-05, 'sin': 5.738880918220947e-05, 'extravagance': 0.00011477761836441894, 'spunging-house': 5.738880918220947e-05, 'blooming': 5.738880918220947e-05, 'her—but': 5.738880918220947e-05, 'stage': 0.00011477761836441894, 'consumption': 5.738880918220947e-05, 'fate': 0.0004017216642754663, 'lead': 5.738880918220947e-05, 'years—it': 5.738880918220947e-05, 'concise': 5.738880918220947e-05, 'daughter—better': 5.738880918220947e-05, 'clue': 5.738880918220947e-05, 'looks': 5.738880918220947e-05, 'incivility': 0.00011477761836441894, 'ignorant': 0.00011477761836441894, 'sister—but': 5.738880918220947e-05, 'usage': 5.738880918220947e-05, 'doubtless': 5.738880918220947e-05, 'self-reproach': 0.0001721664275466284, 'Concern': 5.738880918220947e-05, 'recital': 0.00011477761836441894, 'unworthiness': 5.738880918220947e-05, 'lying-in': 5.738880918220947e-05, 'delivery': 5.738880918220947e-05, 'XXXII': 5.738880918220947e-05, 'vindication': 0.0002295552367288379, 'no': 5.738880918220947e-05, 'compassionate': 0.00011477761836441894, 'seduction': 5.738880918220947e-05, 'desertion': 5.738880918220947e-05, 'designs': 5.738880918220947e-05, 'entreat': 0.00011477761836441894, 'humiliating': 5.738880918220947e-05, 'origin': 0.00011477761836441894, 'cheat': 5.738880918220947e-05, 'Design': 5.738880918220947e-05, 'negligence': 0.00011477761836441894, 'retirement': 0.00011477761836441894, 'alleviation': 5.738880918220947e-05, 'sympathy': 0.0001721664275466284, 'militate': 5.738880918220947e-05, 'carefulness': 5.738880918220947e-05, 'covert': 5.738880918220947e-05, 'scoundrel': 0.00011477761836441894, 'dog': 5.738880918220947e-05, 'everybody': 0.0003443328550932568, 'good-for-nothing': 5.738880918220947e-05, 'approaching': 5.738880918220947e-05, 'coachmaker': 5.738880918220947e-05, 'painter': 5.738880918220947e-05, 'portrait': 5.738880918220947e-05, 'unconcern': 5.738880918220947e-05, 'circle': 0.00011477761836441894, 'qualification': 5.738880918220947e-05, 'condolence': 5.738880918220947e-05, 'vent': 5.738880918220947e-05, 'dignity': 0.0002295552367288379, 'pitying': 5.738880918220947e-05, 'honours': 5.738880918220947e-05, 'receipt': 0.0002295552367288379, 'office': 0.0004017216642754663, '_still_': 5.738880918220947e-05, 'emphasis': 5.738880918220947e-05, '_month_': 5.738880918220947e-05, '_hurry_': 5.738880918220947e-05, 'word_.': 5.738880918220947e-05, 'exultation': 0.0002295552367288379, 'join': 5.738880918220947e-05, 'post-chaise': 5.738880918220947e-05, '‘': 0.0005164992826398853, 'mine.': 5.738880918220947e-05, 'cessation': 5.738880918220947e-05, 'unfit': 5.738880918220947e-05, 'conversation.': 5.738880918220947e-05, 'word.': 5.738880918220947e-05, 'gown': 0.00011477761836441894, 'negotiation': 5.738880918220947e-05, 'stairs': 0.00011477761836441894, 'counter': 5.738880918220947e-05, 'quicker': 5.738880918220947e-05, 'correctness': 5.738880918220947e-05, 'toothpick-case': 0.0001721664275466284, 'shape': 5.738880918220947e-05, 'insignificance': 5.738880918220947e-05, 'puppyism': 5.738880918220947e-05, 'inspection': 0.00011477761836441894, 'bedroom': 5.738880918220947e-05, 'ivory': 5.738880918220947e-05, 'pearls': 5.738880918220947e-05, 'conceit': 0.0001721664275466284, 'forward': 5.738880918220947e-05, 'seal': 5.738880918220947e-05, 'pretence': 0.00011477761836441894, 'where.': 5.738880918220947e-05, 'pitch': 5.738880918220947e-05, 'sake.': 0.00011477761836441894, 'mistaken': 0.00011477761836441894, 'side—in': 5.738880918220947e-05, 'whisper—': 5.738880918220947e-05, 'settling': 0.00011477761836441894, 'assent': 0.0002295552367288379, 'one.': 0.0002295552367288379, 'enclosure': 5.738880918220947e-05, 'drain': 5.738880918220947e-05, 'land': 0.0002295552367288379, 'money.': 5.738880918220947e-05, 'purchase-money': 5.738880918220947e-05, 'banker': 5.738880918220947e-05, 'loss.': 5.738880918220947e-05, 'circumstances.': 5.738880918220947e-05, 'laid': 5.738880918220947e-05, 'green-house': 0.0001721664275466284, 'out.': 5.738880918220947e-05, 'knoll': 5.738880918220947e-05, 'walnut': 5.738880918220947e-05, 'brow.': 5.738880918220947e-05, 'provocation': 0.00011477761836441894, 'pair': 0.0002295552367288379, 'cheerfuller': 5.738880918220947e-05, 'prosperity': 0.00011477761836441894, 'complaint': 0.00028694404591104734, 'Dorsetshire': 5.738880918220947e-05, 'visitors.': 5.738880918220947e-05, 'likelihood': 0.00011477761836441894, 'compunction': 5.738880918220947e-05, 'selfishness': 0.0003443328550932568, 'demeanor': 5.738880918220947e-05, 'deed': 0.00011477761836441894, 'detection': 5.738880918220947e-05, 'them—a': 5.738880918220947e-05, '_her_': 0.0001721664275466284, 'hearing': 0.00028694404591104734, '—she': 0.00011477761836441894, 'envy': 0.00011477761836441894, 'aspect': 0.00011477761836441894, 'contraction': 0.00011477761836441894, 'brow': 5.738880918220947e-05, 'graciousness': 0.0001721664275466284, 'distinguished—whom': 5.738880918220947e-05, 'indigence': 5.738880918220947e-05, 'appeared—but': 5.738880918220947e-05, 'agreeable—Want': 5.738880918220947e-05, 'improved—want': 5.738880918220947e-05, 'elegance—want': 5.738880918220947e-05, 'spirits—or': 5.738880918220947e-05, 'horses—but': 5.738880918220947e-05, 'coffee': 5.738880918220947e-05, 'descendant': 5.738880918220947e-05, 'removing': 5.738880918220947e-05, 'am—an': 5.738880918220947e-05, 'does_': 5.738880918220947e-05, 'paint': 5.738880918220947e-05, '—How': 5.738880918220947e-05, 'well.': 0.00011477761836441894, 'this.—She': 5.738880918220947e-05, 'speak.': 5.738880918220947e-05, 'stiffly': 5.738880918220947e-05, 'retort': 5.738880918220947e-05, 'philippic': 5.738880918220947e-05, 'audacity': 5.738880918220947e-05, 'horror': 0.0002295552367288379, 'arm': 0.00011477761836441894, 'close': 0.0001721664275466284, 'author': 5.738880918220947e-05, 'shocking': 5.738880918220947e-05, 'constitution': 0.0001721664275466284, 'meanness': 0.0001721664275466284, 'prejudice': 0.00011477761836441894, 'creation': 0.00011477761836441894, 'caprice': 5.738880918220947e-05, 'down': 0.0001721664275466284, 'affability': 0.00011477761836441894, '—Did': 0.00011477761836441894, 'hauteur': 5.738880918220947e-05, 'same—all': 5.738880918220947e-05, 'case—': 5.738880918220947e-05, 'quickly—': 5.738880918220947e-05, '—you': 5.738880918220947e-05, 'health.': 5.738880918220947e-05, 'friendship.': 5.738880918220947e-05, 'courtesy': 5.738880918220947e-05, 'way—you': 5.738880918220947e-05, 'struggle': 0.00011477761836441894, 're-assurance': 5.738880918220947e-05, 'courage': 0.0002295552367288379, 'demure': 5.738880918220947e-05, 'contribution': 5.738880918220947e-05, '—This': 5.738880918220947e-05, 'agree': 5.738880918220947e-05, 'charge.': 5.738880918220947e-05, '—Why': 5.738880918220947e-05, 'revenge': 0.00011477761836441894, 'great.': 5.738880918220947e-05, 'sting': 5.738880918220947e-05, '—Then': 5.738880918220947e-05, 'commendation.': 5.738880918220947e-05, 'aside': 5.738880918220947e-05, 'bound': 5.738880918220947e-05, 'meeting—and': 5.738880918220947e-05, 'heir': 5.738880918220947e-05, 'paragraph': 0.0005738880918220947, 'reading': 0.00011477761836441894, 'flattery': 0.00028694404591104734, 'administer': 5.738880918220947e-05, 'offering': 5.738880918220947e-05, 'sacrifice': 0.0001721664275466284, 'conciliation': 5.738880918220947e-05, 'Doctor': 5.738880918220947e-05, 'detail': 0.00011477761836441894, '_did_': 0.00011477761836441894, 'baby': 0.0001721664275466284, 'proposition': 5.738880918220947e-05, 'befell': 5.738880918220947e-05, 'misconstruction': 5.738880918220947e-05, 'mode': 0.00011477761836441894, 'toilet': 5.738880918220947e-05, 'price': 0.00011477761836441894, 'douceur': 5.738880918220947e-05, 'punctuality': 5.738880918220947e-05, 'coachman': 5.738880918220947e-05, 'scruple': 0.0002295552367288379, 'harp': 5.738880918220947e-05, 'violoncello': 5.738880918220947e-05, 'group': 0.00011477761836441894, 'lecture': 5.738880918220947e-05, 'stroke': 5.738880918220947e-05, 'ill-humour': 5.738880918220947e-05, 'emptiness': 5.738880918220947e-05, 'extreme': 0.00011477761836441894, '_gaucherie_': 5.738880918220947e-05, 'tuition': 5.738880918220947e-05, 'hearty': 5.738880918220947e-05, 'library': 0.0002295552367288379, 'saloon.': 5.738880918220947e-05, 'dwelling.': 5.738880918220947e-05, 'struck': 0.00011477761836441894, 'enfranchisement': 5.738880918220947e-05, 'otherwise': 0.0001721664275466284, 'humility': 0.0002295552367288379, 'relations.': 5.738880918220947e-05, 'vigor': 5.738880918220947e-05, 'suspecting': 5.738880918220947e-05, 'needless': 5.738880918220947e-05, 'proud': 0.0001721664275466284, 'vouchsafed': 5.738880918220947e-05, 'malice': 0.00011477761836441894, 'entry': 5.738880918220947e-05, 'emigrant': 5.738880918220947e-05, 'once': 5.738880918220947e-05, 'Dashwood': 5.738880918220947e-05, 'fuss': 5.738880918220947e-05, 'gum': 0.00011477761836441894, '_That_': 0.0002295552367288379, 'conjurer': 5.738880918220947e-05, 'carpet-work': 0.00011477761836441894, 'dressing-room': 0.00011477761836441894, 'steward': 5.738880918220947e-05, 'fury': 5.738880918220947e-05, 'Nancy': 5.738880918220947e-05, 'uproar': 5.738880918220947e-05, 'yours—or': 5.738880918220947e-05, 'bigger—with': 5.738880918220947e-05, 'impartiality': 5.738880918220947e-05, 'one.—She': 5.738880918220947e-05, 'narration': 0.0001721664275466284, 'hearer': 5.738880918220947e-05, 'comforter': 5.738880918220947e-05, 'mankind': 5.738880918220947e-05, 'regularity': 5.738880918220947e-05, 'combat': 5.738880918220947e-05, 'duty.—My': 5.738880918220947e-05, 'comprehension.': 5.738880918220947e-05, 'punishment': 0.0003443328550932568, '_Then_': 5.738880918220947e-05, 'friends—from': 5.738880918220947e-05, '—Is': 5.738880918220947e-05, 'tenderest': 5.738880918220947e-05, 'frame': 5.738880918220947e-05, 'bitterness': 5.738880918220947e-05, 'reparation': 5.738880918220947e-05, 'discreet': 5.738880918220947e-05, 'am.': 5.738880918220947e-05, 'spasm': 5.738880918220947e-05, 'heroism': 5.738880918220947e-05, 'yesterday.': 5.738880918220947e-05, 'distress—but': 5.738880918220947e-05, 'storm': 5.738880918220947e-05, 'ingratitude': 0.00011477761836441894, 'benevolence': 0.0001721664275466284, 'prepossession': 0.00011477761836441894, '_There_': 5.738880918220947e-05, 'avail': 5.738880918220947e-05, 'penury': 5.738880918220947e-05, 'obstinacy': 5.738880918220947e-05, 'blunt': 5.738880918220947e-05, 'rascal': 5.738880918220947e-05, 'apprehension': 0.00011477761836441894, 'wrung': 5.738880918220947e-05, 'sir': 0.00028694404591104734, '—Edward': 5.738880918220947e-05, '_we_': 5.738880918220947e-05, 'inquiry.': 5.738880918220947e-05, 'pounds—how': 5.738880918220947e-05, 'preparing': 0.00011477761836441894, 'all—his': 5.738880918220947e-05, 'lawyer': 5.738880918220947e-05, 'Everybody': 5.738880918220947e-05, 'vehemence': 0.00011477761836441894, 'critique': 5.738880918220947e-05, 'torture': 0.0001721664275466284, 'penitence': 5.738880918220947e-05, '_without_': 5.738880918220947e-05, 'arm—': 5.738880918220947e-05, 'rage': 5.738880918220947e-05, 'bonnet': 5.738880918220947e-05, 'hat': 0.00011477761836441894, 'feather': 5.738880918220947e-05, 'certain.': 5.738880918220947e-05, 'curacy': 0.0002295552367288379, '—He': 5.738880918220947e-05, 'shift': 5.738880918220947e-05, 'oath': 5.738880918220947e-05, 'sweet': 5.738880918220947e-05, 'that—Oh': 5.738880918220947e-05, 'la': 0.0001721664275466284, 'repeat': 5.738880918220947e-05, 'silk': 5.738880918220947e-05, '—To': 5.738880918220947e-05, 'door.': 5.738880918220947e-05, 'hiding': 5.738880918220947e-05, 'closet': 5.738880918220947e-05, 'huswifes': 5.738880918220947e-05, 'write': 0.00011477761836441894, 'ready.': 5.738880918220947e-05, 'bout': 5.738880918220947e-05, 'La': 5.738880918220947e-05, 'muslin': 5.738880918220947e-05, 'preferment': 0.00011477761836441894, '—they': 5.738880918220947e-05, 'em': 5.738880918220947e-05, 'stout': 5.738880918220947e-05, 'myself': 5.738880918220947e-05, 'afternoon': 0.00011477761836441894, 'twould': 5.738880918220947e-05, '—aye': 5.738880918220947e-05, '—Thank': 5.738880918220947e-05, 'credit.': 5.738880918220947e-05, 'hostess': 5.738880918220947e-05, 'good-will': 0.00011477761836441894, 'of—': 5.738880918220947e-05, 'staying': 5.738880918220947e-05, 'concurrence': 5.738880918220947e-05, 'relative': 5.738880918220947e-05, 'statement': 5.738880918220947e-05, '—Lord': 5.738880918220947e-05, 'cats.': 5.738880918220947e-05, 'sketch': 0.00011477761836441894, 'ennui': 5.738880918220947e-05, 'hear': 0.00011477761836441894, 'piano': 5.738880918220947e-05, 'forte': 5.738880918220947e-05, 'lesson': 5.738880918220947e-05, 'badness': 5.738880918220947e-05, 'etiquette': 5.738880918220947e-05, 'motion': 5.738880918220947e-05, 'ejaculation': 5.738880918220947e-05, '—sure': 0.00011477761836441894, 'breaking': 0.00011477761836441894, 'conference': 0.00011477761836441894, 'suitor': 5.738880918220947e-05, 'dividing': 5.738880918220947e-05, 'rectory': 0.00011477761836441894, 'annum': 5.738880918220947e-05, 'pleasing': 0.00011477761836441894, 'income.': 5.738880918220947e-05, 'presentation': 0.0001721664275466284, 'patronage': 5.738880918220947e-05, 'principal': 0.00011477761836441894, 'misunderstood': 5.738880918220947e-05, 'repair.': 5.738880918220947e-05, 'ordination.': 0.00011477761836441894, 'ho': 5.738880918220947e-05, 'understand': 5.738880918220947e-05, 'beginning': 0.0003443328550932568, 'maid': 0.0003443328550932568, 'tell': 5.738880918220947e-05, 'needle': 5.738880918220947e-05, 'leisure.': 5.738880918220947e-05, 'embarrassment.—Whether': 5.738880918220947e-05, 'so—or': 5.738880918220947e-05, 'time—it': 5.738880918220947e-05, 'tomorrow.': 5.738880918220947e-05, 'communicating': 5.738880918220947e-05, 'vacant': 5.738880918220947e-05, 'living—it': 5.738880918220947e-05, 'happiness.': 5.738880918220947e-05, 'else': 5.738880918220947e-05, 'occasion.': 5.738880918220947e-05, '_me_': 5.738880918220947e-05, 'it—I': 5.738880918220947e-05, 'orator.': 5.738880918220947e-05, 'benefactress': 5.738880918220947e-05, 'respectability': 5.738880918220947e-05, 'gentleman.': 5.738880918220947e-05, 'parsonage': 0.00028694404591104734, 'mansion-house': 0.0001721664275466284, '_you': 5.738880918220947e-05, 'very—an': 5.738880918220947e-05, 'man.': 5.738880918220947e-05, 'anticipation': 5.738880918220947e-05, 'difficulty—You': 5.738880918220947e-05, 'wait': 5.738880918220947e-05, 'ebullition': 5.738880918220947e-05, '_may_': 5.738880918220947e-05, 'ground-floor': 5.738880918220947e-05, 'there.': 5.738880918220947e-05, 'saint': 0.00011477761836441894, 'poultry': 5.738880918220947e-05, 'visit.—This': 5.738880918220947e-05, 'drawing-room.—Nobody': 5.738880918220947e-05, '—has': 5.738880918220947e-05, '—Well': 5.738880918220947e-05, '—no': 0.00011477761836441894, 'well—and': 5.738880918220947e-05, 'one—to': 5.738880918220947e-05, 'man.—You': 5.738880918220947e-05, 'reasoning': 5.738880918220947e-05, 'affair.': 5.738880918220947e-05, 'certain—a': 5.738880918220947e-05, '_this_': 5.738880918220947e-05, '_now_': 5.738880918220947e-05, 'worse.': 5.738880918220947e-05, '—not': 5.738880918220947e-05, 'self-importance': 5.738880918220947e-05, 'self-complacency': 5.738880918220947e-05, 'division': 5.738880918220947e-05, 'clergyman': 5.738880918220947e-05, 'imagery': 5.738880918220947e-05, 'surplice': 5.738880918220947e-05, 'banns': 5.738880918220947e-05, 'well-meaning': 5.738880918220947e-05, 'kingdom': 5.738880918220947e-05, '_then_': 5.738880918220947e-05, 'hung': 5.738880918220947e-05, 'XLII': 5.738880918220947e-05, 'travelling': 5.738880918220947e-05, 'intercourse': 5.738880918220947e-05, 'promptitude': 5.738880918220947e-05, 'chuse': 0.00011477761836441894, 'bid': 5.738880918220947e-05, 'persecution': 5.738880918220947e-05, 'tranquility': 5.738880918220947e-05, 'forenoon': 0.00011477761836441894, 'lawn': 0.00011477761836441894, 'shrubbery': 0.00011477761836441894, 'gravel': 0.00011477761836441894, 'plantation': 5.738880918220947e-05, 'fir': 5.738880918220947e-05, 'mountain-ash': 5.738880918220947e-05, 'acacia': 5.738880918220947e-05, 'screen': 5.738880918220947e-05, 'eighty': 5.738880918220947e-05, 'winding': 5.738880918220947e-05, 'eminence': 5.738880918220947e-05, 'tract': 5.738880918220947e-05, 'south-east': 5.738880918220947e-05, 'ridge': 5.738880918220947e-05, 'horizon': 5.738880918220947e-05, 'circuit': 5.738880918220947e-05, 'gardener': 5.738880918220947e-05, 'lingering': 5.738880918220947e-05, 'poultry-yard': 5.738880918220947e-05, 'dairy-maid': 5.738880918220947e-05, 'fox': 5.738880918220947e-05, 'decrease': 5.738880918220947e-05, 'brood': 5.738880918220947e-05, 'merriment': 5.738880918220947e-05, 'twilight': 5.738880918220947e-05, 'knack': 5.738880918220947e-05, 'heartiness': 5.738880918220947e-05, 'evident': 5.738880918220947e-05, 'enlargement': 5.738880918220947e-05, 'aptitude': 5.738880918220947e-05, 'uncertain': 5.738880918220947e-05, 'Epicurism': 5.738880918220947e-05, 'suggestion': 5.738880918220947e-05, 'observer': 5.738880918220947e-05, 'throat': 0.00011477761836441894, 'wildness': 0.00011477761836441894, 'grass': 5.738880918220947e-05, 'cough': 5.738880918220947e-05, 'sore': 5.738880918220947e-05, 'simplest': 5.738880918220947e-05, 'shivering': 5.738880918220947e-05, 'sofa': 5.738880918220947e-05, 'attending': 5.738880918220947e-05, 'nursing': 0.00011477761836441894, 'efficacy': 5.738880918220947e-05, 'apothecary': 0.00011477761836441894, 'patient': 0.0003443328550932568, 'disorder': 5.738880918220947e-05, 'infection': 0.00011477761836441894, 'infant': 5.738880918220947e-05, 'importunity': 5.738880918220947e-05, 'withstood': 0.00011477761836441894, 'helpmate': 5.738880918220947e-05, 'material': 5.738880918220947e-05, 'languid': 0.00011477761836441894, 'malady': 5.738880918220947e-05, 'lamentation': 5.738880918220947e-05, 'piquet': 5.738880918220947e-05, 'compliance': 0.0003443328550932568, 'emergence': 5.738880918220947e-05, 'seizure': 5.738880918220947e-05, 'absurd': 5.738880918220947e-05, 'admission': 5.738880918220947e-05, 'fatigue': 0.00028694404591104734, 'sink': 0.00011477761836441894, 'slumber': 0.00011477761836441894, 'frequent': 0.00011477761836441894, 'messenger': 0.00011477761836441894, 'despondence': 5.738880918220947e-05, 'resistance': 0.00011477761836441894, '—as': 5.738880918220947e-05, 'Hour': 5.738880918220947e-05, 'sleepless': 0.0001721664275466284, 'delirium': 5.738880918220947e-05, 'pang': 0.0001721664275466284, 'rational': 5.738880918220947e-05, 'former—but': 5.738880918220947e-05, 'attendant': 5.738880918220947e-05, 'stupor': 5.738880918220947e-05, 'image': 5.738880918220947e-05, 'reasonableness': 5.738880918220947e-05, 'noon': 5.738880918220947e-05, 'foregoing': 5.738880918220947e-05, 'revival': 5.738880918220947e-05, 'injunction': 0.00011477761836441894, 'breath': 0.00011477761836441894, 'gaze': 5.738880918220947e-05, 'Anxiety': 5.738880918220947e-05, 'breast': 5.738880918220947e-05, 'succour': 5.738880918220947e-05, 'relapse': 5.738880918220947e-05, 'was—but': 5.738880918220947e-05, 'slow': 0.00011477761836441894, 'progress': 0.0001721664275466284, 'refreshment': 5.738880918220947e-05, 'content': 5.738880918220947e-05, 'capability': 5.738880918220947e-05, 'stormy': 5.738880918220947e-05, 'beat': 5.738880918220947e-05, 'blast': 5.738880918220947e-05, 'travellers—they': 5.738880918220947e-05, 'store': 5.738880918220947e-05, 'dressing-closet': 5.738880918220947e-05, 'shutter': 5.738880918220947e-05, 'stopt': 5.738880918220947e-05, 'door—of': 5.738880918220947e-05, 'doubt—her': 5.738880918220947e-05, '—with': 5.738880918220947e-05, 'vestibule': 5.738880918220947e-05, 'lobby': 0.00011477761836441894, 'hastily': 5.738880918220947e-05, 'advancing': 5.738880918220947e-05, 'house.': 5.738880918220947e-05, 'amazement—': 5.738880918220947e-05, 'dispatch': 5.738880918220947e-05, 'promote': 5.738880918220947e-05, 'abruptness': 5.738880918220947e-05, 'afterwards—': 5.738880918220947e-05, 'mood': 5.738880918220947e-05, 'glow': 5.738880918220947e-05, 'knave': 5.738880918220947e-05, 'fool': 0.0001721664275466284, 'liquor': 5.738880918220947e-05, 'strangeness': 5.738880918220947e-05, 'pint': 5.738880918220947e-05, 'beef': 5.738880918220947e-05, 'me.': 0.0001721664275466284, 'nuncheon': 5.738880918220947e-05, 'intoxication': 5.738880918220947e-05, 'blockhead': 5.738880918220947e-05, '_Now_': 0.00011477761836441894, 'kind—it': 5.738880918220947e-05, 'indulging': 5.738880918220947e-05, 'affection.': 5.738880918220947e-05, 'subject.': 5.738880918220947e-05, 'injury': 0.0001721664275466284, 'blameless': 5.738880918220947e-05, 'here—nor': 5.738880918220947e-05, 'cunning': 0.00011477761836441894, 'circumspection': 5.738880918220947e-05, 'interim—in': 5.738880918220947e-05, 'interim': 5.738880918220947e-05, 'private—a': 5.738880918220947e-05, 'occurred—an': 5.738880918220947e-05, 'connection—but': 5.738880918220947e-05, 'enquiring': 5.738880918220947e-05, 'intimacy—you': 5.738880918220947e-05, 'libertine': 5.738880918220947e-05, 'mind—Oh': 5.738880918220947e-05, 'cruel': 5.738880918220947e-05, 'wanton': 5.738880918220947e-05, 'indigence.': 5.738880918220947e-05, 'purity': 5.738880918220947e-05, 'morality': 0.00011477761836441894, 'affair—I': 5.738880918220947e-05, 'morning—was': 5.738880918220947e-05, 'insufficient': 5.738880918220947e-05, 'debate': 5.738880918220947e-05, 'magnanimity': 5.738880918220947e-05, 'miserable—and': 5.738880918220947e-05, 'myself—and': 5.738880918220947e-05, 'reliance': 5.738880918220947e-05, 'do.—Then': 5.738880918220947e-05, 'grudge': 5.738880918220947e-05, '—when': 5.738880918220947e-05, '—oh': 5.738880918220947e-05, 'passed.': 5.738880918220947e-05, 'hackneyed': 5.738880918220947e-05, 'metaphor': 5.738880918220947e-05, 'dagger': 5.738880918220947e-05, 'language—a': 5.738880918220947e-05, 'remorse': 5.738880918220947e-05, 'dissipation': 0.00011477761836441894, 'villain': 0.00011477761836441894, 'infamously': 5.738880918220947e-05, 'cool': 5.738880918220947e-05, 'drove': 5.738880918220947e-05, 'inducement': 0.00011477761836441894, 'tried—but': 5.738880918220947e-05, 'beautiful': 5.738880918220947e-05, 'was—Well': 5.738880918220947e-05, 'hue.': 5.738880918220947e-05, 'haste': 0.00011477761836441894, 'hand-writing': 5.738880918220947e-05, 'playfulness': 5.738880918220947e-05, 'impudence': 5.738880918220947e-05, 'passion—her': 5.738880918220947e-05, 'malice—At': 5.738880918220947e-05, 'letter-writing': 5.738880918220947e-05, '—delicate—tender—truly': 5.738880918220947e-05, 'own—her': 5.738880918220947e-05, 'diction': 5.738880918220947e-05, 'fixed—But': 5.738880918220947e-05, 'Preparation': 5.738880918220947e-05, 'bluster': 5.738880918220947e-05, 'blackguard': 5.738880918220947e-05, 'pocketbook': 5.738880918220947e-05, 'pocket-book': 5.738880918220947e-05, 'virulence': 5.738880918220947e-05, '—all': 5.738880918220947e-05, 'memento': 5.738880918220947e-05, 'slightingly': 5.738880918220947e-05, 'atonement': 0.0001721664275466284, 'conscience.': 5.738880918220947e-05, '—am': 5.738880918220947e-05, 'yours': 5.738880918220947e-05, 'penitence—tell': 5.738880918220947e-05, 'ill-will': 5.738880918220947e-05, 'puppy': 5.738880918220947e-05, 'moments—for': 5.738880918220947e-05, 'vain—Extravagance': 5.738880918220947e-05, 'thence': 0.0001721664275466284, 'bye.': 5.738880918220947e-05, 'forgetting': 5.738880918220947e-05, 'happiness—and': 5.738880918220947e-05, 'means—it': 5.738880918220947e-05, 'guard—at': 5.738880918220947e-05, 'again—': 5.738880918220947e-05, 'replied—': 5.738880918220947e-05, 'event.': 5.738880918220947e-05, 'marriage.': 5.738880918220947e-05, 'bear—but': 5.738880918220947e-05, 'commiseration': 5.738880918220947e-05, 'attraction': 0.0001721664275466284, 'altogether': 5.738880918220947e-05, 'fearful': 0.00011477761836441894, 'carriage.—Eager': 5.738880918220947e-05, 'hall': 5.738880918220947e-05, 'neither': 5.738880918220947e-05, 'overcome': 5.738880918220947e-05, 'bliss': 5.738880918220947e-05, 'felt': 5.738880918220947e-05, 'stake': 5.738880918220947e-05, 'requisite': 5.738880918220947e-05, 'irritation': 5.738880918220947e-05, 'widower': 5.738880918220947e-05, 'errand': 0.0001721664275466284, 'temperate': 5.738880918220947e-05, 'exuberance': 5.738880918220947e-05, 'unthought': 5.738880918220947e-05, 'two.': 5.738880918220947e-05, 'sympathy—or': 5.738880918220947e-05, 'delightful': 5.738880918220947e-05, 'it—has': 5.738880918220947e-05, 'worthless': 0.00011477761836441894, 'selfishness—without': 5.738880918220947e-05, '—could': 5.738880918220947e-05, 'warning': 5.738880918220947e-05, 'men.': 5.738880918220947e-05, 'liveliness': 5.738880918220947e-05, 'dissent': 5.738880918220947e-05, 'situation.': 5.738880918220947e-05, '—for': 5.738880918220947e-05, 'weakening': 5.738880918220947e-05, 'pale': 5.738880918220947e-05, 'recurrence': 5.738880918220947e-05, 'hollow': 5.738880918220947e-05, 'bidding': 5.738880918220947e-05, 'dullness': 5.738880918220947e-05, 'gossip': 5.738880918220947e-05, 'field': 5.738880918220947e-05, 'peculiar': 5.738880918220947e-05, 'unobtrusiveness': 5.738880918220947e-05, 'sitting-room': 5.738880918220947e-05, 'opera': 5.738880918220947e-05, 'outward': 5.738880918220947e-05, 'hand-writing.—That': 5.738880918220947e-05, 'feebleness': 0.00011477761836441894, 'abatement': 5.738880918220947e-05, 'edge': 5.738880918220947e-05, 'production': 0.00011477761836441894, 'indolence': 5.738880918220947e-05, 'repining': 5.738880918220947e-05, 'self-control': 5.738880918220947e-05, 'ruin': 0.00011477761836441894, 'lane': 5.738880918220947e-05, 'mound': 5.738880918220947e-05, 'girl—': 5.738880918220947e-05, 'fickle': 5.738880918220947e-05, 'yours.': 5.738880918220947e-05, 'autumn': 0.00011477761836441894, '—wonder': 5.738880918220947e-05, 'incitement': 5.738880918220947e-05, 'religion': 5.738880918220947e-05, 'employment.': 5.738880918220947e-05, 'listener': 5.738880918220947e-05, 'repentance': 0.00011477761836441894, 'word.—She': 5.738880918220947e-05, 'minuteness': 5.738880918220947e-05, 'kiss': 5.738880918220947e-05, 'Reflection': 5.738880918220947e-05, 'embellishment': 5.738880918220947e-05, 'astray': 5.738880918220947e-05, 'thing—as': 5.738880918220947e-05, 'this.—I': 5.738880918220947e-05, '—No—my': 5.738880918220947e-05, 'change.': 5.738880918220947e-05, 'expensiveness': 5.738880918220947e-05, 'inexperience': 5.738880918220947e-05, 'economy': 5.738880918220947e-05, 'frugality': 0.00011477761836441894, 'management': 5.738880918220947e-05, 'principle.': 5.738880918220947e-05, 'wife.': 5.738880918220947e-05, 'folly.': 5.738880918220947e-05, 'crime': 0.0001721664275466284, 'discontents.': 5.738880918220947e-05, 'enumeration': 5.738880918220947e-05, 'vigour': 5.738880918220947e-05, 'prosecution': 5.738880918220947e-05, 'start': 5.738880918220947e-05, 'joy.': 5.738880918220947e-05, 'afraid': 5.738880918220947e-05, 'lady—and': 5.738880918220947e-05, 'tablecloth': 5.738880918220947e-05, 'dessert': 5.738880918220947e-05, 'similarity': 5.738880918220947e-05, 'representation': 0.00011477761836441894, 'careful': 5.738880918220947e-05, 'slighter': 5.738880918220947e-05, 'reality': 0.00011477761836441894, 'nay': 5.738880918220947e-05, 'away': 5.738880918220947e-05, 'self-provocation': 5.738880918220947e-05, 'mediation': 0.00011477761836441894, 'lurking': 5.738880918220947e-05, 'saw': 5.738880918220947e-05, 'manager': 0.00011477761836441894, 'thoughtless': 5.738880918220947e-05, 'indolent': 5.738880918220947e-05, 'slight': 5.738880918220947e-05, 'utterance': 5.738880918220947e-05, 'aloud': 5.738880918220947e-05, 'path': 5.738880918220947e-05, 'dryness': 5.738880918220947e-05, 'sheath': 5.738880918220947e-05, 'youngest—to': 5.738880918220947e-05, 'leaning': 5.738880918220947e-05, 'failure': 5.738880918220947e-05, 'entanglement': 5.738880918220947e-05, 'twenty-four': 5.738880918220947e-05, 'chosen': 5.738880918220947e-05, 'university': 5.738880918220947e-05, 'great—as': 5.738880918220947e-05, 'thankful': 5.738880918220947e-05, 'sedateness': 5.738880918220947e-05, 'suffice': 5.738880918220947e-05, 'labor': 5.738880918220947e-05, 'family—it': 5.738880918220947e-05, 'puzzle': 5.738880918220947e-05, 'proper': 0.00011477761836441894, 'scrawls—but': 5.738880918220947e-05, 'comment': 5.738880918220947e-05, 'composition': 5.738880918220947e-05, 'days.—In': 5.738880918220947e-05, 'foolish—business—this': 5.738880918220947e-05, 'substance': 5.738880918220947e-05, 'style.': 5.738880918220947e-05, 'hurt': 5.738880918220947e-05, 'favourite.—She': 5.738880918220947e-05, 'sooner.': 5.738880918220947e-05, 'jealousy': 5.738880918220947e-05, 'flourish': 5.738880918220947e-05, 'ill-nature': 5.738880918220947e-05, 'opinions—they': 5.738880918220947e-05, 'option': 5.738880918220947e-05, 'avarice': 5.738880918220947e-05, 'relent': 5.738880918220947e-05, 'self-evident': 5.738880918220947e-05, '_faith_': 5.738880918220947e-05, 'expediency': 5.738880918220947e-05, '—The': 5.738880918220947e-05, 'offering.': 5.738880918220947e-05, 'glebe': 5.738880918220947e-05, 'certain—and': 5.738880918220947e-05, 'residue': 5.738880918220947e-05, 'comer': 5.738880918220947e-05, 'tête-à-tête': 5.738880918220947e-05, 'disproportion': 5.738880918220947e-05, 'rumour': 5.738880918220947e-05, 'immediate': 5.738880918220947e-05, 'nerve': 5.738880918220947e-05, 'thrill': 5.738880918220947e-05, 'transport': 5.738880918220947e-05, 'tale': 5.738880918220947e-05, 'jilting': 5.738880918220947e-05, 'hussy': 5.738880918220947e-05, 'crossness': 5.738880918220947e-05, 'solemn': 5.738880918220947e-05, 'sensibility—and': 5.738880918220947e-05, 'offending': 5.738880918220947e-05, 'submission': 0.00028694404591104734, 'reconciliation': 0.00011477761836441894, 'anger.': 5.738880918220947e-05, 'convenient': 5.738880918220947e-05, 'imprudent': 5.738880918220947e-05, 'merit.': 5.738880918220947e-05, 'patron': 5.738880918220947e-05, 'incurring': 5.738880918220947e-05, 'annihilation': 0.00011477761836441894, 'resuscitation': 5.738880918220947e-05, 'publication': 5.738880918220947e-05, 'rank': 5.738880918220947e-05, 'nobleman': 5.738880918220947e-05, 'decree': 5.738880918220947e-05, 'shuffling': 5.738880918220947e-05, 'completion': 5.738880918220947e-05, 'dilatoriness': 5.738880918220947e-05, 'project': 5.738880918220947e-05, 'sweep': 5.738880918220947e-05, 'Parsonage': 5.738880918220947e-05, 'pasturage': 5.738880918220947e-05, 'make-believe': 5.738880918220947e-05, 'drawn': 5.738880918220947e-05, 'scrape': 5.738880918220947e-05, 'self-interest': 5.738880918220947e-05, '_time_': 5.738880918220947e-05, 'magnificent': 5.738880918220947e-05, 'instigation': 5.738880918220947e-05, 'self-condemnation': 5.738880918220947e-05, 'haughty': 5.738880918220947e-05, 'birth': 5.738880918220947e-05, 'intruder': 5.738880918220947e-05, 'policy': 5.738880918220947e-05, 'frequency': 5.738880918220947e-05, 'darling': 5.738880918220947e-05, 'confederacy': 5.738880918220947e-05, 'goodness—with': 5.738880918220947e-05, 'her—what': 5.738880918220947e-05, 'seventeen': 5.738880918220947e-05, 'safeguard': 5.738880918220947e-05, '—instead': 5.738880918220947e-05, 'patroness': 5.738880918220947e-05, 'clemency': 5.738880918220947e-05, 'breed': 5.738880918220947e-05, 'sporting': 5.738880918220947e-05, 'standard': 5.738880918220947e-05, 'bearing': 5.738880918220947e-05, 'disagreement': 5.738880918220947e-05, '*': 0.00011477761836441894, 'file': 0.00011477761836441894, 'https': 5.738880918220947e-05, '//www.gutenberg.org/1/6/161/': 5.738880918220947e-05, 'copyright': 0.000860832137733142, 'license': 0.00028694404591104734, 'concept': 0.00011477761836441894, 'trademark': 0.0006886657101865136, 'Project': 0.0002295552367288379, 'research': 0.00011477761836441894, 'redistribution': 5.738880918220947e-05, 'START': 5.738880918220947e-05, 'mission': 0.0001721664275466284, 'distribution': 0.0003443328550932568, 'www.gutenberg.org/license': 5.738880918220947e-05, 'Section': 0.00028694404591104734, 'trademark/copyright': 5.738880918220947e-05, 'fee': 0.0004591104734576758, 'access': 0.0005738880918220947, 'refund': 0.0004591104734576758, 'entity': 0.0001721664275466284, 'compilation': 5.738880918220947e-05, 'domain': 0.00011477761836441894, 'distributing': 5.738880918220947e-05, 'format': 0.0002295552367288379, 'downloading': 5.738880918220947e-05, 'copying': 5.738880918220947e-05, 'status': 0.0002295552367288379, 'texts': 5.738880918220947e-05, 'holder': 0.0002295552367288379, 'paragraphs': 5.738880918220947e-05, 'perform': 5.738880918220947e-05, 'distribute': 5.738880918220947e-05, 'processing': 5.738880918220947e-05, 'version': 5.738880918220947e-05, 'website': 0.0001721664275466284, 'user': 0.0001721664275466284, 'royalty': 5.738880918220947e-05, '%': 5.738880918220947e-05, 'Royalty': 0.00011477761836441894, 'tax': 0.0003443328550932568, 'Information': 0.00028694404591104734, 's/he': 5.738880918220947e-05, 'accordance': 0.00011477761836441894, 'replacement': 0.0001721664275466284, 'transcribe': 5.738880918220947e-05, 'proofread': 5.738880918220947e-05, 'transcription': 5.738880918220947e-05, 'infringement': 5.738880918220947e-05, 'disk': 5.738880918220947e-05, 'computer': 0.00011477761836441894, 'virus': 5.738880918220947e-05, 'equipment': 0.0001721664275466284, 'liability': 0.00011477761836441894, 'lieu': 0.00011477761836441894, 'problem': 5.738880918220947e-05, 'exclusion': 5.738880918220947e-05, 'limitation': 0.0001721664275466284, 'disclaimer': 0.00011477761836441894, 'invalidity': 5.738880918220947e-05, 'unenforceability': 5.738880918220947e-05, 'agent': 5.738880918220947e-05, 'employee': 5.738880918220947e-05, 'harmless': 5.738880918220947e-05, 'b': 5.738880918220947e-05, 'modification': 5.738880918220947e-05, 'c': 5.738880918220947e-05, 'corporation': 5.738880918220947e-05, 'identification': 5.738880918220947e-05, '596-1887': 5.738880918220947e-05, 'contact': 0.00011477761836441894, 'array': 5.738880918220947e-05, 'Compliance': 5.738880918220947e-05, 'paperwork': 5.738880918220947e-05, 'www.gutenberg.org/donate': 5.738880918220947e-05, 'solicitation': 5.738880918220947e-05, 'prohibition': 5.738880918220947e-05, 'staff': 5.738880918220947e-05, 'web': 5.738880918220947e-05, 'donation': 5.738880918220947e-05, 'works': 5.738880918220947e-05, 'originator': 5.738880918220947e-05, 'network': 5.738880918220947e-05, 'volunteer': 5.738880918220947e-05, 'edition': 5.738880918220947e-05, 'facility': 5.738880918220947e-05, 'email': 5.738880918220947e-05, 'newsletter': 5.738880918220947e-05}
pos_nltk_counts("VB", sense_pos)
pos_tag = "VB"
total_words, word_counts, percent_counts = pos_nltk_counts(pos_tag, sense_pos)
print("Word counts:", word_counts)
Word counts: {'copy': 5, 'give': 124, 're-use': 2, 'have': 449, 'check': 7, 'engage': 15, 'supply': 7, 'bequeath': 1, 'receive': 18, 'therefore': 4, 'arise': 6, 'be': 1306, 'read': 11, 'leave': 40, 'outweigh': 3, 'hope': 17, 'live': 32, 'ten': 2, 'command': 4, 'do': 151, 'make': 133, 'consider': 15, 'increase': 3, 'feel': 50, 'thousand': 1, 'spare': 9, 'repent': 2, 'dispute': 1, 'come': 50, 'till': 36, 'act': 6, 'despise': 2, 'reflect': 7, 'stay': 23, 'counteract': 3, 'govern': 1, 'learn': 9, 'afford': 14, 'struggle': 2, 'exert': 5, 'consult': 2, 'treat': 5, 'strive': 1, 'rouse': 3, 'encourage': 4, 'equal': 1, 'accommodate': 3, 'take': 41, 'think': 115, 'answer': 8, 'rob': 3, 'exist': 2, 'ruin': 4, 'assist': 13, 'know': 87, 'stipulate': 1, 'suppose': 24, 'neglect': 1, 'settle': 10, '_let_': 1, 'Consider': 2, '”': 30, 'return': 20, 'marry': 26, 'regret': 6, 'half': 2, 'wish': 22, '“': 182, 'expect': 25, 'do.': 6, 'want': 7, 'pin': 1, 'bind': 1, 'allow': 24, 'enlarge': 1, 'prevent': 23, 'say': 126, 'move': 3, 'Do': 6, 'pay': 9, '—They': 1, 'keep': 30, 'imagine': 10, 'spend': 10, 'mean': 17, 'fulfil': 1, '_them_.': 1, 'raise': 11, 'revive': 2, 'remove': 8, 'hear': 57, 'support': 10, 'herself': 24, 'see': 142, 'distinguished—as—they': 1, 'knew': 3, 'get': 30, 'disturb': 3, 'observe': 7, 'approve': 6, 'like': 19, 'love.': 1, 'esteem': 3, 'separate': 3, 'perceive': 13, 'miss': 2, 'meet': 21, 'gain': 8, 'grave': 3, 'disapprove': 1, 'attach': 5, 'attract': 3, 'understand': 11, 'satisfy': 7, 'enter': 12, 'charm': 1, 'notice': 2, 'driven': 1, 'simple': 1, 'overlook': 4, 'love': 18, 'ornament': 1, 'draw': 8, 'him.': 3, 'wound': 4, 'believe': 35, 'express': 11, 'find': 51, 'heard': 4, 'pronounce': 3, 'improve': 4, 'explain': 8, 'attempt': 12, 'deny': 7, 'help': 17, 'warrant': 1, '_not_': 6, 'wonder': 8, 'avoid': 20, 'mistaken': 1, 'happen': 10, 'proceed': 5, '_I_': 1, 'lose': 4, 'denote': 1, 'produce': 9, 'form': 8, '_draw': 1, 'pretend': 2, 'judge': 3, 'fail': 4, 'quit': 8, 'inhabit': 2, 'visit': 14, 'show': 12, 'amongst': 2, 'oppose': 4, 'dissuade': 2, 'incommode': 1, 'determine': 10, 'sell': 4, 'prepare': 4, 'examine': 4, 'defer': 4, 'stand': 10, 'enable': 5, 'begin': 5, 'cease': 6, '—when': 2, 'view': 1, 'ye': 1, 'continue': 4, 'decay': 1, 'remain': 11, 'enjoy': 7, '—but': 2, 'appear': 23, 'add': 5, 'widen': 1, 'plan': 1, 'welcome': 3, 'offer': 6, 'remember': 7, 'dine': 9, 'depend': 6, 'detract': 1, 'enquire': 6, 'admire': 5, 'ask': 30, 'spoil': 2, 'hold': 11, 'eat': 6, 'chicken': 1, 'secure': 6, 'excuse': 7, 'assure': 11, 'blush': 1, 'recommend': 2, 'enjoyment': 1, 'play': 5, 'sympathize': 1, 'laugh': 4, 'censure': 4, 'throw': 3, 'protect': 3, 'call': 25, 'deceive': 4, 'seem': 12, 'twenty': 4, 'inspire': 2, 'bring': 16, 'submit': 9, 'convince': 9, 'object': 6, 'complain': 2, 'afflict': 1, 'conceal': 7, 'occasion': 1, 'detain': 4, 'follow': 7, 'melancholy': 1, 'try': 7, 'mix': 3, 'seek': 3, 'towards': 3, 'bear': 21, 'walk': 12, 'turn': 9, 'stop': 6, 'join': 11, 'ride': 4, 'dinner': 3, 'describe': 6, 'inherit': 1, 'tell': 66, 'let': 23, 'covert.': 1, '‘': 9, 'declare': 6, 'mention': 10, 'talk': 30, 'question': 3, 'dwelt': 1, 'become': 10, 'suffice': 1, 'ask.': 1, 'scold': 1, 'congratulate': 5, 'forward': 1, 'undervalue': 1, 'boast': 2, 'converse': 3, '_your_': 1, 'dislike': 4, 'employ': 4, 'disarm': 1, 'persuade': 8, 'buy': 8, 'confess': 2, 'occupy': 1, 'suggest': 4, 'attend': 11, 'aim': 1, 'shame': 1, 'provoke': 4, 'teach': 2, 'Towards': 1, 'suspect': 5, 'exist.': 1, 'define': 1, 'justify': 9, 'agree': 7, 'atone': 2, 'desire': 4, 'escape': 5, 'connect': 1, 'carry': 5, 'alter': 2, 'build': 5, 'send': 11, 'awaken': 1, 'comprehend': 7, 'doubt': 14, 'touch': 3, 'tempt': 7, 'forego': 1, 'use': 5, 'claim': 3, 'discover': 5, 'cut': 4, 'mama': 2, 'put': 22, 'withhold': 2, 'repeat': 3, 'guess': 6, 'sit': 11, 'amidst': 1, 'go': 90, 'breakfast': 1, 'discompose': 1, 'delay': 3, 'lay': 2, 'change': 5, 'pry': 1, 'bid': 1, 'ma': 4, 'stare': 1, 'procure': 4, 'table': 3, 'propose': 1, 'evince': 1, 'advantage': 4, 'bestow': 9, 'conceive': 4, 'account': 7, 'Marianne': 2, '_That_': 2, 'consent': 3, 'sacrifice': 1, 'pull': 1, 'hereafter': 2, 'endear': 1, 'share.': 1, 'experience': 1, 'degrade': 1, 'pass': 7, 'afford.': 1, 'Extend': 1, 'Tell': 4, 'yours': 2, 'dear': 3, 'me.': 2, 'ill': 4, 'look': 28, 'wait': 18, 'press': 6, 'speak': 52, 'linger': 2, 'torment': 1, 'enjoy.': 1, 'step': 1, 'accept': 11, 'most': 3, 'work': 2, 'travel': 4, 'behave': 3, '_You_': 1, 'you.': 5, 'myself': 8, 'transact': 1, 'dismiss': 1, 'listen': 6, 'point': 2, 'secret': 1, 'acknowledge': 9, 'blame': 5, 'admit': 4, 'accuse': 1, 'such': 2, 'create': 2, 'resist': 8, 'deserve': 7, 'secrecy': 1, 'sleep': 1, 'risen': 1, 'Willoughby': 2, 'force': 6, 'direct.': 1, 'reach': 4, 'distinguish': 4, 'come.': 2, 'screen': 2, 'smile': 5, 'end': 6, 'fall': 4, 'regard': 5, 'Look': 3, 'regulate': 1, 'reanimate': 1, 'Thank': 1, 'Beyond': 1, 'end.': 1, 'hunt.': 1, 'vanish.': 1, 'content': 1, 'recall': 3, 'offend': 6, 'reproach': 3, 'deliberate': 1, 'judge.': 1, 'confound': 1, 'adopt': 6, 'conform': 1, 'promote': 4, 'distant': 1, 'catch': 3, 'known': 2, 'drink': 3, 'contribute': 1, 'dance': 3, 'Shall': 1, '—But': 1, 'environs—never': 1, 'Never': 1, 'yield': 2, 'round': 1, 'result': 1, 'drove': 2, 'Know': 1, 'ere': 1, 'defy': 1, 'subdue': 2, 'suffer': 6, 'augment': 1, 'fix': 9, 'lessen': 6, 'indulge': 3, 'Amongst': 1, 'open': 5, 'run': 5, 'please': 9, '’': 10, 't': 1, 'rest': 4, 'endure': 3, 'chuse': 4, 'ate': 1, 'ours': 1, 'chaperon': 1, 'abuse': 1, 'care': 6, 'woman—but': 1, 'succeed': 2, '—and': 10, 'refuse': 2, 'frank': 1, 'it.': 2, 'decline': 1, 'own': 3, 'yourself': 1, 'Cleveland': 2, 'entertain': 1, 'invite': 1, 'come—I': 1, 'come—You': 1, 'prevail': 5, 'obtain': 6, 'swallow': 1, 'surpass': 1, 'assuage': 1, 'estimate': 1, 'dirty': 1, 'justice': 2, 'excite': 1, 'sport': 2, 'communicate': 6, 'manage': 1, 'YOU': 1, 'divine': 1, 's': 3, 'beg': 4, 'sink': 3, 'heaven': 1, 'set': 10, 'pardon': 2, 'sake': 2, 'break': 1, 'me—I': 1, 'advise': 5, 'direct': 1, 'provide': 5, 'Did': 1, 'subsist': 1, '_that_': 3, 'whatever': 2, 'forgive': 7, 'selfish': 2, 'blind': 4, 'merit': 1, 'forfeit': 2, 'guard': 1, 'divide': 4, 'flow': 1, 'trust': 6, 'combat': 1, 'mistrust': 1, 'finish': 3, 'hurt': 2, 'disappoint': 2, 'infer': 2, 'taste': 1, 'rude': 1, 'smooth': 1, 'condescend': 2, 'practise': 2, 'apologize': 1, 'relieve': 3, 'deprive': 3, 'sigh': 1, 'impose': 1, 'involve': 1, 'prefer': 1, 'little.': 1, 'resolve': 1, 'frighten': 1, 'them.': 1, 'induce': 1, 'inform': 5, 'fulfill': 3, 'proclaim': 1, 'accompany': 4, 'favour': 1, 'strike': 2, 'promote—she': 1, 'influence': 2, 'disregard': 2, 'witness': 4, 'foresee': 4, 'accrue': 1, 'removed.': 1, 'consequence.': 1, 'anticipate': 1, 'weaken': 2, 'not.': 1, 'distrust': 3, 'decide': 3, 'ascertain': 2, 'choose': 4, 'extort': 1, 'cod': 1, 'veal': 1, 'clock': 1, 'write': 12, 'conduct': 2, 'Elinor': 6, 'attribute': 4, 'recollect': 5, 'pain': 1, 'conjure': 1, 'inquire': 3, '_my_': 1, 'represent': 3, 'tis': 1, 'heart.': 1, 'freeze': 1, 'Combe': 1, 'compound': 2, 'amuse': 4, 'tell.': 1, 'collect': 4, 'know.': 1, 'lead': 5, 'demand': 3, 'known.': 1, 'Excuse': 1, 'shield': 1, 'endeavour': 1, 'confirm': 2, 'mingle': 1, 'approach': 1, 'betray': 1, 'shake': 1, 'received': 1, 'sunk': 1, 'instantly.—I': 1, 'rest—I': 1, 'entreat': 2, 'feed': 2, 'mistake': 1, 'overcome': 6, 'await': 1, '_esteem_': 1, 'embitter': 1, 'heighten': 2, 'permit': 1, 'ask—': 1, 'sooth': 1, 'tranquilize': 1, 'calmly': 1, 'imply': 1, 'surprise': 3, 'announce': 4, 'delicate': 1, 'dictate': 3, 'forgot': 2, 'rise': 1, 'exclaim': 1, 'kill': 2, 'Think': 1, 'hate': 3, 'forget': 8, 'torture': 2, 'away.': 2, 'talk.': 1, 'grieve': 2, 'acquit': 3, 'contend': 2, 'feel—I': 1, 'require': 2, 'Whatever': 1, 'comfort': 4, '_he_': 1, 'lie': 3, 'plague': 1, 'cure': 2, 'her—is': 1, 'fly': 1, 'agree.': 1, 'moan': 1, 'Let': 2, 'name': 1, 'Lord': 1, 'tomorrow.': 1, 'caution': 1, 'believe.': 1, '_this_': 1, 'defend': 3, 'Mind': 1, 'drawback—except': 1, 'signify': 6, 'stuff': 1, 'spirit': 1, 'bed.': 3, 'compliance': 1, 'be—there': 1, 'think—in': 1, 'identify': 2, 'she—': 1, 'seclude': 1, 'Thus': 1, 'prove': 7, 'good.': 1, 'inforce': 1, 'intreat': 2, 'fear': 2, '_hers_': 1, 'forgotten': 1, 'lament': 1, 'restrain': 2, 'trace': 3, 'dispose': 3, 'recover': 1, 'handle': 1, 'place': 3, 'conjecture': 1, 'be—could': 1, 'irresolute': 1, 'reclaim': 1, 'strengthen': 1, 'Use': 1, 'to—': 1, 'punish': 1, '_once_': 1, 'shorten': 1, 'comprise': 1, 'drop': 2, 'spoken': 2, 'soften': 2, 'oblige': 2, '_These_': 1, 'burst': 1, '_your': 1, 'twelve': 2, 'talking—but': 1, 'contradict': 1, 'humour': 1, 'tend': 2, 'promise': 1, 'imprint': 1, 'bespeak': 1, 'introduce': 4, '_them_': 2, 'express.': 1, 'serve': 3, '_him_': 1, 'hang': 1, '_all': 1, 'say—your': 1, 'vouchsafe': 1, 'bequeathed': 1, 'repine': 1, 'slope': 1, 'hitherto': 1, 'leave.': 1, 'descend': 2, 'associate': 1, 'suit': 2, '_her_': 4, 'glad': 1, 'genteel': 1, 'behold': 1, 'her—to': 1, 'sourness': 1, '_now_': 3, 'distress': 1, 'humble': 1, 'mortify': 2, 'connoisseurship': 1, 'foretell': 1, 'mind': 1, 'rejoice': 3, 'herself—or': 1, 'derive': 1, 'advance': 3, 'deter': 1, 'volunteer': 1, 'conciliate': 1, 'thank': 2, '_has_': 1, 'be.': 3, 'expose': 2, 'monopolize': 1, 'reconcile': 1, 'dropt': 1, 'minute': 1, 'inconvenience': 1, 'drive': 3, 'request': 1, 'twice': 1, 'resume': 1, 'well.': 1, 'joke': 1, 'kept': 1, 'popt': 1, 'come—for': 1, '_Then_': 1, 'fit': 1, 'exactly.': 1, '—for': 1, 'perform': 3, 'dwell': 1, 'soothe': 4, 'farther': 1, 'utter': 1, 'satisfy.': 1, 'undeceive': 1, 'harbour': 1, '_her_.': 1, 'occur': 5, 'silence': 1, 'entirely—not': 1, '—Is': 1, '—Because': 1, 'admiration.—She': 1, 'alarm': 1, 'relate': 2, 'retort': 1, 'reward': 1, 'picture': 1, 'forbear': 1, 'urge': 3, 'trim': 1, 'rid': 1, 'interrupt': 2, 'learnt': 1, '_you': 1, 'light': 1, 'reply': 1, 'Remember': 1, 'spread': 1, 'conclude': 1, 'argue': 1, 'triumph': 1, 'gape': 1, 'pursue': 1, 'cry': 1, 'hinder': 1, 'undertake': 2, 'made': 1, '_is_': 1, 'compassionate': 1, 'happen.': 1, 'long': 1, 'Lucy': 1, 'relative': 1, 'begin—how': 1, 'Allow': 1, 'to—as': 1, 'yourself—such': 1, 'establish': 1, 'likewise': 1, '—Can': 1, 'perhaps—indeed': 1, 'hurry': 2, 'befall': 1, 'reconsider': 1, '—And': 1, '—For': 1, 'complete': 2, 'marry.': 1, 'Take': 1, 'worship': 1, 'avail': 2, 'affront': 1, '_Now_': 1, 'be—but': 1, 's—can': 1, 'vacate': 1, 'refrain': 1, 'retain': 2, 'accelerate': 1, 'gratify': 2, 'think—indeed': 1, 'mentioned—as': 1, 'agitate': 1, 'fill': 2, 'wisdom': 1, 'intend': 1, 'again.': 1, 'Just': 1, 'captivate': 1, 'interfere': 1, 'least': 3, 'reside': 1, 'thirty': 1, 'fancy': 6, 'slight': 1, 'idled': 1, 'sorry': 1, 'restore': 2, 'demur': 1, 'render': 2, 'expel': 1, 'close': 1, 'fetch': 2, 'guide': 1, '_He_': 1, 'watch': 1, 'bury': 1, 'watch—she': 1, 'gaiety': 1, 'expand': 1, 'remind': 1, 'tea': 1, 'discern': 1, 'stay.': 1, 'best': 1, 'spare.': 1, 'perhaps—let': 1, 'over-set': 1, 'reprobate': 1, '_then_': 1, 'avarice': 1, 'affluence': 1, 'expatiate': 1, 'display': 1, 'Could': 1, 'urge—that': 1, '_she_': 1, 'be—your': 1, 'be—and': 1, 'me—it': 1, 'address': 2, 'A': 1, 'deliver': 1, '—have': 1, 'is—in': 1, 'forbid—a': 1, 'hear.': 2, 'retreat': 1, 'preserve': 3, 'affect': 2, 'told': 1, 'frame': 1, 'mine—and': 1, '—we': 1, 'kiss': 1, 'pity': 1, '—be': 1, '—Let': 1, 'evil': 1, '—that': 1, 'forgave': 1, 'well—was': 1, 'rub': 1, 'sweet': 1, 'save': 1, '_his_': 1, 'mend': 1, 'like.': 1, 'pour': 1, 'determinate': 1, 'redeem': 1, 'engross': 1, 'praise': 1, 'accustom': 1, 'do.—She': 1, 'borrow': 1, 'want.': 1, 'unsettle': 1, 'slow': 1, '_always_': 1, 'compare': 1, 'kindness': 1, 'benefit': 1, 'myself.—Your': 1, 'imitate': 1, 'discharge': 1, 'flatter': 1, 'it—my': 1, 'henceforth': 1, 'sickness': 1, 'replace': 2, 'me—what': 1, 'abridge': 1, 'rank': 1, 'countenance': 1, 'bide': 2, 'hazard': 1, 'certainty': 1, 'speak—and': 1, 'saw—or': 1, 'penetrate': 1, 'purpose': 1, 'swell': 1, 'nineteen': 1, 'occur—regrets': 1, 'despatch': 1, 'arise.': 1, 'Dawlish': 1, 'Please': 1, 'destroy': 3, 'keep.': 1, 'plead': 1, 'enrich': 1, 'calculate': 2, 'unite': 1, 'vent': 1, '—': 1, '_me': 1, 'make.': 1, 'profess': 1, 'submit—and': 1, 'fifty': 1, 'superintend': 1, 'invent': 1, 'inspect': 1, 'honour': 1, 'cut—and': 1, 'exceed': 1, 'everybody': 1, 'sober': 1, 'cheerfulness': 1, 'distribute': 4, 'apply': 1, 'charge': 4, 'comply': 5, 'abide': 1, 'See': 2, 'Project': 2, 'contain': 2, 'unlink': 1, 'detach': 1, 'redistribute': 1, 'convert': 1, 'include': 1, '*': 3, 'donate': 3, 'discontinue': 1, 'Contact': 1, 'disclaim': 1, 'elect': 1, 'void': 1, 'indemnify': 1, 'cause': 1, 'survive': 1, 'solicit': 2, 'subscribe': 1}
print("Percentage counts:", percent_counts)
Percentage counts: {'copy': 0.0007714858818083629, 'give': 0.0191328498688474, 're-use': 0.00030859435272334514, 'have': 0.06927943218639099, 'check': 0.001080080234531708, 'engage': 0.0023144576454250886, 'supply': 0.001080080234531708, 'bequeath': 0.00015429717636167257, 'receive': 0.0027773491745101066, 'therefore': 0.0006171887054466903, 'arise': 0.0009257830581700355, 'be': 0.2015121123283444, 'read': 0.0016972689399783983, 'leave': 0.006171887054466903, 'outweigh': 0.00046289152908501776, 'hope': 0.002623051998148434, 'live': 0.004937509643573522, 'ten': 0.00030859435272334514, 'command': 0.0006171887054466903, 'do': 0.02329887363061256, 'make': 0.020521524456102454, 'consider': 0.0023144576454250886, 'increase': 0.00046289152908501776, 'feel': 0.007714858818083629, 'thousand': 0.00015429717636167257, 'spare': 0.0013886745872550533, 'repent': 0.00030859435272334514, 'dispute': 0.00015429717636167257, 'come': 0.007714858818083629, 'till': 0.005554698349020213, 'act': 0.0009257830581700355, 'despise': 0.00030859435272334514, 'reflect': 0.001080080234531708, 'stay': 0.003548835056318469, 'counteract': 0.00046289152908501776, 'govern': 0.00015429717636167257, 'learn': 0.0013886745872550533, 'afford': 0.002160160469063416, 'struggle': 0.00030859435272334514, 'exert': 0.0007714858818083629, 'consult': 0.00030859435272334514, 'treat': 0.0007714858818083629, 'strive': 0.00015429717636167257, 'rouse': 0.00046289152908501776, 'encourage': 0.0006171887054466903, 'equal': 0.00015429717636167257, 'accommodate': 0.00046289152908501776, 'take': 0.006326184230828576, 'think': 0.017744175281592348, 'answer': 0.0012343774108933806, 'rob': 0.00046289152908501776, 'exist': 0.00030859435272334514, 'ruin': 0.0006171887054466903, 'assist': 0.0020058632927017436, 'know': 0.013423854343465515, 'stipulate': 0.00015429717636167257, 'suppose': 0.003703132232680142, 'neglect': 0.00015429717636167257, 'settle': 0.0015429717636167258, '_let_': 0.00015429717636167257, 'Consider': 0.00030859435272334514, '”': 0.004628915290850177, 'return': 0.0030859435272334516, 'marry': 0.004011726585403487, 'regret': 0.0009257830581700355, 'half': 0.00030859435272334514, 'wish': 0.0033945378799567967, '“': 0.02808208609782441, 'expect': 0.0038574294090418146, 'do.': 0.0009257830581700355, 'want': 0.001080080234531708, 'pin': 0.00015429717636167257, 'bind': 0.00015429717636167257, 'allow': 0.003703132232680142, 'enlarge': 0.00015429717636167257, 'prevent': 0.003548835056318469, 'say': 0.019441444221570747, 'move': 0.00046289152908501776, 'Do': 0.0009257830581700355, 'pay': 0.0013886745872550533, '—They': 0.00015429717636167257, 'keep': 0.004628915290850177, 'imagine': 0.0015429717636167258, 'spend': 0.0015429717636167258, 'mean': 0.002623051998148434, 'fulfil': 0.00015429717636167257, '_them_.': 0.00015429717636167257, 'raise': 0.0016972689399783983, 'revive': 0.00030859435272334514, 'remove': 0.0012343774108933806, 'hear': 0.008794939052615337, 'support': 0.0015429717636167258, 'herself': 0.003703132232680142, 'see': 0.021910199043357507, 'distinguished—as—they': 0.00015429717636167257, 'knew': 0.00046289152908501776, 'get': 0.004628915290850177, 'disturb': 0.00046289152908501776, 'observe': 0.001080080234531708, 'approve': 0.0009257830581700355, 'like': 0.002931646350871779, 'love.': 0.00015429717636167257, 'esteem': 0.00046289152908501776, 'separate': 0.00046289152908501776, 'perceive': 0.0020058632927017436, 'miss': 0.00030859435272334514, 'meet': 0.003240240703595124, 'gain': 0.0012343774108933806, 'grave': 0.00046289152908501776, 'disapprove': 0.00015429717636167257, 'attach': 0.0007714858818083629, 'attract': 0.00046289152908501776, 'understand': 0.0016972689399783983, 'satisfy': 0.001080080234531708, 'enter': 0.001851566116340071, 'charm': 0.00015429717636167257, 'notice': 0.00030859435272334514, 'driven': 0.00015429717636167257, 'simple': 0.00015429717636167257, 'overlook': 0.0006171887054466903, 'love': 0.0027773491745101066, 'ornament': 0.00015429717636167257, 'draw': 0.0012343774108933806, 'him.': 0.00046289152908501776, 'wound': 0.0006171887054466903, 'believe': 0.00540040117265854, 'express': 0.0016972689399783983, 'find': 0.007869155994445301, 'heard': 0.0006171887054466903, 'pronounce': 0.00046289152908501776, 'improve': 0.0006171887054466903, 'explain': 0.0012343774108933806, 'attempt': 0.001851566116340071, 'deny': 0.001080080234531708, 'help': 0.002623051998148434, 'warrant': 0.00015429717636167257, '_not_': 0.0009257830581700355, 'wonder': 0.0012343774108933806, 'avoid': 0.0030859435272334516, 'mistaken': 0.00015429717636167257, 'happen': 0.0015429717636167258, 'proceed': 0.0007714858818083629, '_I_': 0.00015429717636167257, 'lose': 0.0006171887054466903, 'denote': 0.00015429717636167257, 'produce': 0.0013886745872550533, 'form': 0.0012343774108933806, '_draw': 0.00015429717636167257, 'pretend': 0.00030859435272334514, 'judge': 0.00046289152908501776, 'fail': 0.0006171887054466903, 'quit': 0.0012343774108933806, 'inhabit': 0.00030859435272334514, 'visit': 0.002160160469063416, 'show': 0.001851566116340071, 'amongst': 0.00030859435272334514, 'oppose': 0.0006171887054466903, 'dissuade': 0.00030859435272334514, 'incommode': 0.00015429717636167257, 'determine': 0.0015429717636167258, 'sell': 0.0006171887054466903, 'prepare': 0.0006171887054466903, 'examine': 0.0006171887054466903, 'defer': 0.0006171887054466903, 'stand': 0.0015429717636167258, 'enable': 0.0007714858818083629, 'begin': 0.0007714858818083629, 'cease': 0.0009257830581700355, '—when': 0.00030859435272334514, 'view': 0.00015429717636167257, 'ye': 0.00015429717636167257, 'continue': 0.0006171887054466903, 'decay': 0.00015429717636167257, 'remain': 0.0016972689399783983, 'enjoy': 0.001080080234531708, '—but': 0.00030859435272334514, 'appear': 0.003548835056318469, 'add': 0.0007714858818083629, 'widen': 0.00015429717636167257, 'plan': 0.00015429717636167257, 'welcome': 0.00046289152908501776, 'offer': 0.0009257830581700355, 'remember': 0.001080080234531708, 'dine': 0.0013886745872550533, 'depend': 0.0009257830581700355, 'detract': 0.00015429717636167257, 'enquire': 0.0009257830581700355, 'admire': 0.0007714858818083629, 'ask': 0.004628915290850177, 'spoil': 0.00030859435272334514, 'hold': 0.0016972689399783983, 'eat': 0.0009257830581700355, 'chicken': 0.00015429717636167257, 'secure': 0.0009257830581700355, 'excuse': 0.001080080234531708, 'assure': 0.0016972689399783983, 'blush': 0.00015429717636167257, 'recommend': 0.00030859435272334514, 'enjoyment': 0.00015429717636167257, 'play': 0.0007714858818083629, 'sympathize': 0.00015429717636167257, 'laugh': 0.0006171887054466903, 'censure': 0.0006171887054466903, 'throw': 0.00046289152908501776, 'protect': 0.00046289152908501776, 'call': 0.0038574294090418146, 'deceive': 0.0006171887054466903, 'seem': 0.001851566116340071, 'twenty': 0.0006171887054466903, 'inspire': 0.00030859435272334514, 'bring': 0.002468754821786761, 'submit': 0.0013886745872550533, 'convince': 0.0013886745872550533, 'object': 0.0009257830581700355, 'complain': 0.00030859435272334514, 'afflict': 0.00015429717636167257, 'conceal': 0.001080080234531708, 'occasion': 0.00015429717636167257, 'detain': 0.0006171887054466903, 'follow': 0.001080080234531708, 'melancholy': 0.00015429717636167257, 'try': 0.001080080234531708, 'mix': 0.00046289152908501776, 'seek': 0.00046289152908501776, 'towards': 0.00046289152908501776, 'bear': 0.003240240703595124, 'walk': 0.001851566116340071, 'turn': 0.0013886745872550533, 'stop': 0.0009257830581700355, 'join': 0.0016972689399783983, 'ride': 0.0006171887054466903, 'dinner': 0.00046289152908501776, 'describe': 0.0009257830581700355, 'inherit': 0.00015429717636167257, 'tell': 0.01018361363987039, 'let': 0.003548835056318469, 'covert.': 0.00015429717636167257, '‘': 0.0013886745872550533, 'declare': 0.0009257830581700355, 'mention': 0.0015429717636167258, 'talk': 0.004628915290850177, 'question': 0.00046289152908501776, 'dwelt': 0.00015429717636167257, 'become': 0.0015429717636167258, 'suffice': 0.00015429717636167257, 'ask.': 0.00015429717636167257, 'scold': 0.00015429717636167257, 'congratulate': 0.0007714858818083629, 'forward': 0.00015429717636167257, 'undervalue': 0.00015429717636167257, 'boast': 0.00030859435272334514, 'converse': 0.00046289152908501776, '_your_': 0.00015429717636167257, 'dislike': 0.0006171887054466903, 'employ': 0.0006171887054466903, 'disarm': 0.00015429717636167257, 'persuade': 0.0012343774108933806, 'buy': 0.0012343774108933806, 'confess': 0.00030859435272334514, 'occupy': 0.00015429717636167257, 'suggest': 0.0006171887054466903, 'attend': 0.0016972689399783983, 'aim': 0.00015429717636167257, 'shame': 0.00015429717636167257, 'provoke': 0.0006171887054466903, 'teach': 0.00030859435272334514, 'Towards': 0.00015429717636167257, 'suspect': 0.0007714858818083629, 'exist.': 0.00015429717636167257, 'define': 0.00015429717636167257, 'justify': 0.0013886745872550533, 'agree': 0.001080080234531708, 'atone': 0.00030859435272334514, 'desire': 0.0006171887054466903, 'escape': 0.0007714858818083629, 'connect': 0.00015429717636167257, 'carry': 0.0007714858818083629, 'alter': 0.00030859435272334514, 'build': 0.0007714858818083629, 'send': 0.0016972689399783983, 'awaken': 0.00015429717636167257, 'comprehend': 0.001080080234531708, 'doubt': 0.002160160469063416, 'touch': 0.00046289152908501776, 'tempt': 0.001080080234531708, 'forego': 0.00015429717636167257, 'use': 0.0007714858818083629, 'claim': 0.00046289152908501776, 'discover': 0.0007714858818083629, 'cut': 0.0006171887054466903, 'mama': 0.00030859435272334514, 'put': 0.0033945378799567967, 'withhold': 0.00030859435272334514, 'repeat': 0.00046289152908501776, 'guess': 0.0009257830581700355, 'sit': 0.0016972689399783983, 'amidst': 0.00015429717636167257, 'go': 0.013886745872550533, 'breakfast': 0.00015429717636167257, 'discompose': 0.00015429717636167257, 'delay': 0.00046289152908501776, 'lay': 0.00030859435272334514, 'change': 0.0007714858818083629, 'pry': 0.00015429717636167257, 'bid': 0.00015429717636167257, 'ma': 0.0006171887054466903, 'stare': 0.00015429717636167257, 'procure': 0.0006171887054466903, 'table': 0.00046289152908501776, 'propose': 0.00015429717636167257, 'evince': 0.00015429717636167257, 'advantage': 0.0006171887054466903, 'bestow': 0.0013886745872550533, 'conceive': 0.0006171887054466903, 'account': 0.001080080234531708, 'Marianne': 0.00030859435272334514, '_That_': 0.00030859435272334514, 'consent': 0.00046289152908501776, 'sacrifice': 0.00015429717636167257, 'pull': 0.00015429717636167257, 'hereafter': 0.00030859435272334514, 'endear': 0.00015429717636167257, 'share.': 0.00015429717636167257, 'experience': 0.00015429717636167257, 'degrade': 0.00015429717636167257, 'pass': 0.001080080234531708, 'afford.': 0.00015429717636167257, 'Extend': 0.00015429717636167257, 'Tell': 0.0006171887054466903, 'yours': 0.00030859435272334514, 'dear': 0.00046289152908501776, 'me.': 0.00030859435272334514, 'ill': 0.0006171887054466903, 'look': 0.004320320938126832, 'wait': 0.0027773491745101066, 'press': 0.0009257830581700355, 'speak': 0.008023453170806974, 'linger': 0.00030859435272334514, 'torment': 0.00015429717636167257, 'enjoy.': 0.00015429717636167257, 'step': 0.00015429717636167257, 'accept': 0.0016972689399783983, 'most': 0.00046289152908501776, 'work': 0.00030859435272334514, 'travel': 0.0006171887054466903, 'behave': 0.00046289152908501776, '_You_': 0.00015429717636167257, 'you.': 0.0007714858818083629, 'myself': 0.0012343774108933806, 'transact': 0.00015429717636167257, 'dismiss': 0.00015429717636167257, 'listen': 0.0009257830581700355, 'point': 0.00030859435272334514, 'secret': 0.00015429717636167257, 'acknowledge': 0.0013886745872550533, 'blame': 0.0007714858818083629, 'admit': 0.0006171887054466903, 'accuse': 0.00015429717636167257, 'such': 0.00030859435272334514, 'create': 0.00030859435272334514, 'resist': 0.0012343774108933806, 'deserve': 0.001080080234531708, 'secrecy': 0.00015429717636167257, 'sleep': 0.00015429717636167257, 'risen': 0.00015429717636167257, 'Willoughby': 0.00030859435272334514, 'force': 0.0009257830581700355, 'direct.': 0.00015429717636167257, 'reach': 0.0006171887054466903, 'distinguish': 0.0006171887054466903, 'come.': 0.00030859435272334514, 'screen': 0.00030859435272334514, 'smile': 0.0007714858818083629, 'end': 0.0009257830581700355, 'fall': 0.0006171887054466903, 'regard': 0.0007714858818083629, 'Look': 0.00046289152908501776, 'regulate': 0.00015429717636167257, 'reanimate': 0.00015429717636167257, 'Thank': 0.00015429717636167257, 'Beyond': 0.00015429717636167257, 'end.': 0.00015429717636167257, 'hunt.': 0.00015429717636167257, 'vanish.': 0.00015429717636167257, 'content': 0.00015429717636167257, 'recall': 0.00046289152908501776, 'offend': 0.0009257830581700355, 'reproach': 0.00046289152908501776, 'deliberate': 0.00015429717636167257, 'judge.': 0.00015429717636167257, 'confound': 0.00015429717636167257, 'adopt': 0.0009257830581700355, 'conform': 0.00015429717636167257, 'promote': 0.0006171887054466903, 'distant': 0.00015429717636167257, 'catch': 0.00046289152908501776, 'known': 0.00030859435272334514, 'drink': 0.00046289152908501776, 'contribute': 0.00015429717636167257, 'dance': 0.00046289152908501776, 'Shall': 0.00015429717636167257, '—But': 0.00015429717636167257, 'environs—never': 0.00015429717636167257, 'Never': 0.00015429717636167257, 'yield': 0.00030859435272334514, 'round': 0.00015429717636167257, 'result': 0.00015429717636167257, 'drove': 0.00030859435272334514, 'Know': 0.00015429717636167257, 'ere': 0.00015429717636167257, 'defy': 0.00015429717636167257, 'subdue': 0.00030859435272334514, 'suffer': 0.0009257830581700355, 'augment': 0.00015429717636167257, 'fix': 0.0013886745872550533, 'lessen': 0.0009257830581700355, 'indulge': 0.00046289152908501776, 'Amongst': 0.00015429717636167257, 'open': 0.0007714858818083629, 'run': 0.0007714858818083629, 'please': 0.0013886745872550533, '’': 0.0015429717636167258, 't': 0.00015429717636167257, 'rest': 0.0006171887054466903, 'endure': 0.00046289152908501776, 'chuse': 0.0006171887054466903, 'ate': 0.00015429717636167257, 'ours': 0.00015429717636167257, 'chaperon': 0.00015429717636167257, 'abuse': 0.00015429717636167257, 'care': 0.0009257830581700355, 'woman—but': 0.00015429717636167257, 'succeed': 0.00030859435272334514, '—and': 0.0015429717636167258, 'refuse': 0.00030859435272334514, 'frank': 0.00015429717636167257, 'it.': 0.00030859435272334514, 'decline': 0.00015429717636167257, 'own': 0.00046289152908501776, 'yourself': 0.00015429717636167257, 'Cleveland': 0.00030859435272334514, 'entertain': 0.00015429717636167257, 'invite': 0.00015429717636167257, 'come—I': 0.00015429717636167257, 'come—You': 0.00015429717636167257, 'prevail': 0.0007714858818083629, 'obtain': 0.0009257830581700355, 'swallow': 0.00015429717636167257, 'surpass': 0.00015429717636167257, 'assuage': 0.00015429717636167257, 'estimate': 0.00015429717636167257, 'dirty': 0.00015429717636167257, 'justice': 0.00030859435272334514, 'excite': 0.00015429717636167257, 'sport': 0.00030859435272334514, 'communicate': 0.0009257830581700355, 'manage': 0.00015429717636167257, 'YOU': 0.00015429717636167257, 'divine': 0.00015429717636167257, 's': 0.00046289152908501776, 'beg': 0.0006171887054466903, 'sink': 0.00046289152908501776, 'heaven': 0.00015429717636167257, 'set': 0.0015429717636167258, 'pardon': 0.00030859435272334514, 'sake': 0.00030859435272334514, 'break': 0.00015429717636167257, 'me—I': 0.00015429717636167257, 'advise': 0.0007714858818083629, 'direct': 0.00015429717636167257, 'provide': 0.0007714858818083629, 'Did': 0.00015429717636167257, 'subsist': 0.00015429717636167257, '_that_': 0.00046289152908501776, 'whatever': 0.00030859435272334514, 'forgive': 0.001080080234531708, 'selfish': 0.00030859435272334514, 'blind': 0.0006171887054466903, 'merit': 0.00015429717636167257, 'forfeit': 0.00030859435272334514, 'guard': 0.00015429717636167257, 'divide': 0.0006171887054466903, 'flow': 0.00015429717636167257, 'trust': 0.0009257830581700355, 'combat': 0.00015429717636167257, 'mistrust': 0.00015429717636167257, 'finish': 0.00046289152908501776, 'hurt': 0.00030859435272334514, 'disappoint': 0.00030859435272334514, 'infer': 0.00030859435272334514, 'taste': 0.00015429717636167257, 'rude': 0.00015429717636167257, 'smooth': 0.00015429717636167257, 'condescend': 0.00030859435272334514, 'practise': 0.00030859435272334514, 'apologize': 0.00015429717636167257, 'relieve': 0.00046289152908501776, 'deprive': 0.00046289152908501776, 'sigh': 0.00015429717636167257, 'impose': 0.00015429717636167257, 'involve': 0.00015429717636167257, 'prefer': 0.00015429717636167257, 'little.': 0.00015429717636167257, 'resolve': 0.00015429717636167257, 'frighten': 0.00015429717636167257, 'them.': 0.00015429717636167257, 'induce': 0.00015429717636167257, 'inform': 0.0007714858818083629, 'fulfill': 0.00046289152908501776, 'proclaim': 0.00015429717636167257, 'accompany': 0.0006171887054466903, 'favour': 0.00015429717636167257, 'strike': 0.00030859435272334514, 'promote—she': 0.00015429717636167257, 'influence': 0.00030859435272334514, 'disregard': 0.00030859435272334514, 'witness': 0.0006171887054466903, 'foresee': 0.0006171887054466903, 'accrue': 0.00015429717636167257, 'removed.': 0.00015429717636167257, 'consequence.': 0.00015429717636167257, 'anticipate': 0.00015429717636167257, 'weaken': 0.00030859435272334514, 'not.': 0.00015429717636167257, 'distrust': 0.00046289152908501776, 'decide': 0.00046289152908501776, 'ascertain': 0.00030859435272334514, 'choose': 0.0006171887054466903, 'extort': 0.00015429717636167257, 'cod': 0.00015429717636167257, 'veal': 0.00015429717636167257, 'clock': 0.00015429717636167257, 'write': 0.001851566116340071, 'conduct': 0.00030859435272334514, 'Elinor': 0.0009257830581700355, 'attribute': 0.0006171887054466903, 'recollect': 0.0007714858818083629, 'pain': 0.00015429717636167257, 'conjure': 0.00015429717636167257, 'inquire': 0.00046289152908501776, '_my_': 0.00015429717636167257, 'represent': 0.00046289152908501776, 'tis': 0.00015429717636167257, 'heart.': 0.00015429717636167257, 'freeze': 0.00015429717636167257, 'Combe': 0.00015429717636167257, 'compound': 0.00030859435272334514, 'amuse': 0.0006171887054466903, 'tell.': 0.00015429717636167257, 'collect': 0.0006171887054466903, 'know.': 0.00015429717636167257, 'lead': 0.0007714858818083629, 'demand': 0.00046289152908501776, 'known.': 0.00015429717636167257, 'Excuse': 0.00015429717636167257, 'shield': 0.00015429717636167257, 'endeavour': 0.00015429717636167257, 'confirm': 0.00030859435272334514, 'mingle': 0.00015429717636167257, 'approach': 0.00015429717636167257, 'betray': 0.00015429717636167257, 'shake': 0.00015429717636167257, 'received': 0.00015429717636167257, 'sunk': 0.00015429717636167257, 'instantly.—I': 0.00015429717636167257, 'rest—I': 0.00015429717636167257, 'entreat': 0.00030859435272334514, 'feed': 0.00030859435272334514, 'mistake': 0.00015429717636167257, 'overcome': 0.0009257830581700355, 'await': 0.00015429717636167257, '_esteem_': 0.00015429717636167257, 'embitter': 0.00015429717636167257, 'heighten': 0.00030859435272334514, 'permit': 0.00015429717636167257, 'ask—': 0.00015429717636167257, 'sooth': 0.00015429717636167257, 'tranquilize': 0.00015429717636167257, 'calmly': 0.00015429717636167257, 'imply': 0.00015429717636167257, 'surprise': 0.00046289152908501776, 'announce': 0.0006171887054466903, 'delicate': 0.00015429717636167257, 'dictate': 0.00046289152908501776, 'forgot': 0.00030859435272334514, 'rise': 0.00015429717636167257, 'exclaim': 0.00015429717636167257, 'kill': 0.00030859435272334514, 'Think': 0.00015429717636167257, 'hate': 0.00046289152908501776, 'forget': 0.0012343774108933806, 'torture': 0.00030859435272334514, 'away.': 0.00030859435272334514, 'talk.': 0.00015429717636167257, 'grieve': 0.00030859435272334514, 'acquit': 0.00046289152908501776, 'contend': 0.00030859435272334514, 'feel—I': 0.00015429717636167257, 'require': 0.00030859435272334514, 'Whatever': 0.00015429717636167257, 'comfort': 0.0006171887054466903, '_he_': 0.00015429717636167257, 'lie': 0.00046289152908501776, 'plague': 0.00015429717636167257, 'cure': 0.00030859435272334514, 'her—is': 0.00015429717636167257, 'fly': 0.00015429717636167257, 'agree.': 0.00015429717636167257, 'moan': 0.00015429717636167257, 'Let': 0.00030859435272334514, 'name': 0.00015429717636167257, 'Lord': 0.00015429717636167257, 'tomorrow.': 0.00015429717636167257, 'caution': 0.00015429717636167257, 'believe.': 0.00015429717636167257, '_this_': 0.00015429717636167257, 'defend': 0.00046289152908501776, 'Mind': 0.00015429717636167257, 'drawback—except': 0.00015429717636167257, 'signify': 0.0009257830581700355, 'stuff': 0.00015429717636167257, 'spirit': 0.00015429717636167257, 'bed.': 0.00046289152908501776, 'compliance': 0.00015429717636167257, 'be—there': 0.00015429717636167257, 'think—in': 0.00015429717636167257, 'identify': 0.00030859435272334514, 'she—': 0.00015429717636167257, 'seclude': 0.00015429717636167257, 'Thus': 0.00015429717636167257, 'prove': 0.001080080234531708, 'good.': 0.00015429717636167257, 'inforce': 0.00015429717636167257, 'intreat': 0.00030859435272334514, 'fear': 0.00030859435272334514, '_hers_': 0.00015429717636167257, 'forgotten': 0.00015429717636167257, 'lament': 0.00015429717636167257, 'restrain': 0.00030859435272334514, 'trace': 0.00046289152908501776, 'dispose': 0.00046289152908501776, 'recover': 0.00015429717636167257, 'handle': 0.00015429717636167257, 'place': 0.00046289152908501776, 'conjecture': 0.00015429717636167257, 'be—could': 0.00015429717636167257, 'irresolute': 0.00015429717636167257, 'reclaim': 0.00015429717636167257, 'strengthen': 0.00015429717636167257, 'Use': 0.00015429717636167257, 'to—': 0.00015429717636167257, 'punish': 0.00015429717636167257, '_once_': 0.00015429717636167257, 'shorten': 0.00015429717636167257, 'comprise': 0.00015429717636167257, 'drop': 0.00030859435272334514, 'spoken': 0.00030859435272334514, 'soften': 0.00030859435272334514, 'oblige': 0.00030859435272334514, '_These_': 0.00015429717636167257, 'burst': 0.00015429717636167257, '_your': 0.00015429717636167257, 'twelve': 0.00030859435272334514, 'talking—but': 0.00015429717636167257, 'contradict': 0.00015429717636167257, 'humour': 0.00015429717636167257, 'tend': 0.00030859435272334514, 'promise': 0.00015429717636167257, 'imprint': 0.00015429717636167257, 'bespeak': 0.00015429717636167257, 'introduce': 0.0006171887054466903, '_them_': 0.00030859435272334514, 'express.': 0.00015429717636167257, 'serve': 0.00046289152908501776, '_him_': 0.00015429717636167257, 'hang': 0.00015429717636167257, '_all': 0.00015429717636167257, 'say—your': 0.00015429717636167257, 'vouchsafe': 0.00015429717636167257, 'bequeathed': 0.00015429717636167257, 'repine': 0.00015429717636167257, 'slope': 0.00015429717636167257, 'hitherto': 0.00015429717636167257, 'leave.': 0.00015429717636167257, 'descend': 0.00030859435272334514, 'associate': 0.00015429717636167257, 'suit': 0.00030859435272334514, '_her_': 0.0006171887054466903, 'glad': 0.00015429717636167257, 'genteel': 0.00015429717636167257, 'behold': 0.00015429717636167257, 'her—to': 0.00015429717636167257, 'sourness': 0.00015429717636167257, '_now_': 0.00046289152908501776, 'distress': 0.00015429717636167257, 'humble': 0.00015429717636167257, 'mortify': 0.00030859435272334514, 'connoisseurship': 0.00015429717636167257, 'foretell': 0.00015429717636167257, 'mind': 0.00015429717636167257, 'rejoice': 0.00046289152908501776, 'herself—or': 0.00015429717636167257, 'derive': 0.00015429717636167257, 'advance': 0.00046289152908501776, 'deter': 0.00015429717636167257, 'volunteer': 0.00015429717636167257, 'conciliate': 0.00015429717636167257, 'thank': 0.00030859435272334514, '_has_': 0.00015429717636167257, 'be.': 0.00046289152908501776, 'expose': 0.00030859435272334514, 'monopolize': 0.00015429717636167257, 'reconcile': 0.00015429717636167257, 'dropt': 0.00015429717636167257, 'minute': 0.00015429717636167257, 'inconvenience': 0.00015429717636167257, 'drive': 0.00046289152908501776, 'request': 0.00015429717636167257, 'twice': 0.00015429717636167257, 'resume': 0.00015429717636167257, 'well.': 0.00015429717636167257, 'joke': 0.00015429717636167257, 'kept': 0.00015429717636167257, 'popt': 0.00015429717636167257, 'come—for': 0.00015429717636167257, '_Then_': 0.00015429717636167257, 'fit': 0.00015429717636167257, 'exactly.': 0.00015429717636167257, '—for': 0.00015429717636167257, 'perform': 0.00046289152908501776, 'dwell': 0.00015429717636167257, 'soothe': 0.0006171887054466903, 'farther': 0.00015429717636167257, 'utter': 0.00015429717636167257, 'satisfy.': 0.00015429717636167257, 'undeceive': 0.00015429717636167257, 'harbour': 0.00015429717636167257, '_her_.': 0.00015429717636167257, 'occur': 0.0007714858818083629, 'silence': 0.00015429717636167257, 'entirely—not': 0.00015429717636167257, '—Is': 0.00015429717636167257, '—Because': 0.00015429717636167257, 'admiration.—She': 0.00015429717636167257, 'alarm': 0.00015429717636167257, 'relate': 0.00030859435272334514, 'retort': 0.00015429717636167257, 'reward': 0.00015429717636167257, 'picture': 0.00015429717636167257, 'forbear': 0.00015429717636167257, 'urge': 0.00046289152908501776, 'trim': 0.00015429717636167257, 'rid': 0.00015429717636167257, 'interrupt': 0.00030859435272334514, 'learnt': 0.00015429717636167257, '_you': 0.00015429717636167257, 'light': 0.00015429717636167257, 'reply': 0.00015429717636167257, 'Remember': 0.00015429717636167257, 'spread': 0.00015429717636167257, 'conclude': 0.00015429717636167257, 'argue': 0.00015429717636167257, 'triumph': 0.00015429717636167257, 'gape': 0.00015429717636167257, 'pursue': 0.00015429717636167257, 'cry': 0.00015429717636167257, 'hinder': 0.00015429717636167257, 'undertake': 0.00030859435272334514, 'made': 0.00015429717636167257, '_is_': 0.00015429717636167257, 'compassionate': 0.00015429717636167257, 'happen.': 0.00015429717636167257, 'long': 0.00015429717636167257, 'Lucy': 0.00015429717636167257, 'relative': 0.00015429717636167257, 'begin—how': 0.00015429717636167257, 'Allow': 0.00015429717636167257, 'to—as': 0.00015429717636167257, 'yourself—such': 0.00015429717636167257, 'establish': 0.00015429717636167257, 'likewise': 0.00015429717636167257, '—Can': 0.00015429717636167257, 'perhaps—indeed': 0.00015429717636167257, 'hurry': 0.00030859435272334514, 'befall': 0.00015429717636167257, 'reconsider': 0.00015429717636167257, '—And': 0.00015429717636167257, '—For': 0.00015429717636167257, 'complete': 0.00030859435272334514, 'marry.': 0.00015429717636167257, 'Take': 0.00015429717636167257, 'worship': 0.00015429717636167257, 'avail': 0.00030859435272334514, 'affront': 0.00015429717636167257, '_Now_': 0.00015429717636167257, 'be—but': 0.00015429717636167257, 's—can': 0.00015429717636167257, 'vacate': 0.00015429717636167257, 'refrain': 0.00015429717636167257, 'retain': 0.00030859435272334514, 'accelerate': 0.00015429717636167257, 'gratify': 0.00030859435272334514, 'think—indeed': 0.00015429717636167257, 'mentioned—as': 0.00015429717636167257, 'agitate': 0.00015429717636167257, 'fill': 0.00030859435272334514, 'wisdom': 0.00015429717636167257, 'intend': 0.00015429717636167257, 'again.': 0.00015429717636167257, 'Just': 0.00015429717636167257, 'captivate': 0.00015429717636167257, 'interfere': 0.00015429717636167257, 'least': 0.00046289152908501776, 'reside': 0.00015429717636167257, 'thirty': 0.00015429717636167257, 'fancy': 0.0009257830581700355, 'slight': 0.00015429717636167257, 'idled': 0.00015429717636167257, 'sorry': 0.00015429717636167257, 'restore': 0.00030859435272334514, 'demur': 0.00015429717636167257, 'render': 0.00030859435272334514, 'expel': 0.00015429717636167257, 'close': 0.00015429717636167257, 'fetch': 0.00030859435272334514, 'guide': 0.00015429717636167257, '_He_': 0.00015429717636167257, 'watch': 0.00015429717636167257, 'bury': 0.00015429717636167257, 'watch—she': 0.00015429717636167257, 'gaiety': 0.00015429717636167257, 'expand': 0.00015429717636167257, 'remind': 0.00015429717636167257, 'tea': 0.00015429717636167257, 'discern': 0.00015429717636167257, 'stay.': 0.00015429717636167257, 'best': 0.00015429717636167257, 'spare.': 0.00015429717636167257, 'perhaps—let': 0.00015429717636167257, 'over-set': 0.00015429717636167257, 'reprobate': 0.00015429717636167257, '_then_': 0.00015429717636167257, 'avarice': 0.00015429717636167257, 'affluence': 0.00015429717636167257, 'expatiate': 0.00015429717636167257, 'display': 0.00015429717636167257, 'Could': 0.00015429717636167257, 'urge—that': 0.00015429717636167257, '_she_': 0.00015429717636167257, 'be—your': 0.00015429717636167257, 'be—and': 0.00015429717636167257, 'me—it': 0.00015429717636167257, 'address': 0.00030859435272334514, 'A': 0.00015429717636167257, 'deliver': 0.00015429717636167257, '—have': 0.00015429717636167257, 'is—in': 0.00015429717636167257, 'forbid—a': 0.00015429717636167257, 'hear.': 0.00030859435272334514, 'retreat': 0.00015429717636167257, 'preserve': 0.00046289152908501776, 'affect': 0.00030859435272334514, 'told': 0.00015429717636167257, 'frame': 0.00015429717636167257, 'mine—and': 0.00015429717636167257, '—we': 0.00015429717636167257, 'kiss': 0.00015429717636167257, 'pity': 0.00015429717636167257, '—be': 0.00015429717636167257, '—Let': 0.00015429717636167257, 'evil': 0.00015429717636167257, '—that': 0.00015429717636167257, 'forgave': 0.00015429717636167257, 'well—was': 0.00015429717636167257, 'rub': 0.00015429717636167257, 'sweet': 0.00015429717636167257, 'save': 0.00015429717636167257, '_his_': 0.00015429717636167257, 'mend': 0.00015429717636167257, 'like.': 0.00015429717636167257, 'pour': 0.00015429717636167257, 'determinate': 0.00015429717636167257, 'redeem': 0.00015429717636167257, 'engross': 0.00015429717636167257, 'praise': 0.00015429717636167257, 'accustom': 0.00015429717636167257, 'do.—She': 0.00015429717636167257, 'borrow': 0.00015429717636167257, 'want.': 0.00015429717636167257, 'unsettle': 0.00015429717636167257, 'slow': 0.00015429717636167257, '_always_': 0.00015429717636167257, 'compare': 0.00015429717636167257, 'kindness': 0.00015429717636167257, 'benefit': 0.00015429717636167257, 'myself.—Your': 0.00015429717636167257, 'imitate': 0.00015429717636167257, 'discharge': 0.00015429717636167257, 'flatter': 0.00015429717636167257, 'it—my': 0.00015429717636167257, 'henceforth': 0.00015429717636167257, 'sickness': 0.00015429717636167257, 'replace': 0.00030859435272334514, 'me—what': 0.00015429717636167257, 'abridge': 0.00015429717636167257, 'rank': 0.00015429717636167257, 'countenance': 0.00015429717636167257, 'bide': 0.00030859435272334514, 'hazard': 0.00015429717636167257, 'certainty': 0.00015429717636167257, 'speak—and': 0.00015429717636167257, 'saw—or': 0.00015429717636167257, 'penetrate': 0.00015429717636167257, 'purpose': 0.00015429717636167257, 'swell': 0.00015429717636167257, 'nineteen': 0.00015429717636167257, 'occur—regrets': 0.00015429717636167257, 'despatch': 0.00015429717636167257, 'arise.': 0.00015429717636167257, 'Dawlish': 0.00015429717636167257, 'Please': 0.00015429717636167257, 'destroy': 0.00046289152908501776, 'keep.': 0.00015429717636167257, 'plead': 0.00015429717636167257, 'enrich': 0.00015429717636167257, 'calculate': 0.00030859435272334514, 'unite': 0.00015429717636167257, 'vent': 0.00015429717636167257, '—': 0.00015429717636167257, '_me': 0.00015429717636167257, 'make.': 0.00015429717636167257, 'profess': 0.00015429717636167257, 'submit—and': 0.00015429717636167257, 'fifty': 0.00015429717636167257, 'superintend': 0.00015429717636167257, 'invent': 0.00015429717636167257, 'inspect': 0.00015429717636167257, 'honour': 0.00015429717636167257, 'cut—and': 0.00015429717636167257, 'exceed': 0.00015429717636167257, 'everybody': 0.00015429717636167257, 'sober': 0.00015429717636167257, 'cheerfulness': 0.00015429717636167257, 'distribute': 0.0006171887054466903, 'apply': 0.00015429717636167257, 'charge': 0.0006171887054466903, 'comply': 0.0007714858818083629, 'abide': 0.00015429717636167257, 'See': 0.00030859435272334514, 'Project': 0.00030859435272334514, 'contain': 0.00030859435272334514, 'unlink': 0.00015429717636167257, 'detach': 0.00015429717636167257, 'redistribute': 0.00015429717636167257, 'convert': 0.00015429717636167257, 'include': 0.00015429717636167257, '*': 0.00046289152908501776, 'donate': 0.00046289152908501776, 'discontinue': 0.00015429717636167257, 'Contact': 0.00015429717636167257, 'disclaim': 0.00015429717636167257, 'elect': 0.00015429717636167257, 'void': 0.00015429717636167257, 'indemnify': 0.00015429717636167257, 'cause': 0.00015429717636167257, 'survive': 0.00015429717636167257, 'solicit': 0.00030859435272334514, 'subscribe': 0.00015429717636167257}
#1a for spacy pos
def pos_spacy_counts(pos_tag, text):
nlp = spacy.load("en_core_web_sm")
doc = nlp(text)
pos_words = [token.text for token in doc if token.pos_ == pos_tag]
total_words = len(pos_words)
word_counts = {}
for word in pos_words:
if word in word_counts:
word_counts[word] += 1
else:
word_counts[word] = 1
percent_counts = {word: count/total_words for word, count in word_counts.items()}
return word_counts, percent_counts
noun_counts = pos_spacy_counts("NOUN", spacy_raw)
print(noun_counts[0])
{'Sense': 1, 'CHAPTER': 47, 'family': 82, 'estate': 19, 'residence': 7, 'centre': 2, 'property': 9, 'generations': 1, 'manner': 56, 'opinion': 61, 'acquaintance': 62, 'owner': 2, 'man': 117, 'age': 19, 'years': 49, 'life': 57, 'companion': 19, 'housekeeper': 5, 'sister': 278, 'death': 11, 'alteration': 15, 'home': 53, 'loss': 20, 'house': 155, 'nephew': 2, 'inheritor': 1, 'person': 67, 'society': 23, 'niece': 3, 'children': 33, 'days': 44, 'attachment': 34, 'attention': 56, 'wishes': 27, 'interest': 44, 'goodness': 8, 'heart': 122, 'degree': 14, 'comfort': 59, 'cheerfulness': 16, 'relish': 1, 'existence': 8, 'marriage': 43, 'son': 33, 'lady': 43, 'daughters': 27, 'fortune': 37, 'mother': 255, 'half': 12, 'coming': 5, 'wealth': 7, 'succession': 3, 'sisters': 48, 'father': 30, 'pounds': 41, 'disposal': 5, 'moiety': 1, 'wife': 47, 'child': 40, 'gentleman': 28, 'will': 14, 'disappointment': 22, 'pleasure': 67, 'terms': 12, 'value': 6, 'bequest': 1, 'sake': 33, 'son;--but': 1, 'way': 73, 'power': 44, 'provision': 4, 'charge': 9, 'sale': 1, 'woods': 4, 'whole': 28, 'benefit': 3, 'visits': 4, 'affections': 12, 'uncle': 17, 'attractions': 5, 'means': 33, 'articulation': 1, 'desire': 20, 'tricks': 4, 'deal': 33, 'noise': 7, 'mark': 6, 'affection': 78, 'girls': 16, 'piece': 11, 'temper': 21, 'sum': 10, 'produce': 1, 'improvement': 8, 'twelvemonth': 9, 'legacies': 1, 'widow': 5, 'danger': 22, 'strength': 8, 'urgency': 1, 'illness': 12, 'law': 32, 'feelings': 72, 'rest': 51, 'recommendation': 4, 'nature': 31, 'time': 236, 'thing': 183, 'assurance': 14, 'propriety': 14, 'discharge': 2, 'duties': 4, 'woman': 64, 'caricature': 1, 'promise': 21, 'fortunes': 3, 'present': 23, 'prospect': 15, 'year': 54, 'addition': 7, 'income': 23, 'inconvenience': 12, '"--': 10, 'day': 148, 'funeral': 1, 'notice': 24, 'intention': 6, 'attendants': 2, 'one': 62, 'right': 12, 'husband': 43, 'moment': 97, 'decease': 1, 'indelicacy': 1, 'conduct': 34, 'situation': 54, 'mind': 92, 'sense': 30, 'honor': 2, 'generosity': 5, 'offence': 13, 'kind': 80, 'whomsoever': 1, 'source': 7, 'disgust': 2, 'favourite': 4, 'opportunity': 28, 'people': 54, 'occasion': 25, 'behaviour': 62, 'daughter': 46, 'arrival': 35, 'entreaty': 5, 'girl': 35, 'tender': 6, 'love': 50, 'sakes': 2, 'breach': 5, 'brother': 83, 'advice': 10, 'understanding': 15, 'coolness': 3, 'judgment': 30, 'counsellor': 1, 'advantage': 23, 'eagerness': 11, 'disposition': 21, 'knowledge': 28, 'abilities': 9, 'respects': 3, 'sorrows': 6, 'joys': 1, 'moderation': 2, 'resemblance': 12, 'concern': 25, 'excess': 8, 'sensibility': 9, 'violence': 4, 'affliction': 15, 'agony': 8, 'grief': 11, 'sorrow': 11, 'increase': 9, 'wretchedness': 5, 'reflection': 12, 'consolation': 13, 'future': 11, 'exertion': 20, 'forbearance': 4, 'romance': 1, 'period': 6, 'mistress': 12, 'condition': 9, 'visitors': 10, 'civility': 15, 'kindness': 42, 'earnestness': 8, 'plan': 21, 'neighbourhood': 10, 'invitation': 32, 'continuance': 8, 'place': 82, 'delight': 23, 'seasons': 1, 'expectation': 26, 'happiness': 64, 'fancy': 19, 'alloy': 1, 'boy': 5, 'subject': 67, 'claim': 4, 'blood': 1, 'relationship': 2, 'amount': 4, 'marriages': 2, 'money': 26, 'request': 9, 'senses': 4, 'Fanny': 2, 'difference': 19, 'instance': 7, 'parties': 16, 'earth': 5, 'blood!--But': 1, 'spirit': 16, 'occasions': 3, 'expectations': 5, 'question': 24, 'mine': 5, 'annuity': 4, 'mean.--My': 1, 'effects': 7, 'consent': 10, 'purchase': 4, 'business': 45, 'trouble': 9, 'annuities': 4, 'payment': 3, 'servants': 9, 'claims': 5, 'restriction': 1, 'abhorrence': 4, 'world': 89, 'drains': 1, 'rent': 3, 'independence': 7, 'thanks': 6, 'gratitude': 15, 'discretion': 6, 'expenses': 7, 'case': 35, 'assistance': 14, 'allowance': 4, 'style': 18, 'living': 26, 'sixpence': 1, 'end': 46, 'truth': 26, 'idea': 24, 'things': 22, 'presents': 1, 'fish': 1, 'game': 6, 'season': 5, 'course': 29, 'board': 4, 'women': 10, 'housekeeping': 2, 'carriage': 40, 'horses': 13, 'company': 29, 'word': 46, 'engagement': 62, 'acts': 1, 'services': 2, 'furniture': 9, 'plate': 3, 'linen': 2, 'consideration': 12, 'legacy': 2, 'stock': 1, 'set': 1, 'breakfast': 18, 'argument': 3, 'intentions': 9, 'decision': 4, 'months': 33, 'disinclination': 2, 'sight': 17, 'spot': 7, 'emotion': 20, 'while': 12, 'spirits': 69, 'remembrances': 1, 'inquiries': 11, 'dwelling': 5, 'notions': 3, 'ease': 17, 'prudence': 8, 'houses': 5, 'part': 46, 'favour': 25, 'reflections': 7, 'sincerity': 7, 'satisfaction': 37, 'affluence': 3, 'merit': 12, 'welfare': 4, 'liberality': 6, 'contempt': 6, 'character': 33, 'spite': 35, 'politeness': 14, 'side': 56, 'ladies': 33, 'circumstance': 19, 'eligibility': 2, 'opinions': 15, 'establishment': 7, 'mothers': 3, 'intimacy': 10, 'motives': 6, 'trifling': 4, 'partiality': 10, 'doctrine': 3, 'couple': 12, 'comprehension': 4, 'graces': 2, 'address': 18, 'manners': 34, 'justice': 14, 'shyness': 3, 'indication': 2, 'education': 10, 'figure': 8, 'concerns': 8, 'parliament': 1, 'men': 22, 'blessings': 2, 'ambition': 2, 'barouche': 2, 'turn': 6, 'barouches': 1, 'weeks': 23, 'careless': 2, 'objects': 10, 'conversation': 38, 'contrast': 3, 'smile': 17, 'sentiment': 4, 'approbation': 13, 'esteem': 13, 'pains': 4, 'reserve': 7, 'merits': 9, 'persuasion': 13, 'regard': 44, 'penetration': 3, 'worth': 5, 'quietness': 2, 'ideas': 11, 'affectionate': 1, 'symptom': 5, 'Elinor': 11, 'probability': 12, 'separation': 9, 'miles': 10, 'lives': 4, 'choice': 10, 'surprise': 34, 'none': 18, 'grace': 2, 'eyes': 55, 'fire': 15, 'virtue': 2, 'intelligence': 17, 'taste': 24, 'drawings': 4, 'admiration': 20, 'fact': 12, 'matter': 46, 'lover': 10, 'connoisseur': 1, 'characters': 4, 'point': 36, 'coincide': 1, 'books': 9, 'music': 17, 'tame': 1, 'night': 35, 'composure': 17, 'seat': 8, 'lines': 3, 'calmness': 15, 'indifference!"--': 1, 'prose': 1, 'Cowper!--': 1, 'virtues': 1, 'charm': 2, 'despair': 3, 'destiny': 1, 'pity': 11, 'drawing': 22, 'performances': 2, 'opportunities': 2, 'learning': 1, 'matters': 9, 'picture': 10, 'simplicity': 4, 'mistake': 9, 'account': 35, 'length': 12, 'praise': 17, 'minuter': 2, 'propensities': 2, 'inclinations': 2, 'tastes': 1, 'friends': 62, 'commendation': 8, 'doubt': 29, 'excellence': 2, 'principles': 6, 'circumstances': 28, 'times': 20, 'principle': 5, 'sentiments': 10, 'subjects': 4, 'literature': 1, 'enjoyment': 19, 'imagination': 12, 'observation': 16, 'respect': 21, 'expression': 13, 'sweetness': 4, 'countenance': 27, 'imperfection': 1, 'face': 23, 'declaration': 5, 'warmth': 17, 'certainty': 3, 'conviction': 21, 'state': 25, 'words': 27, 'room': 116, 'suspicion': 15, 'hope': 20, 'imprudence': 10, 'folly': 14, 'moments': 17, 'extent': 6, 'wishing': 1, 'encouragement': 14, 'preference': 7, 'points': 6, 'inclination': 17, 'mention': 4, 'difficulties': 17, 'rank': 2, 'advantages': 2, 'delay': 12, 'pursuit': 4, 'felicity': 4, 'genius': 4, 'want': 23, 'indifference': 18, 'dejection': 3, 'cause': 13, 'indulgence': 4, 'views': 6, 'aggrandizement': 1, 'result': 8, 'doubtful': 1, 'minutes': 46, 'friendship': 20, 'limits': 2, 'uncivil': 1, 'resolution': 26, 'sons': 5, 'answer': 25, 'expense': 13, 'removal': 11, 'week': 33, 'insinuations': 2, 'letter': 76, 'post': 10, 'proposal': 6, 'offer': 8, 'relation': 14, 'consequence': 19, 'accommodation': 7, 'need': 4, 'cottage': 56, 'particulars': 18, 'garden': 13, 'whence': 5, 'parish': 1, 'cousin': 13, 'nearer': 3, 'connections': 5, 'deliberation': 1, 'inquiry': 20, 'county': 4, 'hours': 38, 'objection': 11, 'evil': 12, 'object': 31, 'blessing': 5, 'comparison': 13, 'misery': 27, 'guest': 4, 'inhabit': 1, 'acknowledgment': 4, 'acceptance': 3, 'letters': 20, 'distance': 12, 'head': 37, 'scale': 1, 'vicinity': 1, 'attempt': 5, 'acquiescence': 2, 'voice': 49, 'explanation': 12, 'difficulty': 19, 'resolve': 1, 'effect': 23, 'disapprobation': 1, 'match': 15, 'being': 3, 'service': 9, 'performance': 8, 'arrangement': 6, 'water': 5, 'household': 3, 'pianoforte': 6, 'packages': 1, 'sigh': 9, 'article': 2, 'possession': 11, 'agreement': 2, 'west': 1, 'wisdom': 2, 'number': 8, 'maids': 5, 'visitor': 8, 'description': 3, 'curiosity': 23, 'diminution': 2, 'departure': 7, 'accomplishment': 2, 'drift': 1, 'discourse': 19, 'maintenance': 2, 'demands': 5, 'purse': 1, 'calculation': 1, 'design': 10, 'abode': 5, 'journey': 22, 'tears': 23, 'adieus': 2, 'evening': 49, 'more!--And': 1, 'leaf': 2, 'branch': 1, 'longer!--No': 1, 'unconscious': 1, 'regret': 15, 'change': 24, 'shade!--But': 1, 'appearance': 28, 'country': 33, 'view': 20, 'pasture': 1, 'mile': 4, 'court': 3, 'demesne': 1, 'front': 4, 'wicket': 1, 'gate': 5, 'building': 2, 'roof': 3, 'window': 21, 'shutters': 1, 'walls': 6, 'honeysuckles': 1, 'passage': 6, 'entrance': 18, 'sitting': 4, 'feet': 3, 'offices': 7, 'stairs': 19, 'bed': 27, 'rooms': 5, 'garrets': 1, 'repair': 3, 'recollection': 18, 'joy': 24, 'others': 58, 'weather': 19, 'impression': 7, 'material': 6, 'hills': 12, 'downs': 6, 'woody': 1, 'village': 10, 'windows': 3, 'valley': 10, 'direction': 10, 'name': 43, 'size': 7, 'additions': 2, 'elegance': 19, 'apartments': 2, 'improvements': 7, 'spring': 4, 'plenty': 2, 'parlors': 1, 'thoughts': 24, 'remainder': 1, 'chamber': 3, 'hand': 42, 'alterations': 1, 'savings': 1, 'endeavoring': 1, 'possessions': 2, 'employments': 7, 'landlord': 1, 'cousins': 17, 'solicitude': 12, 'entreaties': 7, 'perseverance': 2, 'hour': 34, 'basket': 6, 'stuff': 2, 'fruit': 2, 'park': 30, 'newspaper': 5, 'message': 8, 'visit': 46, 'ladyship': 8, 'share': 15, 'frankness': 2, 'remark': 6, 'precaution': 2, 'extremity': 1, 'beauty': 20, 'questions': 5, 'party': 48, 'body': 51, 'dining': 9, 'projection': 1, 'hill': 7, 'hospitality': 1, 'gratification': 2, 'talent': 1, 'compass': 1, 'sportsman': 3, 'resources': 1, 'engagements': 14, 'deficiencies': 2, 'exercise': 5, 'breeding': 5, 'table': 30, 'arrangements': 3, 'vanity': 12, 'summer': 5, 'ham': 1, 'chicken': 1, 'doors': 3, 'winter': 7, 'balls': 3, 'appetite': 2, 'inhabitants': 2, 'friendliness': 2, 'past': 19, 'females': 1, 'sex': 7, 'sportsmen': 3, 'manor': 1, 'door': 37, 'friend': 54, 'smallness': 3, 'families': 3, 'morning': 85, 'hopes': 17, 'moonlight': 1, 'strangers': 5, 'jokes': 4, 'laughter': 3, 'dinner': 24, 'lovers': 3, 'husbands': 4, 'hearts': 1, 'attacks': 1, 'pain': 25, 'raillery': 6, 'bachelor': 3, 'companions': 6, 'insipidity': 4, 'gravity': 5, 'mirth': 2, 'clothes': 4, 'instrument': 7, 'chief': 5, 'songs': 1, 'position': 1, 'event': 25, 'song': 4, 'raptures': 5, 'compliment': 6, 'insensibility': 1, 'acuteness': 2, 'feeling': 11, 'colonel': 3, 'humanity': 3, 'jointure': 2, 'promotion': 1, 'ability': 3, 'weddings': 1, 'discovery': 7, 'attachments': 3, 'blushes': 1, 'listening': 2, 'connection': 21, 'latter': 1, 'incomprehensible': 1, 'absurdity': 4, 'impertinence': 5, 'ridicule': 3, 'accusation': 1, 'sensation': 2, 'wit': 6, 'infirmity': 2, 'Infirmity': 1, 'infirm': 1, 'use': 19, 'limbs': 2, 'rheumatism': 1, 'rate': 6, 'terror': 3, 'decay': 2, 'miracle': 1, 'forty': 1, 'matrimony': 1, 'chance': 20, 'nurse': 5, 'security': 6, 'compact': 1, 'convenience': 5, 'exchange': 5, 'confinement': 5, 'yesterday': 14, 'feel': 1, 'shoulders': 2, 'waistcoats': 1, 'flannel': 2, 'waistcoat': 2, 'aches': 3, 'cramps': 1, 'rheumatisms': 1, 'species': 2, 'ailment': 1, 'fever': 5, 'cheek': 2, 'eye': 18, 'pulse': 3, 'alarm': 17, 'fortnight': 12, 'indisposition': 7, 'contrary': 9, 'anxiety': 17, 'readiness': 7, 'grate': 1, 'bedchamber': 1, 'hurry': 5, 'meaning': 12, 'farewell': 6, 'distinction': 4, 'self': 29, 'command': 10, 'pursuits': 6, 'charms': 6, 'habit': 7, 'occupation': 1, 'amazement': 9, 'assurances': 10, 'wish': 22, 'walk': 7, 'walks': 6, 'mansion': 4, 'enquiry': 5, 'possessor': 1, 'air': 18, 'summits': 2, 'alternative': 1, 'dirt': 2, 'valleys': 1, 'beauties': 4, 'steps': 2, 'sunshine': 1, 'showery': 2, 'sky': 4, 'rain': 11, 'pencil': 1, 'book': 8, 'cloud': 1, 'glimpse': 2, 'faces': 1, 'gales': 1, 'south': 1, 'wind': 6, 'fears': 10, 'sensations': 3, 'clouds': 3, 'heads': 1, 'shelter': 2, 'exigence': 1, 'speed': 1, 'step': 1, 'ground': 8, 'bottom': 2, 'safety': 3, 'gun': 2, 'pointers': 1, 'yards': 3, 'accident': 5, 'foot': 2, 'fall': 1, 'modesty': 3, 'arms': 4, 'whither': 5, 'hold': 2, 'chair': 9, 'parlour': 10, 'wonder': 16, 'intrusion': 3, 'act': 4, 'influence': 14, 'youth': 7, 'action': 6, 'honour': 17, 'tomorrow': 15, 'midst': 2, 'gracefulness': 1, 'theme': 1, 'laugh': 6, 'gallantry': 1, 'confusion': 6, 'energy': 3, 'hero': 1, 'story': 10, 'formality': 3, 'rapidity': 4, 'thought': 19, 'dresses': 1, 'shooting': 1, 'jacket': 1, 'ankle': 1, 'interval': 4, 'news': 14, 'sort': 9, 'fellow': 10, 'shot': 1, 'bolder': 2, 'rider': 2, 'talents': 4, 'soul': 20, 'bitch': 1, 'pointer': 4, 'today': 9, 'colour': 11, 'shades': 1, 'tumbling': 2, 'care': 24, 'attempts': 2, 'employment': 12, 'Men': 1, 'hop': 1, "o'clock": 12, 'covert': 1, 'fatigue': 6, 'Aye': 4, 'aye': 5, 'cap': 3, 'phrase': 2, 'conquest': 3, 'tendency': 4, 'construction': 1, 'ingenuity': 1, 'reproof': 5, 'conquests': 2, 'spraining': 1, 'ankles': 1, 'preserver': 1, 'precision': 1, 'enquiries': 5, 'interview': 2, 'complexion': 9, 'features': 5, 'form': 8, 'height': 4, 'skin': 3, 'transparency': 1, 'embarrassment': 8, 'remembrance': 10, 'good': 11, 'vivacity': 2, 'dancing': 4, 'look': 27, 'stay': 4, 'amusement': 14, 'discussion': 4, 'conformity': 1, 'examination': 5, 'authors': 2, 'dwelt': 1, 'convert': 1, 'works': 2, 'passages': 1, 'force': 5, 'arguments': 4, 'brightness': 2, 'decisions': 1, 'enthusiasm': 2, 'familiarity': 4, 'importance': 14, 'despatch': 3, 'topic': 3, 'meeting': 18, 'scanty': 1, 'notion': 10, 'decorum': 2, 'roads': 1, 'reproach': 11, 'jest': 1, 'proof': 14, 'excuse': 7, 'reception': 6, 'recovery': 7, 'ardour': 2, 'example': 3, 'estimation': 4, 'propensity': 2, 'persons': 1, 'forms': 4, 'caution': 6, 'support': 6, 'desperation': 1, 'perfection': 2, 'speculative': 1, 'riches': 4, 'rival': 4, 'opposition': 12, 'hindrance': 2, 'oppression': 3, 'gloominess': 1, 'hints': 3, 'injuries': 2, 'disappointments': 3, 'belief': 7, 'compassion': 18, 'injustice': 5, 'indignity': 1, 'abuse': 2, 'amends': 6, 'censure': 5, 'defence': 2, 'protege': 2, 'thinking': 4, 'information': 17, 'climate': 1, 'mosquitoes': 1, 'observations': 5, 'nabobs': 1, 'mohrs': 1, 'palanquins': 1, 'candour': 2, 'coats': 1, 'brilliancy': 1, 'imperfections': 1, 'mass': 1, 'reason': 51, 'reasons': 6, 'fault': 5, 'hanging': 1, 'curricle': 4, 'mare': 1, 'return': 22, 'privilege': 5, 'invitations': 2, 'leisure': 12, 'schemes': 5, 'execution': 1, 'excellencies': 1, 'venture': 2, 'concealment': 5, 'disgrace': 5, 'restraint': 3, 'effort': 8, 'subjection': 2, 'illustration': 1, 'evenings': 2, 'cards': 8, 'partners': 1, 'dances': 1, 'display': 2, 'amusements': 2, 'talker': 1, 'history': 1, 'memory': 3, 'presence': 15, 'boys': 4, 'attentions': 8, 'conversing': 1, 'silence': 31, 'wives': 2, 'basis': 1, 'prejudices': 1, 'inconveniences': 4, 'ignorance': 12, 'systems': 1, 'nought': 1, 'pause': 16, 'saying,--': 1, 'objections': 7, 'inconstancy': 6, 'perverseness': 2, 'minutiae': 1, 'refinements': 1, 'experience': 3, 'series': 3, 'circumstances"--': 1, 'rise': 2, 'conjectures': 4, 'lips': 10, 'order': 2, 'testimony': 4, 'horse': 8, 'gift': 4, 'servant': 23, 'hesitation': 5, 'groom': 2, 'gallop': 1, 'dream': 1, 'truths': 1, 'affair': 28, 'trifle': 2, 'shed': 1, 'supposing': 2, 'creature': 14, 'impropriety': 5, 'Opposition': 1, 'appeal': 1, 'imprudent': 3, 'low': 1, 'yours': 12, 'sentence': 7, 'tempers': 1, 'light': 7, 'secret': 10, 'church': 7, 'neck': 4, 'miniature': 2, 'lock': 10, 'hair': 18, 'tea': 15, 'scissors': 3, 'paper': 7, 'pocket': 6, 'authority': 4, 'credit': 8, 'unison': 1, 'sagacity': 2, 'joke': 6, 'harm': 5, "ma'am": 27, 'curate': 1, 'profession': 11, 'invention': 1, 'interruption': 2, 'dislike': 6, 'piano': 5, '-': 8, 'forte': 5, 'endeavours': 2, 'proprietor': 1, 'orders': 13, 'grounds': 7, 'judge': 1, 'sail': 1, 'provisions': 1, 'carriages': 4, 'undertaking': 1, 'fortnight;--': 1, 'cold': 3, 'excursion': 4, 'sun': 3, 'humour': 9, 'hardships': 1, 'None': 1, 'town': 84, 'madam': 3, 'attendance': 4, 'admittance': 2, 'blow': 7, 'note': 14, 'trick': 1, 'guineas': 3, 'writing': 7, 'Careys': 1, 'purpose': 14, 'horseback': 3, 'leave': 7, 'complaints': 2, 'lamentations': 2, 'dear': 30, 'fear': 18, 'consultation': 1, 'drive': 3, 'lanes': 2, 'dance': 10, 'contentment': 3, 'pray?"--': 1, 'enquire': 1, 'method': 4, 'pleasanter': 1, 'pleasantness': 1, 'remarks': 5, 'and--': 1, 'hint': 7, 'corner': 3, 'sides': 9, 'bowling': 1, 'wood': 3, 'termination': 1, 'steadiness': 3, 'wonderer': 1, 'comings': 1, 'goings': 1, 'intermission': 3, 'distress': 24, 'determination': 4, 'bye': 1, 'wager': 1, 'setting': 2, 'bargain': 2, 'conjecture': 5, 'besides': 1, 'variety': 11, 'speculation': 1, 'poverty': 7, 'secrecy': 10, 'practice': 3, 'tenderness': 17, 'stone': 3, 'inch': 1, 'accounts': 5, 'dispose': 1, 'defect': 3, 'kitchen': 2, 'tone': 10, 'variation': 3, 'disadvantage': 2, 'staircase': 2, 'prescience': 1, 'hitherto': 4, 'apartment': 4, 'dimensions': 2, 'pretext': 1, 'foresight': 1, 'handkerchief': 4, 'mantel': 2, 'back': 3, 'Disappointment': 1, 'dispatches': 1, 'exhilaration': 1, 'shame': 6, 'myself"--': 1, 'minute': 10, 'speech': 10, 'solitude': 7, 'uneasiness': 9, 'distrust': 4, 'affectation': 3, 'unwillingness': 5, 'backwardness': 2, 'quarrel': 3, 'relief': 17, 'duty': 13, 'work': 13, 'here?"--': 1, 'trust': 6, 'disapproves': 1, 'confess': 1, 'cavil': 1, 'guilt': 6, 'apology': 10, 'inadvertence': 1, 'probabilities': 3, 'certainties': 1, 'possibility': 7, 'allowances': 2, 'deviation': 2, 'incautiousness': 1, 'syllable': 7, 'syllables': 2, 'actions': 9, 'looks': 10, 'confidence': 31, 'ONE': 1, 'carelessness': 2, 'doubts': 4, 'fainter': 1, 'concession': 1, 'altar': 2, 'inconsistency': 2, 'integrity': 5, 'cordiality': 5, 'affairs': 4, 'temptation': 5, 'avowal': 2, 'general': 1, 'foundation': 4, 'stranger': 1, 'liberty': 19, 'representations': 1, 'fortitude': 9, 'instant': 6, 'repose': 2, 'headache': 1, 'nourishment': 2, 'reverse': 4, 'voices': 2, 'oftenest': 1, 'line': 5, 'sadness': 2, 'crying': 1, 'melancholy': 1, 'meditations': 3, 'effusions': 2, 'explanations': 2, 'correspondence': 4, 'hands': 17, 'mystery': 1, 'inflict': 1, 'confession': 6, 'revealment': 1, 'denial': 3, 'delicacy': 10, 'witticisms': 1, 'hour;--': 1, 'volume': 1, 'Months': 1, 'reply': 9, 'expressive': 1, 'rambles': 2, 'exertions': 3, 'seclusion': 1, 'road': 8, 'MIND': 1, 'stretch': 1, 'scene': 5, 'coat': 2, 'particularity': 1, 'pace': 2, 'forgot': 3, 'continuation': 1, 'coldness': 5, 'deficiency': 4, 'month': 4, 'leaves': 2, 'transporting': 1, 'showers': 1, 'nuisance': 1, 'passion': 4, 'No': 3, 'reverie': 5, 'moments;--but': 1, 'tranquil': 4, 'equals': 1, 'left': 1, 'plantations': 2, 'grandeur': 2, 'bottoms': 1, 'lane': 2, 'conveniences': 2, 'resentment': 8, 'displeasure': 2, 'welcome': 4, 'indignant': 2, 'parents': 1, 'orator': 2, 'fame': 1, 'eloquence': 5, 'competence': 3, 'hunters': 3, 'Hunters': 1, 'Edward--"but': 1, 'animation': 4, 'cheeks': 2, 'insufficiency': 1, 'help': 3, 'booksellers': 1, 'sellers': 1, 'print': 3, 'shops': 2, 'commission': 3, 'greatness': 2, 'copy': 1, 'tree': 4, 'disputes': 1, 'cash': 1, 'collection': 1, 'bulk': 1, 'heirs': 1, 'reward': 7, 'maxim': 1, 'gaiety': 5, 'mistakes': 1, 'misapprehension': 4, 'grave': 3, 'deception': 2, 'judgments': 2, 'neighbours': 3, 'awkwardness': 1, 'gentility': 2, 'inattention': 4, 'hers': 3, 'inferiority': 2, 'thoughtfulness': 2, 'reservedness': 1, 'parts': 5, 'scenes': 4, 'picturesque': 2, 'surfaces': 1, 'medium': 1, 'atmosphere': 2, 'timber': 3, 'meadows': 1, 'farm': 3, 'utility': 1, 'rocks': 1, 'promontories': 1, 'brush': 1, 'pretensions': 2, 'discrimination': 1, 'landscape': 3, 'scenery': 1, 'jargon': 1, 'language': 9, 'trees': 4, 'cottages': 1, 'nettles': 1, 'thistles': 1, 'heath': 1, 'blossoms': 1, 'watch': 2, 'tower': 1, 'troop': 1, 'villages': 1, 'banditti': 1, 'ring': 6, 'plait': 1, 'fingers': 3, 'vexation': 4, 'glance': 5, 'shade': 2, 'conclusions': 1, 'theft': 1, 'contrivance': 1, 'affront': 1, 'henceforward': 1, 'absence': 10, 'forgiveness': 7, 'middle': 5, 'survey': 2, 'Ferrars': 10, 'newness': 1, 'instructions': 1, 'entertainment': 1, 'necessity': 18, 'yourselves': 3, 'Whitakers': 1, 'sure.--What': 1, 'nameless': 2, 'blushing': 1, 'suspicions': 5, 'expressions': 3, 'whisper': 6, 'guess': 1, 'archness': 1, 'mortification': 2, 'environs': 1, 'lie': 1, 'qualifications': 1, 'openness': 5, 'consistency': 1, 'designs': 5, 'shortness': 1, 'grievance': 1, 'parent': 5, 'renewal': 1, 'finger': 1, 'plans': 4, 'misfortune': 4, 'nicety': 2, 'army': 1, 'chambers': 1, 'circles': 1, 'gigs': 1, 'abstruse': 1, 'study': 3, 'navy': 1, 'fashion': 5, 'idleness': 2, 'solicitations': 1, 'professions': 4, 'accent': 2, 'effusion': 3, 'parting': 6, 'patience': 6, 'discontent': 3, 'subdue': 1, 'augment': 1, 'advancement': 2, 'ones': 1, 'mortifying': 1, 'meditation': 3, 'abundance': 1, 'engross': 1, 'closing': 1, 'ceremony': 7, 'turf': 1, 'casement': 1, 'space': 2, 'again"--': 1, 'prepossessing': 1, 'willingness': 2, 'meantime': 1, 'astonishment': 16, 'ceiling': 1, 'bow': 6, 'oftener': 1, 'Westons': 1, 'droll': 7, 'public': 2, 'devil': 4, 'billiard': 1, 'Gilberts': 1, 'whip': 1, 'cross': 1, 'insolence': 3, 'bias': 1, 'blunder': 1, 'treatment': 5, 'motive': 8, 'superiority': 2, 'delightful!--My': 1, 'sneer--"I': 1, 'election': 1, 'hardship': 2, 'obligation': 5, 'M.P.--But': 1, 'abuses': 1, 'languages': 1, 'stop': 2, 'confirmation': 2, 'neighbour': 2, 'talks': 2, 'street': 4, 'praises': 1, 'too.--': 1, 'handsomer': 1, 'school': 6, 'acting': 1, 'unsuitableness': 1, 'zeal': 2, 'relations': 16, 'elegance,--': 1, 'philosophy': 1, 'reprimand': 2, 'dress': 6, 'guests': 3, 'creatures': 3, 'coach': 4, 'playthings': 1, 'introduction': 3, 'admire': 1, 'smartness': 1, 'person.--': 1, 'whims': 1, 'patterns': 1, 'foibles': 1, 'beings': 1, 'endurance': 1, 'offspring': 3, 'complacency': 5, 'encroachments': 1, 'sashes': 1, 'ears': 4, 'bags': 1, 'knives': 1, 'monkey': 1, 'embraces': 1, 'pin': 1, 'pattern': 1, 'gentleness': 5, 'screams': 3, 'consternation': 1, 'emergency': 1, 'agonies': 2, 'sufferer': 1, 'lap': 2, 'kisses': 1, 'wound': 1, 'lavender': 2, 'knees': 3, 'mouth': 3, 'sugar': 1, 'plums': 1, 'brothers': 1, 'soothings': 1, 'temple': 3, 'remedy': 1, 'scratch': 1, 'quest': 2, 'medicine': 1, 'reality': 3, 'task': 3, 'lies': 1, 'eclat': 1, 'doat': 1, 'outside': 1, 'freedom': 3, "an't": 4, 'beaux': 3, 'lief': 1, 'beau': 10, 'clerk': 1, 'specimen': 2, 'artlessness': 1, 'proportion': 4, 'lot': 3, 'situations': 6, 'Twill': 1, 'luck': 3, 'drinking': 2, 'significancy': 1, 'nods': 1, 'winks': 1, 'F--': 1, 'alphabet': 1, 'inquisitiveness': 1, 'amendment': 7, 'assertions': 1, 'knowing': 1, 'toleration': 1, 'vulgarity': 1, 'advances': 1, 'communication': 11, 'agreeable': 1, 'powers': 3, 'aid': 3, 'endeavour': 3, 'neglect': 3, 'rectitude': 1, 'assiduities': 2, 'flatteries': 2, 'insincerity': 2, 'instruction': 2, 'equality': 1, 'shew': 2, 'deference': 2, 'valueless': 1, 'pray': 1, 'curiosity--': 1, 'heavens': 3, 'disbelief': 1, 'assertion': 8, 'incredulity': 1, 'fit': 3, 'swoon': 1, 'dependence': 7, 'date': 1, 'pupil': 1, 'pardon': 6, 'perplexity': 4, 'secret.--': 1, 'OCCASION': 1, 'suspecting': 3, 'painting': 2, 'falsehood': 4, 'likeness': 1, 'paces': 1, 'tongue': 2, 'suspense': 6, 'uncertainty': 2, 'veracity': 2, 'names': 2, 'sheet': 1, 'success': 8, 'separations': 1, 'editions': 1, 'Volume': 1, 'proofs': 4, 'dissatisfaction': 1, 'prospects': 4, 'evidence': 1, 'overcame': 1, 'indignation': 9, 'dupe': 1, 'considerations': 2, 'illusion': 1, 'softener': 1, 'miserable': 2, 'regain': 1, 'tranquillity': 4, 'infatuation': 1, 'defects': 2, 'supposition': 1, 'seeking': 1, 'unhappiness': 6, 'extinction': 1, 'obstacles': 1, 'perfections': 1, 'aggravation': 1, 'condemnation': 3, 'counsel': 4, 'firmness': 5, 'regrets': 5, 'agitation': 17, 'venturing': 1, 'weight': 5, 'disclosure': 1, 'honesty': 2, 'repetition': 5, 'chat': 3, 'eating': 2, 'consequences': 2, 'meetings': 2, 'charity': 2, 'dine': 1, 'club': 1, 'opening': 4, 'permission': 1, 'novelty': 1, 'impossibility': 4, 'card': 14, 'preparation': 5, 'candlelight': 1, 'morrow': 8, 'filigree': 1, 'angel': 3, 'supper': 4, 'eyes--': 1, 'bell': 2, 'candles': 1, 'alacrity': 2, 'spoilt': 1, 'rubber': 4, 'Ladyship': 1, 'papers': 3, 'labour': 1, 'proposals': 1, 'rivals': 1, 'harmony': 2, 'risk': 5, 'firm': 1, 'ice': 1, 'constancy': 5, 'test': 1, 'trial': 3, 'lowness': 1, 'extremity?--Is': 1, 'tediousness': 2, 'anger': 5, 'measures': 4, 'disinterestedness': 1, 'coxcomb': 3, 'ear': 6, 'music.--': 1, 'coxcombs': 1, 'finding': 1, 'lip': 1, 'protection': 3, 'concerto--': 1, 'scheme': 6, 'incumbent': 3, 'solemnity': 3, 'pique': 1, 'stress': 1, 'duration': 1, 'conclusion': 5, 'reluctance': 2, 'confidante': 1, 'conversations': 1, 'going': 1, 'celebration': 1, 'festival': 1, 'dinners': 2, 'portion': 2, 'habitation': 1, 'streets': 1, 'approach': 3, 'thither': 3, 'refusal': 1, 'chaise': 6, 'ways': 2, 'struggle': 3, 'cautiousness': 1, 'respecting': 1, 'bedrooms': 1, 'faults': 3, 'impediment': 1, 'sunk': 1, 'obstacle': 2, 'MY': 1, 'scruples': 1, 'unpleasantness': 2, 'guidance': 1, 'mercy': 2, 'abridgement': 1, 'sources': 2, 'shock': 5, 'attack': 3, 'dread': 7, 'acquisition': 3, 'unconcern': 3, 'perturbation': 1, 'impatience': 6, 'score': 1, 'station': 1, 'measure': 7, 'rapture': 2, 'cheerless': 2, 'animating': 1, 'events': 5, 'complaisance': 2, 'companionableness': 1, 'exclamation': 4, 'salmon': 1, 'fowls': 1, 'cutlets': 1, 'luxury': 2, 'mantelpiece': 1, 'silks': 1, 'W': 1, 'footman': 2, 'penny': 2, 'flutter': 2, 'sound': 4, 'rap': 4, 'neighbouring': 1, 'seconds': 1, 'ecstasy': 3, 'fatigues': 2, 'Cartwright': 1, 'bee': 1, 'secrets': 2, 'mildness': 3, 'purchases': 2, 'lay': 1, 'shop': 7, 'indecision': 2, 'parcels': 1, 'negative': 1, 'porter': 2, 'interference': 1, 'appearances': 2, 'whist': 2, 'no': 1, 'souls': 1, 'Frosts': 1, 'severity': 2, 'tonight': 3, 'privacy': 2, 'watchfulness': 2, 'frost': 3, 'variations': 1, 'muff': 1, 'afternoon': 3, 'symptoms': 2, 'city': 1, 'occurrence': 1, 'calling': 1, 'appointment': 4, 'ball': 1, 'reputation': 1, 'violins': 1, 'collation': 1, 'recognition': 1, 'bit': 1, 'health': 12, 'application': 4, 'plea': 1, 'disclosing': 1, 'expedient': 2, 'endeavouring': 2, 'attitude': 4, 'destination': 1, 'string': 1, 'landing': 2, 'tribute': 1, 'crowd': 3, 'heat': 1, 'chairs': 1, 'reach': 2, 'feature': 1, 'touch': 2, 'notes': 4, 'faint': 2, 'peace': 4, 'other.--': 1, 'exclamations': 1, 'consciousness': 12, 'misconduct': 4, 'investigation': 1, 'Absence': 1, 'pangs': 1, 'rupture': 2, 'seats': 2, 'flow': 2, 'sleep': 8, 'sobs': 2, 'ask-': 1, 'bursts': 1, 'intervals': 3, 'pen': 3, 'irritability': 1, 'meal': 1, 'working': 1, 'paleness': 1, 'sickness': 2, 'tremour': 1, 'lengths': 1, 'rug': 1, 'talk': 3, 'wedding': 1, 'report': 4, 'burst': 1, 'suffering': 4, 'acknowledgments': 3, 'commands': 1, 'release': 4, 'faith': 5, 'insult': 2, 'writer': 3, 'perusal': 1, 'disengagement': 1, 'escape': 3, 'evils': 2, 'deliverance': 3, 'contents': 4, 'depravity': 1, 'chariot': 2, 'floor': 2, 'food': 1, 'nights': 2, 'stomach': 1, 'faintness': 1, 'glass': 3, 'wine': 6, 'anguish': 2, 'torrent': 1, 'comforts': 4, 'period--': 1, 'hither': 1, 'justification': 3, 'covenant': 1, 'art': 2, 'supplication': 2, 'cruelty': 5, 'mama': 3, 'enemy': 1, 'triumph': 6, 'innocence': 2, 'pride': 7, 'malevolence': 1, 'mine--': 1, 'discerning': 1, 'posts': 1, 'clearing': 1, 'been?--how': 1, 'she?--Who': 1, 'acquaintance?--Oh': 1, 'To': 1, 'posture': 3, 'motionless': 1, 'dear?"--said': 1, 'Dashwood?--Poor': 1, 'dressing': 5, 'admirers': 1, 'cry': 1, 'tiptoe': 1, 'bustle': 3, 'abstraction': 1, 'civilities': 4, 'fondness': 1, 'holidays': 2, 'check': 1, 'sweetmeats': 1, 'olives': 1, 'sign': 2, 'cherries': 1, 'her--': 1, 'aunt': 1, 'pieces': 2, 'reform': 1, 'Ellisons': 1, 'guardians': 1, 'allusion': 1, 'tis': 1, 'cases': 3, 'hereafter': 1, 'enforcement': 1, 'hilarity': 1, 'saying': 1, 'debt': 2, 'drawback': 1, 'cost': 2, 'mulberry': 2, 'dove': 1, 'cote': 1, 'stew': 1, 'ponds': 1, 'canal': 2, 'quarter': 7, 'turnpike': 1, 'yew': 2, 'arbour': 1, 'butcher': 1, 'parsonage': 8, 'throw': 1, 'meat': 1, 'shoulder': 2, 'mutton': 1, 'remains': 2, 'compliance': 3, 'pillow': 1, 'gout': 2, 'compromise': 1, 'whispered--': 1, 'elucidation': 1, 'stationer': 1, 'preparations': 1, 'guardian': 2, 'sister--': 1, 'sufferings': 7, 'hardness': 1, 'bloom': 3, 'gossip': 2, 'refinement': 1, 'delicacies': 1, 'weakness': 4, 'impulse': 3, 'goodwill': 2, 'contrition': 2, 'page': 1, 'intreat': 1, 'directions': 1, 'nerves': 2, 'conscience': 13, 'error': 4, 'salutation': 2, 'comfort;--no': 1, 'telling': 1, 'narrator': 1, 'diffuse': 1, 'conversation--': 1, 'orphan': 1, 'infancy': 1, 'guardianship': 2, 'ages': 1, 'playfellows': 1, 'fervent': 1, 'treachery': 1, 'maid': 6, 'pleasures': 2, 'regiment': 1, 'divorce': 1, 'search': 1, 'seducer': 1, 'sin': 1, 'extravagance': 2, 'consequent': 1, 'stage': 2, 'consumption': 1, 'Life': 1, 'lodgings': 3, 'fate': 7, 'fates': 1, 'lead': 1, 'concise': 1, 'obstinate': 1, 'clue': 1, 'incivility': 2, 'gay': 2, 'smiles': 2, 'usage': 1, 'Concern': 1, 'afflictions': 1, 'recital': 2, 'endeavors': 1, 'unworthiness': 1, 'soldier': 1, 'lying': 1, 'delivery': 1, 'Recollecting': 1, 'vindication': 4, 'seduction': 1, 'desertion': 1, 'origin': 2, 'occupations': 1, 'negligence': 2, 'retirement': 2, 'alleviation': 1, 'sympathy': 4, 'carefulness': 1, 'scoundrel': 2, 'dog': 1, 'puppies': 1, 'coachmaker': 1, 'painter': 1, 'portrait': 1, 'warehouse': 1, 'circle': 2, 'qualification': 1, 'condolence': 1, 'vent': 1, 'dignity': 4, 'assemblies': 1, 'humiliations': 1, 'pitying': 1, 'honours': 1, 'receipt': 2, 'office': 6, 'degrees': 6, 'overpowering': 1, 'emphasis': 1, 'MONTH': 1, 'WORD': 1, 'exultation': 4, 'shillings': 2, 'Doctor': 4, 'cessation': 1, 'gown': 2, 'negotiation': 1, 'jewels': 1, 'counter': 1, 'correctness': 1, 'shape': 1, 'ornaments': 1, 'stares': 1, 'insignificance': 1, 'puppyism': 1, 'horrors': 2, 'inspection': 2, 'bedroom': 1, 'ivory': 1, 'gold': 1, 'pearls': 1, 'gloves': 1, 'conceit': 3, 'beasts': 1, 'seal': 1, 'particular': 3, 'pleasant': 1, 'pretence': 2, 'calm': 1, 'pitch': 1, 'encouragements': 1, 'whisper--"will': 1, 'PARTIES': 1, 'taking': 3, 'bank': 1, 'assent': 4, 'enclosure': 1, 'drain': 1, 'land': 5, 'stocks': 1, 'banker': 1, 'repine': 1, 'flower': 2, 'knoll': 1, 'walnut': 1, 'thorns': 1, 'patches': 1, 'brow': 2, 'provocation': 3, 'pair': 4, 'rings': 1, 'cheerfuller': 1, 'prosperity': 2, 'complaint': 5, 'likelihood': 2, 'compunction': 1, 'scruple': 5, 'selfishness': 7, 'demeanor': 1, 'deed': 2, 'detection': 1, 'hearing': 5, 'nieces': 1, 'apprehensions': 4, 'declare': 1, 'mother!"--': 1, 'envy': 2, 'aspect': 2, 'contraction': 2, 'graciousness': 3, 'show': 2, 'indigence': 2, 'appeared--': 1, 'disqualifications': 1, 'Want': 1, 'gentlemen': 5, 'politics': 1, 'coffee': 1, 'heights': 1, 'grandmothers': 1, 'descendant': 1, 'screens': 4, 'connoisseurship': 1, 'Ferrars--"very': 1, 'delightfully!--How': 1, 'this.--She': 1, 'her?--it': 1, 'retort': 1, 'philippic': 1, 'fright': 3, 'audacity': 1, 'horror': 4, 'arm': 2, 'salts': 1, 'author': 1, 'sister,--she': 1, 'meanness': 3, 'prejudice': 2, 'creation': 1, 'caprice': 1, 'affability': 2, 'hauteur': 1, 'on.--': 1, 'case"--': 1, 'Dashwood?--you': 1, 'me.--': 3, 'courtesy': 1, 're': 1, 'courage': 4, 'demure': 1, 'contribution': 1, 'witnesses': 1, 'relatives': 1, 'revenge': 2, 'sting': 1, 'wounding': 1, 'thirds': 1, 'auditors': 1, 'gone!--how': 1, 'newspapers': 1, 'heir': 1, 'paragraph': 2, 'reading': 3, 'flattery': 5, 'administer': 1, 'offering': 2, 'sacrifice': 3, 'conciliation': 1, 'jealousies': 2, 'discontents': 2, 'detail': 2, 'infants': 1, 'baby': 3, 'proposition': 1, 'imaginations': 1, 'misconstruction': 1, 'mode': 2, 'toilet': 1, 'price': 1, 'gowns': 1, 'washing': 1, 'scrutinies': 1, 'douceur': 1, 'shoes': 2, 'punctuality': 1, 'coachman': 1, 'performers': 2, 'harp': 1, 'glances': 1, 'group': 1, 'lecture': 1, 'stroke': 1, 'emptiness': 1, 'GAUCHERIE': 1, 'doing': 1, 'tuition': 1, 'accommodations': 1, 'tables': 1, 'library': 3, 'refreshments': 1, 'enfranchisement': 1, 'shews': 1, 'humility': 4, 'vigor': 1, 'favourites': 1, 'needless': 2, 'malice': 3, 'entry': 1, 'needle': 2, 'emigrant': 1, 'edtions': 1, 'habits': 3, 'hurrying': 1, 'fuss': 1, 'pimples': 1, 'gum': 1, 'short': 1, 'dear!--And': 1, 'possible?--': 1, 'conjurer': 1, 'carpet': 2, 'hysterics': 5, 'steward': 1, 'fury': 1, 'fainting': 1, 'uproar': 1, 'call': 3, 'making': 1, 'impartiality': 1, 'one.--She': 1, 'opinion,-and': 1, 'narration': 3, 'grief.--THAT': 1, 'hearer': 1, 'comforter': 1, 'distresses': 2, 'Willoughby': 1, 'mankind': 1, 'regularity': 1, 'alarms': 1, 'heart?--And': 1, 'happy!"--': 1, 'supported?"--': 1, 'duty.--My': 1, 'it;--': 2, 'him!"--': 1, 'him;--and': 2, 'once;--I': 1, 'connection.--Nothing': 1, 'unkindness': 2, 'punishment': 6, 'first.--': 1, 'ever.--How': 1, 'gratitude?--Is': 1, 'you?--Because': 1, 'caresses': 1, 'frame': 1, 'cordiality.--': 1, 'reparation': 1, 'admiration.--She': 1, 'spasm': 1, 'heroism': 1, 'storm': 1, 'constitution': 2, 'ingratitude': 2, 'benevolence': 3, 'prepossession': 2, 'avail': 1, 'tax': 1, 'penury': 1, 'obstinacy': 1, 'promises': 1, 'rascal': 3, 'apprehension': 2, 'threats': 1, 'sir': 4, 'taverns': 1, 'conditions': 1, 'lawyer': 1, 'vehemence': 2, 'critique': 1, 'offences': 1, 'torture': 1, 'penitence': 2, 'arm--"for': 1, 'rage': 1, 'bonnet': 1, 'hat': 2, 'feather': 1, 'ribbons': 1, 'reports': 1, 'curacy': 4, 'shift': 1, 'oath': 1, 'silk': 1, 'stockings': 2, 'bones': 1, 'closet': 2, 'chimney': 1, 'Edward': 1, '.': 1, 'huswifes': 1, 'bout': 1, 'by': 1, 'compliments': 3, 'preferment': 2, 'living!--ay': 1, "t'other": 1, 'troubles': 2, 'apologies': 1, 'trials': 1, 'persecutions': 1, 'comments': 1, 'heart.--She': 1, 'body!--Thank': 1, 'hostess': 1, 'Dashwood;--but': 1, 'concurrence': 1, 'statement': 1, 'Palmers;--and': 1, 'cats': 1, 'sketch': 2, 'ennui': 1, 'turning': 2, 'lesson': 1, 'badness': 1, 'etiquette': 1, 'motion': 1, 'ejaculation': 1, 'strange!--sure': 1, 'conference': 2, 'sang': 1, 'froid': 1, 'reply!--She': 1, 'suitor': 1, 'woman.--': 1, 'dividing': 1, 'nonsense': 1, 'valuable.--': 1, 'rectory': 2, 'annum': 1, 'indifferent;--an': 1, 'presentation': 3, 'patronage': 1, 'principal': 1, 'good;--at': 1, 'misunderstood': 1, 'Opportunity': 1, 'it?--': 1, 'relative': 1, 'ordination': 2, 'write': 1, 'himself?--sure': 1, 'beginning': 5, 'goodby': 1, 'housemaid': 1, 'band': 1, 'embarrassment.--Whether': 1, 'communicating': 1, 'breathing': 1, 'living!--Can': 1, 'discernment': 1, 'solicitation': 1, 'benefactress': 1, 'respectability': 1, 'lodges': 1, 'anticipation': 1, 'right?--And': 1, 'ready?--For': 1, 'dear!--Sure': 1, 'ebullition': 1, 'beds!--': 1, 'ninny': 1, 'Buildings': 2, 'congratulations': 2, 'saint': 2, 'tithes': 2, 'utmost': 4, 'cows': 2, 'poultry': 2, 'tete': 2, 'room.--Nobody': 1, 'favourites.--Why': 1, 'livings': 1, 'price!--what': 1, 'concern!--Well': 1, 'man.--You': 1, 'all?--She': 1, 'reasoning': 1, 'intents': 1, 'purposes': 1, 'son;--and': 1, 'silent.--His': 1, 'whisper,--"I': 1, 'division': 1, 'clergyman': 1, 'imagery': 1, 'prayers': 1, 'surplice': 1, 'banns': 1, 'acquaintance.--Poor': 1, 'fellow!--to': 1, 'kingdom': 1, 'them;--an': 1, 'accents': 1, 'intercourse': 1, 'promptitude': 1, 'homes': 1, 'persecution': 1, 'tranquility': 1, 'turns': 3, 'forenoon': 2, 'lawn': 2, 'shrubbery': 2, 'gravel': 3, 'winding': 1, 'plantation': 1, 'fir': 1, 'mountain': 1, 'ash': 1, 'screen': 1, 'poplars': 1, 'shrubberies': 2, 'eminence': 1, 'tract': 1, 'ridge': 1, 'horizon': 1, 'circuit': 1, 'premises': 1, 'gardener': 1, 'blights': 1, 'plants': 1, 'Charlotte,--and': 1, 'yard': 1, 'dairy': 1, 'hens': 1, 'nests': 1, 'fox': 1, 'decrease': 1, 'brood': 1, 'merriment': 1, 'twilight': 2, 'knack': 1, 'heartiness': 1, 'evident': 1, 'enlargement': 1, 'aptitude': 1, 'traits': 1, 'mornings': 1, 'billiards': 1, 'confidant': 1, 'suggestion': 1, 'observer': 1, 'two;--she': 1, 'throat': 2, 'wildness': 2, 'grass': 1, 'ailments': 1, 'Prescriptions': 1, 'quarters': 2, 'cough': 1, 'remedies': 1, 'sofa': 1, 'medicines': 2, 'efficacy': 1, 'apothecary': 3, 'patient': 6, 'disorder': 1, 'infection': 2, 'infant': 1, 'importunity': 1, 'nursing': 1, 'languid': 1, 'lamentation': 1, 'piquet': 1, 'demur': 1, 'emergence': 1, 'owners': 1, 'seizure': 1, 'forebodings': 2, 'admission': 1, 'anticipations': 1, 'cordials': 1, 'slumber': 2, 'nurses': 1, 'sounds': 1, 'coming?--': 1, 'messenger': 2, 'resistance': 2, 'brief': 1, 'mother,--how': 1, 'summons': 1, 'sleepless': 1, 'delirium': 1, 'pang': 3, 'darling': 2, 'attendant': 1, 'reproaches': 1, 'her;--and': 1, 'stupor': 1, 'noon': 2, 'image': 1, 'reasonableness': 1, 'revival': 1, 'continuance;--': 1, 'injunction': 2, 'Others': 1, 'breath': 2, 'signs': 1, 'gaze': 1, 'Anxiety': 1, 'felicitations': 1, 'doting': 1, 'demonstrations': 1, 'breast': 1, 'succour': 1, 'relapse': 1, 'was--': 1, 'sink': 1, 'pity!--Oh!--how': 1, 'progress': 3, 'much;--': 1, 'refreshment': 1, 'content': 1, 'capability': 1, 'blast': 1, 'travellers--': 1, 'store': 1, 'clock': 1, 'shutter': 1, 'lamps': 1, 'stopt': 1, 'door--': 1, 'vestibule': 1, 'lobby': 2, 'room,--she': 1, 'minutes--': 1, 'dispatch': 1, 'Pray': 1, 'abruptness': 1, 'afterwards--"is': 1, 'mood': 1, 'gaiety.--': 1, 'glow': 1, 'knave': 1, 'fool': 3, 'strangeness': 1, 'longer.--': 1, 'pint': 1, 'beef': 1, 'nuncheon': 1, 'intoxication': 1, 'energy--"if': 1, 'blockhead': 1, 'she?"--he': 1, 'grounds.--NOW': 1, 'own,--"how': 1, 'debts': 1, 'of;--and': 1, 'injury': 3, 'avarice?--or': 1, 'hers?--': 1, 'withstood': 1, 'addresses': 1, 'circumspection': 1, 'interim': 2, 'libertine': 2, 'passions': 1, 'wanton': 1, 'purity': 1, 'morality': 2, 'morning--': 1, 'breaking': 1, 'debate': 1, 'magnanimity': 1, 'reliance': 1, 'me!--Oh': 1, 'grudge': 1, 'town?--': 1, 'emotion--': 1, 'painful.--Every': 1, 'metaphor': 1, 'dagger': 1, 'thunderbolt.--Thunderbolts': 1, 'changes': 1, 'remorse': 1, 'dissipation': 2, 'villain': 2, 'idle': 1, "'--": 1, 'retreat': 1, 'evening.--Had': 1, 'inducement': 2, 'artless': 1, 'confiding': 1, 'evening!--I': 1, 'horrid': 2, 'hue': 1, 'haste': 2, 'playfulness': 1, 'impudence': 1, 'writing?--delicate': 1, 'wife!--The': 1, 'sentences': 2, 'original': 1, 'diction': 1, 'bluster': 1, 'importance.--': 1, 'reasonings': 1, 'relics': 1, 'pocketbook': 1, 'memento': 1, 'atonement': 3, 'sigh.--': 1, 'compassion.--She': 1, 'Dashwood?--or': 1, 'purpose?--': 1, 'before?--My': 1, 'dearer': 2, 'projects': 1, 'thing--': 1, 'Extravagance': 1, 'said--': 1, 'thence': 3, 'guard': 1, 'replied--"once': 1, 'bye,--God': 1, 'commiseration': 1, 'think': 1, 'attraction': 3, 'carriage.--Eager': 1, 'hall': 1, 'sharing': 1, 'bliss': 1, 'robbing': 1, 'stake': 1, 'irritation': 1, 'widower': 1, 'errand': 3, 'temperate': 1, 'exuberance': 1, 'child;--he': 1, 'embellishments': 1, 'man!--and': 1, 'hope!--could': 1, 'mind!--': 1, 'warning': 1, 'Willoughby.--': 1, 'diffident': 1, 'countenance.--': 1, 'something,--if': 1, 'accordant': 1, 'liveliness': 1, 'dissent': 1, 'village,--indeed': 1, 'too!--for': 1, 'slow': 1, 'varying': 1, 'recurrence': 1, 'bidding': 1, 'travellers': 1, 'dullness': 1, 'field': 1, 'blame': 1, 'unobtrusiveness': 1, 'opera': 1, 'duets': 1, 'keys': 1, 'feebleness': 2, 'abatement': 1, 'edge': 1, 'down': 1, 'ruins': 1, 'foundations': 1, 'production': 1, 'extreme': 1, 'indolence': 1, 'repining': 1, 'control': 1, 'spot!--shall': 1, 'Elinor?"--': 1, 'girl"--': 1, 'to"--': 1, 'health;--': 1, 'conduct.--Do': 1, 'autumn': 2, 'destruction': 1, 'recovery,--wonder': 1, 'sister!--You': 1, 'murmurings': 1, 'heart!--How': 1, 'her!--I': 1, 'due': 1, 'avail?--Was': 1, 'restraints': 1, 'incitement': 1, 'religion': 1, 'listener': 1, 'repentance': 2, 'protestations': 1, 'word.--She': 1, 'minuteness': 1, 'kiss': 1, 'interests': 1, 'facts': 1, 'embellishment': 1, 'astray': 1, 'before--"I': 1, 'man!--Her': 1, 'expensiveness': 1, 'inexperience': 1, 'economy': 1, 'frugality': 2, 'management': 1, 'ruin': 1, 'marriage?--': 1, 'enjoyments': 1, 'pecuniary': 1, 'crime': 3, 'enumeration': 1, 'studies': 1, 'prosecution': 1, 'tidings': 2, 'communication--': 1, 'start': 1, 'pale': 1, 'howsever': 1, 'tablecloth': 1, 'appetites': 1, 'meals': 1, 'dessert': 1, 'similarity': 1, 'representation': 2, 'slighter': 1, 'Elinor;--': 1, 'mediation': 2, 'manager': 1, 'practices;--': 1, 'slight': 1, 'utterance': 1, 'footsteps': 1, 'path': 1, 'conforming': 1, 'dryness': 1, 'sheath': 1, 'lessening': 1, 'failure': 1, 'entanglement': 1, 'weaknesses': 1, 'errors': 1, 'world--': 1, 'university': 1, 'comparisons': 2, 'minds': 1, 'Comparisons': 1, 'justifying': 1, 'sedateness': 1, 'week;--for': 1, 'future;--for': 1, 'labor': 1, 'talking': 1, 'discussions': 1, 'puzzle': 1, 'followed;--and': 1, 'wisher': 1, 'scrawls': 1, 'comment': 1, 'composition': 1, 'worlds': 1, 'days.--In': 1, 'pages': 1, 'substance': 1, 'pause,--"they': 1, 'favourite.--She': 1, 'jealousy': 1, 'deserts': 1, 'flourish': 1, 'opinions--': 1, 'disquiet': 1, 'option': 1, 'avarice': 1, 'relent': 1, 'FAITH': 1, 'expediency': 1, 'these:--The': 1, 'glebe': 1, 'residue': 1, 'chusing': 1, 'comer': 1, 'disproportion': 1, 'rumour': 1, 'nerve': 1, 'thrill': 1, 'transport': 1, 'tale': 1, 'jilting': 1, 'pour': 1, 'hussy': 1, 'crossness': 1, 'strains': 1, 'offending': 1, 'submission': 5, 'reconciliation': 2, 'penitent': 1, 'concessions': 1, 'patron': 1, 'incurring': 1, 'annihilation': 2, 'resuscitation': 1, 'publication': 1, 'power;--told': 1, 'nobleman': 1, 'decree': 1, 'shuffling': 1, 'excuses': 1, 'wants': 1, 'completion': 1, 'delays': 1, 'dilatoriness': 1, 'workmen': 1, 'project': 1, 'sweep': 1, 'prophecies': 1, 'Parsonage': 1, 'couples': 1, 'pasturage': 1, 'gates': 1, 'woods!--I': 1, 'make': 1, 'believe': 1, 'cunning': 1, 'scrape': 1, 'interviews': 1, 'acquaintances': 1, 'instigation': 1, 'messages': 1, 'birth': 1, 'intruder': 1, 'disagreements': 1, 'policy': 1, 'frequency': 1, 'obligations': 1, 'confederacy': 1, 'maxims': 1, 'safeguard': 1, 'patroness': 1, 'halves': 1, 'clemency': 1, 'gloom': 1, 'breed': 1, 'dogs': 1, 'sporting': 1, 'standard': 1, 'disagreement': 1}
noun_counts = pos_spacy_counts("NOUN", spacy_raw)
print(noun_counts[1])
{'Sense': 5.754071005236205e-05, 'CHAPTER': 0.002704413372461016, 'family': 0.004718338224293688, 'estate': 0.001093273490994879, 'residence': 0.0004027849703665343, 'centre': 0.0001150814201047241, 'property': 0.0005178663904712584, 'generations': 5.754071005236205e-05, 'manner': 0.0032222797629322744, 'opinion': 0.0035099833131940848, 'acquaintance': 0.0035675240232464467, 'owner': 0.0001150814201047241, 'man': 0.006732263076126359, 'age': 0.001093273490994879, 'years': 0.00281949479256574, 'life': 0.003279820472984637, 'companion': 0.001093273490994879, 'housekeeper': 0.00028770355026181023, 'sister': 0.015996317394556647, 'death': 0.0006329478105759826, 'alteration': 0.0008631106507854307, 'home': 0.0030496576327751885, 'loss': 0.001150814201047241, 'house': 0.008918810058116117, 'nephew': 0.0001150814201047241, 'inheritor': 5.754071005236205e-05, 'person': 0.003855227573508257, 'society': 0.001323436331204327, 'niece': 0.00017262213015708613, 'children': 0.0018988434317279475, 'days': 0.00253179124230393, 'attachment': 0.0019563841417803095, 'attention': 0.0032222797629322744, 'wishes': 0.0015535991714137752, 'interest': 0.00253179124230393, 'goodness': 0.0004603256804188964, 'heart': 0.0070199666263881695, 'degree': 0.0008055699407330686, 'comfort': 0.003394901893089361, 'cheerfulness': 0.0009206513608377928, 'relish': 5.754071005236205e-05, 'existence': 0.0004603256804188964, 'marriage': 0.002474250532251568, 'son': 0.0018988434317279475, 'lady': 0.002474250532251568, 'daughters': 0.0015535991714137752, 'fortune': 0.002129006271937396, 'mother': 0.014672881063352322, 'half': 0.0006904885206283445, 'coming': 0.00028770355026181023, 'wealth': 0.0004027849703665343, 'succession': 0.00017262213015708613, 'sisters': 0.002761954082513378, 'father': 0.0017262213015708614, 'pounds': 0.002359169112146844, 'disposal': 0.00028770355026181023, 'moiety': 5.754071005236205e-05, 'wife': 0.002704413372461016, 'child': 0.002301628402094482, 'gentleman': 0.0016111398814661372, 'will': 0.0008055699407330686, 'disappointment': 0.001265895621151965, 'pleasure': 0.003855227573508257, 'terms': 0.0006904885206283445, 'value': 0.00034524426031417227, 'bequest': 5.754071005236205e-05, 'sake': 0.0018988434317279475, 'son;--but': 5.754071005236205e-05, 'way': 0.004200471833822429, 'power': 0.00253179124230393, 'provision': 0.0002301628402094482, 'charge': 0.0005178663904712584, 'sale': 5.754071005236205e-05, 'woods': 0.0002301628402094482, 'whole': 0.0016111398814661372, 'benefit': 0.00017262213015708613, 'visits': 0.0002301628402094482, 'affections': 0.0006904885206283445, 'uncle': 0.0009781920708901548, 'attractions': 0.00028770355026181023, 'means': 0.0018988434317279475, 'articulation': 5.754071005236205e-05, 'desire': 0.001150814201047241, 'tricks': 0.0002301628402094482, 'deal': 0.0018988434317279475, 'noise': 0.0004027849703665343, 'mark': 0.00034524426031417227, 'affection': 0.00448817538408424, 'girls': 0.0009206513608377928, 'piece': 0.0006329478105759826, 'temper': 0.001208354911099603, 'sum': 0.0005754071005236205, 'produce': 5.754071005236205e-05, 'improvement': 0.0004603256804188964, 'twelvemonth': 0.0005178663904712584, 'legacies': 5.754071005236205e-05, 'widow': 0.00028770355026181023, 'danger': 0.001265895621151965, 'strength': 0.0004603256804188964, 'urgency': 5.754071005236205e-05, 'illness': 0.0006904885206283445, 'law': 0.0018413027216755856, 'feelings': 0.004142931123770067, 'rest': 0.0029345762126704645, 'recommendation': 0.0002301628402094482, 'nature': 0.0017837620116232234, 'time': 0.013579607572357443, 'thing': 0.010529949939582254, 'assurance': 0.0008055699407330686, 'propriety': 0.0008055699407330686, 'discharge': 0.0001150814201047241, 'duties': 0.0002301628402094482, 'woman': 0.003682605443351171, 'caricature': 5.754071005236205e-05, 'promise': 0.001208354911099603, 'fortunes': 0.00017262213015708613, 'present': 0.001323436331204327, 'prospect': 0.0008631106507854307, 'year': 0.0031071983428275505, 'addition': 0.0004027849703665343, 'income': 0.001323436331204327, 'inconvenience': 0.0006904885206283445, '"--': 0.0005754071005236205, 'day': 0.008516025087749584, 'funeral': 5.754071005236205e-05, 'notice': 0.001380977041256689, 'intention': 0.00034524426031417227, 'attendants': 0.0001150814201047241, 'one': 0.0035675240232464467, 'right': 0.0006904885206283445, 'husband': 0.002474250532251568, 'moment': 0.005581448875079119, 'decease': 5.754071005236205e-05, 'indelicacy': 5.754071005236205e-05, 'conduct': 0.0019563841417803095, 'situation': 0.0031071983428275505, 'mind': 0.005293745324817308, 'sense': 0.0017262213015708614, 'honor': 0.0001150814201047241, 'generosity': 0.00028770355026181023, 'offence': 0.0007480292306807066, 'kind': 0.004603256804188964, 'whomsoever': 5.754071005236205e-05, 'source': 0.0004027849703665343, 'disgust': 0.0001150814201047241, 'favourite': 0.0002301628402094482, 'opportunity': 0.0016111398814661372, 'people': 0.0031071983428275505, 'occasion': 0.001438517751309051, 'behaviour': 0.0035675240232464467, 'daughter': 0.002646872662408654, 'arrival': 0.0020139248518326715, 'entreaty': 0.00028770355026181023, 'girl': 0.0020139248518326715, 'tender': 0.00034524426031417227, 'love': 0.002877035502618102, 'sakes': 0.0001150814201047241, 'breach': 0.00028770355026181023, 'brother': 0.00477587893434605, 'advice': 0.0005754071005236205, 'understanding': 0.0008631106507854307, 'coolness': 0.00017262213015708613, 'judgment': 0.0017262213015708614, 'counsellor': 5.754071005236205e-05, 'advantage': 0.001323436331204327, 'eagerness': 0.0006329478105759826, 'disposition': 0.001208354911099603, 'knowledge': 0.0016111398814661372, 'abilities': 0.0005178663904712584, 'respects': 0.00017262213015708613, 'sorrows': 0.00034524426031417227, 'joys': 5.754071005236205e-05, 'moderation': 0.0001150814201047241, 'resemblance': 0.0006904885206283445, 'concern': 0.001438517751309051, 'excess': 0.0004603256804188964, 'sensibility': 0.0005178663904712584, 'violence': 0.0002301628402094482, 'affliction': 0.0008631106507854307, 'agony': 0.0004603256804188964, 'grief': 0.0006329478105759826, 'sorrow': 0.0006329478105759826, 'increase': 0.0005178663904712584, 'wretchedness': 0.00028770355026181023, 'reflection': 0.0006904885206283445, 'consolation': 0.0007480292306807066, 'future': 0.0006329478105759826, 'exertion': 0.001150814201047241, 'forbearance': 0.0002301628402094482, 'romance': 5.754071005236205e-05, 'period': 0.00034524426031417227, 'mistress': 0.0006904885206283445, 'condition': 0.0005178663904712584, 'visitors': 0.0005754071005236205, 'civility': 0.0008631106507854307, 'kindness': 0.002416709822199206, 'earnestness': 0.0004603256804188964, 'plan': 0.001208354911099603, 'neighbourhood': 0.0005754071005236205, 'invitation': 0.0018413027216755856, 'continuance': 0.0004603256804188964, 'place': 0.004718338224293688, 'delight': 0.001323436331204327, 'seasons': 5.754071005236205e-05, 'expectation': 0.0014960584613614132, 'happiness': 0.003682605443351171, 'fancy': 0.001093273490994879, 'alloy': 5.754071005236205e-05, 'boy': 0.00028770355026181023, 'subject': 0.003855227573508257, 'claim': 0.0002301628402094482, 'blood': 5.754071005236205e-05, 'relationship': 0.0001150814201047241, 'amount': 0.0002301628402094482, 'marriages': 0.0001150814201047241, 'money': 0.0014960584613614132, 'request': 0.0005178663904712584, 'senses': 0.0002301628402094482, 'Fanny': 0.0001150814201047241, 'difference': 0.001093273490994879, 'instance': 0.0004027849703665343, 'parties': 0.0009206513608377928, 'earth': 0.00028770355026181023, 'blood!--But': 5.754071005236205e-05, 'spirit': 0.0009206513608377928, 'occasions': 0.00017262213015708613, 'expectations': 0.00028770355026181023, 'question': 0.001380977041256689, 'mine': 0.00028770355026181023, 'annuity': 0.0002301628402094482, 'mean.--My': 5.754071005236205e-05, 'effects': 0.0004027849703665343, 'consent': 0.0005754071005236205, 'purchase': 0.0002301628402094482, 'business': 0.002589331952356292, 'trouble': 0.0005178663904712584, 'annuities': 0.0002301628402094482, 'payment': 0.00017262213015708613, 'servants': 0.0005178663904712584, 'claims': 0.00028770355026181023, 'restriction': 5.754071005236205e-05, 'abhorrence': 0.0002301628402094482, 'world': 0.005121123194660222, 'drains': 5.754071005236205e-05, 'rent': 0.00017262213015708613, 'independence': 0.0004027849703665343, 'thanks': 0.00034524426031417227, 'gratitude': 0.0008631106507854307, 'discretion': 0.00034524426031417227, 'expenses': 0.0004027849703665343, 'case': 0.0020139248518326715, 'assistance': 0.0008055699407330686, 'allowance': 0.0002301628402094482, 'style': 0.0010357327809425167, 'living': 0.0014960584613614132, 'sixpence': 5.754071005236205e-05, 'end': 0.002646872662408654, 'truth': 0.0014960584613614132, 'idea': 0.001380977041256689, 'things': 0.001265895621151965, 'presents': 5.754071005236205e-05, 'fish': 5.754071005236205e-05, 'game': 0.00034524426031417227, 'season': 0.00028770355026181023, 'course': 0.0016686805915184994, 'board': 0.0002301628402094482, 'women': 0.0005754071005236205, 'housekeeping': 0.0001150814201047241, 'carriage': 0.002301628402094482, 'horses': 0.0007480292306807066, 'company': 0.0016686805915184994, 'word': 0.002646872662408654, 'engagement': 0.0035675240232464467, 'acts': 5.754071005236205e-05, 'services': 0.0001150814201047241, 'furniture': 0.0005178663904712584, 'plate': 0.00017262213015708613, 'linen': 0.0001150814201047241, 'consideration': 0.0006904885206283445, 'legacy': 0.0001150814201047241, 'stock': 5.754071005236205e-05, 'set': 5.754071005236205e-05, 'breakfast': 0.0010357327809425167, 'argument': 0.00017262213015708613, 'intentions': 0.0005178663904712584, 'decision': 0.0002301628402094482, 'months': 0.0018988434317279475, 'disinclination': 0.0001150814201047241, 'sight': 0.0009781920708901548, 'spot': 0.0004027849703665343, 'emotion': 0.001150814201047241, 'while': 0.0006904885206283445, 'spirits': 0.0039703089936129815, 'remembrances': 5.754071005236205e-05, 'inquiries': 0.0006329478105759826, 'dwelling': 0.00028770355026181023, 'notions': 0.00017262213015708613, 'ease': 0.0009781920708901548, 'prudence': 0.0004603256804188964, 'houses': 0.00028770355026181023, 'part': 0.002646872662408654, 'favour': 0.001438517751309051, 'reflections': 0.0004027849703665343, 'sincerity': 0.0004027849703665343, 'satisfaction': 0.002129006271937396, 'affluence': 0.00017262213015708613, 'merit': 0.0006904885206283445, 'welfare': 0.0002301628402094482, 'liberality': 0.00034524426031417227, 'contempt': 0.00034524426031417227, 'character': 0.0018988434317279475, 'spite': 0.0020139248518326715, 'politeness': 0.0008055699407330686, 'side': 0.0032222797629322744, 'ladies': 0.0018988434317279475, 'circumstance': 0.001093273490994879, 'eligibility': 0.0001150814201047241, 'opinions': 0.0008631106507854307, 'establishment': 0.0004027849703665343, 'mothers': 0.00017262213015708613, 'intimacy': 0.0005754071005236205, 'motives': 0.00034524426031417227, 'trifling': 0.0002301628402094482, 'partiality': 0.0005754071005236205, 'doctrine': 0.00017262213015708613, 'couple': 0.0006904885206283445, 'comprehension': 0.0002301628402094482, 'graces': 0.0001150814201047241, 'address': 0.0010357327809425167, 'manners': 0.0019563841417803095, 'justice': 0.0008055699407330686, 'shyness': 0.00017262213015708613, 'indication': 0.0001150814201047241, 'education': 0.0005754071005236205, 'figure': 0.0004603256804188964, 'concerns': 0.0004603256804188964, 'parliament': 5.754071005236205e-05, 'men': 0.001265895621151965, 'blessings': 0.0001150814201047241, 'ambition': 0.0001150814201047241, 'barouche': 0.0001150814201047241, 'turn': 0.00034524426031417227, 'barouches': 5.754071005236205e-05, 'weeks': 0.001323436331204327, 'careless': 0.0001150814201047241, 'objects': 0.0005754071005236205, 'conversation': 0.002186546981989758, 'contrast': 0.00017262213015708613, 'smile': 0.0009781920708901548, 'sentiment': 0.0002301628402094482, 'approbation': 0.0007480292306807066, 'esteem': 0.0007480292306807066, 'pains': 0.0002301628402094482, 'reserve': 0.0004027849703665343, 'merits': 0.0005178663904712584, 'persuasion': 0.0007480292306807066, 'regard': 0.00253179124230393, 'penetration': 0.00017262213015708613, 'worth': 0.00028770355026181023, 'quietness': 0.0001150814201047241, 'ideas': 0.0006329478105759826, 'affectionate': 5.754071005236205e-05, 'symptom': 0.00028770355026181023, 'Elinor': 0.0006329478105759826, 'probability': 0.0006904885206283445, 'separation': 0.0005178663904712584, 'miles': 0.0005754071005236205, 'lives': 0.0002301628402094482, 'choice': 0.0005754071005236205, 'surprise': 0.0019563841417803095, 'none': 0.0010357327809425167, 'grace': 0.0001150814201047241, 'eyes': 0.0031647390528799124, 'fire': 0.0008631106507854307, 'virtue': 0.0001150814201047241, 'intelligence': 0.0009781920708901548, 'taste': 0.001380977041256689, 'drawings': 0.0002301628402094482, 'admiration': 0.001150814201047241, 'fact': 0.0006904885206283445, 'matter': 0.002646872662408654, 'lover': 0.0005754071005236205, 'connoisseur': 5.754071005236205e-05, 'characters': 0.0002301628402094482, 'point': 0.0020714655618850335, 'coincide': 5.754071005236205e-05, 'books': 0.0005178663904712584, 'music': 0.0009781920708901548, 'tame': 5.754071005236205e-05, 'night': 0.0020139248518326715, 'composure': 0.0009781920708901548, 'seat': 0.0004603256804188964, 'lines': 0.00017262213015708613, 'calmness': 0.0008631106507854307, 'indifference!"--': 5.754071005236205e-05, 'prose': 5.754071005236205e-05, 'Cowper!--': 5.754071005236205e-05, 'virtues': 5.754071005236205e-05, 'charm': 0.0001150814201047241, 'despair': 0.00017262213015708613, 'destiny': 5.754071005236205e-05, 'pity': 0.0006329478105759826, 'drawing': 0.001265895621151965, 'performances': 0.0001150814201047241, 'opportunities': 0.0001150814201047241, 'learning': 5.754071005236205e-05, 'matters': 0.0005178663904712584, 'picture': 0.0005754071005236205, 'simplicity': 0.0002301628402094482, 'mistake': 0.0005178663904712584, 'account': 0.0020139248518326715, 'length': 0.0006904885206283445, 'praise': 0.0009781920708901548, 'minuter': 0.0001150814201047241, 'propensities': 0.0001150814201047241, 'inclinations': 0.0001150814201047241, 'tastes': 5.754071005236205e-05, 'friends': 0.0035675240232464467, 'commendation': 0.0004603256804188964, 'doubt': 0.0016686805915184994, 'excellence': 0.0001150814201047241, 'principles': 0.00034524426031417227, 'circumstances': 0.0016111398814661372, 'times': 0.001150814201047241, 'principle': 0.00028770355026181023, 'sentiments': 0.0005754071005236205, 'subjects': 0.0002301628402094482, 'literature': 5.754071005236205e-05, 'enjoyment': 0.001093273490994879, 'imagination': 0.0006904885206283445, 'observation': 0.0009206513608377928, 'respect': 0.001208354911099603, 'expression': 0.0007480292306807066, 'sweetness': 0.0002301628402094482, 'countenance': 0.0015535991714137752, 'imperfection': 5.754071005236205e-05, 'face': 0.001323436331204327, 'declaration': 0.00028770355026181023, 'warmth': 0.0009781920708901548, 'certainty': 0.00017262213015708613, 'conviction': 0.001208354911099603, 'state': 0.001438517751309051, 'words': 0.0015535991714137752, 'room': 0.006674722366073998, 'suspicion': 0.0008631106507854307, 'hope': 0.001150814201047241, 'imprudence': 0.0005754071005236205, 'folly': 0.0008055699407330686, 'moments': 0.0009781920708901548, 'extent': 0.00034524426031417227, 'wishing': 5.754071005236205e-05, 'encouragement': 0.0008055699407330686, 'preference': 0.0004027849703665343, 'points': 0.00034524426031417227, 'inclination': 0.0009781920708901548, 'mention': 0.0002301628402094482, 'difficulties': 0.0009781920708901548, 'rank': 0.0001150814201047241, 'advantages': 0.0001150814201047241, 'delay': 0.0006904885206283445, 'pursuit': 0.0002301628402094482, 'felicity': 0.0002301628402094482, 'genius': 0.0002301628402094482, 'want': 0.001323436331204327, 'indifference': 0.0010357327809425167, 'dejection': 0.00017262213015708613, 'cause': 0.0007480292306807066, 'indulgence': 0.0002301628402094482, 'views': 0.00034524426031417227, 'aggrandizement': 5.754071005236205e-05, 'result': 0.0004603256804188964, 'doubtful': 5.754071005236205e-05, 'minutes': 0.002646872662408654, 'friendship': 0.001150814201047241, 'limits': 0.0001150814201047241, 'uncivil': 5.754071005236205e-05, 'resolution': 0.0014960584613614132, 'sons': 0.00028770355026181023, 'answer': 0.001438517751309051, 'expense': 0.0007480292306807066, 'removal': 0.0006329478105759826, 'week': 0.0018988434317279475, 'insinuations': 0.0001150814201047241, 'letter': 0.004373093963979516, 'post': 0.0005754071005236205, 'proposal': 0.00034524426031417227, 'offer': 0.0004603256804188964, 'relation': 0.0008055699407330686, 'consequence': 0.001093273490994879, 'accommodation': 0.0004027849703665343, 'need': 0.0002301628402094482, 'cottage': 0.0032222797629322744, 'particulars': 0.0010357327809425167, 'garden': 0.0007480292306807066, 'whence': 0.00028770355026181023, 'parish': 5.754071005236205e-05, 'cousin': 0.0007480292306807066, 'nearer': 0.00017262213015708613, 'connections': 0.00028770355026181023, 'deliberation': 5.754071005236205e-05, 'inquiry': 0.001150814201047241, 'county': 0.0002301628402094482, 'hours': 0.002186546981989758, 'objection': 0.0006329478105759826, 'evil': 0.0006904885206283445, 'object': 0.0017837620116232234, 'blessing': 0.00028770355026181023, 'comparison': 0.0007480292306807066, 'misery': 0.0015535991714137752, 'guest': 0.0002301628402094482, 'inhabit': 5.754071005236205e-05, 'acknowledgment': 0.0002301628402094482, 'acceptance': 0.00017262213015708613, 'letters': 0.001150814201047241, 'distance': 0.0006904885206283445, 'head': 0.002129006271937396, 'scale': 5.754071005236205e-05, 'vicinity': 5.754071005236205e-05, 'attempt': 0.00028770355026181023, 'acquiescence': 0.0001150814201047241, 'voice': 0.00281949479256574, 'explanation': 0.0006904885206283445, 'difficulty': 0.001093273490994879, 'resolve': 5.754071005236205e-05, 'effect': 0.001323436331204327, 'disapprobation': 5.754071005236205e-05, 'match': 0.0008631106507854307, 'being': 0.00017262213015708613, 'service': 0.0005178663904712584, 'performance': 0.0004603256804188964, 'arrangement': 0.00034524426031417227, 'water': 0.00028770355026181023, 'household': 0.00017262213015708613, 'pianoforte': 0.00034524426031417227, 'packages': 5.754071005236205e-05, 'sigh': 0.0005178663904712584, 'article': 0.0001150814201047241, 'possession': 0.0006329478105759826, 'agreement': 0.0001150814201047241, 'west': 5.754071005236205e-05, 'wisdom': 0.0001150814201047241, 'number': 0.0004603256804188964, 'maids': 0.00028770355026181023, 'visitor': 0.0004603256804188964, 'description': 0.00017262213015708613, 'curiosity': 0.001323436331204327, 'diminution': 0.0001150814201047241, 'departure': 0.0004027849703665343, 'accomplishment': 0.0001150814201047241, 'drift': 5.754071005236205e-05, 'discourse': 0.001093273490994879, 'maintenance': 0.0001150814201047241, 'demands': 0.00028770355026181023, 'purse': 5.754071005236205e-05, 'calculation': 5.754071005236205e-05, 'design': 0.0005754071005236205, 'abode': 0.00028770355026181023, 'journey': 0.001265895621151965, 'tears': 0.001323436331204327, 'adieus': 0.0001150814201047241, 'evening': 0.00281949479256574, 'more!--And': 5.754071005236205e-05, 'leaf': 0.0001150814201047241, 'branch': 5.754071005236205e-05, 'longer!--No': 5.754071005236205e-05, 'unconscious': 5.754071005236205e-05, 'regret': 0.0008631106507854307, 'change': 0.001380977041256689, 'shade!--But': 5.754071005236205e-05, 'appearance': 0.0016111398814661372, 'country': 0.0018988434317279475, 'view': 0.001150814201047241, 'pasture': 5.754071005236205e-05, 'mile': 0.0002301628402094482, 'court': 0.00017262213015708613, 'demesne': 5.754071005236205e-05, 'front': 0.0002301628402094482, 'wicket': 5.754071005236205e-05, 'gate': 0.00028770355026181023, 'building': 0.0001150814201047241, 'roof': 0.00017262213015708613, 'window': 0.001208354911099603, 'shutters': 5.754071005236205e-05, 'walls': 0.00034524426031417227, 'honeysuckles': 5.754071005236205e-05, 'passage': 0.00034524426031417227, 'entrance': 0.0010357327809425167, 'sitting': 0.0002301628402094482, 'feet': 0.00017262213015708613, 'offices': 0.0004027849703665343, 'stairs': 0.001093273490994879, 'bed': 0.0015535991714137752, 'rooms': 0.00028770355026181023, 'garrets': 5.754071005236205e-05, 'repair': 0.00017262213015708613, 'recollection': 0.0010357327809425167, 'joy': 0.001380977041256689, 'others': 0.003337361183036999, 'weather': 0.001093273490994879, 'impression': 0.0004027849703665343, 'material': 0.00034524426031417227, 'hills': 0.0006904885206283445, 'downs': 0.00034524426031417227, 'woody': 5.754071005236205e-05, 'village': 0.0005754071005236205, 'windows': 0.00017262213015708613, 'valley': 0.0005754071005236205, 'direction': 0.0005754071005236205, 'name': 0.002474250532251568, 'size': 0.0004027849703665343, 'additions': 0.0001150814201047241, 'elegance': 0.001093273490994879, 'apartments': 0.0001150814201047241, 'improvements': 0.0004027849703665343, 'spring': 0.0002301628402094482, 'plenty': 0.0001150814201047241, 'parlors': 5.754071005236205e-05, 'thoughts': 0.001380977041256689, 'remainder': 5.754071005236205e-05, 'chamber': 0.00017262213015708613, 'hand': 0.002416709822199206, 'alterations': 5.754071005236205e-05, 'savings': 5.754071005236205e-05, 'endeavoring': 5.754071005236205e-05, 'possessions': 0.0001150814201047241, 'employments': 0.0004027849703665343, 'landlord': 5.754071005236205e-05, 'cousins': 0.0009781920708901548, 'solicitude': 0.0006904885206283445, 'entreaties': 0.0004027849703665343, 'perseverance': 0.0001150814201047241, 'hour': 0.0019563841417803095, 'basket': 0.00034524426031417227, 'stuff': 0.0001150814201047241, 'fruit': 0.0001150814201047241, 'park': 0.0017262213015708614, 'newspaper': 0.00028770355026181023, 'message': 0.0004603256804188964, 'visit': 0.002646872662408654, 'ladyship': 0.0004603256804188964, 'share': 0.0008631106507854307, 'frankness': 0.0001150814201047241, 'remark': 0.00034524426031417227, 'precaution': 0.0001150814201047241, 'extremity': 5.754071005236205e-05, 'beauty': 0.001150814201047241, 'questions': 0.00028770355026181023, 'party': 0.002761954082513378, 'body': 0.0029345762126704645, 'dining': 0.0005178663904712584, 'projection': 5.754071005236205e-05, 'hill': 0.0004027849703665343, 'hospitality': 5.754071005236205e-05, 'gratification': 0.0001150814201047241, 'talent': 5.754071005236205e-05, 'compass': 5.754071005236205e-05, 'sportsman': 0.00017262213015708613, 'resources': 5.754071005236205e-05, 'engagements': 0.0008055699407330686, 'deficiencies': 0.0001150814201047241, 'exercise': 0.00028770355026181023, 'breeding': 0.00028770355026181023, 'table': 0.0017262213015708614, 'arrangements': 0.00017262213015708613, 'vanity': 0.0006904885206283445, 'summer': 0.00028770355026181023, 'ham': 5.754071005236205e-05, 'chicken': 5.754071005236205e-05, 'doors': 0.00017262213015708613, 'winter': 0.0004027849703665343, 'balls': 0.00017262213015708613, 'appetite': 0.0001150814201047241, 'inhabitants': 0.0001150814201047241, 'friendliness': 0.0001150814201047241, 'past': 0.001093273490994879, 'females': 5.754071005236205e-05, 'sex': 0.0004027849703665343, 'sportsmen': 0.00017262213015708613, 'manor': 5.754071005236205e-05, 'door': 0.002129006271937396, 'friend': 0.0031071983428275505, 'smallness': 0.00017262213015708613, 'families': 0.00017262213015708613, 'morning': 0.004890960354450774, 'hopes': 0.0009781920708901548, 'moonlight': 5.754071005236205e-05, 'strangers': 0.00028770355026181023, 'jokes': 0.0002301628402094482, 'laughter': 0.00017262213015708613, 'dinner': 0.001380977041256689, 'lovers': 0.00017262213015708613, 'husbands': 0.0002301628402094482, 'hearts': 5.754071005236205e-05, 'attacks': 5.754071005236205e-05, 'pain': 0.001438517751309051, 'raillery': 0.00034524426031417227, 'bachelor': 0.00017262213015708613, 'companions': 0.00034524426031417227, 'insipidity': 0.0002301628402094482, 'gravity': 0.00028770355026181023, 'mirth': 0.0001150814201047241, 'clothes': 0.0002301628402094482, 'instrument': 0.0004027849703665343, 'chief': 0.00028770355026181023, 'songs': 5.754071005236205e-05, 'position': 5.754071005236205e-05, 'event': 0.001438517751309051, 'song': 0.0002301628402094482, 'raptures': 0.00028770355026181023, 'compliment': 0.00034524426031417227, 'insensibility': 5.754071005236205e-05, 'acuteness': 0.0001150814201047241, 'feeling': 0.0006329478105759826, 'colonel': 0.00017262213015708613, 'humanity': 0.00017262213015708613, 'jointure': 0.0001150814201047241, 'promotion': 5.754071005236205e-05, 'ability': 0.00017262213015708613, 'weddings': 5.754071005236205e-05, 'discovery': 0.0004027849703665343, 'attachments': 0.00017262213015708613, 'blushes': 5.754071005236205e-05, 'listening': 0.0001150814201047241, 'connection': 0.001208354911099603, 'latter': 5.754071005236205e-05, 'incomprehensible': 5.754071005236205e-05, 'absurdity': 0.0002301628402094482, 'impertinence': 0.00028770355026181023, 'ridicule': 0.00017262213015708613, 'accusation': 5.754071005236205e-05, 'sensation': 0.0001150814201047241, 'wit': 0.00034524426031417227, 'infirmity': 0.0001150814201047241, 'Infirmity': 5.754071005236205e-05, 'infirm': 5.754071005236205e-05, 'use': 0.001093273490994879, 'limbs': 0.0001150814201047241, 'rheumatism': 5.754071005236205e-05, 'rate': 0.00034524426031417227, 'terror': 0.00017262213015708613, 'decay': 0.0001150814201047241, 'miracle': 5.754071005236205e-05, 'forty': 5.754071005236205e-05, 'matrimony': 5.754071005236205e-05, 'chance': 0.001150814201047241, 'nurse': 0.00028770355026181023, 'security': 0.00034524426031417227, 'compact': 5.754071005236205e-05, 'convenience': 0.00028770355026181023, 'exchange': 0.00028770355026181023, 'confinement': 0.00028770355026181023, 'yesterday': 0.0008055699407330686, 'feel': 5.754071005236205e-05, 'shoulders': 0.0001150814201047241, 'waistcoats': 5.754071005236205e-05, 'flannel': 0.0001150814201047241, 'waistcoat': 0.0001150814201047241, 'aches': 0.00017262213015708613, 'cramps': 5.754071005236205e-05, 'rheumatisms': 5.754071005236205e-05, 'species': 0.0001150814201047241, 'ailment': 5.754071005236205e-05, 'fever': 0.00028770355026181023, 'cheek': 0.0001150814201047241, 'eye': 0.0010357327809425167, 'pulse': 0.00017262213015708613, 'alarm': 0.0009781920708901548, 'fortnight': 0.0006904885206283445, 'indisposition': 0.0004027849703665343, 'contrary': 0.0005178663904712584, 'anxiety': 0.0009781920708901548, 'readiness': 0.0004027849703665343, 'grate': 5.754071005236205e-05, 'bedchamber': 5.754071005236205e-05, 'hurry': 0.00028770355026181023, 'meaning': 0.0006904885206283445, 'farewell': 0.00034524426031417227, 'distinction': 0.0002301628402094482, 'self': 0.0016686805915184994, 'command': 0.0005754071005236205, 'pursuits': 0.00034524426031417227, 'charms': 0.00034524426031417227, 'habit': 0.0004027849703665343, 'occupation': 5.754071005236205e-05, 'amazement': 0.0005178663904712584, 'assurances': 0.0005754071005236205, 'wish': 0.001265895621151965, 'walk': 0.0004027849703665343, 'walks': 0.00034524426031417227, 'mansion': 0.0002301628402094482, 'enquiry': 0.00028770355026181023, 'possessor': 5.754071005236205e-05, 'air': 0.0010357327809425167, 'summits': 0.0001150814201047241, 'alternative': 5.754071005236205e-05, 'dirt': 0.0001150814201047241, 'valleys': 5.754071005236205e-05, 'beauties': 0.0002301628402094482, 'steps': 0.0001150814201047241, 'sunshine': 5.754071005236205e-05, 'showery': 0.0001150814201047241, 'sky': 0.0002301628402094482, 'rain': 0.0006329478105759826, 'pencil': 5.754071005236205e-05, 'book': 0.0004603256804188964, 'cloud': 5.754071005236205e-05, 'glimpse': 0.0001150814201047241, 'faces': 5.754071005236205e-05, 'gales': 5.754071005236205e-05, 'south': 5.754071005236205e-05, 'wind': 0.00034524426031417227, 'fears': 0.0005754071005236205, 'sensations': 0.00017262213015708613, 'clouds': 0.00017262213015708613, 'heads': 5.754071005236205e-05, 'shelter': 0.0001150814201047241, 'exigence': 5.754071005236205e-05, 'speed': 5.754071005236205e-05, 'step': 5.754071005236205e-05, 'ground': 0.0004603256804188964, 'bottom': 0.0001150814201047241, 'safety': 0.00017262213015708613, 'gun': 0.0001150814201047241, 'pointers': 5.754071005236205e-05, 'yards': 0.00017262213015708613, 'accident': 0.00028770355026181023, 'foot': 0.0001150814201047241, 'fall': 5.754071005236205e-05, 'modesty': 0.00017262213015708613, 'arms': 0.0002301628402094482, 'whither': 0.00028770355026181023, 'hold': 0.0001150814201047241, 'chair': 0.0005178663904712584, 'parlour': 0.0005754071005236205, 'wonder': 0.0009206513608377928, 'intrusion': 0.00017262213015708613, 'act': 0.0002301628402094482, 'influence': 0.0008055699407330686, 'youth': 0.0004027849703665343, 'action': 0.00034524426031417227, 'honour': 0.0009781920708901548, 'tomorrow': 0.0008631106507854307, 'midst': 0.0001150814201047241, 'gracefulness': 5.754071005236205e-05, 'theme': 5.754071005236205e-05, 'laugh': 0.00034524426031417227, 'gallantry': 5.754071005236205e-05, 'confusion': 0.00034524426031417227, 'energy': 0.00017262213015708613, 'hero': 5.754071005236205e-05, 'story': 0.0005754071005236205, 'formality': 0.00017262213015708613, 'rapidity': 0.0002301628402094482, 'thought': 0.001093273490994879, 'dresses': 5.754071005236205e-05, 'shooting': 5.754071005236205e-05, 'jacket': 5.754071005236205e-05, 'ankle': 5.754071005236205e-05, 'interval': 0.0002301628402094482, 'news': 0.0008055699407330686, 'sort': 0.0005178663904712584, 'fellow': 0.0005754071005236205, 'shot': 5.754071005236205e-05, 'bolder': 0.0001150814201047241, 'rider': 0.0001150814201047241, 'talents': 0.0002301628402094482, 'soul': 0.001150814201047241, 'bitch': 5.754071005236205e-05, 'pointer': 0.0002301628402094482, 'today': 0.0005178663904712584, 'colour': 0.0006329478105759826, 'shades': 5.754071005236205e-05, 'tumbling': 0.0001150814201047241, 'care': 0.001380977041256689, 'attempts': 0.0001150814201047241, 'employment': 0.0006904885206283445, 'Men': 5.754071005236205e-05, 'hop': 5.754071005236205e-05, "o'clock": 0.0006904885206283445, 'covert': 5.754071005236205e-05, 'fatigue': 0.00034524426031417227, 'Aye': 0.0002301628402094482, 'aye': 0.00028770355026181023, 'cap': 0.00017262213015708613, 'phrase': 0.0001150814201047241, 'conquest': 0.00017262213015708613, 'tendency': 0.0002301628402094482, 'construction': 5.754071005236205e-05, 'ingenuity': 5.754071005236205e-05, 'reproof': 0.00028770355026181023, 'conquests': 0.0001150814201047241, 'spraining': 5.754071005236205e-05, 'ankles': 5.754071005236205e-05, 'preserver': 5.754071005236205e-05, 'precision': 5.754071005236205e-05, 'enquiries': 0.00028770355026181023, 'interview': 0.0001150814201047241, 'complexion': 0.0005178663904712584, 'features': 0.00028770355026181023, 'form': 0.0004603256804188964, 'height': 0.0002301628402094482, 'skin': 0.00017262213015708613, 'transparency': 5.754071005236205e-05, 'embarrassment': 0.0004603256804188964, 'remembrance': 0.0005754071005236205, 'good': 0.0006329478105759826, 'vivacity': 0.0001150814201047241, 'dancing': 0.0002301628402094482, 'look': 0.0015535991714137752, 'stay': 0.0002301628402094482, 'amusement': 0.0008055699407330686, 'discussion': 0.0002301628402094482, 'conformity': 5.754071005236205e-05, 'examination': 0.00028770355026181023, 'authors': 0.0001150814201047241, 'dwelt': 5.754071005236205e-05, 'convert': 5.754071005236205e-05, 'works': 0.0001150814201047241, 'passages': 5.754071005236205e-05, 'force': 0.00028770355026181023, 'arguments': 0.0002301628402094482, 'brightness': 0.0001150814201047241, 'decisions': 5.754071005236205e-05, 'enthusiasm': 0.0001150814201047241, 'familiarity': 0.0002301628402094482, 'importance': 0.0008055699407330686, 'despatch': 0.00017262213015708613, 'topic': 0.00017262213015708613, 'meeting': 0.0010357327809425167, 'scanty': 5.754071005236205e-05, 'notion': 0.0005754071005236205, 'decorum': 0.0001150814201047241, 'roads': 5.754071005236205e-05, 'reproach': 0.0006329478105759826, 'jest': 5.754071005236205e-05, 'proof': 0.0008055699407330686, 'excuse': 0.0004027849703665343, 'reception': 0.00034524426031417227, 'recovery': 0.0004027849703665343, 'ardour': 0.0001150814201047241, 'example': 0.00017262213015708613, 'estimation': 0.0002301628402094482, 'propensity': 0.0001150814201047241, 'persons': 5.754071005236205e-05, 'forms': 0.0002301628402094482, 'caution': 0.00034524426031417227, 'support': 0.00034524426031417227, 'desperation': 5.754071005236205e-05, 'perfection': 0.0001150814201047241, 'speculative': 5.754071005236205e-05, 'riches': 0.0002301628402094482, 'rival': 0.0002301628402094482, 'opposition': 0.0006904885206283445, 'hindrance': 0.0001150814201047241, 'oppression': 0.00017262213015708613, 'gloominess': 5.754071005236205e-05, 'hints': 0.00017262213015708613, 'injuries': 0.0001150814201047241, 'disappointments': 0.00017262213015708613, 'belief': 0.0004027849703665343, 'compassion': 0.0010357327809425167, 'injustice': 0.00028770355026181023, 'indignity': 5.754071005236205e-05, 'abuse': 0.0001150814201047241, 'amends': 0.00034524426031417227, 'censure': 0.00028770355026181023, 'defence': 0.0001150814201047241, 'protege': 0.0001150814201047241, 'thinking': 0.0002301628402094482, 'information': 0.0009781920708901548, 'climate': 5.754071005236205e-05, 'mosquitoes': 5.754071005236205e-05, 'observations': 0.00028770355026181023, 'nabobs': 5.754071005236205e-05, 'mohrs': 5.754071005236205e-05, 'palanquins': 5.754071005236205e-05, 'candour': 0.0001150814201047241, 'coats': 5.754071005236205e-05, 'brilliancy': 5.754071005236205e-05, 'imperfections': 5.754071005236205e-05, 'mass': 5.754071005236205e-05, 'reason': 0.0029345762126704645, 'reasons': 0.00034524426031417227, 'fault': 0.00028770355026181023, 'hanging': 5.754071005236205e-05, 'curricle': 0.0002301628402094482, 'mare': 5.754071005236205e-05, 'return': 0.001265895621151965, 'privilege': 0.00028770355026181023, 'invitations': 0.0001150814201047241, 'leisure': 0.0006904885206283445, 'schemes': 0.00028770355026181023, 'execution': 5.754071005236205e-05, 'excellencies': 5.754071005236205e-05, 'venture': 0.0001150814201047241, 'concealment': 0.00028770355026181023, 'disgrace': 0.00028770355026181023, 'restraint': 0.00017262213015708613, 'effort': 0.0004603256804188964, 'subjection': 0.0001150814201047241, 'illustration': 5.754071005236205e-05, 'evenings': 0.0001150814201047241, 'cards': 0.0004603256804188964, 'partners': 5.754071005236205e-05, 'dances': 5.754071005236205e-05, 'display': 0.0001150814201047241, 'amusements': 0.0001150814201047241, 'talker': 5.754071005236205e-05, 'history': 5.754071005236205e-05, 'memory': 0.00017262213015708613, 'presence': 0.0008631106507854307, 'boys': 0.0002301628402094482, 'attentions': 0.0004603256804188964, 'conversing': 5.754071005236205e-05, 'silence': 0.0017837620116232234, 'wives': 0.0001150814201047241, 'basis': 5.754071005236205e-05, 'prejudices': 5.754071005236205e-05, 'inconveniences': 0.0002301628402094482, 'ignorance': 0.0006904885206283445, 'systems': 5.754071005236205e-05, 'nought': 5.754071005236205e-05, 'pause': 0.0009206513608377928, 'saying,--': 5.754071005236205e-05, 'objections': 0.0004027849703665343, 'inconstancy': 0.00034524426031417227, 'perverseness': 0.0001150814201047241, 'minutiae': 5.754071005236205e-05, 'refinements': 5.754071005236205e-05, 'experience': 0.00017262213015708613, 'series': 0.00017262213015708613, 'circumstances"--': 5.754071005236205e-05, 'rise': 0.0001150814201047241, 'conjectures': 0.0002301628402094482, 'lips': 0.0005754071005236205, 'order': 0.0001150814201047241, 'testimony': 0.0002301628402094482, 'horse': 0.0004603256804188964, 'gift': 0.0002301628402094482, 'servant': 0.001323436331204327, 'hesitation': 0.00028770355026181023, 'groom': 0.0001150814201047241, 'gallop': 5.754071005236205e-05, 'dream': 5.754071005236205e-05, 'truths': 5.754071005236205e-05, 'affair': 0.0016111398814661372, 'trifle': 0.0001150814201047241, 'shed': 5.754071005236205e-05, 'supposing': 0.0001150814201047241, 'creature': 0.0008055699407330686, 'impropriety': 0.00028770355026181023, 'Opposition': 5.754071005236205e-05, 'appeal': 5.754071005236205e-05, 'imprudent': 0.00017262213015708613, 'low': 5.754071005236205e-05, 'yours': 0.0006904885206283445, 'sentence': 0.0004027849703665343, 'tempers': 5.754071005236205e-05, 'light': 0.0004027849703665343, 'secret': 0.0005754071005236205, 'church': 0.0004027849703665343, 'neck': 0.0002301628402094482, 'miniature': 0.0001150814201047241, 'lock': 0.0005754071005236205, 'hair': 0.0010357327809425167, 'tea': 0.0008631106507854307, 'scissors': 0.00017262213015708613, 'paper': 0.0004027849703665343, 'pocket': 0.00034524426031417227, 'authority': 0.0002301628402094482, 'credit': 0.0004603256804188964, 'unison': 5.754071005236205e-05, 'sagacity': 0.0001150814201047241, 'joke': 0.00034524426031417227, 'harm': 0.00028770355026181023, "ma'am": 0.0015535991714137752, 'curate': 5.754071005236205e-05, 'profession': 0.0006329478105759826, 'invention': 5.754071005236205e-05, 'interruption': 0.0001150814201047241, 'dislike': 0.00034524426031417227, 'piano': 0.00028770355026181023, '-': 0.0004603256804188964, 'forte': 0.00028770355026181023, 'endeavours': 0.0001150814201047241, 'proprietor': 5.754071005236205e-05, 'orders': 0.0007480292306807066, 'grounds': 0.0004027849703665343, 'judge': 5.754071005236205e-05, 'sail': 5.754071005236205e-05, 'provisions': 5.754071005236205e-05, 'carriages': 0.0002301628402094482, 'undertaking': 5.754071005236205e-05, 'fortnight;--': 5.754071005236205e-05, 'cold': 0.00017262213015708613, 'excursion': 0.0002301628402094482, 'sun': 0.00017262213015708613, 'humour': 0.0005178663904712584, 'hardships': 5.754071005236205e-05, 'None': 5.754071005236205e-05, 'town': 0.004833419644398412, 'madam': 0.00017262213015708613, 'attendance': 0.0002301628402094482, 'admittance': 0.0001150814201047241, 'blow': 0.0004027849703665343, 'note': 0.0008055699407330686, 'trick': 5.754071005236205e-05, 'guineas': 0.00017262213015708613, 'writing': 0.0004027849703665343, 'Careys': 5.754071005236205e-05, 'purpose': 0.0008055699407330686, 'horseback': 0.00017262213015708613, 'leave': 0.0004027849703665343, 'complaints': 0.0001150814201047241, 'lamentations': 0.0001150814201047241, 'dear': 0.0017262213015708614, 'fear': 0.0010357327809425167, 'consultation': 5.754071005236205e-05, 'drive': 0.00017262213015708613, 'lanes': 0.0001150814201047241, 'dance': 0.0005754071005236205, 'contentment': 0.00017262213015708613, 'pray?"--': 5.754071005236205e-05, 'enquire': 5.754071005236205e-05, 'method': 0.0002301628402094482, 'pleasanter': 5.754071005236205e-05, 'pleasantness': 5.754071005236205e-05, 'remarks': 0.00028770355026181023, 'and--': 5.754071005236205e-05, 'hint': 0.0004027849703665343, 'corner': 0.00017262213015708613, 'sides': 0.0005178663904712584, 'bowling': 5.754071005236205e-05, 'wood': 0.00017262213015708613, 'termination': 5.754071005236205e-05, 'steadiness': 0.00017262213015708613, 'wonderer': 5.754071005236205e-05, 'comings': 5.754071005236205e-05, 'goings': 5.754071005236205e-05, 'intermission': 0.00017262213015708613, 'distress': 0.001380977041256689, 'determination': 0.0002301628402094482, 'bye': 5.754071005236205e-05, 'wager': 5.754071005236205e-05, 'setting': 0.0001150814201047241, 'bargain': 0.0001150814201047241, 'conjecture': 0.00028770355026181023, 'besides': 5.754071005236205e-05, 'variety': 0.0006329478105759826, 'speculation': 5.754071005236205e-05, 'poverty': 0.0004027849703665343, 'secrecy': 0.0005754071005236205, 'practice': 0.00017262213015708613, 'tenderness': 0.0009781920708901548, 'stone': 0.00017262213015708613, 'inch': 5.754071005236205e-05, 'accounts': 0.00028770355026181023, 'dispose': 5.754071005236205e-05, 'defect': 0.00017262213015708613, 'kitchen': 0.0001150814201047241, 'tone': 0.0005754071005236205, 'variation': 0.00017262213015708613, 'disadvantage': 0.0001150814201047241, 'staircase': 0.0001150814201047241, 'prescience': 5.754071005236205e-05, 'hitherto': 0.0002301628402094482, 'apartment': 0.0002301628402094482, 'dimensions': 0.0001150814201047241, 'pretext': 5.754071005236205e-05, 'foresight': 5.754071005236205e-05, 'handkerchief': 0.0002301628402094482, 'mantel': 0.0001150814201047241, 'back': 0.00017262213015708613, 'Disappointment': 5.754071005236205e-05, 'dispatches': 5.754071005236205e-05, 'exhilaration': 5.754071005236205e-05, 'shame': 0.00034524426031417227, 'myself"--': 5.754071005236205e-05, 'minute': 0.0005754071005236205, 'speech': 0.0005754071005236205, 'solitude': 0.0004027849703665343, 'uneasiness': 0.0005178663904712584, 'distrust': 0.0002301628402094482, 'affectation': 0.00017262213015708613, 'unwillingness': 0.00028770355026181023, 'backwardness': 0.0001150814201047241, 'quarrel': 0.00017262213015708613, 'relief': 0.0009781920708901548, 'duty': 0.0007480292306807066, 'work': 0.0007480292306807066, 'here?"--': 5.754071005236205e-05, 'trust': 0.00034524426031417227, 'disapproves': 5.754071005236205e-05, 'confess': 5.754071005236205e-05, 'cavil': 5.754071005236205e-05, 'guilt': 0.00034524426031417227, 'apology': 0.0005754071005236205, 'inadvertence': 5.754071005236205e-05, 'probabilities': 0.00017262213015708613, 'certainties': 5.754071005236205e-05, 'possibility': 0.0004027849703665343, 'allowances': 0.0001150814201047241, 'deviation': 0.0001150814201047241, 'incautiousness': 5.754071005236205e-05, 'syllable': 0.0004027849703665343, 'syllables': 0.0001150814201047241, 'actions': 0.0005178663904712584, 'looks': 0.0005754071005236205, 'confidence': 0.0017837620116232234, 'ONE': 5.754071005236205e-05, 'carelessness': 0.0001150814201047241, 'doubts': 0.0002301628402094482, 'fainter': 5.754071005236205e-05, 'concession': 5.754071005236205e-05, 'altar': 0.0001150814201047241, 'inconsistency': 0.0001150814201047241, 'integrity': 0.00028770355026181023, 'cordiality': 0.00028770355026181023, 'affairs': 0.0002301628402094482, 'temptation': 0.00028770355026181023, 'avowal': 0.0001150814201047241, 'general': 5.754071005236205e-05, 'foundation': 0.0002301628402094482, 'stranger': 5.754071005236205e-05, 'liberty': 0.001093273490994879, 'representations': 5.754071005236205e-05, 'fortitude': 0.0005178663904712584, 'instant': 0.00034524426031417227, 'repose': 0.0001150814201047241, 'headache': 5.754071005236205e-05, 'nourishment': 0.0001150814201047241, 'reverse': 0.0002301628402094482, 'voices': 0.0001150814201047241, 'oftenest': 5.754071005236205e-05, 'line': 0.00028770355026181023, 'sadness': 0.0001150814201047241, 'crying': 5.754071005236205e-05, 'melancholy': 5.754071005236205e-05, 'meditations': 0.00017262213015708613, 'effusions': 0.0001150814201047241, 'explanations': 0.0001150814201047241, 'correspondence': 0.0002301628402094482, 'hands': 0.0009781920708901548, 'mystery': 5.754071005236205e-05, 'inflict': 5.754071005236205e-05, 'confession': 0.00034524426031417227, 'revealment': 5.754071005236205e-05, 'denial': 0.00017262213015708613, 'delicacy': 0.0005754071005236205, 'witticisms': 5.754071005236205e-05, 'hour;--': 5.754071005236205e-05, 'volume': 5.754071005236205e-05, 'Months': 5.754071005236205e-05, 'reply': 0.0005178663904712584, 'expressive': 5.754071005236205e-05, 'rambles': 0.0001150814201047241, 'exertions': 0.00017262213015708613, 'seclusion': 5.754071005236205e-05, 'road': 0.0004603256804188964, 'MIND': 5.754071005236205e-05, 'stretch': 5.754071005236205e-05, 'scene': 0.00028770355026181023, 'coat': 0.0001150814201047241, 'particularity': 5.754071005236205e-05, 'pace': 0.0001150814201047241, 'forgot': 0.00017262213015708613, 'continuation': 5.754071005236205e-05, 'coldness': 0.00028770355026181023, 'deficiency': 0.0002301628402094482, 'month': 0.0002301628402094482, 'leaves': 0.0001150814201047241, 'transporting': 5.754071005236205e-05, 'showers': 5.754071005236205e-05, 'nuisance': 5.754071005236205e-05, 'passion': 0.0002301628402094482, 'No': 0.00017262213015708613, 'reverie': 0.00028770355026181023, 'moments;--but': 5.754071005236205e-05, 'tranquil': 0.0002301628402094482, 'equals': 5.754071005236205e-05, 'left': 5.754071005236205e-05, 'plantations': 0.0001150814201047241, 'grandeur': 0.0001150814201047241, 'bottoms': 5.754071005236205e-05, 'lane': 0.0001150814201047241, 'conveniences': 0.0001150814201047241, 'resentment': 0.0004603256804188964, 'displeasure': 0.0001150814201047241, 'welcome': 0.0002301628402094482, 'indignant': 0.0001150814201047241, 'parents': 5.754071005236205e-05, 'orator': 0.0001150814201047241, 'fame': 5.754071005236205e-05, 'eloquence': 0.00028770355026181023, 'competence': 0.00017262213015708613, 'hunters': 0.00017262213015708613, 'Hunters': 5.754071005236205e-05, 'Edward--"but': 5.754071005236205e-05, 'animation': 0.0002301628402094482, 'cheeks': 0.0001150814201047241, 'insufficiency': 5.754071005236205e-05, 'help': 0.00017262213015708613, 'booksellers': 5.754071005236205e-05, 'sellers': 5.754071005236205e-05, 'print': 0.00017262213015708613, 'shops': 0.0001150814201047241, 'commission': 0.00017262213015708613, 'greatness': 0.0001150814201047241, 'copy': 5.754071005236205e-05, 'tree': 0.0002301628402094482, 'disputes': 5.754071005236205e-05, 'cash': 5.754071005236205e-05, 'collection': 5.754071005236205e-05, 'bulk': 5.754071005236205e-05, 'heirs': 5.754071005236205e-05, 'reward': 0.0004027849703665343, 'maxim': 5.754071005236205e-05, 'gaiety': 0.00028770355026181023, 'mistakes': 5.754071005236205e-05, 'misapprehension': 0.0002301628402094482, 'grave': 0.00017262213015708613, 'deception': 0.0001150814201047241, 'judgments': 0.0001150814201047241, 'neighbours': 0.00017262213015708613, 'awkwardness': 5.754071005236205e-05, 'gentility': 0.0001150814201047241, 'inattention': 0.0002301628402094482, 'hers': 0.00017262213015708613, 'inferiority': 0.0001150814201047241, 'thoughtfulness': 0.0001150814201047241, 'reservedness': 5.754071005236205e-05, 'parts': 0.00028770355026181023, 'scenes': 0.0002301628402094482, 'picturesque': 0.0001150814201047241, 'surfaces': 5.754071005236205e-05, 'medium': 5.754071005236205e-05, 'atmosphere': 0.0001150814201047241, 'timber': 0.00017262213015708613, 'meadows': 5.754071005236205e-05, 'farm': 0.00017262213015708613, 'utility': 5.754071005236205e-05, 'rocks': 5.754071005236205e-05, 'promontories': 5.754071005236205e-05, 'brush': 5.754071005236205e-05, 'pretensions': 0.0001150814201047241, 'discrimination': 5.754071005236205e-05, 'landscape': 0.00017262213015708613, 'scenery': 5.754071005236205e-05, 'jargon': 5.754071005236205e-05, 'language': 0.0005178663904712584, 'trees': 0.0002301628402094482, 'cottages': 5.754071005236205e-05, 'nettles': 5.754071005236205e-05, 'thistles': 5.754071005236205e-05, 'heath': 5.754071005236205e-05, 'blossoms': 5.754071005236205e-05, 'watch': 0.0001150814201047241, 'tower': 5.754071005236205e-05, 'troop': 5.754071005236205e-05, 'villages': 5.754071005236205e-05, 'banditti': 5.754071005236205e-05, 'ring': 0.00034524426031417227, 'plait': 5.754071005236205e-05, 'fingers': 0.00017262213015708613, 'vexation': 0.0002301628402094482, 'glance': 0.00028770355026181023, 'shade': 0.0001150814201047241, 'conclusions': 5.754071005236205e-05, 'theft': 5.754071005236205e-05, 'contrivance': 5.754071005236205e-05, 'affront': 5.754071005236205e-05, 'henceforward': 5.754071005236205e-05, 'absence': 0.0005754071005236205, 'forgiveness': 0.0004027849703665343, 'middle': 0.00028770355026181023, 'survey': 0.0001150814201047241, 'Ferrars': 0.0005754071005236205, 'newness': 5.754071005236205e-05, 'instructions': 5.754071005236205e-05, 'entertainment': 5.754071005236205e-05, 'necessity': 0.0010357327809425167, 'yourselves': 0.00017262213015708613, 'Whitakers': 5.754071005236205e-05, 'sure.--What': 5.754071005236205e-05, 'nameless': 0.0001150814201047241, 'blushing': 5.754071005236205e-05, 'suspicions': 0.00028770355026181023, 'expressions': 0.00017262213015708613, 'whisper': 0.00034524426031417227, 'guess': 5.754071005236205e-05, 'archness': 5.754071005236205e-05, 'mortification': 0.0001150814201047241, 'environs': 5.754071005236205e-05, 'lie': 5.754071005236205e-05, 'qualifications': 5.754071005236205e-05, 'openness': 0.00028770355026181023, 'consistency': 5.754071005236205e-05, 'designs': 0.00028770355026181023, 'shortness': 5.754071005236205e-05, 'grievance': 5.754071005236205e-05, 'parent': 0.00028770355026181023, 'renewal': 5.754071005236205e-05, 'finger': 5.754071005236205e-05, 'plans': 0.0002301628402094482, 'misfortune': 0.0002301628402094482, 'nicety': 0.0001150814201047241, 'army': 5.754071005236205e-05, 'chambers': 5.754071005236205e-05, 'circles': 5.754071005236205e-05, 'gigs': 5.754071005236205e-05, 'abstruse': 5.754071005236205e-05, 'study': 0.00017262213015708613, 'navy': 5.754071005236205e-05, 'fashion': 0.00028770355026181023, 'idleness': 0.0001150814201047241, 'solicitations': 5.754071005236205e-05, 'professions': 0.0002301628402094482, 'accent': 0.0001150814201047241, 'effusion': 0.00017262213015708613, 'parting': 0.00034524426031417227, 'patience': 0.00034524426031417227, 'discontent': 0.00017262213015708613, 'subdue': 5.754071005236205e-05, 'augment': 5.754071005236205e-05, 'advancement': 0.0001150814201047241, 'ones': 5.754071005236205e-05, 'mortifying': 5.754071005236205e-05, 'meditation': 0.00017262213015708613, 'abundance': 5.754071005236205e-05, 'engross': 5.754071005236205e-05, 'closing': 5.754071005236205e-05, 'ceremony': 0.0004027849703665343, 'turf': 5.754071005236205e-05, 'casement': 5.754071005236205e-05, 'space': 0.0001150814201047241, 'again"--': 5.754071005236205e-05, 'prepossessing': 5.754071005236205e-05, 'willingness': 0.0001150814201047241, 'meantime': 5.754071005236205e-05, 'astonishment': 0.0009206513608377928, 'ceiling': 5.754071005236205e-05, 'bow': 0.00034524426031417227, 'oftener': 5.754071005236205e-05, 'Westons': 5.754071005236205e-05, 'droll': 0.0004027849703665343, 'public': 0.0001150814201047241, 'devil': 0.0002301628402094482, 'billiard': 5.754071005236205e-05, 'Gilberts': 5.754071005236205e-05, 'whip': 5.754071005236205e-05, 'cross': 5.754071005236205e-05, 'insolence': 0.00017262213015708613, 'bias': 5.754071005236205e-05, 'blunder': 5.754071005236205e-05, 'treatment': 0.00028770355026181023, 'motive': 0.0004603256804188964, 'superiority': 0.0001150814201047241, 'delightful!--My': 5.754071005236205e-05, 'sneer--"I': 5.754071005236205e-05, 'election': 5.754071005236205e-05, 'hardship': 0.0001150814201047241, 'obligation': 0.00028770355026181023, 'M.P.--But': 5.754071005236205e-05, 'abuses': 5.754071005236205e-05, 'languages': 5.754071005236205e-05, 'stop': 0.0001150814201047241, 'confirmation': 0.0001150814201047241, 'neighbour': 0.0001150814201047241, 'talks': 0.0001150814201047241, 'street': 0.0002301628402094482, 'praises': 5.754071005236205e-05, 'too.--': 5.754071005236205e-05, 'handsomer': 5.754071005236205e-05, 'school': 0.00034524426031417227, 'acting': 5.754071005236205e-05, 'unsuitableness': 5.754071005236205e-05, 'zeal': 0.0001150814201047241, 'relations': 0.0009206513608377928, 'elegance,--': 5.754071005236205e-05, 'philosophy': 5.754071005236205e-05, 'reprimand': 0.0001150814201047241, 'dress': 0.00034524426031417227, 'guests': 0.00017262213015708613, 'creatures': 0.00017262213015708613, 'coach': 0.0002301628402094482, 'playthings': 5.754071005236205e-05, 'introduction': 0.00017262213015708613, 'admire': 5.754071005236205e-05, 'smartness': 5.754071005236205e-05, 'person.--': 5.754071005236205e-05, 'whims': 5.754071005236205e-05, 'patterns': 5.754071005236205e-05, 'foibles': 5.754071005236205e-05, 'beings': 5.754071005236205e-05, 'endurance': 5.754071005236205e-05, 'offspring': 0.00017262213015708613, 'complacency': 0.00028770355026181023, 'encroachments': 5.754071005236205e-05, 'sashes': 5.754071005236205e-05, 'ears': 0.0002301628402094482, 'bags': 5.754071005236205e-05, 'knives': 5.754071005236205e-05, 'monkey': 5.754071005236205e-05, 'embraces': 5.754071005236205e-05, 'pin': 5.754071005236205e-05, 'pattern': 5.754071005236205e-05, 'gentleness': 0.00028770355026181023, 'screams': 0.00017262213015708613, 'consternation': 5.754071005236205e-05, 'emergency': 5.754071005236205e-05, 'agonies': 0.0001150814201047241, 'sufferer': 5.754071005236205e-05, 'lap': 0.0001150814201047241, 'kisses': 5.754071005236205e-05, 'wound': 5.754071005236205e-05, 'lavender': 0.0001150814201047241, 'knees': 0.00017262213015708613, 'mouth': 0.00017262213015708613, 'sugar': 5.754071005236205e-05, 'plums': 5.754071005236205e-05, 'brothers': 5.754071005236205e-05, 'soothings': 5.754071005236205e-05, 'temple': 0.00017262213015708613, 'remedy': 5.754071005236205e-05, 'scratch': 5.754071005236205e-05, 'quest': 0.0001150814201047241, 'medicine': 5.754071005236205e-05, 'reality': 0.00017262213015708613, 'task': 0.00017262213015708613, 'lies': 5.754071005236205e-05, 'eclat': 5.754071005236205e-05, 'doat': 5.754071005236205e-05, 'outside': 5.754071005236205e-05, 'freedom': 0.00017262213015708613, "an't": 0.0002301628402094482, 'beaux': 0.00017262213015708613, 'lief': 5.754071005236205e-05, 'beau': 0.0005754071005236205, 'clerk': 5.754071005236205e-05, 'specimen': 0.0001150814201047241, 'artlessness': 5.754071005236205e-05, 'proportion': 0.0002301628402094482, 'lot': 0.00017262213015708613, 'situations': 0.00034524426031417227, 'Twill': 5.754071005236205e-05, 'luck': 0.00017262213015708613, 'drinking': 0.0001150814201047241, 'significancy': 5.754071005236205e-05, 'nods': 5.754071005236205e-05, 'winks': 5.754071005236205e-05, 'F--': 5.754071005236205e-05, 'alphabet': 5.754071005236205e-05, 'inquisitiveness': 5.754071005236205e-05, 'amendment': 0.0004027849703665343, 'assertions': 5.754071005236205e-05, 'knowing': 5.754071005236205e-05, 'toleration': 5.754071005236205e-05, 'vulgarity': 5.754071005236205e-05, 'advances': 5.754071005236205e-05, 'communication': 0.0006329478105759826, 'agreeable': 5.754071005236205e-05, 'powers': 0.00017262213015708613, 'aid': 0.00017262213015708613, 'endeavour': 0.00017262213015708613, 'neglect': 0.00017262213015708613, 'rectitude': 5.754071005236205e-05, 'assiduities': 0.0001150814201047241, 'flatteries': 0.0001150814201047241, 'insincerity': 0.0001150814201047241, 'instruction': 0.0001150814201047241, 'equality': 5.754071005236205e-05, 'shew': 0.0001150814201047241, 'deference': 0.0001150814201047241, 'valueless': 5.754071005236205e-05, 'pray': 5.754071005236205e-05, 'curiosity--': 5.754071005236205e-05, 'heavens': 0.00017262213015708613, 'disbelief': 5.754071005236205e-05, 'assertion': 0.0004603256804188964, 'incredulity': 5.754071005236205e-05, 'fit': 0.00017262213015708613, 'swoon': 5.754071005236205e-05, 'dependence': 0.0004027849703665343, 'date': 5.754071005236205e-05, 'pupil': 5.754071005236205e-05, 'pardon': 0.00034524426031417227, 'perplexity': 0.0002301628402094482, 'secret.--': 5.754071005236205e-05, 'OCCASION': 5.754071005236205e-05, 'suspecting': 0.00017262213015708613, 'painting': 0.0001150814201047241, 'falsehood': 0.0002301628402094482, 'likeness': 5.754071005236205e-05, 'paces': 5.754071005236205e-05, 'tongue': 0.0001150814201047241, 'suspense': 0.00034524426031417227, 'uncertainty': 0.0001150814201047241, 'veracity': 0.0001150814201047241, 'names': 0.0001150814201047241, 'sheet': 5.754071005236205e-05, 'success': 0.0004603256804188964, 'separations': 5.754071005236205e-05, 'editions': 5.754071005236205e-05, 'Volume': 5.754071005236205e-05, 'proofs': 0.0002301628402094482, 'dissatisfaction': 5.754071005236205e-05, 'prospects': 0.0002301628402094482, 'evidence': 5.754071005236205e-05, 'overcame': 5.754071005236205e-05, 'indignation': 0.0005178663904712584, 'dupe': 5.754071005236205e-05, 'considerations': 0.0001150814201047241, 'illusion': 5.754071005236205e-05, 'softener': 5.754071005236205e-05, 'miserable': 0.0001150814201047241, 'regain': 5.754071005236205e-05, 'tranquillity': 0.0002301628402094482, 'infatuation': 5.754071005236205e-05, 'defects': 0.0001150814201047241, 'supposition': 5.754071005236205e-05, 'seeking': 5.754071005236205e-05, 'unhappiness': 0.00034524426031417227, 'extinction': 5.754071005236205e-05, 'obstacles': 5.754071005236205e-05, 'perfections': 5.754071005236205e-05, 'aggravation': 5.754071005236205e-05, 'condemnation': 0.00017262213015708613, 'counsel': 0.0002301628402094482, 'firmness': 0.00028770355026181023, 'regrets': 0.00028770355026181023, 'agitation': 0.0009781920708901548, 'venturing': 5.754071005236205e-05, 'weight': 0.00028770355026181023, 'disclosure': 5.754071005236205e-05, 'honesty': 0.0001150814201047241, 'repetition': 0.00028770355026181023, 'chat': 0.00017262213015708613, 'eating': 0.0001150814201047241, 'consequences': 0.0001150814201047241, 'meetings': 0.0001150814201047241, 'charity': 0.0001150814201047241, 'dine': 5.754071005236205e-05, 'club': 5.754071005236205e-05, 'opening': 0.0002301628402094482, 'permission': 5.754071005236205e-05, 'novelty': 5.754071005236205e-05, 'impossibility': 0.0002301628402094482, 'card': 0.0008055699407330686, 'preparation': 0.00028770355026181023, 'candlelight': 5.754071005236205e-05, 'morrow': 0.0004603256804188964, 'filigree': 5.754071005236205e-05, 'angel': 0.00017262213015708613, 'supper': 0.0002301628402094482, 'eyes--': 5.754071005236205e-05, 'bell': 0.0001150814201047241, 'candles': 5.754071005236205e-05, 'alacrity': 0.0001150814201047241, 'spoilt': 5.754071005236205e-05, 'rubber': 0.0002301628402094482, 'Ladyship': 5.754071005236205e-05, 'papers': 0.00017262213015708613, 'labour': 5.754071005236205e-05, 'proposals': 5.754071005236205e-05, 'rivals': 5.754071005236205e-05, 'harmony': 0.0001150814201047241, 'risk': 0.00028770355026181023, 'firm': 5.754071005236205e-05, 'ice': 5.754071005236205e-05, 'constancy': 0.00028770355026181023, 'test': 5.754071005236205e-05, 'trial': 0.00017262213015708613, 'lowness': 5.754071005236205e-05, 'extremity?--Is': 5.754071005236205e-05, 'tediousness': 0.0001150814201047241, 'anger': 0.00028770355026181023, 'measures': 0.0002301628402094482, 'disinterestedness': 5.754071005236205e-05, 'coxcomb': 0.00017262213015708613, 'ear': 0.00034524426031417227, 'music.--': 5.754071005236205e-05, 'coxcombs': 5.754071005236205e-05, 'finding': 5.754071005236205e-05, 'lip': 5.754071005236205e-05, 'protection': 0.00017262213015708613, 'concerto--': 5.754071005236205e-05, 'scheme': 0.00034524426031417227, 'incumbent': 0.00017262213015708613, 'solemnity': 0.00017262213015708613, 'pique': 5.754071005236205e-05, 'stress': 5.754071005236205e-05, 'duration': 5.754071005236205e-05, 'conclusion': 0.00028770355026181023, 'reluctance': 0.0001150814201047241, 'confidante': 5.754071005236205e-05, 'conversations': 5.754071005236205e-05, 'going': 5.754071005236205e-05, 'celebration': 5.754071005236205e-05, 'festival': 5.754071005236205e-05, 'dinners': 0.0001150814201047241, 'portion': 0.0001150814201047241, 'habitation': 5.754071005236205e-05, 'streets': 5.754071005236205e-05, 'approach': 0.00017262213015708613, 'thither': 0.00017262213015708613, 'refusal': 5.754071005236205e-05, 'chaise': 0.00034524426031417227, 'ways': 0.0001150814201047241, 'struggle': 0.00017262213015708613, 'cautiousness': 5.754071005236205e-05, 'respecting': 5.754071005236205e-05, 'bedrooms': 5.754071005236205e-05, 'faults': 0.00017262213015708613, 'impediment': 5.754071005236205e-05, 'sunk': 5.754071005236205e-05, 'obstacle': 0.0001150814201047241, 'MY': 5.754071005236205e-05, 'scruples': 5.754071005236205e-05, 'unpleasantness': 0.0001150814201047241, 'guidance': 5.754071005236205e-05, 'mercy': 0.0001150814201047241, 'abridgement': 5.754071005236205e-05, 'sources': 0.0001150814201047241, 'shock': 0.00028770355026181023, 'attack': 0.00017262213015708613, 'dread': 0.0004027849703665343, 'acquisition': 0.00017262213015708613, 'unconcern': 0.00017262213015708613, 'perturbation': 5.754071005236205e-05, 'impatience': 0.00034524426031417227, 'score': 5.754071005236205e-05, 'station': 5.754071005236205e-05, 'measure': 0.0004027849703665343, 'rapture': 0.0001150814201047241, 'cheerless': 0.0001150814201047241, 'animating': 5.754071005236205e-05, 'events': 0.00028770355026181023, 'complaisance': 0.0001150814201047241, 'companionableness': 5.754071005236205e-05, 'exclamation': 0.0002301628402094482, 'salmon': 5.754071005236205e-05, 'fowls': 5.754071005236205e-05, 'cutlets': 5.754071005236205e-05, 'luxury': 0.0001150814201047241, 'mantelpiece': 5.754071005236205e-05, 'silks': 5.754071005236205e-05, 'W': 5.754071005236205e-05, 'footman': 0.0001150814201047241, 'penny': 0.0001150814201047241, 'flutter': 0.0001150814201047241, 'sound': 0.0002301628402094482, 'rap': 0.0002301628402094482, 'neighbouring': 5.754071005236205e-05, 'seconds': 5.754071005236205e-05, 'ecstasy': 0.00017262213015708613, 'fatigues': 0.0001150814201047241, 'Cartwright': 5.754071005236205e-05, 'bee': 5.754071005236205e-05, 'secrets': 0.0001150814201047241, 'mildness': 0.00017262213015708613, 'purchases': 0.0001150814201047241, 'lay': 5.754071005236205e-05, 'shop': 0.0004027849703665343, 'indecision': 0.0001150814201047241, 'parcels': 5.754071005236205e-05, 'negative': 5.754071005236205e-05, 'porter': 0.0001150814201047241, 'interference': 5.754071005236205e-05, 'appearances': 0.0001150814201047241, 'whist': 0.0001150814201047241, 'no': 5.754071005236205e-05, 'souls': 5.754071005236205e-05, 'Frosts': 5.754071005236205e-05, 'severity': 0.0001150814201047241, 'tonight': 0.00017262213015708613, 'privacy': 0.0001150814201047241, 'watchfulness': 0.0001150814201047241, 'frost': 0.00017262213015708613, 'variations': 5.754071005236205e-05, 'muff': 5.754071005236205e-05, 'afternoon': 0.00017262213015708613, 'symptoms': 0.0001150814201047241, 'city': 5.754071005236205e-05, 'occurrence': 5.754071005236205e-05, 'calling': 5.754071005236205e-05, 'appointment': 0.0002301628402094482, 'ball': 5.754071005236205e-05, 'reputation': 5.754071005236205e-05, 'violins': 5.754071005236205e-05, 'collation': 5.754071005236205e-05, 'recognition': 5.754071005236205e-05, 'bit': 5.754071005236205e-05, 'health': 0.0006904885206283445, 'application': 0.0002301628402094482, 'plea': 5.754071005236205e-05, 'disclosing': 5.754071005236205e-05, 'expedient': 0.0001150814201047241, 'endeavouring': 0.0001150814201047241, 'attitude': 0.0002301628402094482, 'destination': 5.754071005236205e-05, 'string': 5.754071005236205e-05, 'landing': 0.0001150814201047241, 'tribute': 5.754071005236205e-05, 'crowd': 0.00017262213015708613, 'heat': 5.754071005236205e-05, 'chairs': 5.754071005236205e-05, 'reach': 0.0001150814201047241, 'feature': 5.754071005236205e-05, 'touch': 0.0001150814201047241, 'notes': 0.0002301628402094482, 'faint': 0.0001150814201047241, 'peace': 0.0002301628402094482, 'other.--': 5.754071005236205e-05, 'exclamations': 5.754071005236205e-05, 'consciousness': 0.0006904885206283445, 'misconduct': 0.0002301628402094482, 'investigation': 5.754071005236205e-05, 'Absence': 5.754071005236205e-05, 'pangs': 5.754071005236205e-05, 'rupture': 0.0001150814201047241, 'seats': 0.0001150814201047241, 'flow': 0.0001150814201047241, 'sleep': 0.0004603256804188964, 'sobs': 0.0001150814201047241, 'ask-': 5.754071005236205e-05, 'bursts': 5.754071005236205e-05, 'intervals': 0.00017262213015708613, 'pen': 0.00017262213015708613, 'irritability': 5.754071005236205e-05, 'meal': 5.754071005236205e-05, 'working': 5.754071005236205e-05, 'paleness': 5.754071005236205e-05, 'sickness': 0.0001150814201047241, 'tremour': 5.754071005236205e-05, 'lengths': 5.754071005236205e-05, 'rug': 5.754071005236205e-05, 'talk': 0.00017262213015708613, 'wedding': 5.754071005236205e-05, 'report': 0.0002301628402094482, 'burst': 5.754071005236205e-05, 'suffering': 0.0002301628402094482, 'acknowledgments': 0.00017262213015708613, 'commands': 5.754071005236205e-05, 'release': 0.0002301628402094482, 'faith': 0.00028770355026181023, 'insult': 0.0001150814201047241, 'writer': 0.00017262213015708613, 'perusal': 5.754071005236205e-05, 'disengagement': 5.754071005236205e-05, 'escape': 0.00017262213015708613, 'evils': 0.0001150814201047241, 'deliverance': 0.00017262213015708613, 'contents': 0.0002301628402094482, 'depravity': 5.754071005236205e-05, 'chariot': 0.0001150814201047241, 'floor': 0.0001150814201047241, 'food': 5.754071005236205e-05, 'nights': 0.0001150814201047241, 'stomach': 5.754071005236205e-05, 'faintness': 5.754071005236205e-05, 'glass': 0.00017262213015708613, 'wine': 0.00034524426031417227, 'anguish': 0.0001150814201047241, 'torrent': 5.754071005236205e-05, 'comforts': 0.0002301628402094482, 'period--': 5.754071005236205e-05, 'hither': 5.754071005236205e-05, 'justification': 0.00017262213015708613, 'covenant': 5.754071005236205e-05, 'art': 0.0001150814201047241, 'supplication': 0.0001150814201047241, 'cruelty': 0.00028770355026181023, 'mama': 0.00017262213015708613, 'enemy': 5.754071005236205e-05, 'triumph': 0.00034524426031417227, 'innocence': 0.0001150814201047241, 'pride': 0.0004027849703665343, 'malevolence': 5.754071005236205e-05, 'mine--': 5.754071005236205e-05, 'discerning': 5.754071005236205e-05, 'posts': 5.754071005236205e-05, 'clearing': 5.754071005236205e-05, 'been?--how': 5.754071005236205e-05, 'she?--Who': 5.754071005236205e-05, 'acquaintance?--Oh': 5.754071005236205e-05, 'To': 5.754071005236205e-05, 'posture': 0.00017262213015708613, 'motionless': 5.754071005236205e-05, 'dear?"--said': 5.754071005236205e-05, 'Dashwood?--Poor': 5.754071005236205e-05, 'dressing': 0.00028770355026181023, 'admirers': 5.754071005236205e-05, 'cry': 5.754071005236205e-05, 'tiptoe': 5.754071005236205e-05, 'bustle': 0.00017262213015708613, 'abstraction': 5.754071005236205e-05, 'civilities': 0.0002301628402094482, 'fondness': 5.754071005236205e-05, 'holidays': 0.0001150814201047241, 'check': 5.754071005236205e-05, 'sweetmeats': 5.754071005236205e-05, 'olives': 5.754071005236205e-05, 'sign': 0.0001150814201047241, 'cherries': 5.754071005236205e-05, 'her--': 5.754071005236205e-05, 'aunt': 5.754071005236205e-05, 'pieces': 0.0001150814201047241, 'reform': 5.754071005236205e-05, 'Ellisons': 5.754071005236205e-05, 'guardians': 5.754071005236205e-05, 'allusion': 5.754071005236205e-05, 'tis': 5.754071005236205e-05, 'cases': 0.00017262213015708613, 'hereafter': 5.754071005236205e-05, 'enforcement': 5.754071005236205e-05, 'hilarity': 5.754071005236205e-05, 'saying': 5.754071005236205e-05, 'debt': 0.0001150814201047241, 'drawback': 5.754071005236205e-05, 'cost': 0.0001150814201047241, 'mulberry': 0.0001150814201047241, 'dove': 5.754071005236205e-05, 'cote': 5.754071005236205e-05, 'stew': 5.754071005236205e-05, 'ponds': 5.754071005236205e-05, 'canal': 0.0001150814201047241, 'quarter': 0.0004027849703665343, 'turnpike': 5.754071005236205e-05, 'yew': 0.0001150814201047241, 'arbour': 5.754071005236205e-05, 'butcher': 5.754071005236205e-05, 'parsonage': 0.0004603256804188964, 'throw': 5.754071005236205e-05, 'meat': 5.754071005236205e-05, 'shoulder': 0.0001150814201047241, 'mutton': 5.754071005236205e-05, 'remains': 0.0001150814201047241, 'compliance': 0.00017262213015708613, 'pillow': 5.754071005236205e-05, 'gout': 0.0001150814201047241, 'compromise': 5.754071005236205e-05, 'whispered--': 5.754071005236205e-05, 'elucidation': 5.754071005236205e-05, 'stationer': 5.754071005236205e-05, 'preparations': 5.754071005236205e-05, 'guardian': 0.0001150814201047241, 'sister--': 5.754071005236205e-05, 'sufferings': 0.0004027849703665343, 'hardness': 5.754071005236205e-05, 'bloom': 0.00017262213015708613, 'gossip': 0.0001150814201047241, 'refinement': 5.754071005236205e-05, 'delicacies': 5.754071005236205e-05, 'weakness': 0.0002301628402094482, 'impulse': 0.00017262213015708613, 'goodwill': 0.0001150814201047241, 'contrition': 0.0001150814201047241, 'page': 5.754071005236205e-05, 'intreat': 5.754071005236205e-05, 'directions': 5.754071005236205e-05, 'nerves': 0.0001150814201047241, 'conscience': 0.0007480292306807066, 'error': 0.0002301628402094482, 'salutation': 0.0001150814201047241, 'comfort;--no': 5.754071005236205e-05, 'telling': 5.754071005236205e-05, 'narrator': 5.754071005236205e-05, 'diffuse': 5.754071005236205e-05, 'conversation--': 5.754071005236205e-05, 'orphan': 5.754071005236205e-05, 'infancy': 5.754071005236205e-05, 'guardianship': 0.0001150814201047241, 'ages': 5.754071005236205e-05, 'playfellows': 5.754071005236205e-05, 'fervent': 5.754071005236205e-05, 'treachery': 5.754071005236205e-05, 'maid': 0.00034524426031417227, 'pleasures': 0.0001150814201047241, 'regiment': 5.754071005236205e-05, 'divorce': 5.754071005236205e-05, 'search': 5.754071005236205e-05, 'seducer': 5.754071005236205e-05, 'sin': 5.754071005236205e-05, 'extravagance': 0.0001150814201047241, 'consequent': 5.754071005236205e-05, 'stage': 0.0001150814201047241, 'consumption': 5.754071005236205e-05, 'Life': 5.754071005236205e-05, 'lodgings': 0.00017262213015708613, 'fate': 0.0004027849703665343, 'fates': 5.754071005236205e-05, 'lead': 5.754071005236205e-05, 'concise': 5.754071005236205e-05, 'obstinate': 5.754071005236205e-05, 'clue': 5.754071005236205e-05, 'incivility': 0.0001150814201047241, 'gay': 0.0001150814201047241, 'smiles': 0.0001150814201047241, 'usage': 5.754071005236205e-05, 'Concern': 5.754071005236205e-05, 'afflictions': 5.754071005236205e-05, 'recital': 0.0001150814201047241, 'endeavors': 5.754071005236205e-05, 'unworthiness': 5.754071005236205e-05, 'soldier': 5.754071005236205e-05, 'lying': 5.754071005236205e-05, 'delivery': 5.754071005236205e-05, 'Recollecting': 5.754071005236205e-05, 'vindication': 0.0002301628402094482, 'seduction': 5.754071005236205e-05, 'desertion': 5.754071005236205e-05, 'origin': 0.0001150814201047241, 'occupations': 5.754071005236205e-05, 'negligence': 0.0001150814201047241, 'retirement': 0.0001150814201047241, 'alleviation': 5.754071005236205e-05, 'sympathy': 0.0002301628402094482, 'carefulness': 5.754071005236205e-05, 'scoundrel': 0.0001150814201047241, 'dog': 5.754071005236205e-05, 'puppies': 5.754071005236205e-05, 'coachmaker': 5.754071005236205e-05, 'painter': 5.754071005236205e-05, 'portrait': 5.754071005236205e-05, 'warehouse': 5.754071005236205e-05, 'circle': 0.0001150814201047241, 'qualification': 5.754071005236205e-05, 'condolence': 5.754071005236205e-05, 'vent': 5.754071005236205e-05, 'dignity': 0.0002301628402094482, 'assemblies': 5.754071005236205e-05, 'humiliations': 5.754071005236205e-05, 'pitying': 5.754071005236205e-05, 'honours': 5.754071005236205e-05, 'receipt': 0.0001150814201047241, 'office': 0.00034524426031417227, 'degrees': 0.00034524426031417227, 'overpowering': 5.754071005236205e-05, 'emphasis': 5.754071005236205e-05, 'MONTH': 5.754071005236205e-05, 'WORD': 5.754071005236205e-05, 'exultation': 0.0002301628402094482, 'shillings': 0.0001150814201047241, 'Doctor': 0.0002301628402094482, 'cessation': 5.754071005236205e-05, 'gown': 0.0001150814201047241, 'negotiation': 5.754071005236205e-05, 'jewels': 5.754071005236205e-05, 'counter': 5.754071005236205e-05, 'correctness': 5.754071005236205e-05, 'shape': 5.754071005236205e-05, 'ornaments': 5.754071005236205e-05, 'stares': 5.754071005236205e-05, 'insignificance': 5.754071005236205e-05, 'puppyism': 5.754071005236205e-05, 'horrors': 0.0001150814201047241, 'inspection': 0.0001150814201047241, 'bedroom': 5.754071005236205e-05, 'ivory': 5.754071005236205e-05, 'gold': 5.754071005236205e-05, 'pearls': 5.754071005236205e-05, 'gloves': 5.754071005236205e-05, 'conceit': 0.00017262213015708613, 'beasts': 5.754071005236205e-05, 'seal': 5.754071005236205e-05, 'particular': 0.00017262213015708613, 'pleasant': 5.754071005236205e-05, 'pretence': 0.0001150814201047241, 'calm': 5.754071005236205e-05, 'pitch': 5.754071005236205e-05, 'encouragements': 5.754071005236205e-05, 'whisper--"will': 5.754071005236205e-05, 'PARTIES': 5.754071005236205e-05, 'taking': 0.00017262213015708613, 'bank': 5.754071005236205e-05, 'assent': 0.0002301628402094482, 'enclosure': 5.754071005236205e-05, 'drain': 5.754071005236205e-05, 'land': 0.00028770355026181023, 'stocks': 5.754071005236205e-05, 'banker': 5.754071005236205e-05, 'repine': 5.754071005236205e-05, 'flower': 0.0001150814201047241, 'knoll': 5.754071005236205e-05, 'walnut': 5.754071005236205e-05, 'thorns': 5.754071005236205e-05, 'patches': 5.754071005236205e-05, 'brow': 0.0001150814201047241, 'provocation': 0.00017262213015708613, 'pair': 0.0002301628402094482, 'rings': 5.754071005236205e-05, 'cheerfuller': 5.754071005236205e-05, 'prosperity': 0.0001150814201047241, 'complaint': 0.00028770355026181023, 'likelihood': 0.0001150814201047241, 'compunction': 5.754071005236205e-05, 'scruple': 0.00028770355026181023, 'selfishness': 0.0004027849703665343, 'demeanor': 5.754071005236205e-05, 'deed': 0.0001150814201047241, 'detection': 5.754071005236205e-05, 'hearing': 0.00028770355026181023, 'nieces': 5.754071005236205e-05, 'apprehensions': 0.0002301628402094482, 'declare': 5.754071005236205e-05, 'mother!"--': 5.754071005236205e-05, 'envy': 0.0001150814201047241, 'aspect': 0.0001150814201047241, 'contraction': 0.0001150814201047241, 'graciousness': 0.00017262213015708613, 'show': 0.0001150814201047241, 'indigence': 0.0001150814201047241, 'appeared--': 5.754071005236205e-05, 'disqualifications': 5.754071005236205e-05, 'Want': 5.754071005236205e-05, 'gentlemen': 0.00028770355026181023, 'politics': 5.754071005236205e-05, 'coffee': 5.754071005236205e-05, 'heights': 5.754071005236205e-05, 'grandmothers': 5.754071005236205e-05, 'descendant': 5.754071005236205e-05, 'screens': 0.0002301628402094482, 'connoisseurship': 5.754071005236205e-05, 'Ferrars--"very': 5.754071005236205e-05, 'delightfully!--How': 5.754071005236205e-05, 'this.--She': 5.754071005236205e-05, 'her?--it': 5.754071005236205e-05, 'retort': 5.754071005236205e-05, 'philippic': 5.754071005236205e-05, 'fright': 0.00017262213015708613, 'audacity': 5.754071005236205e-05, 'horror': 0.0002301628402094482, 'arm': 0.0001150814201047241, 'salts': 5.754071005236205e-05, 'author': 5.754071005236205e-05, 'sister,--she': 5.754071005236205e-05, 'meanness': 0.00017262213015708613, 'prejudice': 0.0001150814201047241, 'creation': 5.754071005236205e-05, 'caprice': 5.754071005236205e-05, 'affability': 0.0001150814201047241, 'hauteur': 5.754071005236205e-05, 'on.--': 5.754071005236205e-05, 'case"--': 5.754071005236205e-05, 'Dashwood?--you': 5.754071005236205e-05, 'me.--': 0.00017262213015708613, 'courtesy': 5.754071005236205e-05, 're': 5.754071005236205e-05, 'courage': 0.0002301628402094482, 'demure': 5.754071005236205e-05, 'contribution': 5.754071005236205e-05, 'witnesses': 5.754071005236205e-05, 'relatives': 5.754071005236205e-05, 'revenge': 0.0001150814201047241, 'sting': 5.754071005236205e-05, 'wounding': 5.754071005236205e-05, 'thirds': 5.754071005236205e-05, 'auditors': 5.754071005236205e-05, 'gone!--how': 5.754071005236205e-05, 'newspapers': 5.754071005236205e-05, 'heir': 5.754071005236205e-05, 'paragraph': 0.0001150814201047241, 'reading': 0.00017262213015708613, 'flattery': 0.00028770355026181023, 'administer': 5.754071005236205e-05, 'offering': 0.0001150814201047241, 'sacrifice': 0.00017262213015708613, 'conciliation': 5.754071005236205e-05, 'jealousies': 0.0001150814201047241, 'discontents': 0.0001150814201047241, 'detail': 0.0001150814201047241, 'infants': 5.754071005236205e-05, 'baby': 0.00017262213015708613, 'proposition': 5.754071005236205e-05, 'imaginations': 5.754071005236205e-05, 'misconstruction': 5.754071005236205e-05, 'mode': 0.0001150814201047241, 'toilet': 5.754071005236205e-05, 'price': 5.754071005236205e-05, 'gowns': 5.754071005236205e-05, 'washing': 5.754071005236205e-05, 'scrutinies': 5.754071005236205e-05, 'douceur': 5.754071005236205e-05, 'shoes': 0.0001150814201047241, 'punctuality': 5.754071005236205e-05, 'coachman': 5.754071005236205e-05, 'performers': 0.0001150814201047241, 'harp': 5.754071005236205e-05, 'glances': 5.754071005236205e-05, 'group': 5.754071005236205e-05, 'lecture': 5.754071005236205e-05, 'stroke': 5.754071005236205e-05, 'emptiness': 5.754071005236205e-05, 'GAUCHERIE': 5.754071005236205e-05, 'doing': 5.754071005236205e-05, 'tuition': 5.754071005236205e-05, 'accommodations': 5.754071005236205e-05, 'tables': 5.754071005236205e-05, 'library': 0.00017262213015708613, 'refreshments': 5.754071005236205e-05, 'enfranchisement': 5.754071005236205e-05, 'shews': 5.754071005236205e-05, 'humility': 0.0002301628402094482, 'vigor': 5.754071005236205e-05, 'favourites': 5.754071005236205e-05, 'needless': 0.0001150814201047241, 'malice': 0.00017262213015708613, 'entry': 5.754071005236205e-05, 'needle': 0.0001150814201047241, 'emigrant': 5.754071005236205e-05, 'edtions': 5.754071005236205e-05, 'habits': 0.00017262213015708613, 'hurrying': 5.754071005236205e-05, 'fuss': 5.754071005236205e-05, 'pimples': 5.754071005236205e-05, 'gum': 5.754071005236205e-05, 'short': 5.754071005236205e-05, 'dear!--And': 5.754071005236205e-05, 'possible?--': 5.754071005236205e-05, 'conjurer': 5.754071005236205e-05, 'carpet': 0.0001150814201047241, 'hysterics': 0.00028770355026181023, 'steward': 5.754071005236205e-05, 'fury': 5.754071005236205e-05, 'fainting': 5.754071005236205e-05, 'uproar': 5.754071005236205e-05, 'call': 0.00017262213015708613, 'making': 5.754071005236205e-05, 'impartiality': 5.754071005236205e-05, 'one.--She': 5.754071005236205e-05, 'opinion,-and': 5.754071005236205e-05, 'narration': 0.00017262213015708613, 'grief.--THAT': 5.754071005236205e-05, 'hearer': 5.754071005236205e-05, 'comforter': 5.754071005236205e-05, 'distresses': 0.0001150814201047241, 'Willoughby': 5.754071005236205e-05, 'mankind': 5.754071005236205e-05, 'regularity': 5.754071005236205e-05, 'alarms': 5.754071005236205e-05, 'heart?--And': 5.754071005236205e-05, 'happy!"--': 5.754071005236205e-05, 'supported?"--': 5.754071005236205e-05, 'duty.--My': 5.754071005236205e-05, 'it;--': 0.0001150814201047241, 'him!"--': 5.754071005236205e-05, 'him;--and': 0.0001150814201047241, 'once;--I': 5.754071005236205e-05, 'connection.--Nothing': 5.754071005236205e-05, 'unkindness': 0.0001150814201047241, 'punishment': 0.00034524426031417227, 'first.--': 5.754071005236205e-05, 'ever.--How': 5.754071005236205e-05, 'gratitude?--Is': 5.754071005236205e-05, 'you?--Because': 5.754071005236205e-05, 'caresses': 5.754071005236205e-05, 'frame': 5.754071005236205e-05, 'cordiality.--': 5.754071005236205e-05, 'reparation': 5.754071005236205e-05, 'admiration.--She': 5.754071005236205e-05, 'spasm': 5.754071005236205e-05, 'heroism': 5.754071005236205e-05, 'storm': 5.754071005236205e-05, 'constitution': 0.0001150814201047241, 'ingratitude': 0.0001150814201047241, 'benevolence': 0.00017262213015708613, 'prepossession': 0.0001150814201047241, 'avail': 5.754071005236205e-05, 'tax': 5.754071005236205e-05, 'penury': 5.754071005236205e-05, 'obstinacy': 5.754071005236205e-05, 'promises': 5.754071005236205e-05, 'rascal': 0.00017262213015708613, 'apprehension': 0.0001150814201047241, 'threats': 5.754071005236205e-05, 'sir': 0.0002301628402094482, 'taverns': 5.754071005236205e-05, 'conditions': 5.754071005236205e-05, 'lawyer': 5.754071005236205e-05, 'vehemence': 0.0001150814201047241, 'critique': 5.754071005236205e-05, 'offences': 5.754071005236205e-05, 'torture': 5.754071005236205e-05, 'penitence': 0.0001150814201047241, 'arm--"for': 5.754071005236205e-05, 'rage': 5.754071005236205e-05, 'bonnet': 5.754071005236205e-05, 'hat': 0.0001150814201047241, 'feather': 5.754071005236205e-05, 'ribbons': 5.754071005236205e-05, 'reports': 5.754071005236205e-05, 'curacy': 0.0002301628402094482, 'shift': 5.754071005236205e-05, 'oath': 5.754071005236205e-05, 'silk': 5.754071005236205e-05, 'stockings': 0.0001150814201047241, 'bones': 5.754071005236205e-05, 'closet': 0.0001150814201047241, 'chimney': 5.754071005236205e-05, 'Edward': 5.754071005236205e-05, '.': 5.754071005236205e-05, 'huswifes': 5.754071005236205e-05, 'bout': 5.754071005236205e-05, 'by': 5.754071005236205e-05, 'compliments': 0.00017262213015708613, 'preferment': 0.0001150814201047241, 'living!--ay': 5.754071005236205e-05, "t'other": 5.754071005236205e-05, 'troubles': 0.0001150814201047241, 'apologies': 5.754071005236205e-05, 'trials': 5.754071005236205e-05, 'persecutions': 5.754071005236205e-05, 'comments': 5.754071005236205e-05, 'heart.--She': 5.754071005236205e-05, 'body!--Thank': 5.754071005236205e-05, 'hostess': 5.754071005236205e-05, 'Dashwood;--but': 5.754071005236205e-05, 'concurrence': 5.754071005236205e-05, 'statement': 5.754071005236205e-05, 'Palmers;--and': 5.754071005236205e-05, 'cats': 5.754071005236205e-05, 'sketch': 0.0001150814201047241, 'ennui': 5.754071005236205e-05, 'turning': 0.0001150814201047241, 'lesson': 5.754071005236205e-05, 'badness': 5.754071005236205e-05, 'etiquette': 5.754071005236205e-05, 'motion': 5.754071005236205e-05, 'ejaculation': 5.754071005236205e-05, 'strange!--sure': 5.754071005236205e-05, 'conference': 0.0001150814201047241, 'sang': 5.754071005236205e-05, 'froid': 5.754071005236205e-05, 'reply!--She': 5.754071005236205e-05, 'suitor': 5.754071005236205e-05, 'woman.--': 5.754071005236205e-05, 'dividing': 5.754071005236205e-05, 'nonsense': 5.754071005236205e-05, 'valuable.--': 5.754071005236205e-05, 'rectory': 0.0001150814201047241, 'annum': 5.754071005236205e-05, 'indifferent;--an': 5.754071005236205e-05, 'presentation': 0.00017262213015708613, 'patronage': 5.754071005236205e-05, 'principal': 5.754071005236205e-05, 'good;--at': 5.754071005236205e-05, 'misunderstood': 5.754071005236205e-05, 'Opportunity': 5.754071005236205e-05, 'it?--': 5.754071005236205e-05, 'relative': 5.754071005236205e-05, 'ordination': 0.0001150814201047241, 'write': 5.754071005236205e-05, 'himself?--sure': 5.754071005236205e-05, 'beginning': 0.00028770355026181023, 'goodby': 5.754071005236205e-05, 'housemaid': 5.754071005236205e-05, 'band': 5.754071005236205e-05, 'embarrassment.--Whether': 5.754071005236205e-05, 'communicating': 5.754071005236205e-05, 'breathing': 5.754071005236205e-05, 'living!--Can': 5.754071005236205e-05, 'discernment': 5.754071005236205e-05, 'solicitation': 5.754071005236205e-05, 'benefactress': 5.754071005236205e-05, 'respectability': 5.754071005236205e-05, 'lodges': 5.754071005236205e-05, 'anticipation': 5.754071005236205e-05, 'right?--And': 5.754071005236205e-05, 'ready?--For': 5.754071005236205e-05, 'dear!--Sure': 5.754071005236205e-05, 'ebullition': 5.754071005236205e-05, 'beds!--': 5.754071005236205e-05, 'ninny': 5.754071005236205e-05, 'Buildings': 0.0001150814201047241, 'congratulations': 0.0001150814201047241, 'saint': 0.0001150814201047241, 'tithes': 0.0001150814201047241, 'utmost': 0.0002301628402094482, 'cows': 0.0001150814201047241, 'poultry': 0.0001150814201047241, 'tete': 0.0001150814201047241, 'room.--Nobody': 5.754071005236205e-05, 'favourites.--Why': 5.754071005236205e-05, 'livings': 5.754071005236205e-05, 'price!--what': 5.754071005236205e-05, 'concern!--Well': 5.754071005236205e-05, 'man.--You': 5.754071005236205e-05, 'all?--She': 5.754071005236205e-05, 'reasoning': 5.754071005236205e-05, 'intents': 5.754071005236205e-05, 'purposes': 5.754071005236205e-05, 'son;--and': 5.754071005236205e-05, 'silent.--His': 5.754071005236205e-05, 'whisper,--"I': 5.754071005236205e-05, 'division': 5.754071005236205e-05, 'clergyman': 5.754071005236205e-05, 'imagery': 5.754071005236205e-05, 'prayers': 5.754071005236205e-05, 'surplice': 5.754071005236205e-05, 'banns': 5.754071005236205e-05, 'acquaintance.--Poor': 5.754071005236205e-05, 'fellow!--to': 5.754071005236205e-05, 'kingdom': 5.754071005236205e-05, 'them;--an': 5.754071005236205e-05, 'accents': 5.754071005236205e-05, 'intercourse': 5.754071005236205e-05, 'promptitude': 5.754071005236205e-05, 'homes': 5.754071005236205e-05, 'persecution': 5.754071005236205e-05, 'tranquility': 5.754071005236205e-05, 'turns': 0.00017262213015708613, 'forenoon': 0.0001150814201047241, 'lawn': 0.0001150814201047241, 'shrubbery': 0.0001150814201047241, 'gravel': 0.00017262213015708613, 'winding': 5.754071005236205e-05, 'plantation': 5.754071005236205e-05, 'fir': 5.754071005236205e-05, 'mountain': 5.754071005236205e-05, 'ash': 5.754071005236205e-05, 'screen': 5.754071005236205e-05, 'poplars': 5.754071005236205e-05, 'shrubberies': 0.0001150814201047241, 'eminence': 5.754071005236205e-05, 'tract': 5.754071005236205e-05, 'ridge': 5.754071005236205e-05, 'horizon': 5.754071005236205e-05, 'circuit': 5.754071005236205e-05, 'premises': 5.754071005236205e-05, 'gardener': 5.754071005236205e-05, 'blights': 5.754071005236205e-05, 'plants': 5.754071005236205e-05, 'Charlotte,--and': 5.754071005236205e-05, 'yard': 5.754071005236205e-05, 'dairy': 5.754071005236205e-05, 'hens': 5.754071005236205e-05, 'nests': 5.754071005236205e-05, 'fox': 5.754071005236205e-05, 'decrease': 5.754071005236205e-05, 'brood': 5.754071005236205e-05, 'merriment': 5.754071005236205e-05, 'twilight': 0.0001150814201047241, 'knack': 5.754071005236205e-05, 'heartiness': 5.754071005236205e-05, 'evident': 5.754071005236205e-05, 'enlargement': 5.754071005236205e-05, 'aptitude': 5.754071005236205e-05, 'traits': 5.754071005236205e-05, 'mornings': 5.754071005236205e-05, 'billiards': 5.754071005236205e-05, 'confidant': 5.754071005236205e-05, 'suggestion': 5.754071005236205e-05, 'observer': 5.754071005236205e-05, 'two;--she': 5.754071005236205e-05, 'throat': 0.0001150814201047241, 'wildness': 0.0001150814201047241, 'grass': 5.754071005236205e-05, 'ailments': 5.754071005236205e-05, 'Prescriptions': 5.754071005236205e-05, 'quarters': 0.0001150814201047241, 'cough': 5.754071005236205e-05, 'remedies': 5.754071005236205e-05, 'sofa': 5.754071005236205e-05, 'medicines': 0.0001150814201047241, 'efficacy': 5.754071005236205e-05, 'apothecary': 0.00017262213015708613, 'patient': 0.00034524426031417227, 'disorder': 5.754071005236205e-05, 'infection': 0.0001150814201047241, 'infant': 5.754071005236205e-05, 'importunity': 5.754071005236205e-05, 'nursing': 5.754071005236205e-05, 'languid': 5.754071005236205e-05, 'lamentation': 5.754071005236205e-05, 'piquet': 5.754071005236205e-05, 'demur': 5.754071005236205e-05, 'emergence': 5.754071005236205e-05, 'owners': 5.754071005236205e-05, 'seizure': 5.754071005236205e-05, 'forebodings': 0.0001150814201047241, 'admission': 5.754071005236205e-05, 'anticipations': 5.754071005236205e-05, 'cordials': 5.754071005236205e-05, 'slumber': 0.0001150814201047241, 'nurses': 5.754071005236205e-05, 'sounds': 5.754071005236205e-05, 'coming?--': 5.754071005236205e-05, 'messenger': 0.0001150814201047241, 'resistance': 0.0001150814201047241, 'brief': 5.754071005236205e-05, 'mother,--how': 5.754071005236205e-05, 'summons': 5.754071005236205e-05, 'sleepless': 5.754071005236205e-05, 'delirium': 5.754071005236205e-05, 'pang': 0.00017262213015708613, 'darling': 0.0001150814201047241, 'attendant': 5.754071005236205e-05, 'reproaches': 5.754071005236205e-05, 'her;--and': 5.754071005236205e-05, 'stupor': 5.754071005236205e-05, 'noon': 0.0001150814201047241, 'image': 5.754071005236205e-05, 'reasonableness': 5.754071005236205e-05, 'revival': 5.754071005236205e-05, 'continuance;--': 5.754071005236205e-05, 'injunction': 0.0001150814201047241, 'Others': 5.754071005236205e-05, 'breath': 0.0001150814201047241, 'signs': 5.754071005236205e-05, 'gaze': 5.754071005236205e-05, 'Anxiety': 5.754071005236205e-05, 'felicitations': 5.754071005236205e-05, 'doting': 5.754071005236205e-05, 'demonstrations': 5.754071005236205e-05, 'breast': 5.754071005236205e-05, 'succour': 5.754071005236205e-05, 'relapse': 5.754071005236205e-05, 'was--': 5.754071005236205e-05, 'sink': 5.754071005236205e-05, 'pity!--Oh!--how': 5.754071005236205e-05, 'progress': 0.00017262213015708613, 'much;--': 5.754071005236205e-05, 'refreshment': 5.754071005236205e-05, 'content': 5.754071005236205e-05, 'capability': 5.754071005236205e-05, 'blast': 5.754071005236205e-05, 'travellers--': 5.754071005236205e-05, 'store': 5.754071005236205e-05, 'clock': 5.754071005236205e-05, 'shutter': 5.754071005236205e-05, 'lamps': 5.754071005236205e-05, 'stopt': 5.754071005236205e-05, 'door--': 5.754071005236205e-05, 'vestibule': 5.754071005236205e-05, 'lobby': 0.0001150814201047241, 'room,--she': 5.754071005236205e-05, 'minutes--': 5.754071005236205e-05, 'dispatch': 5.754071005236205e-05, 'Pray': 5.754071005236205e-05, 'abruptness': 5.754071005236205e-05, 'afterwards--"is': 5.754071005236205e-05, 'mood': 5.754071005236205e-05, 'gaiety.--': 5.754071005236205e-05, 'glow': 5.754071005236205e-05, 'knave': 5.754071005236205e-05, 'fool': 0.00017262213015708613, 'strangeness': 5.754071005236205e-05, 'longer.--': 5.754071005236205e-05, 'pint': 5.754071005236205e-05, 'beef': 5.754071005236205e-05, 'nuncheon': 5.754071005236205e-05, 'intoxication': 5.754071005236205e-05, 'energy--"if': 5.754071005236205e-05, 'blockhead': 5.754071005236205e-05, 'she?"--he': 5.754071005236205e-05, 'grounds.--NOW': 5.754071005236205e-05, 'own,--"how': 5.754071005236205e-05, 'debts': 5.754071005236205e-05, 'of;--and': 5.754071005236205e-05, 'injury': 0.00017262213015708613, 'avarice?--or': 5.754071005236205e-05, 'hers?--': 5.754071005236205e-05, 'withstood': 5.754071005236205e-05, 'addresses': 5.754071005236205e-05, 'circumspection': 5.754071005236205e-05, 'interim': 0.0001150814201047241, 'libertine': 0.0001150814201047241, 'passions': 5.754071005236205e-05, 'wanton': 5.754071005236205e-05, 'purity': 5.754071005236205e-05, 'morality': 0.0001150814201047241, 'morning--': 5.754071005236205e-05, 'breaking': 5.754071005236205e-05, 'debate': 5.754071005236205e-05, 'magnanimity': 5.754071005236205e-05, 'reliance': 5.754071005236205e-05, 'me!--Oh': 5.754071005236205e-05, 'grudge': 5.754071005236205e-05, 'town?--': 5.754071005236205e-05, 'emotion--': 5.754071005236205e-05, 'painful.--Every': 5.754071005236205e-05, 'metaphor': 5.754071005236205e-05, 'dagger': 5.754071005236205e-05, 'thunderbolt.--Thunderbolts': 5.754071005236205e-05, 'changes': 5.754071005236205e-05, 'remorse': 5.754071005236205e-05, 'dissipation': 0.0001150814201047241, 'villain': 0.0001150814201047241, 'idle': 5.754071005236205e-05, "'--": 5.754071005236205e-05, 'retreat': 5.754071005236205e-05, 'evening.--Had': 5.754071005236205e-05, 'inducement': 0.0001150814201047241, 'artless': 5.754071005236205e-05, 'confiding': 5.754071005236205e-05, 'evening!--I': 5.754071005236205e-05, 'horrid': 0.0001150814201047241, 'hue': 5.754071005236205e-05, 'haste': 0.0001150814201047241, 'playfulness': 5.754071005236205e-05, 'impudence': 5.754071005236205e-05, 'writing?--delicate': 5.754071005236205e-05, 'wife!--The': 5.754071005236205e-05, 'sentences': 0.0001150814201047241, 'original': 5.754071005236205e-05, 'diction': 5.754071005236205e-05, 'bluster': 5.754071005236205e-05, 'importance.--': 5.754071005236205e-05, 'reasonings': 5.754071005236205e-05, 'relics': 5.754071005236205e-05, 'pocketbook': 5.754071005236205e-05, 'memento': 5.754071005236205e-05, 'atonement': 0.00017262213015708613, 'sigh.--': 5.754071005236205e-05, 'compassion.--She': 5.754071005236205e-05, 'Dashwood?--or': 5.754071005236205e-05, 'purpose?--': 5.754071005236205e-05, 'before?--My': 5.754071005236205e-05, 'dearer': 0.0001150814201047241, 'projects': 5.754071005236205e-05, 'thing--': 5.754071005236205e-05, 'Extravagance': 5.754071005236205e-05, 'said--': 5.754071005236205e-05, 'thence': 0.00017262213015708613, 'guard': 5.754071005236205e-05, 'replied--"once': 5.754071005236205e-05, 'bye,--God': 5.754071005236205e-05, 'commiseration': 5.754071005236205e-05, 'think': 5.754071005236205e-05, 'attraction': 0.00017262213015708613, 'carriage.--Eager': 5.754071005236205e-05, 'hall': 5.754071005236205e-05, 'sharing': 5.754071005236205e-05, 'bliss': 5.754071005236205e-05, 'robbing': 5.754071005236205e-05, 'stake': 5.754071005236205e-05, 'irritation': 5.754071005236205e-05, 'widower': 5.754071005236205e-05, 'errand': 0.00017262213015708613, 'temperate': 5.754071005236205e-05, 'exuberance': 5.754071005236205e-05, 'child;--he': 5.754071005236205e-05, 'embellishments': 5.754071005236205e-05, 'man!--and': 5.754071005236205e-05, 'hope!--could': 5.754071005236205e-05, 'mind!--': 5.754071005236205e-05, 'warning': 5.754071005236205e-05, 'Willoughby.--': 5.754071005236205e-05, 'diffident': 5.754071005236205e-05, 'countenance.--': 5.754071005236205e-05, 'something,--if': 5.754071005236205e-05, 'accordant': 5.754071005236205e-05, 'liveliness': 5.754071005236205e-05, 'dissent': 5.754071005236205e-05, 'village,--indeed': 5.754071005236205e-05, 'too!--for': 5.754071005236205e-05, 'slow': 5.754071005236205e-05, 'varying': 5.754071005236205e-05, 'recurrence': 5.754071005236205e-05, 'bidding': 5.754071005236205e-05, 'travellers': 5.754071005236205e-05, 'dullness': 5.754071005236205e-05, 'field': 5.754071005236205e-05, 'blame': 5.754071005236205e-05, 'unobtrusiveness': 5.754071005236205e-05, 'opera': 5.754071005236205e-05, 'duets': 5.754071005236205e-05, 'keys': 5.754071005236205e-05, 'feebleness': 0.0001150814201047241, 'abatement': 5.754071005236205e-05, 'edge': 5.754071005236205e-05, 'down': 5.754071005236205e-05, 'ruins': 5.754071005236205e-05, 'foundations': 5.754071005236205e-05, 'production': 5.754071005236205e-05, 'extreme': 5.754071005236205e-05, 'indolence': 5.754071005236205e-05, 'repining': 5.754071005236205e-05, 'control': 5.754071005236205e-05, 'spot!--shall': 5.754071005236205e-05, 'Elinor?"--': 5.754071005236205e-05, 'girl"--': 5.754071005236205e-05, 'to"--': 5.754071005236205e-05, 'health;--': 5.754071005236205e-05, 'conduct.--Do': 5.754071005236205e-05, 'autumn': 0.0001150814201047241, 'destruction': 5.754071005236205e-05, 'recovery,--wonder': 5.754071005236205e-05, 'sister!--You': 5.754071005236205e-05, 'murmurings': 5.754071005236205e-05, 'heart!--How': 5.754071005236205e-05, 'her!--I': 5.754071005236205e-05, 'due': 5.754071005236205e-05, 'avail?--Was': 5.754071005236205e-05, 'restraints': 5.754071005236205e-05, 'incitement': 5.754071005236205e-05, 'religion': 5.754071005236205e-05, 'listener': 5.754071005236205e-05, 'repentance': 0.0001150814201047241, 'protestations': 5.754071005236205e-05, 'word.--She': 5.754071005236205e-05, 'minuteness': 5.754071005236205e-05, 'kiss': 5.754071005236205e-05, 'interests': 5.754071005236205e-05, 'facts': 5.754071005236205e-05, 'embellishment': 5.754071005236205e-05, 'astray': 5.754071005236205e-05, 'before--"I': 5.754071005236205e-05, 'man!--Her': 5.754071005236205e-05, 'expensiveness': 5.754071005236205e-05, 'inexperience': 5.754071005236205e-05, 'economy': 5.754071005236205e-05, 'frugality': 0.0001150814201047241, 'management': 5.754071005236205e-05, 'ruin': 5.754071005236205e-05, 'marriage?--': 5.754071005236205e-05, 'enjoyments': 5.754071005236205e-05, 'pecuniary': 5.754071005236205e-05, 'crime': 0.00017262213015708613, 'enumeration': 5.754071005236205e-05, 'studies': 5.754071005236205e-05, 'prosecution': 5.754071005236205e-05, 'tidings': 0.0001150814201047241, 'communication--': 5.754071005236205e-05, 'start': 5.754071005236205e-05, 'pale': 5.754071005236205e-05, 'howsever': 5.754071005236205e-05, 'tablecloth': 5.754071005236205e-05, 'appetites': 5.754071005236205e-05, 'meals': 5.754071005236205e-05, 'dessert': 5.754071005236205e-05, 'similarity': 5.754071005236205e-05, 'representation': 0.0001150814201047241, 'slighter': 5.754071005236205e-05, 'Elinor;--': 5.754071005236205e-05, 'mediation': 0.0001150814201047241, 'manager': 5.754071005236205e-05, 'practices;--': 5.754071005236205e-05, 'slight': 5.754071005236205e-05, 'utterance': 5.754071005236205e-05, 'footsteps': 5.754071005236205e-05, 'path': 5.754071005236205e-05, 'conforming': 5.754071005236205e-05, 'dryness': 5.754071005236205e-05, 'sheath': 5.754071005236205e-05, 'lessening': 5.754071005236205e-05, 'failure': 5.754071005236205e-05, 'entanglement': 5.754071005236205e-05, 'weaknesses': 5.754071005236205e-05, 'errors': 5.754071005236205e-05, 'world--': 5.754071005236205e-05, 'university': 5.754071005236205e-05, 'comparisons': 0.0001150814201047241, 'minds': 5.754071005236205e-05, 'Comparisons': 5.754071005236205e-05, 'justifying': 5.754071005236205e-05, 'sedateness': 5.754071005236205e-05, 'week;--for': 5.754071005236205e-05, 'future;--for': 5.754071005236205e-05, 'labor': 5.754071005236205e-05, 'talking': 5.754071005236205e-05, 'discussions': 5.754071005236205e-05, 'puzzle': 5.754071005236205e-05, 'followed;--and': 5.754071005236205e-05, 'wisher': 5.754071005236205e-05, 'scrawls': 5.754071005236205e-05, 'comment': 5.754071005236205e-05, 'composition': 5.754071005236205e-05, 'worlds': 5.754071005236205e-05, 'days.--In': 5.754071005236205e-05, 'pages': 5.754071005236205e-05, 'substance': 5.754071005236205e-05, 'pause,--"they': 5.754071005236205e-05, 'favourite.--She': 5.754071005236205e-05, 'jealousy': 5.754071005236205e-05, 'deserts': 5.754071005236205e-05, 'flourish': 5.754071005236205e-05, 'opinions--': 5.754071005236205e-05, 'disquiet': 5.754071005236205e-05, 'option': 5.754071005236205e-05, 'avarice': 5.754071005236205e-05, 'relent': 5.754071005236205e-05, 'FAITH': 5.754071005236205e-05, 'expediency': 5.754071005236205e-05, 'these:--The': 5.754071005236205e-05, 'glebe': 5.754071005236205e-05, 'residue': 5.754071005236205e-05, 'chusing': 5.754071005236205e-05, 'comer': 5.754071005236205e-05, 'disproportion': 5.754071005236205e-05, 'rumour': 5.754071005236205e-05, 'nerve': 5.754071005236205e-05, 'thrill': 5.754071005236205e-05, 'transport': 5.754071005236205e-05, 'tale': 5.754071005236205e-05, 'jilting': 5.754071005236205e-05, 'pour': 5.754071005236205e-05, 'hussy': 5.754071005236205e-05, 'crossness': 5.754071005236205e-05, 'strains': 5.754071005236205e-05, 'offending': 5.754071005236205e-05, 'submission': 0.00028770355026181023, 'reconciliation': 0.0001150814201047241, 'penitent': 5.754071005236205e-05, 'concessions': 5.754071005236205e-05, 'patron': 5.754071005236205e-05, 'incurring': 5.754071005236205e-05, 'annihilation': 0.0001150814201047241, 'resuscitation': 5.754071005236205e-05, 'publication': 5.754071005236205e-05, 'power;--told': 5.754071005236205e-05, 'nobleman': 5.754071005236205e-05, 'decree': 5.754071005236205e-05, 'shuffling': 5.754071005236205e-05, 'excuses': 5.754071005236205e-05, 'wants': 5.754071005236205e-05, 'completion': 5.754071005236205e-05, 'delays': 5.754071005236205e-05, 'dilatoriness': 5.754071005236205e-05, 'workmen': 5.754071005236205e-05, 'project': 5.754071005236205e-05, 'sweep': 5.754071005236205e-05, 'prophecies': 5.754071005236205e-05, 'Parsonage': 5.754071005236205e-05, 'couples': 5.754071005236205e-05, 'pasturage': 5.754071005236205e-05, 'gates': 5.754071005236205e-05, 'woods!--I': 5.754071005236205e-05, 'make': 5.754071005236205e-05, 'believe': 5.754071005236205e-05, 'cunning': 5.754071005236205e-05, 'scrape': 5.754071005236205e-05, 'interviews': 5.754071005236205e-05, 'acquaintances': 5.754071005236205e-05, 'instigation': 5.754071005236205e-05, 'messages': 5.754071005236205e-05, 'birth': 5.754071005236205e-05, 'intruder': 5.754071005236205e-05, 'disagreements': 5.754071005236205e-05, 'policy': 5.754071005236205e-05, 'frequency': 5.754071005236205e-05, 'obligations': 5.754071005236205e-05, 'confederacy': 5.754071005236205e-05, 'maxims': 5.754071005236205e-05, 'safeguard': 5.754071005236205e-05, 'patroness': 5.754071005236205e-05, 'halves': 5.754071005236205e-05, 'clemency': 5.754071005236205e-05, 'gloom': 5.754071005236205e-05, 'breed': 5.754071005236205e-05, 'dogs': 5.754071005236205e-05, 'sporting': 5.754071005236205e-05, 'standard': 5.754071005236205e-05, 'disagreement': 5.754071005236205e-05}
verb_counts = pos_spacy_counts("VERB", spacy_raw)
print(verb_counts[0])
{'settled': 35, 'lived': 19, 'engage': 15, 'surrounding': 4, 'had': 246, 'happened': 30, 'produced': 26, 'supply': 8, 'invited': 13, 'received': 39, 'intended': 13, 'bequeath': 1, 'spent': 38, 'increased': 15, 'proceeded': 8, 'gave': 71, 'receive': 16, 'added': 41, 'provided': 7, 'devolved': 1, 'arise': 6, 'inheriting': 1, 'remaining': 12, 'secured': 8, 'died': 6, 'read': 22, 'leave': 51, 'left': 97, 'destroyed': 3, 'wished': 54, 'providing': 2, 'needed': 6, 'tied': 2, 'gained': 15, 'having': 23, 'outweigh': 3, 'meant': 20, 'hope': 65, 'live': 36, 'living': 8, 'lay': 11, 'coming': 31, 'survived': 1, 'including': 1, 'remained': 28, 'sent': 21, 'known': 56, 'recommended': 11, 'command': 4, 'affected': 5, 'promised': 12, 'do': 169, 'make': 139, 'rendered': 8, 'leisure': 1, 'consider': 20, 'disposed': 16, 'conducted': 4, 'married': 44, 'made': 137, 'was:--he': 1, 'meditated': 2, 'increase': 3, 'thought': 97, 'warmed': 1, 'feel': 65, 'give': 126, 'spare': 10, 'repent': 2, 'sending': 12, 'arrived': 21, 'dispute': 1, 'come': 94, 'was': 36, 'given': 53, 'shewing': 5, 'act': 6, 'required': 18, 'despise': 2, 'quitted': 16, 'induced': 5, 'reflect': 8, 'going': 57, 'determined': 29, 'stay': 26, 'avoid': 21, 'possessed': 2, 'qualified': 1, 'enabled': 3, 'counteract': 3, 'led': 17, 'imprudence': 1, 'knew': 60, 'govern': 2, 'learn': 9, 'resolved': 28, 'taught': 4, 'have': 229, 'saw': 112, 'valued': 7, 'cherished': 1, 'encouraged': 5, 'overpowered': 2, 'renewed': 2, 'sought': 6, 'created': 3, 'seeking': 7, 'afford': 15, 'admitting': 3, 'afflicted': 1, 'struggle': 2, 'exert': 5, 'consult': 2, 'treat': 5, 'strive': 1, 'rouse': 3, 'encourage': 4, 'humored': 1, 'imbibed': 1, 'bid': 4, 'equal': 1, 'installed': 1, 'degraded': 1, 'treated': 14, 'pressed': 13, 'appeared': 34, 'accommodate': 3, 'accepted': 7, 'reminded': 4, 'suited': 5, 'possess': 2, 'carried': 16, 'approve': 8, 'take': 43, 'impoverishing': 1, 'begged': 7, 'think': 205, 'answer': 8, 'rob': 3, 'related': 12, 'considered': 27, 'supposed': 24, 'exist': 3, 'ruin': 5, 'giving': 38, 'replied': 99, 'assist': 13, 'know': 228, 'talking': 26, 'dare': 31, 'say': 160, 'headed': 1, 'begging': 4, 'stipulate': 1, 'requested': 3, 'suppose': 55, 'neglect': 1, 'performed': 6, 'done': 70, 'settle': 10, 'LET': 1, 'Consider': 2, 'parted': 13, 'return': 19, 'marry': 28, 'gone': 32, 'restored': 12, 'said': 384, 'regret': 8, 'diminished': 1, 'wish': 51, 'mean': 36, 'expect': 27, 'is': 41, 'knowing': 21, 'strikes': 1, 'want': 19, 'divided': 6, 'doing': 28, 'lives': 3, 'hesitated': 3, 'parting': 4, 'taken': 29, 'observe': 9, 'paid': 12, 'comes': 8, 'rid': 3, 'clogged': 1, 'found': 71, 'getting': 7, 'turned': 27, 'pin': 1, 'says': 13, 'takes': 6, 'expected': 39, 'raises': 4, 'bind': 1, 'allow': 25, 'believe': 88, 'enlarge': 1, 'felt': 100, 'prevent': 22, 'distressed': 4, 'discharging': 1, 'convinced': 21, 'looking': 21, 'helping': 2, 'move': 3, 'did': 46, 'Do': 2, 'belonging': 8, 'brings': 2, 'pay': 9, 'keep': 31, 'conceive': 5, 'imagine': 14, 'spend': 11, 'understand': 26, 'fulfil': 1, 'described': 8, 'removes': 1, 'returned': 52, 'moved': 9, 'sold': 5, 'saved': 5, 'fitted': 5, 'belongs': 1, 'owe': 7, 'wanting': 6, 'acts': 1, 'pointed': 4, 'ceased': 10, 'raise': 11, 'began': 41, 'revive': 2, 'became': 16, 'heightening': 3, 'remove': 7, 'hear': 70, 'answered': 24, 'rejected': 1, 'approved': 3, 'informed': 15, 'doubted': 8, 'persuaded': 16, 'support': 8, 'rejoiced': 6, 'reproached': 2, 'believing': 9, 'relied': 2, 'afforded': 7, 'occurred': 14, 'according': 2, 'growing': 5, 'introduced': 9, 'repressed': 1, 'depended': 9, 'uninfluenced': 1, 'loved': 16, 'attracted': 3, 'acknowledged': 12, 'overcome': 16, 'longed': 3, 'see': 172, 'wanted': 30, 'interest': 2, 'get': 29, 'connected': 5, 'attained': 2, 'quieted': 2, 'driving': 4, 'centered': 1, 'staying': 19, 'engaged': 38, 'liked': 7, 'disturb': 5, 'timed': 3, 'called': 43, 'chanced': 3, 'implies': 1, 'love': 26, 'like': 35, 'esteem': 3, 'separate': 4, 'took': 51, 'acquainted': 25, 'attaching': 4, 'banished': 2, 'comprehended': 3, 'assisted': 6, 'assured': 26, 'militated': 1, 'established': 11, 'perceive': 13, 'looked': 60, 'approaching': 3, 'miss': 2, 'meet': 22, 'gain': 8, 'look': 37, 'disapprove': 2, 'striking': 5, 'has': 56, 'attach': 5, 'announce': 5, 'seems': 23, 'attract': 3, 'admires': 3, 'draws': 1, 'knows': 14, 'satisfy': 9, 'united': 6, 'enter': 12, 'charm': 1, 'reading': 3, 'bore': 4, 'seemed': 90, 'notice': 3, 'driven': 4, 'pronounced': 4, 'animated': 6, 'overlook': 4, 'broke': 5, 'require': 3, 'ornament': 1, 'drawing': 6, 'draw': 8, 'seeing': 41, 'assure': 32, 'improving': 6, 'drawn': 12, 'distrusts': 1, 'direct': 5, 'offending': 3, 'smiling': 12, 'honoured': 4, 'continued': 53, 'wound': 4, 'offended': 7, 'estimating': 2, 'dissatisfied': 3, 'express': 15, 'find': 55, 'seen': 55, 'concealed': 9, 'keeps': 1, 'call': 32, 'kept': 29, 'thrown': 10, 'engrossed': 3, 'studied': 2, 'heard': 78, 'venture': 6, 'pronounce': 3, 'improve': 4, 'perceived': 12, 'tell': 81, 'started': 8, 'betrayed': 6, 'speaking': 20, 'stood': 10, 'believed': 30, 'conjectured': 3, 'tried': 21, 'explain': 8, 'attempt': 12, 'deny': 8, 'burst': 12, 'Esteem': 1, 'Use': 2, 'help': 16, 'laughing': 8, 'Excuse': 2, 'Believe': 2, 'declared': 27, 'warrant': 5, 'are': 8, 'wonder': 20, 'calling': 12, 'astonished': 10, 'outstripped': 1, 'happen': 12, 'proceed': 6, 'lose': 4, 'stimulated': 1, 'spoke': 34, 'supposing': 5, 'produce': 7, 'attended': 18, 'forbade': 1, 'behaved': 11, 'form': 7, 'attending': 10, 'depending': 2, 'affronting': 2, 'attempted': 11, 'DRAW': 1, 'pretend': 6, 'endeavor': 1, 'marked': 6, 'resolving': 3, 'exposed': 5, 'delivered': 5, 'contained': 4, 'written': 14, 'understood': 14, 'offered': 10, 'pleased': 8, 'judge': 5, 'fail': 4, 'suffering': 11, 'unfeeling': 1, 'formed': 23, 'quit': 9, 'continuing': 7, 'visit': 14, 'wrote': 12, 'hastened': 3, 'shew': 6, 'oppose': 4, 'removing': 7, 'brought': 58, 'dissuade': 3, 'dispatched': 1, 'indulged': 2, 'announcing': 4, 'incommode': 1, 'inhabiting': 1, 'hoped': 19, 'replying': 1, 'hearing': 22, 'repeated': 28, 'explained': 11, 'travelling': 5, 'accommodating': 2, 'concluded': 11, 'tended': 2, 'show': 5, 'disregarded': 4, 'told': 67, 'vexed': 5, 'limited': 2, 'impracticable.--': 1, 'consisted': 1, 'depart': 1, 'feeling': 16, 'trifling': 1, 'furnished': 2, 'arose': 9, 'waited': 10, 'determine': 9, 'set': 32, 'interested': 3, 'offering': 3, 'disposing': 1, 'agreed': 9, 'sell': 4, 'consulted': 2, 'prevailed': 5, 'prepare': 3, 'preferred': 2, 'examine': 4, 'entered': 39, 'preserved': 5, 'defer': 4, 'fulfilled': 4, 'neglected': 2, 'quitting': 4, 'extended': 5, 'talked': 32, 'increasing': 5, 'stand': 11, 'enable': 5, 'begin': 7, 'shed': 2, 'wandered': 3, 'cease': 5, 'suffer': 14, 'viewing': 2, 'view': 1, 'continue': 4, 'decay': 1, 'removed': 15, 'become': 17, 'walk': 13, 'remain': 12, 'enjoy': 8, 'drew': 14, 'inhabit': 1, 'overcame': 4, 'wooded': 1, 'winding': 2, 'reached': 23, 'admitted': 5, 'tiled': 1, 'painted': 3, 'covered': 5, 'built': 2, 'dried': 2, 'cheered': 1, 'appear': 24, 'recommending': 1, 'lasting': 3, 'rose': 13, 'cultivated': 1, 'commanded': 2, 'surrounded': 2, 'terminated': 1, 'branched': 1, 'add': 6, 'building': 2, 'collected': 5, 'throwing': 4, 'widen': 1, 'plan': 1, 'contented': 4, 'arranging': 2, 'placing': 3, 'affixed': 1, 'interrupted': 6, 'welcome': 3, 'offer': 7, 'visited': 8, 'remember': 16, 'humoured': 9, 'dine': 8, 'confined': 9, 'followed': 17, 'insisted': 4, 'conveying': 2, 'denied': 5, 'denoting': 1, 'waiting': 12, 'depend': 8, 'improved': 7, 'detract': 1, 'bred': 8, 'reserved': 5, 'bringing': 12, 'means': 5, 'recurred': 2, 'enquire': 5, 'admire': 9, 'ask': 35, 'hung': 3, 'held': 8, 'wondered': 11, 'resembled': 4, 'differed': 1, 'debating': 3, 'securing': 3, 'passed': 50, 'screened': 1, 'hunted': 1, 'shot': 1, 'spoil': 2, 'supplied': 3, 'supported': 13, 'piqued': 1, 'delighted': 11, 'collecting': 1, 'hold': 10, 'forming': 4, 'eat': 6, 'charmed': 2, 'procured': 12, 'secure': 7, 'captivating': 3, 'showing': 2, 'settling': 3, 'esteems': 2, 'encouraging': 6, 'met': 24, 'welcomed': 3, 'excuse': 7, 'procuring': 4, 'vulgar': 1, 'pretended': 1, 'adapted': 1, 'recommend': 2, 'roused': 5, 'enjoyment': 1, 'pulled': 2, 'tore': 1, 'put': 43, 'discovered': 7, 'play': 5, 'prepared': 8, 'sang': 3, 'went': 49, 'lain': 1, 'celebrated': 1, 'played': 2, 'lasted': 7, 'order': 1, 'diverted': 4, 'asked': 22, 'sing': 1, 'finished': 12, 'forfeited': 1, 'amounted': 1, 'sympathize': 1, 'contrasted': 1, 'outlived': 3, 'missed': 6, 'projecting': 2, 'enjoyed': 4, 'raising': 2, 'suspected': 8, 'ascertained': 2, 'laughed': 16, 'regarded': 8, 'laugh': 7, 'censure': 5, 'ventured': 6, 'clear': 1, 'wishing': 13, 'throw': 3, 'protect': 1, 'deceive': 4, 'complain': 3, 'declining': 6, 'seem': 20, 'apprehensive': 1, 'losing': 1, 'marrying': 13, 'pausing': 4, 'inspire': 2, 'be': 7, 'bring': 17, 'submit': 10, 'benefited': 3, 'convince': 9, 'object': 6, 'dooming': 1, 'afflict': 1, 'despised': 1, 'leaving': 22, 'conceal': 8, 'occasion': 1, 'detain': 4, 'recollecting': 4, 'showed': 2, 'accepting': 6, 'mentioned': 18, 'observed': 15, 'composed': 4, 'follow': 7, 'cried': 85, 'dejected': 1, 'try': 7, 'finding': 14, 'employed': 11, 'mix': 4, 'were': 6, 'issued': 2, 'reminding': 1, 'learnt': 8, 'stirred': 1, 'abounded': 1, 'seek': 3, 'shut': 7, 'bear': 23, 'preceding': 6, 'occasioned': 5, 'tempting': 1, 'ascended': 2, 'rejoicing': 3, 'caught': 11, 'animating': 1, 'pitied': 4, 'prevented': 15, 'sharing': 3, 'this?--Margaret': 1, 'pursued': 3, 'resisting': 1, 'Chagrined': 1, 'surprised': 6, 'obliged': 46, 'turn': 10, 'running': 3, 'stop': 6, 'hurried': 7, 'carrying': 8, 'playing': 3, 'passing': 7, 'ran': 9, 'raised': 12, 'twisted': 3, 'perceiving': 6, 'declined': 7, 'seated': 10, 'fixed': 23, 'sprung': 5, 'apologized': 1, 'relating': 5, 'came': 86, 'thanked': 7, 'granted': 2, 'departed': 3, 'crimsoned': 2, 'lifting': 1, 'robbed': 4, 'regarding': 3, 'entering': 7, 'join': 12, 'adorned': 2, 'becoming': 3, 'sprained': 1, 'allowed': 17, 'ride': 4, 'Know': 2, 'puzzled': 6, 'got': 26, 'describe': 6, 'Has': 2, 'resided': 2, 'visiting': 4, 'inherit': 1, 'adding': 1, 'catching': 8, 'incommoded': 1, 'let': 26, 'danced': 1, 'sitting': 18, 'setting': 6, 'dislike': 6, 'abhor': 1, 'making': 22, 'deemed': 1, 'styled': 1, 'prompted': 3, 'happens': 2, 'declare': 15, 'mention': 10, 'talk': 37, 'Encouraged': 1, 'question': 4, 'idolized': 1, 'displayed': 3, 'acquiesced': 1, 'conversed': 3, 'thinks': 8, 'admiring': 3, 'exhausted': 1, 'suffice': 2, 'erred': 2, 'spoken': 15, 'spared': 11, 'scold': 2, 'check': 3, 'softened': 8, 'joined': 18, 'saying': 37, 'sacrificing': 1, 'seized': 1, 'delineated': 1, 'congratulate': 5, 'noticed': 2, 'incurred': 1, 'annexed': 1, 'assigned': 2, 'excited': 3, 'forward': 1, 'opposed': 3, 'reserve': 1, 'beheld': 3, 'dropped': 6, 'justified': 6, 'esteemed': 1, 'slighted': 4, 'prejudiced': 1, 'undervalue': 1, 'speaks': 2, 'cares': 5, 'remembers': 1, 'boast': 3, 'taking': 21, 'converse': 3, 'patronised': 1, 'doubt': 17, 'stretched': 3, 'employ': 4, 'Add': 1, 'decide': 4, 'possessing': 1, 'using': 2, 'endeavouring': 8, 'disarm': 1, 'disliking': 3, 'threatened': 2, 'persuade': 8, 'buy': 8, 'confess': 11, 'imagined': 8, 'occupy': 1, 'presented': 5, 'recovered': 13, 'accomplished': 1, 'included': 1, 'calculated': 5, 'witnessing': 1, 'marking': 1, 'receiving': 13, 'suggest': 4, 'abhorred': 2, 'attend': 11, 'aim': 1, 'cheated': 2, 'shame': 1, 'provoke': 4, 'checking': 3, 'bestowed': 7, 'teach': 2, 'ensured': 3, 'been': 3, 'desired': 5, 'arranged': 7, 'experienced': 4, 'claim': 3, 'excite': 2, 'suspect': 12, 'dancing': 1, 'considers': 2, 'does': 14, 'contrives': 1, 'reflecting': 2, 'define': 1, 'justify': 10, 'agree': 6, 'atone': 2, 'resumed': 1, 'disappointed': 8, 'admit': 6, 'desire': 4, 'succeeded': 7, 'speak': 59, 'judged': 14, 'stopt': 5, 'concerned': 9, 'escape': 5, 'connect': 1, 'walking': 13, 'communicated': 6, 'carry': 5, 'considering': 6, 'alter': 2, 'build': 6, 'intends': 2, 'send': 11, 'arrives': 1, 'share': 7, 'Imagine': 1, 'awaken': 1, 'comprehend': 8, 'refused': 3, 'touch': 3, 'tender': 1, 'representing': 1, 'consented': 4, 'subdued': 2, 'tempt': 7, 'mentioning': 4, 'forego': 1, 'expressing': 3, 'use': 4, 'overheard': 1, 'pronouncing': 3, 'addressing': 4, 'decided': 7, 'discover': 5, 'placed': 12, 'wore': 2, 'round': 8, 'Take': 2, 'cut': 6, 'whispering': 1, 'tumbled': 1, 'kissed': 3, 'folded': 2, 'stated': 1, 'withhold': 2, 'attacked': 1, 'standing': 5, 'turning': 13, 'Remember': 4, 'repeat': 5, 'guess': 8, 'begins': 1, 'observing': 8, 'rained': 3, 'opened': 10, 'sit': 13, 'fell': 12, 'recover': 2, 'following': 9, 'fatigued': 2, 'frightened': 3, 'go': 97, 'assembled': 2, 'breakfast': 1, 'dispersing': 1, 'changed': 8, 'thank': 5, 'discompose': 2, 'Come': 7, 'recollect': 6, 'colouring': 4, 'requires': 3, 'fear': 8, 'write': 15, 'shook': 4, 'delay': 3, 'invented': 2, 'persuading': 5, 'change': 5, 'walked': 29, 'disappointing': 2, 'pry': 1, 'announced': 4, 'farewell': 1, 'bowed': 4, 'restrained': 2, 'shocking': 1, 'lowering': 3, 'stare': 1, 'concluding': 3, 'procure': 4, 'ordered': 2, 'drove': 6, 'sat': 35, 'leant': 1, 'coloured': 7, 'propose': 1, 'enquired': 1, 'doubting': 2, 'evince': 1, 'acting': 6, 'value': 2, 'blushed': 5, 'gratifying': 3, 'hanging': 4, 'admired': 5, 'advantage': 2, 'listened': 9, 'concealing': 4, 'filled': 5, 'befallen': 1, 'reckoned': 2, 'involved': 5, 'cleared': 3, 'varying': 3, 'seeming': 5, 'bestow': 9, 'acknowledge': 12, 'rated': 2, 'complained': 3, 'maintained': 6, 'account': 8, 'distinguishing': 2, 'ending': 1, 'happening': 1, 'exclaimed--"Improve': 1, 'consent': 3, 'alarmed': 3, 'Thank': 5, 'sacrifice': 1, 'Depend': 2, 'pull': 1, 'smokes': 1, 'flatter': 4, 'endear': 1, 'denoted': 1, 'inhabited': 1, 'grieving': 5, 'next': 1, 'experience': 1, 'degrade': 1, 'pass': 8, 'makes': 6, 'Extend': 1, 'Tell': 8, 'dear': 2, 'excused': 3, 'foreseen': 2, 'noticing': 1, 'leaning': 8, 'shewed': 4, 'partook': 1, 'powered': 1, 'entered--"is': 1, 'trying': 8, 'forced': 24, 'exercised': 1, 'returning': 13, 'wait': 19, 'press': 6, 'broken': 12, 'linger': 2, 'torment': 1, 'step': 1, 'accept': 10, 'disturbed': 3, 'feared': 13, 'feeding': 1, 'work': 2, 'travel': 4, 'Gone': 1, 'intending': 3, 'return!--Something': 1, 'owned': 2, 'behave': 4, 'quarrelled': 1, 'shewn': 5, 'suspects': 1, 'sends': 2, 'transact': 1, 'dismiss': 1, 'dares': 1, 'feels': 1, 'absent': 1, 'listen': 6, 'point': 2, 'understanding': 3, 'anticipated': 2, 'depressed': 1, 'witnessed': 5, 'urged': 10, 'wondering': 5, 'practiced': 1, 'blame': 4, 'departing': 2, 'acquitted': 2, 'Concealing': 1, 'accuse': 1, 'reproaching': 2, 'affectionate': 2, 'occur': 8, 'telling': 8, 'part': 2, 'outweighs': 1, 'attribute': 5, 'correspond': 2, 'unreserved': 1, 'create': 2, 'startled': 5, 'resist': 9, 'deserve': 8, 'acknowledging': 5, 'begun': 7, 'avoided': 7, 'pressing': 3, 'sleep': 1, 'risen': 1, 'incurring': 1, 'wept': 3, 'forbidding': 2, 'indulging': 3, 'crying': 4, 'used': 19, 'gazing': 2, 'applied': 3, 'singing': 1, 'suspended': 3, 'courted': 2, 'sunk': 9, 'satisfied': 5, 'fetches': 1, 'carries': 2, 'suggesting': 2, 'indulgent': 1, 'Supposing': 1, 'forcing': 4, 'unacknowledged': 1, 'loves': 5, 'force': 6, 'wishes': 3, 'overstrained': 1, 'wandering': 4, 'stole': 1, 'climbing': 1, 'disapproved': 1, 'controlled': 1, 'gaining': 3, 'travelled': 5, 'reaching': 1, 'stopped': 11, 'reach': 4, 'riding': 1, 'distinguish': 4, 'exclaimed': 7, 'hastening': 2, 'screen': 2, 'quickened': 1, 'hurrying': 1, 'forgiven': 10, 'dispersed': 1, 'smile': 6, 'dismounted': 1, 'confused': 1, 'distinguished': 4, 'ended': 9, 'end': 7, 'looks': 7, 'fall': 5, 'inspired': 1, 'regard': 5, 'swept': 1, 'shared': 3, 'rousing': 3, 'Look': 3, 'rises': 1, 'Have': 2, 'situated': 4, 'owed': 7, 'directing': 1, 'endeavoured': 7, 'extorting': 1, 'mortified': 2, 'regulate': 1, 'extending': 1, 'reanimate': 1, 'praised': 1, 'attributing': 2, 'goes': 5, 'guessed': 4, 'smiled': 7, 'describing': 1, 'hunt': 1, 'sparkling': 1, 'glowing': 2, 'vanish': 1, 'content': 1, 'falling': 4, 'tells': 2, 'Forgive': 2, 'forgot': 9, 'recall': 3, 'offend': 6, 'laid': 9, 'presume': 1, 'altered': 5, 'grown': 6, 'reproach': 3, 'talks': 1, 'detected': 1, 'fancying': 3, 'originated': 3, 'guided': 5, 'deliberate': 1, 'aimed': 2, 'confound': 1, 'advised': 4, 'adopt': 6, 'conform': 1, 'shyness': 1, 'started--"Reserved': 1, 'calls': 2, 'inspiring': 1, 'hitherto': 2, 'contradicted': 5, 'intimated': 1, 'promote': 6, 'beginning': 6, 'struck': 9, 'snug': 1, 'scattered': 1, 'answers': 1, 'unites': 1, 'lost': 19, 'falls': 2, 'believes': 1, 'disgusted': 3, 'affects': 1, 'possesses': 1, 'pretends': 1, 'tries': 1, 'defined': 1, 'worn': 2, 'hackneyed': 1, 'profess': 2, 'crooked': 2, 'flourishing': 1, 'ruined': 4, 'please': 10, 'wear': 2, 'promising': 2, 'pained': 4, 'surpassed': 1, 'casts': 1, 'affecting': 3, 'catch': 3, 'eyeing': 2, 'satisfying': 4, 'censured': 2, 'discovering': 2, 'learned': 3, 'founded': 7, 'inviting': 4, 'drink': 3, 'bound': 6, 'contribute': 1, 'enforced': 2, 'dance': 3, 'guessing': 1, 'hunts': 1, 'you?--But': 1, 'grew': 7, 'disengaged': 1, 'detested': 1, 'extorted': 1, 'attributed': 4, 'temporizing': 1, 'reformed': 1, 'result': 1, 'promoted': 2, 'trades': 1, 'wasted': 2, 'defy': 1, 'desponding': 1, 'subdue': 1, 'appearing': 6, 'suffered': 26, 'fix': 8, 'solitude': 1, 'lessen': 7, 'dared': 8, 'loving': 1, 'respecting': 3, 'shutting': 1, 'lying': 2, 'indulge': 3, 'produce,--with': 1, 'forbidden': 1, 'chained': 1, 'knocking': 1, 'stepping': 3, 'open': 5, 'mind': 3, 'run': 5, 'hallooing': 1, 'drinking': 1, 'surveying': 1, 'staid': 2, 'endowed': 2, 'ceasing': 2, 'nodding': 1, 'pointing': 1, 'expects': 2, 'endure': 3, 'exerted': 2, 'ushered': 1, 'stared': 1, 'examining': 4, 'pitched': 1, 'chuse': 7, 'dined': 5, 'ate': 3, 'yield': 1, 'merry': 1, 'expressed': 15, 'seating': 2, 'chaperon': 1, 'bowing': 1, 'complaining': 1, 'horrid': 1, 'dropt': 3, 'taste': 2, 'contradict': 2, 'abuse': 1, 'care': 9, 'scolded': 3, 'abused': 1, 'inclined': 4, 'hurt': 8, 'succeed': 2, 'establishing': 1, 'applying': 2, 'now,"--said': 1, 'refuse': 2, 'canvassing': 1, 'assented': 2, 'directed': 4, 'frank': 1, 'declares': 2, 'palm': 1, 'asking': 6, 'decline': 1, 'changing': 1, 'gathered': 1, 'inquiring': 3, 'inquire': 5, 'surprise': 5, 'pray': 6, 'flattered': 4, 'own': 3, 'objected': 1, 'entertain': 1, 'last': 3, 'existed': 2, 'invite': 1, 'resigned': 2, 'contenting': 2, 'prevail': 5, 'obtain': 3, 'boasting': 1, 'extolling': 1, 'courting': 2, 'humouring': 1, 'unceasing': 4, 'swallow': 1, 'viewed': 1, 'submitted': 6, 'untied': 1, 'searched': 2, 'stolen': 2, 'suggested': 4, 'claiming': 1, 'pinching': 1, 'caressing': 1, 'bestowing': 3, 'scratching': 1, 'outdone': 1, 'surpass': 1, 'assuage': 1, 'bathed': 1, 'stuffed': 1, 'screamed': 2, 'sobbed': 1, 'kicked': 1, 'remembering': 3, 'bruised': 1, 'proposed': 4, 'chose': 7, 'entreated': 2, 'estimate': 1, "'s": 2, 'dress': 1, 'blinded': 1, 'dealt': 1, 'consists': 1, 'proclaiming': 1, 'alluded': 3, 'sport': 2, 'deficient': 1, 'communicate': 6, 'unavailing': 1, 'checked': 5, 'endeavour': 3, 'engaging': 5, 'striving': 1, 'enquiring': 2, 'trusting': 2, 'manage': 1, 'trouble': 4, 'fixing': 3, 'divine': 1, 'varied': 1, 'trusted': 6, 'paused': 6, 'shocked': 3, 'attached': 9, 'revived': 2, 'falsehood--"Engaged': 1, 'beg': 10, 'deceived': 10, 'depends': 3, 'sink': 4, 'puts': 1, 'doubts': 1, 'detecting': 1, 'keeping': 1, 'exceeding': 3, 'imagining': 2, 'pardon': 2, 'hoping': 4, 'betraying': 5, 'wiping': 1, 'break': 1, 'advise': 8, 'provide': 1, 'cast': 5, 'remembered': 5, 'writes': 2, 'obtained': 3, 'subsist': 1, 'authorised': 3, 'struggled': 1, 'Writing': 1, 'confounded': 1, 'ends': 2, 'inventing': 1, 'asserted': 1, 'condemning': 1, 'deceiving': 2, 'feigned': 2, 'forgive': 8, 'defended': 1, 'injured': 11, 'deprived': 3, 'blind': 3, 'succeeding': 6, 'alienated': 1, 'Supported': 1, 'merit': 1, 'consoled': 3, 'forfeit': 2, 'guard': 1, 'mourning': 1, 'divide': 4, 'dwelling': 1, 'entrusted': 1, 'flow': 1, 'renewing': 1, 'conversing': 2, 'trust': 9, 'joking': 1, 'beloved': 1, 'combat': 2, 'mistrust': 1, 'joining': 1, 'affording': 3, 'foresaw': 1, 'seclude': 2, 'accompanied': 2, 'entertained': 2, 'finish': 3, 'recollected': 5, 'disappoint': 2, 'ring': 1, 'working': 4, 'reseated': 1, 'infer': 2, 'touched': 1, 'tuned': 1, 'smooth': 1, 'toned': 1, 'rolling': 1, 'profited': 1, 'condescend': 2, 'practise': 2, 'forwarding': 1, 'wrapped': 1, 'forgotten': 5, 'introduce': 5, 'undeserving': 1, 'apologize': 1, 'breaking': 4, 'Offended': 1, 'displeasure': 1, 'quarrelling': 1, 'relieve': 3, 'thinking': 14, 'need': 2, 'robbing': 1, 'deprive': 3, 'failed': 3, 'guarding': 2, 'sigh': 1, 'impose': 1, 'involve': 1, 'owning': 1, 'frightens': 1, 'likes': 4, 'bit': 1, 'prefer': 1, 'dissolving': 1, 'beset': 1, 'wrong': 2, 'resolve': 1, 'frighten': 1, 'dividing': 2, 'laying': 3, 'biased': 1, 'brightened': 1, 'meeting': 7, 'induce': 1, 'introducing': 2, 'inform': 5, 'dismissed': 5, 'lengthened': 3, 'implied': 3, 'fulfill': 3, 'proclaim': 1, 'spending': 1, 'traded': 1, 'accompany': 4, 'alleged': 1, 'favour': 1, 'fancy': 7, 'bless': 5, 'poking': 1, 'strike': 2, 'insured': 2, 'referred': 2, 'influence': 2, 'disregard': 2, 'wounding': 2, 'witness': 5, 'foresee': 4, 'accrue': 1, 'obviating': 1, 'persisted': 2, 'abandoned': 1, 'reconciled': 4, 'anticipate': 1, 'attempting': 9, 'weaken': 2, 'revealed': 3, 'lifted': 1, 'prevailing': 3, 'putting': 4, 'counteracted': 1, 'exhilarated': 1, 'elevated': 4, 'distrust': 3, 'calmness': 2, 'overlooked': 1, 'beamed': 1, 'watching': 8, 'ascertain': 2, 'banish': 1, 'wrapt': 1, 'addressed': 3, 'choose': 3, 'extort': 1, 'preferring': 1, 'cod': 1, 'boiled': 1, 'released': 3, 'writing': 8, 'conduct': 2, 'sealed': 1, 'ringing': 1, 'conveyed': 3, 'listening': 6, 'starting': 2, 'borne': 10, 'advanced': 4, 'exclaiming': 1, 'demanded': 1, 'caused': 1, 'conjure': 1, 'dining': 1, 'commissioned': 1, 'agreeing': 1, 'forget': 11, 'concerning': 2, 'abstracted': 1, 'occupied': 2, 'concern': 1, 'dawdled': 1, 'flew': 2, 'note': 1, 'permitting': 1, 'long': 1, 'MY': 1, 'represent': 3, 'holds': 1, 'tis': 4, 'pity': 6, 'freeze': 1, 'DID': 5, 'eluded': 1, 'persevered': 1, 'excepting': 1, 'compound': 2, 'amuse': 4, 'derived': 2, 'strengthening': 1, 'grieved': 2, 'watched': 9, 'escaped': 7, 'expecting': 5, 'requesting': 1, 'contrived': 3, 'collect': 4, 'risking': 1, 'nodded': 1, 'sauntered': 1, 'Invited': 1, 'lead': 6, 'awakening': 1, 'delayed': 4, 'urging': 2, 'demand': 3, 'foretold': 2, 'hated': 2, 'remains': 2, 'debated': 1, 'shield': 1, 'confirm': 3, 'dispirited': 2, 'stirring': 3, 'altering': 1, 'alighted': 1, 'lit': 2, 'curtsying': 1, 'permitted': 2, 'mingle': 1, 'moving': 4, 'approach': 1, 'unobserved': 1, 'betray': 1, 'approached': 3, 'inquired': 4, 'shake': 1, 'struggling': 1, 'regretted': 3, 'reviving': 3, 'Go': 1, 'rest': 3, 'Wait': 2, 'entreat': 5, 'oppressed': 7, 'hartshorn': 1, 'undressed': 1, 'subsisted': 2, 'feed': 2, 'mistake': 1, 'unprincipled': 1, 'sporting': 1, 'weakened': 2, 'await': 1, 'ESTEEM': 1, 'embitter': 1, 'uniting': 2, 'heighten': 2, 'dressed': 3, 'kneeling': 1, 'permit': 1, 'sooth': 1, 'tranquilize': 1, 'requiring': 2, 'wander': 1, 'avoiding': 3, 'pitying': 2, 'liking': 3, 'measuring': 2, 'disappeared': 2, 'imply': 1, 'spreading': 4, 'opening': 1, 'choked': 1, 'covering': 1, 'follows': 2, 'guarded': 2, 'obey': 1, 'proclaimed': 1, 'hardened': 4, 'served': 4, 'treating': 5, 'dictate': 2, 'Determined': 1, 'contributing': 1, 'indisposed': 2, 'rise': 1, 'slept': 2, 'aching': 2, 'exclaim': 1, 'kill': 2, 'Think': 1, 'distress': 2, 'hate': 3, 'torture': 4, 'leaves': 1, 'him?"--': 1, 'Pray': 2, 'repulsed': 1, 'lowered': 1, 'acted': 4, 'grieve': 2, 'acquit': 4, 'hazarded': 1, 'warranted': 1, 'condemned': 2, 'instigated': 1, 'leagued': 1, 'bely': 1, 'contend': 2, 'supports': 1, 'resists': 1, 'objects': 1, 'shuddering': 1, 'repeating': 3, 'premeditated': 1, 'ensued': 2, 'comfort': 3, 'regards': 1, 'lie': 3, 'constrained': 1, 'drops': 1, 'plague': 1, 'governed': 4, 'adjusting': 1, 'summoned': 2, 'distressing': 2, 'tempted': 1, 'amused': 3, 'cure': 2, 'grieves': 1, 'finishing': 2, 'dashing': 1, 'signify': 6, 'promises': 1, 'fly': 1, 'grows': 1, 'hinted': 2, 'moan': 1, 'hates': 1, 'wants': 2, 'Let': 2, 'joked': 1, 'caution': 1, 'naming': 1, 'blown': 1, 'defend': 4, 'Mind': 1, 'chuckle': 1, 'prenticed': 1, 'spirit': 1, 'drives': 1, 'rising': 7, 'repaired': 1, 'tasted': 1, 'regretting': 5, 'swallowed': 1, 'reflected': 1, 'healing': 1, 'fancied': 8, 'presided': 1, 'KNEW': 1, 'unfolded': 1, 'identify': 1, 'stayed': 2, 'think"--he': 1, 'awoke': 1, 'closed': 3, 'acquitting': 1, 'prove': 7, 'rushing': 1, 'inforce': 1, 'streamed': 1, 'withdrew': 4, 'referring': 1, 'relying': 2, 'dearer': 1, 'refusing': 2, 'retreating': 1, 'proved': 13, 'esteeming': 1, 'desiring': 1, 'convincing': 4, 'tending': 2, 'sighing': 1, 'resembling': 1, 'judging': 3, 'relate': 3, 'eloping': 1, 'lament': 1, 'restrain': 2, 'threw': 3, 'gloom,--even': 1, 'suffered--': 1, 'arrive': 1, 'trace': 3, 'dispose': 3, 'fallen': 2, 'spunging': 1, 'faded': 1, 'doted': 2, 'endured': 1, 'beholding': 1, 'handle': 1, 'discharged': 2, 'place': 4, 'residing': 1, 'deserved': 6, 'ranging': 1, 'Willoughby!"--': 1, 'forwarded': 1, 'availed': 1, 'seduced': 1, 'relieved': 4, 'Knowing': 1, 'irresolute': 1, 'interfering': 1, 'reclaim': 1, 'compares': 1, 'pictures': 1, 'tormented': 1, 'strengthen': 1, 'communicating': 2, 'irritates': 1, 'confessed': 3, 'punish': 1, 'sighed': 4, 'presumed': 1, 'preyed': 1, 'brooding': 1, 'answering': 2, 'mortifying': 1, 'afflicting': 1, 'shorten': 1, 'comprise': 1, 'cheat': 1, 'spurned': 1, 'paying': 5, 'foreseeing': 1, 'doomed': 2, 'suspecting': 1, 'comforted': 1, 'militate': 1, 'reaped': 1, 'drop': 2, 'worried': 1, 'rate': 1, 'earned': 3, 'soften': 2, 'disclosing': 1, 'oblige': 2, 'augmented': 1, 'commission': 1, 'arbour': 1, 'informing': 2, 'TOLD': 1, 'post': 1, 'simpering': 1, 'laughs': 1, 'crossing': 1, 'do--': 1, 'humour': 1, 'interposed': 2, 'silenced': 2, 'plagued': 2, 'governing': 1, 'yielded': 1, 'conditioned': 1, 'transacted': 1, 'ascending': 1, 'tend': 2, 'promise': 1, 'exciting': 1, 'comprised': 1, 'imprint': 1, 'deciding': 2, 'named': 1, 'bespeak': 2, 'serve': 3, 'eyed': 2, 'secures': 1, 'hang': 1, 'that"--lowering': 1, 'Recollecting': 1, 'vouchsafe': 1, 'adjoining': 1, 'cost': 4, 'bequeathed': 1, 'slope': 1, 'buying': 1, 'dies': 1, 'descend': 2, 'saves': 1, 'destroys': 1, 'relinquished': 1, 'promoting': 4, 'atoning': 1, 'associate': 1, 'rewarded': 3, 'sympathised': 1, 'suit': 2, 'flowed': 1, 'inflicting': 1, 'behold': 1, 'sourness': 1, 'rescued': 1, 'proportioned': 1, 'humble': 1, 'mortify': 2, 'misapplied': 1, 'despising': 1, 'teazed': 1, 'bespoke': 1, 'laboured': 1, 'inclosing': 1, 'enforcing': 1, 'declaring': 3, 'mounted': 1, 'ornamented': 1, 'handed': 2, 'disclaiming': 1, 'paint': 1, 'provoked': 2, 'foretell': 1, 'distresses': 2, 'hiding': 2, 'enraged': 1, 'retained': 2, 'perplexed': 1, 'retarded': 1, 'rejoice': 3, 'fettered': 3, 'derive': 1, 'dreaded': 4, 'so"--replied': 1, 'speak;--sure': 1, 'have.--Poor': 1, 'spends': 1, 'advance': 3, 'LOOK': 1, 'deter': 1, 'exceeded': 1, 'volunteer': 1, 'fetching': 2, 'loitered': 1, 'conciliate': 1, 'muttered': 1, 'cause': 1, 'Engaged': 1, 'HAS': 2, 'performing': 1, 'Going': 1, 'whispered': 2, 'outstaid': 1, 'teazing': 1, 'tricked': 1, 'expose': 2, 'influenced': 2, 'intruding': 1, 'monopolize': 1, 'discomposed': 1, 'reconcile': 1, 'unsuspected': 1, 'congratulated': 1, 'minute': 1, 'befell': 2, 'outrun': 1, 'undergoing': 1, 'preceded': 1, 'inconvenience': 1, 'unrestrained': 1, 'lamenting': 1, 'mixing': 2, 'reside': 2, 'think,"--was': 1, 'protest': 2, 'drive': 3, 'managed': 2, 'measured': 1, 'pacified': 1, 'request': 1, 'cherishing': 1, 'shown': 1, 'vouchsafed': 1, 'strengthened': 3, 'resume': 1, 'resettled': 1, 'all.--': 1, 'fretted': 1, 'stepped': 1, 'smirked': 1, 'simpered': 1, 'joke': 1, 'turns': 1, 'meaning': 2, 'popt': 1, 'dreaming': 1, 'packed': 1, 'hears': 1, 'fit': 1, 'preparing': 5, 'undeceiving': 1, 'perform': 3, 'dwell': 1, 'practised': 1, 'belonged': 1, 'state': 1, 'soothe': 2, 'utter': 1, 'exclaimed--': 1, 'months!--Have': 1, 'confirmed': 2, 'months!"--cried': 1, 'undeceive': 1, 'harbour': 1, 'bewitching': 2, 'so.--': 1, 'enjoying': 3, 'spring': 1, 'silence': 1, 'cries': 1, 'obtaining': 1, 'dissented': 1, 'advances': 1, 'weathered': 1, 'alarm': 1, 'apprehended': 1, 'planning': 2, 'represented': 2, 'protested': 1, 'advancing': 2, 'clapped': 1, 'retort': 1, 'deserves': 1, 'dignified': 2, 'wrung': 1, 'braving': 1, 'reward': 1, 'Born': 1, 'picture': 1, 'forbear': 1, 'gloried': 1, 'forgave': 2, 'urge': 5, 'accosted': 1, 'Get': 1, 'vowed': 1, 'trim': 1, 'plaguing': 1, 'expedient': 1, 'spread': 2, 'interrupt': 2, 'interrupting': 1, 'Laughing': 1, 'lodging': 1, 'light': 1, 'ordained': 3, 'get!--Good': 1, 'giggling': 1, 'reply': 1, 'torn': 3, 'claimed': 1, 'foreplanned': 1, 'furnishing': 1, 'Edward': 1, 'reminds': 1, 'conclude': 2, 'chance': 1, 'heart': 1, 'effected': 1, 'resisted': 3, 'detaining': 1, 'inforced': 1, 'argue': 1, 'overcoming': 2, 'triumph': 1, 'Dashwoods;"--was': 1, 'gape': 1, 'copy': 1, 'pursue': 1, 'apologising': 3, 'commended': 1, 'Astonished': 1, 'cry': 1, 'hinder': 1, 'persevering': 1, 'presenting': 1, 'undertake': 2, 'soon.--': 1, 'worded': 1, 'arisen': 2, 'withdrawn': 1, 'TRIED': 1, 'compassionate': 1, "an't": 1, 'repair': 1, 'works': 1, 'deliberating': 2, 'congratulating': 1, 'determining': 1, 'intruded': 1, 'recovering': 3, 'charged': 1, 'Allow': 1, 'establish': 2, 'LOOKED': 1, 'gathering': 1, 'contributed': 2, 'hurry': 3, 'befall': 1, 'reconsider': 1, 'reverted': 1, 'conjecture': 1, 'complete': 2, 'marries': 1, 'exchanged': 1, 'forfeiting': 1, 'worship': 1, 'avail': 1, 'disliked': 2, 'affront': 1, 'assuring': 2, 'fetch': 3, 'vacate': 1, 'bears': 1, 'refrain': 1, 'impoverished': 1, 'be.--': 1, 'befalls': 1, 'retain': 2, 'discarded': 1, 'accelerate': 1, 'NOW,"--said': 1, 'gratify': 2, 'mentioned--': 1, 'agitate': 1, 'fill': 2, 'dissipated': 1, 'confirming': 3, 'publishing': 1, 'recalled': 2, 'born': 4, 'intend': 1, 'captivate': 1, 'interfere': 1, 'hit': 1, 'disapproving': 1, 'starved': 2, 'enamoured': 1, 'completed': 1, 'Delaford;--a': 1, 'extinguished': 1, 'shedding': 2, 'lingering': 2, 'restoring': 1, 'prohibited': 2, 'sloping': 1, 'dotted': 1, 'interspersed': 1, 'swelling': 1, 'stealing': 1, 'whiled': 1, 'lounging': 1, 'dawdling': 1, 'nipped': 1, 'forsaking': 1, 'deterred': 1, 'Reading': 1, 'atoned': 1, 'conceited': 1, 'reduced': 2, 'slight': 1, 'idled': 1, 'devoted': 1, 'diffident': 1, 'disinterested': 1, 'unexpressed': 1, 'walks': 1, 'trifled': 2, 'poured': 1, 'shivering': 1, 'nursing': 1, 'persisting': 1, 'examined': 2, 'restore': 2, 'allowing': 2, 'withstood': 1, 'affect': 3, 'seconded': 1, 'reason': 2, 'render': 2, 'expel': 1, 'close': 1, 'administering': 1, 'prescribed': 2, 'recreating': 1, 'awakened': 4, 'assisting': 1, 'despatching': 1, 'effecting': 1, 'rung': 1, 'obviated': 1, '-': 5, 'felt!--a': 1, 'guide': 1, 'lessened': 2, 'watch': 2, 'tortured': 1, 'wretched': 2, 'pictured': 1, 'arriving': 2, 'scrupled': 1, 'bury': 1, 'foregoing': 1, 'conning': 1, 'bent': 1, 'blessed': 2, 'surpassing': 2, 'expand': 1, 'calming': 1, 'enfeebled': 1, 'supplying': 1, 'remind': 1, 'too!--perhaps': 1, 'eating': 1, 'retired': 1, 'roared': 1, 'beat': 1, 'flaring': 1, 'discern': 1, 'tell!--with': 1, 'rushed': 1, 'obeyed': 1, 'Sit': 1, 'praised!--But': 1, 'here,"--speaking': 1, 'overspreading': 1, 'DO': 2, 'mean,"--said': 1, 'is,"--was': 1, 'accounted': 1, 'imputed': 5, 'insist': 1, 'associating': 1, 're': 2, 'reprobate': 1, 'sacrificed': 3, 'expatiate': 1, 'scrupling': 1, 'display': 1, 'heightened': 3, 'hardening': 1, 'respected': 1, 'creating': 1, 'superior!"--': 1, 'pursuing': 4, 'omitted': 1, 'taxed': 1, 'discontented': 1, 'address': 2, 'awaited': 1, 'deliver': 1, 'undervalued': 1, 'dissembling': 1, 'hearted': 1, 'gives': 1, 'forbid': 1, 'undergone': 1, 'separated': 3, 'chusing': 2, 'shrugging': 1, 'silencing': 1, 'preserve': 2, 'Watched': 1, 'blundered': 1, 'frame': 1, 'God!--holding': 1, 'dying': 5, 'too!--doting': 1, 'breakfasting': 1, 'Affecting': 1, 'appeased': 1, 'copying': 1, 'do!--we': 1, 'copied': 1, 'hoarded': 1, 'kiss': 1, 'married.--Well': 1, 'inflicted': 1, 'vex': 1, 'undiscerning': 1, 'scorning': 1, 'hating': 1, 'leading': 3, 'letting': 1, 'forgetting': 1, 'rub': 1, 'differing': 1, 'awaking': 1, 'refreshed': 1, 'save': 1, 'embraced': 1, 'sleepless': 1, 'wearing': 1, 'blamed': 1, 'reproved': 1, 'mend': 1, 'imparted': 1, 'equalled': 1, 'perceived,--not': 1, 'fashioned': 1, 'is"--replied': 1, 'respect': 1, 'acquired': 1, 'him?--Did': 1, 'soothing': 2, 'rooted': 1, 'it;--but': 1, 'weakening': 1, 'pour': 1, 'reclining': 1, 'dawned': 1, 'redeem': 1, 'engross': 1, 'fortitude': 1, 'entitled': 1, 'traced': 1, 'accustom': 1, 'rested': 2, 'containing': 1, 'bearing': 2, 'anticipating': 1, 'resorted': 1, 'borrow': 1, 'unsettle': 1, 'appointed': 1, 'there,"--pointing': 1, 'treasured': 1, 'unguarded': 1, 'postponing': 1, 'crept': 1, 'compare': 3, 'died,--it': 1, 'died,--': 1, 'failing': 1, 'repaid': 1, 'irritated': 1, 'wronged': 2, 'benefit': 1, 'imitate': 1, 'discharge': 1, 'deserted': 1, 'professed': 1, 'reproving': 1, 'adhering': 1, 'worry': 1, 'humbled': 1, 'amended': 1, 'regulated': 1, 'hazarding': 1, 'grounded': 2, 'trembled': 2, 'panting': 1, 'dreading': 1, 'conjecturing': 1, 'articulate': 1, 'unmoved': 1, 'unbroken': 1, 'unblemished': 1, 'replace': 1, 'injure': 1, 'sobered': 1, 'spoke,--': 1, 'retrenched': 1, 'practice': 1, 'abridge': 1, 'quivered': 1, 'ruling': 1, 'regrets': 1, 'finds': 1, 'suffers': 1, 'reckons': 1, 'rank': 1, 'unsubdued': 1, 'disordered': 1, 'stopping': 1, 'bide': 2, 'recognised': 1, 'hazard': 1, 'misled': 1, 'certainty': 1, 'lurking': 1, 'conspired': 1, 'contriving': 1, 'merited': 1, 'stammered': 1, 'shaken': 1, 'retreated': 1, 'fearing': 1, 'spoiling': 1, 'cutting': 1, 'echoed': 1, 'remarks': 1, 'penetrate': 1, 'sudden;--a': 1, 'pre': 1, 'experiencing': 2, 'contracted': 2, 'exercising': 1, 'swell': 1, 'flowing': 1, 'outgrown': 1, 'chosen': 1, 'Considering': 1, 'wrought': 1, 'praise': 1, 'arise;--and': 1, 'learning': 1, 'compared': 1, 'been,--saw': 1, 'familiarized': 1, 'despatch': 1, 'worked': 1, 'stupified': 1, 'scorn': 1, 'Dawlish': 1, 'burnt': 1, 'destroy': 1, 'bribing': 1, 'disinherited': 1, 'enlightened': 1, 'renounced': 1, 'compliments': 1, 'plead': 1, 'plighted': 1, 'resented': 1, 'enrich': 1, 'calculate': 1, 'seventeen': 1, 'unite': 1, 'vent': 1, 'borrowed': 1, 'intreat': 1, 'augmenting': 1, 'superintend': 1, 'invent': 1, 'jumbled': 1, 'inspect': 1, 'honour': 1, 'insulted': 1, 'crowned': 1, 'obstructed': 1, 'hopes': 1, 'lingered': 1, 'supplanted': 1, 'tricking': 1, 'adopted': 1, 'transgressed': 1, 'gratitude': 1, 'subsisting': 1, 'exceed': 1, 'rendering': 1, 'another!--and': 1, 'submitting': 1, 'be;--in': 1, 'stating': 1, 'fled': 1, 'surviving': 1, 'ranked': 1, 'producing': 1}
verb_counts = pos_spacy_counts("VERB", spacy_raw)
print(verb_counts[1])
{'settled': 0.0023471030042918456, 'lived': 0.0012741416309012875, 'engage': 0.001005901287553648, 'surrounding': 0.0002682403433476395, 'had': 0.01649678111587983, 'happened': 0.002011802575107296, 'produced': 0.0017435622317596568, 'supply': 0.000536480686695279, 'invited': 0.0008717811158798284, 'received': 0.002615343347639485, 'intended': 0.0008717811158798284, 'bequeath': 6.706008583690987e-05, 'spent': 0.002548283261802575, 'increased': 0.001005901287553648, 'proceeded': 0.000536480686695279, 'gave': 0.004761266094420601, 'receive': 0.001072961373390558, 'added': 0.0027494635193133048, 'provided': 0.0004694206008583691, 'devolved': 6.706008583690987e-05, 'arise': 0.0004023605150214592, 'inheriting': 6.706008583690987e-05, 'remaining': 0.0008047210300429185, 'secured': 0.000536480686695279, 'died': 0.0004023605150214592, 'read': 0.0014753218884120173, 'leave': 0.0034200643776824036, 'left': 0.006504828326180257, 'destroyed': 0.0002011802575107296, 'wished': 0.003621244635193133, 'providing': 0.00013412017167381974, 'needed': 0.0004023605150214592, 'tied': 0.00013412017167381974, 'gained': 0.001005901287553648, 'having': 0.001542381974248927, 'outweigh': 0.0002011802575107296, 'meant': 0.0013412017167381974, 'hope': 0.004358905579399141, 'live': 0.0024141630901287556, 'living': 0.000536480686695279, 'lay': 0.0007376609442060086, 'coming': 0.002078862660944206, 'survived': 6.706008583690987e-05, 'including': 6.706008583690987e-05, 'remained': 0.0018776824034334764, 'sent': 0.0014082618025751073, 'known': 0.0037553648068669528, 'recommended': 0.0007376609442060086, 'command': 0.0002682403433476395, 'affected': 0.00033530042918454936, 'promised': 0.0008047210300429185, 'do': 0.011333154506437768, 'make': 0.009321351931330471, 'rendered': 0.000536480686695279, 'leisure': 6.706008583690987e-05, 'consider': 0.0013412017167381974, 'disposed': 0.001072961373390558, 'conducted': 0.0002682403433476395, 'married': 0.0029506437768240345, 'made': 0.009187231759656652, 'was:--he': 6.706008583690987e-05, 'meditated': 0.00013412017167381974, 'increase': 0.0002011802575107296, 'thought': 0.006504828326180257, 'warmed': 6.706008583690987e-05, 'feel': 0.004358905579399141, 'give': 0.008449570815450645, 'spare': 0.0006706008583690987, 'repent': 0.00013412017167381974, 'sending': 0.0008047210300429185, 'arrived': 0.0014082618025751073, 'dispute': 6.706008583690987e-05, 'come': 0.006303648068669528, 'was': 0.0024141630901287556, 'given': 0.003554184549356223, 'shewing': 0.00033530042918454936, 'act': 0.0004023605150214592, 'required': 0.0012070815450643778, 'despise': 0.00013412017167381974, 'quitted': 0.001072961373390558, 'induced': 0.00033530042918454936, 'reflect': 0.000536480686695279, 'going': 0.0038224248927038627, 'determined': 0.0019447424892703863, 'stay': 0.0017435622317596568, 'avoid': 0.0014082618025751073, 'possessed': 0.00013412017167381974, 'qualified': 6.706008583690987e-05, 'enabled': 0.0002011802575107296, 'counteract': 0.0002011802575107296, 'led': 0.0011400214592274679, 'imprudence': 6.706008583690987e-05, 'knew': 0.004023605150214592, 'govern': 0.00013412017167381974, 'learn': 0.0006035407725321889, 'resolved': 0.0018776824034334764, 'taught': 0.0002682403433476395, 'have': 0.01535675965665236, 'saw': 0.0075107296137339056, 'valued': 0.0004694206008583691, 'cherished': 6.706008583690987e-05, 'encouraged': 0.00033530042918454936, 'overpowered': 0.00013412017167381974, 'renewed': 0.00013412017167381974, 'sought': 0.0004023605150214592, 'created': 0.0002011802575107296, 'seeking': 0.0004694206008583691, 'afford': 0.001005901287553648, 'admitting': 0.0002011802575107296, 'afflicted': 6.706008583690987e-05, 'struggle': 0.00013412017167381974, 'exert': 0.00033530042918454936, 'consult': 0.00013412017167381974, 'treat': 0.00033530042918454936, 'strive': 6.706008583690987e-05, 'rouse': 0.0002011802575107296, 'encourage': 0.0002682403433476395, 'humored': 6.706008583690987e-05, 'imbibed': 6.706008583690987e-05, 'bid': 0.0002682403433476395, 'equal': 6.706008583690987e-05, 'installed': 6.706008583690987e-05, 'degraded': 6.706008583690987e-05, 'treated': 0.0009388412017167382, 'pressed': 0.0008717811158798284, 'appeared': 0.0022800429184549357, 'accommodate': 0.0002011802575107296, 'accepted': 0.0004694206008583691, 'reminded': 0.0002682403433476395, 'suited': 0.00033530042918454936, 'possess': 0.00013412017167381974, 'carried': 0.001072961373390558, 'approve': 0.000536480686695279, 'take': 0.0028835836909871246, 'impoverishing': 6.706008583690987e-05, 'begged': 0.0004694206008583691, 'think': 0.013747317596566524, 'answer': 0.000536480686695279, 'rob': 0.0002011802575107296, 'related': 0.0008047210300429185, 'considered': 0.0018106223175965665, 'supposed': 0.001609442060085837, 'exist': 0.0002011802575107296, 'ruin': 0.00033530042918454936, 'giving': 0.002548283261802575, 'replied': 0.006638948497854077, 'assist': 0.0008717811158798284, 'know': 0.01528969957081545, 'talking': 0.0017435622317596568, 'dare': 0.002078862660944206, 'say': 0.01072961373390558, 'headed': 6.706008583690987e-05, 'begging': 0.0002682403433476395, 'stipulate': 6.706008583690987e-05, 'requested': 0.0002011802575107296, 'suppose': 0.003688304721030043, 'neglect': 6.706008583690987e-05, 'performed': 0.0004023605150214592, 'done': 0.004694206008583691, 'settle': 0.0006706008583690987, 'LET': 6.706008583690987e-05, 'Consider': 0.00013412017167381974, 'parted': 0.0008717811158798284, 'return': 0.0012741416309012875, 'marry': 0.0018776824034334764, 'gone': 0.002145922746781116, 'restored': 0.0008047210300429185, 'said': 0.02575107296137339, 'regret': 0.000536480686695279, 'diminished': 6.706008583690987e-05, 'wish': 0.0034200643776824036, 'mean': 0.0024141630901287556, 'expect': 0.0018106223175965665, 'is': 0.0027494635193133048, 'knowing': 0.0014082618025751073, 'strikes': 6.706008583690987e-05, 'want': 0.0012741416309012875, 'divided': 0.0004023605150214592, 'doing': 0.0018776824034334764, 'lives': 0.0002011802575107296, 'hesitated': 0.0002011802575107296, 'parting': 0.0002682403433476395, 'taken': 0.0019447424892703863, 'observe': 0.0006035407725321889, 'paid': 0.0008047210300429185, 'comes': 0.000536480686695279, 'rid': 0.0002011802575107296, 'clogged': 6.706008583690987e-05, 'found': 0.004761266094420601, 'getting': 0.0004694206008583691, 'turned': 0.0018106223175965665, 'pin': 6.706008583690987e-05, 'says': 0.0008717811158798284, 'takes': 0.0004023605150214592, 'expected': 0.002615343347639485, 'raises': 0.0002682403433476395, 'bind': 6.706008583690987e-05, 'allow': 0.0016765021459227468, 'believe': 0.005901287553648069, 'enlarge': 6.706008583690987e-05, 'felt': 0.006706008583690987, 'prevent': 0.0014753218884120173, 'distressed': 0.0002682403433476395, 'discharging': 6.706008583690987e-05, 'convinced': 0.0014082618025751073, 'looking': 0.0014082618025751073, 'helping': 0.00013412017167381974, 'move': 0.0002011802575107296, 'did': 0.003084763948497854, 'Do': 0.00013412017167381974, 'belonging': 0.000536480686695279, 'brings': 0.00013412017167381974, 'pay': 0.0006035407725321889, 'keep': 0.002078862660944206, 'conceive': 0.00033530042918454936, 'imagine': 0.0009388412017167382, 'spend': 0.0007376609442060086, 'understand': 0.0017435622317596568, 'fulfil': 6.706008583690987e-05, 'described': 0.000536480686695279, 'removes': 6.706008583690987e-05, 'returned': 0.0034871244635193135, 'moved': 0.0006035407725321889, 'sold': 0.00033530042918454936, 'saved': 0.00033530042918454936, 'fitted': 0.00033530042918454936, 'belongs': 6.706008583690987e-05, 'owe': 0.0004694206008583691, 'wanting': 0.0004023605150214592, 'acts': 6.706008583690987e-05, 'pointed': 0.0002682403433476395, 'ceased': 0.0006706008583690987, 'raise': 0.0007376609442060086, 'began': 0.0027494635193133048, 'revive': 0.00013412017167381974, 'became': 0.001072961373390558, 'heightening': 0.0002011802575107296, 'remove': 0.0004694206008583691, 'hear': 0.004694206008583691, 'answered': 0.001609442060085837, 'rejected': 6.706008583690987e-05, 'approved': 0.0002011802575107296, 'informed': 0.001005901287553648, 'doubted': 0.000536480686695279, 'persuaded': 0.001072961373390558, 'support': 0.000536480686695279, 'rejoiced': 0.0004023605150214592, 'reproached': 0.00013412017167381974, 'believing': 0.0006035407725321889, 'relied': 0.00013412017167381974, 'afforded': 0.0004694206008583691, 'occurred': 0.0009388412017167382, 'according': 0.00013412017167381974, 'growing': 0.00033530042918454936, 'introduced': 0.0006035407725321889, 'repressed': 6.706008583690987e-05, 'depended': 0.0006035407725321889, 'uninfluenced': 6.706008583690987e-05, 'loved': 0.001072961373390558, 'attracted': 0.0002011802575107296, 'acknowledged': 0.0008047210300429185, 'overcome': 0.001072961373390558, 'longed': 0.0002011802575107296, 'see': 0.011534334763948498, 'wanted': 0.002011802575107296, 'interest': 0.00013412017167381974, 'get': 0.0019447424892703863, 'connected': 0.00033530042918454936, 'attained': 0.00013412017167381974, 'quieted': 0.00013412017167381974, 'driving': 0.0002682403433476395, 'centered': 6.706008583690987e-05, 'staying': 0.0012741416309012875, 'engaged': 0.002548283261802575, 'liked': 0.0004694206008583691, 'disturb': 0.00033530042918454936, 'timed': 0.0002011802575107296, 'called': 0.0028835836909871246, 'chanced': 0.0002011802575107296, 'implies': 6.706008583690987e-05, 'love': 0.0017435622317596568, 'like': 0.0023471030042918456, 'esteem': 0.0002011802575107296, 'separate': 0.0002682403433476395, 'took': 0.0034200643776824036, 'acquainted': 0.0016765021459227468, 'attaching': 0.0002682403433476395, 'banished': 0.00013412017167381974, 'comprehended': 0.0002011802575107296, 'assisted': 0.0004023605150214592, 'assured': 0.0017435622317596568, 'militated': 6.706008583690987e-05, 'established': 0.0007376609442060086, 'perceive': 0.0008717811158798284, 'looked': 0.004023605150214592, 'approaching': 0.0002011802575107296, 'miss': 0.00013412017167381974, 'meet': 0.0014753218884120173, 'gain': 0.000536480686695279, 'look': 0.002481223175965665, 'disapprove': 0.00013412017167381974, 'striking': 0.00033530042918454936, 'has': 0.0037553648068669528, 'attach': 0.00033530042918454936, 'announce': 0.00033530042918454936, 'seems': 0.001542381974248927, 'attract': 0.0002011802575107296, 'admires': 0.0002011802575107296, 'draws': 6.706008583690987e-05, 'knows': 0.0009388412017167382, 'satisfy': 0.0006035407725321889, 'united': 0.0004023605150214592, 'enter': 0.0008047210300429185, 'charm': 6.706008583690987e-05, 'reading': 0.0002011802575107296, 'bore': 0.0002682403433476395, 'seemed': 0.006035407725321888, 'notice': 0.0002011802575107296, 'driven': 0.0002682403433476395, 'pronounced': 0.0002682403433476395, 'animated': 0.0004023605150214592, 'overlook': 0.0002682403433476395, 'broke': 0.00033530042918454936, 'require': 0.0002011802575107296, 'ornament': 6.706008583690987e-05, 'drawing': 0.0004023605150214592, 'draw': 0.000536480686695279, 'seeing': 0.0027494635193133048, 'assure': 0.002145922746781116, 'improving': 0.0004023605150214592, 'drawn': 0.0008047210300429185, 'distrusts': 6.706008583690987e-05, 'direct': 0.00033530042918454936, 'offending': 0.0002011802575107296, 'smiling': 0.0008047210300429185, 'honoured': 0.0002682403433476395, 'continued': 0.003554184549356223, 'wound': 0.0002682403433476395, 'offended': 0.0004694206008583691, 'estimating': 0.00013412017167381974, 'dissatisfied': 0.0002011802575107296, 'express': 0.001005901287553648, 'find': 0.003688304721030043, 'seen': 0.003688304721030043, 'concealed': 0.0006035407725321889, 'keeps': 6.706008583690987e-05, 'call': 0.002145922746781116, 'kept': 0.0019447424892703863, 'thrown': 0.0006706008583690987, 'engrossed': 0.0002011802575107296, 'studied': 0.00013412017167381974, 'heard': 0.00523068669527897, 'venture': 0.0004023605150214592, 'pronounce': 0.0002011802575107296, 'improve': 0.0002682403433476395, 'perceived': 0.0008047210300429185, 'tell': 0.005431866952789699, 'started': 0.000536480686695279, 'betrayed': 0.0004023605150214592, 'speaking': 0.0013412017167381974, 'stood': 0.0006706008583690987, 'believed': 0.002011802575107296, 'conjectured': 0.0002011802575107296, 'tried': 0.0014082618025751073, 'explain': 0.000536480686695279, 'attempt': 0.0008047210300429185, 'deny': 0.000536480686695279, 'burst': 0.0008047210300429185, 'Esteem': 6.706008583690987e-05, 'Use': 0.00013412017167381974, 'help': 0.001072961373390558, 'laughing': 0.000536480686695279, 'Excuse': 0.00013412017167381974, 'Believe': 0.00013412017167381974, 'declared': 0.0018106223175965665, 'warrant': 0.00033530042918454936, 'are': 0.000536480686695279, 'wonder': 0.0013412017167381974, 'calling': 0.0008047210300429185, 'astonished': 0.0006706008583690987, 'outstripped': 6.706008583690987e-05, 'happen': 0.0008047210300429185, 'proceed': 0.0004023605150214592, 'lose': 0.0002682403433476395, 'stimulated': 6.706008583690987e-05, 'spoke': 0.0022800429184549357, 'supposing': 0.00033530042918454936, 'produce': 0.0004694206008583691, 'attended': 0.0012070815450643778, 'forbade': 6.706008583690987e-05, 'behaved': 0.0007376609442060086, 'form': 0.0004694206008583691, 'attending': 0.0006706008583690987, 'depending': 0.00013412017167381974, 'affronting': 0.00013412017167381974, 'attempted': 0.0007376609442060086, 'DRAW': 6.706008583690987e-05, 'pretend': 0.0004023605150214592, 'endeavor': 6.706008583690987e-05, 'marked': 0.0004023605150214592, 'resolving': 0.0002011802575107296, 'exposed': 0.00033530042918454936, 'delivered': 0.00033530042918454936, 'contained': 0.0002682403433476395, 'written': 0.0009388412017167382, 'understood': 0.0009388412017167382, 'offered': 0.0006706008583690987, 'pleased': 0.000536480686695279, 'judge': 0.00033530042918454936, 'fail': 0.0002682403433476395, 'suffering': 0.0007376609442060086, 'unfeeling': 6.706008583690987e-05, 'formed': 0.001542381974248927, 'quit': 0.0006035407725321889, 'continuing': 0.0004694206008583691, 'visit': 0.0009388412017167382, 'wrote': 0.0008047210300429185, 'hastened': 0.0002011802575107296, 'shew': 0.0004023605150214592, 'oppose': 0.0002682403433476395, 'removing': 0.0004694206008583691, 'brought': 0.0038894849785407726, 'dissuade': 0.0002011802575107296, 'dispatched': 6.706008583690987e-05, 'indulged': 0.00013412017167381974, 'announcing': 0.0002682403433476395, 'incommode': 6.706008583690987e-05, 'inhabiting': 6.706008583690987e-05, 'hoped': 0.0012741416309012875, 'replying': 6.706008583690987e-05, 'hearing': 0.0014753218884120173, 'repeated': 0.0018776824034334764, 'explained': 0.0007376609442060086, 'travelling': 0.00033530042918454936, 'accommodating': 0.00013412017167381974, 'concluded': 0.0007376609442060086, 'tended': 0.00013412017167381974, 'show': 0.00033530042918454936, 'disregarded': 0.0002682403433476395, 'told': 0.004493025751072961, 'vexed': 0.00033530042918454936, 'limited': 0.00013412017167381974, 'impracticable.--': 6.706008583690987e-05, 'consisted': 6.706008583690987e-05, 'depart': 6.706008583690987e-05, 'feeling': 0.001072961373390558, 'trifling': 6.706008583690987e-05, 'furnished': 0.00013412017167381974, 'arose': 0.0006035407725321889, 'waited': 0.0006706008583690987, 'determine': 0.0006035407725321889, 'set': 0.002145922746781116, 'interested': 0.0002011802575107296, 'offering': 0.0002011802575107296, 'disposing': 6.706008583690987e-05, 'agreed': 0.0006035407725321889, 'sell': 0.0002682403433476395, 'consulted': 0.00013412017167381974, 'prevailed': 0.00033530042918454936, 'prepare': 0.0002011802575107296, 'preferred': 0.00013412017167381974, 'examine': 0.0002682403433476395, 'entered': 0.002615343347639485, 'preserved': 0.00033530042918454936, 'defer': 0.0002682403433476395, 'fulfilled': 0.0002682403433476395, 'neglected': 0.00013412017167381974, 'quitting': 0.0002682403433476395, 'extended': 0.00033530042918454936, 'talked': 0.002145922746781116, 'increasing': 0.00033530042918454936, 'stand': 0.0007376609442060086, 'enable': 0.00033530042918454936, 'begin': 0.0004694206008583691, 'shed': 0.00013412017167381974, 'wandered': 0.0002011802575107296, 'cease': 0.00033530042918454936, 'suffer': 0.0009388412017167382, 'viewing': 0.00013412017167381974, 'view': 6.706008583690987e-05, 'continue': 0.0002682403433476395, 'decay': 6.706008583690987e-05, 'removed': 0.001005901287553648, 'become': 0.0011400214592274679, 'walk': 0.0008717811158798284, 'remain': 0.0008047210300429185, 'enjoy': 0.000536480686695279, 'drew': 0.0009388412017167382, 'inhabit': 6.706008583690987e-05, 'overcame': 0.0002682403433476395, 'wooded': 6.706008583690987e-05, 'winding': 0.00013412017167381974, 'reached': 0.001542381974248927, 'admitted': 0.00033530042918454936, 'tiled': 6.706008583690987e-05, 'painted': 0.0002011802575107296, 'covered': 0.00033530042918454936, 'built': 0.00013412017167381974, 'dried': 0.00013412017167381974, 'cheered': 6.706008583690987e-05, 'appear': 0.001609442060085837, 'recommending': 6.706008583690987e-05, 'lasting': 0.0002011802575107296, 'rose': 0.0008717811158798284, 'cultivated': 6.706008583690987e-05, 'commanded': 0.00013412017167381974, 'surrounded': 0.00013412017167381974, 'terminated': 6.706008583690987e-05, 'branched': 6.706008583690987e-05, 'add': 0.0004023605150214592, 'building': 0.00013412017167381974, 'collected': 0.00033530042918454936, 'throwing': 0.0002682403433476395, 'widen': 6.706008583690987e-05, 'plan': 6.706008583690987e-05, 'contented': 0.0002682403433476395, 'arranging': 0.00013412017167381974, 'placing': 0.0002011802575107296, 'affixed': 6.706008583690987e-05, 'interrupted': 0.0004023605150214592, 'welcome': 0.0002011802575107296, 'offer': 0.0004694206008583691, 'visited': 0.000536480686695279, 'remember': 0.001072961373390558, 'humoured': 0.0006035407725321889, 'dine': 0.000536480686695279, 'confined': 0.0006035407725321889, 'followed': 0.0011400214592274679, 'insisted': 0.0002682403433476395, 'conveying': 0.00013412017167381974, 'denied': 0.00033530042918454936, 'denoting': 6.706008583690987e-05, 'waiting': 0.0008047210300429185, 'depend': 0.000536480686695279, 'improved': 0.0004694206008583691, 'detract': 6.706008583690987e-05, 'bred': 0.000536480686695279, 'reserved': 0.00033530042918454936, 'bringing': 0.0008047210300429185, 'means': 0.00033530042918454936, 'recurred': 0.00013412017167381974, 'enquire': 0.00033530042918454936, 'admire': 0.0006035407725321889, 'ask': 0.0023471030042918456, 'hung': 0.0002011802575107296, 'held': 0.000536480686695279, 'wondered': 0.0007376609442060086, 'resembled': 0.0002682403433476395, 'differed': 6.706008583690987e-05, 'debating': 0.0002011802575107296, 'securing': 0.0002011802575107296, 'passed': 0.0033530042918454937, 'screened': 6.706008583690987e-05, 'hunted': 6.706008583690987e-05, 'shot': 6.706008583690987e-05, 'spoil': 0.00013412017167381974, 'supplied': 0.0002011802575107296, 'supported': 0.0008717811158798284, 'piqued': 6.706008583690987e-05, 'delighted': 0.0007376609442060086, 'collecting': 6.706008583690987e-05, 'hold': 0.0006706008583690987, 'forming': 0.0002682403433476395, 'eat': 0.0004023605150214592, 'charmed': 0.00013412017167381974, 'procured': 0.0008047210300429185, 'secure': 0.0004694206008583691, 'captivating': 0.0002011802575107296, 'showing': 0.00013412017167381974, 'settling': 0.0002011802575107296, 'esteems': 0.00013412017167381974, 'encouraging': 0.0004023605150214592, 'met': 0.001609442060085837, 'welcomed': 0.0002011802575107296, 'excuse': 0.0004694206008583691, 'procuring': 0.0002682403433476395, 'vulgar': 6.706008583690987e-05, 'pretended': 6.706008583690987e-05, 'adapted': 6.706008583690987e-05, 'recommend': 0.00013412017167381974, 'roused': 0.00033530042918454936, 'enjoyment': 6.706008583690987e-05, 'pulled': 0.00013412017167381974, 'tore': 6.706008583690987e-05, 'put': 0.0028835836909871246, 'discovered': 0.0004694206008583691, 'play': 0.00033530042918454936, 'prepared': 0.000536480686695279, 'sang': 0.0002011802575107296, 'went': 0.0032859442060085837, 'lain': 6.706008583690987e-05, 'celebrated': 6.706008583690987e-05, 'played': 0.00013412017167381974, 'lasted': 0.0004694206008583691, 'order': 6.706008583690987e-05, 'diverted': 0.0002682403433476395, 'asked': 0.0014753218884120173, 'sing': 6.706008583690987e-05, 'finished': 0.0008047210300429185, 'forfeited': 6.706008583690987e-05, 'amounted': 6.706008583690987e-05, 'sympathize': 6.706008583690987e-05, 'contrasted': 6.706008583690987e-05, 'outlived': 0.0002011802575107296, 'missed': 0.0004023605150214592, 'projecting': 0.00013412017167381974, 'enjoyed': 0.0002682403433476395, 'raising': 0.00013412017167381974, 'suspected': 0.000536480686695279, 'ascertained': 0.00013412017167381974, 'laughed': 0.001072961373390558, 'regarded': 0.000536480686695279, 'laugh': 0.0004694206008583691, 'censure': 0.00033530042918454936, 'ventured': 0.0004023605150214592, 'clear': 6.706008583690987e-05, 'wishing': 0.0008717811158798284, 'throw': 0.0002011802575107296, 'protect': 6.706008583690987e-05, 'deceive': 0.0002682403433476395, 'complain': 0.0002011802575107296, 'declining': 0.0004023605150214592, 'seem': 0.0013412017167381974, 'apprehensive': 6.706008583690987e-05, 'losing': 6.706008583690987e-05, 'marrying': 0.0008717811158798284, 'pausing': 0.0002682403433476395, 'inspire': 0.00013412017167381974, 'be': 0.0004694206008583691, 'bring': 0.0011400214592274679, 'submit': 0.0006706008583690987, 'benefited': 0.0002011802575107296, 'convince': 0.0006035407725321889, 'object': 0.0004023605150214592, 'dooming': 6.706008583690987e-05, 'afflict': 6.706008583690987e-05, 'despised': 6.706008583690987e-05, 'leaving': 0.0014753218884120173, 'conceal': 0.000536480686695279, 'occasion': 6.706008583690987e-05, 'detain': 0.0002682403433476395, 'recollecting': 0.0002682403433476395, 'showed': 0.00013412017167381974, 'accepting': 0.0004023605150214592, 'mentioned': 0.0012070815450643778, 'observed': 0.001005901287553648, 'composed': 0.0002682403433476395, 'follow': 0.0004694206008583691, 'cried': 0.005700107296137339, 'dejected': 6.706008583690987e-05, 'try': 0.0004694206008583691, 'finding': 0.0009388412017167382, 'employed': 0.0007376609442060086, 'mix': 0.0002682403433476395, 'were': 0.0004023605150214592, 'issued': 0.00013412017167381974, 'reminding': 6.706008583690987e-05, 'learnt': 0.000536480686695279, 'stirred': 6.706008583690987e-05, 'abounded': 6.706008583690987e-05, 'seek': 0.0002011802575107296, 'shut': 0.0004694206008583691, 'bear': 0.001542381974248927, 'preceding': 0.0004023605150214592, 'occasioned': 0.00033530042918454936, 'tempting': 6.706008583690987e-05, 'ascended': 0.00013412017167381974, 'rejoicing': 0.0002011802575107296, 'caught': 0.0007376609442060086, 'animating': 6.706008583690987e-05, 'pitied': 0.0002682403433476395, 'prevented': 0.001005901287553648, 'sharing': 0.0002011802575107296, 'this?--Margaret': 6.706008583690987e-05, 'pursued': 0.0002011802575107296, 'resisting': 6.706008583690987e-05, 'Chagrined': 6.706008583690987e-05, 'surprised': 0.0004023605150214592, 'obliged': 0.003084763948497854, 'turn': 0.0006706008583690987, 'running': 0.0002011802575107296, 'stop': 0.0004023605150214592, 'hurried': 0.0004694206008583691, 'carrying': 0.000536480686695279, 'playing': 0.0002011802575107296, 'passing': 0.0004694206008583691, 'ran': 0.0006035407725321889, 'raised': 0.0008047210300429185, 'twisted': 0.0002011802575107296, 'perceiving': 0.0004023605150214592, 'declined': 0.0004694206008583691, 'seated': 0.0006706008583690987, 'fixed': 0.001542381974248927, 'sprung': 0.00033530042918454936, 'apologized': 6.706008583690987e-05, 'relating': 0.00033530042918454936, 'came': 0.005767167381974249, 'thanked': 0.0004694206008583691, 'granted': 0.00013412017167381974, 'departed': 0.0002011802575107296, 'crimsoned': 0.00013412017167381974, 'lifting': 6.706008583690987e-05, 'robbed': 0.0002682403433476395, 'regarding': 0.0002011802575107296, 'entering': 0.0004694206008583691, 'join': 0.0008047210300429185, 'adorned': 0.00013412017167381974, 'becoming': 0.0002011802575107296, 'sprained': 6.706008583690987e-05, 'allowed': 0.0011400214592274679, 'ride': 0.0002682403433476395, 'Know': 0.00013412017167381974, 'puzzled': 0.0004023605150214592, 'got': 0.0017435622317596568, 'describe': 0.0004023605150214592, 'Has': 0.00013412017167381974, 'resided': 0.00013412017167381974, 'visiting': 0.0002682403433476395, 'inherit': 6.706008583690987e-05, 'adding': 6.706008583690987e-05, 'catching': 0.000536480686695279, 'incommoded': 6.706008583690987e-05, 'let': 0.0017435622317596568, 'danced': 6.706008583690987e-05, 'sitting': 0.0012070815450643778, 'setting': 0.0004023605150214592, 'dislike': 0.0004023605150214592, 'abhor': 6.706008583690987e-05, 'making': 0.0014753218884120173, 'deemed': 6.706008583690987e-05, 'styled': 6.706008583690987e-05, 'prompted': 0.0002011802575107296, 'happens': 0.00013412017167381974, 'declare': 0.001005901287553648, 'mention': 0.0006706008583690987, 'talk': 0.002481223175965665, 'Encouraged': 6.706008583690987e-05, 'question': 0.0002682403433476395, 'idolized': 6.706008583690987e-05, 'displayed': 0.0002011802575107296, 'acquiesced': 6.706008583690987e-05, 'conversed': 0.0002011802575107296, 'thinks': 0.000536480686695279, 'admiring': 0.0002011802575107296, 'exhausted': 6.706008583690987e-05, 'suffice': 0.00013412017167381974, 'erred': 0.00013412017167381974, 'spoken': 0.001005901287553648, 'spared': 0.0007376609442060086, 'scold': 0.00013412017167381974, 'check': 0.0002011802575107296, 'softened': 0.000536480686695279, 'joined': 0.0012070815450643778, 'saying': 0.002481223175965665, 'sacrificing': 6.706008583690987e-05, 'seized': 6.706008583690987e-05, 'delineated': 6.706008583690987e-05, 'congratulate': 0.00033530042918454936, 'noticed': 0.00013412017167381974, 'incurred': 6.706008583690987e-05, 'annexed': 6.706008583690987e-05, 'assigned': 0.00013412017167381974, 'excited': 0.0002011802575107296, 'forward': 6.706008583690987e-05, 'opposed': 0.0002011802575107296, 'reserve': 6.706008583690987e-05, 'beheld': 0.0002011802575107296, 'dropped': 0.0004023605150214592, 'justified': 0.0004023605150214592, 'esteemed': 6.706008583690987e-05, 'slighted': 0.0002682403433476395, 'prejudiced': 6.706008583690987e-05, 'undervalue': 6.706008583690987e-05, 'speaks': 0.00013412017167381974, 'cares': 0.00033530042918454936, 'remembers': 6.706008583690987e-05, 'boast': 0.0002011802575107296, 'taking': 0.0014082618025751073, 'converse': 0.0002011802575107296, 'patronised': 6.706008583690987e-05, 'doubt': 0.0011400214592274679, 'stretched': 0.0002011802575107296, 'employ': 0.0002682403433476395, 'Add': 6.706008583690987e-05, 'decide': 0.0002682403433476395, 'possessing': 6.706008583690987e-05, 'using': 0.00013412017167381974, 'endeavouring': 0.000536480686695279, 'disarm': 6.706008583690987e-05, 'disliking': 0.0002011802575107296, 'threatened': 0.00013412017167381974, 'persuade': 0.000536480686695279, 'buy': 0.000536480686695279, 'confess': 0.0007376609442060086, 'imagined': 0.000536480686695279, 'occupy': 6.706008583690987e-05, 'presented': 0.00033530042918454936, 'recovered': 0.0008717811158798284, 'accomplished': 6.706008583690987e-05, 'included': 6.706008583690987e-05, 'calculated': 0.00033530042918454936, 'witnessing': 6.706008583690987e-05, 'marking': 6.706008583690987e-05, 'receiving': 0.0008717811158798284, 'suggest': 0.0002682403433476395, 'abhorred': 0.00013412017167381974, 'attend': 0.0007376609442060086, 'aim': 6.706008583690987e-05, 'cheated': 0.00013412017167381974, 'shame': 6.706008583690987e-05, 'provoke': 0.0002682403433476395, 'checking': 0.0002011802575107296, 'bestowed': 0.0004694206008583691, 'teach': 0.00013412017167381974, 'ensured': 0.0002011802575107296, 'been': 0.0002011802575107296, 'desired': 0.00033530042918454936, 'arranged': 0.0004694206008583691, 'experienced': 0.0002682403433476395, 'claim': 0.0002011802575107296, 'excite': 0.00013412017167381974, 'suspect': 0.0008047210300429185, 'dancing': 6.706008583690987e-05, 'considers': 0.00013412017167381974, 'does': 0.0009388412017167382, 'contrives': 6.706008583690987e-05, 'reflecting': 0.00013412017167381974, 'define': 6.706008583690987e-05, 'justify': 0.0006706008583690987, 'agree': 0.0004023605150214592, 'atone': 0.00013412017167381974, 'resumed': 6.706008583690987e-05, 'disappointed': 0.000536480686695279, 'admit': 0.0004023605150214592, 'desire': 0.0002682403433476395, 'succeeded': 0.0004694206008583691, 'speak': 0.0039565450643776826, 'judged': 0.0009388412017167382, 'stopt': 0.00033530042918454936, 'concerned': 0.0006035407725321889, 'escape': 0.00033530042918454936, 'connect': 6.706008583690987e-05, 'walking': 0.0008717811158798284, 'communicated': 0.0004023605150214592, 'carry': 0.00033530042918454936, 'considering': 0.0004023605150214592, 'alter': 0.00013412017167381974, 'build': 0.0004023605150214592, 'intends': 0.00013412017167381974, 'send': 0.0007376609442060086, 'arrives': 6.706008583690987e-05, 'share': 0.0004694206008583691, 'Imagine': 6.706008583690987e-05, 'awaken': 6.706008583690987e-05, 'comprehend': 0.000536480686695279, 'refused': 0.0002011802575107296, 'touch': 0.0002011802575107296, 'tender': 6.706008583690987e-05, 'representing': 6.706008583690987e-05, 'consented': 0.0002682403433476395, 'subdued': 0.00013412017167381974, 'tempt': 0.0004694206008583691, 'mentioning': 0.0002682403433476395, 'forego': 6.706008583690987e-05, 'expressing': 0.0002011802575107296, 'use': 0.0002682403433476395, 'overheard': 6.706008583690987e-05, 'pronouncing': 0.0002011802575107296, 'addressing': 0.0002682403433476395, 'decided': 0.0004694206008583691, 'discover': 0.00033530042918454936, 'placed': 0.0008047210300429185, 'wore': 0.00013412017167381974, 'round': 0.000536480686695279, 'Take': 0.00013412017167381974, 'cut': 0.0004023605150214592, 'whispering': 6.706008583690987e-05, 'tumbled': 6.706008583690987e-05, 'kissed': 0.0002011802575107296, 'folded': 0.00013412017167381974, 'stated': 6.706008583690987e-05, 'withhold': 0.00013412017167381974, 'attacked': 6.706008583690987e-05, 'standing': 0.00033530042918454936, 'turning': 0.0008717811158798284, 'Remember': 0.0002682403433476395, 'repeat': 0.00033530042918454936, 'guess': 0.000536480686695279, 'begins': 6.706008583690987e-05, 'observing': 0.000536480686695279, 'rained': 0.0002011802575107296, 'opened': 0.0006706008583690987, 'sit': 0.0008717811158798284, 'fell': 0.0008047210300429185, 'recover': 0.00013412017167381974, 'following': 0.0006035407725321889, 'fatigued': 0.00013412017167381974, 'frightened': 0.0002011802575107296, 'go': 0.006504828326180257, 'assembled': 0.00013412017167381974, 'breakfast': 6.706008583690987e-05, 'dispersing': 6.706008583690987e-05, 'changed': 0.000536480686695279, 'thank': 0.00033530042918454936, 'discompose': 0.00013412017167381974, 'Come': 0.0004694206008583691, 'recollect': 0.0004023605150214592, 'colouring': 0.0002682403433476395, 'requires': 0.0002011802575107296, 'fear': 0.000536480686695279, 'write': 0.001005901287553648, 'shook': 0.0002682403433476395, 'delay': 0.0002011802575107296, 'invented': 0.00013412017167381974, 'persuading': 0.00033530042918454936, 'change': 0.00033530042918454936, 'walked': 0.0019447424892703863, 'disappointing': 0.00013412017167381974, 'pry': 6.706008583690987e-05, 'announced': 0.0002682403433476395, 'farewell': 6.706008583690987e-05, 'bowed': 0.0002682403433476395, 'restrained': 0.00013412017167381974, 'shocking': 6.706008583690987e-05, 'lowering': 0.0002011802575107296, 'stare': 6.706008583690987e-05, 'concluding': 0.0002011802575107296, 'procure': 0.0002682403433476395, 'ordered': 0.00013412017167381974, 'drove': 0.0004023605150214592, 'sat': 0.0023471030042918456, 'leant': 6.706008583690987e-05, 'coloured': 0.0004694206008583691, 'propose': 6.706008583690987e-05, 'enquired': 6.706008583690987e-05, 'doubting': 0.00013412017167381974, 'evince': 6.706008583690987e-05, 'acting': 0.0004023605150214592, 'value': 0.00013412017167381974, 'blushed': 0.00033530042918454936, 'gratifying': 0.0002011802575107296, 'hanging': 0.0002682403433476395, 'admired': 0.00033530042918454936, 'advantage': 0.00013412017167381974, 'listened': 0.0006035407725321889, 'concealing': 0.0002682403433476395, 'filled': 0.00033530042918454936, 'befallen': 6.706008583690987e-05, 'reckoned': 0.00013412017167381974, 'involved': 0.00033530042918454936, 'cleared': 0.0002011802575107296, 'varying': 0.0002011802575107296, 'seeming': 0.00033530042918454936, 'bestow': 0.0006035407725321889, 'acknowledge': 0.0008047210300429185, 'rated': 0.00013412017167381974, 'complained': 0.0002011802575107296, 'maintained': 0.0004023605150214592, 'account': 0.000536480686695279, 'distinguishing': 0.00013412017167381974, 'ending': 6.706008583690987e-05, 'happening': 6.706008583690987e-05, 'exclaimed--"Improve': 6.706008583690987e-05, 'consent': 0.0002011802575107296, 'alarmed': 0.0002011802575107296, 'Thank': 0.00033530042918454936, 'sacrifice': 6.706008583690987e-05, 'Depend': 0.00013412017167381974, 'pull': 6.706008583690987e-05, 'smokes': 6.706008583690987e-05, 'flatter': 0.0002682403433476395, 'endear': 6.706008583690987e-05, 'denoted': 6.706008583690987e-05, 'inhabited': 6.706008583690987e-05, 'grieving': 0.00033530042918454936, 'next': 6.706008583690987e-05, 'experience': 6.706008583690987e-05, 'degrade': 6.706008583690987e-05, 'pass': 0.000536480686695279, 'makes': 0.0004023605150214592, 'Extend': 6.706008583690987e-05, 'Tell': 0.000536480686695279, 'dear': 0.00013412017167381974, 'excused': 0.0002011802575107296, 'foreseen': 0.00013412017167381974, 'noticing': 6.706008583690987e-05, 'leaning': 0.000536480686695279, 'shewed': 0.0002682403433476395, 'partook': 6.706008583690987e-05, 'powered': 6.706008583690987e-05, 'entered--"is': 6.706008583690987e-05, 'trying': 0.000536480686695279, 'forced': 0.001609442060085837, 'exercised': 6.706008583690987e-05, 'returning': 0.0008717811158798284, 'wait': 0.0012741416309012875, 'press': 0.0004023605150214592, 'broken': 0.0008047210300429185, 'linger': 0.00013412017167381974, 'torment': 6.706008583690987e-05, 'step': 6.706008583690987e-05, 'accept': 0.0006706008583690987, 'disturbed': 0.0002011802575107296, 'feared': 0.0008717811158798284, 'feeding': 6.706008583690987e-05, 'work': 0.00013412017167381974, 'travel': 0.0002682403433476395, 'Gone': 6.706008583690987e-05, 'intending': 0.0002011802575107296, 'return!--Something': 6.706008583690987e-05, 'owned': 0.00013412017167381974, 'behave': 0.0002682403433476395, 'quarrelled': 6.706008583690987e-05, 'shewn': 0.00033530042918454936, 'suspects': 6.706008583690987e-05, 'sends': 0.00013412017167381974, 'transact': 6.706008583690987e-05, 'dismiss': 6.706008583690987e-05, 'dares': 6.706008583690987e-05, 'feels': 6.706008583690987e-05, 'absent': 6.706008583690987e-05, 'listen': 0.0004023605150214592, 'point': 0.00013412017167381974, 'understanding': 0.0002011802575107296, 'anticipated': 0.00013412017167381974, 'depressed': 6.706008583690987e-05, 'witnessed': 0.00033530042918454936, 'urged': 0.0006706008583690987, 'wondering': 0.00033530042918454936, 'practiced': 6.706008583690987e-05, 'blame': 0.0002682403433476395, 'departing': 0.00013412017167381974, 'acquitted': 0.00013412017167381974, 'Concealing': 6.706008583690987e-05, 'accuse': 6.706008583690987e-05, 'reproaching': 0.00013412017167381974, 'affectionate': 0.00013412017167381974, 'occur': 0.000536480686695279, 'telling': 0.000536480686695279, 'part': 0.00013412017167381974, 'outweighs': 6.706008583690987e-05, 'attribute': 0.00033530042918454936, 'correspond': 0.00013412017167381974, 'unreserved': 6.706008583690987e-05, 'create': 0.00013412017167381974, 'startled': 0.00033530042918454936, 'resist': 0.0006035407725321889, 'deserve': 0.000536480686695279, 'acknowledging': 0.00033530042918454936, 'begun': 0.0004694206008583691, 'avoided': 0.0004694206008583691, 'pressing': 0.0002011802575107296, 'sleep': 6.706008583690987e-05, 'risen': 6.706008583690987e-05, 'incurring': 6.706008583690987e-05, 'wept': 0.0002011802575107296, 'forbidding': 0.00013412017167381974, 'indulging': 0.0002011802575107296, 'crying': 0.0002682403433476395, 'used': 0.0012741416309012875, 'gazing': 0.00013412017167381974, 'applied': 0.0002011802575107296, 'singing': 6.706008583690987e-05, 'suspended': 0.0002011802575107296, 'courted': 0.00013412017167381974, 'sunk': 0.0006035407725321889, 'satisfied': 0.00033530042918454936, 'fetches': 6.706008583690987e-05, 'carries': 0.00013412017167381974, 'suggesting': 0.00013412017167381974, 'indulgent': 6.706008583690987e-05, 'Supposing': 6.706008583690987e-05, 'forcing': 0.0002682403433476395, 'unacknowledged': 6.706008583690987e-05, 'loves': 0.00033530042918454936, 'force': 0.0004023605150214592, 'wishes': 0.0002011802575107296, 'overstrained': 6.706008583690987e-05, 'wandering': 0.0002682403433476395, 'stole': 6.706008583690987e-05, 'climbing': 6.706008583690987e-05, 'disapproved': 6.706008583690987e-05, 'controlled': 6.706008583690987e-05, 'gaining': 0.0002011802575107296, 'travelled': 0.00033530042918454936, 'reaching': 6.706008583690987e-05, 'stopped': 0.0007376609442060086, 'reach': 0.0002682403433476395, 'riding': 6.706008583690987e-05, 'distinguish': 0.0002682403433476395, 'exclaimed': 0.0004694206008583691, 'hastening': 0.00013412017167381974, 'screen': 0.00013412017167381974, 'quickened': 6.706008583690987e-05, 'hurrying': 6.706008583690987e-05, 'forgiven': 0.0006706008583690987, 'dispersed': 6.706008583690987e-05, 'smile': 0.0004023605150214592, 'dismounted': 6.706008583690987e-05, 'confused': 6.706008583690987e-05, 'distinguished': 0.0002682403433476395, 'ended': 0.0006035407725321889, 'end': 0.0004694206008583691, 'looks': 0.0004694206008583691, 'fall': 0.00033530042918454936, 'inspired': 6.706008583690987e-05, 'regard': 0.00033530042918454936, 'swept': 6.706008583690987e-05, 'shared': 0.0002011802575107296, 'rousing': 0.0002011802575107296, 'Look': 0.0002011802575107296, 'rises': 6.706008583690987e-05, 'Have': 0.00013412017167381974, 'situated': 0.0002682403433476395, 'owed': 0.0004694206008583691, 'directing': 6.706008583690987e-05, 'endeavoured': 0.0004694206008583691, 'extorting': 6.706008583690987e-05, 'mortified': 0.00013412017167381974, 'regulate': 6.706008583690987e-05, 'extending': 6.706008583690987e-05, 'reanimate': 6.706008583690987e-05, 'praised': 6.706008583690987e-05, 'attributing': 0.00013412017167381974, 'goes': 0.00033530042918454936, 'guessed': 0.0002682403433476395, 'smiled': 0.0004694206008583691, 'describing': 6.706008583690987e-05, 'hunt': 6.706008583690987e-05, 'sparkling': 6.706008583690987e-05, 'glowing': 0.00013412017167381974, 'vanish': 6.706008583690987e-05, 'content': 6.706008583690987e-05, 'falling': 0.0002682403433476395, 'tells': 0.00013412017167381974, 'Forgive': 0.00013412017167381974, 'forgot': 0.0006035407725321889, 'recall': 0.0002011802575107296, 'offend': 0.0004023605150214592, 'laid': 0.0006035407725321889, 'presume': 6.706008583690987e-05, 'altered': 0.00033530042918454936, 'grown': 0.0004023605150214592, 'reproach': 0.0002011802575107296, 'talks': 6.706008583690987e-05, 'detected': 6.706008583690987e-05, 'fancying': 0.0002011802575107296, 'originated': 0.0002011802575107296, 'guided': 0.00033530042918454936, 'deliberate': 6.706008583690987e-05, 'aimed': 0.00013412017167381974, 'confound': 6.706008583690987e-05, 'advised': 0.0002682403433476395, 'adopt': 0.0004023605150214592, 'conform': 6.706008583690987e-05, 'shyness': 6.706008583690987e-05, 'started--"Reserved': 6.706008583690987e-05, 'calls': 0.00013412017167381974, 'inspiring': 6.706008583690987e-05, 'hitherto': 0.00013412017167381974, 'contradicted': 0.00033530042918454936, 'intimated': 6.706008583690987e-05, 'promote': 0.0004023605150214592, 'beginning': 0.0004023605150214592, 'struck': 0.0006035407725321889, 'snug': 6.706008583690987e-05, 'scattered': 6.706008583690987e-05, 'answers': 6.706008583690987e-05, 'unites': 6.706008583690987e-05, 'lost': 0.0012741416309012875, 'falls': 0.00013412017167381974, 'believes': 6.706008583690987e-05, 'disgusted': 0.0002011802575107296, 'affects': 6.706008583690987e-05, 'possesses': 6.706008583690987e-05, 'pretends': 6.706008583690987e-05, 'tries': 6.706008583690987e-05, 'defined': 6.706008583690987e-05, 'worn': 0.00013412017167381974, 'hackneyed': 6.706008583690987e-05, 'profess': 0.00013412017167381974, 'crooked': 0.00013412017167381974, 'flourishing': 6.706008583690987e-05, 'ruined': 0.0002682403433476395, 'please': 0.0006706008583690987, 'wear': 0.00013412017167381974, 'promising': 0.00013412017167381974, 'pained': 0.0002682403433476395, 'surpassed': 6.706008583690987e-05, 'casts': 6.706008583690987e-05, 'affecting': 0.0002011802575107296, 'catch': 0.0002011802575107296, 'eyeing': 0.00013412017167381974, 'satisfying': 0.0002682403433476395, 'censured': 0.00013412017167381974, 'discovering': 0.00013412017167381974, 'learned': 0.0002011802575107296, 'founded': 0.0004694206008583691, 'inviting': 0.0002682403433476395, 'drink': 0.0002011802575107296, 'bound': 0.0004023605150214592, 'contribute': 6.706008583690987e-05, 'enforced': 0.00013412017167381974, 'dance': 0.0002011802575107296, 'guessing': 6.706008583690987e-05, 'hunts': 6.706008583690987e-05, 'you?--But': 6.706008583690987e-05, 'grew': 0.0004694206008583691, 'disengaged': 6.706008583690987e-05, 'detested': 6.706008583690987e-05, 'extorted': 6.706008583690987e-05, 'attributed': 0.0002682403433476395, 'temporizing': 6.706008583690987e-05, 'reformed': 6.706008583690987e-05, 'result': 6.706008583690987e-05, 'promoted': 0.00013412017167381974, 'trades': 6.706008583690987e-05, 'wasted': 0.00013412017167381974, 'defy': 6.706008583690987e-05, 'desponding': 6.706008583690987e-05, 'subdue': 6.706008583690987e-05, 'appearing': 0.0004023605150214592, 'suffered': 0.0017435622317596568, 'fix': 0.000536480686695279, 'solitude': 6.706008583690987e-05, 'lessen': 0.0004694206008583691, 'dared': 0.000536480686695279, 'loving': 6.706008583690987e-05, 'respecting': 0.0002011802575107296, 'shutting': 6.706008583690987e-05, 'lying': 0.00013412017167381974, 'indulge': 0.0002011802575107296, 'produce,--with': 6.706008583690987e-05, 'forbidden': 6.706008583690987e-05, 'chained': 6.706008583690987e-05, 'knocking': 6.706008583690987e-05, 'stepping': 0.0002011802575107296, 'open': 0.00033530042918454936, 'mind': 0.0002011802575107296, 'run': 0.00033530042918454936, 'hallooing': 6.706008583690987e-05, 'drinking': 6.706008583690987e-05, 'surveying': 6.706008583690987e-05, 'staid': 0.00013412017167381974, 'endowed': 0.00013412017167381974, 'ceasing': 0.00013412017167381974, 'nodding': 6.706008583690987e-05, 'pointing': 6.706008583690987e-05, 'expects': 0.00013412017167381974, 'endure': 0.0002011802575107296, 'exerted': 0.00013412017167381974, 'ushered': 6.706008583690987e-05, 'stared': 6.706008583690987e-05, 'examining': 0.0002682403433476395, 'pitched': 6.706008583690987e-05, 'chuse': 0.0004694206008583691, 'dined': 0.00033530042918454936, 'ate': 0.0002011802575107296, 'yield': 6.706008583690987e-05, 'merry': 6.706008583690987e-05, 'expressed': 0.001005901287553648, 'seating': 0.00013412017167381974, 'chaperon': 6.706008583690987e-05, 'bowing': 6.706008583690987e-05, 'complaining': 6.706008583690987e-05, 'horrid': 6.706008583690987e-05, 'dropt': 0.0002011802575107296, 'taste': 0.00013412017167381974, 'contradict': 0.00013412017167381974, 'abuse': 6.706008583690987e-05, 'care': 0.0006035407725321889, 'scolded': 0.0002011802575107296, 'abused': 6.706008583690987e-05, 'inclined': 0.0002682403433476395, 'hurt': 0.000536480686695279, 'succeed': 0.00013412017167381974, 'establishing': 6.706008583690987e-05, 'applying': 0.00013412017167381974, 'now,"--said': 6.706008583690987e-05, 'refuse': 0.00013412017167381974, 'canvassing': 6.706008583690987e-05, 'assented': 0.00013412017167381974, 'directed': 0.0002682403433476395, 'frank': 6.706008583690987e-05, 'declares': 0.00013412017167381974, 'palm': 6.706008583690987e-05, 'asking': 0.0004023605150214592, 'decline': 6.706008583690987e-05, 'changing': 6.706008583690987e-05, 'gathered': 6.706008583690987e-05, 'inquiring': 0.0002011802575107296, 'inquire': 0.00033530042918454936, 'surprise': 0.00033530042918454936, 'pray': 0.0004023605150214592, 'flattered': 0.0002682403433476395, 'own': 0.0002011802575107296, 'objected': 6.706008583690987e-05, 'entertain': 6.706008583690987e-05, 'last': 0.0002011802575107296, 'existed': 0.00013412017167381974, 'invite': 6.706008583690987e-05, 'resigned': 0.00013412017167381974, 'contenting': 0.00013412017167381974, 'prevail': 0.00033530042918454936, 'obtain': 0.0002011802575107296, 'boasting': 6.706008583690987e-05, 'extolling': 6.706008583690987e-05, 'courting': 0.00013412017167381974, 'humouring': 6.706008583690987e-05, 'unceasing': 0.0002682403433476395, 'swallow': 6.706008583690987e-05, 'viewed': 6.706008583690987e-05, 'submitted': 0.0004023605150214592, 'untied': 6.706008583690987e-05, 'searched': 0.00013412017167381974, 'stolen': 0.00013412017167381974, 'suggested': 0.0002682403433476395, 'claiming': 6.706008583690987e-05, 'pinching': 6.706008583690987e-05, 'caressing': 6.706008583690987e-05, 'bestowing': 0.0002011802575107296, 'scratching': 6.706008583690987e-05, 'outdone': 6.706008583690987e-05, 'surpass': 6.706008583690987e-05, 'assuage': 6.706008583690987e-05, 'bathed': 6.706008583690987e-05, 'stuffed': 6.706008583690987e-05, 'screamed': 0.00013412017167381974, 'sobbed': 6.706008583690987e-05, 'kicked': 6.706008583690987e-05, 'remembering': 0.0002011802575107296, 'bruised': 6.706008583690987e-05, 'proposed': 0.0002682403433476395, 'chose': 0.0004694206008583691, 'entreated': 0.00013412017167381974, 'estimate': 6.706008583690987e-05, "'s": 0.00013412017167381974, 'dress': 6.706008583690987e-05, 'blinded': 6.706008583690987e-05, 'dealt': 6.706008583690987e-05, 'consists': 6.706008583690987e-05, 'proclaiming': 6.706008583690987e-05, 'alluded': 0.0002011802575107296, 'sport': 0.00013412017167381974, 'deficient': 6.706008583690987e-05, 'communicate': 0.0004023605150214592, 'unavailing': 6.706008583690987e-05, 'checked': 0.00033530042918454936, 'endeavour': 0.0002011802575107296, 'engaging': 0.00033530042918454936, 'striving': 6.706008583690987e-05, 'enquiring': 0.00013412017167381974, 'trusting': 0.00013412017167381974, 'manage': 6.706008583690987e-05, 'trouble': 0.0002682403433476395, 'fixing': 0.0002011802575107296, 'divine': 6.706008583690987e-05, 'varied': 6.706008583690987e-05, 'trusted': 0.0004023605150214592, 'paused': 0.0004023605150214592, 'shocked': 0.0002011802575107296, 'attached': 0.0006035407725321889, 'revived': 0.00013412017167381974, 'falsehood--"Engaged': 6.706008583690987e-05, 'beg': 0.0006706008583690987, 'deceived': 0.0006706008583690987, 'depends': 0.0002011802575107296, 'sink': 0.0002682403433476395, 'puts': 6.706008583690987e-05, 'doubts': 6.706008583690987e-05, 'detecting': 6.706008583690987e-05, 'keeping': 6.706008583690987e-05, 'exceeding': 0.0002011802575107296, 'imagining': 0.00013412017167381974, 'pardon': 0.00013412017167381974, 'hoping': 0.0002682403433476395, 'betraying': 0.00033530042918454936, 'wiping': 6.706008583690987e-05, 'break': 6.706008583690987e-05, 'advise': 0.000536480686695279, 'provide': 6.706008583690987e-05, 'cast': 0.00033530042918454936, 'remembered': 0.00033530042918454936, 'writes': 0.00013412017167381974, 'obtained': 0.0002011802575107296, 'subsist': 6.706008583690987e-05, 'authorised': 0.0002011802575107296, 'struggled': 6.706008583690987e-05, 'Writing': 6.706008583690987e-05, 'confounded': 6.706008583690987e-05, 'ends': 0.00013412017167381974, 'inventing': 6.706008583690987e-05, 'asserted': 6.706008583690987e-05, 'condemning': 6.706008583690987e-05, 'deceiving': 0.00013412017167381974, 'feigned': 0.00013412017167381974, 'forgive': 0.000536480686695279, 'defended': 6.706008583690987e-05, 'injured': 0.0007376609442060086, 'deprived': 0.0002011802575107296, 'blind': 0.0002011802575107296, 'succeeding': 0.0004023605150214592, 'alienated': 6.706008583690987e-05, 'Supported': 6.706008583690987e-05, 'merit': 6.706008583690987e-05, 'consoled': 0.0002011802575107296, 'forfeit': 0.00013412017167381974, 'guard': 6.706008583690987e-05, 'mourning': 6.706008583690987e-05, 'divide': 0.0002682403433476395, 'dwelling': 6.706008583690987e-05, 'entrusted': 6.706008583690987e-05, 'flow': 6.706008583690987e-05, 'renewing': 6.706008583690987e-05, 'conversing': 0.00013412017167381974, 'trust': 0.0006035407725321889, 'joking': 6.706008583690987e-05, 'beloved': 6.706008583690987e-05, 'combat': 0.00013412017167381974, 'mistrust': 6.706008583690987e-05, 'joining': 6.706008583690987e-05, 'affording': 0.0002011802575107296, 'foresaw': 6.706008583690987e-05, 'seclude': 0.00013412017167381974, 'accompanied': 0.00013412017167381974, 'entertained': 0.00013412017167381974, 'finish': 0.0002011802575107296, 'recollected': 0.00033530042918454936, 'disappoint': 0.00013412017167381974, 'ring': 6.706008583690987e-05, 'working': 0.0002682403433476395, 'reseated': 6.706008583690987e-05, 'infer': 0.00013412017167381974, 'touched': 6.706008583690987e-05, 'tuned': 6.706008583690987e-05, 'smooth': 6.706008583690987e-05, 'toned': 6.706008583690987e-05, 'rolling': 6.706008583690987e-05, 'profited': 6.706008583690987e-05, 'condescend': 0.00013412017167381974, 'practise': 0.00013412017167381974, 'forwarding': 6.706008583690987e-05, 'wrapped': 6.706008583690987e-05, 'forgotten': 0.00033530042918454936, 'introduce': 0.00033530042918454936, 'undeserving': 6.706008583690987e-05, 'apologize': 6.706008583690987e-05, 'breaking': 0.0002682403433476395, 'Offended': 6.706008583690987e-05, 'displeasure': 6.706008583690987e-05, 'quarrelling': 6.706008583690987e-05, 'relieve': 0.0002011802575107296, 'thinking': 0.0009388412017167382, 'need': 0.00013412017167381974, 'robbing': 6.706008583690987e-05, 'deprive': 0.0002011802575107296, 'failed': 0.0002011802575107296, 'guarding': 0.00013412017167381974, 'sigh': 6.706008583690987e-05, 'impose': 6.706008583690987e-05, 'involve': 6.706008583690987e-05, 'owning': 6.706008583690987e-05, 'frightens': 6.706008583690987e-05, 'likes': 0.0002682403433476395, 'bit': 6.706008583690987e-05, 'prefer': 6.706008583690987e-05, 'dissolving': 6.706008583690987e-05, 'beset': 6.706008583690987e-05, 'wrong': 0.00013412017167381974, 'resolve': 6.706008583690987e-05, 'frighten': 6.706008583690987e-05, 'dividing': 0.00013412017167381974, 'laying': 0.0002011802575107296, 'biased': 6.706008583690987e-05, 'brightened': 6.706008583690987e-05, 'meeting': 0.0004694206008583691, 'induce': 6.706008583690987e-05, 'introducing': 0.00013412017167381974, 'inform': 0.00033530042918454936, 'dismissed': 0.00033530042918454936, 'lengthened': 0.0002011802575107296, 'implied': 0.0002011802575107296, 'fulfill': 0.0002011802575107296, 'proclaim': 6.706008583690987e-05, 'spending': 6.706008583690987e-05, 'traded': 6.706008583690987e-05, 'accompany': 0.0002682403433476395, 'alleged': 6.706008583690987e-05, 'favour': 6.706008583690987e-05, 'fancy': 0.0004694206008583691, 'bless': 0.00033530042918454936, 'poking': 6.706008583690987e-05, 'strike': 0.00013412017167381974, 'insured': 0.00013412017167381974, 'referred': 0.00013412017167381974, 'influence': 0.00013412017167381974, 'disregard': 0.00013412017167381974, 'wounding': 0.00013412017167381974, 'witness': 0.00033530042918454936, 'foresee': 0.0002682403433476395, 'accrue': 6.706008583690987e-05, 'obviating': 6.706008583690987e-05, 'persisted': 0.00013412017167381974, 'abandoned': 6.706008583690987e-05, 'reconciled': 0.0002682403433476395, 'anticipate': 6.706008583690987e-05, 'attempting': 0.0006035407725321889, 'weaken': 0.00013412017167381974, 'revealed': 0.0002011802575107296, 'lifted': 6.706008583690987e-05, 'prevailing': 0.0002011802575107296, 'putting': 0.0002682403433476395, 'counteracted': 6.706008583690987e-05, 'exhilarated': 6.706008583690987e-05, 'elevated': 0.0002682403433476395, 'distrust': 0.0002011802575107296, 'calmness': 0.00013412017167381974, 'overlooked': 6.706008583690987e-05, 'beamed': 6.706008583690987e-05, 'watching': 0.000536480686695279, 'ascertain': 0.00013412017167381974, 'banish': 6.706008583690987e-05, 'wrapt': 6.706008583690987e-05, 'addressed': 0.0002011802575107296, 'choose': 0.0002011802575107296, 'extort': 6.706008583690987e-05, 'preferring': 6.706008583690987e-05, 'cod': 6.706008583690987e-05, 'boiled': 6.706008583690987e-05, 'released': 0.0002011802575107296, 'writing': 0.000536480686695279, 'conduct': 0.00013412017167381974, 'sealed': 6.706008583690987e-05, 'ringing': 6.706008583690987e-05, 'conveyed': 0.0002011802575107296, 'listening': 0.0004023605150214592, 'starting': 0.00013412017167381974, 'borne': 0.0006706008583690987, 'advanced': 0.0002682403433476395, 'exclaiming': 6.706008583690987e-05, 'demanded': 6.706008583690987e-05, 'caused': 6.706008583690987e-05, 'conjure': 6.706008583690987e-05, 'dining': 6.706008583690987e-05, 'commissioned': 6.706008583690987e-05, 'agreeing': 6.706008583690987e-05, 'forget': 0.0007376609442060086, 'concerning': 0.00013412017167381974, 'abstracted': 6.706008583690987e-05, 'occupied': 0.00013412017167381974, 'concern': 6.706008583690987e-05, 'dawdled': 6.706008583690987e-05, 'flew': 0.00013412017167381974, 'note': 6.706008583690987e-05, 'permitting': 6.706008583690987e-05, 'long': 6.706008583690987e-05, 'MY': 6.706008583690987e-05, 'represent': 0.0002011802575107296, 'holds': 6.706008583690987e-05, 'tis': 0.0002682403433476395, 'pity': 0.0004023605150214592, 'freeze': 6.706008583690987e-05, 'DID': 0.00033530042918454936, 'eluded': 6.706008583690987e-05, 'persevered': 6.706008583690987e-05, 'excepting': 6.706008583690987e-05, 'compound': 0.00013412017167381974, 'amuse': 0.0002682403433476395, 'derived': 0.00013412017167381974, 'strengthening': 6.706008583690987e-05, 'grieved': 0.00013412017167381974, 'watched': 0.0006035407725321889, 'escaped': 0.0004694206008583691, 'expecting': 0.00033530042918454936, 'requesting': 6.706008583690987e-05, 'contrived': 0.0002011802575107296, 'collect': 0.0002682403433476395, 'risking': 6.706008583690987e-05, 'nodded': 6.706008583690987e-05, 'sauntered': 6.706008583690987e-05, 'Invited': 6.706008583690987e-05, 'lead': 0.0004023605150214592, 'awakening': 6.706008583690987e-05, 'delayed': 0.0002682403433476395, 'urging': 0.00013412017167381974, 'demand': 0.0002011802575107296, 'foretold': 0.00013412017167381974, 'hated': 0.00013412017167381974, 'remains': 0.00013412017167381974, 'debated': 6.706008583690987e-05, 'shield': 6.706008583690987e-05, 'confirm': 0.0002011802575107296, 'dispirited': 0.00013412017167381974, 'stirring': 0.0002011802575107296, 'altering': 6.706008583690987e-05, 'alighted': 6.706008583690987e-05, 'lit': 0.00013412017167381974, 'curtsying': 6.706008583690987e-05, 'permitted': 0.00013412017167381974, 'mingle': 6.706008583690987e-05, 'moving': 0.0002682403433476395, 'approach': 6.706008583690987e-05, 'unobserved': 6.706008583690987e-05, 'betray': 6.706008583690987e-05, 'approached': 0.0002011802575107296, 'inquired': 0.0002682403433476395, 'shake': 6.706008583690987e-05, 'struggling': 6.706008583690987e-05, 'regretted': 0.0002011802575107296, 'reviving': 0.0002011802575107296, 'Go': 6.706008583690987e-05, 'rest': 0.0002011802575107296, 'Wait': 0.00013412017167381974, 'entreat': 0.00033530042918454936, 'oppressed': 0.0004694206008583691, 'hartshorn': 6.706008583690987e-05, 'undressed': 6.706008583690987e-05, 'subsisted': 0.00013412017167381974, 'feed': 0.00013412017167381974, 'mistake': 6.706008583690987e-05, 'unprincipled': 6.706008583690987e-05, 'sporting': 6.706008583690987e-05, 'weakened': 0.00013412017167381974, 'await': 6.706008583690987e-05, 'ESTEEM': 6.706008583690987e-05, 'embitter': 6.706008583690987e-05, 'uniting': 0.00013412017167381974, 'heighten': 0.00013412017167381974, 'dressed': 0.0002011802575107296, 'kneeling': 6.706008583690987e-05, 'permit': 6.706008583690987e-05, 'sooth': 6.706008583690987e-05, 'tranquilize': 6.706008583690987e-05, 'requiring': 0.00013412017167381974, 'wander': 6.706008583690987e-05, 'avoiding': 0.0002011802575107296, 'pitying': 0.00013412017167381974, 'liking': 0.0002011802575107296, 'measuring': 0.00013412017167381974, 'disappeared': 0.00013412017167381974, 'imply': 6.706008583690987e-05, 'spreading': 0.0002682403433476395, 'opening': 6.706008583690987e-05, 'choked': 6.706008583690987e-05, 'covering': 6.706008583690987e-05, 'follows': 0.00013412017167381974, 'guarded': 0.00013412017167381974, 'obey': 6.706008583690987e-05, 'proclaimed': 6.706008583690987e-05, 'hardened': 0.0002682403433476395, 'served': 0.0002682403433476395, 'treating': 0.00033530042918454936, 'dictate': 0.00013412017167381974, 'Determined': 6.706008583690987e-05, 'contributing': 6.706008583690987e-05, 'indisposed': 0.00013412017167381974, 'rise': 6.706008583690987e-05, 'slept': 0.00013412017167381974, 'aching': 0.00013412017167381974, 'exclaim': 6.706008583690987e-05, 'kill': 0.00013412017167381974, 'Think': 6.706008583690987e-05, 'distress': 0.00013412017167381974, 'hate': 0.0002011802575107296, 'torture': 0.0002682403433476395, 'leaves': 6.706008583690987e-05, 'him?"--': 6.706008583690987e-05, 'Pray': 0.00013412017167381974, 'repulsed': 6.706008583690987e-05, 'lowered': 6.706008583690987e-05, 'acted': 0.0002682403433476395, 'grieve': 0.00013412017167381974, 'acquit': 0.0002682403433476395, 'hazarded': 6.706008583690987e-05, 'warranted': 6.706008583690987e-05, 'condemned': 0.00013412017167381974, 'instigated': 6.706008583690987e-05, 'leagued': 6.706008583690987e-05, 'bely': 6.706008583690987e-05, 'contend': 0.00013412017167381974, 'supports': 6.706008583690987e-05, 'resists': 6.706008583690987e-05, 'objects': 6.706008583690987e-05, 'shuddering': 6.706008583690987e-05, 'repeating': 0.0002011802575107296, 'premeditated': 6.706008583690987e-05, 'ensued': 0.00013412017167381974, 'comfort': 0.0002011802575107296, 'regards': 6.706008583690987e-05, 'lie': 0.0002011802575107296, 'constrained': 6.706008583690987e-05, 'drops': 6.706008583690987e-05, 'plague': 6.706008583690987e-05, 'governed': 0.0002682403433476395, 'adjusting': 6.706008583690987e-05, 'summoned': 0.00013412017167381974, 'distressing': 0.00013412017167381974, 'tempted': 6.706008583690987e-05, 'amused': 0.0002011802575107296, 'cure': 0.00013412017167381974, 'grieves': 6.706008583690987e-05, 'finishing': 0.00013412017167381974, 'dashing': 6.706008583690987e-05, 'signify': 0.0004023605150214592, 'promises': 6.706008583690987e-05, 'fly': 6.706008583690987e-05, 'grows': 6.706008583690987e-05, 'hinted': 0.00013412017167381974, 'moan': 6.706008583690987e-05, 'hates': 6.706008583690987e-05, 'wants': 0.00013412017167381974, 'Let': 0.00013412017167381974, 'joked': 6.706008583690987e-05, 'caution': 6.706008583690987e-05, 'naming': 6.706008583690987e-05, 'blown': 6.706008583690987e-05, 'defend': 0.0002682403433476395, 'Mind': 6.706008583690987e-05, 'chuckle': 6.706008583690987e-05, 'prenticed': 6.706008583690987e-05, 'spirit': 6.706008583690987e-05, 'drives': 6.706008583690987e-05, 'rising': 0.0004694206008583691, 'repaired': 6.706008583690987e-05, 'tasted': 6.706008583690987e-05, 'regretting': 0.00033530042918454936, 'swallowed': 6.706008583690987e-05, 'reflected': 6.706008583690987e-05, 'healing': 6.706008583690987e-05, 'fancied': 0.000536480686695279, 'presided': 6.706008583690987e-05, 'KNEW': 6.706008583690987e-05, 'unfolded': 6.706008583690987e-05, 'identify': 6.706008583690987e-05, 'stayed': 0.00013412017167381974, 'think"--he': 6.706008583690987e-05, 'awoke': 6.706008583690987e-05, 'closed': 0.0002011802575107296, 'acquitting': 6.706008583690987e-05, 'prove': 0.0004694206008583691, 'rushing': 6.706008583690987e-05, 'inforce': 6.706008583690987e-05, 'streamed': 6.706008583690987e-05, 'withdrew': 0.0002682403433476395, 'referring': 6.706008583690987e-05, 'relying': 0.00013412017167381974, 'dearer': 6.706008583690987e-05, 'refusing': 0.00013412017167381974, 'retreating': 6.706008583690987e-05, 'proved': 0.0008717811158798284, 'esteeming': 6.706008583690987e-05, 'desiring': 6.706008583690987e-05, 'convincing': 0.0002682403433476395, 'tending': 0.00013412017167381974, 'sighing': 6.706008583690987e-05, 'resembling': 6.706008583690987e-05, 'judging': 0.0002011802575107296, 'relate': 0.0002011802575107296, 'eloping': 6.706008583690987e-05, 'lament': 6.706008583690987e-05, 'restrain': 0.00013412017167381974, 'threw': 0.0002011802575107296, 'gloom,--even': 6.706008583690987e-05, 'suffered--': 6.706008583690987e-05, 'arrive': 6.706008583690987e-05, 'trace': 0.0002011802575107296, 'dispose': 0.0002011802575107296, 'fallen': 0.00013412017167381974, 'spunging': 6.706008583690987e-05, 'faded': 6.706008583690987e-05, 'doted': 0.00013412017167381974, 'endured': 6.706008583690987e-05, 'beholding': 6.706008583690987e-05, 'handle': 6.706008583690987e-05, 'discharged': 0.00013412017167381974, 'place': 0.0002682403433476395, 'residing': 6.706008583690987e-05, 'deserved': 0.0004023605150214592, 'ranging': 6.706008583690987e-05, 'Willoughby!"--': 6.706008583690987e-05, 'forwarded': 6.706008583690987e-05, 'availed': 6.706008583690987e-05, 'seduced': 6.706008583690987e-05, 'relieved': 0.0002682403433476395, 'Knowing': 6.706008583690987e-05, 'irresolute': 6.706008583690987e-05, 'interfering': 6.706008583690987e-05, 'reclaim': 6.706008583690987e-05, 'compares': 6.706008583690987e-05, 'pictures': 6.706008583690987e-05, 'tormented': 6.706008583690987e-05, 'strengthen': 6.706008583690987e-05, 'communicating': 0.00013412017167381974, 'irritates': 6.706008583690987e-05, 'confessed': 0.0002011802575107296, 'punish': 6.706008583690987e-05, 'sighed': 0.0002682403433476395, 'presumed': 6.706008583690987e-05, 'preyed': 6.706008583690987e-05, 'brooding': 6.706008583690987e-05, 'answering': 0.00013412017167381974, 'mortifying': 6.706008583690987e-05, 'afflicting': 6.706008583690987e-05, 'shorten': 6.706008583690987e-05, 'comprise': 6.706008583690987e-05, 'cheat': 6.706008583690987e-05, 'spurned': 6.706008583690987e-05, 'paying': 0.00033530042918454936, 'foreseeing': 6.706008583690987e-05, 'doomed': 0.00013412017167381974, 'suspecting': 6.706008583690987e-05, 'comforted': 6.706008583690987e-05, 'militate': 6.706008583690987e-05, 'reaped': 6.706008583690987e-05, 'drop': 0.00013412017167381974, 'worried': 6.706008583690987e-05, 'rate': 6.706008583690987e-05, 'earned': 0.0002011802575107296, 'soften': 0.00013412017167381974, 'disclosing': 6.706008583690987e-05, 'oblige': 0.00013412017167381974, 'augmented': 6.706008583690987e-05, 'commission': 6.706008583690987e-05, 'arbour': 6.706008583690987e-05, 'informing': 0.00013412017167381974, 'TOLD': 6.706008583690987e-05, 'post': 6.706008583690987e-05, 'simpering': 6.706008583690987e-05, 'laughs': 6.706008583690987e-05, 'crossing': 6.706008583690987e-05, 'do--': 6.706008583690987e-05, 'humour': 6.706008583690987e-05, 'interposed': 0.00013412017167381974, 'silenced': 0.00013412017167381974, 'plagued': 0.00013412017167381974, 'governing': 6.706008583690987e-05, 'yielded': 6.706008583690987e-05, 'conditioned': 6.706008583690987e-05, 'transacted': 6.706008583690987e-05, 'ascending': 6.706008583690987e-05, 'tend': 0.00013412017167381974, 'promise': 6.706008583690987e-05, 'exciting': 6.706008583690987e-05, 'comprised': 6.706008583690987e-05, 'imprint': 6.706008583690987e-05, 'deciding': 0.00013412017167381974, 'named': 6.706008583690987e-05, 'bespeak': 0.00013412017167381974, 'serve': 0.0002011802575107296, 'eyed': 0.00013412017167381974, 'secures': 6.706008583690987e-05, 'hang': 6.706008583690987e-05, 'that"--lowering': 6.706008583690987e-05, 'Recollecting': 6.706008583690987e-05, 'vouchsafe': 6.706008583690987e-05, 'adjoining': 6.706008583690987e-05, 'cost': 0.0002682403433476395, 'bequeathed': 6.706008583690987e-05, 'slope': 6.706008583690987e-05, 'buying': 6.706008583690987e-05, 'dies': 6.706008583690987e-05, 'descend': 0.00013412017167381974, 'saves': 6.706008583690987e-05, 'destroys': 6.706008583690987e-05, 'relinquished': 6.706008583690987e-05, 'promoting': 0.0002682403433476395, 'atoning': 6.706008583690987e-05, 'associate': 6.706008583690987e-05, 'rewarded': 0.0002011802575107296, 'sympathised': 6.706008583690987e-05, 'suit': 0.00013412017167381974, 'flowed': 6.706008583690987e-05, 'inflicting': 6.706008583690987e-05, 'behold': 6.706008583690987e-05, 'sourness': 6.706008583690987e-05, 'rescued': 6.706008583690987e-05, 'proportioned': 6.706008583690987e-05, 'humble': 6.706008583690987e-05, 'mortify': 0.00013412017167381974, 'misapplied': 6.706008583690987e-05, 'despising': 6.706008583690987e-05, 'teazed': 6.706008583690987e-05, 'bespoke': 6.706008583690987e-05, 'laboured': 6.706008583690987e-05, 'inclosing': 6.706008583690987e-05, 'enforcing': 6.706008583690987e-05, 'declaring': 0.0002011802575107296, 'mounted': 6.706008583690987e-05, 'ornamented': 6.706008583690987e-05, 'handed': 0.00013412017167381974, 'disclaiming': 6.706008583690987e-05, 'paint': 6.706008583690987e-05, 'provoked': 0.00013412017167381974, 'foretell': 6.706008583690987e-05, 'distresses': 0.00013412017167381974, 'hiding': 0.00013412017167381974, 'enraged': 6.706008583690987e-05, 'retained': 0.00013412017167381974, 'perplexed': 6.706008583690987e-05, 'retarded': 6.706008583690987e-05, 'rejoice': 0.0002011802575107296, 'fettered': 0.0002011802575107296, 'derive': 6.706008583690987e-05, 'dreaded': 0.0002682403433476395, 'so"--replied': 6.706008583690987e-05, 'speak;--sure': 6.706008583690987e-05, 'have.--Poor': 6.706008583690987e-05, 'spends': 6.706008583690987e-05, 'advance': 0.0002011802575107296, 'LOOK': 6.706008583690987e-05, 'deter': 6.706008583690987e-05, 'exceeded': 6.706008583690987e-05, 'volunteer': 6.706008583690987e-05, 'fetching': 0.00013412017167381974, 'loitered': 6.706008583690987e-05, 'conciliate': 6.706008583690987e-05, 'muttered': 6.706008583690987e-05, 'cause': 6.706008583690987e-05, 'Engaged': 6.706008583690987e-05, 'HAS': 0.00013412017167381974, 'performing': 6.706008583690987e-05, 'Going': 6.706008583690987e-05, 'whispered': 0.00013412017167381974, 'outstaid': 6.706008583690987e-05, 'teazing': 6.706008583690987e-05, 'tricked': 6.706008583690987e-05, 'expose': 0.00013412017167381974, 'influenced': 0.00013412017167381974, 'intruding': 6.706008583690987e-05, 'monopolize': 6.706008583690987e-05, 'discomposed': 6.706008583690987e-05, 'reconcile': 6.706008583690987e-05, 'unsuspected': 6.706008583690987e-05, 'congratulated': 6.706008583690987e-05, 'minute': 6.706008583690987e-05, 'befell': 0.00013412017167381974, 'outrun': 6.706008583690987e-05, 'undergoing': 6.706008583690987e-05, 'preceded': 6.706008583690987e-05, 'inconvenience': 6.706008583690987e-05, 'unrestrained': 6.706008583690987e-05, 'lamenting': 6.706008583690987e-05, 'mixing': 0.00013412017167381974, 'reside': 0.00013412017167381974, 'think,"--was': 6.706008583690987e-05, 'protest': 0.00013412017167381974, 'drive': 0.0002011802575107296, 'managed': 0.00013412017167381974, 'measured': 6.706008583690987e-05, 'pacified': 6.706008583690987e-05, 'request': 6.706008583690987e-05, 'cherishing': 6.706008583690987e-05, 'shown': 6.706008583690987e-05, 'vouchsafed': 6.706008583690987e-05, 'strengthened': 0.0002011802575107296, 'resume': 6.706008583690987e-05, 'resettled': 6.706008583690987e-05, 'all.--': 6.706008583690987e-05, 'fretted': 6.706008583690987e-05, 'stepped': 6.706008583690987e-05, 'smirked': 6.706008583690987e-05, 'simpered': 6.706008583690987e-05, 'joke': 6.706008583690987e-05, 'turns': 6.706008583690987e-05, 'meaning': 0.00013412017167381974, 'popt': 6.706008583690987e-05, 'dreaming': 6.706008583690987e-05, 'packed': 6.706008583690987e-05, 'hears': 6.706008583690987e-05, 'fit': 6.706008583690987e-05, 'preparing': 0.00033530042918454936, 'undeceiving': 6.706008583690987e-05, 'perform': 0.0002011802575107296, 'dwell': 6.706008583690987e-05, 'practised': 6.706008583690987e-05, 'belonged': 6.706008583690987e-05, 'state': 6.706008583690987e-05, 'soothe': 0.00013412017167381974, 'utter': 6.706008583690987e-05, 'exclaimed--': 6.706008583690987e-05, 'months!--Have': 6.706008583690987e-05, 'confirmed': 0.00013412017167381974, 'months!"--cried': 6.706008583690987e-05, 'undeceive': 6.706008583690987e-05, 'harbour': 6.706008583690987e-05, 'bewitching': 0.00013412017167381974, 'so.--': 6.706008583690987e-05, 'enjoying': 0.0002011802575107296, 'spring': 6.706008583690987e-05, 'silence': 6.706008583690987e-05, 'cries': 6.706008583690987e-05, 'obtaining': 6.706008583690987e-05, 'dissented': 6.706008583690987e-05, 'advances': 6.706008583690987e-05, 'weathered': 6.706008583690987e-05, 'alarm': 6.706008583690987e-05, 'apprehended': 6.706008583690987e-05, 'planning': 0.00013412017167381974, 'represented': 0.00013412017167381974, 'protested': 6.706008583690987e-05, 'advancing': 0.00013412017167381974, 'clapped': 6.706008583690987e-05, 'retort': 6.706008583690987e-05, 'deserves': 6.706008583690987e-05, 'dignified': 0.00013412017167381974, 'wrung': 6.706008583690987e-05, 'braving': 6.706008583690987e-05, 'reward': 6.706008583690987e-05, 'Born': 6.706008583690987e-05, 'picture': 6.706008583690987e-05, 'forbear': 6.706008583690987e-05, 'gloried': 6.706008583690987e-05, 'forgave': 0.00013412017167381974, 'urge': 0.00033530042918454936, 'accosted': 6.706008583690987e-05, 'Get': 6.706008583690987e-05, 'vowed': 6.706008583690987e-05, 'trim': 6.706008583690987e-05, 'plaguing': 6.706008583690987e-05, 'expedient': 6.706008583690987e-05, 'spread': 0.00013412017167381974, 'interrupt': 0.00013412017167381974, 'interrupting': 6.706008583690987e-05, 'Laughing': 6.706008583690987e-05, 'lodging': 6.706008583690987e-05, 'light': 6.706008583690987e-05, 'ordained': 0.0002011802575107296, 'get!--Good': 6.706008583690987e-05, 'giggling': 6.706008583690987e-05, 'reply': 6.706008583690987e-05, 'torn': 0.0002011802575107296, 'claimed': 6.706008583690987e-05, 'foreplanned': 6.706008583690987e-05, 'furnishing': 6.706008583690987e-05, 'Edward': 6.706008583690987e-05, 'reminds': 6.706008583690987e-05, 'conclude': 0.00013412017167381974, 'chance': 6.706008583690987e-05, 'heart': 6.706008583690987e-05, 'effected': 6.706008583690987e-05, 'resisted': 0.0002011802575107296, 'detaining': 6.706008583690987e-05, 'inforced': 6.706008583690987e-05, 'argue': 6.706008583690987e-05, 'overcoming': 0.00013412017167381974, 'triumph': 6.706008583690987e-05, 'Dashwoods;"--was': 6.706008583690987e-05, 'gape': 6.706008583690987e-05, 'copy': 6.706008583690987e-05, 'pursue': 6.706008583690987e-05, 'apologising': 0.0002011802575107296, 'commended': 6.706008583690987e-05, 'Astonished': 6.706008583690987e-05, 'cry': 6.706008583690987e-05, 'hinder': 6.706008583690987e-05, 'persevering': 6.706008583690987e-05, 'presenting': 6.706008583690987e-05, 'undertake': 0.00013412017167381974, 'soon.--': 6.706008583690987e-05, 'worded': 6.706008583690987e-05, 'arisen': 0.00013412017167381974, 'withdrawn': 6.706008583690987e-05, 'TRIED': 6.706008583690987e-05, 'compassionate': 6.706008583690987e-05, "an't": 6.706008583690987e-05, 'repair': 6.706008583690987e-05, 'works': 6.706008583690987e-05, 'deliberating': 0.00013412017167381974, 'congratulating': 6.706008583690987e-05, 'determining': 6.706008583690987e-05, 'intruded': 6.706008583690987e-05, 'recovering': 0.0002011802575107296, 'charged': 6.706008583690987e-05, 'Allow': 6.706008583690987e-05, 'establish': 0.00013412017167381974, 'LOOKED': 6.706008583690987e-05, 'gathering': 6.706008583690987e-05, 'contributed': 0.00013412017167381974, 'hurry': 0.0002011802575107296, 'befall': 6.706008583690987e-05, 'reconsider': 6.706008583690987e-05, 'reverted': 6.706008583690987e-05, 'conjecture': 6.706008583690987e-05, 'complete': 0.00013412017167381974, 'marries': 6.706008583690987e-05, 'exchanged': 6.706008583690987e-05, 'forfeiting': 6.706008583690987e-05, 'worship': 6.706008583690987e-05, 'avail': 6.706008583690987e-05, 'disliked': 0.00013412017167381974, 'affront': 6.706008583690987e-05, 'assuring': 0.00013412017167381974, 'fetch': 0.0002011802575107296, 'vacate': 6.706008583690987e-05, 'bears': 6.706008583690987e-05, 'refrain': 6.706008583690987e-05, 'impoverished': 6.706008583690987e-05, 'be.--': 6.706008583690987e-05, 'befalls': 6.706008583690987e-05, 'retain': 0.00013412017167381974, 'discarded': 6.706008583690987e-05, 'accelerate': 6.706008583690987e-05, 'NOW,"--said': 6.706008583690987e-05, 'gratify': 0.00013412017167381974, 'mentioned--': 6.706008583690987e-05, 'agitate': 6.706008583690987e-05, 'fill': 0.00013412017167381974, 'dissipated': 6.706008583690987e-05, 'confirming': 0.0002011802575107296, 'publishing': 6.706008583690987e-05, 'recalled': 0.00013412017167381974, 'born': 0.0002682403433476395, 'intend': 6.706008583690987e-05, 'captivate': 6.706008583690987e-05, 'interfere': 6.706008583690987e-05, 'hit': 6.706008583690987e-05, 'disapproving': 6.706008583690987e-05, 'starved': 0.00013412017167381974, 'enamoured': 6.706008583690987e-05, 'completed': 6.706008583690987e-05, 'Delaford;--a': 6.706008583690987e-05, 'extinguished': 6.706008583690987e-05, 'shedding': 0.00013412017167381974, 'lingering': 0.00013412017167381974, 'restoring': 6.706008583690987e-05, 'prohibited': 0.00013412017167381974, 'sloping': 6.706008583690987e-05, 'dotted': 6.706008583690987e-05, 'interspersed': 6.706008583690987e-05, 'swelling': 6.706008583690987e-05, 'stealing': 6.706008583690987e-05, 'whiled': 6.706008583690987e-05, 'lounging': 6.706008583690987e-05, 'dawdling': 6.706008583690987e-05, 'nipped': 6.706008583690987e-05, 'forsaking': 6.706008583690987e-05, 'deterred': 6.706008583690987e-05, 'Reading': 6.706008583690987e-05, 'atoned': 6.706008583690987e-05, 'conceited': 6.706008583690987e-05, 'reduced': 0.00013412017167381974, 'slight': 6.706008583690987e-05, 'idled': 6.706008583690987e-05, 'devoted': 6.706008583690987e-05, 'diffident': 6.706008583690987e-05, 'disinterested': 6.706008583690987e-05, 'unexpressed': 6.706008583690987e-05, 'walks': 6.706008583690987e-05, 'trifled': 0.00013412017167381974, 'poured': 6.706008583690987e-05, 'shivering': 6.706008583690987e-05, 'nursing': 6.706008583690987e-05, 'persisting': 6.706008583690987e-05, 'examined': 0.00013412017167381974, 'restore': 0.00013412017167381974, 'allowing': 0.00013412017167381974, 'withstood': 6.706008583690987e-05, 'affect': 0.0002011802575107296, 'seconded': 6.706008583690987e-05, 'reason': 0.00013412017167381974, 'render': 0.00013412017167381974, 'expel': 6.706008583690987e-05, 'close': 6.706008583690987e-05, 'administering': 6.706008583690987e-05, 'prescribed': 0.00013412017167381974, 'recreating': 6.706008583690987e-05, 'awakened': 0.0002682403433476395, 'assisting': 6.706008583690987e-05, 'despatching': 6.706008583690987e-05, 'effecting': 6.706008583690987e-05, 'rung': 6.706008583690987e-05, 'obviated': 6.706008583690987e-05, '-': 0.00033530042918454936, 'felt!--a': 6.706008583690987e-05, 'guide': 6.706008583690987e-05, 'lessened': 0.00013412017167381974, 'watch': 0.00013412017167381974, 'tortured': 6.706008583690987e-05, 'wretched': 0.00013412017167381974, 'pictured': 6.706008583690987e-05, 'arriving': 0.00013412017167381974, 'scrupled': 6.706008583690987e-05, 'bury': 6.706008583690987e-05, 'foregoing': 6.706008583690987e-05, 'conning': 6.706008583690987e-05, 'bent': 6.706008583690987e-05, 'blessed': 0.00013412017167381974, 'surpassing': 0.00013412017167381974, 'expand': 6.706008583690987e-05, 'calming': 6.706008583690987e-05, 'enfeebled': 6.706008583690987e-05, 'supplying': 6.706008583690987e-05, 'remind': 6.706008583690987e-05, 'too!--perhaps': 6.706008583690987e-05, 'eating': 6.706008583690987e-05, 'retired': 6.706008583690987e-05, 'roared': 6.706008583690987e-05, 'beat': 6.706008583690987e-05, 'flaring': 6.706008583690987e-05, 'discern': 6.706008583690987e-05, 'tell!--with': 6.706008583690987e-05, 'rushed': 6.706008583690987e-05, 'obeyed': 6.706008583690987e-05, 'Sit': 6.706008583690987e-05, 'praised!--But': 6.706008583690987e-05, 'here,"--speaking': 6.706008583690987e-05, 'overspreading': 6.706008583690987e-05, 'DO': 0.00013412017167381974, 'mean,"--said': 6.706008583690987e-05, 'is,"--was': 6.706008583690987e-05, 'accounted': 6.706008583690987e-05, 'imputed': 0.00033530042918454936, 'insist': 6.706008583690987e-05, 'associating': 6.706008583690987e-05, 're': 0.00013412017167381974, 'reprobate': 6.706008583690987e-05, 'sacrificed': 0.0002011802575107296, 'expatiate': 6.706008583690987e-05, 'scrupling': 6.706008583690987e-05, 'display': 6.706008583690987e-05, 'heightened': 0.0002011802575107296, 'hardening': 6.706008583690987e-05, 'respected': 6.706008583690987e-05, 'creating': 6.706008583690987e-05, 'superior!"--': 6.706008583690987e-05, 'pursuing': 0.0002682403433476395, 'omitted': 6.706008583690987e-05, 'taxed': 6.706008583690987e-05, 'discontented': 6.706008583690987e-05, 'address': 0.00013412017167381974, 'awaited': 6.706008583690987e-05, 'deliver': 6.706008583690987e-05, 'undervalued': 6.706008583690987e-05, 'dissembling': 6.706008583690987e-05, 'hearted': 6.706008583690987e-05, 'gives': 6.706008583690987e-05, 'forbid': 6.706008583690987e-05, 'undergone': 6.706008583690987e-05, 'separated': 0.0002011802575107296, 'chusing': 0.00013412017167381974, 'shrugging': 6.706008583690987e-05, 'silencing': 6.706008583690987e-05, 'preserve': 0.00013412017167381974, 'Watched': 6.706008583690987e-05, 'blundered': 6.706008583690987e-05, 'frame': 6.706008583690987e-05, 'God!--holding': 6.706008583690987e-05, 'dying': 0.00033530042918454936, 'too!--doting': 6.706008583690987e-05, 'breakfasting': 6.706008583690987e-05, 'Affecting': 6.706008583690987e-05, 'appeased': 6.706008583690987e-05, 'copying': 6.706008583690987e-05, 'do!--we': 6.706008583690987e-05, 'copied': 6.706008583690987e-05, 'hoarded': 6.706008583690987e-05, 'kiss': 6.706008583690987e-05, 'married.--Well': 6.706008583690987e-05, 'inflicted': 6.706008583690987e-05, 'vex': 6.706008583690987e-05, 'undiscerning': 6.706008583690987e-05, 'scorning': 6.706008583690987e-05, 'hating': 6.706008583690987e-05, 'leading': 0.0002011802575107296, 'letting': 6.706008583690987e-05, 'forgetting': 6.706008583690987e-05, 'rub': 6.706008583690987e-05, 'differing': 6.706008583690987e-05, 'awaking': 6.706008583690987e-05, 'refreshed': 6.706008583690987e-05, 'save': 6.706008583690987e-05, 'embraced': 6.706008583690987e-05, 'sleepless': 6.706008583690987e-05, 'wearing': 6.706008583690987e-05, 'blamed': 6.706008583690987e-05, 'reproved': 6.706008583690987e-05, 'mend': 6.706008583690987e-05, 'imparted': 6.706008583690987e-05, 'equalled': 6.706008583690987e-05, 'perceived,--not': 6.706008583690987e-05, 'fashioned': 6.706008583690987e-05, 'is"--replied': 6.706008583690987e-05, 'respect': 6.706008583690987e-05, 'acquired': 6.706008583690987e-05, 'him?--Did': 6.706008583690987e-05, 'soothing': 0.00013412017167381974, 'rooted': 6.706008583690987e-05, 'it;--but': 6.706008583690987e-05, 'weakening': 6.706008583690987e-05, 'pour': 6.706008583690987e-05, 'reclining': 6.706008583690987e-05, 'dawned': 6.706008583690987e-05, 'redeem': 6.706008583690987e-05, 'engross': 6.706008583690987e-05, 'fortitude': 6.706008583690987e-05, 'entitled': 6.706008583690987e-05, 'traced': 6.706008583690987e-05, 'accustom': 6.706008583690987e-05, 'rested': 0.00013412017167381974, 'containing': 6.706008583690987e-05, 'bearing': 0.00013412017167381974, 'anticipating': 6.706008583690987e-05, 'resorted': 6.706008583690987e-05, 'borrow': 6.706008583690987e-05, 'unsettle': 6.706008583690987e-05, 'appointed': 6.706008583690987e-05, 'there,"--pointing': 6.706008583690987e-05, 'treasured': 6.706008583690987e-05, 'unguarded': 6.706008583690987e-05, 'postponing': 6.706008583690987e-05, 'crept': 6.706008583690987e-05, 'compare': 0.0002011802575107296, 'died,--it': 6.706008583690987e-05, 'died,--': 6.706008583690987e-05, 'failing': 6.706008583690987e-05, 'repaid': 6.706008583690987e-05, 'irritated': 6.706008583690987e-05, 'wronged': 0.00013412017167381974, 'benefit': 6.706008583690987e-05, 'imitate': 6.706008583690987e-05, 'discharge': 6.706008583690987e-05, 'deserted': 6.706008583690987e-05, 'professed': 6.706008583690987e-05, 'reproving': 6.706008583690987e-05, 'adhering': 6.706008583690987e-05, 'worry': 6.706008583690987e-05, 'humbled': 6.706008583690987e-05, 'amended': 6.706008583690987e-05, 'regulated': 6.706008583690987e-05, 'hazarding': 6.706008583690987e-05, 'grounded': 0.00013412017167381974, 'trembled': 0.00013412017167381974, 'panting': 6.706008583690987e-05, 'dreading': 6.706008583690987e-05, 'conjecturing': 6.706008583690987e-05, 'articulate': 6.706008583690987e-05, 'unmoved': 6.706008583690987e-05, 'unbroken': 6.706008583690987e-05, 'unblemished': 6.706008583690987e-05, 'replace': 6.706008583690987e-05, 'injure': 6.706008583690987e-05, 'sobered': 6.706008583690987e-05, 'spoke,--': 6.706008583690987e-05, 'retrenched': 6.706008583690987e-05, 'practice': 6.706008583690987e-05, 'abridge': 6.706008583690987e-05, 'quivered': 6.706008583690987e-05, 'ruling': 6.706008583690987e-05, 'regrets': 6.706008583690987e-05, 'finds': 6.706008583690987e-05, 'suffers': 6.706008583690987e-05, 'reckons': 6.706008583690987e-05, 'rank': 6.706008583690987e-05, 'unsubdued': 6.706008583690987e-05, 'disordered': 6.706008583690987e-05, 'stopping': 6.706008583690987e-05, 'bide': 0.00013412017167381974, 'recognised': 6.706008583690987e-05, 'hazard': 6.706008583690987e-05, 'misled': 6.706008583690987e-05, 'certainty': 6.706008583690987e-05, 'lurking': 6.706008583690987e-05, 'conspired': 6.706008583690987e-05, 'contriving': 6.706008583690987e-05, 'merited': 6.706008583690987e-05, 'stammered': 6.706008583690987e-05, 'shaken': 6.706008583690987e-05, 'retreated': 6.706008583690987e-05, 'fearing': 6.706008583690987e-05, 'spoiling': 6.706008583690987e-05, 'cutting': 6.706008583690987e-05, 'echoed': 6.706008583690987e-05, 'remarks': 6.706008583690987e-05, 'penetrate': 6.706008583690987e-05, 'sudden;--a': 6.706008583690987e-05, 'pre': 6.706008583690987e-05, 'experiencing': 0.00013412017167381974, 'contracted': 0.00013412017167381974, 'exercising': 6.706008583690987e-05, 'swell': 6.706008583690987e-05, 'flowing': 6.706008583690987e-05, 'outgrown': 6.706008583690987e-05, 'chosen': 6.706008583690987e-05, 'Considering': 6.706008583690987e-05, 'wrought': 6.706008583690987e-05, 'praise': 6.706008583690987e-05, 'arise;--and': 6.706008583690987e-05, 'learning': 6.706008583690987e-05, 'compared': 6.706008583690987e-05, 'been,--saw': 6.706008583690987e-05, 'familiarized': 6.706008583690987e-05, 'despatch': 6.706008583690987e-05, 'worked': 6.706008583690987e-05, 'stupified': 6.706008583690987e-05, 'scorn': 6.706008583690987e-05, 'Dawlish': 6.706008583690987e-05, 'burnt': 6.706008583690987e-05, 'destroy': 6.706008583690987e-05, 'bribing': 6.706008583690987e-05, 'disinherited': 6.706008583690987e-05, 'enlightened': 6.706008583690987e-05, 'renounced': 6.706008583690987e-05, 'compliments': 6.706008583690987e-05, 'plead': 6.706008583690987e-05, 'plighted': 6.706008583690987e-05, 'resented': 6.706008583690987e-05, 'enrich': 6.706008583690987e-05, 'calculate': 6.706008583690987e-05, 'seventeen': 6.706008583690987e-05, 'unite': 6.706008583690987e-05, 'vent': 6.706008583690987e-05, 'borrowed': 6.706008583690987e-05, 'intreat': 6.706008583690987e-05, 'augmenting': 6.706008583690987e-05, 'superintend': 6.706008583690987e-05, 'invent': 6.706008583690987e-05, 'jumbled': 6.706008583690987e-05, 'inspect': 6.706008583690987e-05, 'honour': 6.706008583690987e-05, 'insulted': 6.706008583690987e-05, 'crowned': 6.706008583690987e-05, 'obstructed': 6.706008583690987e-05, 'hopes': 6.706008583690987e-05, 'lingered': 6.706008583690987e-05, 'supplanted': 6.706008583690987e-05, 'tricking': 6.706008583690987e-05, 'adopted': 6.706008583690987e-05, 'transgressed': 6.706008583690987e-05, 'gratitude': 6.706008583690987e-05, 'subsisting': 6.706008583690987e-05, 'exceed': 6.706008583690987e-05, 'rendering': 6.706008583690987e-05, 'another!--and': 6.706008583690987e-05, 'submitting': 6.706008583690987e-05, 'be;--in': 6.706008583690987e-05, 'stating': 6.706008583690987e-05, 'fled': 6.706008583690987e-05, 'surviving': 6.706008583690987e-05, 'ranked': 6.706008583690987e-05, 'producing': 6.706008583690987e-05}
# Question 1b
print ("Since the two taggers use different algorithms to find the lemmas of words, there are many differences. Some specific examples include “have” for spacy and “had” for Penn Treebank, “been” for Penn Treebank and “be” for spacy, and “surrounding” for pt with “surround” for spacy. There are similarities as well, such as 'state' for both taggers.")
Since the two taggers use different algorithms to find the lemmas of words, there are many differences. Some specific examples include “have” for spacy and “had” for Penn Treebank, “been” for Penn Treebank and “be” for spacy, and “surrounding” for pt with “surround” for spacy. There are similarities as well, such as 'state' for both taggers.
# Question 1c
print ("The numbers and percentages indicate how many times certain words repeat in a text and how much of the specific pos tag that word takes up. This shows how diverse the text is, and how unique each word is. This data can also indicate text length and complexity by showing word frequency and richness.")
The numbers and percentages indicate how many times certain words repeat in a text and how much of the specific pos tag that word takes up. This shows how diverse the text is, and how unique each word is. This data can also indicate text length and complexity by showing word frequency and richness.
# Question 2a for nltk tags noun removing punct and sw
from string import punctuation
from nltk.corpus import stopwords
stopwords = nltk.corpus.stopwords.words('english')
punct = set(punctuation)
filtered_lemmas = [lemma.lower() for lemma in nltk_lemmas if lemma.lower() not in stopwords and all(word.isalnum() or word == ' ' for word in lemma)]
tags = nltk.pos_tag(filtered_lemmas)
#only the nouns
nouns = [word for word, pos in tags if pos.startswith("N")]
# 50 most frequent noun lemmas
fd = FreqDist(nouns)
most_common_nouns = fd.most_common(50)
print(most_common_nouns)
[('wa', 1163), ('marianne', 391), ('elinor', 331), ('time', 254), ('dashwood', 236), ('sister', 233), ('jennings', 233), ('thing', 205), ('mother', 197), ('day', 188), ('nothing', 180), ('house', 152), ('colonel', 152), ('ha', 148), ('john', 147), ('heart', 123), ('willoughby', 120), ('man', 117), ('moment', 110), ('middleton', 110), ('ferrars', 103), ('chapter', 100), ('room', 100), ('kind', 95), ('letter', 95), ('lucy', 93), ('work', 92), ('project', 90), ('world', 90), ('affection', 87), ('mind', 87), ('friend', 86), ('lady', 85), ('family', 84), ('morning', 83), ('town', 82), ('year', 78), ('place', 78), ('manner', 76), ('opinion', 76), ('way', 75), ('brandon', 75), ('woman', 74), ('word', 74), ('edward', 74), ('eye', 74), ('barton', 74), ('person', 72), ('spirit', 72), ('something', 71)]
#2a spacy tags noun
import spacy
from string import punctuation
from nltk.corpus import stopwords
spacy_nouns = nlp(spacy_raw)
stopwords = stopwords.words("english")
punct = set(punctuation)
filtered_lemmas_sp_n = [token.lemma_ for token in spacy_nouns if (token.pos_ == "NOUN") and (token.lemma_ not in stopwords) and (token.lemma_.lower() not in punct) and (token.lemma_.isalpha())]
fd = FreqDist(filtered_lemmas_sp_n)
most_common_lemmas_noun_sp = fd.most_common(50)
print(most_common_lemmas_noun_sp)
[('sister', 326), ('mother', 258), ('time', 256), ('thing', 205), ('day', 192), ('house', 160), ('man', 140), ('heart', 123), ('room', 121), ('friend', 116), ('moment', 114), ('year', 103), ('letter', 96), ('mind', 94), ('manner', 90), ('affection', 90), ('world', 90), ('morning', 86), ('family', 85), ('spirit', 85), ('brother', 84), ('town', 84), ('feeling', 83), ('place', 82), ('kind', 80), ('opinion', 76), ('lady', 76), ('engagement', 76), ('way', 75), ('woman', 74), ('word', 74), ('child', 73), ('daughter', 73), ('eye', 73), ('hour', 72), ('subject', 71), ('pleasure', 69), ('person', 68), ('party', 65), ('side', 65), ('attention', 64), ('one', 64), ('happiness', 64), ('acquaintance', 63), ('comfort', 63), ('life', 62), ('behaviour', 62), ('situation', 60), ('hand', 59), ('cottage', 57)]
# Question 2b for nltk tags verb
stopwords = nltk.corpus.stopwords.words('english')
punct = set(punctuation)
filtered_lemmas = [lemma.lower() for lemma in nltk_lemmas if lemma.lower() not in stopwords and all(word.isalnum() or word == ' ' for word in lemma)]
tags = nltk.pos_tag(filtered_lemmas)
#only the verbs
verbs = [word for word, pos in tags if pos.startswith("V")]
# 50 most frequent verb lemmas
fd = FreqDist(verbs)
most_common_verbs = fd.most_common(50)
print(most_common_verbs)
[('said', 389), ('wa', 256), ('know', 188), ('think', 180), ('say', 163), ('made', 138), ('see', 127), ('make', 121), ('go', 99), ('thought', 98), ('seemed', 91), ('came', 89), ('left', 86), ('felt', 85), ('replied', 83), ('give', 82), ('come', 79), ('believe', 78), ('gave', 71), ('saw', 70), ('found', 70), ('cried', 70), ('done', 68), ('told', 62), ('going', 60), ('looked', 56), ('seen', 56), ('known', 55), ('feeling', 55), ('given', 54), ('brought', 54), ('returned', 51), ('took', 51), ('find', 51), ('tell', 51), ('passed', 49), ('went', 49), ('leave', 48), ('elinor', 48), ('wished', 46), ('continued', 45), ('knew', 44), ('obliged', 44), ('called', 43), ('determined', 41), ('take', 41), ('began', 41), ('seeing', 41), ('set', 40), ('received', 40)]
#2b spacy tags verb
import spacy
from string import punctuation
from nltk.corpus import stopwords
spacy_verbs = nlp(spacy_raw)
stopwords = stopwords.words("english")
punct = set(punctuation)
filtered_lemmas_sp_v = [token.lemma_ for token in spacy_verbs if (token.pos_ == "VERB") and (token.lemma_ not in stopwords) and (token.lemma_.lower() not in punct) and (token.lemma_.isalpha())]
fd = FreqDist(filtered_lemmas_sp_v)
most_common_lemmas_v_sp = fd.most_common(50)
print(most_common_lemmas_v_sp)
[('say', 594), ('know', 383), ('see', 380), ('think', 325), ('make', 304), ('give', 289), ('go', 243), ('come', 226), ('feel', 182), ('leave', 171), ('hear', 171), ('tell', 167), ('take', 152), ('find', 141), ('seem', 138), ('believe', 130), ('look', 130), ('speak', 130), ('wish', 121), ('reply', 101), ('talk', 96), ('cry', 91), ('hope', 89), ('bring', 89), ('call', 89), ('marry', 86), ('suppose', 85), ('return', 84), ('expect', 73), ('receive', 68), ('sit', 67), ('live', 66), ('pass', 65), ('appear', 64), ('continue', 64), ('mean', 63), ('get', 63), ('ask', 63), ('keep', 62), ('begin', 62), ('assure', 60), ('engage', 59), ('consider', 58), ('enter', 58), ('want', 57), ('walk', 56), ('remain', 54), ('meet', 53), ('write', 52), ('suffer', 52)]
# Question 2c for nltk tags adj
stopwords = nltk.corpus.stopwords.words('english')
punct = set(punctuation)
filtered_lemmas = [lemma.lower() for lemma in nltk_lemmas if lemma.lower() not in stopwords and all(word.isalnum() or word == ' ' for word in lemma)]
tags = nltk.pos_tag(filtered_lemmas)
#only the adj
verbs = [word for word, pos in tags if pos.startswith("J")]
# 50 most frequent adj lemmas
fd = FreqDist(adj)
most_common_adj = fd.most_common(50)
print(most_common_adj)
[('wa', 276), ('elinor', 253), ('much', 195), ('little', 151), ('great', 146), ('good', 140), ('young', 103), ('many', 101), ('last', 101), ('marianne', 96), ('miss', 96), ('happy', 92), ('sure', 91), ('lady', 83), ('wish', 80), ('present', 73), ('dear', 73), ('first', 70), ('poor', 69), ('u', 68), ('whole', 65), ('lucy', 65), ('particular', 63), ('willoughby', 61), ('least', 60), ('general', 57), ('sister', 53), ('short', 52), ('possible', 48), ('subject', 47), ('next', 47), ('able', 46), ('give', 46), ('enough', 46), ('old', 44), ('edward', 43), ('full', 43), ('greater', 38), ('real', 38), ('long', 37), ('ha', 35), ('new', 34), ('mean', 34), ('sir', 34), ('know', 34), ('open', 33), ('ready', 33), ('different', 32), ('small', 31), ('common', 31)]
#2c spacy tags adj
import spacy
from string import punctuation
from nltk.corpus import stopwords
spacy_adj = nlp(spacy_raw)
stopwords = stopwords.words("english")
punct = set(punctuation)
filtered_lemmas_sp_j = [token.lemma_ for token in spacy_adj if (token.pos_ == "ADJ") and (token.lemma_ not in stopwords) and (token.lemma_.lower() not in punct) and (token.lemma_.isalpha())]
fd = FreqDist(filtered_lemmas_sp_j)
most_common_lemmas_j_sp = fd.most_common(50)
print(most_common_lemmas_j_sp)
[('great', 215), ('good', 176), ('little', 153), ('sure', 130), ('much', 120), ('young', 113), ('happy', 108), ('many', 98), ('last', 98), ('first', 88), ('dear', 83), ('least', 64), ('present', 61), ('well', 61), ('poor', 55), ('general', 54), ('short', 54), ('small', 51), ('next', 51), ('less', 50), ('possible', 48), ('able', 47), ('old', 46), ('enough', 45), ('glad', 44), ('particular', 43), ('strong', 39), ('real', 38), ('whole', 38), ('common', 36), ('impossible', 36), ('long', 35), ('silent', 35), ('ready', 34), ('sorry', 33), ('certain', 32), ('former', 31), ('different', 31), ('new', 31), ('open', 31), ('full', 31), ('comfortable', 30), ('natural', 30), ('bad', 30), ('large', 29), ('fine', 29), ('necessary', 29), ('anxious', 29), ('usual', 29), ('handsome', 28)]
# Question 2d
print ("The most frequent words indicates what the context of the text is and also shows how diverse the text is. You can see if there are certain words that are used much more frequently than others and can predict what the text is about as well and you know that the diversity would be lower. For example, the nouns can tell you the main subjects, places and things the text is about, the verbs can tell you the most common actions and the adjectives indicate important descriptions and qualities that the text describes. There are some slight differences, for example for the spacy most frequent adjective lemmas, 'own' is the top word, but 'own' is the second most frequent for the nltk lemmas." )
The most frequent words indicates what the context of the text is and also shows how diverse the text is. You can see if there are certain words that are used much more frequently than others and can predict what the text is about as well and you know that the diversity would be lower. For example, the nouns can tell you the main subjects, places and things the text is about, the verbs can tell you the most common actions and the adjectives indicate important descriptions and qualities that the text describes. There are some slight differences, for example for the spacy most frequent adjective lemmas, 'own' is the top word, but 'own' is the second most frequent for the nltk lemmas.
# Question 3a
# when using the most frequent lemmas, some of them had different most
# ..frequent lemmas for the taggers, so I chose used the lemmas that
# ..made the most sense and were both close to the top of both lists
# noun
from nltk.corpus import wordnet
wordnet.synsets('sister')
[Synset('sister.n.01'),
Synset('sister.n.02'),
Synset('sister.n.03'),
Synset('baby.n.05')]
#verb
wordnet.synsets('know')
[Synset('know.n.01'),
Synset('know.v.01'),
Synset('know.v.02'),
Synset('know.v.03'),
Synset('know.v.04'),
Synset('know.v.05'),
Synset('acknowledge.v.06'),
Synset('know.v.07'),
Synset('sleep_together.v.01'),
Synset('know.v.09'),
Synset('know.v.10'),
Synset('know.v.11')]
#adjective
wordnet.synsets('great')
[Synset('great.n.01'),
Synset('great.s.01'),
Synset('great.s.02'),
Synset('great.s.03'),
Synset('bang-up.s.01'),
Synset('capital.s.03'),
Synset('big.s.13')]
# Question 3b
#hypernym 1
wordnet.synset('sister.n.01').hypernyms()
[Synset('female_sibling.n.01')]
#hypernym 2
wordnet.synset('know.n.01').hypernyms()
[Synset('knowing.n.01')]
#hypernym 3
wordnet.synset('great.n.01').hypernyms()
[Synset('achiever.n.01')]
#hyponym 1
sister_ = wordnet.synset('sister.n.01')
sister_hypo = sister_.hyponyms()
sister_hypo
[Synset('big_sister.n.01'),
Synset('half_sister.n.01'),
Synset('little_sister.n.01')]
#hyponym 2
have_ = wordnet.synset('have.n.01')
have_hypo = have_.hyponyms()
have_hypo
[Synset('affluent.n.01'),
Synset('billionaire.n.01'),
Synset('croesus.n.02'),
Synset('fat_cat.n.01'),
Synset('man_of_means.n.01'),
Synset('millionaire.n.01'),
Synset('millionairess.n.01'),
Synset('multi-billionaire.n.01'),
Synset('plutocrat.n.01')]
#hyponym 3
great_ = wordnet.synset('great.n.01')
great_hypo = great_.hyponyms()
have_hypo
[Synset('affluent.n.01'),
Synset('billionaire.n.01'),
Synset('croesus.n.02'),
Synset('fat_cat.n.01'),
Synset('man_of_means.n.01'),
Synset('millionaire.n.01'),
Synset('millionairess.n.01'),
Synset('multi-billionaire.n.01'),
Synset('plutocrat.n.01')]
#holonym 1
wordnet.synset('sister.n.02').member_holonyms()
[Synset('sisterhood.n.03')]
#holonym 2
wordnet.synset('have.v.01').member_holonyms()
#doesn't exist
[]
#holonym 3
wordnet.synset('great.n.01').member_holonyms()
#doesn't exist
[]
# Question 3c
tags = nltk.pos_tag(nltk_lemmas)
# Keep only the nouns and verbs
nouns_verbs = [word for word, pos in tags if pos.startswith("N") or ("V")]
# Obtain the 50 most frequent
fd = FreqDist(nouns_verbs)
most_common_nouns_and_verbs = fd.most_common()
print(most_common_nouns_and_verbs)
[(',', 10092), ('the', 4273), ('to', 4169), ('of', 3688), ('.', 3559), ('and', 3474), ('a', 3323), ('her', 2491), ('in', 1991), ('i', 1939), ('it', 1848), ('wa', 1839), (';', 1580), ('she', 1555), ('“', 1549), ('”', 1534), ('not', 1339), ('that', 1325), ('be', 1307), ('for', 1267), ('you', 1199), ('he', 1086), ('with', 1031), ('his', 1007), ('had', 990), ('’', 880), ('at', 844), ('have', 824), ('but', 821), ('by', 771), ('is', 768), ('on', 704), ('s', 689), ('elinor', 679), ('all', 660), ('so', 638), ('him', 617), ('my', 604), ('which', 598), ('could', 571), ('no', 560), ('!', 560), ('marianne', 558), ('from', 554), ('mrs.', 520), ('they', 512), ('would', 509), ('their', 496), ('very', 496), ('this', 469), ('?', 453), ('them', 447), ('been', 440), ('were', 438), ('what', 432), ('any', 426), ('or', 423), ('me', 422), ('more', 406), ('said', 389), ('your', 385), ('every', 373), ('than', 365), ('such', 359), ('will', 357), ('an', 353), ('do', 324), ('if', 313), ('sister', 312), ('one', 312), ('can', 309), ('when', 301), ('much', 290), ('only', 288), ('must', 287), ('own', 269), ('who', 267), ('am', 267), ('are', 255), ('edward', 255), ('time', 254), ('mother', 251), ('dashwood', 249), ('herself', 248), ('know', 242), ('should', 234), ('jennings', 234), ('there', 232), ('did', 228), ('how', 224), ('now', 220), ('we', 219), ('think', 216), ('though', 215), ('might', 214), ('some', 213), ('miss', 210), ('ha', 209), ('well', 208), ('willoughby', 208), ('thing', 205), ('before', 202), ('after', 202), ('other', 200), ('day', 188), ('may', 187), ('never', 186), ('lucy', 184), ('too', 182), ('without', 181), ('nothing', 180), ('soon', 176), ('see', 174), ('colonel', 174), ('lady', 173), ('mr.', 168), ('say', 168), ('being', 166), ('ever', 165), ('john', 163), ('most', 160), ('out', 159), ('first', 156), ('little', 156), ('however', 155), ('house', 152), ('about', 151), ('two', 148), ('make', 148), ('good', 146), ('great', 146), ('then', 140), ('thought', 140), ('brandon', 140), ('again', 139), ('made', 138), ('give', 131), ('shall', 128), ('sure', 127), ('even', 125), ('heart', 123), ('ferrars', 122), ('always', 120), ('sir', 120), ('middleton', 119), ('man', 117), ('dear', 117), ('into', 115), ('away', 113), ('up', 113), ('friend', 113), ('himself', 111), ('moment', 110), ('saw', 110), ('while', 109), ('hope', 104), ('come', 104), ('felt', 104), ('young', 103), ('go', 103), ('long', 102), ('enough', 102), ('many', 101), ('wish', 101), ('last', 101), ('chapter', 100), ('upon', 100), ('same', 100), ('room', 100), ('feeling', 99), ('replied', 99), ('left', 98), ('over', 98), ('mind', 98), ('still', 97), ('happy', 97), ('myself', 96), ('indeed', 96), ('kind', 95), ('letter', 95), ('where', 93), (':', 93), ('therefore', 93), ('le', 93), ('work', 93), ('quite', 92), ('seemed', 91), ('project', 90), ('world', 90), ('manner', 90), ('affection', 90), ('tell', 90), ('both', 89), ('came', 89), ('believe', 88), ('almost', 86), ('u', 86), ('barton', 86), ('cried', 86), ('spirit', 85), ('palmer', 85), ('family', 84), ('present', 84), ('really', 84), ('nor', 84), ('look', 84), ('till', 83), ('morning', 83), ('town', 82), ('down', 81), ('like', 80), ('place', 80), ('perhaps', 80), ('few', 80), ('love', 79), ('brother', 79), ('year', 78), ('our', 78), ('another', 78), ('mean', 77), ('heard', 77), ('opinion', 76), ('way', 75), ('yet', 75), ('better', 75), ('engagement', 75), ('rather', 74), ('woman', 74), ('found', 74), ('word', 74), ('eye', 74), ('once', 73), ('person', 72), ('subject', 72), ('together', 72), ('gave', 71), ('something', 71), ('hour', 71), ('whom', 69), ('child', 69), ('poor', 69), ('hear', 69), ('immediately', 69), ('home', 68), ('between', 68), ('particular', 68), ('least', 68), ('done', 68), ('just', 68), ('pleasure', 67), ('visit', 67), ('far', 67), ('told', 67), ('steele', 67), ('attention', 66), ('whole', 66), ('feel', 66), ('against', 66), ('hardly', 66), ('acquaintance', 65), ('comfort', 65), ('towards', 65), ('these', 65), ('daughter', 64), ('behaviour', 64), ('happiness', 64), ('party', 64), ('because', 64), ('within', 63), ('side', 63), ('life', 61), ('three', 61), ('knew', 61), ('t', 61), ('going', 60), ('since', 60), ('looked', 60), ('part', 59), ('situation', 59), ('certainly', 59), ('cottage', 59), ('others', 59), ('speak', 59), ('general', 58), ('known', 58), ('yes', 58), ('each', 58), ('oh', 58), ('end', 58), ('minute', 58), ('brought', 58), ('under', 57), ('leave', 57), ('having', 57), ('people', 57), ('reason', 57), ('half', 56), ('find', 56), ('seen', 56), ('short', 56), ('off', 56), ('gutenberg-tm', 56), ('matter', 55), ('continued', 55), ('hand', 55), ('wished', 54), ('given', 54), ('week', 54), ('here', 54), ('norland', 53), ('suppose', 53), ('doe', 53), ('often', 53), ('voice', 53), ('evening', 53), ('—and', 53), ('longer', 52), ('take', 52), ('returned', 52), ('park', 51), ('rest', 51), ('took', 51), ('next', 51), ('body', 51), ('state', 50), ('wife', 50), ('those', 50), ('regard', 50), ('doubt', 50), ('passed', 50), ('street', 50), ('(', 49), (')', 49), ('married', 49), ('farther', 49), ('went', 49), ('power', 48), ('possible', 48), ('why', 48), ('fanny', 48), ('account', 48), ('thousand', 47), ('girl', 47), ('already', 47), ('whose', 47), ('obliged', 47), ('neither', 46), ('determined', 46), ('beyond', 46), ('_that_', 46), ('able', 46), ('circumstance', 46), ('object', 46), ('interest', 45), ('marriage', 45), ('husband', 45), ('received', 44), ('old', 44), ('return', 44), ('business', 44), ('carriage', 44), ('name', 44), ('put', 44), ('glad', 44), ('perfectly', 43), ('called', 43), ('full', 43), ('else', 43), ('kindness', 42), ('want', 42), ('whether', 42), ('point', 42), ('directly', 42), ('talk', 42), ('set', 41), ('added', 41), ('entirely', 41), ('began', 41), ('engaged', 41), ('seeing', 41), ('fortune', 40), ('equally', 40), ('month', 40), ('surprise', 40), ('back', 40), ('pound', 39), ('four', 39), ('conversation', 39), ('entered', 39), ('through', 39), ('door', 39), ('coming', 38), ('greater', 38), ('themselves', 38), ('whatever', 38), ('expected', 38), ('real', 38), ('saying', 38), ('use', 37), ('character', 37), ('spent', 37), ('conduct', 37), ('giving', 37), ('dare', 37), ('satisfaction', 37), ('call', 37), ('care', 37), ('ma', 37), ('sat', 37), ('sense', 36), ('country', 36), ('settled', 36), ('attachment', 36), ('—but', 36), ('live', 36), ('concern', 36), ('dashwoods', 36), ('impossible', 36), ('wonder', 36), ('head', 36), ('pretty', 36), ('fear', 36), ('son', 35), ('living', 35), ('right', 35), ('arrival', 35), ('margaret', 35), ('spite', 35), ('either', 35), ('open', 35), ('night', 35), ('silent', 35), ('difficulty', 35), ('spoke', 35), ('particularly', 35), ('term', 34), ('appeared', 34), ('invitation', 34), ('new', 34), ('idea', 34), ('yourself', 34), ('ready', 34), ('ask', 34), ('‘', 34), ('london', 34), ('deal', 33), ('answer', 33), ('gone', 33), ('question', 33), ('case', 33), ('keep', 33), ('ought', 33), ('sorry', 33), ('robert', 33), ('gentleman', 32), ('afterwards', 32), ('sake', 32), ('opportunity', 32), ('judgment', 32), ('different', 32), ('get', 32), ('assure', 32), ('alone', 32), ('pleased', 32), ('talked', 32), ('near', 32), ('silence', 32), ('gutenberg', 31), ('small', 31), ('common', 31), ('future', 31), ('expectation', 31), ('fancy', 31), ('servant', 31), ('convinced', 31), ('course', 31), ('certain', 31), ('confidence', 31), ('happened', 30), ('former', 30), ('effect', 30), ('inquiry', 30), ('easily', 30), ('believed', 30), ('instantly', 30), ('cousin', 30), ('appearance', 30), ('usual', 30), ('affair', 30), ('foundation', 30), ('father', 29), ('comfortable', 29), ('notice', 29), ('stay', 29), ('taken', 29), ('company', 29), ('natural', 29), ('wanted', 29), ('pain', 29), ('kept', 29), ('necessary', 29), ('relation', 29), ('anxious', 29), ('change', 29), ('event', 29), ('—', 29), ('walked', 29), ('remained', 28), ('strong', 28), ('occasion', 28), ('knowledge', 28), ('resolved', 28), ('marry', 28), ('five', 28), ('doing', 28), ('truth', 28), ('greatest', 28), ('taste', 28), ('countenance', 28), ('misery', 28), ('repeated', 28), ('walk', 28), ('distress', 28), ('lord', 28), ('produced', 27), ('advantage', 27), ('considered', 27), ('money', 27), ('regret', 27), ('anything', 27), ('expect', 27), ('turned', 27), ('allow', 27), ('favour', 27), ('likely', 27), ('hearing', 27), ('round', 27), ('past', 27), ('got', 27), ('let', 27), ('delaford', 27), ('electronic', 27), ('*', 26), ('large', 26), ('disappointment', 26), ('handsome', 26), ('favourite', 26), ('plan', 26), ('exactly', 26), ('best', 26), ('understand', 26), ('acquainted', 26), ('assured', 26), ('exceedingly', 26), ('face', 26), ('declared', 26), ('view', 26), ('sometimes', 26), ('resolution', 26), ('connection', 26), ('dinner', 26), ('surprised', 26), ('suffered', 26), ('companion', 25), ('likewise', 25), ('read', 25), ('immediate', 25), ('_her_', 25), ('latter', 25), ('respect', 25), ('talking', 25), ('otherwise', 25), ('it.', 25), ('fine', 25), ('smile', 25), ('devonshire', 25), ('appear', 25), ('satisfied', 25), ('beauty', 25), ('met', 25), ('meeting', 25), ('information', 25), ('united', 24), ('ten', 24), ('society', 24), ('desire', 24), ('promise', 24), ('joy', 24), ('proper', 24), ('exertion', 24), ('delight', 24), ('supposed', 24), ('answered', 24), ('address', 24), ('mama', 24), ('seems', 24), ('curiosity', 24), ('window', 24), ('taking', 24), ('low', 24), ('forced', 24), ('don', 24), ('cleveland', 24), ('late', 23), ('earnest', 23), ('nature', 23), ('assurance', 23), ('knowing', 23), ('serious', 23), ('prevent', 23), ('strange', 23), ('men', 23), ('scarcely', 23), ('meet', 23), ('afraid', 23), ('observation', 23), ('agreeable', 23), ('form', 23), ('painful', 23), ('tear', 23), ('reached', 23), ('table', 23), ('unfortunate', 23), ('probably', 23), ('bear', 23), ('fixed', 23), ('making', 23), ('bed', 23), ('used', 23), ('constant', 22), ('merely', 22), ('temper', 22), ('sent', 22), ('danger', 22), ('consider', 22), ('equal', 22), ('income', 22), ('affectionate', 22), ('hundred', 22), ('true', 22), ('worth', 22), ('expense', 22), ('forward', 22), ('suffering', 22), ('formed', 22), ('journey', 22), ('share', 22), ('wrong', 22), ('asked', 22), ('thus', 22), ('charlotte', 22), ('copy', 21), ('easy', 21), ('cold', 21), ('fond', 21), ('avoid', 21), ('disposition', 21), ('forth', 21), ('_you_', 21), ('melancholy', 21), ('merit', 21), ('_she_', 21), ('admiration', 21), ('remember', 21), ('enjoyment', 21), ('speaking', 21), ('conviction', 21), ('help', 21), ('mistaken', 21), ('among', 21), ('chance', 21), ('leaving', 21), ('soul', 21), ('wait', 21), ('law', 20), ('lived', 20), ('degree', 20), ('required', 20), ('eldest', 20), ('eager', 20), ('reflection', 20), ('civility', 20), ('looking', 20), ('emotion', 20), ('early', 20), ('rich', 20), ('except', 20), ('turn', 20), ('tried', 20), ('smallest', 20), ('agreement', 20), ('sitting', 20), ('above', 20), ('delighted', 20), ('seem', 20), ('second', 20), ('compassion', 20), ('ill', 20), ('lost', 20), ('estate', 19), ('age', 19), ('loss', 19), ('meant', 19), ('prospect', 19), ('difference', 19), ('horse', 19), ('support', 19), ('staying', 19), ('esteem', 19), ('none', 19), ('indifference', 19), ('pity', 19), ('praise', 19), ('attempt', 19), ('delightful', 19), ('friendship', 19), ('consequence', 19), ('objection', 19), ('hoped', 19), ('discourse', 19), ('stair', 19), ('hill', 19), ('elegance', 19), ('employment', 19), ('alarm', 19), ('secret', 19), ('honour', 19), ('suspicion', 19), ('you.', 19), ('purpose', 19), ('tenderness', 19), ('liberty', 19), ('—she', 19), ('copyright', 19), ('receive', 18), ('duty', 18), ('arrived', 18), ('led', 18), ('need', 18), ('paid', 18), ('gratitude', 18), ('breakfast', 18), ('music', 18), ('inclination', 18), ('excuse', 18), ('attended', 18), ('calm', 18), ('especially', 18), ('become', 18), ('entrance', 18), ('weather', 18), ('followed', 18), ('unable', 18), ('anxiety', 18), ('mentioned', 18), ('allenham', 18), ('proof', 18), ('joined', 18), ('unhappy', 18), ('thinking', 18), ('card', 18), ('note', 18), ('relief', 18), ('necessity', 18), ('astonishment', 18), ('beau', 18), ('license', 17), ('alteration', 17), ('considerable', 17), ('capable', 17), ('understanding', 17), ('sorrow', 17), ('affliction', 17), ('visitor', 17), ('hers', 17), ('style', 17), ('sight', 17), ('became', 17), ('ease', 17), ('overcome', 17), ('intelligence', 17), ('composure', 17), ('calmness', 17), ('simple', 17), ('warmth', 17), ('cause', 17), ('inconvenience', 17), ('written', 17), ('design', 17), ('behind', 17), ('recollection', 17), ('welcome', 17), ('bring', 17), ('air', 17), ('allowed', 17), ('nobody', 17), ('disappointed', 17), ('pause', 17), ('creature', 17), ('pray', 17), ('smith', 17), ('charming', 17), ('—i', 17), ('writing', 17), ('agitation', 17), ('berkeley', 17), ('cheerfulness', 16), ('uncle', 16), ('amiable', 16), ('a-year', 16), ('quitted', 16), ('quiet', 16), ('carried', 16), ('whenever', 16), ('aware', 16), ('several', 16), ('persuaded', 16), ('loved', 16), ('probability', 16), ('grave', 16), ('civil', 16), ('delay', 16), ('offer', 16), ('comparison', 16), ('show', 16), ('laughed', 16), ('indifferent', 16), ('influence', 16), ('declare', 16), ('amusement', 16), ('hair', 16), ('write', 16), ('mr', 16), ('combe', 16), ('morton', 16), ('harley', 16), ('paragraph', 16), ('donation', 16), ('engage', 15), ('increased', 15), ('charge', 15), ('gained', 15), ('improvement', 15), ('intention', 15), ('highly', 15), ('everything', 15), ('interesting', 15), ('itself', 15), ('mine', 15), ('trouble', 15), ('twice', 15), ('_not_', 15), ('assistance', 15), ('altogether', 15), ('imagine', 15), ('pleasant', 15), ('him.', 15), ('fire', 15), ('book', 15), ('unwilling', 15), ('express', 15), ('expression', 15), ('mutual', 15), ('encouragement', 15), ('disposed', 15), ('evil', 15), ('explanation', 15), ('exeter', 15), ('removed', 15), ('supported', 15), ('smart', 15), ('order', 15), ('observed', 15), ('finding', 15), ('action', 15), ('during', 15), ('presence', 15), ('turning', 15), ('profession', 15), ('trust', 15), ('please', 15), ('free', 15), ('expressed', 15), ('utmost', 15), ('due', 14), ('respectable', 14), ('seven', 14), ('selfish', 14), ('offence', 14), ('frequently', 14), ('afford', 14), ('consolation', 14), ('treated', 14), ('secure', 14), ('raise', 14), ('consideration', 14), ('politeness', 14), ('justice', 14), ('perceive', 14), ('mile', 14), ('drawing', 14), ('lover', 14), ('wishing', 14), ('mention', 14), ('_i_', 14), ('understood', 14), ('garden', 14), ('match', 14), ('possession', 14), ('six', 14), ('drew', 14), ('office', 14), ('rose', 14), ('twenty', 14), ('hold', 14), ('laugh', 14), ('marrying', 14), ('prevented', 14), ('ground', 14), ('heavy', 14), ('eagerly', 14), ('news', 14), ('aye', 14), ('importance', 14), ('spoken', 14), ('receiving', 14), ('agree', 14), ('lately', 14), ('sit', 14), ('following', 14), ('fresh', 14), ('drawing-room', 14), ('_did_', 14), ('ebook', 13), ('sensibility', 13), ('invited', 13), ('intended', 13), ('important', 13), ('remaining', 13), ('cheerful', 13), ('propriety', 13), ('sending', 13), ('earnestly', 13), ('sensible', 13), ('pressed', 13), ('dreadful', 13), ('claim', 13), ('assist', 13), ('parted', 13), ('consent', 13), ('_one_', 13), ('violent', 13), ('notion', 13), ('occurred', 13), ('couple', 13), ('sentiment', 13), ('approbation', 13), ('persuasion', 13), ('fact', 13), ('length', 13), ('imagination', 13), ('perceived', 13), ('burst', 13), ('folly', 13), ('calling', 13), ('astonished', 13), ('reasonable', 13), ('suffer', 13), ('remain', 13), ('continual', 13), ('vanity', 13), ('extremely', 13), ('yesterday', 13), ('confess', 13), ('fortnight', 13), ('fellow', 13), ('o', 13), ('clock', 13), ('sweet', 13), ('opposition', 13), ('recovered', 13), ('naturally', 13), ('dance', 13), ('suspect', 13), ('walking', 13), ('grateful', 13), ('won', 13), ('_now_', 13), ('returning', 13), ('feared', 13), ('instead', 13), ('public', 13), ('proved', 13), ('trademark', 13), ('literary', 13), ('archive', 13), ('lay', 12), ('promised', 12), ('leisure', 12), ('—he', 12), ('increase', 12), ('besides', 12), ('act', 12), ('entreaty', 12), ('excellent', 12), ('ability', 12), ('grief', 12), ('mistress', 12), ('restored', 12), ('service', 12), ('material', 12), ('unnecessary', 12), ('remembrance', 12), ('informed', 12), ('acknowledged', 12), ('superior', 12), ('private', 12), ('warm', 12), ('enter', 12), ('beautiful', 12), ('_my_', 12), ('drawn', 12), ('picture', 12), ('smiling', 12), ('lively', 12), ('greatly', 12), ('worse', 12), ('sudden', 12), ('wrote', 12), ('distance', 12), ('hastily', 12), ('interested', 12), ('maid', 12), ('valley', 12), ('solicitude', 12), ('waiting', 12), ('remark', 12), ('bringing', 12), ('procured', 12), ('gay', 12), ('thirty', 12), ('prepared', 12), ('finished', 12), ('censure', 12), ('raised', 12), ('join', 12), ('intimate', 12), ('dislike', 12), ('ago', 12), ('heartily', 12), ('sincere', 12), ('reproach', 12), ('effort', 12), ('ignorance', 12), ('concerned', 12), ('send', 12), ('yours', 12), ('sentence', 12), ('placed', 12), ('tea', 12), ('angry', 12), ('fell', 12), ('bad', 12), ('probable', 12), ('acknowledge', 12), ('tone', 12), ('stopped', 12), ('forgot', 12), ('beginning', 12), ('communication', 12), ('health', 12), ('consciousness', 12), ('conscience', 12), ('fee', 12), ('cost', 11), ('language', 11), ('property', 11), ('death', 11), ('provided', 11), ('recommended', 11), ('illness', 11), ('spare', 11), ('eagerness', 11), ('imprudence', 11), ('resemblance', 11), ('sister-in-law', 11), ('condition', 11), ('anybody', 11), ('related', 11), ('request', 11), ('spend', 11), ('contrary', 11), ('choice', 11), ('striking', 11), ('evident', 11), ('performance', 11), ('mistake', 11), ('happen', 11), ('attempted', 11), ('_', 11), ('removal', 11), ('explained', 11), ('concluded', 11), ('number', 11), ('stand', 11), ('direction', 11), ('thoroughly', 11), ('wondered', 11), ('joke', 11), ('active', 11), ('employed', 11), ('rain', 11), ('caught', 11), ('suddenly', 11), ('hurried', 11), ('parlour', 11), ('tomorrow', 11), ('colour', 11), ('warmly', 11), ('force', 11), ('scheme', 11), ('openly', 11), ('attend', 11), ('judged', 11), ('lip', 11), ('paper', 11), ('uncertain', 11), ('variety', 11), ('secrecy', 11), ('attached', 11), ('broken', 11), ('accept', 11), ('apology', 11), ('delicacy', 11), ('reply', 11), ('third', 11), ('magna', 11), ('dared', 11), ('monstrous', 11), ('wretched', 11), ('injured', 11), ('measure', 11), ('forget', 11), ('``', 11), ("''", 11), ('reasonably', 10), ('sum', 10), ('produce', 10), ('including', 10), ('addition', 10), ('sooner', 10), ('tender', 10), ('advice', 10), ('generally', 10), ('learn', 10), ('agony', 10), ('wholly', 10), ('neighbourhood', 10), ('settle', 10), ('do.', 10), ('parting', 10), ('fifty', 10), ('pay', 10), ('described', 10), ('readily', 10), ('furniture', 10), ('absolutely', 10), ('ceased', 10), ('pleasing', 10), ('intimacy', 10), ('partiality', 10), ('education', 10), ('separation', 10), ('seat', 10), ('principle', 10), ('thrown', 10), ('stood', 10), ('pursuit', 10), ('attending', 10), ('offered', 10), ('them.', 10), ('sigh', 10), ('waited', 10), ('determine', 10), ('agreed', 10), ('along', 10), ('building', 10), ('village', 10), ('depend', 10), ('admire', 10), ('dull', 10), ('compliment', 10), ('uncomfortable', 10), ('meaning', 10), ('habit', 10), ('amazement', 10), ('enquiry', 10), ('seated', 10), ('chair', 10), ('eight', 10), ('hint', 10), ('endeavouring', 10), ('justify', 10), ('conjecture', 10), ('light', 10), ('lock', 10), ('opened', 10), ('thank', 10), ('nearly', 10), ('speech', 10), ('urged', 10), ('odd', 10), ('fortitude', 10), ('sleep', 10), ('sunk', 10), ('forgiven', 10), ('forgive', 10), ('grey', 10), ('absence', 10), ('oxford', 10), ('hurt', 10), ('lucky', 10), ('deceived', 10), ('miserable', 10), ('watched', 10), ('fancied', 10), ('—for', 10), ('harris', 10), ('access', 10), ('refund', 10), ('check', 9), ('advanced', 9), ('attraction', 9), ('mother-in-law', 9), ('source', 9), ('accepted', 9), ('continuance', 9), ('observe', 9), ('unpleasant', 9), ('undoubtedly', 9), ('remove', 9), ('moved', 9), ('spot', 9), ('impatient', 9), ('doubted', 9), ('believing', 9), ('introduced', 9), ('depended', 9), ('reserve', 9), ('frequent', 9), ('draw', 9), ('nay', 9), ('direct', 9), ('offended', 9), ('dearest', 9), ('concealed', 9), ('high', 9), ('ashamed', 9), ('laughing', 9), ('behaved', 9), ('result', 9), ('post', 9), ('distant', 9), ('sufficient', 9), ('quit', 9), ('arrangement', 9), ('around', 9), ('arose', 9), ('demand', 9), ('—no', 9), ('dine', 9), ('confined', 9), ('message', 9), ('ladyship', 9), ('desirous', 9), ('encouraging', 9), ('_he_', 9), ('clear', 9), ('submit', 9), ('convince', 9), ('slight', 9), ('extraordinary', 9), ('unfortunately', 9), ('ran', 9), ('story', 9), ('sort', 9), ('ay', 9), ('complexion', 9), ('softened', 9), ('guess', 9), ('_was_', 9), ('listened', 9), ('conscious', 9), ('bestow', 9), ('defect', 9), ('plainly', 9), ('me.', 9), ('uneasiness', 9), ('—the', 9), ('syllable', 9), ('telling', 9), ('—that', 9), ('resist', 9), ('motive', 9), ('exclaimed', 9), ('scene', 9), ('heaven', 9), ('laid', 9), ('—how', 9), ('struck', 9), ('fix', 9), ('spared', 9), ('ear', 9), ('assertion', 9), ('pratt', 9), ('beg', 9), ('pardon', 9), ('proud', 9), ('indignation', 9), ('attempting', 9), ('borne', 9), ('god', 9), ('close', 9), ('quarter', 9), ('doctor', 9), ('_then_', 9), ('parsonage', 9), ('using', 8), ('sussex', 8), ('supply', 8), ('proceeded', 8), ('secured', 8), ('died', 8), ('wood', 8), ('twelvemonth', 8), ('strength', 8), ('affected', 8), ('rendered', 8), ('completely', 8), ('reflect', 8), ('prudent', 8), ('excess', 8), ('seeking', 8), ('similar', 8), ('fair', 8), ('earnestness', 8), ('approve', 8), ('boy', 8), ('amongst', 8), ('annuity', 8), ('getting', 8), ('belonging', 8), ('prudence', 8), ('sincerity', 8), ('alike', 8), ('figure', 8), ('domestic', 8), ('unlike', 8), ('gain', 8), ('satisfy', 8), ('charm', 8), ('reading', 8), ('line', 8), ('elegant', 8), ('distrust', 8), ('venture', 8), ('delicate', 8), ('started', 8), ('explain', 8), ('deny', 8), ('stronger', 8), ('marked', 8), ('accommodation', 8), ('totally', 8), ('hard', 8), ('visited', 8), ('held', 8), ('strongly', 8), ('abroad', 8), ('discovered', 8), ('suspected', 8), ('listening', 8), ('safe', 8), ('conceal', 8), ('follow', 8), ('self-command', 8), ('try', 8), ('restless', 8), ('learnt', 8), ('—it', 8), ('stop', 8), ('carrying', 8), ('fall', 8), ('dress', 8), ('today', 8), ('catching', 8), ('setting', 8), ('embarrassment', 8), ('perfect', 8), ('road', 8), ('recovery', 8), ('belief', 8), ('_his_', 8), ('gentle', 8), ('fault', 8), ('persuade', 8), ('buy', 8), ('imagined', 8), ('shown', 8), ('shame', 8), ('mere', 8), ('escape', 8), ('carry', 8), ('comprehend', 8), ('credit', 8), ('sincerely', 8), ('all.', 8), ('observing', 8), ('endeavour', 8), ('complete', 8), ('humour', 8), ('changed', 8), ('madam', 8), ('hitherto', 8), ('shocking', 8), ('possibly', 8), ('pas', 8), ('leaning', 8), ('trying', 8), ('solitude', 8), ('possibility', 8), ('deserve', 8), ('instant', 8), ('cry', 8), ('ended', 8), ('owed', 8), ('resentment', 8), ('reward', 8), ('bound', 8), ('ah', 8), ('fit', 8), ('longstaple', 8), ('calmly', 8), ('advise', 8), ('provide', 8), ('positive', 8), ('success', 8), ('safely', 8), ('watching', 8), ('shop', 8), ('cruel', 8), ('triumph', 8), ('pride', 8), ('compliance', 8), ('eliza', 8), ('fate', 8), ('paying', 8), ('everybody', 8), ('associated', 8), ('section', 8), ('located', 7), ('thanks', 7), ('content', 7), ('residence', 7), ('owner', 7), ('single', 7), ('goodness', 7), ('existence', 7), ('independent', 7), ('arise', 7), ('also', 7), ('value', 7), ('provision', 7), ('noise', 7), ('command', 7), ('unless', 7), ('showing', 7), ('breach', 7), ('valued', 7), ('voluntarily', 7), ('eligible', 7), ('begged', 7), ('ruin', 7), ('harry', 7), ('performed', 7), ('instance', 7), ('excessively', 7), ('owe', 7), ('argument', 7), ('attentive', 7), ('liberality', 7), ('afforded', 7), ('establishment', 7), ('peculiar', 7), ('liked', 7), ('speedily', 7), ('established', 7), ('symptom', 7), ('seriously', 7), ('animated', 7), ('commendation', 7), ('preference', 7), ('proceed', 7), ('supposing', 7), ('pretend', 7), ('proposal', 7), ('friendly', 7), ('nearer', 7), ('continuing', 7), ('guest', 7), ('acknowledgment', 7), ('removing', 7), ('limited', 7), ('chiefly', 7), ('departure', 7), ('shortly', 7), ('begin', 7), ('tree', 7), ('insensible', 7), ('enjoy', 7), ('passage', 7), ('impression', 7), ('size', 7), ('add', 7), ('tolerably', 7), ('busy', 7), ('reserved', 7), ('enquire', 7), ('dining', 7), ('sex', 7), ('luckily', 7), ('stranger', 7), ('instrument', 7), ('chief', 7), ('lasted', 7), ('rapture', 7), ('quick', 7), ('discovery', 7), ('regarded', 7), ('ridiculous', 7), ('rate', 7), ('convenience', 7), ('invariably', 7), ('indisposition', 7), ('readiness', 7), ('accepting', 7), ('hurry', 7), ('unaccountable', 7), ('farewell', 7), ('partial', 7), ('passing', 7), ('declined', 7), ('additional', 7), ('youth', 7), ('thanked', 7), ('entering', 7), ('interval', 7), ('jealous', 7), ('personal', 7), ('further', 7), ('bestowed', 7), ('arranged', 7), ('succeeded', 7), ('piece', 7), ('considering', 7), ('tempt', 7), ('decided', 7), ('presently', 7), ('satisfactory', 7), ('across', 7), ('well.', 7), ('blow', 7), ('complaint', 7), ('williams', 7), ('happier', 7), ('drive', 7), ('coloured', 7), ('acting', 7), ('nice', 7), ('poverty', 7), ('guilt', 7), ('inevitable', 7), ('occur', 7), ('begun', 7), ('avoided', 7), ('screen', 7), ('endeavoured', 7), ('smiled', 7), ('willing', 7), ('ring', 7), ('forgiveness', 7), ('founded', 7), ('whisper', 7), ('grew', 7), ('materially', 7), ('idle', 7), ('appearing', 7), ('lessen', 7), ('chuse', 7), ('good-natured', 7), ('inclined', 7), ('chose', 7), ('vast', 7), ('amendment', 7), ('flattery', 7), ('dependence', 7), ('shocked', 7), ('—a', 7), ('unhappiness', 7), ('permission', 7), ('preparation', 7), ('fatigue', 7), ('escaped', 7), ('conduit', 7), ('oppressed', 7), ('cruelty', 7), ('signify', 7), ('rising', 7), ('prove', 7), ('deserved', 7), ('nancy', 7), ('volunteer', 7), ('thomas', 7), ('honest', 7), ('u.s.', 7), ('distributing', 7), ('ebooks', 7), ('tax', 7), ('wealth', 6), ('providing', 6), ('needed', 6), ('valuable', 6), ('mark', 6), ('severe', 6), ('generosity', 6), ('liberal', 6), ('encouraged', 6), ('sought', 6), ('exert', 6), ('period', 6), ('season', 6), ('divided', 6), ('payment', 6), ('desirable', 6), ('discretion', 6), ('allowance', 6), ('distressed', 6), ('game', 6), ('finally', 6), ('beloved', 6), ('rejoiced', 6), ('contempt', 6), ('motif', 6), ('shyness', 6), ('blessing', 6), ('younger', 6), ('improving', 6), ('excited', 6), ('dissatisfied', 6), ('uncommonly', 6), ('betrayed', 6), ('extent', 6), ('fully', 6), ('pianoforte', 6), ('increasing', 6), ('cease', 6), ('—oh', 6), ('gate', 6), ('wall', 6), ('apartment', 6), ('interrupted', 6), ('basket', 6), ('moreover', 6), ('newspaper', 6), ('favourable', 6), ('total', 6), ('sportsman', 6), ('humoured', 6), ('deficiency', 6), ('eat', 6), ('raillery', 6), ('missed', 6), ('remarkably', 6), ('ventured', 6), ('wit', 6), ('declining', 6), ('nurse', 6), ('security', 6), ('exchange', 6), ('recollecting', 6), ('showed', 6), ('independence', 6), ('shut', 6), ('preceding', 6), ('perceiving', 6), ('arm', 6), ('confusion', 6), ('puzzled', 6), ('describe', 6), ('somersetshire', 6), ('phrase', 6), ('feature', 6), ('picturesque', 6), ('reception', 6), ('caution', 6), ('actually', 6), ('dropped', 6), ('amends', 6), ('previously', 6), ('calculated', 6), ('careful', 6), ('accidentally', 6), ('faint', 6), ('inconstancy', 6), ('admit', 6), ('communicated', 6), ('build', 6), ('discover', 6), ('cut', 6), ('fast', 6), ('red', 6), ('recollect', 6), ('later', 6), ('drove', 6), ('method', 6), ('impertinent', 6), ('gratifying', 6), ('church', 6), ('maintained', 6), ('practice', 6), ('hereafter', 6), ('press', 6), ('_me_', 6), ('listen', 6), ('cordiality', 6), ('plain', 6), ('meditation', 6), ('confession', 6), ('vain', 6), ('reach', 6), ('&', 6), ('c.', 6), ('parent', 6), ('eighteen', 6), ('offend', 6), ('grown', 6), ('gaiety', 6), ('neighbour', 6), ('adopt', 6), ('medium', 6), ('pained', 6), ('glance', 6), ('cast', 6), ('conclusion', 6), ('brief', 6), ('ceremony', 6), ('patience', 6), ('february', 6), ('bow', 6), ('droll', 6), ('obligation', 6), ('asking', 6), ('surely', 6), ('school', 6), ('england', 6), ('obtain', 6), ('unceasing', 6), ('submitted', 6), ('anne', 6), ('communicate', 6), ('engaging', 6), ('ferrars.', 6), ('trusted', 6), ('suspense', 6), ('tired', 6), ('hopeless', 6), ('succeeding', 6), ('unkindness', 6), ('forgotten', 6), ('ti', 6), ('january', 6), ('_do_', 6), ('chaise', 6), ('witness', 6), ('scruple', 6), ('dread', 6), ('impatience', 6), ('sound', 6), ('fearful', 6), ('expecting', 6), ('lead', 6), ('nervous', 6), ('report', 6), ('_can_', 6), ('convincing', 6), ('happiest', 6), ('bartlett', 6), ('gray', 6), ('horror', 6), ('promoting', 6), ('selfishness', 6), ('apprehension', 6), ('needle', 6), ('punishment', 6), ('la', 6), ('patient', 6), ('format', 6), ('distribute', 6), ('royalty', 6), ('distribution', 6), ('comply', 6), ('damage', 6), ('anyone', 5), ('www.gutenberg.org', 5), ('release', 5), ('housekeeper', 5), ('legal', 5), ('comfortably', 5), ('steady', 5), ('disposal', 5), ('unjust', 5), ('occasional', 5), ('unkind', 5), ('widow', 5), ('ordinary', 5), ('daughter-in-law', 5), ('induced', 5), ('nineteen', 5), ('clever', 5), ('generous', 5), ('created', 5), ('wretchedness', 5), ('deeply', 5), ('treat', 5), ('earth', 5), ('fifteen', 5), ('world.', 5), ('justly', 5), ('conceive', 5), ('sold', 5), ('saved', 5), ('fitted', 5), ('_them_', 5), ('decision', 5), ('wanting', 5), ('pointed', 5), ('dwelling', 5), ('growing', 5), ('trifling', 5), ('fortunately', 5), ('promising', 5), ('disturb', 5), ('assisted', 5), ('attach', 5), ('announce', 5), ('_would_', 5), ('broke', 5), ('seventeen', 5), ('deficient', 5), ('blind', 5), ('wound', 5), ('ignorant', 5), ('improve', 5), ('heart.', 5), ('declaration', 5), ('certainty', 5), ('warrant', 5), ('felicity', 5), ('exposed', 5), ('delivered', 5), ('whence', 5), ('judge', 5), ('vexed', 5), ('rapid', 5), ('prevailed', 5), ('prepare', 5), ('unknown', 5), ('preserved', 5), ('extended', 5), ('abode', 5), ('enable', 5), ('elsewhere', 5), ('although', 5), ('overcame', 5), ('front', 5), ('admitted', 5), ('covered', 5), ('foot', 5), ('lasting', 5), ('spring', 5), ('difficult', 5), ('properly', 5), ('formerly', 5), ('denied', 5), ('tall', 5), ('improved', 5), ('common-place', 5), ('talent', 5), ('exercise', 5), ('winter', 5), ('gravity', 5), ('roused', 5), ('noisy', 5), ('musical', 5), ('play', 5), ('song', 5), ('loud', 5), ('impertinence', 5), ('forlorn', 5), ('ill-natured', 5), ('sensation', 5), ('other.', 5), ('confinement', 5), ('fever', 5), ('cheek', 5), ('languid', 5), ('purposely', 5), ('tolerable', 5), ('urgent', 5), ('occasioned', 5), ('wind', 5), ('sharing', 5), ('pointer', 5), ('whither', 5), ('sprung', 5), ('relating', 5), ('frank', 5), ('conquest', 5), ('reproof', 5), ('height', 5), ('usually', 5), ('dancing', 5), ('discussion', 5), ('examination', 5), ('congratulate', 5), ('rival', 5), ('injury', 5), ('justified', 5), ('injustice', 5), ('_your_', 5), ('hanging', 5), ('privilege', 5), ('presented', 5), ('concealment', 5), ('disgrace', 5), ('excessive', 5), ('desired', 5), ('stopt', 5), ('hesitation', 5), ('guilty', 5), ('impropriety', 5), ('touch', 5), ('white', 5), ('standing', 5), ('harm', 5), ('repeat', 5), ('twelve', 5), ('frightened', 5), ('persuading', 5), ('of.', 5), ('blushed', 5), ('admired', 5), ('concealing', 5), ('filled', 5), ('involved', 5), ('seeming', 5), ('relative', 5), ('grieving', 5), ('unwillingness', 5), ('disturbed', 5), ('witnessed', 5), ('wondering', 5), ('blame', 5), ('attribute', 5), ('integrity', 5), ('startled', 5), ('temptation', 5), ('acknowledging', 5), ('silently', 5), ('effusion', 5), ('speedy', 5), ('travelled', 5), ('_him_', 5), ('coldness', 5), ('plymouth', 5), ('passion', 5), ('reverie', 5), ('collection', 5), ('stupid', 5), ('guided', 5), ('thoughtfulness', 5), ('contradicted', 5), ('promote', 5), ('middle', 5), ('inviting', 5), ('bent', 5), ('lie', 5), ('openness', 5), ('flattering', 5), ('constantly', 5), ('misfortune', 5), ('fashion', 5), ('expensive', 5), ('run', 5), ('slightly', 5), ('dined', 5), ('treatment', 5), ('—said', 5), ('flattered', 5), ('prevail', 5), ('gentleness', 5), ('vastly', 5), ('advance', 5), ('checked', 5), ('thorough', 5), ('her.', 5), ('sink', 5), ('betraying', 5), ('fright', 5), ('compassionate', 5), ('remembered', 5), ('aside', 5), ('firmness', 5), ('repetition', 5), ('opening', 5), ('to-morrow', 5), ('recollected', 5), ('working', 5), ('introduce', 5), ('risk', 5), ('breaking', 5), ('constancy', 5), ('deep', 5), ('inform', 5), ('dismissed', 5), ('implied', 5), ('approach', 5), ('bless', 5), ('shock', 5), ('exclamation', 5), ('altered', 5), ('entreat', 5), ('foolish', 5), ('faith', 5), ('treating', 5), ('wine', 5), ('torture', 5), ('ellison', 5), ('—what', 5), ('good-nature', 5), ('_this_', 5), ('regretting', 5), ('weakness', 5), ('page', 5), ('dearer', 5), ('error', 5), ('lodging', 5), ('_will_', 5), ('dorsetshire', 5), ('individual', 5), ('thankful', 5), ('gracious', 5), ('rational', 5), ('gratefully', 5), ('donavan', 5), ('hysteric', 5), ('preparing', 5), ('born', 5), ('—not', 5), ('imputed', 5), ('creating', 5), ('dying', 5), ('copying', 5), ('submission', 5), ('edition', 5), ('protected', 5), ('1.e.1', 5), ('1.f.3', 5), ('replacement', 5), ('warranty', 5), ('included', 4), ('online', 4), ('author', 4), ('date', 4), ('march', 4), ('extensive', 4), ('start', 4), ('surrounding', 4), ('niece', 4), ('benefit', 4), ('trick', 4), ('a-piece', 4), ('sanguine', 4), ('recommendation', 4), ('ill-disposed', 4), ('conducted', 4), ('—her', 4), ('taught', 4), ('struggle', 4), ('encourage', 4), ('forbearance', 4), ('bid', 4), ('reminded', 4), ('suited', 4), ('amount', 4), ('sens', 4), ('begging', 4), ('neglect', 4), ('numerous', 4), ('prodigious', 4), ('advisable', 4), ('forty', 4), ('sick', 4), ('regular', 4), ('clearly', 4), ('china', 4), ('incapable', 4), ('welfare', 4), ('firmly', 4), ('grace', 4), ('connected', 4), ('driving', 4), ('careless', 4), ('inferior', 4), ('separate', 4), ('attaching', 4), ('highest', 4), ('tenderly', 4), ('severely', 4), ('bore', 4), ('driven', 4), ('wild', 4), ('pronounced', 4), ('overlook', 4), ('require', 4), ('despair', 4), ('fortunate', 4), ('simplicity', 4), ('offending', 4), ('rapturous', 4), ('honoured', 4), ('propensity', 4), ('sweetness', 4), ('doubtful', 4), ('lose', 4), ('genius', 4), ('dependent', 4), ('indulgence', 4), ('uneasy', 4), ('unconscious', 4), ('contained', 4), ('fail', 4), ('county', 4), ('oppose', 4), ('indulged', 4), ('announcing', 4), ('son-in-law', 4), ('travelling', 4), ('disregarded', 4), ('water', 4), ('offering', 4), ('sell', 4), ('examine', 4), ('defer', 4), ('fulfilled', 4), ('quitting', 4), ('adieu', 4), ('—when', 4), ('continue', 4), ('shade', 4), ('winding', 4), ('court', 4), ('defective', 4), ('narrow', 4), ('collected', 4), ('throwing', 4), ('insisted', 4), ('polite', 4), ('graceful', 4), ('well-bred', 4), ('hung', 4), ('resembled', 4), ('outward', 4), ('forming', 4), ('ball', 4), ('procuring', 4), ('attack', 4), ('insipidity', 4), ('mirth', 4), ('clothes', 4), ('diverted', 4), ('exquisite', 4), ('enjoyed', 4), ('absurdity', 4), ('throw', 4), ('deceive', 4), ('thirty-five', 4), ('pausing', 4), ('pulse', 4), ('detain', 4), ('composed', 4), ('distinction', 4), ('invariable', 4), ('mix', 4), ('earliest', 4), ('step', 4), ('sky', 4), ('cloud', 4), ('pitied', 4), ('accident', 4), ('twisted', 4), ('dirty', 4), ('robbed', 4), ('energy', 4), ('previous', 4), ('rapidity', 4), ('ride', 4), ('year.', 4), ('visiting', 4), ('tendency', 4), ('lovely', 4), ('displayed', 4), ('familiarity', 4), ('despatch', 4), ('estimation', 4), ('secretly', 4), ('slighted', 4), ('abuse', 4), ('employ', 4), ('decide', 4), ('curricle', 4), ('suggest', 4), ('unreserve', 4), ('restraint', 4), ('provoke', 4), ('display', 4), ('devoted', 4), ('experienced', 4), ('experience', 4), ('rise', 4), ('testimony', 4), ('gift', 4), ('wisest', 4), ('consented', 4), ('mentioning', 4), ('addressing', 4), ('neck', 4), ('authority', 4), ('dead', 4), ('piano-forte', 4), ('noble', 4), ('excursion', 4), ('whitwell', 4), ('worse.', 4), ('not.', 4), ('colouring', 4), ('attendance', 4), ('shook', 4), ('careys', 4), ('announced', 4), ('bowed', 4), ('universally', 4), ('sure.', 4), ('procure', 4), ('lane', 4), ('elder', 4), ('willoughby.', 4), ('determination', 4), ('bye', 4), ('sickly', 4), ('varying', 4), ('sacrifice', 4), ('dispose', 4), ('variation', 4), ('flatter', 4), ('apparently', 4), ('handkerchief', 4), ('travel', 4), ('behave', 4), ('expedient', 4), ('both.', 4), ('nearest', 4), ('daily', 4), ('representation', 4), ('anxiously', 4), ('reverse', 4), ('fetch', 4), ('correspondence', 4), ('forcing', 4), ('wandering', 4), ('carefully', 4), ('distinguish', 4), ('distinguished', 4), ('shared', 4), ('tranquil', 4), ('guessed', 4), ('hunter', 4), ('unanimous', 4), ('commission', 4), ('falling', 4), ('unworthy', 4), ('misapprehension', 4), ('advised', 4), ('inattention', 4), ('honestly', 4), ('affect', 4), ('ruined', 4), ('finest', 4), ('finger', 4), ('vexation', 4), ('know.', 4), ('affecting', 4), ('satisfying', 4), ('_must_', 4), ('marianne.', 4), ('again.', 4), ('astonishing', 4), ('displeased', 4), ('attributed', 4), ('fettered', 4), ('genteel', 4), ('temple', 4), ('study', 4), ('idleness', 4), ('honourable', 4), ('discontent', 4), ('—with', 4), ('respecting', 4), ('examining', 4), ('horrid', 4), ('devil', 4), ('dropt', 4), ('sly', 4), ('rude', 4), ('directed', 4), ('intimately', 4), ('somehow', 4), ('inquire', 4), ('wherever', 4), ('coach', 4), ('human', 4), ('complacency', 4), ('suggested', 4), ('pocket', 4), ('fondly', 4), ('proposed', 4), ('proportion', 4), ('lot', 4), ('personally', 4), ('_you', 4), ('paused', 4), ('perplexity', 4), ('suspecting', 4), ('hasty', 4), ('falsehood', 4), ('hoping', 4), ('pitiable', 4), ('tranquillity', 4), ('divide', 4), ('counsel', 4), ('weight', 4), ('happily', 4), ('impossibility', 4), ('card-table', 4), ('rubber', 4), ('terrible', 4), ('failed', 4), ('trial', 4), ('unpardonable', 4), ('anger', 4), ('incumbent', 4), ('weary', 4), ('accompany', 4), ('shan', 4), ('betty', 4), ('foresee', 4), ('quietly', 4), ('_should_', 4), ('reconciled', 4), ('putting', 4), ('elevated', 4), ('choose', 4), ('rap', 4), ('thoughtful', 4), ('concerning', 4), ('purchase', 4), ('bond', 4), ('frost', 4), ('extreme', 4), ('amuse', 4), ('tomorrow.', 4), ('precious', 4), ('appointment', 4), ('indisposed', 4), ('collect', 4), ('delayed', 4), ('application', 4), ('attitude', 4), ('permitted', 4), ('necessarily', 4), ('moving', 4), ('inquired', 4), ('peace', 4), ('misconduct', 4), ('pang', 4), ('considerate', 4), ('spreading', 4), ('hardened', 4), ('served', 4), ('hate', 4), ('earlier', 4), ('acted', 4), ('acquit', 4), ('—who', 4), ('myself.', 4), ('governed', 4), ('defend', 4), ('sympathy', 4), ('eloquence', 4), ('unwelcome', 4), ('withdrew', 4), ('_had_', 4), ('it—i', 4), ('relate', 4), ('relieved', 4), ('compare', 4), ('sighed', 4), ('vindication', 4), ('dignity', 4), ('good-will', 4), ('michaelmas', 4), ('receipt', 4), ('exultation', 4), ('d', 4), ('assent', 4), ('one.', 4), ('land', 4), ('pair', 4), ('dreaded', 4), ('courage', 4), ('performing', 4), ('elliott', 4), ('library', 4), ('humility', 4), ('perform', 4), ('soothe', 4), ('urge', 4), ('curacy', 4), ('below', 4), ('principal', 4), ('unexpected', 4), ('mansion-house', 4), ('genuine', 4), ('shrubbery', 4), ('lesser', 4), ('infinitely', 4), ('file', 4), ('mission', 4), ('1.e.8', 4), ('displaying', 4), ('freely', 4), ('status', 4), ('distributed', 4), ('posted', 4), ('holder', 4), ('requirement', 4), ('website', 4), ('3', 4), ('computer', 4), ('disclaimer', 4), ("'s", 4), ('jane', 3), ('austen', 3), ('restriction', 3), ('september', 3), ('[', 3), (']', 3), ('generation', 3), ('nephew', 3), ('henry', 3), ('solid', 3), ('amply', 3), ('succession', 3), ('destroyed', 3), ('cunning', 3), ('outweigh', 3), ('legacy', 3), ('respected', 3), ('discharge', 3), ('attendant', 3), ('romantic', 3), ('ungracious', 3), ('possessed', 3), ('coolness', 3), ('enabled', 3), ('counteract', 3), ('govern', 3), ('violence', 3), ('admitting', 3), ('rouse', 3), ('accommodate', 3), ('posse', 3), ('rob', 3), ('relationship', 3), ('requested', 3), ('gravely', 3), ('convenient', 3), ('_they_', 3), ('strike', 3), ('hesitated', 3), ('rid', 3), ('abhorrence', 3), ('yearly', 3), ('rent', 3), ('move', 3), ('ll', 3), ('strictly', 3), ('acceptable', 3), ('stanhill', 3), ('plate', 3), ('linen', 3), ('here.', 3), ('irresistible', 3), ('heightening', 3), ('suitable', 3), ('approved', 3), ('affluence', 3), ('doctrine', 3), ('attracted', 3), ('diffident', 3), ('longed', 3), ('barouche', 3), ('unobtrusive', 3), ('ill-timed', 3), ('chanced', 3), ('contrast', 3), ('already.', 3), ('banished', 3), ('comprehended', 3), ('penetration', 3), ('rapidly', 3), ('approaching', 3), ('virtue', 3), ('attract', 3), ('admires', 3), ('tame', 3), ('cowper', 3), ('engrossed', 3), ('studied', 3), ('pronounce', 3), ('well-informed', 3), ('pure', 3), ('conjectured', 3), ('cold-hearted', 3), ('moment.', 3), ('dejection', 3), ('expressively', 3), ('resolving', 3), ('parish', 3), ('unfeeling', 3), ('acceptance', 3), ('hastened', 3), ('moderate', 3), ('dissuade', 3), ('principally', 3), ('household', 3), ('description', 3), ('shed', 3), ('wandered', 3), ('viewing', 3), ('leaf', 3), ('decay', 3), ('green', 3), ('roof', 3), ('painted', 3), ('square', 3), ('repair', 3), ('indispensable', 3), ('plenty', 3), ('snug', 3), ('wise', 3), ('contented', 3), ('placing', 3), ('good-humoured', 3), ('frankness', 3), ('shy', 3), ('debating', 3), ('securing', 3), ('supplied', 3), ('summer', 3), ('appetite', 3), ('unaffected', 3), ('captivating', 3), ('settling', 3), ('welcomed', 3), ('smallness', 3), ('merry', 3), ('elderly', 3), ('vulgar', 3), ('laughter', 3), ('absolute', 3), ('bachelor', 3), ('sang', 3), ('horrible', 3), ('outlived', 3), ('humanity', 3), ('attentively', 3), ('ridicule', 3), ('infirmity', 3), ('protect', 3), ('complain', 3), ('terror', 3), ('_her_.', 3), ('benefited', 3), ('chamber', 3), ('flannel', 3), ('waistcoat', 3), ('ailment', 3), ('time.', 3), ('resolute', 3), ('seek', 3), ('rejoicing', 3), ('pursued', 3), ('running', 3), ('steep', 3), ('false', 3), ('bottom', 3), ('playing', 3), ('yard', 3), ('modesty', 3), ('intrusion', 3), ('wet', 3), ('granted', 3), ('departed', 3), ('manly', 3), ('regarding', 3), ('formality', 3), ('becoming', 3), ('decent', 3), ('nicest', 3), ('cap', 3), ('brandon.', 3), ('prompted', 3), ('interview', 3), ('violently', 3), ('skin', 3), ('brown', 3), ('good-breeding', 3), ('conversed', 3), ('admiring', 3), ('topic', 3), ('erred', 3), ('ardour', 3), ('example', 3), ('faultless', 3), ('perfection', 3), ('perceptible', 3), ('opposed', 3), ('beheld', 3), ('oppression', 3), ('boast', 3), ('converse', 3), ('defence', 3), ('various', 3), ('east', 3), ('stretched', 3), ('coat', 3), ('comparatively', 3), ('stubborn', 3), ('disliking', 3), ('ever.', 3), ('october', 3), ('checking', 3), ('ensured', 3), ('memory', 3), ('conversing', 3), ('prejudice', 3), ('dangerous', 3), ('enforced', 3), ('series', 3), ('extravagant', 3), ('refused', 3), ('indulgent', 3), ('subdued', 3), ('imprudent', 3), ('expressing', 3), ('pronouncing', 3), ('soon.', 3), ('scissors', 3), ('kissed', 3), ('yourself.', 3), ('say.', 3), ('rained', 3), ('strict', 3), ('bold', 3), ('sun', 3), ('hardship', 3), ('requires', 3), ('town.', 3), ('guinea', 3), ('is.', 3), ('horseback', 3), ('lamentation', 3), ('provoking', 3), ('lowering', 3), ('concluding', 3), ('contentment', 3), ('morning.', 3), ('ago.', 3), ('life.', 3), ('ill-judged', 3), ('corner', 3), ('steadiness', 3), ('intermission', 3), ('sadly', 3), ('cleared', 3), ('complained', 3), ('expressive', 3), ('stone', 3), ('alarmed', 3), ('cottage.', 3), ('—in', 3), ('barton.', 3), ('imaginary', 3), ('excused', 3), ('absent', 3), ('hope.', 3), ('affectation', 3), ('quarrel', 3), ('intending', 3), ('_does_', 3), ('candid', 3), ('us.', 3), ('wretchedly', 3), ('concession', 3), ('deceitful', 3), ('involuntary', 3), ('_we_', 3), ('pressing', 3), ('slightest', 3), ('wept', 3), ('indulging', 3), ('applied', 3), ('suspended', 3), ('solitary', 3), ('volume', 3), ('...', 3), ('gaining', 3), ('pace', 3), ('abruptly', 3), ('—as', 3), ('rousing', 3), ('plantation', 3), ('grandeur', 3), ('displeasure', 3), ('praised', 3), ('indignant', 3), ('greatness', 3), ('competence', 3), ('self', 3), ('somebody', 3), ('animation', 3), ('magnificent', 3), ('print', 3), ('recall', 3), ('was.', 3), ('fancying', 3), ('originated', 3), ('timber', 3), ('farm', 3), ('disgusted', 3), ('landscape', 3), ('detest', 3), ('profess', 3), ('catch', 3), ('learned', 3), ('instruction', 3), ('drink', 3), ('yourselves', 3), ('repeatedly', 3), ('circle', 3), ('advantageous', 3), ('s.', 3), ('accent', 3), ('busily', 3), ('faulty', 3), ('lying', 3), ('indulge', 3), ('inevitably', 3), ('stepping', 3), ('way.', 3), ('drinking', 3), ('endure', 3), ('asleep', 3), ('ate', 3), ('weston', 3), ('cross', 3), ('insolence', 3), ('scolded', 3), ('confirmation', 3), ('inquiring', 3), ('consequent', 3), ('introduction', 3), ('sharp', 3), ('offspring', 3), ('william', 3), ('annamaria', 3), ('bestowing', 3), ('scream', 3), ('professedly', 3), ('critical', 3), ('kiss', 3), ('knee', 3), ('mouth', 3), ('remembering', 3), ('remedy', 3), ('medicine', 3), ('sad', 3), ('task', 3), ('children.', 3), ('outside', 3), ('freedom', 3), ('—you', 3), ('youngest', 3), ('luck', 3), ('somewhat', 3), ('productive', 3), ('alluded', 3), ('aid', 3), ('fixing', 3), ('firm', 3), ('day.', 3), ('keeping', 3), ('exceeding', 3), ('lest', 3), ('obtained', 3), ('authorised', 3), ('unfairly', 3), ('blamable', 3), ('deprived', 3), ('consoled', 3), ('obstacle', 3), ('flow', 3), ('evidently', 3), ('chat', 3), ('eating', 3), ('affording', 3), ('charity', 3), ('finish', 3), ('filigree', 3), ('angel', 3), ('depends', 3), ('relieve', 3), ('deprive', 3), ('first.', 3), ('—is', 3), ('lower', 3), ('protection', 3), ('solemnity', 3), ('dividing', 3), ('accustomary', 3), ('unlucky', 3), ('lengthened', 3), ('fulfill', 3), ('thither', 3), ('wounding', 3), ('revealed', 3), ('prevailing', 3), ('acquisition', 3), ('unconcern', 3), ('gladly', 3), ('addressed', 3), ('inn', 3), ('released', 3), ('conveyed', 3), ('ecstasy', 3), ('mildness', 3), ('represent', 3), ('strongest', 3), ('tonight', 3), ('situated', 3), ('derived', 3), ('out.', 3), ('unfit', 3), ('aloud', 3), ('contrived', 3), ('impatiently', 3), ('unwell', 3), ('to—', 3), ('liable', 3), ('confirm', 3), ('stirring', 3), ('crowd', 3), ('approached', 3), ('tuesday', 3), ('regretted', 3), ('dreadfully', 3), ('reviving', 3), ('unprincipled', 3), ('weakened', 3), ('rupture', 3), ('housemaid', 3), ('gloomy', 3), ('dressed', 3), ('desperate', 3), ('pen', 3), ('avoiding', 3), ('pitying', 3), ('liking', 3), ('married.', 3), ('now.', 3), ('humble', 3), ('writer', 3), ('deeper', 3), ('worst', 3), ('deliverance', 3), ('dictate', 3), ('_could_', 3), ('wildly', 3), ('m.d.', 3), ('justification', 3), ('repeating', 3), ('posture', 3), ('drop', 3), ('bustle', 3), ('amused', 3), ('sign', 3), ('supper', 3), ('sister.', 3), ('debt', 3), ('parsonage-house', 3), ('shoulder', 3), ('bed.', 3), ('whispered', 3), ('bloom', 3), ('closed', 3), ('impulse', 3), ('confident', 3), ('nerve', 3), ('_very_', 3), ('awkward', 3), ('fervent', 3), ('threw', 3), ('trace', 3), ('well-meaning', 3), ('self-reproach', 3), ('communicating', 3), ('confessed', 3), ('negligence', 3), ('exciting', 3), ('earned', 3), ('willoughbys', 3), ('grand', 3), ('gown', 3), ('toothpick-case', 3), ('conceit', 3), ('serve', 3), ('truly', 3), ('_has_', 3), ('green-house', 3), ('rewarded', 3), ('pleasantly', 3), ('spirited', 3), ('graciousness', 3), ('declaring', 3), ('constitution', 3), ('meanness', 3), ('rejoice', 3), ('—sure', 3), ('contribution', 3), ('be.', 3), ('temporary', 3), ('jealousy', 3), ('baby', 3), ('—was', 3), ('dawlish', 3), ('strengthened', 3), ('wonderful', 3), ('narration', 3), ('confirmed', 3), ('enjoying', 3), ('obtaining', 3), ('awful', 3), ('benevolence', 3), ('avail', 3), ('rascal', 3), ('dignified', 3), ('_is_', 3), ('richardson', 3), ('ordained', 3), ('prettily', 3), ('good-hearted', 3), ('resisted', 3), ('apologising', 3), ('vacant', 3), ('presentation', 3), ('recovering', 3), ('confirming', 3), ('gravel', 3), ('dry', 3), ('reduced', 3), ('feverish', 3), ('apothecary', 3), ('awakened', 3), ('sleepless', 3), ('blessed', 3), ('slow', 3), ('progress', 3), ('fool', 3), ('sacrificed', 3), ('heightened', 3), ('pursuing', 3), ('soothing', 3), ('separated', 3), ('chusing', 3), ('preserve', 3), ('copied', 3), ('atonement', 3), ('wicked', 3), ('ill-will', 3), ('leading', 3), ('thence', 3), ('worthless', 3), ('errand', 3), ('crime', 3), ('destroy', 3), ('complying', 3), ('derivative', 3), ('entity', 3), ('link', 3), ('1.e.7', 3), ('1.e.9', 3), ('official', 3), ('user', 3), ('applicable', 3), ('donate', 3), ('4', 3), ('contact', 3), ('equipment', 3), ('-', 3), ('liability', 3), ('limitation', 3), ('anywhere', 2), ('whatsoever', 2), ('re-use', 2), ('recently', 2), ('updated', 2), ('special', 2), ('illustration', 2), ('ii', 2), ('iii', 2), ('iv', 2), ('vi', 2), ('vii', 2), ('viii', 2), ('ix', 2), ('xi', 2), ('xii', 2), ('xiii', 2), ('xiv', 2), ('xv', 2), ('xvi', 2), ('xvii', 2), ('xviii', 2), ('xix', 2), ('xx', 2), ('xxi', 2), ('xxii', 2), ('xxiii', 2), ('xxiv', 2), ('xxv', 2), ('xxvi', 2), ('xxvii', 2), ('xxviii', 2), ('xxix', 2), ('xxx', 2), ('xxxi', 2), ('xxxii', 2), ('xxxiii', 2), ('xxxiv', 2), ('xxxv', 2), ('xxxvi', 2), ('xxxvii', 2), ('xxxviii', 2), ('xxxix', 2), ('xl', 2), ('xli', 2), ('xlii', 2), ('xliii', 2), ('xliv', 2), ('xlv', 2), ('xlvi', 2), ('xlvii', 2), ('xlviii', 2), ('xlix', 2), ('centre', 2), ('ungrateful', 2), ('tied', 2), ('unusual', 2), ('imperfect', 2), ('hearted', 2), ('meditated', 2), ('repent', 2), ('unpleasing', 2), ('honor', 2), ('immovable', 2), ('disgust', 2), ('despise', 2), ('effectual', 2), ('moderation', 2), ('strikingly', 2), ('cherished', 2), ('overpowered', 2), ('renewed', 2), ('consult', 2), ('well-disposed', 2), ('blood', 2), ('exist', 2), ('home.', 2), ('woman.', 2), ('stout', 2), ('disagreeable', 2), ('perpetual', 2), ('pin', 2), ('drain', 2), ('occasionally', 2), ('larger', 2), ('richer', 2), ('helping', 2), ('unreasonable', 2), ('brings', 2), ('board', 2), ('—they', 2), ('housekeeping', 2), ('absurd', 2), ('stock', 2), ('disinclination', 2), ('revive', 2), ('rejected', 2), ('solemn', 2), ('smaller', 2), ('reproached', 2), ('relied', 2), ('maternal', 2), ('eligibility', 2), ('according', 2), ('comprehension', 2), ('indication', 2), ('parliament', 2), ('attained', 2), ('quieted', 2), ('ambition', 2), ('love.', 2), ('quietness', 2), ('disapprove', 2), ('spiritless', 2), ('ornament', 2), ('learning', 2), ('cordial', 2), ('estimating', 2), ('minuter', 2), ('unreserved', 2), ('excellence', 2), ('correct', 2), ('imperfection', 2), ('indispensably', 2), ('depending', 2), ('limit', 2), ('affronting', 2), ('endeavor', 2), ('insinuation', 2), ('inhabit', 2), ('acquiescence', 2), ('hence', 2), ('accommodating', 2), ('resolve', 2), ('unavoidable', 2), ('tended', 2), ('article', 2), ('west', 2), ('consulted', 2), ('wisdom', 2), ('preferred', 2), ('diminution', 2), ('neglected', 2), ('accomplishment', 2), ('maintenance', 2), ('motionless', 2), ('tedious', 2), ('neat', 2), ('compact', 2), ('shutter', 2), ('sixteen', 2), ('garret', 2), ('built', 2), ('dried', 2), ('commanded', 2), ('surrounded', 2), ('theirs', 2), ('cordially', 2), ('perseverance', 2), ('stuff', 2), ('conveying', 2), ('precaution', 2), ('recurred', 2), ('extremity', 2), ('formal', 2), ('gratification', 2), ('shot', 2), ('spoil', 2), ('charmed', 2), ('inhabitant', 2), ('friendliness', 2), ('female', 2), ('entire', 2), ('blush', 2), ('gentlemanlike', 2), ('recommend', 2), ('pulled', 2), ('played', 2), ('acuteness', 2), ('jointure', 2), ('promotion', 2), ('projecting', 2), ('wedding', 2), ('raising', 2), ('discernment', 2), ('ascertained', 2), ('inconsiderable', 2), ('endless', 2), ('incomprehensible', 2), ('ancient', 2), ('youthful', 2), ('intentionally', 2), ('infirm', 2), ('limb', 2), ('rheumatism', 2), ('commonest', 2), ('apprehensive', 2), ('inspire', 2), ('unsuitable', 2), ('commercial', 2), ('damp', 2), ('specie', 2), ('hollow', 2), ('occupation', 2), ('attainable', 2), ('issued', 2), ('summit', 2), ('dirt', 2), ('beneath', 2), ('showery', 2), ('lastingly', 2), ('gaily', 2), ('ascended', 2), ('glimpse', 2), ('animating', 2), ('unwillingly', 2), ('shelter', 2), ('involuntarily', 2), ('safety', 2), ('gun', 2), ('ugly', 2), ('midst', 2), ('exterior', 2), ('crimsoned', 2), ('adorned', 2), ('bolder', 2), ('rider', 2), ('england.', 2), ('resided', 2), ('tumbling', 2), ('christmas', 2), ('sparkling', 2), ('gross', 2), ('illiberal', 2), ('handsomer', 2), ('brilliant', 2), ('attractive', 2), ('dark', 2), ('vivacity', 2), ('dwelt', 2), ('convert', 2), ('brightness', 2), ('enthusiasm', 2), ('suffice', 2), ('decorum', 2), ('spared.', 2), ('scold', 2), ('gradually', 2), ('peculiarly', 2), ('worldly', 2), ('unjustifiable', 2), ('noticed', 2), ('assigned', 2), ('hindrance', 2), ('esteemed', 2), ('prejudiced', 2), ('speaks', 2), ('undiscerning', 2), ('_protégé_', 2), ('indie', 2), ('hot', 2), ('gold', 2), ('candour', 2), ('insipid', 2), ('unkindly', 2), ('artful', 2), ('unanswerable', 2), ('threatened', 2), ('irreproachable', 2), ('accomplished', 2), ('abhorred', 2), ('disgraceful', 2), ('subjection', 2), ('cheated', 2), ('ardent', 2), ('teach', 2), ('troublesome', 2), ('excite', 2), ('considers', 2), ('reflecting', 2), ('atone', 2), ('perverseness', 2), ('refinement', 2), ('alter', 2), ('stable', 2), ('intends', 2), ('groom', 2), ('trifle', 2), ('merest', 2), ('insufficient', 2), ('apparent', 2), ('christian', 2), ('wore', 2), ('miniature', 2), ('folded', 2), ('withhold', 2), ('sagacity', 2), ('too.', 2), ('f.', 2), ('interruption', 2), ('recover', 2), ('fatigued', 2), ('assembled', 2), ('avignon', 2), ('business.', 2), ('discompose', 2), ('admittance', 2), ('whitwell.', 2), ('return.', 2), ('invented', 2), ('disappointing', 2), ('obliging', 2), ('honiton', 2), ('post.', 2), ('restrained', 2), ('exultingly', 2), ('daughter.', 2), ('stare', 2), ('ordered', 2), ('impudence', 2), ('unlikely', 2), ('dining-room', 2), ('doubting', 2), ('done.', 2), ('visibly', 2), ('modern', 2), ('reckoned', 2), ('rated', 2), ('distinguishing', 2), ('exclaimed—', 2), ('better.', 2), ('exact', 2), ('kitchen', 2), ('disadvantage', 2), ('staircase', 2), ('this.', 2), ('lowered', 2), ('handsomest', 2), ('dimension', 2), ('unchanged', 2), ('middleton.', 2), ('foreseen', 2), ('mantel-piece', 2), ('dispatch', 2), ('good.', 2), ('linger', 2), ('backwardness', 2), ('tenderest', 2), ('uncheerful', 2), ('owned', 2), ('sends', 2), ('anticipated', 2), ('recent', 2), ('departing', 2), ('deviation', 2), ('reproaching', 2), ('carelessness', 2), ('correspond', 2), ('removed.', 2), ('altar', 2), ('uniformly', 2), ('inconsistency', 2), ('create', 2), ('ungenerous', 2), ('suspicious', 2), ('embarrassed', 2), ('avowal', 2), ('inexcusable', 2), ('repose', 2), ('incurring', 2), ('awake', 2), ('nourishment', 2), ('forbidding', 2), ('gazing', 2), ('sadness', 2), ('alternately', 2), ('courted', 2), ('calmer', 2), ('suggesting', 2), ('denial', 2), ('weeks.', 2), ('ramble', 2), ('reaching', 2), ('rapturously', 2), ('hastening', 2), ('come.', 2), ('hurrying', 2), ('dismounted', 2), ('confused', 2), ('sufficiently', 2), ('elect', 2), ('leaves.', 2), ('farthest', 2), ('winter.', 2), ('moments.', 2), ('mortified', 2), ('kindest', 2), ('attributing', 2), ('less.', 2), ('glowing', 2), ('it—and', 2), ('loose', 2), ('maxim', 2), ('character.', 2), ('girl.', 2), ('deception', 2), ('aimed', 2), ('gentility', 2), ('inferiority', 2), ('higher', 2), ('soft', 2), ('atmosphere', 2), ('pretension', 2), ('fastidious', 2), ('jargon', 2), ('hackneyed', 2), ('crooked', 2), ('straight', 2), ('thoughtfully', 2), ('wear', 2), ('momentary', 2), ('affront', 2), ('internally', 2), ('eyeing', 2), ('censured', 2), ('survey', 2), ('discovering', 2), ('nameless', 2), ('communicative', 2), ('imperfectly', 2), ('qualification', 2), ('yield', 2), ('nicety', 2), ('dashing', 2), ('solicitation', 2), ('promoted', 2), ('wasted', 2), ('subdue', 2), ('advancement', 2), ('drawing-table', 2), ('_were_', 2), ('mortifying', 2), ('abundance', 2), ('engross', 2), ('space', 2), ('believe.', 2), ('again—', 2), ('willingness', 2), ('staid', 2), ('endowed', 2), ('ceasing', 2), ('significantly', 2), ('expects', 2), ('exerted', 2), ('elsewhere.', 2), ('affectionately', 2), ('seating', 2), ('disgusting', 2), ('dullness', 2), ('ill-bred', 2), ('contradict', 2), ('contemptuous', 2), ('succeed', 2), ('superiority', 2), ('applying', 2), ('refuse', 2), ('resolutely', 2), ('assented', 2), ('declares', 2), ('unluckily', 2), ('immediately.', 2), ('like.', 2), ('simply', 2), ('existed', 2), ('zeal', 2), ('fashionable', 2), ('resigned', 2), ('contenting', 2), ('reprimand', 2), ('enthusiastic', 2), ('sweetest', 2), ('come—you', 2), ('anew', 2), ('actual', 2), ('courting', 2), ('pattern', 2), ('viewed', 2), ('searched', 2), ('stolen', 2), ('reciprocal', 2), ('lap', 2), ('screamed', 2), ('quest', 2), ('entreated', 2), ('m', 2), ('else.', 2), ('specimen', 2), ('conjectural', 2), ('impertinently', 2), ('sport', 2), ('audible', 2), ('assiduity', 2), ('insincerity', 2), ('deference', 2), ('cautious', 2), ('enquiring', 2), ('trusting', 2), ('_may_', 2), ('_robert_', 2), ('hysterical', 2), ('faithfully', 2), ('years.', 2), ('revived', 2), ('name.', 2), ('painting', 2), ('imagining', 2), ('tongue', 2), ('alive', 2), ('uncertainty', 2), ('feelingly', 2), ('veracity', 2), ('writes', 2), ('alarming', 2), ('deceiving', 2), ('feigned', 2), ('rationally', 2), ('forfeit', 2), ('condemnation', 2), ('honesty', 2), ('combat', 2), ('unwounded', 2), ('seclude', 2), ('accompanied', 2), ('tea-things', 2), ('entertained', 2), ('disappoint', 2), ('bell', 2), ('alacrity', 2), ('infer', 2), ('smooth', 2), ('joyfully', 2), ('condescend', 2), ('practise', 2), ('harmony', 2), ('truest', 2), ('robbing', 2), ('guarding', 2), ('observant', 2), ('quick-sighted', 2), ('tediousness', 2), ('coxcomb', 2), ('modest', 2), ('bit', 2), ('rest.', 2), ('husband.', 2), ('agitated', 2), ('person.', 2), ('laying', 2), ('reluctance', 2), ('self-interest', 2), ('seldom', 2), ('introducing', 2), ('confidante', 2), ('portion', 2), ('insured', 2), ('referred', 2), ('disregard', 2), ('irritable', 2), ('bedroom', 2), ('formidable', 2), ('unpleasantness', 2), ('persisted', 2), ('sole', 2), ('mercy', 2), ('weaken', 2), ('cheerless', 2), ('zealous', 2), ('ascertain', 2), ('unfavourable', 2), ('complaisance', 2), ('solicitous', 2), ('luxury', 2), ('silk', 2), ('footman', 2), ('two-penny', 2), ('flutter', 2), ('starting', 2), ('head-aches', 2), ('to-morrow.', 2), ('somewhere', 2), ('watch', 2), ('occupied', 2), ('indecision', 2), ('flew', 2), ('porter', 2), ('whist', 2), ('severity', 2), ('mary', 2), ('privacy', 2), ('watchfulness', 2), ('city', 2), ('compound', 2), ('grieved', 2), ('allowable', 2), ('urging', 2), ('foretold', 2), ('hated', 2), ('to-day', 2), ('disclosing', 2), ('remains.', 2), ('imaginable', 2), ('dispirited', 2), ('landing-place', 2), ('lit', 2), ('lavender', 2), ('subsisted', 2), ('feed', 2), ('sporting', 2), ('uniting', 2), ('heighten', 2), ('sob', 2), ('requiring', 2), ('meal', 2), ('sickness', 2), ('accordingly', 2), ('measuring', 2), ('disappeared', 2), ('desperately', 2), ('grievous', 2), ('joint', 2), ('follows', 2), ('guarded', 2), ('obligingly', 2), ('insult', 2), ('bitter', 2), ('irremediable', 2), ('chariot', 2), ('slept', 2), ('aching', 2), ('glass', 2), ('anguish', 2), ('kill', 2), ('solemnly', 2), ('away.', 2), ('engagement.', 2), ('grieve', 2), ('unsolicited', 2), ('condemned', 2), ('strictest', 2), ('art', 2), ('supplication', 2), ('firmer', 2), ('barbarous', 2), ('contend', 2), ('nobly', 2), ('innocence', 2), ('insolent', 2), ('ensued', 2), ('that.', 2), ('good-for-nothing', 2), ('taylor', 2), ('dressing', 2), ('summoned', 2), ('distressing', 2), ('holiday', 2), ('cure', 2), ('finishing', 2), ('wealthy', 2), ('hinted', 2), ('guardian', 2), ('fashioned', 2), ('canal', 2), ('yew', 2), ('arbour', 2), ('remains', 2), ('colicky', 2), ('gout', 2), ('hesitatingly', 2), ('pall', 2), ('mall', 2), ('identify', 2), ('stayed', 2), ('perhaps—but', 2), ('impetuous', 2), ('innocent', 2), ('uniform', 2), ('gossip', 2), ('goodwill', 2), ('contrition', 2), ('relying', 2), ('intreat', 2), ('positively', 2), ('refusing', 2), ('safe.', 2), ('_him_.', 2), ('others.', 2), ('salutation', 2), ('tending', 2), ('heavily', 2), ('guardianship', 2), ('judging', 2), ('inexperienced', 2), ('restrain', 2), ('gloom', 2), ('search', 2), ('extravagance', 2), ('fallen', 2), ('doted', 2), ('stage', 2), ('discharged', 2), ('bath', 2), ('incivility', 2), ('creditable', 2), ('dissipated', 2), ('recital', 2), ('easier', 2), ('irritated', 2), ('answering', 2), ('origin', 2), ('retirement', 2), ('doomed', 2), ('scoundrel', 2), ('dog', 2), ('puppy', 2), ('worried', 2), ('vent', 2), ('soften', 2), ('oblige', 2), ('_these_', 2), ('informing', 2), ('_still_', 2), ('dr.', 2), ('davy', 2), ('shilling', 2), ('affectedly', 2), ('interposed', 2), ('silenced', 2), ('plagued', 2), ('expressly', 2), ('tend', 2), ('quicker', 2), ('deciding', 2), ('toothpick-cases', 2), ('inspection', 2), ('named', 2), ('respectful', 2), ('bespeak', 2), ('pretence', 2), ('where.', 2), ('eyed', 2), ('narrowly', 2), ('sake.', 2), ('undecided', 2), ('prior', 2), ('remarkable', 2), ('adjoining', 2), ('flower-garden', 2), ('provocation', 2), ('descend', 2), ('save', 2), ('conscientious', 2), ('prosperity', 2), ('thin', 2), ('likelihood', 2), ('easiest', 2), ('well-behaved', 2), ('suit', 2), ('deed', 2), ('utter', 2), ('irrepressible', 2), ('envy', 2), ('aspect', 2), ('contraction', 2), ('mortify', 2), ('comparative', 2), ('handed', 2), ('beautifully', 2), ('provoked', 2), ('retort', 2), ('unhappy.', 2), ('hiding', 2), ('salt', 2), ('retained', 2), ('perplexed', 2), ('creation', 2), ('_ought_', 2), ('derive', 2), ('affable', 2), ('affability', 2), ('—did', 2), ('—replied', 2), ('violent.', 2), ('fetching', 2), ('revenge', 2), ('—we', 2), ('longest', 2), ('expose', 2), ('influenced', 2), ('_their_', 2), ('satirical', 2), ('detail', 2), ('infant', 2), ('befell', 2), ('mode', 2), ('price', 2), ('per', 2), ('shoe', 2), ('performer', 2), ('unrestrained', 2), ('group', 2), ('familiarly', 2), ('mixing', 2), ('reside', 2), ('dawlish.', 2), ('protest', 2), ('courtland', 2), ('managed', 2), ('refreshment', 2), ('precisely', 2), ('spacious', 2), ('requisite', 2), ('uncommon', 2), ('malice', 2), ('fourth', 2), ('gum', 2), ('—there', 2), ('carpet-work', 2), ('dressing-room', 2), ('bitterly', 2), ('—to', 2), ('—have', 2), ('essential', 2), ('bewitching', 2), ('comprehension.', 2), ('—because', 2), ('frame', 2), ('ingratitude', 2), ('harmless', 2), ('planning', 2), ('—such', 2), ('prepossession', 2), ('represented', 2), ('advancing', 2), ('deserving', 2), ('vehemence', 2), ('forgave', 2), ('kensington', 2), ('hat', 2), ('spread', 2), ('spark', 2), ('wednesday', 2), ('thursday', 2), ('friday', 2), ('interrupt', 2), ('kindly', 2), ('preferment', 2), ('persecution', 2), ('afternoon', 2), ('conclude', 2), ('comment', 2), ('there.', 2), ('overcoming', 2), ('statement', 2), ('vigorous', 2), ('sketch', 2), ('expeditiously', 2), ('intent', 2), ('conference', 2), ('rectory', 2), ('undertake', 2), ('differently', 2), ('arisen', 2), ('ordination.', 2), ('himself.', 2), ('deliberating', 2), ('preferable', 2), ('contributed', 2), ('anticipation', 2), ('congratulation', 2), ('saint', 2), ('tithe', 2), ('cow', 2), ('disliked', 2), ('tête-à-tête', 2), ('assuring', 2), ('said—', 2), ('weak', 2), ('retain', 2), ('reasoning', 2), ('gratify', 2), ('fill', 2), ('recalled', 2), ('shedding', 2), ('lingering', 2), ('prohibited', 2), ('forenoon', 2), ('lawn', 2), ('grecian', 2), ('twilight', 2), ('disinterested', 2), ('throat', 2), ('wildness', 2), ('trifled', 2), ('nursing', 2), ('examined', 2), ('restore', 2), ('putrid', 2), ('allowing', 2), ('infection', 2), ('withstood', 2), ('foreboding', 2), ('render', 2), ('prescribed', 2), ('slumber', 2), ('messenger', 2), ('resistance', 2), ('lessened', 2), ('arriving', 2), ('darling', 2), ('noon', 2), ('injunction', 2), ('breath', 2), ('surpassing', 2), ('lobby', 2), ('—be', 2), ('marlborough', 2), ('avarice', 2), ('—here', 2), ('impartial', 2), ('libertine', 2), ('wanton', 2), ('morality', 2), ('was—in', 2), ('dagger', 2), ('hear.', 2), ('dissipation', 2), ('villain', 2), ('inducement', 2), ('sophia', 2), ('haste', 2), ('original', 2), ('torn', 2), ('joyful', 2), ('harshly', 2), ('unthought', 2), ('two.', 2), ('embellishment', 2), ('—could', 2), ('pour', 2), ('pale', 2), ('watchful', 2), ('self-evident', 2), ('eventually', 2), ('rested', 2), ('containing', 2), ('bearing', 2), ('feebleness', 2), ('production', 2), ('_always_', 2), ('easy.', 2), ('autumn', 2), ('wronged', 2), ('grounded', 2), ('repentance', 2), ('trembled', 2), ('slowly', 2), ('replace', 2), ('desert', 2), ('frugality', 2), ('rank', 2), ('folly.', 2), ('tidings', 2), ('voluntary', 2), ('bide', 2), ('reality', 2), ('mediation', 2), ('consequently', 2), ('manager', 2), ('experiencing', 2), ('contracted', 2), ('unnatural', 2), ('—saw', 2), ('calculate', 2), ('reconciliation', 2), ('annihilation', 2), ('privately', 2), ('disagreement', 2), ('--', 2), ('owns', 2), ('concept', 2), ('registered', 2), ('research', 2), ('printed', 2), ('redistribution', 2), ('available', 2), ('1', 2), ('redistributing', 2), ('intellectual', 2), ('1.c', 2), ('1.e', 2), ('domain', 2), ('based', 2), ('reference', 2), ('prominently', 2), ('contain', 2), ('vanilla', 2), ('ascii', 2), ('specified', 2), ('physical', 2), ('accordance', 2), ('90', 2), ('employee', 2), ('lieu', 2), ('electronically', 2), ('c', 2), ('widest', 2), ('exempt', 2), ('federal', 2), ('email', 2), ('$', 2), ('solicit', 2), ('www.gutenberg.org/donate', 2), ('\ufeffthe', 1), ('title', 1), ('1994', 1), ('#', 1), ('161', 1), ('16', 1), ('2021', 1), ('english', 1), ('encoding', 1), ('utf-8', 1), ('sharon', 1), ('partridge', 1), ('proofreading', 1), ('correction', 1), ('etext', 1), ('1811', 1), ('v', 1), ('x', 1), ('l', 1), ('inheritor', 1), ('bequeath', 1), ('relish', 1), ('devolved', 1), ('inheriting', 1), ('moiety', 1), ('life-interest', 1), ('bequest', 1), ('sale', 1), ('articulation', 1), ('economically', 1), ('tardy', 1), ('survived', 1), ('urgency', 1), ('prudently', 1), ('caricature', 1), ('—more', 1), ('narrow-minded', 1), ('warmed', 1), ('inconvenience.', 1), ('successively', 1), ('funeral', 1), ('dispute', 1), ('decease', 1), ('indelicacy', 1), ('keen', 1), ('whomsoever', 1), ('acutely', 1), ('qualified', 1), ('counsellor', 1), ('afflicted', 1), ('strive', 1), ('good-humored', 1), ('imbibed', 1), ('romance', 1), ('thirteen', 1), ('installed', 1), ('degraded', 1), ('alloy', 1), ('impoverishing', 1), ('daughters.', 1), ('light-headed', 1), ('child.', 1), ('stipulate', 1), ('_let_', 1), ('boy—', 1), ('addition.', 1), ('would.', 1), ('diminished', 1), ('half.—five', 1), ('_really_', 1), ('is—only', 1), ('more.', 1), ('certainly—and', 1), ('death—a', 1), ('pounds.', 1), ('them—something', 1), ('mean.—my', 1), ('comfortable.', 1), ('in.', 1), ('purchase.', 1), ('healthy', 1), ('clogged', 1), ('superannuated', 1), ('amazing', 1), ('independence.', 1), ('bind', 1), ('inconvenient', 1), ('expenses.', 1), ('enlarge', 1), ('sixpence', 1), ('discharging', 1), ('father.', 1), ('fish', 1), ('cheap', 1), ('something.', 1), ('fulfil', 1), ('then.', 1), ('belongs', 1), ('_them_.', 1), ('indecorous', 1), ('neighbourly', 1), ('indefatigable', 1), ('steadier', 1), ('earthly', 1), ('7000£', 1), ('gentleman-like', 1), ('repressed', 1), ('uninfluenced', 1), ('asunder', 1), ('distinguished—as—they', 1), ('political', 1), ('centered', 1), ('forcibly', 1), ('implies', 1), ('militated', 1), ('uninteresting', 1), ('happy.', 1), ('yet—he', 1), ('man—there', 1), ('wanting—his', 1), ('connoisseur', 1), ('coincide', 1), ('impenetrable', 1), ('prose', 1), ('cowper.', 1), ('charm.', 1), ('destiny', 1), ('drawing.', 1), ('innate', 1), ('right.', 1), ('worthy', 1), ('amiable.', 1), ('warmly.', 1), ('literature', 1), ('next—that', 1), ('him—that', 1), ('indignation—', 1), ('suspicion—the', 1), ('little—scarcely', 1), ('rank.', 1), ('outstripped', 1), ('stimulated', 1), ('prosperous', 1), ('denote', 1), ('unpromising', 1), ('inquietude', 1), ('forbade', 1), ('aggrandizement', 1), ('uncivil', 1), ('_draw', 1), ('timed', 1), ('deliberation', 1), ('scale', 1), ('vicinity', 1), ('v.', 1), ('dispatched', 1), ('incommode', 1), ('inhabiting', 1), ('civilly', 1), ('replying', 1), ('devonshire.—edward', 1), ('northward', 1), ('disapprobation', 1), ('conscientiously', 1), ('impracticable.—the', 1), ('consisted', 1), ('package', 1), ('depart', 1), ('furnished', 1), ('done.—the', 1), ('disposing', 1), ('undoubtingly', 1), ('feebly', 1), ('drift', 1), ('purse', 1), ('calculation', 1), ('ye', 1), ('well-known', 1), ('same.—no', 1), ('branch', 1), ('fertile', 1), ('wooded', 1), ('pasture', 1), ('demesne', 1), ('wicket', 1), ('tiled', 1), ('honeysuckle', 1), ('bed-rooms', 1), ('cheered', 1), ('recommending', 1), ('cultivated', 1), ('woody', 1), ('terminated', 1), ('branched', 1), ('steepest', 1), ('ourselves', 1), ('parlor', 1), ('remainder', 1), ('bed-chamber', 1), ('widen', 1), ('before-hand', 1), ('accordingly.', 1), ('saving', 1), ('arranging', 1), ('endeavoring', 1), ('unpacked', 1), ('affixed', 1), ('landlord', 1), ('sociable', 1), ('fruit', 1), ('denoting', 1), ('detract', 1), ('chatty', 1), ('differed', 1), ('screened', 1), ('projection', 1), ('hospitality', 1), ('dissimilar', 1), ('unconnected', 1), ('compass', 1), ('hunted', 1), ('resource', 1), ('breeding', 1), ('piqued', 1), ('collecting', 1), ('noisier', 1), ('juvenile', 1), ('ham', 1), ('chicken', 1), ('unsatiable', 1), ('manor', 1), ('moonlight', 1), ('fat', 1), ('witty', 1), ('pretended', 1), ('adapted', 1), ('repulsive', 1), ('boisterous', 1), ('tore', 1), ('unlocked', 1), ('lain', 1), ('position', 1), ('celebrated', 1), ('applauded', 1), ('sing', 1), ('forfeited', 1), ('shameless', 1), ('amounted', 1), ('ecstatic', 1), ('sympathize', 1), ('estimable', 1), ('contrasted', 1), ('insensibility', 1), ('ample', 1), ('respectably', 1), ('zealously', 1), ('decisively', 1), ('accusation', 1), ('miracle', 1), ('forty.', 1), ('losing', 1), ('matrimony.', 1), ('matrimony', 1), ('dooming', 1), ('rheumatic', 1), ('shoulders.', 1), ('ache', 1), ('cramp', 1), ('afflict', 1), ('feeble.', 1), ('despised', 1), ('flushed', 1), ('must.', 1), ('grate', 1), ('bedchamber', 1), ('unaccountably', 1), ('dejected', 1), ('familiar', 1), ('classed', 1), ('mansion', 1), ('reminding', 1), ('possessor', 1), ('stirred', 1), ('abounded', 1), ('alternative', 1), ('memorable', 1), ('sunshine', 1), ('tempting', 1), ('pencil', 1), ('threatening', 1), ('blue', 1), ('gale', 1), ('south-westerly', 1), ('—margaret', 1), ('hours.', 1), ('resisting', 1), ('chagrined', 1), ('exigence', 1), ('speed', 1), ('apologized', 1), ('gracefulness', 1), ('theme', 1), ('gallantry', 1), ('lifting', 1), ('hero', 1), ('shooting-jacket', 1), ('sprained', 1), ('ankle', 1), ('thursday.', 1), ('indignantly', 1), ('black', 1), ('bitch', 1), ('inherit', 1), ('adding', 1), ('care.', 1), ('incommoded', 1), ('_catching', 1), ('him_', 1), ('ineligible.', 1), ('hop', 1), ('danced', 1), ('down.', 1), ('covert.', 1), ('fatigue.', 1), ('abhor', 1), ('odious', 1), ('construction', 1), ('deemed', 1), ('ingenuity.', 1), ('smitten', 1), ('spraining', 1), ('ankles.', 1), ('x.', 1), ('preserver', 1), ('precision', 1), ('styled', 1), ('cant', 1), ('outraged', 1), ('happens', 1), ('transparency', 1), ('passionately', 1), ('largest', 1), ('conformity', 1), ('idolized', 1), ('each—or', 1), ('acquiesced', 1), ('long-established', 1), ('scott', 1), ('pope', 1), ('exhausted', 1), ('ask.', 1), ('scanty', 1), ('deceitful—had', 1), ('elinor—she', 1), ('jest', 1), ('friend.', 1), ('irksome', 1), ('sacrificing', 1), ('undivided', 1), ('slighting', 1), ('desperation', 1), ('seized', 1), ('rash', 1), ('delineated', 1), ('brighter', 1), ('speculative', 1), ('incurred', 1), ('annexed', 1), ('successful', 1), ('him—in', 1), ('mild', 1), ('gloominess', 1), ('undervalue', 1), ('remembers', 1), ('to.', 1), ('patronised', 1), ('indignity', 1), ('unjust.', 1), ('saucy.', 1), ('nature.', 1), ('contemptuously', 1), ('climate', 1), ('mosquito', 1), ('troublesome.', 1), ('informed.', 1), ('nabob', 1), ('mohrs', 1), ('palanquins.', 1), ('brilliancy', 1), ('expression.', 1), ('mass', 1), ('possessing', 1), ('disarm', 1), ('mare', 1), ('occupy', 1), ('execution', 1), ('witnessing', 1), ('excellency', 1), ('marking', 1), ('aim', 1), ('illaudable', 1), ('partner', 1), ('everlasting', 1), ('talker', 1), ('history', 1), ('sisterly', 1), ('attachments.', 1), ('romantic.', 1), ('exist.', 1), ('contrives', 1), ('basis', 1), ('define', 1), ('herself.', 1), ('opinions.', 1), ('system', 1), ('nought', 1), ('advantage.', 1), ('resumed', 1), ('criminal', 1), ('minutia', 1), ('pardonable.', 1), ('sentiments—no', 1), ('change—from', 1), ('circumstances—', 1), ('connect', 1), ('disastrous', 1), ('bred', 1), ('arrives', 1), ('gallop', 1), ('downs.', 1), ('awaken', 1), ('dream', 1), ('_him', 1), ('formed.', 1), ('appeal', 1), ('representing', 1), ('faithful', 1), ('forego', 1), ('queen', 1), ('mab', 1), ('overheard', 1), ('clearer', 1), ('high-church', 1), ('uncle.', 1), ('hair.', 1), ('_his_.', 1), ('whispering', 1), ('tumbled', 1), ('pocket-book.', 1), ('stated', 1), ('unison', 1), ('attacked', 1), ('curate', 1), ('invention', 1), ('existence.', 1), ('inelegant', 1), ('mindful', 1), ('amidst', 1), ('brother-in-law', 1), ('proprietor', 1), ('sail', 1), ('undertaking', 1), ('dispersing', 1), ('suddenly.', 1), ('saying.', 1), ('mean.', 1), ('john.—', 1), ('hour.', 1), ('writing.', 1), ('newton', 1), ('conveniently', 1), ('pry', 1), ('mind.', 1), ('power.', 1), ('about.', 1), ('ladies.', 1), ('fortune.', 1), ('consultation', 1), ('leant', 1), ('_where_', 1), ('new-furnished', 1), ('propose', 1), ('enquired', 1), ('pleasanter', 1), ('pleasantness', 1), ('evince', 1), ('propriety.', 1), ('pleasure.', 1), ('and—', 1), ('you.—there', 1), ('bowling-green', 1), ('newly', 1), ('up—a', 1), ('pleasantest', 1), ('summer-rooms', 1), ('termination', 1), ('wonderer', 1), ('befallen', 1), ('wager', 1), ('bargain.', 1), ('speculation', 1), ('incompatible', 1), ('contradictory', 1), ('ending', 1), ('happening', 1), ('inch', 1), ('regarded.', 1), ('local', 1), ('unemployed', 1), ('uselessly', 1), ('pull', 1), ('smoke', 1), ('broader', 1), ('endear', 1), ('share.', 1), ('denoted', 1), ('inhabited', 1), ('prescience', 1), ('degrade', 1), ('afford.', 1), ('extend', 1), ('pretext', 1), ('foresight', 1), ('noticing', 1), ('partook', 1), ('over-powered', 1), ('entered—', 1), ('ill—for', 1), ('exercised', 1), ('exhilaration', 1), ('twelvemonth.', 1), ('inclination.', 1), ('confusedly', 1), ('nature—that—i', 1), ('myself—', 1), ('torment', 1), ('enjoy.', 1), ('indubitable', 1), ('feeding', 1), ('notice—gone', 1), ('—something', 1), ('quarrelled', 1), ('can—it', 1), ('disapproves', 1), ('transact', 1), ('dismiss', 1), ('cavil', 1), ('answer.', 1), ('blameable', 1), ('inadvertence', 1), ('depressed', 1), ('unavoidably', 1), ('practiced', 1), ('happy—and', 1), ('acquitted.', 1), ('_are_', 1), ('smith—and', 1), ('accuse', 1), ('incautiousness.', 1), ('outweighs', 1), ('fainter', 1), ('mighty', 1), ('consistent', 1), ('consistent.', 1), ('independently', 1), ('prosperously', 1), ('advisable.', 1), ('swollen', 1), ('risen', 1), ('headache', 1), ('potent', 1), ('oftenest', 1), ('singing', 1), ('hands.', 1), ('mystery', 1), ('especially.', 1), ('inflict', 1), ('unacknowledged', 1), ('dearly', 1), ('revealment', 1), ('direct.', 1), ('overstrained', 1), ('witticism', 1), ('shakespeare', 1), ('hamlet', 1), ('happens.', 1), ('no—nor', 1), ('stole', 1), ('climbing', 1), ('disapproved', 1), ('seclusion', 1), ('_mind_', 1), ('controlled', 1), ('stretch', 1), ('riding', 1), ('air.', 1), ('particularity', 1), ('quickened', 1), ('dispersed', 1), ('continuation', 1), ('thickly', 1), ('transporting', 1), ('shower', 1), ('inspired', 1), ('nuisance', 1), ('swept', 1), ('sight.', 1), ('_sometimes_', 1), ('are.', 1), ('lane.', 1), ('situated.', 1), ('friendliest', 1), ('directing', 1), ('extorting', 1), ('regulate', 1), ('extending', 1), ('reanimate', 1), ('orator', 1), ('fame', 1), ('famous', 1), ('matter.', 1), ('eloquence.', 1), ('moderate.', 1), ('so.', 1), ('concerned.', 1), ('external', 1), ('_that_.', 1), ('_two_', 1), ('end.', 1), ('describing', 1), ('accurately', 1), ('edward—', 1), ('hunt.', 1), ('novel', 1), ('apiece', 1), ('insufficiency', 1), ('wealth.', 1), ('help.', 1), ('vanish.', 1), ('bookseller', 1), ('music-sellers', 1), ('print-shops', 1), ('you—and', 1), ('—thomson', 1), ('scott—she', 1), ('saucy', 1), ('disputes.', 1), ('edward—whether', 1), ('spent—some', 1), ('least—my', 1), ('cash', 1), ('books.', 1), ('bulk', 1), ('heirs.', 1), ('ablest', 1), ('life—your', 1), ('presume', 1), ('steadfast', 1), ('altered.', 1), ('girl—she', 1), ('does—sometimes', 1), ('animation—but', 1), ('merry.', 1), ('detected', 1), ('ingenious', 1), ('oneself', 1), ('deliberate', 1), ('judge.', 1), ('subservient', 1), ('confound', 1), ('conform', 1), ('foolishly', 1), ('negligent', 1), ('awkwardness', 1), ('shy.', 1), ('started—', 1), ('very.', 1), ('fullest', 1), ('extent—and', 1), ('inspiring', 1), ('reservedness', 1), ('intimated', 1), ('breakfast-room', 1), ('upstairs', 1), ('presently.', 1), ('minutely', 1), ('marianne—remember', 1), ('surface', 1), ('uncouth', 1), ('irregular', 1), ('rugged', 1), ('indistinct', 1), ('hazy', 1), ('country—the', 1), ('snug—with', 1), ('meadow', 1), ('scattered', 1), ('unites', 1), ('utility—and', 1), ('rock', 1), ('promontory', 1), ('moss', 1), ('brush', 1), ('picturesque.', 1), ('discrimination', 1), ('own.', 1), ('scenery', 1), ('defined', 1), ('worn', 1), ('meaning.', 1), ('blasted', 1), ('flourishing', 1), ('tattered', 1), ('nettle', 1), ('thistle', 1), ('heath', 1), ('blossom', 1), ('farm-house', 1), ('watch-tower—and', 1), ('troop', 1), ('tidy', 1), ('villager', 1), ('bandit', 1), ('plait', 1), ('conspicuous', 1), ('darker.', 1), ('inconsiderately', 1), ('felt—but', 1), ('surpassed', 1), ('instantaneously', 1), ('theft', 1), ('contrivance', 1), ('henceforward', 1), ('newness', 1), ('significant', 1), ('entertainment', 1), ('contribute', 1), ('alone—and', 1), ('party.', 1), ('whitakers', 1), ('sure.—what', 1), ('blushing', 1), ('guessing', 1), ('certainly.', 1), ('hunts.', 1), ('archness', 1), ('self-mortification', 1), ('unequal', 1), ('improved—he', 1), ('environs—never', 1), ('sigh—declared', 1), ('disengaged—even', 1), ('them—but', 1), ('quickly—he', 1), ('detested', 1), ('painfully', 1), ('extorted', 1), ('consistency', 1), ('shortness', 1), ('temporizing', 1), ('well-established', 1), ('grievance', 1), ('reformed', 1), ('renewal', 1), ('it—you', 1), ('least—you', 1), ('helpless', 1), ('army', 1), ('gig', 1), ('abstruse', 1), ('navy', 1), ('since.', 1), ('trade', 1), ('columella', 1), ('thing.', 1), ('patience—or', 1), ('fascinating', 1), ('ere', 1), ('defy', 1), ('desponding', 1), ('judiciously', 1), ('augment', 1), ('meritorious', 1), ('loving', 1), ('shutting', 1), ('forbidden', 1), ('chained', 1), ('closing', 1), ('knocking', 1), ('turf', 1), ('casement', 1), ('hush', 1), ('open.', 1), ('hallooing', 1), ('plump', 1), ('prepossessing', 1), ('self-consequence', 1), ('briefly', 1), ('surveying', 1), ('meantime', 1), ('nodding', 1), ('pointing', 1), ('ushered', 1), ('stared', 1), ('pitched', 1), ('ceiling', 1), ('oftener', 1), ('satisfied—the', 1), ('ours', 1), ('hanover-square', 1), ('chaperon', 1), ('public.', 1), ('room—', 1), ('bowing', 1), ('complaining', 1), ('billiard', 1), ('weather.', 1), ('today.', 1), ('place.', 1), ('vile', 1), ('palmer—', 1), ('suppose.', 1), ('gilbert', 1), ('last.', 1), ('ceremony.', 1), ('ill-bred.', 1), ('whip', 1), ('abused', 1), ('humour.', 1), ('genuinely', 1), ('unaffectedly', 1), ('soured', 1), ('bias', 1), ('silly', 1), ('woman—but', 1), ('blunder', 1), ('establishing', 1), ('ill-breeding', 1), ('—my', 1), ('sneer—', 1), ('view.', 1), ('canvassing', 1), ('election', 1), ('fatiguing', 1), ('—won', 1), ('m.p.—but', 1), ('continued—', 1), ('shocking.', 1), ('irrational', 1), ('palm', 1), ('droll—all', 1), ('agreeable.', 1), ('well—i', 1), ('cleveland.—i', 1), ('decline', 1), ('changing', 1), ('gathered', 1), ('weymouth', 1), ('match.', 1), ('did.—i', 1), ('monday', 1), ('bond-street', 1), ('directly.', 1), ('lately.', 1), ('oh—he', 1), ('pleasing.', 1), ('body.', 1), ('night.', 1), ('charlotte.—', 1), ('accounts.', 1), ('objected', 1), ('entertain', 1), ('unsuitableness', 1), ('invite', 1), ('—whose', 1), ('philosophy', 1), ('ungenteel', 1), ('unfashionable', 1), ('doatingly', 1), ('benevolent', 1), ('philanthropic', 1), ('he—', 1), ('come—i', 1), ('plaything', 1), ('related.', 1), ('boasting', 1), ('smartness', 1), ('judicious', 1), ('extolling', 1), ('humouring', 1), ('whim', 1), ('importunate', 1), ('foible', 1), ('rapacious', 1), ('credulous', 1), ('exorbitant', 1), ('swallow', 1), ('endurance', 1), ('encroachment', 1), ('mischievous', 1), ('sash', 1), ('untied', 1), ('work-bags', 1), ('knife', 1), ('composedly', 1), ('claiming', 1), ('window—', 1), ('monkey', 1), ('tricks.', 1), ('pinching', 1), ('playful', 1), ('caressing', 1), ('quiet—never', 1), ('embrace', 1), ('scratching', 1), ('outdone', 1), ('consternation', 1), ('surpass', 1), ('emergency', 1), ('assuage', 1), ('sufferer', 1), ('bathed', 1), ('lavender-water', 1), ('stuffed', 1), ('sugar', 1), ('plum', 1), ('sobbed', 1), ('lustily', 1), ('kicked', 1), ('soothings', 1), ('ineffectual', 1), ('apricot', 1), ('marmalade', 1), ('successfully', 1), ('bruised', 1), ('scratch', 1), ('accident.', 1), ('reality.', 1), ('trivial', 1), ('eclat', 1), ('life.—i', 1), ('doat', 1), ('distractedly', 1), ('quiet.', 1), ('abhorrence.', 1), ('sussex.', 1), ('estimate', 1), ('always.', 1), ('lief', 1), ('nasty', 1), ('clerk', 1), ('simpson', 1), ('beaux—they', 1), ('blinded', 1), ('shrewd', 1), ('artlessness', 1), ('niggardly', 1), ('dealt', 1), ('consists', 1), ('twill', 1), ('proclaiming', 1), ('newer', 1), ('significancy', 1), ('nod', 1), ('wink', 1), ('f—had', 1), ('countless', 1), ('wittiest', 1), ('alphabet', 1), ('inquisitiveness', 1), ('secret.', 1), ('petty', 1), ('disadvantage.—but', 1), ('unavailing', 1), ('toleration', 1), ('vulgarity', 1), ('striving', 1), ('amusing', 1), ('illiterate', 1), ('mental', 1), ('rectitude', 1), ('equality', 1), ('toward', 1), ('valueless', 1), ('cottage—', 1), ('reasons—i', 1), ('impertinent.', 1), ('curious', 1), ('manage', 1), ('present—but', 1), ('come—how', 1), ('herself—when', 1), ('connected.', 1), ('amiably', 1), ('bashful', 1), ('ferrars—i', 1), ('brother.', 1), ('disbelief', 1), ('divine', 1), ('varied', 1), ('incredulity', 1), ('swoon', 1), ('sisters.', 1), ('cautiously', 1), ('solicitude—', 1), ('yes.', 1), ('while.', 1), ('pupil', 1), ('falsehood—', 1), ('really—i', 1), ('depends.', 1), ('_occasion_', 1), ('silent.—elinor', 1), ('for.—i', 1), ('detecting', 1), ('likeness', 1), ('opportunity.', 1), ('safety.', 1), ('seldom—we', 1), ('broke.', 1), ('sometimes.', 1), ('wiping', 1), ('break', 1), ('entirely.', 1), ('too—so', 1), ('me—i', 1), ('sometime', 1), ('low-spirited', 1), ('ill.', 1), ('plymouth.', 1), ('arrived.', 1), ('carelessly', 1), ('sheet', 1), ('possible.', 1), ('subsist', 1), ('overcome—her', 1), ('struggled', 1), ('confounded', 1), ('answerable', 1), ('inventing', 1), ('asserted', 1), ('indisputable', 1), ('dissatisfaction', 1), ('evidence', 1), ('condemning', 1), ('ill-treatment', 1), ('herself.—her', 1), ('dupe', 1), ('illusion', 1), ('softener', 1), ('defended', 1), ('regain', 1), ('her—illiterate', 1), ('infatuation', 1), ('years—years', 1), ('frivolous', 1), ('supposition', 1), ('alienated', 1), ('guard', 1), ('extinction', 1), ('mourning', 1), ('entrusted', 1), ('aggravation', 1), ('unshaken', 1), ('poignant', 1), ('renewing', 1), ('venturing', 1), ('confessedly', 1), ('joking', 1), ('disclosure', 1), ('mistrust', 1), ('joining', 1), ('club', 1), ('foresaw', 1), ('fairer', 1), ('compliant', 1), ('frightful', 1), ('novelty', 1), ('candlelight', 1), ('supper.', 1), ('eyes—will', 1), ('candle', 1), ('reseated', 1), ('spoilt', 1), ('casino', 1), ('_me_—you', 1), ('touched', 1), ('tuned.', 1), ('toned', 1), ('heard.', 1), ('rolling', 1), ('labour', 1), ('singly', 1), ('profited', 1), ('forwarding', 1), ('wrapped', 1), ('undeserving', 1), ('apologize', 1), ('ice', 1), ('monday.', 1), ('quarrelling', 1), ('mother.', 1), ('madness', 1), ('indeed.', 1), ('test', 1), ('lowness', 1), ('deceived.', 1), ('impose', 1), ('involve', 1), ('owning', 1), ('headstrong', 1), ('frightens', 1), ('measures.', 1), ('disinterestedness', 1), ('reason.', 1), ('all—i', 1), ('brother—silly', 1), ('coxcomb.', 1), ('coxcombs.', 1), ('modestest', 1), ('prettiest', 1), ('likes.', 1), ('angrily', 1), ('powerful', 1), ('concerto', 1), ('prefer', 1), ('dashwood—_that_', 1), ('orders.', 1), ('little.', 1), ('dissolving', 1), ('beset', 1), ('wishes.', 1), ('effectually', 1), ('frighten', 1), ('pique', 1), ('stress', 1), ('biased', 1), ('having.', 1), ('partly', 1), ('duration', 1), ('brightened', 1), ('confidential', 1), ('induce', 1), ('celebration', 1), ('festival', 1), ('proclaim', 1), ('spending', 1), ('habitation', 1), ('traded', 1), ('portman', 1), ('unexpectedly', 1), ('alleged', 1), ('refusal', 1), ('ve', 1), ('merrier', 1), ('poking', 1), ('bargain', 1), ('absence—oh', 1), ('struggle.', 1), ('promote—she', 1), ('cautiousness', 1), ('accrue', 1), ('motherly', 1), ('estranged', 1), ('obviating', 1), ('impediment', 1), ('consequence.', 1), ('separately', 1), ('effort.', 1), ('guidance', 1), ('abandoned', 1), ('abridgement', 1), ('_both_', 1), ('nonsensical', 1), ('anticipate', 1), ('family.', 1), ('lifted', 1), ('counteracted', 1), ('exhilarated', 1), ('perturbation', 1), ('restorative', 1), ('score', 1), ('eternal', 1), ('station', 1), ('unsuited', 1), ('overlooked', 1), ('beamed', 1), ('blank', 1), ('nature—she', 1), ('banish', 1), ('companionableness', 1), ('wrapt', 1), ('exclusively', 1), ('extort', 1), ('preferring', 1), ('salmon', 1), ('cod', 1), ('boiled', 1), ('fowl', 1), ('veal', 1), ('cutlet', 1), ('handsomely', 1), ('mantelpiece', 1), ('mysteriously', 1), ('sealed', 1), ('w', 1), ('ringing', 1), ('neighbouring', 1), ('exclaiming', 1), ('unnoticed', 1), ('demanded', 1), ('decently', 1), ('caused', 1), ('you—sorry', 1), ('before—beg', 1), ('cartwright', 1), ('bee', 1), ('conjure', 1), ('dining.', 1), ('commissioned', 1), ('see—that', 1), ('too—which', 1), ('handsome—worse', 1), ('friends.', 1), ('agreeing', 1), ('abstracted', 1), ('dawdled', 1), ('sorrowful', 1), ('parcel', 1), ('negative', 1), ('permitting', 1), ('mysterious', 1), ('interference', 1), ('borne.', 1), ('backwards', 1), ('long-expected', 1), ('country.', 1), ('longer—nay', 1), ('freeze', 1), ('week.', 1), ('eluded', 1), ('colder', 1), ('muff', 1), ('afternoon.', 1), ('persevered', 1), ('excepting', 1), ('occurrence', 1), ('strengthening', 1), ('mistress.', 1), ('little—not', 1), ('much.', 1), ('_you_—you', 1), ('tell.', 1), ('nothing.', 1), ('requesting', 1), ('unpremeditated', 1), ('reputation', 1), ('risking', 1), ('nine', 1), ('violin', 1), ('side-board', 1), ('collation', 1), ('recognition', 1), ('nodded', 1), ('enough—_he_', 1), ('there—and', 1), ('sauntered', 1), ('invited.', 1), ('awakening', 1), ('morrow', 1), ('plea', 1), ('known.', 1), ('many—by', 1), ('debated', 1), ('shield', 1), ('—took', 1), ('altering', 1), ('destination', 1), ('string', 1), ('alighted', 1), ('splendidly', 1), ('insufferably', 1), ('tribute', 1), ('curtsying', 1), ('mingle', 1), ('heat', 1), ('cassino', 1), ('unobserved', 1), ('there—he', 1), ('there—oh', 1), ('betray', 1), ('yet.', 1), ('shake', 1), ('struggling', 1), ('wildest', 1), ('sure—some', 1), ('again—must', 1), ('instantly.—i', 1), ('rest—i', 1), ('explained—some', 1), ('incessantly', 1), ('hartshorn', 1), ('undressed', 1), ('investigation', 1), ('await', 1), ('deepest', 1), ('_esteem_', 1), ('embitter', 1), ('final', 1), ('willoughby—in', 1), ('irreconcilable', 1), ('kneeling', 1), ('window-seats', 1), ('permit', 1), ('ask—', 1), ('sooth', 1), ('tranquilize', 1), ('irritability', 1), ('wander', 1), ('death-like', 1), ('paleness', 1), ('tremour', 1), ('worsted', 1), ('rug', 1), ('imply', 1), ('charlotte.', 1), ('choked', 1), ('covering', 1), ('unintentional', 1), ('obey', 1), ('obedient', 1), ('feeling—so', 1), ('impudently', 1), ('whatever—a', 1), ('proclaimed', 1), ('villainy', 1), ('perusal', 1), ('disengagement', 1), ('depravity', 1), ('unread', 1), ('unreasonably', 1), ('contributing', 1), ('floor', 1), ('giddy', 1), ('food', 1), ('stomach', 1), ('faintness', 1), ('exclaim', 1), ('torrent', 1), ('unresisted', 1), ('suffer.', 1), ('are—you', 1), ('you—what', 1), ('grief.', 1), ('state.', 1), ('period—if', 1), ('dreadful.', 1), ('yes—no—never', 1), ('talk.', 1), ('hither', 1), ('to-night', 1), ('repulsed', 1), ('insulting', 1), ('misinformed', 1), ('insincere', 1), ('hazarded', 1), ('warranted', 1), ('covenant', 1), ('same.', 1), ('elinor—for', 1), ('blackest', 1), ('again—his', 1), ('distress—can', 1), ('cruelly', 1), ('instigated', 1), ('leagued', 1), ('writes—whoever', 1), ('be—or', 1), ('bely', 1), ('whoever', 1), ('detestably', 1), ('enemy', 1), ('malignant', 1), ('laudable', 1), ('resists', 1), ('malevolence.', 1), ('like—may', 1), ('mortification—but', 1), ('feel—i', 1), ('wretched—and', 1), ('can.', 1), ('mine—', 1), ('miserable—oh', 1), ('discerning', 1), ('shuddering', 1), ('cruel—nothing', 1), ('me—ought', 1), ('clearing', 1), ('barbarously', 1), ('—elinor', 1), ('woman—who', 1), ('premeditated', 1), ('—whom', 1), ('one—he', 1), ('sake—and', 1), ('palmers—how', 1), ('constrained', 1), ('soon—a', 1), ('abominably', 1), ('plague', 1), ('admirer', 1), ('parry', 1), ('sandersons', 1), ('tiptoe', 1), ('adjusting', 1), ('well-meant', 1), ('abstraction', 1), ('fondness', 1), ('tempted', 1), ('sweetmeat', 1), ('olive', 1), ('cherry', 1), ('oddest', 1), ('then—miss', 1), ('her—is', 1), ('stylish', 1), ('aunt', 1), ('biddy', 1), ('henshawe', 1), ('fly', 1), ('grows', 1), ('reform', 1), ('now-a-days', 1), ('age.', 1), ('walker', 1), ('agree.', 1), ('moment—', 1), ('moan', 1), ('by-and-by', 1), ('joked', 1), ('naming', 1), ('allusion', 1), ('blown', 1), ('willoughby—he', 1), ('enforcement', 1), ('hilarity', 1), ('ill-wind', 1), ('mid-summer', 1), ('chuckle', 1), ('drawback—except', 1), ('love-child', 1), ('prenticed', 1), ('fruit-trees', 1), ('mulberry', 1), ('dove-cote', 1), ('stew-ponds', 1), ('turnpike-road', 1), ('butcher', 1), ('prettier', 1), ('meat', 1), ('mutton', 1), ('pillow', 1), ('repaired', 1), ('wine-glass', 1), ('constantia', 1), ('tasted', 1), ('compromise', 1), ('swallowed', 1), ('reflected', 1), ('healing', 1), ('tea-table', 1), ('presided', 1), ('dear.', 1), ('be—there', 1), ('think—in', 1), ('_knew_', 1), ('engaged—but', 1), ('elucidation', 1), ('unfolded', 1), ('unfathomable', 1), ('stationer', 1), ('grey—it', 1), ('secret—it', 1), ('guardian.', 1), ('explanation.', 1), ('capable—at', 1), ('sister—how', 1), ('she—', 1), ('proportionately', 1), ('hardness', 1), ('not—i', 1), ('so—she', 1), ('could.', 1), ('instantaneous', 1), ('awoke', 1), ('acquitting', 1), ('polished', 1), ('outstretched', 1), ('explanatory', 1), ('rushing', 1), ('inforce', 1), ('streamed', 1), ('passionate', 1), ('violence—a', 1), ('referring', 1), ('retreating', 1), ('esteeming', 1), ('lightly', 1), ('object—my', 1), ('wish—my', 1), ('desiring', 1), ('is—is', 1), ('comfort—not', 1), ('comfort—but', 1), ('mother—will', 1), ('regard—nothing', 1), ('useful—i', 1), ('justified—though', 1), ('_hers_', 1), ('idea—i', 1), ('narrator', 1), ('_shall_', 1), ('sighing', 1), ('diffuse.', 1), ('conversation—', 1), ('park—it', 1), ('dance—in', 1), ('resembling', 1), ('orphan', 1), ('infancy', 1), ('playfellow', 1), ('married—married', 1), ('encumbered', 1), ('nothing—but', 1), ('blindly', 1), ('eloping', 1), ('scotland', 1), ('treachery', 1), ('one—but', 1), ('lament', 1), ('regiment', 1), ('weight—was', 1), ('divorce', 1), ('—even', 1), ('suffered—', 1), ('arrive', 1), ('fruitless', 1), ('seducer', 1), ('sin', 1), ('adequate', 1), ('spunging-house', 1), ('altered—so', 1), ('faded—worn', 1), ('acute', 1), ('blooming', 1), ('healthful', 1), ('endured', 1), ('beholding', 1), ('her—but', 1), ('consumption', 1), ('was—yes', 1), ('disgraced', 1), ('dashwood—a', 1), ('this—untouched', 1), ('fourteen', 1), ('years—it', 1), ('handle', 1), ('collected—more', 1), ('concise', 1), ('fourteenth', 1), ('residing', 1), ('imprudently', 1), ('daughter—better', 1), ('obstinate', 1), ('clue', 1), ('ranging', 1), ('unconcerned', 1), ('be—could', 1), ('forwarded', 1), ('availed', 1), ('seduced', 1), ('irresolute', 1), ('sister—but', 1), ('interfering', 1), ('reclaim', 1), ('dishonorable', 1), ('usage', 1), ('doubtless', 1), ('tormented', 1), ('strengthen', 1), ('irritates', 1), ('unworthiness', 1), ('unavoidable.', 1), ('reluctantly', 1), ('punish', 1), ('abroad.', 1), ('soldier', 1), ('presumed', 1), ('lying-in', 1), ('delivery', 1), ('submissive', 1), ('seduction', 1), ('desertion', 1), ('_once_', 1), ('preyed', 1), ('brooding', 1), ('quickly', 1), ('humiliating', 1), ('afflicting', 1), ('shorten', 1), ('comprise', 1), ('cheat', 1), ('spurned', 1), ('foreseeing', 1), ('alleviation', 1), ('comforted', 1), ('militate', 1), ('carefulness', 1), ('reaped', 1), ('covert', 1), ('coachmaker', 1), ('painter', 1), ('portrait', 1), ('warehouse', 1), ('clamorous', 1), ('officious', 1), ('condolence', 1), ('assembly', 1), ('abundantly', 1), ('humiliation', 1), ('augmented', 1), ('midsummer', 1), ('mulberry-tree', 1), ('_her', 1), ('holburn', 1), ('overpowering', 1), ('emphasis', 1), ('awhile', 1), ('_told_', 1), ('_month_', 1), ('_hurry_', 1), ('amazingly', 1), ('_your', 1), ('word_.', 1), ('post-chaise', 1), ('genteelly', 1), ('did.', 1), ('simpering', 1), ('crossing', 1), ('i—i', 1), ('mine.', 1), ('talking—but', 1), ('do—the', 1), ('see.', 1), ('cessation', 1), ('hostile', 1), ('shall.', 1), ('will.', 1), ('well—', 1), ('conversation.', 1), ('_us', 1), ('word.', 1), ('governing', 1), ('yielded', 1), ('conditioned', 1), ('sackville', 1), ('negotiation', 1), ('old-fashioned', 1), ('jewel', 1), ('transacted', 1), ('ascending', 1), ('counter', 1), ('quickest', 1), ('correctness', 1), ('shape', 1), ('inventive', 1), ('comprised', 1), ('broad', 1), ('imprint', 1), ('sterling', 1), ('insignificance', 1), ('puppyism', 1), ('ivory', 1), ('pearl', 1), ('glove', 1), ('leisurely', 1), ('beast', 1), ('seal', 1), ('understand.', 1), ('express.', 1), ('duly', 1), ('dorsetshire.', 1), ('pitch', 1), ('_twice_', 1), ('_me_.', 1), ('secures', 1), ('hang', 1), ('side—in', 1), ('insurmountable—you', 1), ('universal', 1), ('—lowering', 1), ('whisper—', 1), ('_all', 1), ('parties_.', 1), ('say—your', 1), ('vouchsafe', 1), ('unlikely.', 1), ('hon', 1), ('bank-notes', 1), ('enclosure', 1), ('kingham', 1), ('gibson', 1), ('money.', 1), ('intrinsically', 1), ('worth.', 1), ('purchase-money', 1), ('banker', 1), ('loss.', 1), ('bequeathed', 1), ('repine', 1), ('undoubted', 1), ('circumstances.', 1), ('knoll', 1), ('walnut', 1), ('slope', 1), ('thorn', 1), ('patch', 1), ('brow.', 1), ('buying', 1), ('ear-rings', 1), ('cheerfuller', 1), ('dy', 1), ('leave.', 1), ('whereas', 1), ('kinder', 1), ('raises.', 1), ('far.', 1), ('destroys', 1), ('visitors.', 1), ('relinquished', 1), ('compunction', 1), ('atoning', 1), ('prepossessed', 1), ('associate', 1), ('mutually', 1), ('sympathised', 1), ('demeanor', 1), ('proud-looking', 1), ('uncordial', 1), ('sedulously', 1), ('flowed', 1), ('detection', 1), ('prodigiously', 1), ('them—a', 1), ('powerfully', 1), ('inflicting', 1), ('together—for', 1), ('on—that', 1), ('behold', 1), ('her—to', 1), ('upright', 1), ('sourness', 1), ('sallow', 1), ('brow', 1), ('rescued', 1), ('proportioned', 1), ('person—for', 1), ('distinguished—whom', 1), ('pointedly', 1), ('misapplied', 1), ('mean-spirited', 1), ('despising', 1), ('honorably', 1), ('teazed', 1), ('bespoke', 1), ('master', 1), ('indigence', 1), ('appeared—but', 1), ('laboured', 1), ('disqualification', 1), ('agreeable—want', 1), ('improved—want', 1), ('elegance—want', 1), ('spirits—or', 1), ('variety—the', 1), ('politics', 1), ('inclosing', 1), ('horses—but', 1), ('coffee', 1), ('tallest', 1), ('politely', 1), ('grandmother', 1), ('descendant', 1), ('enforcing', 1), ('mounted', 1), ('ornamented', 1), ('officiously', 1), ('disclaiming', 1), ('connoisseurship', 1), ('considerately', 1), ('hum', 1), ('ferrars—', 1), ('am—an', 1), ('—_she', 1), ('does_', 1), ('paint', 1), ('delightfully', 1), ('this.—she', 1), ('speak.', 1), ('stiffly', 1), ('philippic', 1), ('audacity', 1), ('foretell', 1), ('wounded', 1), ('concerned.—colonel', 1), ('did.—mrs', 1), ('intelligent', 1), ('enraged', 1), ('_has', 1), ('been_', 1), ('gone.', 1), ('undesirable', 1), ('retarded', 1), ('_own_', 1), ('caprice', 1), ('_not', 1), ('elinor_', 1), ('herself—or', 1), ('hauteur', 1), ('same—all', 1), ('case—', 1), ('quickly—', 1), ('low—you', 1), ('health.', 1), ('—heaven', 1), ('friendship.', 1), ('spends', 1), ('sister—besides', 1), ('high.', 1), ('courtesy', 1), ('way—you', 1), ('mean—if', 1), ('unpleasantest', 1), ('them.—they', 1), ('_look_', 1), ('deter', 1), ('re-assurance', 1), ('exceeded', 1), ('rare', 1), ('demure', 1), ('heroically', 1), ('loitered', 1), ('high-minded', 1), ('—this', 1), ('conciliate', 1), ('benignant', 1), ('paused—no', 1), ('charge.', 1), ('muttered', 1), ('admirable', 1), ('—why', 1), ('great.', 1), ('sting', 1), ('scrupulous', 1), ('—then', 1), ('commendation.', 1), ('ill-suited', 1), ('auditor', 1), ('unexhilarating', 1), ('outstaid', 1), ('teazing', 1), ('ourselves.', 1), ('steadily', 1), ('tricked', 1), ('wanted.', 1), ('meeting—and', 1), ('esq', 1), ('heir', 1), ('intruding', 1), ('monopolize', 1), ('administer', 1), ('discomposed', 1), ('reconcile', 1), ('conciliation', 1), ('lighter', 1), ('unsuspected', 1), ('congratulated', 1), ('unfatherly', 1), ('proposition', 1), ('in—a', 1), ('last-arrived', 1), ('outrun', 1), ('misconstruction', 1), ('mechanically', 1), ('toilet', 1), ('washing', 1), ('scrutiny', 1), ('douceur', 1), ('undergoing', 1), ('conquests.', 1), ('punctuality', 1), ('preceded', 1), ('coachman', 1), ('harp', 1), ('violoncello', 1), ('excursive', 1), ('lecture', 1), ('stroke', 1), ('ill-humour', 1), ('emptiness', 1), ('lamenting', 1), ('_gaucherie_', 1), ('candidly', 1), ('generously', 1), ('tuition', 1), ('westminster', 1), ('prevented.', 1), ('error.', 1), ('surprising', 1), ('hearty', 1), ('bonomi', 1), ('dartford', 1), ('card-tables', 1), ('saloon.', 1), ('measured', 1), ('dwelling.', 1), ('dennison', 1), ('enfranchisement', 1), ('relations.', 1), ('vigor', 1), ('pacified', 1), ('slyly', 1), ('cherishing', 1), ('precise', 1), ('vouchsafed', 1), ('entry', 1), ('emigrant', 1), ('resume', 1), ('resettled', 1), ('fuss', 1), ('ill—it', 1), ('fretted', 1), ('pimple', 1), ('stepped', 1), ('smirked', 1), ('simpered', 1), ('conjurer', 1), ('popt', 1), ('come—for', 1), ('steward', 1), ('dreaming', 1), ('fury', 1), ('fainting', 1), ('packed', 1), ('uproar', 1), ('hears', 1), ('scornfully', 1), ('to-do', 1), ('yours—or', 1), ('bigger—with', 1), ('exactly.', 1), ('impartiality', 1), ('little—and', 1), ('undeceiving', 1), ('one.—she', 1), ('-and', 1), ('dwell', 1), ('practised', 1), ('practicable', 1), ('belonged', 1), ('hearer', 1), ('comforter', 1), ('unamiable', 1), ('mankind', 1), ('existed.—marianne', 1), ('regularity', 1), ('november', 1), ('duty.—my', 1), ('satisfy.', 1), ('undeceive', 1), ('harbour', 1), ('meant—it', 1), ('fit—it', 1), ('at.—they', 1), ('entirely—not', 1), ('friends—from', 1), ('ever.—how', 1), ('caress', 1), ('bitterness', 1), ('reparation', 1), ('discreet', 1), ('admiration.—she', 1), ('unchanging', 1), ('dissented', 1), ('am.', 1), ('spasm', 1), ('throat.—such', 1), ('heroism', 1), ('yesterday.', 1), ('too—in', 1), ('complicated', 1), ('distress—but', 1), ('storm', 1), ('weathered', 1), ('apprehended', 1), ('—meeting', 1), ('_any_', 1), ('_there_', 1), ('norfolk', 1), ('land-tax', 1), ('penury', 1), ('protested', 1), ('clapped', 1), ('obstinacy', 1), ('natural.', 1), ('forbore', 1), ('might.', 1), ('blunt', 1), ('deserves', 1), ('disrespectfully', 1), ('throughout', 1), ('wrung', 1), ('braving', 1), ('threat', 1), ('—edward', 1), ('inquiry.', 1), ('deplorable', 1), ('pounds—how', 1), ('taverns.', 1), ('forbear', 1), ('all—his', 1), ('lawyer', 1), ('galling', 1), ('sincerely.', 1), ('critique', 1), ('disobedient', 1), ('gloried', 1), ('penitence', 1), ('sunday', 1), ('accosted', 1), ('clarke.', 1), ('_without_', 1), ('arm—', 1), ('rage', 1), ('vowed', 1), ('trim', 1), ('bonnet', 1), ('feather', 1), ('pink', 1), ('ribbon', 1), ('plaguing', 1), ('triumphantly', 1), ('certain.', 1), ('godby', 1), ('richard', 1), ('saturday', 1), ('shift', 1), ('oath', 1), ('that—oh', 1), ('stocking', 1), ('richardsons.', 1), ('interrupting', 1), ('door.', 1), ('martha', 1), ('sharpe', 1), ('bone', 1), ('closet', 1), ('chimney-board', 1), ('said.', 1), ('uppermost', 1), ('no.—', 1), ('huswifes', 1), ('bishop', 1), ('giggling', 1), ('ready.', 1), ('bout', 1), ('good-by', 1), ('spotted', 1), ('muslin', 1), ('torn.', 1), ('claimed', 1), ('foreplanned', 1), ('—every', 1), ('—ay', 1), ('em', 1), ('furnishing', 1), ('_now_.', 1), ('thankfully', 1), ('bright', 1), ('us.—poor', 1), ('twould', 1), ('her.—my', 1), ('reminds', 1), ('respectfully', 1), ('—aye', 1), ('—thank', 1), ('credit.', 1), ('effected', 1), ('hostess', 1), ('detaining', 1), ('easter', 1), ('inforced', 1), ('auspicious', 1), ('cleveland.', 1), ('gently', 1), ('not—that', 1), ('of—', 1), ('somersetshire.—i', 1), ('somersetshire.—there', 1), ('argue', 1), ('—represented', 1), ('bristol', 1), ('concurrence', 1), ('settled—', 1), ('—lord', 1), ('gape', 1), ('cats.', 1), ('ennui', 1), ('honorable', 1), ('piano', 1), ('forte', 1), ('pursue', 1), ('lesson', 1), ('badness', 1), ('etiquette', 1), ('motion', 1), ('commended', 1), ('unlover-like', 1), ('hinder', 1), ('ejaculation', 1), ('older.', 1), ('_sang-froid_', 1), ('suitor', 1), ('persevering', 1), ('rightly', 1), ('impolitic', 1), ('doing—what', 1), ('circumstanced', 1), ('nonsense', 1), ('200£', 1), ('annum', 1), ('presenting', 1), ('minor', 1), ('income.', 1), ('patronage', 1), ('unforeseen', 1), ('useful', 1), ('misunderstood', 1), ('worded', 1), ('sagaciously', 1), ('withdrawn', 1), ('_tried_', 1), ('sensibly', 1), ('happen.', 1), ('occur.', 1), ('jennings—', 1), ('saw.', 1), ('repair.', 1), ('holborn', 1), ('to-day.', 1), ('ho', 1), ('goodby', 1), ('leisure.', 1), ('begin—how', 1), ('congratulating', 1), ('embarrassment.—whether', 1), ('determining', 1), ('so—or', 1), ('intruded', 1), ('time—it', 1), ('charged', 1), ('breathing', 1), ('faster', 1), ('well-judging', 1), ('living—it', 1), ('a-year—were', 1), ('to—as', 1), ('yourself—such', 1), ('establish', 1), ('happiness.', 1), ('_looked_', 1), ('unthought-of', 1), ('gathering', 1), ('passed—for', 1), ('you—a', 1), ('occasion.', 1), ('—can', 1), ('all.—i', 1), ('could—but', 1), ('orator.', 1), ('perhaps—indeed', 1), ('solicitation.', 1), ('benefactress', 1), ('—at', 1), ('respectability', 1), ('gentleman.', 1), ('lodge', 1), ('st.', 1), ('james', 1), ('very—an', 1), ('man.', 1), ('befall', 1), ('lucy.', 1), ('reconsider', 1), ('reverted', 1), ('difficulty—you', 1), ('likely.', 1), ('marries', 1), ('exchanged', 1), ('forfeiting', 1), ('ebullition', 1), ('ground-floor', 1), ('marry.', 1), ('ninny', 1), ('worship', 1), ('poultry', 1), ('verbal', 1), ('visit.—this', 1), ('drawing-room.—nobody', 1), ('be—but', 1), ('s—can', 1), ('—has', 1), ('true.—colonel', 1), ('edward.', 1), ('—well', 1), ('well—and', 1), ('value—supposing', 1), ('vacate', 1), ('soon—he', 1), ('say—fourteen', 1), ('improvident', 1), ('however—on', 1), ('recollection—that', 1), ('one—to', 1), ('man.—you', 1), ('refrain', 1), ('impoverished', 1), ('befalls', 1), ('discarded', 1), ('accelerate', 1), ('son.', 1), ('_robert', 1), ('s_', 1), ('morton.', 1), ('decisive', 1), ('affair.', 1), ('robert.', 1), ('silent.—his', 1), ('think—indeed', 1), ('herself—but', 1), ('certain—a', 1), ('mentioned—as', 1), ('—quite', 1), ('self-importance', 1), ('agitate', 1), ('uninformed', 1), ('self-complacency', 1), ('unfair', 1), ('division', 1), ('inquisitive', 1), ('immoderately', 1), ('clergyman', 1), ('fanciful', 1), ('imagery', 1), ('prayer', 1), ('surplice', 1), ('publishing', 1), ('banns', 1), ('considerably', 1), ('kingdom', 1), ('intend', 1), ('—shut', 1), ('frantic.', 1), ('captivate', 1), ('interfere', 1), ('hit', 1), ('disapproving.', 1), ('starved', 1), ('starved.', 1), ('—an', 1), ('enamoured', 1), ('completed', 1), ('intercourse', 1), ('promptitude', 1), ('april', 1), ('hanover', 1), ('respective', 1), ('extinguished', 1), ('unseen', 1), ('tranquility', 1), ('restoring', 1), ('somerset', 1), ('modern-built', 1), ('sloping', 1), ('pleasure-grounds', 1), ('closer', 1), ('dotted', 1), ('fir', 1), ('mountain-ash', 1), ('acacia', 1), ('thick', 1), ('interspersed', 1), ('lombardy', 1), ('poplar', 1), ('swelling', 1), ('eighty', 1), ('stealing', 1), ('eminence', 1), ('wide', 1), ('tract', 1), ('south-east', 1), ('ridge', 1), ('horizon', 1), ('invaluable', 1), ('circuit', 1), ('luxurious', 1), ('premise', 1), ('whiled', 1), ('lounging', 1), ('gardener', 1), ('blight', 1), ('dawdling', 1), ('plant', 1), ('unwarily', 1), ('nipped', 1), ('poultry-yard', 1), ('dairy-maid', 1), ('hen', 1), ('forsaking', 1), ('nest', 1), ('fox', 1), ('decrease', 1), ('brood', 1), ('merriment', 1), ('deterred', 1), ('knack', 1), ('heartiness', 1), ('atoned', 1), ('conceited', 1), ('enlargement', 1), ('aptitude', 1), ('trait', 1), ('idled', 1), ('billiards', 1), ('epicurism', 1), ('them.—his', 1), ('suggestion', 1), ('observer', 1), ('unexpressed', 1), ('—_she_', 1), ('oldest', 1), ('grass', 1), ('wettest', 1), ('had—assisted', 1), ('stockings—given', 1), ('prescription', 1), ('poured', 1), ('cough', 1), ('sore', 1), ('simplest', 1), ('shivering', 1), ('sofa', 1), ('efficacy', 1), ('persisting', 1), ('disorder', 1), ('importunity', 1), ('helpmate', 1), ('malady', 1), ('likewise.—here', 1), ('acceptably', 1), ('piquet', 1), ('demur', 1), ('seconded', 1), ('emergence', 1), ('boldly', 1), ('seizure', 1), ('admission', 1), ('expel', 1), ('auspiciously', 1), ('administering', 1), ('beneficial', 1), ('unusually', 1), ('recreating', 1), ('unremitting', 1), ('inarticulate', 1), ('accidental', 1), ('assisting', 1), ('london.', 1), ('despatching', 1), ('effecting', 1), ('rung', 1), ('despondence', 1), ('obviated', 1), ('pre-arranged', 1), ('post-horse', 1), ('brandon—or', 1), ('guide', 1), ('summons', 1), ('meanwhile', 1), ('exactness', 1), ('delirium', 1), ('tortured', 1), ('incoherently', 1), ('pictured', 1), ('former—but', 1), ('clock—arrived', 1), ('punctual', 1), ('unabated', 1), ('quiet—not', 1), ('herself—remained', 1), ('stupor', 1), ('image', 1), ('scrupled', 1), ('reasonableness', 1), ('began—but', 1), ('caution—a', 1), ('friend—to', 1), ('bury', 1), ('foregoing', 1), ('revival', 1), ('conning', 1), ('watch—she', 1), ('gaze', 1), ('felicitation', 1), ('unfeigned', 1), ('unequivocal', 1), ('doting', 1), ('expand', 1), ('demonstration', 1), ('breast', 1), ('calming', 1), ('enfeebled', 1), ('supplying', 1), ('succour', 1), ('relapse', 1), ('remind', 1), ('was—but', 1), ('—perhaps', 1), ('sweetly', 1), ('capability', 1), ('retired', 1), ('stormy', 1), ('roared', 1), ('beat', 1), ('blast', 1), ('travellers—they', 1), ('store', 1), ('_almost_', 1), ('dressing-closet', 1), ('flaring', 1), ('lamp', 1), ('discern', 1), ('door—of', 1), ('doubt—her', 1), ('dread—perhaps', 1), ('vestibule', 1), ('inner', 1), ('rushed', 1), ('obeyed', 1), ('hour—for', 1), ('minutes—i', 1), ('stay.', 1), ('house.', 1), ('amazement—', 1), ('quick—and', 1), ('can—less', 1), ('opposite', 1), ('spare.', 1), ('abruptness', 1), ('afterwards—', 1), ('_am_', 1), ('dashwood—it', 1), ('perhaps—let', 1), ('mood', 1), ('glow', 1), ('overspreading', 1), ('knave', 1), ('liquor', 1), ('strangeness', 1), ('intelligible', 1), ('drunk', 1), ('pint', 1), ('beef', 1), ('over-set', 1), ('—cried', 1), ('nuncheon', 1), ('marlborough.', 1), ('intoxication', 1), ('blockhead', 1), ('ma—', 1), ('_long_', 1), ('accounted', 1), ('diabolical', 1), ('kind—it', 1), ('affection.', 1), ('subject.', 1), ('insist', 1), ('associating', 1), ('re-establish', 1), ('reprobate', 1), ('blessing.', 1), ('blameless', 1), ('improperly', 1), ('here—nor', 1), ('expatiate', 1), ('scrupling', 1), ('circumspection', 1), ('contemptible', 1), ('interim—in', 1), ('interim', 1), ('private—a', 1), ('occurred—an', 1), ('connection—but', 1), ('intimacy—you', 1), ('hardening', 1), ('urge—that', 1), ('understanding—i', 1), ('wish—i', 1), ('mind—oh', 1), ('girl—i', 1), ('be—your', 1), ('extremest', 1), ('indigence.', 1), ('omitted', 1), ('taxed', 1), ('purity', 1), ('world—every', 1), ('discontented', 1), ('be—and', 1), ('formally', 1), ('affair—i', 1), ('morning—was', 1), ('great—but', 1), ('me—it', 1), ('awaited', 1), ('deliver', 1), ('debate', 1), ('undervalued', 1), ('magnanimity', 1), ('miserable—and', 1), ('reproachfully', 1), ('myself—and', 1), ('dissembling', 1), ('immediately—i', 1), ('it—united', 1), ('reliance', 1), ('hard-hearted', 1), ('it.—it', 1), ('do.—then', 1), ('grudge', 1), ('rascally', 1), ('town—travelling', 1), ('tediously—no', 1), ('to—my', 1), ('cheerful—when', 1), ('infamous', 1), ('passed.', 1), ('is—in', 1), ('one—perhaps', 1), ('emotion—my', 1), ('painful.—every', 1), ('metaphor', 1), ('forbid—a', 1), ('language—a', 1), ('thunderbolt.—thunderbolts', 1), ('opinions—i', 1), ('dearer.', 1), ('undergone', 1), ('—yet', 1), ('willoughby.—remember', 1), ('—awakened', 1), ('remorse', 1), ('shrugging', 1), ('silencing', 1), ('infamously', 1), ('retreat', 1), ('wiser', 1), ('cool', 1), ('blundered', 1), ('marianne—still', 1), ('artless', 1), ('confiding—everything', 1), ('hateful', 1), ('tried—but', 1), ('holding', 1), ('was—well', 1), ('hue.', 1), ('—doting', 1), ('breakfasting', 1), ('mine—and', 1), ('hand-writing', 1), ('vague', 1), ('playfulness', 1), ('passion—her', 1), ('malice—at', 1), ('appeased', 1), ('short—what', 1), ('letter-writing', 1), ('—delicate—tender—truly', 1), ('feminine—was', 1), ('hand-writing.', 1), ('servilely', 1), ('own—her', 1), ('diction', 1), ('fixed—but', 1), ('couched', 1), ('bluster', 1), ('blackguard', 1), ('relic', 1), ('—unluckily', 1), ('pocketbook', 1), ('hoarded', 1), ('hair—that', 1), ('pocket-book', 1), ('ingratiating', 1), ('virulence', 1), ('—all', 1), ('memento', 1), ('slightingly', 1), ('marianne—nor', 1), ('conscience.', 1), ('—am', 1), ('something—a', 1), ('know—the', 1), ('inflicted—i', 1), ('—let', 1), ('lightened', 1), ('spontaneous', 1), ('penitence—tell', 1), ('inconstant', 1), ('illness.', 1), ('drury', 1), ('vex', 1), ('horridly', 1), ('bluntly', 1), ('cleveland—a', 1), ('imminent—the', 1), ('scorning', 1), ('hating', 1), ('latest', 1), ('moments—for', 1), ('anything—what', 1), ('irreparable', 1), ('vain—extravagance', 1), ('outwardly', 1), ('incurable', 1), ('off.', 1), ('no—to', 1), ('bye.', 1), ('letting', 1), ('forgetting', 1), ('well—was', 1), ('happiness—and', 1), ('rub', 1), ('means—it', 1), ('guard—at', 1), ('replied—', 1), ('event.', 1), ('marriage.', 1), ('bear—but', 1), ('—god', 1), ('widely', 1), ('differing', 1), ('commiseration', 1), ('herself—to', 1), ('awaking', 1), ('refreshed', 1), ('carriage.—eager', 1), ('hall', 1), ('embraced', 1), ('bliss', 1), ('stake', 1), ('wearing', 1), ('irritation', 1), ('blamed', 1), ('acquitted', 1), ('widower', 1), ('reproved', 1), ('mend', 1), ('temperate', 1), ('exuberance', 1), ('imparted', 1), ('unawares', 1), ('undesignedly', 1), ('equalled', 1), ('sympathy—or', 1), ('suppose—giving', 1), ('constant—which', 1), ('it—has', 1), ('selfishness—without', 1), ('another—such', 1), ('established.', 1), ('warning', 1), ('worthiest', 1), ('men.', 1), ('acquired', 1), ('sanguine.', 1), ('rooted', 1), ('solidly', 1), ('unstudied', 1), ('accordant', 1), ('liveliness', 1), ('artificial', 1), ('paused.—her', 1), ('dissent', 1), ('—indeed', 1), ('situation.', 1), ('_that', 1), ('_—and', 1), ('weakening', 1), ('smoothly', 1), ('recurrence', 1), ('reclining', 1), ('dawned', 1), ('determinate', 1), ('hospitable', 1), ('redeem', 1), ('bidding', 1), ('traveller', 1), ('bodily', 1), ('field', 1), ('unobtrusiveness', 1), ('entitled', 1), ('subsequent', 1), ('traced', 1), ('sitting-room', 1), ('accustom', 1), ('connected.—she', 1), ('opera', 1), ('duet', 1), ('hand-writing.—that', 1), ('do.—she', 1), ('key', 1), ('abatement', 1), ('anticipating', 1), ('edge', 1), ('abbeyland', 1), ('priory', 1), ('resorted', 1), ('borrow', 1), ('a-day', 1), ('twelve-month', 1), ('want.', 1), ('indolence', 1), ('repining', 1), ('virtuous', 1), ('self-control', 1), ('unfulfilled', 1), ('unsettle', 1), ('appointed', 1), ('invalid', 1), ('genial', 1), ('untried', 1), ('—pointing', 1), ('mound', 1), ('girl—', 1), ('treasured', 1), ('doubly', 1), ('shamefully', 1), ('unguarded', 1), ('fickle', 1), ('fickle.', 1), ('postponing', 1), ('crept', 1), ('yours.', 1), ('resemblance.', 1), ('self-destruction', 1), ('—wonder', 1), ('fretful', 1), ('murmuring', 1), ('failing', 1), ('repaid', 1), ('myself.—your', 1), ('imitate', 1), ('deserted', 1), ('professed', 1), ('unbounded', 1), ('self-reproving', 1), ('good.—the', 1), ('adhering', 1), ('it—my', 1), ('worry', 1), ('solely', 1), ('henceforth', 1), ('incitement', 1), ('humbled', 1), ('amended', 1), ('willoughby—to', 1), ('regulated', 1), ('religion', 1), ('employment.', 1), ('paused—and', 1), ('hazarding', 1), ('listener', 1), ('protestation', 1), ('word.—she', 1), ('whiter', 1), ('panting', 1), ('unknowingly', 1), ('closely', 1), ('dreading', 1), ('conjecturing', 1), ('minuteness', 1), ('articulate', 1), ('pre-arranging', 1), ('unmoved', 1), ('recalled.—nothing', 1), ('unbroken—a', 1), ('unblemished', 1), ('injure', 1), ('himself—had', 1), ('retailed', 1), ('sobered', 1), ('astray', 1), ('unquiet', 1), ('sitting—her', 1), ('unsteady', 1), ('thing—as', 1), ('unbiased', 1), ('me—what', 1), ('morning—i', 1), ('before—', 1), ('this.—i', 1), ('feelings.', 1), ('—no—my', 1), ('sensitive', 1), ('felt.', 1), ('change.', 1), ('poorly', 1), ('expensiveness', 1), ('self-denial', 1), ('inexperience', 1), ('_less_', 1), ('economy', 1), ('retrenched', 1), ('that—and', 1), ('management', 1), ('abridge', 1), ('quivered', 1), ('implied—', 1), ('ruling', 1), ('principle.', 1), ('object.', 1), ('unembarrassed—he', 1), ('suffers', 1), ('pecuniary', 1), ('reckons', 1), ('necessitous—always', 1), ('innumerable', 1), ('wife.', 1), ('regret—nothing', 1), ('answerable.', 1), ('fairly', 1), ('story—that', 1), ('discontents.', 1), ('enumeration', 1), ('unitedly', 1), ('unsubdued', 1), ('vigour', 1), ('prosecution', 1), ('man-servant', 1), ('intuitively', 1), ('disordered', 1), ('stopping', 1), ('sally', 1), ('post-boys', 1), ('howsever', 1), ('free-spoken', 1), ('joy.', 1), ('talking.', 1), ('lucy—mrs', 1), ('westward', 1), ('am—but', 1), ('recognised', 1), ('am—the', 1), ('late.', 1), ('lady—and', 1), ('contented.', 1), ('tablecloth', 1), ('dessert', 1), ('similarity', 1), ('hazard', 1), ('misled', 1), ('slighter', 1), ('wont', 1), ('inattentive', 1), ('self-provocation', 1), ('lurking', 1), ('self-provident', 1), ('delaford.—delaford', 1), ('conspired', 1), ('contriving', 1), ('economical', 1), ('—pursuing', 1), ('edward—she', 1), ('—happy', 1), ('—nothing', 1), ('thoughtless', 1), ('indolent', 1), ('speak—and', 1), ('utterance', 1), ('footstep', 1), ('path', 1), ('merited', 1), ('conforming', 1), ('stammered', 1), ('unintelligible', 1), ('shaken', 1), ('retreated', 1), ('dryness', 1), ('affirmative', 1), ('fearing', 1), ('_edward_', 1), ('doubtingly', 1), ('mean—my', 1), ('brother—you', 1), ('mrs.—mrs', 1), ('spoiling', 1), ('sheath', 1), ('cutting', 1), ('to—to', 1), ('youngest—to', 1), ('steele.', 1), ('echoed', 1), ('unspeakable', 1), ('saw—or', 1), ('penetrate', 1), ('village—leaving', 1), ('lessening', 1), ('pre-determined', 1), ('failure', 1), ('exercising', 1), ('commonly', 1), ('swell', 1), ('entanglement', 1), ('flowing', 1), ('boyish', 1), ('philosophic', 1), ('twenty-four', 1), ('unconquerable', 1), ('outgrown', 1), ('chosen', 1), ('nominal', 1), ('university', 1), ('too—at', 1), ('_then', 1), ('wrought', 1), ('such—so', 1), ('great—as', 1), ('occur—regrets', 1), ('elinor—how', 1), ('justifying', 1), ('compared', 1), ('honourably', 1), ('profiting', 1), ('familiarized', 1), ('sedateness', 1), ('labor', 1), ('incessant', 1), ('family—it', 1), ('puzzle', 1), ('worked', 1), ('afterward', 1), ('arise.', 1), ('stupified', 1), ('scorn', 1), ('well-wisher', 1), ('burnt', 1), ('scrawls—but', 1), ('keep.', 1), ('composition', 1), ('edward.—', 1), ('days.—in', 1), ('foolish—business—this', 1), ('substance', 1), ('style.', 1), ('appropriate', 1), ('bribing', 1), ('disinherited', 1), ('favourite.—she', 1), ('sooner.', 1), ('flourish', 1), ('enlightened', 1), ('ill-nature', 1), ('opinions—they', 1), ('disquiet', 1), ('option', 1), ('renounced', 1), ('living.', 1), ('relent', 1), ('single.', 1), ('because—to', 1), ('_what_', 1), ('plead', 1), ('_faith_', 1), ('plighted', 1), ('sacred', 1), ('expediency', 1), ('resented', 1), ('delaford—', 1), ('ungraciously', 1), ('offering.', 1), ('glebe', 1), ('warmest', 1), ('certain—and', 1), ('residue', 1), ('enrich', 1), ('comer', 1), ('disproportion', 1), ('thirty-six', 1), ('rumour', 1), ('unite', 1), ('thrill', 1), ('transport', 1), ('tale', 1), ('jilting', 1), ('hussy', 1), ('broken-hearted', 1), ('borrowed', 1), ('burgess', 1), ('crossness', 1), ('strain', 1), ('women—poor', 1), ('sensibility—and', 1), ('enormously', 1), ('amiss', 1), ('_me', 1), ('penitent', 1), ('make.', 1), ('anger.', 1), ('merit.', 1), ('patron', 1), ('l.', 1), ('fluctuating', 1), ('resuscitation', 1), ('publication', 1), ('—told', 1), ('nobleman', 1), ('_three', 1), ('submit—and', 1), ('decree', 1), ('augmenting', 1), ('shuffling', 1), ('completion', 1), ('dilatoriness', 1), ('workman', 1), ('superintend', 1), ('invent', 1), ('sweep', 1), ('prophecy', 1), ('jumbled', 1), ('pasturage', 1), ('inspect', 1), ('hanger', 1), ('make-believe', 1), ('insulted', 1), ('scrape', 1), ('assiduous', 1), ('re-established', 1), ('crowned', 1), ('obstructed', 1), ('_time_', 1), ('lingered', 1), ('supplanted', 1), ('tricking', 1), ('cut—and', 1), ('instigation', 1), ('adopted', 1), ('transgressed', 1), ('unpardoned', 1), ('self-condemnation', 1), ('haughty', 1), ('birth', 1), ('intruder', 1), ('continually', 1), ('subsisting', 1), ('exceed', 1), ('rendering', 1), ('useless', 1), ('policy', 1), ('frequency', 1), ('confederacy', 1), ('her—with', 1), ('goodness—with', 1), ('observable', 1), ('else—burst', 1), ('her—what', 1), ('constitutional', 1), ('safeguard', 1), ('—instead', 1), ('sober', 1), ('submitting', 1), ('patroness', 1), ('stating', 1), ('clemency', 1), ('—nor', 1), ('inconsolable', 1), ('fled', 1), ('habitual', 1), ('on—for', 1), ('breed', 1), ('surviving', 1), ('standard', 1), ('after-days', 1), ('ineligible', 1), ('ranked', 1), ('producing', 1), ('161-0.txt', 1), ('161-0.zip', 1), ('http', 1), ('//www.gutenberg.org/1/6/161/', 1), ('renamed', 1), ('rule', 1), ('apply', 1), ('modified', 1), ('practically', 1), ('www.gutenberg.org/license', 1), ('1.a', 1), ('indicate', 1), ('trademark/copyright', 1), ('abide', 1), ('1.b', 1), ('pglaf', 1), ('compilation', 1), ('unprotected', 1), ('1.d', 1), ('downloading', 1), ('appears', 1), ('accessed', 1), ('1.e.2', 1), ('text', 1), ('indicating', 1), ('1.e.3', 1), ('imposed', 1), ('linked', 1), ('1.e.4', 1), ('unlink', 1), ('detach', 1), ('1.e.5', 1), ('redistribute', 1), ('1.e.6', 1), ('binary', 1), ('compressed', 1), ('nonproprietary', 1), ('proprietary', 1), ('processing', 1), ('hypertext', 1), ('version', 1), ('exporting', 1), ('alternate', 1), ('include', 1), ('20', 1), ('%', 1), ('profit', 1), ('60', 1), ('legally', 1), ('periodic', 1), ('notifies', 1), ('e-mail', 1), ('30', 1), ('s/he', 1), ('discontinue', 1), ('reported', 1), ('1.f', 1), ('1.f.1', 1), ('expend', 1), ('transcribe', 1), ('proofread', 1), ('despite', 1), ('stored', 1), ('incomplete', 1), ('inaccurate', 1), ('corrupt', 1), ('data', 1), ('transcription', 1), ('infringement', 1), ('damaged', 1), ('disk', 1), ('virus', 1), ('code', 1), ('1.f.2', 1), ('disclaim', 1), ('contract', 1), ('distributor', 1), ('indirect', 1), ('consequential', 1), ('punitive', 1), ('incidental', 1), ('problem', 1), ('1.f.4', 1), ("'as-is", 1), ("'", 1), ('merchantability', 1), ('fitness', 1), ('1.f.5', 1), ('exclusion', 1), ('type', 1), ('violates', 1), ('interpreted', 1), ('maximum', 1), ('invalidity', 1), ('unenforceability', 1), ('void', 1), ('1.f.6', 1), ('indemnity', 1), ('indemnify', 1), ('agent', 1), ('indirectly', 1), ('b', 1), ('modification', 1), ('deletion', 1), ('2', 1), ('synonymous', 1), ('readable', 1), ('obsolete', 1), ('middle-aged', 1), ('exists', 1), ('financial', 1), ("gutenberg-tm's", 1), ('goal', 1), ('ensuring', 1), ('2001', 1), ('permanent', 1), ('non-profit', 1), ('501', 1), ('educational', 1), ('corporation', 1), ('organized', 1), ('mississippi', 1), ('internal', 1), ('revenue', 1), ('ein', 1), ('identification', 1), ('64-6221541', 1), ('deductible', 1), ('809', 1), ('north', 1), ('1500', 1), ('lake', 1), ('ut', 1), ('84116', 1), ('801', 1), ('596-1887', 1), ('www.gutenberg.org/contact', 1), ('survive', 1), ('widespread', 1), ('licensed', 1), ('machine-readable', 1), ('accessible', 1), ('array', 1), ('outdated', 1), ('5,000', 1), ('maintaining', 1), ('irs', 1), ('committed', 1), ('regulating', 1), ('charitable', 1), ('50', 1), ('paperwork', 1), ('location', 1), ('prohibition', 1), ('donor', 1), ('international', 1), ('swamp', 1), ('staff', 1), ('web', 1), ('current', 1), ('5', 1), ('professor', 1), ('michael', 1), ('hart', 1), ('originator', 1), ('network', 1), ('main', 1), ('pg', 1), ('facility', 1), ('includes', 1), ('subscribe', 1), ('newsletter', 1)]
from operator import itemgetter
from collections import defaultdict
# loop through tokens and find the hypernym of each word
Hypernym_counts = defaultdict(int)
# loop through the words and find the hypernym of each
for word in nltk_lemmas:
synsets = wordnet.synsets(word)
if not synsets:
continue
hypernyms = synsets[0].hypernyms()
if not hypernyms:
continue
hypernym = hypernyms[0].lemmas()[0].name().replace("_", " ")
if hypernym in Hypernym_counts:
Hypernym_counts[hypernym] += 1
else:
Hypernym_counts[hypernym] = 1
list_descending = (sorted(Hypernym_counts.items(), key=itemgetter(1), reverse=True))
print(list_descending[:20])
[('chemical element', 3882), ('metric linear unit', 3325), ('linear unit', 2009), ('engineering', 1848), ('metallic element', 1589), ('person', 1164), ('time unit', 1026), ('title', 713), ('digit', 657), ('solfa syllable', 638), ('state', 588), ('negative', 569), ('express', 476), ('be', 458), ('act', 454), ('woman', 444), ('faculty', 357), ('associate degree', 353), ('point', 351), ('activity', 346)]
# Chapter 5 Exercises
# Exercise 15.1
brown_tag = brown.tagged_words()
tagged_ = nltk.ConditionalFreqDist(brown_tag)
plural_common = set()
for word in set(brown.words()):
if tagged_[word+'s']['NNS'] > tagged_[word]['NN']:
plural_common.add(word)
print("These words are more common in the plural form:")
print(plural_common)
These words are more common in the plural form:
{'System', 'mechanic', 'arm', 'reservation', 'aborigine', 'tangent', 'star', 'sensor', 'drier', 'dresser', 'injunction', 'Report', 'meteorite', 'scandal', 'grape', 'libertie', 'bee', 'shareholder', 'bifocal', 'gram', 'allowance', 'gasp', 'patron', 'aerial', 'ligand', 'oyster', 'practitioner', 'schoolmate', 'nude', 'emotion', 'employe', 'specialist', 'honeybee', 'preserve', 'event', 'siren', 'sacrament', 'nothing', 'norm', 'Appeal', 'vendor', 'people', 'alloy', 'experiment', 'installation', 'scenic', 'silhouette', 'Judge', 'delegate', 'azalea', 'deviant', 'terminal', 'superlative', 'parasite', 'giant', 'Reading', 'modification', 'trapping', 'topic', 'loudspeaker', 'Guest', 'binder', 'incompetent', 'shaker', 'groove', 'diver', 'Conference', 'colleague', 'byproduct', 'slipper', 'insect', 'simple', 'shoe', 'yard', 'resource', 'minute', 'suburb', 'rut', 'batterie', 'transient', 'precept', 'prisoner', 'Operation', 'customer', 'surrounding', 'feature', 'plaque', 'sneaker', 'specification', 'foreigner', 'coordinate', 'Say', 'Cocktail', 'trait', 'suitor', '1920', 'cooperative', 'salon', 'comrade', 'three', 'supermarket', 'more', 'deltoid', 'perturbation', 'catkin', 'noble', 'Thousand', 'armament', 'insurgent', 'promoter', 'taxpayer', 'word', 'cutter', 'improvisation', 'Realtor', 'stockholder', 'spice', 'psychiatrist', 'grocer', 'filbert', 'term', 'ripple', 'headline', 'confine', 'rib', 'disciple', 'Senator', 'sailor', 'defender', 'wave', 'Step', 'eccentric', 'nutrient', 'drum', 'organ', 'tick', 'Advertiser', 'secant', 'spewing', 'bracket', 'earning', 'grotesque', 'anionic', 'official', 'Aid', 'burglar', 'hoof', 'regulation', 'gutter', 'subsystem', 'mug', 'commitment', 'landmark', 'boot', 'cookie', 'Return', "'60", 'inflection', 'worker', 'basic', 'egg', 'weed', 'scholar', 'moral', 'Car', 'hopeful', 'surrealist', 'associate', '90-degree', 'barricade', 'blossom', 'polymer', 'lyric', 'therefore', 'ion', 'Development', 'epicycle', 'watershed', 'Illustration', 'Bullet', 'concentrate', 'trouser', 'gymnastic', 'manual', 'crater', 'tactic', 'cart', 'defendant', 'stain', 'restriction', 'enzyme', 'factor', 'Individual', 'favorite', 'reporter', 'defect', 'Bottom', 'jerking', 'pheasant', 'nuance', 'diagonal', 'Person', 'imagining', 'Oil', 'initial', 'shaving', 'lobule', 'modern', 'limb', 'Trustee', 'feather', 'user', 'valve', 'metaphysical', 'determinant', 'mammal', 'eyebrow', 'tranquilizer', 'leaflet', 'sailboat', 'revenue', 'contraceptive', 'progression', 'one', 'product', 'dollar', 'drawing', 'independent', 'wrinkle', 'runner', 'working', 'Sign', 'observation', 'two', 'medal', 'Officer', 'dealing', 'bitter', 'absolute', 'spike', 'homosexual', 'Export', 'rendition', 'year', 'Measurement', 'spouse', 'sweet', 'Dealer', 'infidel', 'tear', 'Dog', 'map', 'generalization', 'resultant', 'acre', 'explosive', 'gallant', 'moderate', 'step', 'Fraction', 'aberration', 'paragraph', 'soybean', 'bumblebee', 'visitor', 'additive', '45-degree', 'institution', 're-run', 'vine', 'theologian', 'peasant', 'clove', 'planet', 'alcoholic', 'reagent', 'Set', 'predecessor', 'ray', 'Sound', 'meteor', 'Model', 'dune', 'draper', 'Trooper', 'polyphosphate', 'billion', 'Evening', 'sonata', 'lung', 'Picture', 'probe', 'Fund', 'hub', 'parent', 'hour', 'initiate', 'liter', 'Zero', 'overhang', 'leak', 'tough', 'disadvantage', 'bite', 'urn', 'skate', 'scholastic', 'grad', 'Number', 'player', 'bough', 'nightclub', 'appliance', 'Train', 'realtor', 'white', 'outbreak', 'vocal', 'expectation', 'pupil', 'Record', 'Team', 'creature', 'Design', 'megaton', 'tentacle', 'Reference', 'Look', 'banshee', 'bronchiole', 'booklet', 'pound', 'gadget', 'chore', 'deep', '1950', 'flower', 'lip', 'conformist', 'Case', 'Test', 'Bid', 'leading', 'resistor', 'dropping', 'method', 'expenditure', 'Sentiment', 'imperfection', 'irregular', 'third', 'leader', 'adherent', 'specific', 'postulate', 'fin', 'politician', 'toe', 'rigid', 'disclosure', 'farmer', 'highlight', 'leave', '1960', 'complication', 'Traveler', 'Circumstance', 'maker', 'Banker', 'lay', 'seeker', 'crystallite', 'racketeer', 'antecedent', 'Artist', 'angel', 'retailer', 'gallon', 'Connection', 'commissioner', 'pageant', 'incompatible', 'generalist', 'headache', 'remark', 'intellectual', 'hike', 'Culture', 'advisor', 'repulsion', 'fathom', 'elephant', 'vegetable', 'cheekbone', 'fundamental', 'Official', 'eye', 'odd', 'hugging', 'five', 'implication', 'mortal', 'hitter', 'crackpot', 'bribe', 'eclipse', 'rattlesnake', 'robber', 'incidental', 'Apologie', 'tribe', 'skipper', 'limit', 'Marina', 'ethic', 'custom', 'thousand', 'comedie', 'element', 'vineyard', 'Play', 'overall', 'transformer', 'Song', 'entertainer', 'Idea', 'extractor', 'kenning', 'sediment', 'internationalist', 'sale', 'omission', 'Drum', 'dealer', 'lobe', 'adjective', 'duffer', 'ghoul', 'picker', 'occupant', 'yacht', 'striving', 'critter', 'barbarian', 'Snake', 'Gain', 'intermediate', 'item', 'frank', 'Feeling', 'Painting', 'consequence', 'canon', 'cipher', 'bubble', 'antagonist', 'Increase', 'Interview', 'compulsive', 'sole', 'sausage', 'teen', 'employer', 'nail', 'solid', 'Chestnut', 'universal', 'duct', 'proceed', 'ballistic', 'comet', 'furnishing', 'Flock', 'Graduate', 'investigator', 'franc', 'manifestation', 'outboard', 'soldier', 'conservative', 'Speaker', 'directive', 'spoil', 'underwriter', 'compliment', 'national', 'vitamin', '1890', 'aye', 'projection', 'mine', 'pink', 'twin', 'appointee', 'these', 'investor', 'expert', 'memoir', 'grouping', 'pajama', 'evocation', 'Pagan', 'saving', 'warrior', 'chunk', 'invader', 'component', 'negotiation', 'hue', 'Lot', 'congratulation', 'tablespoon', 'constituent', 'out', 'pebble', 'eyelid', 'vital', 'deductible', 'kissing', 'epithet', 'vehicle', 'tenth', 'neighbor', 'calorie', 'implement', 'Criminal', 'surfactant', 'athletic', 'insecticide', 'being', 'snag', 'nerve', 'like', 'ellipsoid', 'Associate', 'serpent', 'hit', 'interrelationship', 'plastic', 'Reef', 'thug', 'normal', 'publisher', 'Indication', 'wing', 'savage', 'doll', 'syllable', 'plate', 'extract', 'incumbent', 'premise', 'organism', 'linguist', 'marking', 'cell', 'fee', 'receipt', 'spectator', 'backyard', 'closeup', 'villain', 'up', 'Orange', 'tonic', 'redcoat', 'rupee', 'grenade', 'spade', 'Reporter', 'channel', 'jewel', 'Plan', 'ether', 'Other', 'Track', 'stump', 'Head', 'settler', 'moth', 'supporter', 'gymnast', 'mile', 'newlywed', 'referral', 'laurel', 'tektite', 'motive', 'sore', 'Bird', 'stair', 'carrot', 'fete', 'Avocado', 'firecracker', 'theatrical', 'classmate', 'Advance', 'Glaze', 'stamp', 'liberal', 'sensitive', 'synthetic', 'silicate', 'Missile', 'brothel', 'convert', 'prerogative', 'libertarian', 'Relative', 'guest', 'requirement', 'swelling', 'student', 'molecule', 'Chart', 'Station', 'Intangible', 'tenant', 'Nation', 'Film', 'monosyllable', 'doing', 'stunt', 'Student', 'survivor', 'fat', 'troop', 'Demon', 'ear', 'integral', 'Farmer', 'arrangement', 'song', 'attribute', 'obligation', 'import', 'mill', 'Loan', 'symptom', 'disc', 'gunner', 'noun', 'prime', 'believer', 'thousandth', 'Correction', 'controller', 'boo', 'indicator', 'guardian', 'scientist', 'Statue', 'fan', 'musing', 'lark', 'aspect', 'bomber', 'technique', 'contributor', 'elder', 'lower', 'cloud', 'knee', 'Superintendent', 'migrant', 'Camera', 'steroid', 'cuff', 'surmise', 'Strike', 'bruise', 'fighter', 'escapade', 'flip', 'Year', 'collaborator', 'rule', 'forecast', 'regular', 'condition', 'predisposition', 'admonition', 'spacer', 'revision', 'Change', 'adviser', 'batten', 'representative', 'Junior', 'Problem', 'painting', 'teen-ager', 'broker', 'ramification', 'lashing', 'affiliation', 'dividend', 'Proprietorship', 'riddle', 'psychologist', 'anti-Communist', 'wandering', 'swell', 'carving', 'cartoon', 'smelt', 'stray', 'clothe', 'Representative', 'Solution', 'fill-in', 'descendant', 'Original', 'deduction', 'Boat', 'Observer', 'Governor', 'submarine', 'endowment', 'instrumental', 'Ship', 'Corporation', 'rite', 'lag', 'finger', 'wrestling', 'Fight', 'Institution', 'turnpike', 'authorization', 'speculation', 'secularist', 'headquarter', 'live', 'inboard', 'catalog', 'bond', 'relative', 'sedan', 'sweeping', 'performer', 'auditor', 'offensive', 'undergraduate', 'pore', 'Thank', 'measurement', 'Highway', 'gut', 'native', 'singer', 'wrap', 'object', 'toy', 'supervisor', 'Town', 'ant', 'strap', 'abolitionist', 'Direction', 'facet', 'colonial', 'heel', 'hinge', 'Name', 'personage', 'Magnum', 'courtier', 'pacer', 'Application', 'subordinate', 'professional', 'Experiment', 'Plane', 'walnut', 'dipole', 'vase', 'other', 'adapter', 'trader', 'Member', 'rein', 'passenger', 'belonging', 'ruler', 'circumstance', 'Question', 'Hazard', 'member', 'carrier', 'Writer', 'pamphlet', 'flare', 'helmet', 'Sponsor', 'advertisement', 'dimension', 'extra', 'bud', 'Flat', 'conjugate', 'assessor', 'listener', 'steward', 'hydride', 'marina', 'trustee', 'oilseed', 'brake', 'Moral', 'Leave', 'periodical', 'propagandist', 'immigrant', 'innocent', 'peacock', 'fund', 'vault', 'legislator', 'sag', 'caller', 'tree', 'Citizen', 'bevel', 'instruction', 'recruit', 'airfield', 'affair', 'gust', 'miner', 'Crowd', 'urging', 'casual', 'Course', 'Dream', 'eatable', 'candidate', 'applicant', 'geologist', 'Pilot', 'Make', 'decree', 'ad', 'coping', 'Regular', 'ton', 'error', 'allusion', 'tank', '1930', 'poem', 'Trader', 'milligram', 'slack', 'Abstraction', 'Seed', 'month', 'employee', 'bushel', 'dolphin', 'concession', 'Liberal', 'Color', 'nun', 'duck', 'buyer', 'costume', 'maneuver', 'million', 'specie', 'hostage', 'accommodation', 'limitation', 'clod', 'shim', 'atom', 'competitor', 'Hurt', 'Example', 'fabric', 'Measure', 'Payment', 'lilac', 'rebel', 'tavern', 'Area', 'anterior', 'observer', 'Method', 'resident', 'camper', 'manufacturer', 'standard', 'Employee', 'spoke', 'recrimination', 'dose', 'Expenditure', 'youngster', 'ingredient', 'romantic', 'Boy', 'document', 'barrier', '1940', 'silo', 'Book', 'narcotic', 'towel', 'trump', 'weave', 'relation', 'herpetologist', 'technician', 'lodging', 'motorist', 'Scholar', 'bidder', 'shipment', 'bun', 'jowl', 'gassing', 'trimming', 'happening', 'demon', 'exploit', 'win', 'Thing', 'feud', 'Order', 'remain', 'thank', 'dystopia', 'no', 'sport', 'prolusion', 'variable', 'vow', 'pledge', 'thing', 'active', 'fuck', 'protease', 'subversive', 'topping', 'pillar', 'mean', 'musician', 'claw', 'Vineyard', 'cosmetic', 'Investor', 'vista', 'acoustic', 'ten', 'leaving', 'Flower', 'titter', 'bug', 'consonant', 'centimeter', 'endearment', 'mountain', 'two-week', 'Force', 'aspiration', 'nostril', 'servant', 'rating', 'rim-fire', 'hundred', 'fingering', 'puddle', 'cardinal', 'researcher', 'Doctor', 'treasure', 'destroyer', 'colored', 'chant', 'rodent', 'spiritual', 'monitor', 'Eye', 'Poet', 'meter', 'accomplishment', 'makeshift', 'weapon', 'tidbit', 'wavelength', 'Northerner', 'mystic', 'contour', 'cop', 'planner', 'Share', 'ill', 'conqueror', 'chromatic', 'card', 'greeting', 'lapel', 'Wire', 'burn', 'curl', 'purge', 'locale', 'verb', 'boasting', 'scripture', 'interval', 'voter', 'drug', 'commercial', 'cube', 'Session', 'Attorney', 'Score', 'trailer', 'four', 'dislocation', 'adverb', 'export', 'Cow', 'wrestle', 'ailment', 'classic', 'diehard', 'proponent', 'Survey', 'interface', 'intangible', 'poster', 'speculator', 'finding', 'pirate', 'triplet', 'axe', 'Star', 'notable', 'counterpart', 'gangster', 'bristle', 'loin', 'cape', 'stocking', 'proceeding', 'Estimate', 'knuckle', '2-year-old', 'outburst', 'particle', 'Judgment', 'participant', 'heroic', 'pier', 'creeper', 'commoner', 'infestation', 'rogue', 'superior', 'abstract', 'appropriation', 'deliberation', 'Teacher', 'shunt', 'slave', 'banker', 'Diet', 'enthusiast', 'sock', 'upland', 'ideal', 'leg', 'microorganism', 'skylight', 'paw', 'shred', 'prop', 'Market', 'Letter', 'panel', 'pinning', 'Result', 'movie', 'photographer', 'Coconut', 'parameter', 'qualification', 'final', 'giggle', 'nut', 'peer', 'Girl', 'characteristic', 'Investigation', 'outsider', 'Command', 'lament', 'House', 'revelling', 'winning', 'senator', 'volunteer', 'teamster', 'teenager', 'loyalist', 'dynamic', 'down', 'antic', 'concessionaire', 'probing', 'Start', 'Want', 'rocket', 'citizen', 'footstep', 'bird', 'critic', 'Dean', 'bootlegger', 'orchard', 'merchant', 'traitor', 'friend', 'Job', 'overture', 'chop', 'guerrilla', 'bound', 'commune', 'shrub', 'biscuit', 'Cost', 'inmate', 'bean', 'short', 'robot', 'dependent', 'denomination', 'Regulation', 'emerald', 'cleaner', 'asset', 'wary', 'Invitation', 'survivalist', 'antiquarian', 'grower', '1970', 'Mine', 'thicket', 'follower', 'Line', 'bomb', 'compound', 'fragment', 'dictate'}
# Question 15.2
brown_tag = brown.tagged_words()
#empty dict
distinct = {}
for word, tag in brown_tag:
if word in distinct:
distinct[word].add(tag)
else:
distinct[word] = {tag}
# find word with most distinct tags
most_tagged_word = max(distinct, key=lambda x: len(distinct[x]))
print("Word with the most distinct tags:", most_tagged_word)
print("Tags this word has:", distinct[most_tagged_word])
print("These tags are from the Penn Treebank POS tags. The word with the greatest number of distinct tags is 'that' and the tags are shown above. These tags represent CC (coordination conjunction), DT (determiners), NIL (not in lexicon), QL (qualifier) and prepositons.")
Word with the most distinct tags: that
Tags this word has: {'CS-HL', 'DT', 'WPO', 'CS', 'QL', 'WPS', 'NIL', 'WPS-NC', 'WPO-NC', 'WPS-HL', 'DT-NC', 'CS-NC'}
These tags are from the Penn Treebank POS tags. The word with the greatest number of distinct tags is 'that' and the tags are shown above. These tags represent CC (coordination conjunction), DT (determiners), NIL (not in lexicon), QL (qualifier) and prepositons.
# Question 15.3
tag_list = [t for (_, t) in brown_tagged]
fd = nltk.FreqDist(tag_list)
#print 20 most common
print ("The 20 most frequent tags represent the most common parts of speech in the text. These show the pos tags that have a more significant role in the text and can be used to analyze the type of text and structure.")
fd.most_common(20)
The 20 most frequent tags represent the most common parts of speech in the text. These show the pos tags that have a more significant role in the text and can be used to analyze the type of text and structure.
[('NN', 152470),
('IN', 120557),
('AT', 97959),
('JJ', 64028),
('.', 60638),
(',', 58156),
('NNS', 55110),
('CC', 37718),
('RB', 36464),
('NP', 34476),
('VB', 33693),
('VBN', 29186),
('VBD', 26167),
('CS', 22143),
('PPS', 18253),
('VBG', 17893),
('PP$', 16872),
('TO', 14918),
('PPSS', 13802),
('CD', 13510)]
# Question 15.4
# make bigrams to see pairs
pairs = nltk.bigrams(brown_tagged)
next_nouns = [b[1] for (a, b) in pairs if a[1].startswith('NN')]
f = nltk.FreqDist(next_nouns)
#show most common
print ("These tags represent the tags that most commonly precede nouns. This can help analyze the language and how the noun is used in context. ")
[tag for (tag, _) in f.most_common()]
These tags represent the tags that most commonly precede nouns. This can help analyze the language and how the noun is used in context.
['IN',
'.',
',',
'CC',
'NN',
'NNS',
'VBD',
'CS',
'MD',
'BEZ',
"''",
'RB',
'TO',
'BEDZ',
'VBN',
'WPS',
'NN-TL',
'VBZ',
'VB',
'BER',
'VBG',
'NP',
'JJ',
'AT',
'--',
'BED',
'WDT',
'IN-TL',
'PPS',
'HVD',
'PPSS',
'(',
'WRB',
'HVZ',
'CD',
':',
'QL',
'HV',
')',
'CD-TL',
'RP',
'IN-HL',
'DT',
'``',
'NNS-TL',
'AP',
'NR',
'NP-TL',
'NN-HL',
'RBR',
'.-HL',
'JJ-TL',
'BE',
'PP$',
'PPL',
'DOD',
'*',
'EX',
'CC-TL',
'DOZ',
'DO',
'WPO',
'MD*',
'WP$',
'NP$',
'ABN',
'NNS-HL',
'BEG',
'JJR',
"'",
':-HL',
'CC-HL',
'DTI',
'PN',
'NN$',
'CD-HL',
'VBN-HL',
',-HL',
'DTS',
'PPLS',
'NN$-TL',
'HVG',
'ABX',
'NN-TL-HL',
'NP$-TL',
'DOD*',
'VBG-TL',
'VBZ-HL',
'BEN',
'JJT',
'PPSS+MD',
'BEZ-HL',
'NPS',
'DO*',
'PPSS+HV',
'DOZ*',
'OD',
'TO-HL',
'JJ-HL',
'NP-HL',
'JJS',
'BEZ*',
'PPO',
'CD-TL-HL',
'WQL',
'PPS+MD',
'VBG-HL',
'---HL',
'RBT',
'BEDZ*',
'NIL',
'PPS+HVD',
')-HL',
'VBN-TL',
'VB-TL',
'CS-HL',
'PPSS+BER',
'FW-WDT',
'AT-TL',
'MD-HL',
'VB-HL',
'(-HL',
'HVZ*',
'PPSS+HVD',
'AT-HL',
'NNS$',
'NPS-TL',
'NNS$-TL',
'JJ-NC',
'RP-HL',
'RB-HL',
'VBZ-TL',
'NN-NC',
'IN-NC',
'FW-IN',
'PPS+BEZ',
'EX+BEZ',
'BED*',
'BER*',
'RB-TL',
'BEZ-TL',
'NR-TL',
'IN-TL-HL',
'TO-TL',
'AT-NC',
'HVD*',
'FW-NN',
'VBD-HL',
'WPS+BEZ',
'JJ-TL-HL',
'ABL',
'BER-TL',
'QLP',
'WPS-TL',
'BE-HL',
'RB-NC',
'WPS+HVD',
'BER-HL',
'DO-HL',
'OD-TL',
'WRB-HL',
'NP$-HL',
'HVZ-TL',
'PPSS-HL',
'VB+PPO',
'DTX',
'TO-NC',
'PPSS-NC',
'NNS-NC',
'BER-NC',
'.-NC',
'UH',
'JJR-HL',
'NPS$',
'FW-JJ-TL',
'QL-TL',
'FW-NNS',
'VBN-TL-HL',
',-NC',
'RP-NC',
'MD-NC',
'CS-NC',
'WPS-HL',
'WPS+HVZ',
'HV*',
'WPS+MD',
'PPS+HVZ',
'NN+BEZ',
'PPSS+BEM',
'JJT-HL',
'BEDZ-HL',
'NR-HL',
'DOZ-HL',
'PPL-HL',
'BE-TL',
'VBD-TL',
'PPO-TL',
'CC-TL-HL',
'NPS-HL',
'VBN+TO',
'NNS-TL-HL',
'FW-NNS-TL',
'AP-HL',
'PP$-TL',
'JJR+CS',
'CS-TL',
'FW-RB',
'JJT-TL',
'.-TL',
'UH-TL',
'MD-TL',
'FW-VBG-TL',
'HV-HL',
'FW-NN-TL',
'FW-NNS-NC',
'HV-NC',
'HVZ-NC',
'CD-NC',
'VB-NC',
'QL-NC',
'OD-NC',
'VBZ-NC',
'WPS-NC',
'PP$-NC',
'DOD-NC',
'WPO-NC',
'WDT-NC',
'BEM',
'FW-VB',
'IN+PPO',
'TO+VB',
'NNS+MD',
'DT+BEZ',
'NN+HVZ',
'FW-JJ']
# Exercise 18a
brown_tag = brown.tagged_words(tagset='universal')
cond = nltk.ConditionalFreqDist(brown_tag)
proportion = sum(1 for word in cond if len(cond[word]) == 1) / len(cond)
print ("The proportion of word types that are always assigned the same pos tag is:")
print (proportion)
The proportion of word types that are always assigned the same pos tag is: 0.9358510087946198
# Exercise 18b
ambiguous = sum(1 for word in cond if len(cond[word]) > 1)
print(ambiguous)
3596
# Exercise 18c
word_count = len(brown.words())
final = ambiguous/word_count
final
0.0030968177527919585
#Exercise 18c using set
word_count = len(set(brown.words()))
final = ambiguous/word_count
final
0.06414899120538024
# Exercise 20a
text = brown.words()
word_tags = nltk.pos_tag(text)
md_tags = [word for (word, pos) in word_tags if pos == "MD"]
md_tags = sorted(set(md_tags))
print("Distinct words tagged as MD:", md_tags)
#its in alphabetical order, but the uppercase words are first
# since the question didn't ask to switch the words to lowercase,
#i assumed that this is okay
Distinct words tagged as MD: ['Can', 'Could', 'Ought', 'Should', 'Was', 'Will', 'Would', 'Wright', "You're", 'can', 'could', 'fifth', "hadn't", 'may', 'might', 'must', 'need', 'non', "o'", 'obeys', "ordinary's", 'ought', 'oughta', 'overnight', 'shall', 'should', 'will', 'would', "wouldn't"]
# Exercise 20b
plural_nouns_3rd_person_singular_verbs = defaultdict(int)
for (word, pos) in tagged_words:
if pos == "NNS" or (pos == "VBZ" and word.endswith("s")):
plural_nouns_3rd_person_singular_verbs[word] += 1
print("Words that can be plural nouns or third person singular verbs:", list(plural_nouns_3rd_person_singular_verbs.keys()))
Words that can be plural nouns or third person singular verbs: ['irregularities', 'presentments', 'deserves', 'thanks', 'reports', 'voters', 'laws', 'legislators', 'topics', 'departments', 'practices', 'governments', 'believes', 'offices', 'is', 'personnel', 'policies', 'steps', 'funds', 'services', 'homes', 'items', 'has', 'counties', 'receives', 'jurors', 'taxpayers', 'appraisers', 'guardians', 'administrators', 'fees', 'Wards', 'procedures', 'recommendations', 'juries', 'citizens', 'actions', 'wards', 'costs', 'servants', 'criticisms', 'takes', 'influences', 'concessionaires', 'prices', 'deputies', 'matters', 'officials', 'employes', 'farms', 'goes', 'expires', 'responses', 'petitions', 'precincts', 'signatures', 'dissents', 'says', 'courses', 'names', 'candidates', 'opposes', 'relations', 'years', 'starts', 'areas', 'adjustments', 'chambers', 'bonds', 'courts', 'sales', 'contracts', 'highways', 'intends', 'ones', 'authorities', 'roads', 'plans', 'allowances', 'details', 'raises', 'sessions', 'members', 'congressmen', 'does', 'votes', 'polls', 'calls', 'threats', 'days', 'protests', 'bankers', 'Legislatures', 'rules', 'questions', 'witnesses', 'dollars', 'means', 'books', 'permits', 'accounts', 'stocks', 'persons', 'banks', 'firms', 'companies', 'corporations', 'obligations', 'depositors', 'customers', 'millions', 'pockets', 'schools', 'students', 'children', 'savings', 'scholastics', 'parimutuels', 'expects', 'folks', 'thinks', 'letters', 'people', 'ponies', 'faces', 'cities', 'bills', 'committees', 'acts', 'districts', 'senators', 'gifts', 'donations', 'retailers', 'taxes', 'brokers', 'sites', 'reservoirs', 'vacancies', 'elections', 'representatives', 'kept', 'majorities', 'Opponents', 'proposals', 'needs', 'places', 'Statements', 'defenders', 'methods', 'teaches', 'hours', 'teachers', 'subjects', 'physics', 'co-signers', 'regents', 'holds', 'Principals', 'causes', 'recipients', 'problems', 'cases', 'skills', 'breakups', 'relatives', 'parents', 'projects', 'defendants', 'police', 'statements', 'observers', 'attorneys', 'policemen', 'aspects', 'others', 'amounts', 'portions', 'aids', 'Decisions', 'drafts', 'advisers', 'decisions', 'demands', 'rights', 'proceedings', 'hearings', 'subpenas', 'individuals', 'judges', 'processes', 'workers', 'programs', 'requests', 'grants', 'scholarships', 'boosts', 'Outlays', 'benefits', 'figures', 'parts', 'carries', 'systems', 'stays', 'states', 'requirements', 'hospitals', 'doctors', 'Contributions', 'contributions', 'Officials', 'facilities', 'elements', 'lines', 'Legislators', 'ayes', 'noes', 'appointments', 'selections', 'discussions', 'meetings', 'changes', 'ministers', 'powers', 'difficulties', 'tragedies', 'allies', 'circumstances', 'troubles', 'weeks', 'critics', 'positions', 'surprises', 'cars', 'manifestations', 'arms', 'speeches', 'points', 'setbacks', 'correspondents', 'spots', 'events', 'months', 'submarines', 'waters', 'societies', 'directions', 'countries', 'forces', 'moves', 'erupts', 'attacks', 'hopes', 'Policies', 'modifications', 'excuses', 'errors', 'spokesmen', 'reforms', 'confrontations', 'arises', 'feels', 'understates', 'blunders', 'politics', 'educators', 'pleads', 'groups', 'recommends', 'efforts', 'conditions', 'feeds', 'victories', 'opinions', 'professors', 'channels', 'negotiations', 'nations', 'losses', 'neighbors', 'ideas', 'asks', 'Offenses', 'communities', 'stems', 'arrests', 'offenders', 'residents', 'men', 'radios', 'sirens', 'trucks', 'grounds', 'intervals', 'fails', 'things', 'classes', 'drifts', 'revisions', 'urges', 'views', 'confronts', 'officers', 'statutes', 'instances', 'times', 'types', 'foods', 'stores', 'supermarkets', 'shops', 'thousands', 'declares', 'licenses', 'outlets', 'Liberals', 'conservatives', 'parties', 'utilities', 'resources', 'favors', 'increases', 'manufacturers', 'governs', 'canvassers', 'happens', 'completes', 'justices', 'comes', 'posts', 'pretenses', 'signers', 'motorists', 'offenses', 'fines', 'women', "he's", 'remains', 'issues', 'uses', 'minutes', 'looks', 'crises', 'ways', 'vehicles', 'stands', 'Defends', 'intentions', 'opponents', 'leaders', 'managers', 'ballots', 'represents', 'Sheets', 'machines', 'results', 'fits', 'credits', 'fires', 'techniques', 'plows', 'units', 'wardens', 'Attacks', 'feet', 'slogans', "we'll", 'signs', 'hoodlums', 'lives', 'breathes', 'tracts', 'municipalities', 'colleagues', 'terms', 'elephants', 'tusks', 'retirements', 'mates', 'visits', "leader's", 'choices', 'talks', 'seems', 'interviews', 'reporters', 'remarks', 'politicians', 'writes', 'reasons', 'scandals', 'investigations', 'newspapers', 'forecasts', 'depends', 'provides', 'mortgages', 'down-payments', 'families', 'slums', 'colleges', 'dormitories', 'appears', 'loans', 'languages', 'mathematics', 'clears', 'agencies', 'universities', 'Interviews', 'goals', 'churchmen', 'pays', 'explains', 'forswears', 'proposes', 'estimates', 'technicians', 'experts', 'puts', 'jobs', 'inhabitants', 'affairs', 'neutralists', 'half-brothers', 'delegations', 'diplomats', 'Tactics', 'consultations', 'tactics', 'principles', 'factors', 'succeeds', 'seats', 'hundreds', 'ceremonies', 'buildings', 'shrines', 'monuments', 'begins', 'seven-stories', 'chapters', 'suffragettes', 'Seats', 'soldiers', 'records', 'presides', 'tracks', 'spectators', 'statues', 'branches', 'academies', 'representations', 'territories', 'developments', 'operates', 'keeps', 'foes', 'friends', 'edges', 'job-seekers', 'commitments', 'lawmakers', 'odds', 'eyes', 'crossroads', 'camps', 'loyalists', 'independents', 'ranks', 'Reports', 'flows', 'stresses', 'finances', 'revenues', 'inconsistencies', 'two-thirds', 'reconvenes', 'hands', 'purposes', 'forbids', 'expenses', 'alternatives', 'trims', 'allegations', 'followers', 'affiliations', 'bids', 'Estimates', 'contractors', 'shortcuts', 'disclosures', 'vouchers', 'charges', 'directors', 'Intervenes', 'violations', 'joints', 'repairs', 'rates', 'hotels', 'rooms', 'Testifies', 'houses', 'dwellings', 'accomodations', 'dogs', 'males', 'females', 'replies', 'owners', 'spends', 'collects', 'catchers', 'bites', 'Petitions', "years'", 'agreements', 'redevelopers', 'hazards', 'pedestrians', 'parks', 'apartments', 'churches', 'clusters', 'builders', 'sectors', 'walkways', 'eliminates', 'bridges', 'fighters', 'teamsters', 'fractures', 'ankles', 'sets', 'sons', 'flies', 'firemen', 'guards', 'pledges', 'paths', 'ours', 'doors', 'gives', 'peoples', 'goods', 'products', 'towards', 'lots', 'mothers', 'blueprints', 'specifications', 'speakers', 'Polls', 'seeks', 'beliefs', 'delegates', 'trends', 'truths', 'reads', 'scriptures', 'emphasizes', 'miracles', 'Assemblies', 'missions', 'loses', 'upwards', 'babies', 'meets', 'includes', 'centers', 'pastors', 'volunteers', 'laymen', 'graduates', 'apprentices', 'motions', 'Denials', 'trials', 'conspirators', 'mails', 'clubs', 'Indications', 'Birds', 'hits', 'frames', 'batters', 'runs', 'throws', 'blows', 'offerings', 'pitchers', 'doubles', 'chores', 'safeties', 'balls', 'pinch-hitters', 'pitches', 'tallies', 'errs', 'runners', 'homers', 'players', 'pounds', 'breaks', 'hitters', 'specialists', 'champions', 'crowds', 'games', 'coaches', 'teammates', 'hurlers', 'colts', 'stages', 'furlongs', 'races', 'celebrants', 'stewards', 'horses', 'gets', 'yards', 'thirds', 'tenths', 'Waters', 'plays', 'pads', 'tries', 'conversions', "there's", 'boys', 'helps', 'kicks', 'Footnotes', 'completions', 'attempts', 'insists', 'Longhorns', 'kids', 'performances', 'thrusts', 'reserves', 'sweat-suits', 'reckonings', 'collectors', 'quarterbacks', 'linebackers', 'movies', 'passes', 'touchdowns', 'strikes', 'ball-carriers', 'statistics', 'tosses', 'leads', 'averages', 'checks', 'baseballs', 'leagues', 'tests', 'viewers', 'innings', 'bases', 'Gaines', 'stops', 'Bingles', 'bobbles', 'lights', 'Twins', 'fans', 'reflexes', 'at-bats', 'newsmen', 'chances', 'Sports', 'masses', 'pops', 'heroics', 'tongues', 'feats', 'achievements', 'hearts', 'guys', 'rookies', 'laurels', 'lefthanders', 'reaches', 'sluggers', 'Yankees', 'merits', 'boils', 'seasons', 'Bears', 'rulers', 'afternoons', 'injuries', 'champs', 'bleachers', 'works', 'ends', 'Eagles', 'aerials', 'cufflinks', 'awards', 'sports', 'follows', 'writers', 'personalities', 'barriers', 'disappointments', 'majors', 'matches', 'tournaments', 'incompetents', 'frustrations', 'athletics', 'respects', 'aggravates', 'pixies', 'zombies', 'banshees', 'bounds', 'shots', 'strokes', 'perturbed', 'duffers', 'hackers', 'echoes', 'knows', 'relieves', 'nerves', 'strings', 'competitors', 'Masters', 'rains', 'lies', 'fathers', 'amendments', 'teams', 'dates', 'Phillies', 'Pirates', 'Redbirds', 'plunkers', 'Cardinals', 'Cards', 'triumphs', 'Dodgers', 'Speakers', 'words', 'honors', 'faults', 'lettermen', 'defeats', 'trips', 'cows', 'talents', 'careers', 'expectations', 'Mays', 'heights', 'peaks', 'professionals', 'oats', 'sights', 'continues', 'Commies', 'Grounds', 'concerns', 'holidays', 'measles', 'bulletins', 'adds', 'uncles', 'aunts', 'ears', 'embassies', 'bushes', 'activities', 'dancers', 'dervishes', 'bows', 'invitations', 'singers', 'songs', 'translates', 'costumes', 'trees', 'streets', 'trains', 'shelters', 'nights', 'ethics', 'morals', 'appearances', 'makes', 'gals', 'phonies', 'phones', 'solicits', 'exhibitors', 'screenings', 'People', 'touches', 'charities', 'Packers', 'holders', 'clashes', 'bombs', 'peasants', 'struggles', 'roles', 'opens', 'medics', 'doings', 'tells', 'misses', 'lessons', 'suggestions', 'boxes', 'dies', 'Members', 'guests', 'suites', 'celebrates', 'Grandparents', 'Guests', 'juniors', 'decorations', 'qualities', 'covers', 'tasks', 'alcoholics', 'parolees', 'schedules', 'decides', 'wants', 'sees', 'presents', 'relearns', 'tickets', 'concerts', 'cookies', 'sweets', 'motel-keepers', 'suitcases', 'miles', 'motels', 'stations', 'wagons', 'restaurants', 'offers', 'accommodations', 'tastes', 'peculiarities', 'advertises', 'pools', 'adults', 'Motorists', 'tourists', 'chairs', 'towels', 'ants', 'Parents', 'attendants', 'appliques', 'bridesmaids', 'groomsmen', 'newlyweds', 'orchids', 'studies', 'promises', 'prospects', 'hats', 'festivities', 'oysters', 'specialties', 'effects', 'flowers', 'reproductions', 'shelves', 'bundles', 'dinners', 'fund-raisers', 'totals', 'husbands', 'hostesses', 'arrangements', 'duties', 'aides', 'controllers', 'decades', 'invites', 'temperatures', 'posters', 'paintings', 'sponsors', 'artists', 'Proceeds', 'levels', 'wins', 'Others', 'co-chairmen', 'chairmen', 'Majesties', 'hosts', 'attends', 'ladies', 'ballgowns', 'dances', 'panels', 'tiers', 'slippers', 'maids', 'ashes', 'roses', 'threads', 'sequins', 'beads', 'cuts', 'lay-offs', 'employees', 'supervisors', 'unions', 'wages', 'burns', 'discrepancies', 'bodies', 'suits', 'misunderstandings', 'notes', 'boards', 'Doctors', 'deficiencies', 'crews', 'storms', 'improvements', 'operations', 'laborers', 'tires', 'chains', 'merchants', 'observations', 'supplies', 'blades', 'freezes', 'victims', 'detectives', 'shootings', 'brothers', 'Simpkins', 'spirits', 'consists', 'seekers', 'components', 'structures', 'stairs', 'balconies', 'secrets', 'agents', 'designs', 'strongrooms', 'dots', 'marks', 'Refuses', '1960s', '$29,000', 'drawings', 'lawyers', 'clients', 'reactors', 'turbines', 'destroyers', 'ships', 'torpedoes', 'radiomen', 'signals', 'wavelengths', 'codes', 'lighters', 'narcotics', 'indictments', 'peddlers', 'addicts', 'rivalries', 'criminals', 'jealousies', 'grievances', 'mentions', 'compensations', 'comments', 'Attorneys', 'Pullings', 'youths', 'pardon', 'east', 'Lives', 'Charges', 'homeowners', 'caskets', 'fumes', 'girls', 'arrears', 'meals', 'Students', 'surpluses', 'Funds', 'proceeds', 'Expresses', 'Gets', 'troops', 'worsens', 'assaults', 'sources', 'claims', 'squads', 'tribunals', 'collaborators', 'executions', 'Arms', 'rebels', 'rifles', 'jails', 'priests', 'prisoners', 'by-laws', 'institutions', 'standards', 'privileges', 'conforms', 'provisions', 'obstacles', 'criteria', 'endowments', 'documents', 'applications', 'derives', 'occupants', 'lacerations', 'bruises', 'stand-ins', 'theaters', 'operators', 'profits', 'Survivors', 'sisters', 'daughters', 'scratches', 'uniforms', 'counts', 'entries', 'transfers', 'employments', 'pensions', 'acres', 'planes', 'crops', 'humans', 'computers', 'cameras', 'engineers', 'crashes', 'Troopers', 'Bursts', 'flames', "month's", 'commissioners', 'oks', 'data', 'handles', 'wheels', 'employ', 'arguments', 'weaknesses', 'communications', 'culminates', 'robberies', 'papers', 'grandchildren', 'Employes', 'functions', 'entertainers', 'Services', 'spices', 'stockholders', 'Youngsters', 'teenagers', 'youngsters', 'businesses', 'Participants', 'advisors', 'Advisors', 'shows', 'skies', 'fairgoers', 'Finalists', 'Results', 'ribbons', 'blues', 'eggs', 'championships', 'economics', 'appeals', 'assessors', 'assessments', 'Appeals', 'properties', 'pains', 'Thieves', 'furs', 'jewels', 'coins', 'intruders', 'rings', 'earrings', 'thieves', 'Drawers', 'cabinets', 'bedrooms', 'plants', 'collections', 'ribs', 'damages', 'lieutenants', 'Persons', 'Scores', 'contributors', 'pennies', 'nickels', 'dimes', 'quarters', 'alterations', 'beds', "months'", 'incidents', 'connections', 'controls', 'mistakes', 'experiments', 'farmers', 'birds', 'enemies', 'insects', 'rodents', 'grapes', 'blueberries', 'restrictions', 'wetlands', 'pesticides', 'tidelands', 'animals', 'pilots', 'Allies', 'rocket-bombs', 'surfaces', 'wings', 'ailerons', 'm.p.h.', 'Moments', 'flights', 'missiles', 'gliders', 'Elios', 'Nations', 'weapons', 'Governments', 'buddies', 'chiefs', 'prosecutors', 'gangsters', 'payments', 'janitors', 'workmen', 'factories', 'liens', 'lists', 'shares', 'Investors', 'inquiries', 'Letters', 'reams', 'underwriters', 'kinds', 'earnings', 'investors', 'run-ups', 'price-earnings', 'Foods', 'ratios', 'executives', 'abilities', 'mergers', 'turns', 'buyers', 'weighs', 'tons', 'gins', 'driers', 'cleaners', 'Factories', 'sells', 'employs', 'headquarters', 'heaters', 'extractors', 'separators', 'saws', 'bearings', 'dealers', 'makers', 'compacts', 'models', 'gains', 'Sales', 'Executives', 'winds', 'fields', 'seniors', 'appropriations', 'conferees', 'phases', 'Sacrifices', 'dangers', 'situations', 'Analysts', 'sidelines', 'orders', 'highs', 'lows', 'expenditures', 'equalizers', 'dares', 'securities', 'debentures', 'holdings', 'Gains', 'dividends', 'shareholders', 'finds', 'selects', 'queries', 'movements', 'railroads', 'Starts', 'businessmen', 'tilts', 'pickers', 'yields', 'Fields', 'supports', 'sections', 'exceptions', 'extends', 'Farmers', 'tractors', 'implements', 'appliances', 'chemicals', 'affects', 'shipments', 'inventories', 'shortages', 'economists', 'subsidies', 'receipts', 'marketings', 'percentages', 'materials', 'producers', 'assets', 'returns', 'allows', 'industries', 'deductions', 'particulars', 'Requests', 'suspects', 'revenuers', 'bars', 'liquidations', 'challenges', 'invoices', 'kickbacks', 'boats', 'distributions', 'upshots', 'briefs', 'Voters', 'entities', 'fashions', 'casuals', 'shoes', 'toes', 'heels', 'plaques', 'luncheons', 'showings', 'loves', 'clothes', 'prefers', 'deserts', 'creations', 'designers', 'pictures', 'likes', 'reminisces', 'pinks', 'reds', 'greens', 'Honors', 'serves', 'trustees', 'supporters', 'patrons', 'flourishes', 'coeds', 'buys', 'groceries', 'moans', 'dishes', 'snacks', 'tables', 'mastodons', 'potatoes', 'hides', 'bans', 'condiments', 'plates', 'hotdogs', 'characters', 'monks', 'robes', 'breasts', 'mushrooms', 'facets', 'woods', 'avoids', 'pieces', 'varieties', 'tiles', 'floors', 'walls', 'windows', 'outdoors', 'insets', 'arches', 'tops', 'chests', 'dressers', 'fabrics', 'tones', 'shades', 'wrinkles', 'forms', 'combines', 'bookcases', 'accessories', 'Invitations', 'dignitaries', 'Stetsons', 'vests', 'bluebonnets', 'silhouettes', 'couples', 'buses', 'bake-offs', 'finals', 'heads', 'arts', 'slides', 'renderings', 'reservations', 'passengers', 'Cocktails', 'needles', 'yarn', 'tapestries', 'continents', 'uprisings', 'raincoats', 'entails', 'rides', 'walks', 'crackpots', 'notices', 'numbers', 'addresses', 'residences', 'marriages', 'Stars', 'listings', 'Haskins', 'Changes', 'Esnards', 'Newcomers', 'puppets', 'lamps', 'inches', 'legs', 'whims', 'home-owners', 'decorators', 'cabinetmakers', 'antiques', 'knocks', 'homemakers', 'Housewives', 'craftsmen', 'skits', 'vocals', 'instrumentals', 'spotlights', 'drums', 'instruments', 'props', 'Kings', "let's", 'brings', 'capers', 'ringsiders', 'sidemen', 'skips', 'retains', 'chandeliers', 'steaks', 'chops', 'features', 'debuts', 'brunches', 'buffets', 'productions', 'ballets', 'Dancers', 'relationships', 'workshops', 'assemblies', 'Is', 'schoolers', 'vows', 'fundamentals', 'prayers', 'stories', 'becomes', 'engagements', 'assignments', 'performers', 'conductors', 'violinists', 'pianists', 'indicates', 'winners', 'contests', 'oops', 'dreams', 'harmonies', 'soloists', 'auspices', 'toys', 'firehouses', 'ages', 'sins', 'watchers', 'actors', 'films', 'knees', 'feathers', 'fairies', 'glories', 'moderates', 'poets', 'ventilates', 'fins', 'oases', 'gallons', 'headlights', 'Tires', 'clobbers', 'doormen', 'caps', 'furnishings', 'heirs', 'descendants', 'sofas', 'sidechairs', 'armchairs', 'antiquarians', 'associates', 'musicians', 'dozens', 'nuns', 'tours', 'visitors', 'benches', 'downstairs', 'sculptures', 'sphynxes', 'evenings', 'outsiders', 'rangers', 'colors', 'exchanges', 'realities', 'announcements', 'stakes', 'encounters', 'inroads', 'concessions', 'aims', 'smiles', 'debates', 'tensions', 'Developments', 'councils', 'pressures', 'organs', 'episodes', 'warnings', 'deliberations', 'reactions', 'instincts', 'adversaries', 'propaganda', 'conversations', 'notions', 'feelings', 'belongs', 'mechanisms', 'Mollusks', 'brethren', 'centuries', 'minorities', 'sacrifices', 'achieves', 'well-springs', 'sparks', 'blunts', 'produces', 'anomalies', "women's", 'enrollments', 'resembles', 'qualifications', 'emerges', 'interests', 'capabilities', 'owns', 'partners', 'spreads', 'conferences', 'Expressions', 'declines', 'invests', 'salaries', 'intangibles', 'titles', 'conclusions', 'administers', 'squabbles', 'stoppages', 'disputes', 'sums', 'undertakes', 'abuses', 'heavy-electrical-goods', 'enterprises', 'giants', 'muscles', 'survivors', 'fellows', 'enforcers', 'managements', 'facts', 'scapegoats', 'organizations', 'penalties', 'empires', 'sentences', 'prosecutions', 'pretends', 'organizers', 'commodities', 'bags', 'imposes', 'customs', 'monopolies', 'conspiracies', 'employers', 'combinations', 'hypocrisies', 'mechanics', 'defends', 'measures', 'injunctions', 'airlines', 'consumers', 'fronts', 'offensives', 'tanks', 'staffs', 'battalions', 'carriers', 'troopships', 'marines', 'sorts', 'drops', 'transports', 'gates', 'masquerades', 'noses', 'liberals', 'constituents', 'electors', 'Reprisals', 'whites', 'cloakrooms', 'caucuses', 'arenas', 'chairmanships', 'filibusters', 'three-fifths', 'Senators', 'Congresses', 'pros', 'holes', 'teeth', '10th', '13th', 'tears', 'Afterwards', 'rounds', 'jitters', 'footnotes', 'winnings', 'duels', 'golfers', 'consequences', 'treacheries', 'scoreboards', 'pars', 'birdies', 'moments', 'fairways', '180-degrees', 'drives', 'borders', 'Pitchers', 'bats', 'Experts', 'Always', 'paces', 'Roommates', "player's", 'enjoys', 'sleeps', 'roommates', 'backgrounds', 'stars', 'halfbacks', 'minors', 'recalls', 'backs', 'shoulders', 'purchases', 'minds', 'passages', 'photographers', 'occasions', 'shuns', 'gentlemen', 'idols', 'heroes', 'ties', 'cents', 'head-and-shoulders', 'stances', 'swings', 'bunters', 'seconds', 'fielders', 'cats', 'ensembles', 'spills', 'grips', 'vines', 'weeds', 'socks', 'tutors', 'classmates', 'rallies', 'crowns', 'virtues', 'eulogizers', 'impressions', 'jetliners', 'connotes', 'headlines', 'drivers', 'bellboys', 'Klees', 'prizes', 'treasures', 'classrooms', 'skins', 'investigators', 'Holmes', 'plaintiffs', 'grads', 'statesmen', 'successors', 'scholars', 'genes', 'researchers', 'tribes', 'boundaries', 'groupings', 'explorers', 'gunmen', 'dialects', 'religions', 'ranges', 'patients', 'disparities', 'imagines', 'beneficiaries', 'cartels', 'describes', 'carpenters', 'colonies', 'motivations', 'provinces', 'Well-wishers', 'frictions', 'tribesmen', 'civilians', 'paratroops', 'wars', 'mercenaries', 'picks', 'emissaries', 'stopovers', 'pirates', 'guns', 'skyjackers', 'recruits', 'hostages', 'fuels', 'hijackers', '707', 'shadows', 'Cubans', 'slugs', 'engines', 'Ambulances', 'stewardesses', 'Simmons', 'mutterers', 'bombers', 'smelts', 'Holders', 'turnpikes', 'Things', 'streams', 'speculations', 'investments', 'rises', 'lags', 'Costs', 'successes', 'extensions', 'tolls', 'opportunities', 'planners', 'margins', 'typewriters', 'enables', 'earns', "It's", 'exports', 'textiles', 'imports', 'quotas', 'miners', 'mouths', 'takings', 'markets', 'mines', 'seams', 'rentals', 'variations', 'libraries', 'readers', 'lovers', 'budgets', 'limitations', 'contrasts', 'maintains', 'advantages', 'librarians', 'requires', 'volumes', 'develops', 'recognizes', 'tools', 'periodicals', 'saves', 'discounts', 'Books', 'classics', 'Workshops', 'understands', 'responsibilities', 'conducts', 'copies', 'grassroots', 'prepares', 'displays', 'booklists', 'brochures', 'publishes', 'newcomers', 'teen-agers', 'co-ops', 'advances', 'falls', 'grows', 'pupils', 'adjourns', 'musts', 'limits', 'fireworks', 'resolutions', 'answers', 'governors', 'wolves', 'cons', 'strengthens', 'removes', 'hers', 'aggressions', 'junks', 'builds', 'imperialists', 'sounds', 'nurses', 'Patients', 'behooves', 'scores', 'deaths', 'schemes', 'tends', 'lobbies', "country's", 'confines', 'coalesces', 'creates', 'barricades', 'zones', 'taunts', 'exists', 'fusillades', 'misgivings', 'indignities', 'canyons', 'seas', 'valleys', 'specimens', 'folds', 'settlers', 'commercials', 'ads', 'soft-drinks', 'ills', 'shortcomings', 'regulars', 'bosses', 'sticks', 'dealings', 'bluffs', 'Casualties', 'awaits', 'departs', 'partisans', 'audiences', 'generations', 'presidents', 'campaigns', 'airmen', 'murderers', 'atrocities', 'savages', 'Does', 'rapes', 'mutinies', 'adventures', 'occurrences', 'telegraphers', 'discloses', 'Meditations', 'internationalists', 'lads', 'dimensions', 'domes', 'conventions', 'contents', 'moralities', 'rations', 'truckers', 'hangs', 'bullets', 'conflicts', 'solutions', 'outbreaks', 'ventures', 'complaints', 'Problems', 'approaches', 'veers', 'joiners', 'accusations', 'disagrees', 'extremists', 'confusions', 'apprehensions', 'fleas', 'islands', 'developers', 'sands', 'objections', 'commissions', 'guarantees', 'loopholes', 'rationalizations', 'warships', 'growers', 'rows', 'layers', 'discuss', 'assistants', 'subordinates', 'marauders', 'concedes', 'convictions', 'forecasters', 'presses', 'spaces', 'herons', 'warns', 'shorelines', 'preserves', 'egrets', 'dunes', 'applicants', 'confirms', 'reinforces', 'findings', 'sits', 'reflects', 'sides', 'reformers', 'primaries', 'badges', 'sachems', 'balks', 'cartoonists', 'stripes', 'refugees', 'rests', 'prerogatives', 'Ex-Presidents', 'discourses', 'fares', 'cruises', 'guerrillas', 'floods', 'divisions', '$1,450,000,000', 'controversies', 'axes', 'fears', 'instructions', 'revolves', 'beings', 'magic', 'franchises', 'leases', 'Presidents', 'Highways', 'sewers', 'injustices', 'blankets', 'publishers', 'editors', 'imbalances', 'freedoms', 'clues', 'labels', 'villains', 'accuses', 'implications', 'Representatives', 'stamps', 'newsletters', 'postmen', 'loads', 'creditors', 'seeds', 'vegetables', 'cans', 'rivers', 'shines', 'finishes', 'beans', 'tomatoes', 'grudges', 'trespasses', 'disciples', 'debts', 'implies', 'squeals', 'Cokes', 'signposts', 'wonders', 'periods', 'cartoons', 'cynics', 'parishioners', 'believers', 'riches', 'congregations', 'conceptions', 'satisfactions', 'bucks', 'bears', 'saints', 'sinners', 'suffers', 'hooks', 'voices', 'asters', 'butterflies', 'bidders', 'crickets', 'examples', 'grades', 'realizes', 'counters', 'establishments', 'bombings', 'neighborhoods', 'depots', 'objects', 'freeways', 'spies', 'pokes', 'lanes', 'natives', 'Richards', 'indications', 'platoons', "it's", 'treats', 'experiences', 'fingers', 'stiffens', 'pushes', 'straightens', 'rituals', 'traits', 'crayons', "isn't", 'circles', 'versions', 'suggests', 'patterns', 'handicrafts', 'wraps', 'clubrooms', 'backyards', 'dissensions', 'officeholders', 'Plans', 'Blueprints', 'Arrangements', 'participates', 'predicts', 'favorites', 'bodes', 'hopefuls', 'incumbents', 'considers', 'aspirants', 'strategists', 'illustrates', 'committeemen', 'shapes', 'sizes', 'motives', 'crimes', 'excerpts', 'mouthpieces', 'hysteria', 'munitions', 'Quotations', 'exercises', 'predecessors', 'armaments', 'listeners', 'Britons', 'chestnuts', 'currents', 'rattles', 'rockets', 'suspensions', 'essays', 'weeklies', 'fortunes', 'subscribers', 'staircases', 'grandmothers', 'glasses', 'hoosegows', 'Inmates', 'convicts', 'locks', 'inmates', 'escapees', 'loyalties', 'Apologies', 'fills', 'carpets', 'archives', 'breakfasts', 'messages', 'congratulations', 'translations', 'inaccuracies', 'manuscripts', 'readings', 'phrases', 'verses', 'heavens', 'teachings', 'blessings', 'Discoveries', 'writings', 'pavements', 'leathers', 'styles', 'perforations', 'textures', 'Styles', 'semi-heights', 'pumps', 'hues', 'throats', 'weaves', 'sandals', 'pastels', 'Spectators', 'Flats', 'buttons', 'brushes', 'dentists', 'crevices', 'anteriors', 'bristles', 'gums', 'disorders', 'awakens', 'tendons', 'bones', 'baths', 'pores', 'glands', 'possibilities', 'phonetics', 'histrionics', 'sages', 'albums', 'Productions', 'presentations', 'recordings', 'vocabularies', 'Thanks', 'buffs', 'releases', 'Adventures', 'guides', 'upsets', 'fifties', 'brains', 'dabbles', 'suckers', 'senses', 'explanations', 'clings', 'motivates', 'desires', 'temptations', 'knick-knacks', 'substitutes', 'magazines', 'Toys', "won't", 'snatches', 'Actions', 'scenes', 'lions', 'uncertainties', 'homecomings', 'wanders', 'leaves', 'Undergraduates', 'undergraduates', 'glances', 'bifocals', 'persimmons', 'hails', 'eyeglasses', 'wears', 'puffs', 'pants', 'sleeves', 'remembers', 'kick-offs', 'tackles', 'squirms', 'populations', 'towns', 'Errors', 'carts', 'Smokers', 'makings', 'allegiances', 'Politics', 'spenders', 'oaths', 'visions', 'Congressmen', "they'd", 'Faces', 'locations', 'migrants', 'exemptions', 'additions', 'compounds', 'editorials', 'utilizes', 'Feelers', 'concepts', 'Words', 'veterans', 'disabilities', 'wishes', 'fosters', 'Questions', 'scientists', 'shorts', 'Subsidies', 'riders', 'week-ends', 'cutters', 'freezers', 'wives', 'Judges', 'proprietors', 'premises', 'welcomes', 'articles', 'Copies', 'judgments', 'considerations', 'agrees', 'drinks', 'thru', 'regulations', 'regions', 'Workers', 'loaders', 'Supports', 'applies', 'cohorts', 'oppressors', 'burdens', 'freeholders', 'moneys', 'trades', 'muggers', 'Praises', 'booths', 'stumps', 'sediments', 'grains', 'spores', 'microfossils', 'dinosaurs', 'burglars', 'landlords', 'terraces', 'fountains', 'gardens', 'cafes', 'fall-outs', 'ducks', 'lands', 'equals', 'exceeds', "amendment's", 'prevents', 'tens', 'donates', 'crafts', 'Visitors', 'ordinances', 'Minutes', 'Writers', 'automobiles', 'waits', 'dropouts', 'wrongs', 'proves', 'rocks', 'Soviets', 'dictates', 'insignificances', 'tunnels', 'ferries', 'crossings', 'curves', 'dictators', 'dislikes', 'sentiments', 'Starlings', 'blackbirds', 'gangs', 'delinquents', 'thugs', 'rapists', 'subversives', 'creatures', 'occurs', 'chimes', 'push-ups', 'stand-ups', 'calisthenics', 'ideals', 'targets', 'predictions', 'soothsayers', 'megatons', 'threatens', 'contestants', 'footsteps', 'strives', 'satellites', 'paeans', 'publicists', 'departures', 'arrivals', 'blocks', 'Tanks', 'commentators', 'gallows', 'punishments', 'deplores', 'morticians', 'exhumations', 'rehabilitations', 'misdeeds', 'augurs', 'compromises', 'precedents', 'pessimists', 'hills', 'mentalities', 'connotations', 'Friends', 'invaders', 'carbines', 'pistols', 'traitors', 'gods', 'media', 'awnings', 'ambassadors', 'grinds', 'Americans', 'adherents', 'Governors', 'blasts', 'descends', 'devices', 'balloons', 'depths', 'substances', 'particles', 'bets', 'defects', 'stillbirths', 'diseases', 'generalizations', 'shies', 'doses', 'sidewalks', 'Japanese', "'50's", 'presupposes', 'demonstrates', 'ourselves', 'ecumenicists', 'theologians', 'reverses', 'pervades', 'projections', 'persists', 'intransigents', 'apologies', 'Ethics', 'Protestants', 'Sessions', 'participants', 'differences', 'insights', 'thoughts', 'sixty', 'sympathies', 'generals', 'admirals', 'cousins', 'nephews', 'privations', 'idiocies', 'arrives', 'scars', 'frontiers', 'gestures', 'rags', 'emergencies', 'clouds', 'blacks', 'reappears', 'exposes', 'cycles', 'cannot', 'kills', 'Katangans', 'constitutes', 'puzzles', 'unoriginals', 'premieres', 'adaptations', 'owes', 'originals', 'musicals', 'novels', 'farces', 'Originals', 'Adaptations', 'adapters', 'masters', 'playwrights', 'Yorkers', 'nightclubs', 'Gardens', 'saloons', 'boites', 'Customers', 'graces', 'orchestras', 'guitars', 'violins', 'dresses', 'shifts', 'glides', 'sideways', 'migrates', 'sends', 'ripples', 'fingertips', 'speeds', 'greetings', 'improvisations', 'bends', 'provokes', 'tips', 'abdomen', 'veils', 'origins', 'picnics', 'miniatures', 'cascades', 'seamen', 'sweaters', 'handkerchiefs', 'sailors', 'painters', 'landscapes', 'cityscapes', 'tantrums', 'impressionists', 'inhibitions', 'collars', 'gutters', 'portraits', 'nudes', 'self-portraits', 'journals', 'proud', 'formulas', 'kolkhozes', 'thrives', 'plots', 'admissions', 'prides', 'doubts', 'rents', 'quarrels', 'rejects', 'symptoms', 'prophecies', 'suspicions', 'anti-Communists', 'maneuvers', 'helmets', 'sheriffs', 'contretemps', 'shells', 'trails', 'grenades', 'casualties', 'chooses', 'ramifications', 'nationalisms', 'values', 'wounds', 'libertarians', 'compete', 'pages', 'disruptions', 'deferments', 'corners', 'taverns', 'broadcasts', 'confuses', 'foreigners', 'Tigers', 'insurgents', 'Loses', 'bothers', 'Congratulations', 'Reprints', 'Facts', 'journalists', 'liabilities', 'networks', 'tapes', 'transcripts', 're-runs', 'instructors', 'practitioners', 'commits', 'submits', 'commentaries', 'lectures', 'falsehoods', 'historians', 'casts', 'recitals', 'unlocks', 'orchestra', 'flounders', 'lets', 'tunes', 'lacks', 'absurdities', 'minus', 'bookers', 'bookings', 'Sundays', 'Abstractions', 'semi-abstractions', 'shenanigans', 'eccentrics', 'collisions', 'stirs', 'simplicities', 'courtiers', 'pheasants', 'conjures', 'herds', 'embodies', 'patinas', 'planks', 'kitchens', 'butlers', 'cooks', 'poaches', 'callers', 'tales', 'dines', 'escapades', 'performs', 'museums', 'hypocrites', 'rogues', 'complexities', 'subtleties', 'comedians', 'oftentimes', 'buffoons', 'concludes', 'haunts', 'trimmings', 'Projects', 'luminaries', 'closeups', 'poles', 'teens', 'memorabilia', 'samples', 'cheers', 'operagoers', 'blemishes', 'bands', 'interruptions', 'jackets', 'discs', 'xylophones', 'castanets', 'left', 'memories', "didn't", 'frequencies', 'potentialities', 'studios', 'sketches', 'interiors', 'paraphernalia', 'involves', 'intrigues', 'twists', 'storylines', 'acoustics', 'eschews', 'refers', 'Works', 'commands', 'composers', 'technicalities', 'counter-moves', 'battles', 'jungles', 'priorities', 'Parts', 'anecdotes', 'praises', 'remnants', 'logistics', 'airdrops', 'airstrips', 'barges', 'frank', 'depresses', 'commanders', 'madrigals', 'motets', 'prodigies', 'Lines', 'accompaniments', 'pauses', 'closes', 'settings', 'daisies', 'hires', 'finger-tips', 'cliches', 'irritations', 'souls', 'enters', 'lingers', 'overcomes', 'lyrics', 'chords', 'evocations', 'gowns', 'chorines', 'principals', 'novelties', 'ward-heelers', 'routines', 'hereabouts', 'Yalies', 'collegians', 'Dolores', 'despoilers', 'fracases', 'felicities', 'castles', 'polemics', 'recriminations', 'comprises', 'word-games', 'palindromes', 'paraphrases', 'parodies', 'associations', 'vistas', 'Ear-Muffs', 'potions', 'announcers', 'shadings', 'essences', 'shams', 'self-deceptions', 'thirties', 'stupidities', 'Dulles', 'foibles', 'mortals', 'vices', 'captions', 'epigrams', 'despots', 'rats', 'bullies', 'fables', 'possesses', 'appraisals', 'revolutions', 'architects', 'settlements', 'objectives', 'disadvantages', 'complications', 'purges', 'speaks', 'preconceptions', 'instalments', 'characterizations', 'autocrats', 'tirades', 'silences', 'orations', 'prejudices', 'cards', 'misplacements', 'flashes', 'fists', 'marries', 'scraps', 'limbs', 'impersonates', "that's", 'sings', 'exhibits', 'biddies', 'roars', 'sneers', 'ballads', 'lasses', 'kilts', 'theatergoers', 'pleasures', 'attributes', 'creaks', 'goodies', 'deeds', 'holdovers', 'chansons', 'impulses', 'sonatas', 'operas', 'traditions', 'choruses', 'catches', 'glees', 'traces', 'revivals', 'countrymen', 'equivalents', 'expressions', 'characteristics', 'occupies', 'Sonates', 'disks', 'contemporaries', 'shakes', 'elegances', 'instrumentalists', 'Maitres', 'contains', 'dissonances', 'folksongs', 'Selections', 'duets', 'Songs', 'Isles', 'essentials', 'librettists', 'extremes', 'churns', 'ditties', 'cares', 'compositions', 'jazzmen', 'Cares', 'Has', 'showmen', 'evidences', 'lenses', 'mixers', 'sheets', 'microphones', 'haunches', 'encores', 'peals', 'aggregations', 'glimpses', 'wet', 'vocalists', 'late-comers', 'accompanists', 'oldies', 'ballards', 'vibes', 'roots', 'slaves', 'sensations', 'Hendricks', 'Pianists', 'Sonatas', 'chantey', 'meanings', 'beckons', 'catalogues', 'esthetics', 'accents', 'phrasings', 'contours', 'deals', 'mores', 'diversions', 'idiosyncrasies', 'suburbs', 'glad', 'sonorities', 'hallmarks', 'melodies', 'gems', 'attractions', 'delivers', 'anthems', 'sparkles', 'idioms', 'Cranes', 'conquerors', 'peers', 'hinges', 'rivets', 'fjords', 'stags', 'swans', 'dolphins', 'porpoises', 'recounts', 'species', 'marshes', 'habits', 'lobes', 'drawers', 'marbles', 'manages', 'repeats', 'reminds', 'attracts', 'experimenters', 'clowns', 'observes', 'stares', 'draws', 'laughs', 'life-contracts', 'Blues', 'potboilers', 'out-of-doors', 'undergoes', 'argues', 'sues', 'miscellanies', 'diehards', 'tricks', 'madmen', 'searches', 'accomplishments', 'adagios', 'Flames', 'quantities', 'switches', 'cites', 'insiders', 'stretches', 'trusts', 'admires', 'platforms', 'celebrities', 'rewards', 'marches', 'strides', 'advertisers', 'salesmen', 'Advertisers', 'attitudes', 'Stations', 'boasts', 'rhythm-and-blues', 'quotes', 'ambitions', 'prints', 'illustrations', 'manners', 'pigments', 'genres', 'supplements', 'clotheslines', 'canvases', 'diaries', 'forgeries', 'interpretations', 'arpeggios', 'obsequies', 'sweepings', 'categories', 'cosmologists', 'mysteries', 'keys', 'theories', 'Theories', 'galaxies', 'Expands', 'expands', 'billions', 'gaps', 'contends', 'protons', 'electrons', 'Protons', 'atoms', 'charts', 'rays', 'hinders', 'gases', 'trappings', 'proclaims', 'happenings', 'intellectuals', 'clods', 'aesthetics', 'dedicates', 'lawns', 'sallies', 'chuckles', 'responds', 'jokes', 'umbrellas', 'trapdoors', 'misleads', 'highlights', 'frills', 'enthusiasts', 'combatants', 'stepladders', 'leaps', 'lifts', 'illusions', 'slices', 'labors', 'refinements', 'references', 'smells', 'ignores', 'summers', 'delights', 'tulips', 'petals', 'expresses', 'mansions', 'environs', 'lips', 'lamentations', 'guises', 'bleeps', 'bloops', 'maze', 'maidens', 'tints', 'keyed', 'dulls', 'pilgrimages', 'cavalcades', 'groves', 'aspen', 'maples', 'hardwoods', 'birches', 'forests', 'Berkshires', 'routes', 'varies', 'patches', 'nozzles', 'jets', 'indoors', 'greenhouses', 'conceals', 'hurts', 'possessions', 'troupes', 'overseas', 'Festivals', 'harvests', 'festivals', 'cranberries', 'anniversaries', 'parades', 'pageants', 'Movies', 'horrors', 'Records', 'devotees', 'pills', 'Waterways', 'capes', 'yachtsmen', 'logs', 'trailers', 'weekends', 'flotillas', 'boatsmen', 'shores', 'harbors', 'marinas', 'docks', 'ramps', 'sandbars', 'racers', 'shingles', 'laps', 'regattas', 'launches', 'northers', 'cruisers', 'yachters', 'stinkpotters', 'squalls', 'lakes', 'loops', 'regimen', 'precedes', 'ramblings', 'Hazards', 'Race-drivers', 'liberties', 'formalities', 'Rolls-Royces', 'race-drivers', 'submariners', 'machine-masters', 'mystics', 'fatalists', 'blunderings', 'envisages', 'Moses', 'stirrings', 'rambles', 'jogs', 'lbs.', 'gluttons', 'clucks', 'degrees', 'calories', 'panaceas', 'prunes', 'curds', 'concentrates', 'capsules', 'vitamins', 'tonics', '59-cents', 'directs', 'spans', 'skinfolds', 'woodcutters', 'coloreds', 'fats', 'Vitamins', 'Readings', 'milligrams', 'rejoices', 'worries', 'menu', 'diabetes', 'arteries', 'parasites', 'Says', 'premiums', 'hampers', 'restricts', 'adjusts', 'narcotizes', 'enhances', 'delicacies', 'fishes', 'eaters', 'nibblers', 'gobblers', 'dismisses', 'depressants', 'amphetamines', 'crutches', 'dieters', 'minerals', 'fatalities', 'accidents', 'Scientists', 'sterios', 'cells', 'gallstones', 'hormones', 'molecules', 'blockages', 'Explains', 'Keys', 'proteins', 'piles', 'narrows', 'irritates', 'deposits', 'seals', 'coronaries', 'synthesizes', 'hydrogens', 'exerts', 'rejections', 'understandings', 'Demons', 'angels', 'misconceptions', 'superstitions', 'excesses', 'witches', 'devils', 'unfolds', 'horns', 'absolutes', 'evil', 'sciences', 'prospers', 'misrepresents', 'symbols', 'ciphers', 'overestimates', 'pronouncements', 'mythologies', 'pundits', "theology's", 'formulations', 'qualifies', 'accepts', 'hermeneutics', 'frees', 'sphere', 'non-Catholics', 'bonfires', 'Englishmen', 'Tractarians', 'mornings', 'churchgoers', 'cathedrals', 'rolls', 'chapels', 'warehouses', 'Nonconformists', 'ironies', 'Catholics', 'Fathers', 'imprecations', 'seminarians', 'tutorials', 'clergymen', 'converts', 'immigrants', 'swoops', 'identifies', 'interprets', 'portrays', 'prompts', 'parallels', 'symbolizes', 'alters', 'pulpits', 'insults', 'assurances', 'heaves', 'convulsions', 'stratagems', 'apostates', 'loins', 'realms', 'histories', 'afterwards', 'bits', 'repressions', 'foundations', 'passions', 'abolitionists', 'poses', 'theses', 'commonplaces', 'canons', 'inspections', 'sermons', 'polities', 'founders', 'libertines', 'archangels', 'emotions', 'tides', 'bishops', 'capitalists', 'preachers', 'consciences', 'redactions', 'interpolations', 'modernists', 'appetites', 'affections', 'fruits', 'avenues', 'reveals', 'precepts', 'leadings', 'believeth', 'necks', 'suicides', 'fortune-tellers', 'mankind', 'defenses', 'longings', 'ailments', 'warts', 'tellers', 'tranquilizers', 'lounges', 'opiates', 'mounts', 'confessionals', 'promotes', 'curtains', 'infidels', 'belongings', 'loudspeakers', 'reconciles', 'mountains', 'desolations', 'cults', 'imaginations', 'hints', 'multiplies', 'diagonals', 'pairs', 'tendencies', 'inscriptions', 'mirrors', 'Directions', 'Metals', 'Colors', 'Tastes', 'Odors', 'Notes', 'Elements', 'fives', 'workings', 'Scholars', 'philosophers', 'maps', 'devotions', 'Duties', 'refreshments', 'filmstrips', 'examinations', 'denominations', 'Sponsors', 'Studies', 'Opportunities', 'Massacres', 'Institutions', 'defines', 'eventualities', 'nation-states', 'proportions', 'bigots', 'separates', 'inadequacies', 'non-Christians', 'justifications', 'theirs', 'Buddhists', 'missionaries', 'sects', 'cultures', 'jurists', 'multitudes', 'secularists', 'watches', 'probabilities', 'risks', 'worlds', 'analyzes', 'contingencies', 'distinctions', 'precautions', 'evils', 'affirms', 'anticipations', 'clothed', 'rebellions', 'endures', 'aspirations', 'assumptions', 'realtors', 'psychologists', 'ethicists', 'self-images', 'Judgments', 'agitators', 'Realtors', 'alumni', 'obscures', 'clauses', 'Data', 'anticipates', 'covenants', 'embraces', 'Yonkers', 'professions', 'attaches', 'peas', 'snows', 'oceans', 'planets', 'footballs', 'ellipses', 'orbits', 'spheres', 'electrodynamics', 'agnostics', 'atheists', "1920's", 'waves', 'scallops', 'programmes', 'strains', 'Quakers', 'endeavours', 'Transcendentalists', 'evangelists', 'freedmen', 'philanthropies', 'Individuals', 'lineages', 'ancestors', 'dualities', 'outrages', 'disasters', 'Westerners', 'constrictions', 'urns', 'magicians', 'morsels', 'hells', 'thousand', 'Promoters', 'Proponents', 'bonzes', 'doctrines', 'perturbations', 'exponents', 'mysticisms', 'riddles', 'preoccupations', 'gobbles', 'Exponents', 'Arhats', 'thou', 'sceneries', 'carryovers', 'demons', 'indulgences', 'Scriptures', 'Romans', 'Ephesians', 'Amen', 'amen', 'Evidences', 'abides', 'Philippians', 'Galatians', 'yourselves', 'Colossians', 'hears', 'sacraments', 'curses', 'yours', 'revellings', 'banquetings', 'lusts', 'brightens', 'Guideposts', 'leaflets', 'ingredients', 'down-and-outers', 'Hundreds', 'Thousands', 'chaplains', 'Forces', 'inducements', 'contributes', 'distances', 'prayer-requests', 'braces', 'hovers', 'Rumors', 'exiles', 'throes', 'mobs', 'rotogravures', 'schoolmates', 'gonna', 'weights', 'testimonials', "doesn't", 'widens', 'lats', 'deltoids', 'dumbbells', 'elbows', 'pectorals', 'affords', "You'll", 'workouts', 'bodybuilders', 'discovers', 'lengths', 'thighs', 'lifters', 'reps', 'cables', 'improves', 'pansies', 'Pansies', 'beauties', 'protects', 'Ants', 'encourages', 'feedings', 'mulch', 'seedlings', 'strawberries', 'blossoms', 'assures', 'Sometimes', 'eatings', 'lapses', 'delays', 'sprays', 'poisons', 'nutrients', 'acids', 'diets', 'clutches', 'Missiles', 'vessels', 'ballistics', 'cinders', 'airfields', 'hangars', 'runways', 'propulsions', 'powerplants', 'taxi-ways', 'classifiers', 'quintets', 'renditions', 'editions', 'sheds', 'differs', 'markings', 'superlatives', 'compliments', 'Arts', 'milestones', 'innovations', 'environments', 'reproduces', 'obtrudes', 'scrapes', 'clicks', 'noises', 'intrudes', 'charms', 'Finals', 'Juniors', 'ceases', 'Dogs', 'sportsmen', 'campaigners', 'Classes', 'Entries', 'intermediates', 'handlers', 'Superintendents', 'superintendents', 'trophies', 'breeds', 'pets', 'veterinarians', 'germs', 'fishermen', 'Boats', 'concentrations', 'coasts', 'wells', 'troughs', 'havens', 'Engineers', 'inboards', 'outboards', 'sailboats', 'horizons', 'canoes', 'houseboats', 'toilets', 'galleys', 'bunks', 'Designers', 'purchasers', 'motors', 'Terms', 'waterways', 'Fees', 'booklets', 'yachtels', 'boatels', 'Boatyards', 'boatyards', 'tappets', 'angles', 'notches', 'cams', 'pulls', 'levers', 'turnouts', 'insures', 'diagrams', 'rails', 'widths', 'spacers', 'screws', 'contacts', 'nuts', 'slots', 'Tappets', 'drill', 'progresses', 'puzzle', 'files', 'Equations', 'equations', 'Numbers', 'fractions', 'Charts', 'handbooks', 'constants', 'blanks', 'Factors', 'cylinders', 'Dimensions', 'centimeters', 'decimals', 'valves', 'liquids', 'beakers', 'thousandths', 'pistons', 'railbirds', 'hopples', 'worms', 'pacers', 'fillies', 'full-sisters', '2-year-olds', 'equines', 'three-quarters', 'barrels', 'compares', 'scales', 'rim-fires', 'calibers', 'brands', 'bores', 'scopes', 'cartridges', 'shotshells', 'clays', 'fastens', 'pellets', 'brakes', 'kid', 'hunters', 'handguns', 'orchards', 'trenchermen', 'halts', 'filets', 'sandwiches', 'botanists', 'ferns', 'pastilles', 'liniments', 'medicines', 'napkins', 'fritters', 'coachmen', 'herbs', 'whips', 'axles', 'funerals', 'Delawares', 'chives', 'galleries', 'boots', 'reins', 'uplands', 'inns', 'redwoods', 'bakes', 'splashes', 'stables', 'bins', 'rockers', 'sojourners', 'Acorns', 'oaks', 'pigs', 'sweepstakes', 'cloves', 'gherkins', 'tablespoons', 'walnuts', 'kegs', 'Vineyards', 'fences', 'panthers', 'pies', 'vineyards', 'apples', 'thereabouts', 'billets', 'battlefields', 'villages', 'beaches', 'townships', 'locales', 'Pictures', 'tripods', 'lighthouses', 'encompasses', 'spectacles', 're-enactments', 'visit', 'surroundings', 'photofloodlights', 'gorges', 'trademarks', 'shafts', 'scenics', 'farmlands', 'landmarks', 'cowboys', 'cattle', 'relives', 'carriages', 'autos', 'forts', 'sightseers', 'exposures', 'vacationers', 'formations', 'boulevards', 'spires', 'mosques', 'liners', 'empties', 'minarets', 'temples', 'buttresses', 'mosaics', 'emperors', 'sultans', 'Statues', 'serpents', 'pillars', 'towers', 'prisons', 'chimneys', 'utensils', 'cups', 'diamonds', 'swords', 'thrones', 'emeralds', 'pearls', 'divans', 'squares', 'coals', 'sauces', 'meats', 'halves', 'roasts', 'desserts', 'tongs', 'forks', 'drips', 'flares', 'saucers', 'platters', 'tablecloths', 'barbecues', '79-cents', 'coolers', 'hamburgers', 'stews', 'chowders', 'mugs', 'relishes', 'knives', '25-cents', 'franks', 'sausages', 'basics', 'gloves', 'buns', 'Years', 'franks-in-buns', 'juices', 'Relishes', 'extras', 'teaspoons', 'Makes', 'burners', 'frankfurters', 'chunks', 'tidbits', 'toppings', 'onions', 'servings', 'gashes', 'cup', 'strips', 'Serves', 'patties', 'Instructions', 'molds', 'Materials', 'stains', 'cones', 'bubbles', 'glazes', 'corrections', 'grooves', 'pinholes', 'craters', 'coats', 'Tiles', 'Jars', 'lids', 'Measurements', 'lid', 'jars', 'coils', 'Vases', 'shakers', 'candles', 'stitches', 'markers', 'bumpers', 'battens', 'nails', 'chines', 'gussets', 'transom', 'clamps', 'bevels', 'fastenings', 'floorboards', 'bulkheads', 'drains', 'cottages', 'measurements', 'timbers', 'wash-outs', 'springs', 'partitions', 'fixtures', 'louvers', 'thicknesses', 'attachments', 'swivels', 'Presses', 'bolts', 'pliers', "you'll", 'Feeds', 'drills', 'spurs', 'fibers', 'Times', 'Manners', 'abutments', 'piers', 'share-holders', 'relates', 'armies', 'pleas', 'publications', 'vies', 'momentoes', 'tokens', 'beams', 'burnings', 'combustibles', 'raiders', 'viewpoints', 'tubes', 'climes', 'flora', 'fauna', 'dips', 'home-comings', 'gatherings', 'fantasies', 'sharks', 'pool-owners', 'handymen', 'trunks', 'ratings', 'lashes', 'ringers', 'invitees', 'swimmers', 'conveniences', 'Life-preservers', 'localities', 'rots', 'paints', 'divers', 'bottles', 'plunges', 'lawsuits', 'alas', 'hydraulics', 'pins', 'dramatizes', 'pipes', 'know', 'ducts', 'colds', 'allergies', 'Clothes', 'naps', 'screens', 'Manufacturers', 'filters', 'conditioners', 'diffusers', 'radiators', 'winters', 'quits', 'Families', 'Coolers', 'overhangs', 'trellises', 'blinds', 'draperies', 'droves', 'photos', 'ownerships', 'potentials', 'overlooks', 'shrubs', 'cools', 'nourishes', 'waterfalls', 'Animals', 'flyways', 'agates', 'stones', 'caves', 'artifacts', 'slopes', 'outcrops', 'ballfields', 'Plants', 'Improvements', 'personifies', 'pranks', 'twenties', 'Traditionalists', 'Neo-Classicists', 'skeptics', 'broadcastings', 'symphonies', 'gavottes', 'Twenties', 'enthusiasms', 'salons', 'treaties', 'disciplines', 'torrents', 'forsakes', 'modulations', 'orchestrations', 'dialectics', 'experimentations', 'miscalculations', 'inspirations', 'admirers', 'postulates', 'proclamations', 'renunciations', 'by-products', 'fermentations', 'moods', 'rigors', 'watercolorists', 'expeditions', 'geese', 'commends', 'washes', 'flicks', 'watercolors', 'imparts', 'flaws', 'nubbins', 'sables', 'riggers', 'medals', 'memberships', 'gymnasts', 'athletes', 'gymnastics', 'stunts', 'headstands', 'handstands', 'cartwheels', 'backbends', 'flips', 'mats', 'infants', 'sustains', 'demonstrators', 'ballerinas', 'chin-ups', 'dashes', 'fours', 'Push-ups', 'Handstands', 'Backbends', 'acrobatics', 'palms', 'Somersaults', 'beginnings', 'electronics', 'Electronics', 'contusions', 'timers', 'laboratories', 'originates', 'bacteria', 'microorganisms', 'disrupts', 'replaces', 'specimen', 'amplifiers', 'outlines', 'transducers', 'meters', 'Outputs', 'receivers', 'cm.', 'bursts', 'Applications', 'Bones', 'lens', 'diameters', 'integrates', 'scans', 'Arteries', 'veins', 'Hans', 'Limits', 'francs', 'discoveries', 'phenomena', 'salts', 'faculties', 'chimiques', 'electriques', 'chemists', 'repulsions', 'analogies', 'additives', 'drugs', 'assumes', 'processors', 'parentheses', 'ruminants', 'Increases', 'abscesses', 'Calves', 'grams', 'scours', 'reduces', 'infections', 'milligram', 'calves', 'Aids', 'lambs', 'consumes', 'Improves', 'elevates', 'Cows', 'enzymes', 'preparations', "today's", 'tags', 'extracts', 'subtilis', 'polysiloxanes', 'droppings', 'rumen', 'Stimulates', 'Prevents', 'sixties', 'Companies', 'efficiencies', 'distributors', 'assertions', 'acquisitions', 'headaches', 'slants', 'niceties', 'Computers', 'economies', 'links', 'beats', "couldn't", 'Solutions', 'catalogs', 'necessities', 'furnishes', 'coverings', 'determines', 'supervises', 'exhibitions', 'denies', 'refuses', 'initials', 'rushes', 'confreres', 'offences', 'entitles', 'cafeteria', 'vacations', 'fill-ins', 'shutdowns', 'treatments', 'Unions', 'distributes', 'dollar-and-cents', 'dispensers', 'containers', 'drinkers', 'deadheads', 'retires', 'Holidays', 'absences', 'illnesses', 'layoffs', 'startups', 'Vacations', 'replacements', 'firearms', 'auto-loaders', 'small-arms', 'consultants', 'Personnel', 'Events', 'appreciations', 'assists', 'man-hours', 'seagulls', 'tents', 'parachutes', 'sunshades', 'stoves', 'lanterns', 'windbreaks', 'campgrounds', 'Dealers', 'campers', 'guesses', 'easy', 'campsites', 'Forests', 'rods', 'binoculars', 'splits', 'resorts', 'comforts', 'mattresses', 'remedies', 'fights', 'incomes', 'vice-presidents', 'classifications', 'quotations', 'secretaries', 'patents', 'Salaries', 'Operations', 'evaluations', 'tenants', 'lays', 'hookups', 'simplifies', 'shocks', 'easements', 'options', 'trenches', 'inhibitors', 'leaks', 'hoses', 'gaskets', 'fittings', 'bugs', 'fluids', 'breakdowns', 'zooms', 'thermostats', 'rigs', 'insulators', 'Discounts', 'reductions', 'deductibles', 'plastics', 'escutcheons', 'medallions', 'Plastics', 'mountings', 'Advances', 'dominates', 'resists', 'plastisols', 'incorporates', 'billboards', 'advancements', 'lumen', 'Panels', 'Signs', 'cutouts', 'triangles', 'characterizes', 'openings', 'lb.', 'brackets', 'installations', 'corrugations', 'erects', 'homebuilders', 'lessens', 'driveways', 'trusses', 'bulky', 'mills', '$.30/mbf', 'packets', 'carloads', 'packages', 'unloads', 'manhours', 'bricklayers', 'bricks', 'corner-posts', 'studs', 'forums', 'palaces', 'capitals', 'by-roads', 'Crusaders', 'stairways', 'crags', 'Moors', 'gourmets', 'Documents', 'sedans', 'racks', 'luxuries', 'Rates', 'reputations', 'kilometers', 'hinterlands', 'peanuts', 'Conclusions', 'junctures', 'linguistics', 'spring-joints', 'norms', 'linguists', 'sometimes', 'kinesics', 'spells', 'playbacks', 'psychiatrists', 'whereas', 'cues', 'therapists', 'flags', 'giveaways', 'chartings', 'catapults', 'psychotherapists', 'indicators', 'pronouns', 'x-rays', 'sea-horses', 'incendiaries', 'decks', 'raids', 'Jenks', 'squadrons', 'tracers', 'grins', 'blips', 'crewmen', 'airports', 'Junkers', 'casks', 'gunners', 'cries', 'confesses', 'previsions', 'coincidences', 'continuities', 'Skeptics', 'images', 'journeys', 'progressions', 'withstands', 'handicaps', 'lends', 'fertilizers', 'insecticides', 'wastes', 'pails', 'soils', 'fungicides', 'carrots', 'turnips', 'beets', 'Adults', 'pours', 'listens', 'cereals', 'Salads', 'Vegetables', 'salads', 'Lots', 'cheese', 'Hens', 'roosters', 'puddings', 'Apples', 'Oranges', 'spaghetti', 'loaves', 'residues', 'conserves', 'hikes', 'Wires', 'girders', 'Clerks', 'postmasters', 'two-seaters', 'takeoffs', 'landings', 'quarrymen', 'flyers', 'hops', 'terminals', 'aviators', 'backers', 'pouches', 'airplanes', 'vagaries', 'togs', 'felt', 'goggles', 'mittens', 'Ceilings', 'clocks', 'meadows', 'barnyards', 'repairmen', 'near-misses', 'barracks', 'Tracks', 'old-timers', 'looms', 'invalids', 'buttonholes', 'rugs', 'ceramics', 'cakes', 'candies', 'hands-off-all-sweets', 'gadgets', 'slips', 'hobbies', 'timetables', 'dolls', 'clippings', 'Days', 'forbears', 'blitzes', 'acrobats', 'nowadays', 'honeymooners', 'sex-manuals', 'gynecologists', 'hymen', 'exaggerations', 'hymens', 'newly-weds', 'manuals', 'learns', 'caresses', 'relaxes', 'dilates', 'physicians', 'prolongs', 'arouses', 'Differences', 'counselors', 'demeans', 'overtures', 'Milquetoasts', "'90s", 'Wives', 'Circumstances', 'tradesmen', 'yearnings', 'gamblers', 'halls', 'servitors', 'Newspapers', 'tumors', 'cysts', 'quacks', 'miseries', 'metals', 'wires', 'ticks', 'buzzes', 'Authorities', 'charlatans', 'frauds', 'relies', 'compresses', 'cures', 'oldsters', 'Quacks', 'sufferers', 'specializes', 'jaws', 'orthodontics', 'malformations', 'lowers', 'fangs', 'thumbs', 'interferes', 'molars', '$750', 'orthodontists', 'clinics', 'births', 'modifies', 'alginates', 'advises', 'prognoses', 'mediums', 'sensitives', 'sittings', 'twins', 'Methods', "foundation's", 'sitters', 'Hits', 'Significants', 'aches', 'odors', 'Impressions', 'irons', 'chickens', 'Returns', 'Advantages', 'plantings', 'Facilities', 'mains', 'graybeards', 'adolescents', 'corpses', 'recollections', 'Interruptions', 'anti-Semites', 'Jews', 'promulgators', 'accomplices', 'skull-bashings', 'gassings', 'patriots', 'fates', 'Jew-haters', 'compatriots', 'memoirs', 'rumbles', 'smolders', 'faiths', 'sensibilities', 'jibes', 'Non-Catholics', 'sanctions', 'contraceptives', 'regards', 'spouses', 'propositions', 'bootleggers', 'racketeers', 'Historians', 'geographers', 'qualms', 'voyages', 'forties', 'pimps', 'panders', 'whores', 'captains', 'headlands', 'mists', 'gateways', 'deltas', 'westwards', 'Hands', 'muskets', 'cabins', 'crofters', 'headwaters', 'aborigines', 'regiments', 'hoes', 'ravages', 'grasshoppers', 'fifty', 'huts', 'traders', 'pegs', 'withes', 'thills', 'Settlements', 'bushels', 'outposts', 'drovers', 'rafts', 'nets', 'plains', 'Selkirkers', 'vitals', 'comrades', 'Yanks', 'Southerners', 'leaches', 'modes', 'gray-backs', 'pups', 'maladies', 'bowels', 'escapes', 'blots', 'admonitions', 'soldier-masters', 'sweethearts', 'usages', 'companions', 'exploits', 'belles', 'theaf', 'secessionists', 'biches', 'guts', 'shucks', 'rascals', 'docters', 'do(c)ters', 'shavings', 'skunks', 'rewrites', 'legends', 'superimposes', 'myths', 'proverbs', 'rhymes', 'definitions', 'flag-wavers', 'sentimentalists', 'dramatists', 'heritages', 'Anthropologists', 'housewives', 'amateurs', 'propagandists', 'analysts', 'hunts', 'probings', 'Publishers', 'longs', 'Benets', 'murders', 'bouquets', 'wreaths', 'rackets', 'tenements', 'honkytonks', 'ten', 'waiters', 'vendors', 'interludes', 'holdups', 'pistoleers', 'bullyboys', 'ex-convicts', 'heelers', 'felons', 'fixers', 'rubies', 'feasts', 'tributes', 'bribers', 'nighters', 'beer-runners', 'cops', 'brothels', 'inundations', 'geologists', 'archaeologists', 'travels', 'swells', 'bathers', 'landslides', 'sardines', 'diatoms', 'earthquakes', 'alerts', 'calculations', 'reminders', 'Earthquakes', 'belts', 'Maneuvers', 'troopers', 'reinforcements', 'cavalrymen', 'stragglers', 'attackers', 'Reinforcements', 'paddies', 'supposes', 'reckons', 'Communists', 'diminishes', 'denials', 'policy-makers', 'conquests', 'backwoods', 'skirmishes', 'parliaments', 'auxiliaries', 'pretensions', 'counter-successes', 'Sounds', 'mortars', 'shutters', 'bicycles', 'thoroughfares', 'Mortars', 'terrorists', 'buffaloes', 'Oregonians', 'pirogues', 'Veterans', 'ruts', 'escorts', '105-degrees', 'notebooks', 'coatings', 'shovels', 'elders', 'coconuts', 'strode', 'shirts', 'notables', 'divinities', 'villagers', 'wrists', 'maggots', 'strivings', 'accords', 'beards', 'wryly', 'exertions', 'pursuits', 'counterparts', 'sexes', 'best-sellers', 'generates', 'certitudes', 'tentacles', 'co-ordinates', 'hordes', 'fraternities', 'sororities', 'advertisements', 'marts', 'watchings', 'pinnings', 'ringings', 'announces', 'Bruises', 'salves', 'poultices', 'parings', 'cloth', 'Rabies', 'madstones', 'sores', 'blisters', 'Felons', 'swellings', 'Chiggers', 'berries', 'pests', 'stings', 'Bedbugs', 'slats', 'Shingles', 'growths', 'chilblains', 'Chilblains', 'Boils', 'molasses', 'corns', 'calluses', 'cramps', 'Pains', 'sprains', 'wines', 'promoters', 'shippers', 'negociants', 'blends', 'palates', 'requisites', 'pocketbooks', 'bargains', 'dries', 'Burgundies', 'corks', 'furnaces', 'purists', 'warms', 'effaces', 'half-bottles', 'cradles', 'aerates', 'clarets', 'annoyances', 'planters', 'chattels', 'appointees', 'moderns', 'dans', 'Economics', 'Artists', 'paratroopers', 'credentials', 'first-families', 'attainments', 'dams', 'Ideas', 'Spokesmen', 'sculptors', 'memorials', 'tablets', 'perils', 'elms', 'travelers', 'riverbanks', 'voyageurs', 'kisses', 'skis', 'terrains', 'freshmen', 'climbs', 'competes', 'factions', 'charters', 'orators', 'pines', 'commencements', 'curriculums', 'hundred', 'Ivies', 'espouses', 'upstairs', 'bloodstains', 'pears', 'Mathematics', 'Customs', 'eclipses', 'hearers', 'boilers', 'bequests', 'Founders', 'hardships', 'occupations', 'learners', 'disappears', 'soybeans', 'Soybeans', 'grits', 'flakes', 'Peanuts', 'seedcoats', 'three-fourths', 'oils', 'byproducts', 'oilseeds', 'forages', 'Seeds', 'tung', 'varnishes', 'castorbeans', 'fragrances', 'cosmetics', 'soaps', 'explosives', 'detergents', 'resins', 'tubers', 'Gums', 'thickeners', 'stabilizers', 'thickens', 'dressings', 'lotions', 'slurries', 'lumps', 'kernel', 'kernels', 'cashews', 'filberts', 'hazelnuts', 'pecans', 'Almonds', 'Chestnuts', 'almonds', 'Exports', 'saponins', 'sassafras', 'perfumes', 'ornaments', 'rosaries', 'jobs-tears', 'necklaces', 'islanders', 'alkaloids', 'plasters', 'diluents', 'flavors', 'flavorings', 'beverages', 'pods', 'Beverages', 'Brewers', 'Distillers', 'strays', 'hosses', "'emselves", 'blizzards', 'droughts', 'ranchers', 'pilgrims', 'magpies', 'bovines', 'strippers', 'steers', 'hindquarters', 'grassers', 'frontiersmen', "man's", 'freighters', 'bullwhackers', 'wohaws', 'longhorns', 'bulls', 'splotches', 'yaks', 'buckskins', 'speckles', 'bellies', 'cattlemen', 'cowhands', 'mavericks', 'creepers', 'specks', 'cracks', 'fox-hounds', 'lava-rocks', 'graves', 'lionesses', 'firecrackers', 'crackers', 'rhinoceros', 'ropes', 'ropers', 'Means', 'parishes', 'prevails', 'shuts', 'perspectives', 'ecumenists', 'preferences', 'conceives', 'buggies', 'suspenders', 'kidneys', 'hay-shakers', 'grocers', 'eccentricities', 'knuckles', 'flagpoles', 'entertainments', 'wrappers', 'speculators', 'denominators', 'configurations', 'identities', 'alter-parents', 'consderations', 'Adolescents', 'nuances', 'resolves', 'transcends', 'inventors', 'bouts', 'Inventors', 'strictures', 'infringements', 'depositions', 'litigants', 'rims', 'freebooters', 'inventions', 'parts-suppliers', 'persuasions', 'bas-reliefs', 'Oleanders', 'civilizations', 'friezes', 'adjoins', 'cross', 'frescoes', 'Paintings', 'connects', 'columns', 'aristocrats', 'grottoes', 'cloisters', 'creams', 'patisseries', 'prostitutes', 'threes', 'civil-rights', 'paralyzes', 'Northerners', 'Negroes', 'taboos', 're-examines', 'shrinks', 'riots', 'rioters', 'revolutionists', 'nineties', 'snips', 'documentaries', 'travelogues', 'Plains', 'Melies', 'climaxes', 'registers', 'endows', 'robbers', 'overpowers', 'pursues', 'geniuses', 'presumes', 'sequences', 'actresses', 'purveyors', 'survives', 'perishes', 'Churches', 'statuses', 'balances', 'cross-purposes', 'intrusions', 'contradicts', 'stabilities', 'keynotes', 'imprisons', 'engages', 'habitants', 'pelts', 'Traders', 'Protests', 'intendants', 'insurrections', 'ruin', 'livres', 'Concessionaires', 'Engages', 'storehouses', 'Regulations', 'deerskins', 'Factions', 'enticements', 'Indies', 'Indians', 'fortifications', 'artisans', 'coureurs', 'Businessmen', 'restrains', 'sails', 'subdues', 'gazes', 'do-gooders', 'peccadilloes', 'Diplomats', 'whispers', 'bureaucrats', 'tumbrels', 'barren', 'legations', 'tails', 'chanceries', 'ministries', 'wits', 'larks', 'bromides', 'reflections', 'widows', 'Graduates', 'cupboards', 'suppositions', 'doers', 'pre-conditions', 'interpenetrates', 'demoralizes', 'Mennonites', 'Billions', 'shibboleths', 'anachronisms', 'outbursts', 'friendships', 'bastards', 'Accounts', 'displayed', 'courtesy', 'Virginians', 'enclaves', 'lowlands', 'sharers', 'inferences', 'Bourbons', 'racists', 'reactionaries', 'claimants', 'watersheds', 'Jurists', 'coincides', 'epitomizes', 'glorifies', 'fervors', 'quirks', 'sovereigns', 'exemplifies', 'abstractions', 'sidearms', 'cockpits', 'compartments', 'foxholes', 'consoles', 'physicists', 'pushers', 'scenarios', 'forefingers', 'Russians', 'thinkers', 'tankers', 'circuits', 'routings', 'senders', 'authentications', 'Officers', 'colonels', 'mans', 'anchors', 'ruffles', 'fragments', 'coworkers', 'hummocks', 'ridges', 'ravines', 'tree-clumps', 'falters', 'misperceives', 'weakens', 'seaports', 'corroborees', 'chaps', 'buggers', 'eyelids', 'sockets', 'potters', 'calligraphers', 'metalsmiths', 'Travelers', 'nightingales', 'canals', 'promenades', 'pavilions', 'arcades', 'Fridays', 'daises', 'aesthetes', 'poems', 'toughs', 'teahouses', 'boughs', 'caravans', 'alcoves', 'spandrels', 'bays', 'apses', 'vaults', 'sluices', 'princes', 'limousines', 'beggars', 'hawkers', 'prosceniums', 'ghazals', 'amusements', 'antagonisms', 'octaves', 'wanderings', 'lightens', 'stop-overs', 'nolens', 'volens', 'synagogues', 'masterpieces', 'Pittsburghers', 'introduces', 'strangers', 'destinies', 'pamphlets', 'acumen', 'individualists', 'controversialists', 'pens', 'legislatures', 'nationalists', 'nullifiers', 'wiles', 'Dow-Jones', 'juleps', 'accolades', 'snowballs', 'localisms', 'testings', 'sit-ins', 'mutters', 'wavers', 'bemoans', 'bewilders', 'befuddles', 'hogs', 'assailants', 'creators', 'masks', 'hoops', 'loosens', 'accouterments', 'choreographers', 'disdains', 'contradictions', 'energies', 'urgencies', 'ambiguities', 'establishes', 'rotations', 'intensities', 'Musicians', 'oracles', 'stipulates', 'jumps', 'Movements', 'slaps', 'variables', 'segments', 'adheres', 'transitions', 'upholders', 'Dictionaries', 'hostilities', 'drafters', 'admits', 'Constitutions', 'Preambles', 'Blessings', 'preambles', 'mars', 'confederations', 'organisms', 'akin', 'cooperatives', 'communes', 'breakwaters', 'Mortals', 'remembrances', 'comets', 'reiterates', 'drunks', 'induces', 'compulsions', 'exhortations', 'domains', 'acquires', 'hallucinations', 'X-rays', 'reviewers', 'hates', 'corresponds', 'inflections', 'invades', 'Plays', 'accommodates', 'tidings', 'orphans', 'Rises', 'flappers', 'knights', 'metaphors', 'prophets', 'explodes', 'barbarians', 'metaphysics', 'promptings', 'non-conformists', 'obsesses', 'abortions', 'disapproves', 'reigns', 'marijuana', 'orgies', 'composes', 'initiates', 'junkies', 'homosexuals', 'lesbians', 'derelicts', 'outcasts', 'hirelings', 'obsessions', 'spares', 'deviants', 'captures', 'betrays', 'hollyhocks', 'steeples', 'grandfathers', 'garments', 'chrysanthemums', 'bees', 'verbenas', 'oleanders', 'wall-flowers', 'pots', 'lilies', 'peonies', 'poppies', 'cross-legged', 'violets', 'Flowers', 'snapdragons', 'seed-pods', 'balsams', 'fire-crackers', 'columbines', 'caterpillars', 'snails', 'pebbles', 'exteriors', 'solitudes', 'chins', 'straws', 'forearms', 'hoofmarks', 'barns', 'hooves', 'epithets', 'evokes', 'perceives', 'collapses', 'resonances', 'sufferings', 'catastrophes', 'accumulates', 'imprecates', 'wrestlings', 'envisions', 'vanities', 'imitations', 'acknowledges', 'overtones', 'designations', 'recovers', 'interrelations', 'imitates', 'clamors', 'compels', 'presuppositions', 'constellations', 'unities', 'statisticians', 'distinguished', 'fugitives', 'professes', 'manipulations', 'slave-owners', 'censures', 'adorns', 'surmises', 'recreates', 'selves', 'acclaims', 'bazaars', 'Thoughts', 'revelations', 'dwells', 'tortures', 'authors', 'losers', 'regains', 'warriors', 'deras', 'teems', 'devil', 'disguises', 'compensates', 'enforces', 'stimulants', 'trances', 'informs', 'lurks', 'descendents', 'condemns', 'thrillers', 'joins', 'adventurers', 'pleases', 'endeavors', 'exclamations', 'intonations', 'distresses', 'theorists', 'projectiles', 'Commands', 'bottlenecks', 'generalists', 'montmorillonites', 'specifies', 'dislocations', 'utopians', 'gyrations', 'columnists', 'forefathers', 'ex-liberals', 'Goals', 'testaments', 'cancers', 'Contacts', 'steppes', 'reading-rooms', 'entrepreneurs', 'directives', 'Businesses', 'Examples', 'stimuli', 'Proprietorships', 'Corporations', 'legacies', 'Strikes', 'disagreements', 'fellow-employees', 'clips', 'radicals', 'bogeys', 'Criminals', "life's", 'powders', 'half-moons', 'anthropologists', 'biologists', 'sociologists', 'stepmothers', 'stereotypes', 'declarations', 'stimulations', 'bespeaks', 'testifies', 'Aspects', 'gambles', 'syndicates', 'adopts', 'ascribes', 'evades', 'utterances', 'evasions', 'questioners', 'inhibits', 'exacts', 'immoralities', 'capacities', 'interacts', 'recipes', 'theoriticians', 'ensues', 'focuses', 'wrenches', 'floats', 'necessitates', 'inevitabilities', 'accretions', 'exhausts', 'visualizes', 'renews', 'comparisons', 'conspires', 'prophesies', 'repels', 'borrows', 'marvels', 'burlesques', 'themes', 'suitors', 'equilibriums', 'gradations', 'non-objects', "'thirties", 'nostalgia', 'abstractionists', 'abstracts', 'cubists', 'Abstractionists', 'constructions', 'shaky', 'heaps', 'prams', 'slave-laborers', 'contingents', 'fellow-men', 'doorways', 'cigarettes', 'besets', 'romancers', 'symbolists', 'novelists', 'dynasties', 'antecedents', 'narratives', 'sundry', 'humorists', 'contemplates', 'side-conclusions', 'evolutionists', 'confinements', 'agonizes', 'lethargies', 'decencies', 'contentions', 'Autocracies', 'defeatists', 'scoundrels', 'autocracies', 'constitutions', 'Ships', 'masts', 'ancients', 'natures', 'distinguishes', 'embodiments', 'headings', 'predicting-machines', 'epicycles', 'longitudes', 'latitudes', 'velocities', 'conjectures', 'orderings', 'textbooks', 'deferents', 'resultants', 'retrogradations', 'Calculations', 'student-physicists', 'axioms', 'abberations', 'hypotheses', 'reverberations', 'reference-points', 'strands', 'importunities', 'follies', 'tempers', 'descriptions', 'afflictions', 'Reporters', 'Flocks', 'writs', 'misdemeanants', 'warrants', 'jams', 'panes', 'tepees', 'liars', 'breakers', 'exacerbations', 'yachts', 'antics', 'fancies', 'psyches', 'shames', 'buffetings', 'bads', 'dissatisfactions', 'confidences', 'arrangers', 'musicologists', 'skyscrapers', 'envelopes', 'abbreviations', 'aspires', 'introductions', 'eats', 'pangs', 'fames', 'banquets', 'grapevines', 'besides', 'softens', 'enmities', 'transactions', 'deficits', 'faith', 'instrumentalities', 'launchings', 'astrophysics', 'sinews', 'overcoats', 'settles', 'omissions', 'coops', 'pigpens', 'frolics', 'to-day', 'searchings', 'Congregationalists', 'Baptists', 'seafarers', 'trousers', 'breezes', 'haystacks', 'wharves', 'captors', 'Associates', 'Convocations', 'Observations', 'preliminaries', 'complains', 'Insinuations', 'asserts', 'Hints', 'Sentiments', 'Enemies', 'Designs', 'summons', 'purports', 'insinuates', 'reviews', 'playmates', 'encumbrances', 'lyricists', 'Jeepers', 'spirituals', 'allusions', 'hallelujahs', 'bards', 'pals', 'jakes', 'coups', 'Duponts', 'parlors', 'telephones', 'conceits', 'condolences', 'Dresses', 'rhinestones', 'leashes', 'lungs', 'receptions', 'perceptions', 'non-Jews', 'suppliers', 'monopolists', 'predispositions', 'Predispositions', 'commonwealths', 'outcomes', 'communicators', 'instructs', 'Functions', 'wholes', 'carvings', 'cavemen', 'colour-prints', 'similarities', 'immediacies', 'literatures', 'dialogues', 'romantics', 'tragedians', 'Lessons', 'terriers', 'Platoons', 'Offers', 'magnates', 'spoils', 'bellwethers', 'retainers', 'dynamics', 'marionettes', 'merges', 'kings', 'schoolboys', 'deteriorates', 'excursions', 'surveys', 'Ramillies', 'hazes', 'copes', 'streetcars', 'Alors', 'crowd', 'hello', 'petits', 'incongruities', 'infantrymen', 'breastworks', 'Proposals', 'annals', 'periscopes', 'traps', 'sharpshooters', 'treetops', 'forerunners', 'anesthetics', 'coordinates', 'pickets', 'Orders', 'locomotives', 'retreats', 'railways', 'galls', 'fords', 'pits', 'pursuers', 'confessions', 'sonnets', 'presences', 'misfortunes', 'protestations', 'draughts', 'legions', 'marshlands', 'irregulars', 'brows', 'kindnesses', 'cuirassiers', 'tufts', 'nieces', 'monsters', 'furrows', 'oddities', 'whiskers', 'knots', 'ex-bandits', 'skirmishers', 'plunderers', 'tassels', 'Cossacks', 'boors', 'levies', 'cogs', 'smatterings', 'stubs', 'outs', 'Atlantes', 'engravings', 'schoolbooks', 'smithereens', 'caryatides', 'pompons', 'skirts', "wasn't", 'lasts', 'busses', 'cabanas', 'parasols', 'servicemen', 'Athens', 'inlets', 'coves', 'hurdles', 'ruins', 'scaffoldings', 'trays', 'bellows', 'innuendoes', 'mules', 'alliances', 'detractors', 'mid-thirties', 'airs', 'blasphemies', 'neighbours', 'magistrates', 'colonists', 'meditations', 'miscreants', 'twelve', 'captives', 'obscurities', 'obediences', 'transfusions', "father's", 'tombstones', 'executors', 'educations', 'valuations', 'partakes', 'navels', 'corollaries', 'inheres', 'cannibals', 'vitiates', 'censors', 'Poetics', 'discusses', 'misrepresentations', 'tyrants', 'Poets', 'tempts', 'gainers', 'comedies', 'sorrows', 'eies', 'hartes', 'value-problems', 'impresses', 'value-orientations', 'goal-values', 'chosen', 'resigns', 'upperclassmen', 'characteristic', 'orientations', 'conformists', 'gyroscopes', 'freethinkers', 'benchmarks', 'riflemen', 'redcoats', 'rabbits', 'culprits', 'slanders', "'tis", 'wickets', 'patrols', 'riflemen-rangers', 'failures', 'cardinals', 'involvements', 'nobles', 'clerks', 'dites', 'Flemings', 'barons', 'Savoyards', 'shepherds', 'dales', 'downs', 'woolworkers', 'fairs', 'tabernacles', 'pyramids', 'whyfores', 'wherefores', 'therefores', 'Banks', 'carcasses', 'hips', 'place-names', 'Place-names', 'onwards', 'philologists', 'des', 'genealogies', 'invasions', 'Victorians', 'survivalists', 'Wade-Evans', 'Anglo-Saxons', 'Saxons', 'corridors', 'draftees', 'Greetings', 'filles', 'proclivities', 'antipodes', 'contrarieties', 'encloses', 'overreaches', 'intimations', 'resounds', 'hounds', 'Euripides', 'personages', 'sentinels', 'battlements', 'banishes', 'wanderers', 'visitations', 'gaslights', 'hierarchies', 'spokes', 'Princes', 'architectures', 'imaginings', 'parables', 'Concepts', 'catchwords', 'seers', 'chroniclers', 'inheritors', 'motifs', 'glows', 'streaks', 'aldermen', 'shillings', 'meanes', 'subsedies', 'estates', 'monei', 'condicions', 'faires', 'bestes', 'valewe', 'tithes', 'landes', 'warys', 'stockynges', 'copybooks', 'hattes', 'boies', 'drapers', 'towardes', 'homewards', 'commons', 'hedges', 'nott', 'thees', 'trobles', 'sackes', 'shuld', 'townsmen', 'minaces', 'dagers', 'admonishments', 'reappraisals', 'smacks', 'monasteries', 'dispatches', 'chronicles', 'revolts', 'pontificates', 'omits', 'deities', 'eras', 'reconstructs', 'Makers', 'Finders', 'tropics', 'turtles', 'schoolchildren', 'Dialogues', 'fellow-creatures', 'eighties', 'obituaries', 'blind', 'bookshelves', 'mediocrities', 'drunkards', 'barflies', 'chambermaids', 'adores', 'rumors', 'gaucheries', 'bachelors', 'proctors', 'boastings', 'pastimes', 'prolusions', 'fens', 'theatricals', 'attains', 'paperbacks', 'extrapolations', 'robots', 'dystopias', 'extrapolates', 'fifteen-sixteenths', 'stairwells', 'soyaburgers', 'respirators', 'plugs', 'satirizes', 'persuaders', 'manipulators', 'humanists', 'deceives', 'unfortunates', 'near-Communists', 'encomiums', 'imitators', 'prescribes', 'bibliophiles', 'anarchist-adventurers', 'exaltations', 'illuminations', 'mummies', 'cave-men', 'Trains', 'immensities', 'democracies', 'evolves', 'prescriptions', 'exploiters', 'preaches', 'messengers', 'chants', 'cultivates', 'asses', 'outlanders', 'blushes', 'pogroms', 'ghettos', 'staples', 'transoms', 'castigates', 'approximations', 'bull-sessions', 'touchstones', 'alludes', 'portents', 'plainclothes', 'basements', 'ghosts', 'cliques', 'jackboots', 'busts', 'diapers', 'Fascists', 'beatings', 'proxy', 'cosponsors', 'Chambers', 'authorizes', 'Offices', 'wholesalers', 'Types', 'installments', 'Cooperatives', 'Minerals', 'Requirements', 'certifies', 'incentives', 'balance-of-payments', 'nationals', 'regimes', 'ashamed', 'shoals', 'analyses', 'Cars', 'assigns', 'States', 'reimbursements', 'garages', 'excels', 'Bids', 'non-residents', 'Practices', 'resides', 'Assessors', 'expansions', 'follow-ups', 'copyrights', 'cooperates', 'specifics', 'availabilities', 'industrialists', 'mailings', 'Mailings', 'reprints', 'calendars', 'ensures', 'disbursements', 'facilitates', 'proponents', 'treasuries', 'commemorates', 'Jaycees', 'Pageants', 'observances', 'Dances', 'Ballets', 'intermissions', 'subsections', 'dispositions', 'ores', 'Payments', 'microwaves', 'demonstrations', 'Demonstrations', 'kits', 'manikins', 'Illustrations', 'fascicles', 'registries', 'Conferences', 'accessions', 'microscopes', 'requesters', 'Specimens', 'substantiates', 'atmospheres', 'microseconds', 'Experiments', 'ions', 'spectra', 'hydrides', 'telescopes', 'Preparations', 'resistors', 'millidegrees', 'thermometers', 'resistances', 'calibrations', 'deviations', 'reproducibilities', 'gradients', 'dewars', 'fulfills', 'displaces', 'psi', 'integrals', 'coefficients', 'registrants', 'interactions', 'bibliographies', 'profiles', 'provisons', 'submissions', 'users', 'republics', 'ports', 'rulings', 'Shipments', 'foodstuffs', 'traineeships', 'authorizations', 'allotments', 'maximums', 'excludes', 'computations', 'Bricks', 'scatters', 'vents', 'Tests', 'Bunks', 'decays', 'Blowers', 'climates', 'rehearsals', 'Competitors', 'restraints', 'decrees', 'judgements', 'exigencies', 'households', 'enthrones', 'certiorari', 'renders', 'duces', 'objectors', 'bureaucracies', 'Dozens', 'explores', 'underlies', 'guidelines', 'desks', 'appropriates', 'campuses', 'helpers', 'Steps', 'currencies', 'impoundments', 'waterflows', 'infestations', 'timberlands', 'snags', 'firebreaks', 'porcupines', 'rangelands', 'Roads', 'jurisdictions', '1963-1972', 'inholdings', 'Lands', 'strengths', 'dependents', 'Expenditures', 'Committees', 'violates', 'decreases', 'rupees', 'undertakings', 'subsidiaries', 'affiliates', 'maturities', 'approves', 'paragraphs', 'Uses', 'Sections', 'kc.', 'separations', 'allocations', 'radiations', 'fluctuations', 'antennas', 'affidavits', 'aliens', 'Extensions', 'Citizens', 'computes', 'elapses', 'Refunds', 'Rents', 'royalties', 'Employees', 'reimburses', 'Chapters', 'Minors', 'selectors', 'essayists', 'Pericles', 'sayings', 'explorations', 'theoreticians', 'inductions', 'Fellowships', 'humanities', 'lathes', 'inclinations', 'gears', 'gages', 'tenets', 'grinders', 'manufactures', 'micrometers', 'calipers', 'yarns', 'blouses', 'winders', 'bobbins', 'twister-coners', 'fiber', 'modules', 'Inventories', 'synthetics', 'auditions', 'Courses', 'cheerleaders', 'beginners', 'arranges', 'transistors', 'capacitors', 'semi-conductors', 'deadlines', 'rebuilds', 'regenerates', 'Deans', 'appoints', 'investigates', 'diversities', 'Trustees', 'inspires', 'Joneses', 'Declinations', 'substitutions', 'cm', '600-degrees', 'reflectors', 'lunar', 'interferometers', 'subtends', 'radiates', '10-degrees', 'mm', 'fluxes', 'generators', 'anodes', 'voltages', 'co-workers', 'Figures', 'pyrometers', 'thermocouples', 'Temperatures', 'parameters', 'halfways', 'shims', 'hr.', 'polybutenes', 'magnitudes', 'pastes', 'inks', 'adhesives', 'thermodynamics', 'thermostatics', 'solids', 'droplets', 'ellipsoids', '45-degrees', 'photographs', 'poises', 'dipoles', 'oxygens', 'oxides', 'nitrates', 'impurities', 'crystallites', 'distortions', 'Corrections', 'wt', 'Polyphosphates', 'surfactants', 'polyphosphates', 'actives', 'alkylbenzenesulfonates', 'granules', 'dishwashers', 'phosphates', 'washings', 'swatches', 'orthophosphates', 'borates', 'carbonates', 'silicates', 'hydrocarbons', 'esters', 'Stains', 'greases', 'Greases', 'micelles', 'anions', 'monomers', 'dimers', 'anionics', 'assemblages', 'Micelles', 'interfaces', 'Substances', 'polyelectrolytes', 'isomers', '85-degrees', 'reagents', 'halogens', 'tetrahalides', 'chlorides', '-78-degrees', 'chips', 'alkali', 'reactants', 'mm.', 'aliquots', 'fillings', '220-degrees', 'mixtures', '200-degrees', 'Sets', 'micrometeorites', 'impacts', 'sensors', 'meteors', 'cores', 'probes', 'detectors', 'densities', 'microns', 'meteorites', 'spherules', 'dusts', 'aerosols', 'turbinates', 'diffuses', 'fluoresces', 'isopleths', 'dosages', 'samplers', 'Agents', 'glanders', 'Mutants', 'epidemics', 'antibodies', 'celluloses', 'Modifications', 'agglutinins', 'donors', 'titers', 'min', 'ml', 'eluates', 'Fractions', 'Regions', 'bumblebees', 'sods', 'queens', 'currants', 'catkins', 'blooms', 'honeybees', 'stamens', 'nectaries', 'nectar', 'befits', 'pupates', 'broods', 'drones', 'beetles', 'moths', 'idlers', 'Bumblebees', 'onslaughts', 'baskets', 'mounds', 'digs', 'andrenas', 'burrows', 'hairs', 'snakes', 'rattlesnakes', 'rattlers', 'herpetologists', 'prairie', 'pitfalls', 'leans', 'graveyards', 'freaks', 'Discussions', 'anacondas', 'estuaries', 'ounces', 'subspecies', 'constrictors', 'nodes', 'bronchioles', 'anastomoses', 'lobules', 'airways', 'Air-drifts', 'mammals', 'pathways', 'marked', 'monkeys', 'tissues', 'shunts', 'interspecies', 'septa', 'terminates', 'denotes', 'Onsets', 'arrows', 'Completions', 'menarches', 'crosses', 'glycosides', 'analogues', 'Pitt-Rivers', 'iodocompounds', 'proteases', 'peptidases', 'Alpers', 'iodotyrosines', 'binds', 'goitrogens', '**ymg', 'iodothyronines', 'thyroids', 'tadpoles', 'solvents', 'corticosteroids', 'biopsies', 'steroids', 'mg.', 'obliterans', 'quadriceps', 'fasciculations', 'hemorrhoids', 'Findings', 'ventricles', 'neutrophils', 'clefts', 'orifices', 'blebs', 'nodules', 'sinusoids', 'cc.', 'smooth', 'intestines', 'ulcerations', 'Cultures', 'albicans', 'aerogenes', 'lymphocytes', 'tubules', 'arterioles', 'extremities', 'biceps', 'swollen', 'cross-striations', 'myofibrils', 'phagocytes', 'nuclei', 'clumps', 'devoid', 'nucleoli', 'conjugates', 'tumefaciens', '-16-degrees', '-20-degrees', '37-degrees', '24-degrees', 'absorptions', 'mg', 'green', 'vertebrates', 'discharges', 'primates', 'neocortex', 'spikes', 'depressions', 'therapies', 'secretions', 'remissions', 'elicits', 'electroshocks', 'neuroses', 'catecholamines', 'disturbances', 'vectors', 'polynomials', 'decomposes', 'primes', 'integers', 'divides', 'subspaces', 'commutes', 'satisfies', 'repetitions', "bull's-eyes", 'litters', 'mice', 'dice', 'aces', 'solves', 'dazzles', 'cubes', 'endpoints', '90-degrees', 'intersections', 's-values', 'ordinates', 'involutions', 'secants', 'intercepts', 'tangents', 'pencils', 'directrices', '**zg', 'Feelings', 'pertains', 'interrelationships', 'Efforts', 'clarifies', 'incitements', 're-enforces', 'reaffirms', 'vis-a-vis', 'freewheelers', 'religionists', 'unifies', 'creeds', 'socializes', 'rites', 'unites', 'energizes', "mother's", 'predictors', 'Similarities', 'caseworkers', 'abounds', 'baptisms', 'weddings', 'Norms', 'status-roles', 'interviewees', 'occupancies', 'Sanctions', 'Subsystems', 'subsystems', 'inter-relationships', 'Subgroups', 'Roles', 'subgroups', 'affinities', 'incurs', 'chiefdoms', 'tabulations', 'inoculations', 'out-migrants', 'circonscriptions', 'compilations', 'Averages', 'in-migrants', 'sub-chiefs', 'circumscriptions', 'Statistics', 'censuses', 'enquetes', 'demographiques', 'strata', 'sophomores', 'auditors', 'electives', 'Films', 'texts', 'Responses', 'nonreactors', 'shifters', 'nonshifters', 'normals', "what's", 'Subjects', 'underachievers', 'over-achievers', 'under-achievers', 'Over-achievers', 'interviewers', 'behaviors', 'cleans', 'al', 'permeates', 'sub-tests', 'grade-equivalents', 'Tables', 'compulsives', 'accentuates', 'Observers', 'subparts', 'possiblities', 'resignations', 'interviewed', 'questionnaires', 'antagonists', 'despises', 'introjects', 'grasp', 'determinants', 'bales', 'prefixes', 'suffixes', 'Y-cells', 'Y-regions', 'Equivalents', 'endings', 'syllables', 'complements', 'adjuncts', 'accompanies', 'stimulates', 'italics', 'Steiners', 'Syllables', 'consonants', 'vowels', 'Papers', 'Analyses', 'articulations', 'phonemics', 'phonemes', 'morphophonemics', 'Phonemes', 'orthographies', 'abstrusenesses', 'Linguists', 'examines', 'hesitates', 'restates', 'prosodies', 'Yokuts', 'informants', 'genera', 'interrogatives', 'adverbs', 'demonstratives', 'adjectives', 'verbs', 'Meanings', 'asterisks', 'lexicostatistics', 'kingdoms', 'predilections', 'digressions', 'incompatibles', 'affirmations', 'formulae', 'aberrations', 'actualities', 'identifications', 'Elections', 'after-effects', 'Employers', 'enrollees', 'aptitudes', 'generalities', 'durations', 'advocates', 'indices', 'Correlations', 'loadings', 'lady-bugs', 'green-bugs', 'bottoms', 'movers', 'accrues', 'echelons', 'fluctuates', 'chartists', 'hoaxes', 'Fifties', 'behaves', 'wage-rates', 'exacerbates', 'alignments', 'unifications', 'twentieth', 'Justices', 'judiciaries', 'concurs', 'Litigants', 'delimits', 'voids', 'dissolutions', 'Exceptions', 'reorganizations', 'transferors', 'certificates', 'Attributes', 'cautions', 'Reasons', 'respondents', 'yes', 'Characteristics', 'addressees', 'postcards', 'referrals', 'lock-outs', 'Referrals', 'prohibits', 'Courts', 'strikebreakers', 'vague', 'Teachers', 'maladjustments', 'Sources', 'folders', 'enlists', 'transmits', 'deprivations', 'postwar', 'emphases', 'constituencies', 'Commissions', 'Attempts', 'expositions', 'apportionments', 'subtypes', 'outputs', 'subdivisions', 'kilowatt-hours', 'kilowatts', 'preconditions', 'jeers', 'borderlands', 'vantage-points', 'philosophies', 'presumptions', 'ask', 'pseudo-questions', 'universals', 'reshapes', 'Men', 'Fiddlesticks', 'positivists', 'subjectivists', 'memory-images', 'abnormalities', 'subfigures', 'memory-pictures', 'epics', 'vases', 'irruptions', 'survivals', 'turnings', 'excavations', 'broadens', 'Figurines', 'Painters', 'rosettes', 'Plates', 'exporters', 'ranches', 'Bullets', 'bloodhounds', 'assassins', 'possemen', 'Pels', 'depredations', 'besiegers', 'whereabouts', 'Mexicans', "o'clock", 'horsemen', 'telegrams', 'Telegraphers', 'gusts', 'Operators', 'oranges', 'transformers', 'academics', 'brutalities', 'theologian-philosophers', 'safeguards', 'shreds', 'elaborates', 'refectories', 'philantropists', 'non-resistants', 'fanatics', 'bells', 'bereavements', 'contrivances', 'facet-planes', 'overshoots', 'boomerangs', 'collages', 'flatnesses', 'Planes', 'reacts', 'transforms', 'underpins', 're-creates', 'papiers', 'colles', 'accesses', 'Subways', 'interchanges', 'mitigates', 'roadways', 'thruways', 'drugstores', 'haberdasheries', "management's", 'accountants', 'diagnosticians', 'suburbanites', 'superhighways', 'Bankers', 'householders', 'restorers', 'Cartoons', 'forty-niners', 'sponges', 'frescos', 'preoccupies', 'denunciations', 'nerve-ends', 'turrets', 'pastures', 'mutations', 'exclusions', 'workingmen', 'iniquities', 'Diagnoses', 'Existentialists', 'Pimen', 'heretics', 'denounces', 'tonalities', 'dissenters', 'boyars', 'tenors', 'basses', 'cudgels', 'trembles', 'staccatos', 'neglects', 'predominates', 'Poems', 'Dynasts', 'Satires', 'pettinesses', 'seventies', 'wrings', 'Weathers', 'ovens', 'innovators', 'pulsations', 'embroideries', 'interstices', 'confabulations', 'metaphysicals', 'by-passes', 'surrealists', 'exits', 'Surrealists', 'soles', 'expressionists', 'apostles', 'incidentals', 'Hals', 'wallpapers', 'improvises', 'kennings', 'nouns', 'near-equivalents', 'Homerists', 'fellow-craftsmen', 'connoisseurs', 'time-servers', 'scops', 'Time-servers', 'agnomen', 'biographers', 'runes', 'line-fragments', 'conveys', 'fascinates', 'terrifies', 'mannerisms', 'Dickens', 'steals', 'flees', 'handcuffs', 'slouches', 'shouts', 'claps', 'clenches', 'bangs', 'brambles', 'fingernails', 'flats', 'drowns', 'Expectations', 'trousers-pockets', 'reproaches', 'appendages', 'alienates', 'exclaims', 'kneels', 'signalizes', 'designates', 'reintroduces', 'magnetisms', 'gloats', 'confers', 'operands', 'channel', 'synchronizers', 'Remarks', 'macro-instructions', 'subroutines', 'formats', 'ponds', 'effluents', 'lagoons', 'fiberglas', 'composites', 'mg/lBOD', 'lb', 'grindings', 'mg/l', 'Variations', 'ciliates', 'determinations', 'nuisances', 'Submarines', 'Principles', 'fleets', 'breakthroughs', 'co-operates', 'counter-efforts', 'Mines', 'alarms', 'metabolites', 'cofactors', 'carbons', 'amines', 'esterases', 'arylesterases', 'Investigations', 'macromolecules', 'peptides', 'Instruments', 'globulins', 'tektites', 'Australites', 'inclusions', 'alcohols', 'complexes', 'phosphines', 'arsines', 'ligands', 'halides', 'oxyhydroxides', 'imperfections', 'conformations', 'polymers', 'hindrances', 'copolymers', 'Limitations', 'homopolymers', 'polymerizations', 'ethers', 'crystals', 'crystallographers', 'Editors', 'Properties', 'References', 'Coeditors', 'alloys', 'spacings', 'indexes', 'binders', 'insertions', 'Recommendations', 'abstractors', 'correlations', 'yeasts', 'accomplishes', 'Mrads', 'accelerators', 'off-flavors', 'rads', 'discolors', 'antibiotics', 'substrates', 'topcoats', 'primers', 'enlargements', 'signifies', 'styrenes', 'foams', 'refrigerators', 'inserts', 'Readers', 'polyisocyanates', 'polyesters', 'polyethers', 'rigids', 'glycols', 'urethanes', 'catalysts', 'glycol', 'solidifies', 'slitters', 'peels', 'yd.', 'cushions', 'suds', 'nips', 'liters', 'launderings', 'summarizes', 'Distances', 'wales', 'rotates', '110-degrees', 'creases', 'Fabrics', 'intensifiers', 'dynodes', 'couplers', 'photoelectrons', 'codetermines', 'sensitivities', 'subscripts', 'volts', 'optics', 'phosphors', 'maximizes', 'photocathodes', 'gyros', 'torquers', 'polarities', 'accelerations', 'accelerometers', 'biases', 'minimizes', 'navigators', 'pickoffs', 'banners', 'biscuits', 'annoys', 'lulls', 'Ours', 'betties', 'searchlights', 'mourners', 'malevolencies', 'amidst', 'bandoleers', 'armpits', 'grotesques', 'near-strangers', 'handlebars', 'shipyards', 'whisky-on-the-rocks', 'shopkeepers', 'nigras', 'citations', 'joys', 'regrets', 'krautheads', 'calamities', 'worshippers', 'rat-holes', 'Dives', 'dumps', 'privies', 'flour', 'banisters', 'gaiters', 'clodhoppers', 'nightmares', 'wakes', 'celebrations', 'Houses', 'windowpanes', 'foothills', 'pews', 'coattails', 'indentations', 'mountainsides', 'crows', 'shooters', 'pinafores', 'grownups', 'boaters', 'mustaches', 'Fiddles', 'boardinghouses', 'niggers', 'wanta', 'twinges', 'Rivers', 'Knows', '8-Balls', 'fucks', "mothers'", 'pricks', 'bandits', 'perseveres', 'subterfuges', 'Sciences', 'nothings', 'Confessions', 'storekeepers', 'drummers', 'pipers', 'bayonets', 'pimples', 'breeches', 'cheeks', 'adulterers', 'evildoers', 'specters', 'rooftops', 'Refugees', 'Libertines', 'Tears', 'Anabaptists', 'Arianists', 'Christians', 'outskirts', 'Fists', 'bitters', 'lairs', 'obscenities', 'freckles', 'hutments', 'tits', 'skippers', 'swathings', 'crudities', 'southernisms', 'blinkers', 'spurns', 'Andruses', 'suppers', 'cleaner', 'olives', 'boatloads', 'monosyllables', 'nods', 'romances', 'fledglings', 'velours', 'pillows', 'aprons', 'shoestrings', 'sneakers', 'coupons', 'damp', 'aloes', 'winding-clothes', 'stalls', 'foreheads', 'grey', 'mid-fifties', 'Jesuits', 'dirty', 'chisels', 'pigeons', 'packs', 'cronies', 'reprisals', 'purple', 'wares', 'trinkets', 'gentians', 'buckles', 'trolls', 'weirs', 'nostrils', 'landowners', 'hayfields', 'fishers', 'mooncursers', 'smugglers', 'hulks', 'ketches', 'sterns', 'dwellers', 'thickets', 'saddlebags', 'intuitions', 'ledgers', 'colonials', 'manors', 'squires', 'Peasants', 'swamps', 'Zionists', 'ideologies', 'chills', 'Deportees', 'lagers', 'Uplands', 'lashings', 'crushers', 'Auxiliaries', 'deportees', 'Flies', 'lentils', 'dramatics', 'hangovers', "O'Dwyers", "she'd", 'portwatchers', 'longshoremen', 'towboats', 'watchmen', 'musclemen', 'cuttings', 'forte-pianos', 'doves', 'jackdaws', 'bloods', 'depravities', 'Seems', 'hostelries', "you're", 'Brains', 'scimitars', 'musings', 'raptures', 'colonel', 'torches', 'slits', 'buckle', 'skiffs', 'postures', 'parcels', 'gnomes', 'mobcaps', 'bulks', 'mosquitoes', 'trumps', 'Leaves', 'maid', 'sighs', 'depressors', 'stockings', 'lemons', 'Packards', 'malignancies', 'clams', 'insides', 'heroic', 'drunk', 'cages', 'cantilevers', 'gratings', 'monochromes', 'gear-sets', 'skates', 'cuffs', 'mad', 'eyebrows', 'breaths', 'partings', 'parakeets', 'brides', 'specimentalia', 'scapulars', 'squawk', 'wattles', 'hallways', 'hens', 'turkeys', 'ministrations', 'excellences', 'hackles', 'lappets', 'etes', 'matinals', 'dejeuners', 'alors', 'Eyes', 'attentions', 'emanations', 'wails', 'Chickens', 'fellers', 'chicks', 'polishes', 'jonquils', 'periwinkles', 'hyacinths', 'cherries', 'breakables', 'overshoes', 'kitchen', 'boroughs', 'grandparents', 'communiques', 'bunkmates', 'braids', 'premonitions', 'waffles', 'lapels', 'travellers', 'revellers', 'marquees', 'noisemakers', 'bleats', 'gallants', 'huggings', 'kissings', 'forays', 'epaulets', 'jabberings', 'batteries', 'magnifies', 'transients', 'beeps', 'registrations', 'slacks', 'commences', 'Diets', 'fools', 'filaments', 'farmhouses', 'puddles', 'toddlers', 'tormenters', 'pedals', 'ice-cubes', 'knife-men', 'confederates', 'dicks', 'mailboxes', 'Roberts', 'azaleas', 'grooms', "don't", 'Wants', 'latches', 'Carruthers', 'stacks', 'casters', 'reminiscences', 'spades', 'crooks', 'kittens', 'despues', "you've", 'floes', 'paterollers', 'moccasins', 'hams', 'rafters', 'picture-images', 'urgings', 'comings', 'goings', 'onlookers', 'hat', 'horn', 'dentures', 'flannel', 'blokes', 'fingerprints', 'skylights', 'Supplies', 'hero-worshippers', 'Comes', 'kidnappers', 'sippers', 'call-backs', 'lucks', 'Ladies', 'jerks', 'limps', 'overalls', 'pleats', 'jerkings', 'snivelings', 'dragons', 'ye', 'overnighters', 'lodgings', 'bellhops', 'Cases', 'Traces', 'Mullins', 'hunches', 'Willings', 'Ambushes', 'punishes', 'eliminations', 'Stilts', 'hemorrhages', 'Scrapings', 'cavities', 'wills', 'great-nieces', 'swallows', 'taut', 'drapes', 'copings', 'facades', 'thatches', "Can't", 'patrolmen', 'drunk-and-disorderlies', 'sergeants', 'showers', 'clientele', 'Jenkins', 'shut', 'skids', 'crossways', 'deeps', 'whoppers', 'Hurts', 'flippers', 'stiffs', 'Proves', 'shacks', 'outriggers', 'flimsies', 'parrots', 'globes', 'snowflakes', 'Women', 'bedsprings', 'Places', 'spewings', 'cellars', 'boulders', 'ledges', 'picnickers', 'steam-baths', 'antiquities', 'free-holders', 'crests', 'coxcombs', 'Rabbits', 'mussels', 'lushes', "he'd", 'bus', "You'd", "you'd", 'nirvana', 'nests', 'Mars', 'serviettes', 'chelas', 'purses', 'gripes', 'clinches', 'vs', 'lightyears', 'lamechians', 'pardons', 'Urielites', 'megalopolises', 'Hawaiian-Americans', 'tenses', 'genders', 'conjunctions', 'value-judgments', 'spacesuits', 'fuses', 'planetoids', 'dials', 'beasts', 'critters', 'Insects', 'couches', 'shipmates', 'repercussions', 'beasties', 'synapses', 'side-effects', 'deformities', 'inhumanities', 'cords', 'chromatics', 'sinuses', 'extendibles', 'taps', 'scouts', 'scanners', 'screams', 'agonies', 'dummies', 'lovelies', 'toe-tips', 'teratologies', 'geysers', 'ditches', 'calm', 'buckets', 'innocents', 'scissors', 'croaks', 'cinches', 'goin', 'gullies', 'manes', 'pennants', 'tethers', 'Apaches', 'clad', 'canisters', 'hoods', 'Guerrillas', 'crossbars', "There's", "comin'", "he'll", 'Buckets', 'Coyotes', 'lances', 'shields', 'saddles', 'pans', 'tabloids', 'urinals', 'funnels', 'winches', 'footfalls', 'Powers', 'killers', "I'd", 'monitors', 'tornadoes', 'hi-graders', 'cleanups', 'Culvers', 'omen', 'detours', 'nipples', 'Looks', 'yokels', 'feel', 'anyways', 'Sands', 'Highlands', 'hoots', 'Maguires', 'slickers', 'cantles', 'soddies', 'homesteaders', 'lawmen', 'insinuations', 'rustlers', 'skulls', 'roundups', 'minstrels', 'Summers', "nothin'", 'sneaks', 'tines', 'Jacksons', 'simples', 'victuals', 'Methodists', 'wrestles', 'down', 'broncs', 'dives', 'stilts', 'batwings', 'Nerves', 'Stevens', 'wads', 'revetments', 'straps', 'chocks', 'cliffs', 'earphones', 'bogies', 'Rogers', 'pinpoints', 'fenders', 'giggles', 'ovals', 'nahce', 'crannies', 'shards', 'sideboards', 'jabs', 'repositories', 'stills', 'itches', 'swarms', 'Lights', 'plain-clothesmen', 'appreciates', 'fixations', 'corkers', 'Palasts', 'beers', 'coolnesses', 'cutlets', 'rivulets', 'marrowbones', 'hollows', 'floodheads', 'muddy', 'messes', 'jellies', 'tarpaulins', 'spoilables', 'copra', 'lifeboats', 'davits', 'amazons', 'bogeymen', "weeks'", 'moons', 'Sommers', 'kava', 'alleys', 'laces', 'eyelets', 'headwalls', 'pinnacles', 'glaciers', 'mingles', 'lords', 'Commanders', 'crates', 'eagles', 'turtlebacks', 'killed', 'leopards', 'loners', 'Peacocks', 'fathoms', 'stringy', 'flannels', 'necessaries', 'gulps', 'superiors', 'fatigues', 'flame-throwers', 'billows', 'slings', 'whiplashes', 'quivers', 'henchmen', 'desperadoes', 'splinters', 'gunfights', 'badmen', 'daylights', 'outlaws', 'mobsters', 'muzzles', 'thrills', "'em", 'backwards', 'erasers', 'paperwads', 'liaisons', 'boathouses', 'inductees', 'gambits', 'bleedings', 'Besides', 'endearments', 'welts', 'soirees', 'slashes', 'freights', 'sacks', 'cheekbones', 'pickins', 'leavings', 'ya', 'many-times', 'wieners', "ain't", 'buttocks', 'sundials', 'porches', 'dregs', 'fortresses', 'alleyways', 'courtyards', 'pales', 'teats', 'rages', 'peaches', 'fireplaces', 'anxieties', 'bathrooms', 'gathers', 'grandsons', 'bless', 'mares', 'geldings', 'what-nots', 'laments', 'foals', 'quarts', 'triplets', 'dollies', 'nigs', 'oystchers', 'teas', 'fetes', 'thorns', 'dewdrops', 'buds', 'grasses', 'forepaws', 'acknowledgments', 'Rests', 'pacifies', 'sops', 'somewheres', 'headstones', 'prefectures', 'forebears', 'brunettes', 'waitresses', 'Relatives', 'cockroaches', 'Strippers', 'lay-sisters', 'bibles', "roulette's", 'Hurrays', 'shills', 'schoolgirls', 'handspikes', 'heavers', 'holystones', 'souvenirs', 'Implements', 'midshipmen', 'shackles', 'Bits', 'ringlets', 'prayerbooks', 'curls', 'cobblestones', 'numerals', 'feelers', 'dawns', 'Homes', 'bumps', 'researches', 'haircuts', "wouldn't", 'illustrators', 'bums', 'hangouts', 'cigars', 'palisades', 'closets', 'rankles', 'makeshifts', 'trestles', 'Farneses', 'boxcars', 'eyeballs', 'lodges', 'talons', 'delineaments', 'tracings', 'father', 'skeletons', 'arrowheads', 'chemistries', 'leggings', 'hilltops', 'amulets', 'hemlocks', 'frogs', 'bandages', 'shoelaces', 'raindrops', 'cowbirds', 'vestments', 'hangers', 'lifeguards', 'Eats', 'vampires', 'peppermints', 'shouders', 'wops', 'jeans', 'harelips', 'tinkers', 'gypsies', 'schnooks', 'ne', 'crinkles', 'spats', 'bosoms', 'steels', "we're", 'punks', 'interns', 'bloodspots', 'cognac', 'Allons', 'les', 'putains', 'forty', "shores'", 'aqueducts', 'tombs', 'motorscooters', 'Shoals', 'parapets', 'sweetpeas', 'eatables', 'flu', 'pink', 'mops', 'redheads', 'blondes', 'whitens', 'punches', 'ballplayers', 'Fights', 'outfielders', 'by-ways', 'tomes', 'Krishnaists', 'spigots', 'fountain-falls', 'plowshares', 'eyelashes', 'reunions', 'salad', 'Colts', 'titters', 'whisperings', 'panties', 'underclothes', 'vicissitudes', 'calculators', 'coffers', 'dealerships', 'Mills', 'cameramen', 'gibes', 'cahoots', 'scions', 'pickles', 'midsts', 'screeches', 'thuds', 'plaids', 'marshmallows', 'rivals', 'zounds', 'homesteads', 'pioneers', 'gardeners', 'toadies', 'sycophants', 'grata', 'Activities', 'distractions', 'thespians', 'sulks', 'monies', 'bookies', 'slights', 'Taylors', 'dens', 'inherits', 'moors', 'hurt', 'paws', 'perfectionists', 'lizards', 'two-by-fours', 'pegboards', "company's", 'contraptions', 'broken', 'rhetoricians', 'ologies', 'misinterpreters', 'misunderstanders', 'misdirectors', 'grammarians', 'gagwriters', 'snapshots', 'modifiers', 'schooldays', 'Samples', 'gags', 'misconstructions', 'anatomicals', 'peacocks', 'dooms', 'commoners', 'Foreigners', 'non-writers', 'non-publishers', 'non-readers', 'beholds', 'daffodils', 'theatres', 'drawing-rooms', 'disbelieves', 'corrupts', 'nooks', 'tumbles', 'somersaults', 'middles', 'wheezes', 'eye-beamings', 'cancels', 'stumbles', 'vanishes', 'sidesteps', 'derivations', 'shatters', 'SalFininistas', 'concertos', 'fingerings', 'muffins', 'jeunes', 'crackles', 'sophisticates', 'Sirs', 'prowlers', 'objets', 'tangos', 'snuffboxes', 'constables', 'jokers', 'fantods', 'livers', 'housebreakers', 'fishmongers', 'vandals', 'cartons', 'areaways', 'Evenings', 'hors']
# Exercise 20c
prep_phrases = []
for sent in brown_tagged_sents:
for i in range(len(sent) - 2):
if sent[i][1] == 'IN' and sent[i+1][1] == 'DT' and sent[i+2][1] == 'NN':
p_phrase = sent[i][0] + ' ' + sent[i+1][0] + ' ' + sent[i+2][0]
prep_phrases.append(p_phrase.lower())
prep_phrases = set(prep_phrases)
print("Three-word prepositional phrases of the form IN + DT + NN:")
print(prep_phrases)
Three-word prepositional phrases of the form IN + DT + NN:
{'for each illness', 'on that milestone', 'of that court', 'in this hemisphere', 'of this city', 'in each league', 'for each guest', 'of this law', 'from another direction', 'in this case', 'in this campaign', 'of this hour', 'in this way', 'with this form', 'of each child', 'for each person', 'on that road', 'in this field', 'of this program', 'with this challenge', 'of this community', 'in that event', 'from this pair', 'on this issue', 'for this city', 'to this column', 'of this court', 'in this light', 'for another year', 'for each joint', 'in another respect', 'during each practice', 'of this bill', 'behind this reply', 'over each member', 'of each member', 'of this column', 'by that master', 'in each county', 'during this recovery', 'by this autumn', 'in each area', 'under this law', 'along this thoroughfare', 'with that possibility', 'for this identification', 'on this page', 'in this recovery', 'by that possibility', 'over this problem', 'in this sort', 'at this time', 'for this year', 'on that date', 'under each end', 'for each university', 'of that road', 'into this state', 'after that service', 'of that stroke', 'within that area', 'at each library', 'at this point', 'on each worker', 'of this phase', 'of this state', 'on this day', 'on this score', 'in this area', 'until this year', 'within that span', 'in this conspiracy', 'with each start', 'to that effect', 'from each section', 'into this campaign', 'of that fact', 'for this enchantment', 'for this group', 'in this manner', 'in this county', 'on this question', 'at that time', 'of this administration', 'to each group', 'with this kind', 'along this avenue', 'with this demand', 'of each month', 'in this farm', 'in this school', 'for another setback', 'of that country', 'in this kind', 'in this matter', 'for that matter', 'in this country', 'of this money', 'of this year', 'during that time', 'with this situation', 'on this hole', 'of that danger', 'by that time', 'of this danger', 'in another attack', 'of this collection', 'in this class'}
# Exercise 20d
masc = ['he', 'him', 'himself']
fem = ['she', 'her', 'herself']
masculine = 0
feminine = 0
for word, tag in nltk.pos_tag(brown.words()):
if word.lower() in masc:
masculine += 1
elif word.lower() in fem:
feminine += 1
ratio = masculine / feminine
print("Ratio of masculine to feminine pronouns:")
print(ratio)
Ratio of masculine to feminine pronouns: 2.1209101478159775